﻿/*
//-----------------------------------------------------------------------
// <copyright file="download-button.css" company="Federal Reserve Bank of Boston">
//     © 2024 Federal Reserve Bank of Boston
// </copyright>
// <summary>This is the download-button file.</summary>
//-----------------------------------------------------------------------
// Internal FR – Source Code
*/

/* ReSharper disable CssBrowserCompatibility */



.download-button,
.download-button:active,
.download-button:focus {
    background: #6BA2B9 url('/~/media/FRB/Components/DownloadButton/download_icon_svg.svg') no-repeat 25px center;
    padding: 10px 25px 10px 50px;
    transition: 0.3s;
}
 .download-button:hover {
        background: #4D7E96 url('/~/media/FRB/Components/DownloadButton/download_icon_svg.svg') no-repeat 25px center;
        padding: 10px 25px 10px 50px;
        transition: 0.3s;
    }

 .btn-group .button-1:not(.main-segment) {
        background-color: #6298AE;
    }

    .btn-group .button-1:not(.main-segment):hover {
        background-color: #4D7E96;
        transition: 0.3s;
    }


.download-file-extension
{
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    color: #ACCEDC;
}

.main-segment.temp,
.more-segment.temp
{
    float: none;
    clear: left;
}

.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle).btn.main-segment.temp
{
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.btn-group > .btn.more-segment.temp
{
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 4px;
    clear: both;
}

.download-link {
    padding-left: 20px;
    background: transparent url('/~/media/FRB/Components/DownloadButton/download_icon-2.svg') no-repeat 0 center;
    color: #003A5D;
    font-size: 16px;
    line-height: 21px;
}
.download-link .download-file-extension {
    color: #B0B4B9;
    font-size: 16px;
}

