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

.header *,
.main *,
.footer *{
    box-sizing:border-box;
}
body{
background: linear-gradient(180.6deg, #1CC2DB 0%, #4e4e4e 100%) fixed
}
.container {
    width: 100%;
    max-width: 425px;
    margin-left: auto;
    margin-right: auto;

}

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

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

html{
    height: 100%;
}
.main{
    /*overflow-y: scroll;*/
}
body{
    margin: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
    overflow-y: scroll;
}

/* HEADER */
.header{
    /*background: #4e4e4e;*/
    /*box-shadow: 0 4px 35px rgba(0, 81, 79, 0.44);*/
    padding-top: 17px;
    padding-bottom: 13px;
    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{}
.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: 6px;
    background: #00A3D3;
    border-radius: 2px;
    margin-bottom: 7px;
    display: block;
}
.header .header_wrapper .header_burger .hamburger span:last-child{
    margin-bottom: 0;
}

/* MAIN */
.main{
    /*height: 100%;*/
    padding-bottom: 65px;
    padding-top: 21px;
}
.main .first_page{}
.main .first_page .main_title{
    font-size: 28px;
    line-height: 28px;
    color: #000;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    margin-bottom: 19px;
}
.main_subtitle{
    font-size: 18px;
    color:#000;
    font-family: 'Roboto', sans-serif;
    line-height: 25px;
    font-weight: 600;
    margin-bottom: 20px;
}
@media only screen and (max-width: 375px) {
    .main .first_page .main_title{
        font-size: 17px;
    }
}
.main .first_page .slider_wrapper{
    /*background: #FFFFFF;*/
    border-radius: 5px;
    /*padding: 24px 20px;*/
    position: relative;
    z-index: 99;
}
.slider-items{
    padding: 20px;
    background-color: #fff;
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
}
.informations{
    margin-top: 15px;
}
.slider-item.days{
    margin-bottom: 0 !important;
}
.inner_wrapper{
    position: relative;
}
.inner_wrapper:before{
    content: "";
    z-index: 98;
    position: absolute;
    width: 160px;
    height: 200px;
    top:0;
    right:22px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(/img/bars.png);
}
.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 .title{
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 16px;
    color: #455B5F;
    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: 'Roboto', 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: 'Roboto', sans-serif;
    font-weight: 400;
}

.main .first_page .slider_wrapper .informations{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.main .first_page .slider_wrapper .informations .information{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.main .first_page .slider_wrapper .informations .information .title{
    font-size: 10px;
    line-height: 12px;
    color: #000;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    margin-bottom: 4px;
}
.main .first_page .slider_wrapper .informations .information .money{
    border-radius: 20px;
    font-size: 12px;
    line-height: 14px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    padding: 9px 18px 7px;
}
@media only screen and (max-width: 375px) {
    .main .first_page .slider_wrapper .informations .information .money{
        padding: 9px 12px 7px;
    }
}
.main .first_page .slider_wrapper .informations .information.take .money{
    background: #fff;
    color: #000;
}
.main .first_page .slider_wrapper .informations .information.percent .money{
    background: #fff;
    color: #000;
}
.main .first_page .slider_wrapper .informations .information.give .money{
    color: #000;
    background: #fff;
}
.main .first_page .bottom_text{
    margin-top: 31px;
}
.main .first_page .bottom_text p{
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 10px;
    line-height: 100%;
    text-align: justify;
    color: #E3EFFF;
}


.main .second_page .main_title{
    font-size: 20px;
    line-height: 23px;
    color: #FFFFFF;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    margin-bottom: 19px;
}
@media only screen and (max-width: 375px) {
    .main .second_page .main_title{
        font-size: 17px;
    }
}
.main .second_page .form_wrapper{
    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: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #455B5F;
    margin-bottom: 12px;
}
.main .second_page .form_wrapper .phone-wrapper input{
    background: #F0F0F0;
    border-radius: 20px;
    border: none;
    height: 38px;
    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: 'Roboto', 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 .main_title{
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    margin-bottom: 19px;
}
@media only screen and (max-width: 375px) {
    .main .third_page .main_title{
        font-size: 14px;
    }
}
.main .third_page .offers_wrapper{}
.main .third_page .offers_wrapper .offer{
    background: #FFFFFF;
    box-shadow: 0px 4px 25px rgba(0,0,0,0.15);
    border-radius: 33px 70px 33px 33px;
    padding: 61px 44px 32px 44px;
    position: relative;
    margin-bottom: 35px;
}
.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{
    height: 30px;
    display: flex;
    align-items: center;
    padding-left: 10px;
    font-size: 12px;
    line-height: 14px;
    color: #FFFFFF;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    left: 0;
    top: 28px;
    position: absolute;
    padding-right: 30px;
}
.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.green{
    background: linear-gradient(180deg, #53B853 0%, #13AE64 100%), #5DBA45;
}
.main .third_page .offers_wrapper .offer .offer-bg{
    width: 100%;
    height: 80px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 70%;
    margin-bottom: 20px;
}
@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: 70%;
    }
}
.main .third_page .offers_wrapper .offer .rating{}
.main .third_page .offers_wrapper .offer .rating .title{
    text-align: center;
    font-family: 'Roboto', 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: #FACC20;
    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: 'Roboto', 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: 'Roboto', 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: #3C6A6F;
    font-family: 'Roboto', 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{}
.main .third_page .offers_wrapper .offer .general_button_wrapper .button{
    width: 100%;
}
@media only screen and (max-width: 375px) {
    .main .third_page .offers_wrapper .offer .general_button_wrapper .button{
        width: 90%;
    }
}

/* BUTTON */
.main .general_button_wrapper{
    text-align: center;
    margin-top: 30px;
}
.main .general_button_wrapper .button{
    width: 80%;
    margin: 0 auto;
    position: relative;
}
.second_page .inner_wrapper:before{
    top: -19px;
}
.second_page .inner_wrapper{
    z-index: 99;
}
.main .second_page .form_wrapper{
    position: relative;
    z-index: 99;
}
.main .general_button_wrapper .button a,
.main .general_button_wrapper .button button{
    background: linear-gradient(100.6deg, #1CC2DB 40%, #333 100%) fixed;
    border-radius: 7px;
    border: none;
    width: 100%;
    height: 43px;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: #FFFFFF;
    font-family: 'Roboto', 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 2s infinite;
    animation: pulse 2s infinite;
}
.main .general_button_wrapper .button a img{
    margin-right: 8px;
}
.main .general_button_wrapper .button button:hover{
    cursor: pointer;
    -webkit-animation: none;
}
.main .general_button_wrapper .button button:focus{
    outline: none;
}

@-webkit-keyframes pulse {
  0% {
    @include transform(scale(.9));
  }
  70% {
    @include transform(scale(1));
    box-shadow: 0 0 0 7px rgba(90,153,212, 0);
  }
    100% {
    @include transform(scale(.9));
    box-shadow: 0 0 0 0 rgba(90,153,212, 0);
  }
}
.main .first_page .bottom_text h3{
    color:#fff;
    font-family: 'Roboto', sans-serif;
}
.main .general_button_wrapper .button .action{
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 10px;
    line-height: 12px;
    text-align: right;
    color: #000;
    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: #EFEFEF !important;
    border-radius: 2px !important;
    top: 10px !important;
}
.irs--round .irs-single{
    display: none !important;
}
.irs--round .irs-bar{
    height: 6px !important;
    background: #397f8a !important;
    top: 10px !important;
}
.irs--round .irs-bar--single{
    border-radius: 2px !important;
}
.irs--round .irs-handle{
    background: #397f8a !important;
    box-shadow: 0px 4px 8px rgba(17,123,154, 0.22) !important;
    border: none !important;
    top: 3px !important;
    width: 20px !important;
    height: 20px !important;
}

/* FOOTER */
.footer{
    background: #FFFFFF;
    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: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    color: #455B5F;
}
.footer .footer_wrapper .footer_logo{}
.footer .footer_wrapper .footer_logo a{
    display: block;
}
.footer .footer_wrapper .footer_logo a img{}
@media only screen and (max-width: 375px) {
    .footer .footer_wrapper .footer_logo a img{
        width: 125px;
    }
}
@-webkit-keyframes pulse {
    0% {}
    70% {
        box-shadow: 0 0 0 4px rgba(28, 194, 219, .3);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(28, 194, 219, .3);
    }
}

@keyframes pulse {
    0% {}
    70% {
        box-shadow: 0 0 0 4px rgba(28, 194, 219, .3);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(28, 194, 219, .3);
    }
}

/* MOBILE NAV */
.mobile-menu{
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 85px;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: #F5F5F5;*/
    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: #00A3D3;
    display: block;
    font-family: 'Roboto', 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: #397f8a;
    padding: 3px 10px;
    color: white;
    border-radius: 10px;
    font-weight: 300;
}

.money-current {
    background: #397f8a;
    padding: 3px 10px;
    color: white;
    border-radius: 10px;
    font-weight: 300;
}

.input-wrapper {
    position: relative;
}

.phone-error {
    display: none;
    position: absolute;
    left: 0;
    bottom: -18px;
    color: #f00;
    font: 600 14px 'Roboto', sans-serif;
}
.texts .second-text {
    font-family: 'Rubik-Regular', sans-serif;
    color: #1F4072;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
}
.second-text {
    position: relative;
    color: #fff;
    padding: 4px 5px;
    background-color: #fff;
    border-radius: 3px;
}
.second-text span {
    display: block;
    position: absolute;
    right: -3px;
    bottom: -15px;
    background: #397f8a;
    padding: 2px 3px;
    border-radius: 3px;
    transform: rotate(-2deg);
}
.texts{
    display: flex;
    align-items: center;
}
/* FOOTER */
.footer{
    background: #FFFFFF;
    box-shadow: 0 4px 35px rgba(0, 81, 79, 0.44);
    padding-bottom: 14px;
    padding-top: 14px;
    /*margin-top: auto;*/
    margin-top: 20px;
}
.footer .footer_wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer .footer_wrapper .copy{}
.footer .footer_wrapper .copy span, .footer .footer_wrapper .copy a{
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    color: #455B5F;
    text-decoration: none;
}
.footer .footer_wrapper .footer_logo{}
.footer .footer_wrapper .footer_logo a{
    display: block;
}
.footer .container{
    width: 335px;
}

.footer .footer_wrapper .footer_logo a img{}
@media only screen and (max-width: 375px) {
    .footer .footer_wrapper .footer_logo a img {
        width: 125px;
    }
}