.control-label {
    margin-right: .5em;
    min-width: 190px; 
    font-family: var(--secondary-font-family);
	font-weight: var(--primary-font-weight-bold);
}

#SendRateCountryDropdown,
#SendRateCurrencyDropdown,
#SendRateUSPlanDropdown {
    cursor: pointer;
    font-family: var(--primary-font-family);
	font-weight: var(--primary-font-weight-semi-bold);
    font-size: calc(14px + (15 - 14) * ((100vw - 320px) / (1920 - 320)));
    line-height: 48px;
    background-color: var(--secondary-palette-warm-grey-100);
    color: var(--secondary-palette-dark-grey);
    border: 3px solid var(--secondary-palette-dark-grey);
    padding: 0px 30px;
    height: 52px;
    box-shadow: 5px 4px 0px 0px rgba(0, 0, 0, 0.16);
    position: relative;
    appearance: none;               
    -webkit-appearance: none;        
    -moz-appearance: none;           
}

/* Adjust the padding to make space for the custom arrow */
#SendRateCountryDropdown,
#SendRateCurrencyDropdown,
#SendRateUSPlanDropdown {
    padding-right: 45px; 
    width: 100%;          
}

#SendRateCountryDropdown::-ms-expand,
#SendRateCurrencyDropdown::-ms-expand {
    display: none;
}

.rate-results {
    display: flex;
    flex-direction: column;
}

.modal-body{
    max-width: 750px; 
}

.SendRateBody .control-label {
    align-self: flex-start;
}

span{
    font-family: var(--primary-font-family);
    font-weight: var(--primary-font-weight-regular);
}

.SendRateUSPlan {
    display: none;
}
.blue-border {
    border: solid 2px var(--primary-palette-blue-100);
    z-index: 1;
}

#loading {
    font-size: 1em;
    background: linear-gradient(90deg, #000, #a1a1a1, #000);
    background-repeat: no-repeat;
    background-size: 80%;
    animation: animate 1s linear infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(000, 000, 000, 0);
}

.legal-copy{
    font-size: 14px;
    line-height: 21px;
}

.international-rates::after{
    content: "";
    background-image: url(../svg/feature-hero-pattern.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    height: 15%;
    z-index: 0;
    width: 80%;
    top: 0;
    right: 0; 
}
@media (min-width: 992px){
    .international-rates::after{
        height: 60%;
        z-index: 0;
        width: 50%;
    }
}
@keyframes animate {
0% {
background-position: -500%;
}
100% {
background-position: 500%;
}
}

.custom-select-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

#SendRateCurrencyDropdown {
    appearance: none;              
    -webkit-appearance: none;     
    -moz-appearance: none;           
    width: 100%;
    font-family: "SofiaProBold";
    font-family: var(--primary-font-family);
    font-weight: var(--primary-font-weight-bold);
    font-size: calc(14px + (15 - 14) * ((100vw - 320px) / (1920 - 320)));
    line-height: 48px;
    background-color: var(--secondary-palette-warm-grey-100);
    color: var(--secondary-palette-dark-grey);
    border: 3px solid var(--secondary-palette-dark-grey);
    padding: 0px 30px;
    height: 52px;
    box-shadow: 5px 4px 0px 0px rgba(0, 0, 0, 0.16);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 45px; 
    cursor: pointer;
}

.custom-select-wrapper::after {
    content: "";
    position: absolute;
    background-image: url(../svg/down-arrow-black.svg);
    top: 29px;
    background-size: contain;
    height: 10px;
    right: 40px;
    transform: translateY(-50%);
    font-size: 12px;
    color: var(--secondary-palette-dark-grey);
    pointer-events: none;
    width: 11px;
    background-repeat: no-repeat;
}

#SendRateCurrencyDropdown::-ms-expand {
    display: none;
}

#SendRateCurrencyDropdown {
    padding-right: 45px; 
}
