@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

.header *,
.main *,
.footer *{
    box-sizing:border-box;
}

.container {
    width: 100%;
    max-width: 425px;
    margin-left: auto;
    margin-right: auto;

}

.container .inner-cont{
    padding-left: 15px;
    padding-right: 15px
}

@media only screen and (max-width: 375px) {
    .container .inner-cont{
        padding-left: 15px;
        padding-right: 15px
    }
}

html{
    height: 100%;
}
.main{
    overflow-y: scroll;
}
body{
    font-family: 'Inter', sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    position: relative;
/*    height: 100%;*/
/*    overflow-y: scroll;*/
    background: #FEF8F2;
}

img {
    width: 100%;
}

ul {
    margin: 0;
    padding: 0
}

ul li {
    list-style: none
}

.main {
    overflow: hidden;
}
/* HEADER */
.header{
    background: transparent;
/*    box-shadow: 0 4px 35px rgba(0, 81, 79, 0.44);*/
    padding-top: 15px;
    padding-bottom: 15px;
    z-index: 6;
}
.header .header_wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header .header_wrapper .header_logo{}
.header .header_wrapper .header_logo a{
    display: block;
}
.header .header_wrapper .header_logo a img{
    max-width: 175px;
    width: 100%;x
}
.header .header_wrapper .header_text {
    background: #0055b8;
    font-family: 'Inter', sans-serif;
    font-style: italic;
    transform: skewX(-4deg);
    color: #ffffff;
    padding: 5px 8px;
    border-radius: 3px;
    font-size: 13px;
}
.header .header_wrapper .header_burger{
    margin-bottom: 5px;
}
.header .header_wrapper .header_burger:hover{
    cursor: pointer;
}
.header .header_wrapper .header_burger .hamburger{}
.header .header_wrapper .header_burger .hamburger span{
    width: 39px;
    height: 5px;
    background: #000;
    border-radius: 2px;
    margin-bottom: 7px;
    display: block;
}
.header .header_wrapper .header_burger .hamburger span:last-child{
    margin-bottom: 0;
}

/* MAIN */
.main{
/*    background: linear-gradient(164.6deg, #ffa479 0%, #ff8488 100%) fixed;*/
    height: 100%;
    padding-bottom: 65px;
    padding-top: 20px;
}
.main .first_page{
/*    padding-top: 30px;*/
}
.main .title-wrap {
    position: relative;
}
.main .first_page .main_title{
    font-family: 'Inter';
    font-style: normal;
    font-weight: 800;
    font-size: 23px;
    line-height: 106%;
    color: #363636;
    margin-bottom: 15px;
}
.main .main_subtitle {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 106%;
    color: #363636;
    margin-bottom: 20px;
}
@media only screen and (max-width: 375px) {
    .header .header_wrapper .header_logo a img {
        max-width: 140px;
    }
    .main .main_subtitle {
        font-size: 15px;
    }
    .main .first_page .main_title{
/*        font-size: 17px;*/
    }
}
.main .first_page .slider_wrapper{
    position: relative;
    background: #fff;
    box-shadow: 0px 4px 25px rgb(0 0 0 / 35%);
    border-radius: 1px;
    padding: 30px 25px;
}
.main .first_page .img-holder {
    width: 203px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -70px;
    z-index: -1;
}
.main .first_page .slider_wrapper .slider-items{}
.main .first_page .slider_wrapper .slider-items .slider-item{
    margin-bottom: 25px;
}
.main .first_page .slider_wrapper .slider-items .slider-item.days {
    margin-bottom: 0;
}
.main .first_page .slider_wrapper .slider-items .slider-item .title{
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 16px;
    color: #363636;
    font-weight: 400;
    margin-bottom: 6px;
}
.main .first_page .slider_wrapper .slider-items .slider-item .labels{
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.main .first_page .slider_wrapper .slider-items .slider-item .labels .left-label{
    font-size: 12px;
    line-height: 14px;
    color: #B3B3B3;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}
.main .first_page .slider_wrapper .slider-items .slider-item .labels .right-label{
    font-size: 12px;
    line-height: 14px;
    color: #B3B3B3;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.main .first_page .informations{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0 0 0;
}
.main .first_page .informations .information{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.main .first_page .informations .information .title{
    font-size: 10px;
    line-height: 12px;
    color: #363636;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    margin-bottom: 4px;
}
.main .first_page .informations .information .money{
    border-radius: 5px;
    font-size: 12px;
    line-height: 14px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    padding: 9px 5px 7px;
}
@media only screen and (max-width: 375px) {
    .main .first_page .informations .information .money{
        padding: 9px 12px 7px;
    }
    /*.main .first_page .slider_wrapper .img-holder {
        width: 170px;
        top: -150px
    }*/
}
.main .first_page .informations .information.take .money{
/*    background: #f7f2ec;*/
    color: #363636;
}
.main .first_page .informations .information.percent .money{
/*    background: #f7f2ec;*/
    color: #363636;
}
.main .first_page .informations .information.give .money{
    color: #363636;
/*    background: #f7f2ec;*/
}
.main .bottom_text{
    margin-top: 31px;
}
.main .bottom_text p{
    text-align: justify;
    font-weight: 400;
    font-size: 10px;
    line-height: 14px;
    color: #404040;
}

.main .second_page {
/*    padding-top: 30px;*/
}
.main .second_page .main_subtitle b {
    display: block;
    font-size: 20px;
    margin-bottom: 6px;
}
.main .second_page .main_title{
    font-size: 20px;
    line-height: 23px;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 19px;
}
@media only screen and (max-width: 375px) {
    .main .second_page .main_title{
        font-size: 17px;
    }
}
.main .second_page .img-holder {
    width: 203px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -70px;
    z-index: -1;
}
.main .second_page .form_wrapper{
    position: relative;
    background: #FFFFFF;
    box-shadow: 0px 4px 25px rgba(0,0,0,0.15);
    border-radius: 5px;
    padding: 24px 20px;
}
.main .second_page .form_wrapper .phone-wrapper{}
.main .second_page .form_wrapper .phone-wrapper .label{
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #363636;
    margin-bottom: 12px;
}
.main .second_page .form_wrapper .phone-wrapper input{
    background: #F0F0F0;
    border-radius: 6px;
    border: none;
    height: 54px;
    font-size: 18px;
    width: 100%;
    padding-left: 19px;
    padding-right: 19px;
}
.main .second_page .form_wrapper .phone-wrapper input:focus{
    outline: none;
}
.main .second_page .form_wrapper .phone-wrapper input::placeholder{
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #BBBBBB;
}
.main .second_page .form_wrapper .general_button_wrapper{
    margin-top: 23px;
}

.main .third_page {
/*    padding-top: 30px;*/
}
.main .third_page .main_title{
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 19px;
}
.main .third_page .main_subtitle {
    text-align: center;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 700;
    color: #333333;
}
@media only screen and (max-width: 375px) {
    .main .third_page .main_title{
        font-size: 14px;
    }
    .main .second_page .form_wrapper .img-holder {
        width: 150px;
        right: 0;
        top: -130px
    }
}
.main .third_page .offers_wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.main .third_page .offers_wrapper .offer {
    width: calc(50% - 5px);
    padding: 12px 10px;
    position: relative;
    margin-top: 25px;
    background: #FFFFFF;
    box-shadow: 0px 4px 25px rgba(0,0,0,0.15);
    border-radius: 15px;
}
.main .third_page .offers_wrapper .offer > a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
}
/*.main .third_page .offers_wrapper .offer.not-small-padding{
    padding: 78px 25px 32px 25px;
}*/
@media only screen and (max-width: 375px) {
    /*.main .third_page .offers_wrapper .offer.not-small-padding{
        padding: 78px 25px 32px 25px;
    }
    .main .third_page .offers_wrapper .offer{
        padding: 40px 25px 32px 25px;
    }*/
}
.main .third_page .offers_wrapper .offer .label{
    font-family: 'Gilroy', sans-serif;
    font-size: 10px;
    font-weight: 600;
    height: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
    position: absolute;
    left: 50%;
    width: 115px;
    text-align: center;
    transform: translateX(-50%);
    top: -12px;
    padding: 0 9px;
    border-radius: 2px;
    text-transform: uppercase;
}
.main .third_page .offers_wrapper .offer .label .rubick{
    position: absolute;
    width: 30px;
    height: 30px;
    background: white;
    transform: rotate(45deg);
    right: -15px;
}
.main .third_page .offers_wrapper .offer .label.orange{
    background: linear-gradient(180deg, #F4C411 0%, #F89500 100%), #FACC20;
}
.main .third_page .offers_wrapper .offer .label.purple{
    background: #af5bf8;
}
.main .third_page .offers_wrapper .offer .label.green{
    background: #0BC33F;
}
.main .third_page .offers_wrapper .offer .label.dark{
    background: #444;
}
.main .third_page .offers_wrapper .offer .offer-bg{
    width: 100%;
    height: 80px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 110%;
    margin-bottom: 20px;
    text-decoration: none;
}
@media only screen and (max-width: 375px) {
    .main .third_page .offers_wrapper .offer .offer-bg{
        background-size: 97%;
    }
}
@media only screen and (min-width: 425px) {
    .main .third_page .offers_wrapper .offer .offer-bg{
        background-size: 88%;
    }
}
.main .third_page .offers_wrapper .offer .offer-logo {
    width: 90%;
    margin: 0 auto;
}

.main .third_page .offers_wrapper .offer .offer-info {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid #E7ECF0;
    padding-top: 17px;
    text-align: center;
}
.main .third_page .offers_wrapper .offer .offer-info li {
    font-size: 12px;
    color: #2D4562;
    position: relative;
    margin-bottom: 5px;
}
.main .third_page .offers_wrapper .offer .offer-info li:last-child {
    margin-bottom: 0;
}
.main .third_page .offers_wrapper .offer .offer-info li span {
    display: block;
    font-weight: 400;
    color: #636363;
    font-size: 12px;
}
.main .third_page .offers_wrapper .offer .offer-info li span.bold {
    font-weight: 700;
    font-size: 15px;
    color: #222;
}
.main .third_page .offers_wrapper .offer .rating{}
.main .third_page .offers_wrapper .offer .rating .title{
    text-align: center;
    font-family: 'Gilroy', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #113C40;
}
.main .third_page .offers_wrapper .offer .rating .bar-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
    margin: 8px auto 0;
}
.main .third_page .offers_wrapper .offer .rating .bar-wrap .bar-top{
    height: 17px;
    width: 90%;
    background: #CDCDCE;
    border-radius: 54px;
}
.main .third_page .offers_wrapper .offer .rating .bar-wrap .bar-top .inner{
    background: #58B239;
    border-radius: 54px;
    height: 17px;
}
.main .third_page .offers_wrapper .offer .rating .bar-wrap .value{
    font-size: 14px;
    line-height: 16px;
    color: #BBBBBB;
    margin-left: 7px;
    font-family: 'Gilroy', sans-serif;
    font-weight: 400;
}
.main .third_page .offers_wrapper .offer .bank-card{
    margin-top: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.main .third_page .offers_wrapper .offer .bank-card img{
    margin-right: 7px;
}
.main .third_page .offers_wrapper .offer .bank-card span{
    font-family: 'Gilroy', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    color: #113C40;
}
.main .third_page .offers_wrapper .offer .text-data{
    margin-bottom: 8px;
    text-align: center;
    font-size: 12px;
    line-height: 14px;
    color: #406F3C;
    font-family: 'Gilroy', sans-serif;
    font-weight: 400;
}
.main .third_page .offers_wrapper .offer .text-data .bold{
    font-weight: 700;
}
.main .third_page .offers_wrapper .offer .general_button_wrapper{
    margin-top: 0;
}
/*.main .third_page .offers_wrapper .offer .general_button_wrapper .button{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0055b8;
    color: #fff;
    padding: 10px 5px;
    font-size: 13px;
    border-radius: 5px;
}*/
@media only screen and (max-width: 375px) {
    .main .third_page .offers_wrapper .offer .general_button_wrapper .button{
        width: 100%;
    }
}
@media (max-width: 350px) {
    .main .third_page .offers_wrapper .offer .offer-info li span {
        font-size: 12px;
    }
    .main .third_page .offers_wrapper .offer .offer-info li span.bold {
        font-size: 15px;
    }
}

/* BUTTON */
.main .general_button_wrapper{
    text-align: center;
    margin-top: 20px;
}
.main .general_button_wrapper .button{
    width: 90%;
    margin: 0 auto;
    position: relative;
}
.main .general_button_wrapper .button a,
.main .general_button_wrapper .button button{
    background: #0055b8;
    border-radius: 6px;
    border: none;
    width: 100%;
    height: 50px;
    font-size: 13px;
    line-height: 19px;
    text-align: center;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 0 rgba(90,153,212, .5);
    -webkit-animation: pulse 1.8s infinite;
}
.main .general_button_wrapper .button a img{
    margin-right: 8px;
    width: 30px;
}
.main .general_button_wrapper .button button:hover{
    cursor: pointer;
    -webkit-animation: none;
}
.main .general_button_wrapper .button button:focus{
    outline: none;
}
.main .general_button_wrapper .button .money-btn {
    margin-left: 10px;
    display: inline-block;
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 25px;
    text-align: center;
    color: #363636;
    background: #f9bb47;
    border-radius: 5px;
    padding: 6px 12px;
}
@media only screen and (max-width: 375px) {
    .main .general_button_wrapper .button a,
    .main .general_button_wrapper .button button {
        font-size: 12px;
    }
    .main .general_button_wrapper .button .money-btn {
        font-size: 12px;
    }
}

@-webkit-keyframes pulse {
  0% {
    @include transform(scale(.9));
  }
  70% {
    @include transform(scale(1));
    box-shadow: 0 0 0 10px rgba(90,153,212, 0);
  }
    100% {
    @include transform(scale(.9));
    box-shadow: 0 0 0 0 rgba(90,153,212, 0);
  }
}

.main .general_button_wrapper .button .action{
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 10px;
    line-height: 12px;
    text-align: right;
    color: #363636;
    font-style: italic;
    margin-top: 10px;
}
.main .general_button_wrapper .button .arrow{
    position: absolute;
    right: -23px;
    top: 26px;
}

/* SLIDER */
.irs--round{
    height: 20px !important;
}
.irs--round .irs-line{
    height: 6px !important;
    background: #c0c0c0 !important;
    border-radius: 2px !important;
    top: 10px !important;
}
.irs--round .irs-single{
    display: none !important;
}
.irs--round .irs-bar{
    height: 6px !important;
    background: #0055b8 !important;
    top: 10px !important;
}
.irs--round .irs-bar--single{
    border-radius: 2px !important;
}
.irs--round .irs-handle{
    background: #0055b8 !important;
/*    box-shadow: 0px 4px 8px rgba(17,123,154, 0.22) !important;*/
    box-shadow: none !important;
    border: 3px solid rgba(251, 223, 78, 0.3) !important;
    border-radius: 5px !important;
    top: 3px !important;
    width: 20px !important;
    height: 20px !important;
}
.irs--round .irs-handle:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 50px;
    height: 50px;
    z-index: 999;
}

/* FOOTER */
.footer{
    background: transparent;
    box-shadow: 0 4px 35px rgba(0, 81, 79, 0.44);
    padding-bottom: 14px;
    padding-top: 14px;
    margin-top: auto;
}
.footer .footer_wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer .footer_wrapper .copy{}
.footer .footer_wrapper .copy span{
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    color: #363636;
}
.footer .footer_wrapper .footer_logo{}
.footer .footer_wrapper .footer_logo a{
    display: block;
}
.footer .footer_wrapper .footer_logo a img {
    max-width: 125px;
}
.footer .footer_wrapper .footer_logo a img{}
@media only screen and (max-width: 375px) {
    .footer .footer_wrapper .footer_logo a img{
        width: 115px;
    }
}


/* MOBILE NAV */
.mobile-menu{
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 85px;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 3;
    transform: translateY(-100%);
}
.mobile-menu .mobile-inner{
    margin-top: 27px;
}
.mobile-menu .mobile-inner .mobile-items{}
.mobile-menu .mobile-inner .mobile-items .mobile-item{}
.mobile-menu .mobile-inner .mobile-items .mobile-item a{
    font-size: 16px;
    line-height: 19px;
    text-decoration-line: underline;
    color: #363636;
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

/* ANIMATION */
.slide-top {
    -webkit-animation: slide-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
@-webkit-keyframes slide-top {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}
@keyframes slide-top {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}


.slide-bottom {
    -webkit-animation: slide-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
@-webkit-keyframes slide-bottom {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes slide-bottom {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.days-title {
    display: flex;
    justify-content: space-between;
}

.money-title {
    display: flex;
    justify-content: space-between;
}

.days-current {
    background: #0055b8;
    padding: 5px 10px;
    color: #fff;
    border-radius: 0;
    font-weight: 300;
}

.money-current {
    background: #0055b8;
    padding: 5px 10px;
    color: #fff;
    border-radius: 0;
    font-weight: 300;
}

.input-wrapper {
    position: relative;
}

.phone-error {
    display: none;
    position: absolute;
    left: 0;
    bottom: -18px;
    color: #f00;
    font: 600 14px 'Inter', sans-serif;
}

.modal {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .7);
    z-index: 99999;
}
.modal-content {
    background-color: #363636;
    padding: 30px 20px;
    border: 1px solid #888;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin-top: -50px
}
.modal-content .close {
    position: absolute;
    top: 2px;
    right: 7px;
    padding: 0;
    color: #7f7f7f;
    margin: 0;
    cursor: pointer;
    font-size: 30px;
    display: inline-block
}

.modal-details .modal-content {
    padding: 15px 40px;
    width: calc(100% - 70px);
    background-color: #fff;
    -webkit-box-shadow: 0 0 25px rgb(255 255 255 / 30%);
    box-shadow: 0 0 25px rgb(255 255 255 / 30%)
}

.modal-details .modal-logo {
    max-width: 150px;
    margin: 0 auto
}

.modal-details ul.list-style-1 {
    text-align: center;
    padding-top: 15px
}
.modal-details ul.list-style-1 li {
    position: relative;
    padding-right: 15px;
    text-align: center;
    font-size: 18px
}
.btn-wrapper,
.modal-details ul.list-style-2 {
    text-align: center
}

.btn-main,
.btn-offer-details {
    text-align: center;
    font-size: 13px;
}
.modal-details .modal-heading {
    text-align: center;
    font-size: 14px
}
.modal-details .modal-heading {
    margin-bottom: 5px
}

.modal-details ul.list-style-1 li:last-child {
    padding-right: 0
}
.modal-details ul.list-style-1 li:first-child:before {
    content: '';
    position: absolute;
    right: 5px;
    width: 1px;
    height: 90%;
    background: #babcbd;
}
.modal-details ul.list-style-2 li {
    position: relative;
    text-align: center;
    padding: 0 4px;
    font-size: 14px;
    margin-bottom: 2px
}
.modal-details ul.list-style-1 li,
.modal-details ul.list-style-2 li {
    font-weight: 500;
    color: #343333;
    display: inline-block
}
.modal-details ul.list-style-1 li span,
.modal-details ul.list-style-2 li span {
    font-weight: 700;
    color: #0055b8;
}

.modal-details .modal-offer-links {
    text-align: center;
    margin-top: 8px
}

.modal-details .modal-offer-links a {
    display: inline-block;
    margin-top: 12px;
    font-size: 13px;
    text-decoration: none;
    color: #888888;
}

.modal-details .modal-button {
    margin-top: 25px
}

.btn-offer-details {
    display: inline-flex;
    position: relative;
    user-select: none;
    cursor: pointer;
    color: #003f88;
    padding-right: 14px;
    margin: 13px 0;
}

.icon,
.triangle-down {
    display: inline-block
}

.triangle-down {
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -2px;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    border: 1px solid #003f88;
    border-width: 0 1.5px 1.5px 0;
    height: 9px;
    width: 9px
}

.icon {
    vertical-align: middle;
    width: 15px;
    height: 15px;
    background-size: 100%;
    background-repeat: no-repeat
}

.icon.icon-info {
    background-image: url('../img/ico-i.svg');
    margin-top: -3px;
    margin-right: 4px
}

.icon.icon-link-arrow {
    width: 12px;
    height: 12px;
    background-image: url('../img/ico-link-arrow.svg');
    margin-top: -2px;
    margin-left: 5px
}

.btn-main {
    position: relative;
    background: #0055b8;
    border-radius: 5px;
    border: none;
    width: 100%;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    height: 50px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 0 rgba(90, 153, 212, .5);
    -webkit-animation: 2s infinite pulse;
    text-decoration: none
}


@media (max-width:767px) {
    .modal-details .modal-content {
        width: calc(100% - 30px)
    }
}
@media (max-width:350px) {
    .modal-details .modal-content {
        padding: 15px;
        margin-top: 0
    }
}

