@font-face {
    font-family: "Roboto-Regular";
    src: url("../fonts/roboto/Roboto-Regular.ttf");
    font-display: swap;
}

@font-face {
    font-family: "Roboto-Black";
    src: url("../fonts/roboto/Roboto-Black.ttf");
    font-display: swap;
}


@font-face {
    font-family: "VW-Regular";
    src: url("../fonts/vw/VW-Regular.ttf");
    font-display: swap;
}

html, body{
    height: 100%;
}

body{
    margin: 0;
    background: #E5EBFD;

    display: flex;
    flex-direction: column;

    overflow-x: hidden;
}

.container{
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
}

.row{
    padding-left: 17px;
    padding-right: 17px;
}

/* header */

header{
    background: #536F9D;
}

header .header{
    padding: 15px 0;
    display: flex;
    align-items: center;
}
header .header .logo-img{
    margin-right: 13px;
}
header .header .logo-img{
    width: 56px;
    height: 56px;
    display: block;
}
header .header .logo-text{}
header .header .logo-text .main-text{
    font-family: 'Roboto-Regular', sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 25px;
    line-height: 29px;
    color: #FFFFFF;
}
header .header .logo-text .second-text{
    font-family: 'Roboto-Regular', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 16px;
    color: #FFFFFF;
}

/* header */

/* main */

/**
 * ==============================================
 * Dot Pulse
 * ==============================================
 */
.dot-pulse {
    position: relative;
    left: -9999px;
    width: 7px;
    height: 7px;
    border-radius: 5px;
    background-color: #9880ff;
    color: #9880ff;
    box-shadow: 9999px 0 0 -5px #9880ff;
    -webkit-animation: dot-pulse 1.5s infinite linear;
    animation: dot-pulse 1.5s infinite linear;
    -webkit-animation-delay: .25s;
    animation-delay: .25s;
}

.dot-pulse::before, .dot-pulse::after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 0;
    width: 7px;
    height: 7px;
    border-radius: 5px;
    background-color: #9880ff;
    color: #9880ff;
}

.dot-pulse::before {
    box-shadow: 9984px 0 0 -5px #9880ff;
    -webkit-animation: dot-pulse-before 1.5s infinite linear;
    animation: dot-pulse-before 1.5s infinite linear;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.dot-pulse::after {
    box-shadow: 10014px 0 0 -5px #9880ff;
    -webkit-animation: dot-pulse-after 1.5s infinite linear;
    animation: dot-pulse-after 1.5s infinite linear;
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
}

@-webkit-keyframes dot-pulse-before {
    0% {
        box-shadow: 9984px 0 0 -5px #9880ff;
    }
    30% {
        box-shadow: 9984px 0 0 2px #9880ff;
    }
    60%,
    100% {
        box-shadow: 9984px 0 0 -5px #9880ff;
    }
}

@keyframes dot-pulse-before {
    0% {
        box-shadow: 9984px 0 0 -5px #9880ff;
    }
    30% {
        box-shadow: 9984px 0 0 2px #9880ff;
    }
    60%,
    100% {
        box-shadow: 9984px 0 0 -5px #9880ff;
    }
}

@-webkit-keyframes dot-pulse {
    0% {
        box-shadow: 9999px 0 0 -5px #9880ff;
    }
    30% {
        box-shadow: 9999px 0 0 2px #9880ff;
    }
    60%,
    100% {
        box-shadow: 9999px 0 0 -5px #9880ff;
    }
}

@keyframes dot-pulse {
    0% {
        box-shadow: 9999px 0 0 -5px #9880ff;
    }
    30% {
        box-shadow: 9999px 0 0 2px #9880ff;
    }
    60%,
    100% {
        box-shadow: 9999px 0 0 -5px #9880ff;
    }
}

@-webkit-keyframes dot-pulse-after {
    0% {
        box-shadow: 10014px 0 0 -5px #9880ff;
    }
    30% {
        box-shadow: 10014px 0 0 2px #9880ff;
    }
    60%,
    100% {
        box-shadow: 10014px 0 0 -5px #9880ff;
    }
}

@keyframes dot-pulse-after {
    0% {
        box-shadow: 10014px 0 0 -5px #9880ff;
    }
    30% {
        box-shadow: 10014px 0 0 2px #9880ff;
    }
    60%,
    100% {
        box-shadow: 10014px 0 0 -5px #9880ff;
    }
}



/**
 * ==============================================
 * slide-fwd-right
 * ==============================================
 */
.slide-fwd-right {
    -webkit-animation: slide-fwd-right 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-fwd-right 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
@-webkit-keyframes slide-fwd-right {
    0% {
        opacity: 0.2;
        /*-webkit-transform: translateZ(260px) translateX(200px);*/
        /*transform: translateZ(260px) translateX(200px);*/
    }
    100% {
        opacity: 1;
        /*-webkit-transform: translateZ(0) translateX(0);*/
        /*transform: translateZ(0) translateX(0);*/
    }
}
@keyframes slide-fwd-right {
    0% {
        opacity: 0.2;
        /*-webkit-transform: translateZ(260px) translateX(200px);*/
        /*transform: translateZ(260px) translateX(200px);*/
    }
    100% {
        opacity: 1;
        /*-webkit-transform: translateZ(0) translateX(0);*/
        /*transform: translateZ(0) translateX(0);*/
    }
}


/**
 * ==============================================
 * slide-fwd-left
 * ==============================================
 */
.slide-fwd-left {
    -webkit-animation: slide-fwd-left 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-fwd-left 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
@-webkit-keyframes slide-fwd-left {
    0% {
        opacity: 0.2;
        /*-webkit-transform: translateZ(260px) translateX(-200px);*/
        /*transform: translateZ(260px) translateX(-200px);*/
    }
    100% {
        opacity: 1;
        /*-webkit-transform: translateZ(0) translateX(0);*/
        /*transform: translateZ(0) translateX(0);*/
    }
}
@keyframes slide-fwd-left {
    0% {
        opacity: 0.2;
        /*-webkit-transform: translateZ(260px) translateX(-200px);*/
        /*transform: translateZ(260px) translateX(-200px);*/
    }
    100% {
        opacity: 1;
        /*-webkit-transform: translateZ(0) translateX(0);*/
        /*transform: translateZ(0) translateX(0);*/
    }
}




main{
    margin-top: 18px;
}

main .chat-block{}
main .chat-block .chat-item{
    margin-bottom: 20px;
}
main .chat-block .chat-item.text{
    background: #FFFFFF;
    border-radius: 11px;
    padding: 17px;
    width: 80%;
    font-family: 'Roboto-Regular', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;

    color: #41507D;
}
main .chat-block .chat-item.left{
    margin-right: auto;
}
main .chat-block .chat-item.right{
    margin-left: auto;
}

main .chat-block .chat-item.two-buttons{
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
main .chat-block .chat-item.two-buttons button{
    border-radius: 6px;
    font-family: 'VW-Regular', sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    width: 79px;
    height: 45px;
    outline: none;
    border: none;
}
main .chat-block .chat-item.two-buttons .yes{
    background: #35568B;
    color: #FFFFFF;
    margin-right: 9px;
}
main .chat-block .chat-item.two-buttons .no{
    color: #6C7686;
    background: #FFFFFF;
    opacity: 0.48;
}
main .chat-block .chat-item.input .input-group{
    display: flex;
}
main .chat-block .chat-item.input .input-group .phone-yes{
    background: #35568B;
    color: #FFFFFF;
    border-radius: 6px;
    font-family: 'VW-Regular', sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    outline: none;
    border: none;
    padding-left: 15px;
    padding-right: 15px;
}
main .chat-block .chat-item.input{
    width: 90%;
}
@media screen and (max-width: 340px){
    main .chat-block .chat-item.input{
        width: 95%;
    }
}
main .chat-block .chat-item.input input{
    width: 100%;
    font-family: 'Roboto-Regular', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    color: #41507D;
    border: 1px solid transparent;
    outline: none;
    padding: 17px 10px;
    border-radius: 11px 0 0 11px;
    margin-right: -2px;
 }
main .chat-block .chat-item.three-buttons{}
main .chat-block .chat-item.three-buttons .buttons-group{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
main .chat-block .chat-item.three-buttons .buttons-group button{
    border-radius: 6px;
    font-family: 'VW-Regular', sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 15px;
    outline: none;
    border: none;
    background: #35568B;
    color: #FFFFFF;
    margin-right: 9px;
    padding-left: 16px;
    padding-right: 16px;
    height: 45px;
}

@media screen and (max-width: 340px){
    main .chat-block .chat-item.three-buttons .buttons-group button{
        font-size: 13px;
    }
}

main .chat-block .chat-item.three-buttons .buttons-group button:last-child{
    margin-right: 0;
}
main .chat-block #seventh{
    margin-bottom: 10px;
}

.pulse-wrapper{
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    padding: 3px;
    overflow: hidden;
    width: 50%;
    padding-left: 20px;
    margin-bottom: 20px;
}

main .chat-block button:hover{
    cursor: pointer;
}
main .offers-block{
    margin-top: 30px;
}

main .offers-block .offer-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #FFFFFF;
    border-radius: 17px;
    padding: 27px 42px;
    margin-bottom: 20px;
}

@media screen and (max-width: 340px){
    main .offers-block .offer-item{
        padding: 20px 25px;
    }
}

main .offers-block .offer-item .offer-image{
    margin-bottom: 24px;
}
main .offers-block .offer-item .offer-image .image{
    height: 90px;
    width: 230px;
}

main .offers-block .offer-item .offer-image .image a{
    display: block;
    width: 100%;
    height: 100%;
}

main .offers-block .offer-item .offer-info{
    width: 100%;
    margin-bottom: 32px;
}
main .offers-block .offer-item .offer-info .info-item{
    display: flex;
    align-items: center;
    justify-content: space-between;

    font-family: 'Roboto-Regular', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 16px;
    color: #A5A5A5;
    margin-bottom: 8px;
}

.offer-item .offer-info .info-item .right-item{}
.offer-item .offer-info .info-item .right-item span{
    background: #3B69DE;
    border-radius: 17px;
    padding: 5px 8px;
    font-weight: bold;
    color: #D7E2FF;
    font-style: normal;
    font-size: 14px;
    line-height: 16px;
}

.offer-item .offer-button{
    width: 100%;
}
.offer-item .offer-button a{
    width: 100%;
    display: flex;
    background: #3B69DE;
    border-radius: 11px;
    align-items: center;
    justify-content: center;
    padding-bottom: 12px;
    padding-top: 12px;
    text-decoration: none;
}
.offer-item .offer-button a img{
    margin-right: 8px;
}
.offer-item .offer-button a span{
    font-family: 'Roboto-Regular', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #EBF0FF;
    text-transform: uppercase;
}

#first,
#second,
#third,
#fourth,
#fifth,
#sixth,
#seventh,
#seventh-no-redirect,
.pulse-wrapper{
    display: none;
}

/* main */


/* footer */
footer{
    background: #F2F5FF;
    margin-top: auto;
    display: none;
}

footer .footer{    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding-top: 40px;
    padding-bottom: 40px;
}
footer .footer .footer-text{
    font-family: 'Roboto-Regular', sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 19px;
    text-align: center;
    text-transform: uppercase;
    color: #50639C;
    margin-bottom: 5px;
}
footer .footer .footer-copy{
    font-family: 'Roboto-Regular', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 19px;
    text-align: center;
    color: #6675A5;
}
/* footer */