/*----------------------------------------------------------------------------------

-----------------------------------------------------------------------------------*/

/************** 1. Typography ************************/

/* common css start */
:root {
    --color_primary: #02a6eb;
    --color_background: #3aa0e3;
    --color_background_graint: #73c7ff;
    --color_heading: #262626;
    --color_white: #ffffff;
    --color_white_blue: #def2ff;
    --color_black: #333333;
  }
  
  *,
  *::after,
  *::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  fieldset,
  legend {
    all: revert;
  }
  fieldset {
    background: var(--color_white);
    border: 1px solid #e3e3e3;
    border-radius: 5px;
    margin: 5px 20px;
    margin-bottom: 10px;
    padding-bottom: 3px;
  }
  legend {
    background: var(--color_white);
    border: 1px solid #e3e3e3;
    border-radius: 5px;
    padding: 5px 10px;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    margin-left: 19px;
  }
  fieldset .row{
    margin-top: -5px;
  }
  .SendMoneyBtn {
    padding: 12px 80px;
    text-align: center;
    display: block;
    width: 90%;
    margin: 0 auto;
    margin-top: 20px;
  }

.ajax_loader {
    left: 3px;
    position: absolute;
    font-size: 18px;
}

.fa-eye:before {
    padding-top: 5px !important;
}

.cardFilterExport .filterIcon {
    position: absolute;
    top: 8px;
    left: 75px !important;
}

.common_calculator_switcher{
  height: 50px;
  width: 100%;
  background: #dde0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 5px;
}  
.common_calculator_switcher a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  flex-grow: 1;
  text-align: center;
  color: #000;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  transition: all ease-in-out 100;
  border: 1px solid transparent;
  border-radius: 5px;
}
.common_calculator_switcher a:hover, 
.common_calculator_switcher a.cal_active{
  background: linear-gradient(93.73deg, #0099ff 0%, #298acb 100%);
  color: #fff;
  transition: all ease-in-out 100;
}




@media only screen and (max-width: 768px) {
    .SendMoneyBtn {
        padding: 9px 48px;
        text-align: center;
        display: block;
        width: 90%;
        margin: 0 auto;
        margin-top: 20px;
    }

}

.currency_code {
  margin-left: 10px;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #262626;
}

/* Chrome, Safari, Edge, Opera */
 input::-webkit-outer-spin-button,
 input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
.remitCalculator input[type=number] {
    -moz-appearance: textfield;
}

#NotiflixNotifyWrap {
    position: fixed !important;
    right: 0 !important;
    top: 20px !important;
}

.startup_loader {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #F4F4F4;
    z-index: 99;
    bottom: 0;
    border-radius: 10px;
}

.center_loader {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.center_loader .fa-spinner {
    font-size: 28px;
    font-weight: 900;
}

.spinner_blink {
    margin: 100px auto;
    width: 120px;
    height: 120px;
    border: 16px solid #f3f3f3;
    border-top: 16px solid #3498db;
    border-radius: 50%;
    animation: spin 2s linear infinite, heart-beat 2s linear infinite;
    background-color: #fff;
    text-align: center;
    line-height: 120px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes heart-beat {
    55% {
        background-color: #fff;
    }

    60% {
        background-color: #3498db;
    }

    65% {
        background-color: #fff;
    }

    70% {
        background-color: #3498db;
    }

    100% {
        background-color: #fff;
    }
}
.calculator_wraper .calculator_content_box{
    background: #fff;
    padding: 15px 10px 25px 10px;
    border-radius: 10px;
    box-shadow: 0px 15px 25px 10px #0162a347;
}
.calculator_wraper .calculator_content_box sub{
    font-weight: 400;
    font-size: 10px;
}
.calculator_wraper .simsl_select_items{
    scrollbar-width: none;
    -ms-overflow-style: none; /* IE and Edge */
    border: 1px solid #E1E1E1;
    border-radius: 10px;
    background-color: #F6F8F7;
    padding: 0 10px 10px;
}
.calculator_wraper .calculator_content_box .title_section .title{
    font-size: 24px;
    font-weight: 600;
}
.calculator_wraper #sendfrom_wrapper .simsl_select_items,
.calculator_wraper #sendto_currency_wrapper .simsl_select_items{
    padding: 10px;
}
.calculator_wraper .calculator_form .sendto_wrapper .simsl_select_items{
    padding: 0 10px 10px;
}
.calculator_wraper .simsl_select_items div:hover{
    background-color: #DEDFE1;
    border-radius: 10px;
}
.calculator_wraper .smart_timeline_items_wraper .simsl_select_items div {
    padding: 10px 5px;
}
.calculator_wraper .smart_timeline_items_wraper .simsl_item_selected,
.calculator_wraper .smart_timeline_items_wraper .simsl_select_items{
    color: #001756;
}
.calculator_wraper #sendfrom_wrapper .simsl_select_items,
.calculator_wraper #sendto_wrapper .simsl_select_items{
    top: 55px;
    z-index: 9;
}
.calculator_wraper .calculator_form .smart_timeline_items_wraper .simsl_item_selected .simsl_arrow{
    top: 12px;
    right: 20px;
}
.calculator_wraper .calculator_form .local_currency_field .simsl_item_selected,
.calculator_wraper .calculator_form .foreign_currency_field .simsl_item_selected {
    padding: 0 10px 10px 10px;
}
.calculator_wraper .simsl_item_selected {
    padding: 5px 10px;
    background-color: #F6F8F7;
    font-weight: 500;
}
.calculator_wraper .smart_timeline_items_wraper .simsl_item_selected,
.calculator_wraper .smart_timeline_items_wraper .simsl_select_items{
    background-color: #E6EDFF;
    border-radius: 10px;
}
.calculator_wraper .smart_timeline_items_wraper .simsl_select_items{
    top: 38px;
    padding: 10px 5px;
}
.calculator_wraper .simsl_select_items div {
    padding: 5px 10px;
}
.calculator_content_box .local_currency_field,
.calculator_content_box .foreign_currency_field{
    background-color: #F6F8F7;
}
.calculator_content_box legend{
    padding: 3px 10px;
    display: flex;
    justify-content: center;
}
.calculator_content_box .calculator_form .local_currency_field input#input_local_currency,
.calculator_content_box .calculator_form .local_currency_field input#input_local_currency_send_money,
.calculator_content_box .calculator_form .foreign_currency_field  input#input_foreign_currency_send_money,
.calculator_content_box .calculator_form .foreign_currency_field input#input_foreign_currency{
    width: 100% !important;
    height: 100%;
    border: 1px solid transparent !important;
    background-color: #F6F8F7 !important;
    padding-left: 20px;
    font-weight: 500;
    color: #232524;
    font-size: 16px;
}

#sm-calculator .calculator_content_box .calculator_form .foreign_currency_field .simsl_search_input{
    width: 100%;
    border: 1px solid transparent;
    background-color: #F6F8F7;
    font-weight: 500;
    color: #232524;
    font-size: 16px;
}
#sm-calculator .calculator_content_box .calculator_form input:focus-visible{
    outline: none;
}
#sm-calculator .calculator_content_box .simsl_search_input{
    position: sticky;
    top: 0;
}
input[type="number"] { 
    -moz-appearance: textfield; 
} 
/* Remove spinner in Chrome, Edge, and Safari */
input[type="number"]::-webkit-outer-spin-button, 
input[type="number"]::-webkit-inner-spin-button {
     -webkit-appearance: none; margin: 0; 
}
#sm-calculator .smart_timeline{
    position: relative;
    z-index: 1;
}
#sm-calculator .smart_timeline::before{
    content: '';
    width: 1px;
    position: absolute;
    top: 5px;
    left: 75px;
    background-color: #656565;
    z-index: -1;
}
#sm-calculator .smart_timeline_sendfrom::before{
    height: 100%;
}
#sm-calculator .smart_timeline_sendto::before{
    height: 179px;
}
#sm-calculator .rate_refresher #reloader_btn{
    cursor: pointer;
    position: absolute;
    left: 63px;
    background-color: #fff;
}
#sm-calculator .smart_timeline_items_wraper{
    padding-left: 95px;
    list-style: none;
    margin-bottom: 28px !important;
}
#sm-calculator .smart_timeline_items_wraper .exchangeRate {
    font-weight: 500;
    margin-bottom: -20px;
    margin-top: 15px;
}
#sm-calculator.smart_timeline_items_wraper li strong{
    font-weight: 500;
}
ul.custom_bullets {
    list-style: none;
}

ul.custom_bullets li {
    position: relative;
}

#sm-calculator ul.custom_bullets li::before {
    content: "";
    position: absolute;
    left: -36px;
    top: 11px;
    transform: translateY(-50%);
    width: 9px; /* Adjust this value to change the bullet size */
    height: 9px; /* Adjust this value to change the bullet size */
    background-color: #656565; /* Change this to desired bullet color */
    border-radius: 50%; /* This makes the bullet a circle (disc) */
}
#sm-calculator .rate_refresher #reloader_btn{
    transition: all ease-in-out 400ms;    
    box-shadow: 0px 0px 15px 5px #0d6efd24;
    border-radius: 50%;
}
#sm-calculator .rate_refresher #reloader_btn:hover{
    transition: all ease-in-out 400ms;
    transform: scale(1.15);

}
#sm-calculator .calculator_wraper .totalAmount{
    font-weight: 600;
    font-size: 16px;
    padding: 8px 0;
    border-top:1px solid #D6D6D6;
}
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.rotate {
    display: inline-block;
    animation: rotate 2s linear infinite;
    transition: all ease-in-out 200ms;
}
.stop_rotatation {
    animation: none;
    transition: all ease-in-out 200ms;
}