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

:root {
    --bg-body: #F2F3FB;
    --light-color: #fff;
    --accent-color-1: #77E487;
    --accent-color-2: #67BB7A;
    --light-grey-1: #babcbd;
    --light-grey-2: #E7ECF0;
    --links-color-1: #888888;
    --links-color-2: #52ade1;;
    --text-dark-color: #000;
    --text-dark-color-2: #323f64;
    --text-dark-color-3: #303d4e;
    --text-grey-color: #A1A1A1;

    --gradient-mint: linear-gradient(270deg, #67D6C3 9.83%, #3AAE9A 94.8%);
    --gradient-gold: linear-gradient(270deg, #EFCB72 9.83%, #D9A441 94.8%);
}


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

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

/* Desktop Adaptive */
@media (min-width: 768px) {
    .container {
        max-width: 1200px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1320px;
    }
}

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

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

@media (min-width: 768px) {
    .container .inner-cont {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (min-width: 1024px) {
    .container .inner-cont {
        padding-left: 40px;
        padding-right: 40px;
    }
}

html{
    height: 100%;
}
.main{
    overflow: auto hidden;
}
body{
    font-family: 'Rubik', sans-serif;
    font-weight: normal;
    margin: 0;
    background: var(--bg-body);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-y: scroll;
}

/* HEADER */
.header{
    position: absolute;
    width: 100%;
    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{
    height: 40px;
}
.header .header_wrapper .header_text {
    position: relative;
    color: var(--text-dark-color);
    background: var(--light-color);
    padding: 6px 10px;
    border-radius: 8px 8px 0 8px;
    font-weight: 600;
    font-size: 14px;
}
.header .header_wrapper .header_text span {
    position: absolute;
    bottom: -13px;
    right: 0;
    font-size: 12px;
    font-weight: 500;
    color: var(--light-color);
    background: var(--gradient-mint);
    border-radius: 4px;
    padding: 1px 7px;
    transform: rotate(-2deg) translateX(3px);
}

@media (min-width: 768px) {
    .header .header_wrapper .header_logo a img {
        height: 50px;
    }
    .header .header_wrapper .header_text {
        font-size: 16px;
        padding: 8px 14px;
    }
    .header .header_wrapper .header_text span {
        font-size: 13px;
        padding: 2px 10px;
    }
}
@media (max-width: 350px) {
    .header .header_wrapper .header_logo a img {
        height: 30px;
    }
    .header .header_wrapper .header_text {
        font-size: 12px;
    }
}
/* MAIN */
.main{
    height: 100%;
}
.main .intro-banner {
    background: radial-gradient(125% 125% at 85.42% 0, rgb(103 213 194 / 4%) 0, #8ed8cb);
    padding-top: 85px;
    padding-bottom: 20px;
    border-radius: 0 0 40px 40px;
    box-shadow: 0 6px 10px rgb(84 184 190 / 35%);
}
.main .intro-banner .intro {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}
@media (min-width: 768px) {
    .main .intro-banner {
        padding-top: 100px;
        padding-bottom: 35px;
        border-radius: 0 0 60px 60px;
    }
}
.main .main_title{
    color: var(--light-color);
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
}
.main .main_title span {
    color: var(--text-dark-color-2);
}
.main .main_subtitle{
    color: var(--text-dark-color-2);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    margin-top: 10px;
    margin-bottom: 10px;
}
.main .main_subtitle span {
    color: var(--text-dark-color-2);
    font-weight: 400;
}

/* Desktop: larger title and subtitle */
@media (min-width: 768px) {
    .main .main_title {
        font-size: 32px;
    }
}
@media (max-width: 768px) {
    .main .main_subtitle {
        font-size: 16px;
        max-width: 320px;
        margin: 14px auto 0;
    }
}
/* Offer List */
.main .offers_wrapper{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 24px;
}

@media (min-width: 768px) {
    .main .offers_wrapper {
        gap: 20px;
        justify-content: flex-start;
    }
}

@media (min-width: 1024px) {
    .main .offers_wrapper {
        gap: 24px;
    }
}
.main .offers_wrapper .offer {
    position: relative;
    width: 100%;
    padding: 10px 8px 0 2px;
    position: relative;
    background: var(--light-color);
    box-shadow: 0px 7px 12px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
}

/* Desktop: 2 offers per row */
@media (min-width: 768px) {
    .main .offers_wrapper .offer {
        width: calc(50% - 10px);
    }
}

/* Desktop Large: 3 offers per row */
@media (min-width: 1024px) {
    .main .offers_wrapper .offer {
        width: calc(33.333% - 16px);
    }
}
.main .offers_wrapper .offer-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.main .offers_wrapper .offer .col-one {
    width: 35%;
}
.main .offers_wrapper .offer .col-two {
    width: 65%;
    padding-left: 15px;
}
/* Offer Button */
.main .offers_wrapper .offer-button {
    width: calc(100% + 10px);
    text-decoration: none;
    outline: none;
    margin-left: -2px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--gradient-mint);
    padding: 4px 0;
    border-radius: 0 0 5px 5px;
}
.main .offers_wrapper .offer-button-sum {
    width: 35%;
    background: var(--gradient-gold);
    color: var(--light-color);
    padding: 8px 0;
    margin-left: 3px;
    border-radius: 6px;
}
.main .offers_wrapper .offer-button-action {
    width: 65%;
    color: var(--light-color);
}
.main .offers_wrapper .offer-button-sum,
.main .offers_wrapper .offer-button-action {
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    text-align: center;
}
/* Offer Labels */
.main .offers_wrapper .offer .labels-wrap {
    display: flex;
    align-items: center;
}
.main .offers_wrapper .offer .label-keyword {
    margin-left: 5px;
    font-size: 10px;
    color: var(--text-grey-color);
}
.main .offers_wrapper .offer .label{
    font-family: 'Rubik', sans-serif;
    font-size: 10px;
    font-weight: 600;
    height: 26px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--light-color);
    text-align: center;
    padding: 2px 9px;
    border-radius: 2px;
    text-transform: uppercase;
}
.main .offers_wrapper .offer .label.one {
    background: #f2f2f2;
    color: var(--text-dark-color-2);
}
.main .offers_wrapper .offer .label.two {
    background: #00509d;
    color: #fff;
}
/* Offer Logo */
.main .offers_wrapper .offer .offer-logo {
    border: .2px solid #F2F3FB;
    display: block;
    padding: 3px 2px;
}
.main .offers_wrapper .offer .offer-logo img {
    width: 100%;
}
/* Offer Toggle Content */
.toggle-container {
    border-top: 1px solid #ccc;
}
.toggle-button {
    cursor: pointer;
    color: #1313ff;
    margin-top: 15px;
    text-align: center;
    font-size: 14px;
    user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    display: inline-flex;
    justify-content: center;
}
.toggle-button .arrow {
    border: solid #1313ff;
    border-width: 0 2px 2px 0;
    display: inline-block;
    margin-left: 7px;
    height: 9px;
    width: 9px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transition: transform 0.3s ease;
}
.toggle-button .arrow-up {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}
.toggle-content {
    display: none;
    padding-top: 20px;
}
/* Offer List Variations */
ul {
    margin: 0;
    padding: 0;
}
ul li {
    list-style: none;
}
.list-style-one {
    text-align: center;
    margin-bottom: 15px;
}
.list-style-one li { 
    position: relative;
    display: inline-block;
    font-size: 15px;
    margin-right: 9px;
    font-weight: 500;
}
.list-style-one li:last-child { 
    margin-right: 0;
}
.list-style-one li:first-child:before { 
    content: '';
    width: 1px;
    height: 100%;
    background: #ccc;
    position: absolute;
    right: -7px;
}
.list-style-one li span,
.list-style-two li span {
    font-weight: bold;
    color: var(--accent-color-1);
}
.list-style-two li {
    text-align: center;
    font-size: 15px;
    font-weight: 500;
}
/* Offer Text */
.offer-text {
    color: #636363;
    font-size: 14px;
    margin: 0 0 10px;;
}
/* Offer Info */
.main .offers_wrapper .offer .offer-info {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    list-style: none;
    text-align: left;
    margin: 0;
    padding: 0;
    padding-top: 15px;
}
.main .offers_wrapper .offer .offer-info li {
    font-size: 12px;
    color: var(--text-dark-color-2);
    position: relative;
}
.main .offers_wrapper .offer .offer-info li:last-child {
    margin-bottom: 0;
}
.main .offers_wrapper .offer .offer-info li span {
    display: block;
    font-weight: 400;
    color: var(--text-grey-color);
    font-size: 12px;
}
.main .offers_wrapper .offer .offer-info li span.bold {
    font-weight: 500;
    font-size: 14px;
    color: var(--text-dark-color-2);
}
@media (max-width: 350px) {
    .main .main_title {
        font-size: 22px;
    }
    .main .main_subtitle {
        font-size: 15px;
    }
    .main .offers_wrapper .offer .offer-info li span {
        font-size: 12px;
    }
    .main .offers_wrapper .offer .offer-info li span.bold {
        font-size: 15px;
    }
}

/* BUTTON */
.btn-wrapper {
    text-align: center;
}
.main .general_button_wrapper{
    text-align: center;
    margin-top: 15px;
}
.main .general_button_wrapper .button{
    width: 100%;
    margin: 0 auto;
    position: relative;
}
.main .button a,
.main .button button,
.main .button .btn-main{
    position: relative;
    background: var(--gradient-mint);
    border-radius: 3px;
    border: none;
    width: 100%;
    height: 43px;
    font-size: 14px;
    line-height: 19px;
    text-align: center;
    color: var(--light-color);
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 0 rgba(90,153,212, .5);
    -webkit-animation: pulse 2s infinite;
    text-decoration: none;
}
.main .general_button_wrapper .button button:hover {
  -webkit-animation: none;
}

@-webkit-keyframes pulse {
    0% {
    }
    70% {
        box-shadow: 0 0 0 7px rgba(90,153,212, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(90,153,212, 0);
    }
}
@keyframes pulse {
    0% {
    }
    70% {
        box-shadow: 0 0 0 7px rgba(90,153,212, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(90,153,212, 0);
  }
}

.main .general_button_wrapper .button a img,
.main .general_button_wrapper .button .btn-main img {
    margin-right: 4px;
    width: 16px;
}
.main .general_button_wrapper .button button:hover{
    cursor: pointer;
}
.main .general_button_wrapper .button button:focus{
    outline: none;
}
.main .general_button_wrapper .button .action{
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 10px;
    line-height: 12px;
    text-align: right;
    color: #4DB75A;
    font-style: italic;
    margin-top: 10px;
}
.main .general_button_wrapper .button .arrow{
    position: absolute;
    right: -23px;
    top: 26px;
}
.main .general_button_wrapper .button {
    position: relative;
}
.main .general_button_wrapper .button .approve-credits {
    width: 90%;
    margin: 5px auto 0;
    font-size: 11px;
    color: #5f5f5f;
}
.main .general_button_wrapper .button .approve-credits span {
    display: inline-block;
}
@media (max-width: 350px) {
    .main .general_button_wrapper .button a, .main .general_button_wrapper .button button, .main .general_button_wrapper .button .btn-main {
        font-size: 12px;
    }
}
/* FOOTER */
.footer{
    background: radial-gradient(125% 125% at 85.42% 0, #e4f5ff 0, #92d0f4);
    margin-top: 40px;
    padding: 14px 0;
    position: relative;
    box-shadow: 0 -5px 10px rgb(42 131 182 / 30%);
}
.footer .footer_wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer .footer_wrapper .copy{}
.footer .footer_wrapper .copy span{
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    color: var(--text-dark-color-2);
}
.footer .footer_wrapper .footer_logo{}
.footer .footer_wrapper .footer_logo a{
    display: block;
}
.footer .footer_wrapper .footer_logo a img{
    width: 105px;
}

.main .bottom_text{
    margin-top: 42px;
}
.main .bottom_text p{
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    text-align: justify;
    color: var(--text-dark-color-2)
}
.mainSeo {
    padding-top: 30px;
}
.mainSeo .section-title h1,
.mainSeo .section-title h2 {
    color: var(--text-dark-color-2);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    margin-bottom: 10px;
    margin-left: 0;
}
.mainSeo p {
    color: var(--text-dark-color-2);
    font-size: 12px;
}
.mainSeo ul {
    padding-left: 25px;
    font-size: 12px;
    color: var(--text-dark-color-2);
}
.mainSeo ul li {
    list-style: circle;
    margin-bottom: 5px;
}
.mainSeo ul li:last-child {
    margin-bottom: 0;
}
@media (max-width: 767px) {
    .mainSeo .section-title h1 br {
        display: none;
    }
}

/*
****************************
* KEYWORDS *
****************************
*/
.mainKeywords {
    margin-top: 40px;
}
.mainKeywords .section-title h1 {
    color: var(--text-dark-color-2);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    margin-bottom: 25px;
    margin-left: 0;
}
.mainKeywords .section-title h1 span {
    color: var(--text-dark-color-2);
}
.mainKeywords .keywords-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}
.mainKeywords .keywords-list li {
    margin-right: 7px;
    margin-bottom: 7px;
    list-style: none;
}
.mainKeywords .keywords-list li a {
    text-decoration: none;
    border-radius: 3px;
    background: var(--gradient-mint);
    color: var(--light-color);
    display: inline-flex;
    padding: 8px 16px;
    justify-content: flex-start;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
}
/*
****************************
* OFFER DETAILS *
****************************
*/
.mainMfoDetails {
    margin-top: 40px;
}
.mainMfoDetails .section-title h1 {
    color: var(--text-dark-color-2);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    margin-bottom: 25px;
    margin-left: 0;
}
.mainMfoDetails .section-title h1 span {
    color: var(--text-dark-color-2)
}
.mfo-details .mfo-table {
    width: 100%;
}
.mfo-table td {
    border: 0px solid transparent;
    color: #636363;
}
.mfo-details .row {
    padding-left: 5px;
    padding-right: 5px;
}
.mfo-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    justify-content: center;
    font-size: 13px;
    color: #636363;
}
.mfo-item {
    box-sizing: border-box;
    width: 100%;
    margin: 7px 0;
}
.mfo-link {
    display: block;
    height: 100%;
    color: inherit;
    border-radius: 20px;
    background-color: var(--light-color);
    text-decoration: none;
}
.mfo-link:hover {
    color: inherit;
    text-decoration: none;
}
thead {
    border-bottom: 1px solid #333;
}
thead,
tbody tr:nth-child(even) {
    background: #f2f3fb;
}
th, td {
    padding: 5px;
}
th {
    height: 68px;
}
/* ------------------------------------------------------------- *
 * Offers Details
/* ------------------------------------------------------------- */
.offerdetails {
    padding: 0;
}
.offerdetails .table {
    width: 100%;
}
.offerdetails .table thead {
    border-bottom: 1px solid var(--text-dark-color-2);
}
.offerdetails .table tbody tr:nth-child(2n),
.offerdetails .table thead {
    background: #f5f5f5;
}
.offerdetails .table td {
    border: 0 solid transparent;
    color: var(--text-dark-color-2)
}
.offerdetails .table td,
.offerdetails .table th {
    padding: 5px;
}
.offerdetails .table th {
    height: 68px;
}
.offerdetails .details-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px;
}
.offerdetails .list-item {
    width: calc((100% - 28px) / 3);
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    justify-content: center;
    font-size: 13px;
    color: #636363;
}
.offerdetails .list-item a,
.offerdetails .list-item a:hover {
    color: var(--text-dark-color);
    text-decoration: none;
}
.offerdetails .list-item a {
    width: 100%;
    display: block;
    padding: 10px;
    border-radius: 10px;
    background-color: var(--light-color);
    border: 1px solid var(--light-grey-2);
}
@media (max-width: 992px) {
    .offerdetails .container {
        max-width: 620px;
    }
    .offerdetails .list-item {
        width: calc((100% - 14px) / 2);
    }
}
@media (max-width: 767px) {
    .offerdetails .list-item {
        width: 100%;
    }
}
/*
****************************
* ACCORDION *
****************************
*/
.accordion {
    width: 100%;
}
.accordion-item {
    width: 100%;
    margin-bottom: 10px;
    border-radius: 3px;
    background: #FFF;
}
.accordion-header {
    border-radius: 3px;
    background: var(--accent-color-2);
    padding: 10px;
    cursor: pointer;
    outline: none;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
}
.accordion-header .accordion-title {
    width: 70%;
    color: var(--light-color);
    user-select: none;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 106.3%;
}
.accordion-header .accordion-title span {
    font-weight: 400;
}
.accordion-header .arrow-accord {
    display: flex;
    width: 16px;
    height: 9px;
    transition: .3s ease-in;
}
.accordion-item.active .arrow-accord {
    transform: rotate(180deg);
}
.accordion-content {
    display: none;
    padding: 10px;
    background: #fff;
    border-top: 1px solid #0c97ff;
}
.accordion-content p {
    color: #000;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 106.3%;
}

/*
****************************
* MODAL WINDOW *
****************************
*/
.modal {
/*    display: none;*/
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 99999;
    -webkit-transition: opacity 0.5s, visibility 0.5s;
    transition: opacity 0.5s, visibility 0.5s;
}
.modal-content {
    background-color: #363636;
    padding: 30px 20px;
    border: 1px solid #888;
    border-radius: 40px 40px 0 0;
    width: 90%;
    max-width: 430px;
    position: absolute;
    bottom: -100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    margin-top: -50px;
    -webkit-transition: bottom 0.5s;
    transition: bottom 0.5s;
}
.modal.modal-open {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
}
.modal.modal-open .modal-content {
    bottom: 0;
    -webkit-transition: bottom 0.5s;
    transition: bottom 0.5s;
}
.modal-content .modal-title {

}
.modal-content .modal-title h3,
.modal-content .modal-title h4,
.modal-content .modal-title h5 {
    text-align: center;
    margin: 0 0 10px 0;
    font-size: 23px;
    color: var(--light-color);
}
.modal-content .modal-title p {
    text-align: center;
    font-size: 13px;
    max-width: 300px;
    margin: 0 auto;
    color: var(--light-color);
}
.modal-content .modal-offers .modal-offer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    margin-top: 20px;
}
.modal-content .modal-offers .offer-img {
    width: 30%;
    height: 50px;
    border-radius: 3px;
    background-color: var(--light-color);
    background-size: 80%;
    background-position: center;
    background-repeat: no-repeat;
}
.modal-content .modal-offers .offer-text {
    font-weight: 700;
    font-size: 20px;
    color: var(--light-color);
}
.modal-content .modal-offers .modabutton {
    width: 30%;
}
.modal-content .modal-offers .modabutton span {
    position: relative;
    background: linear-gradient(99.36deg, #7CBD28 0.16%, #53B13C 94.24%);
    border: none;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    color: var(--light-color);
    text-align: center;
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    padding: 15px 5px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.modal-content .close {
    position: absolute;
    top: 15px;
    right: 25px;
    padding: 0;
    color: #7f7f7f;
    margin: 0;
    cursor: pointer;
    font-size: 30px;
    display: inline-block;
}
/* Modal Offer Details */
.modal-details .modal-content {
    padding: 50px 30px 50px 30px;
    width: 100%;
    background-color: var(--light-color);
    -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: 200px;
    margin: 0 auto;
}
.modal-details .modal-logo img {
    width: 100%;
}
.modal-details .modal-offer-details {
    border-top: 1px solid var(--light-grey-2);
}
.modal-details ul.list-style-1 {
    text-align: center;
    padding-top: 15px;
}
.modal-details ul.list-style-1 li {
    position: relative;
    display: inline-block;
    padding-right: 15px;
    text-align: center;
    font-weight: 500;
    font-size: 18px;
    color: var(--text-dark-color-2);
}
.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: var(--light-grey-1);
}
.modal-details ul.list-style-1 li span {
    font-weight: bold;
    color: #f6811e;
}

.modal-details .modal-heading {
    margin-bottom: 5px;
}
.modal-details ul.list-style-2 {
    text-align: center;
}
.modal-details ul.list-style-2 li {
    position: relative;
    display: inline-block;
    text-align: center;
    font-weight: 500;
    padding: 0 4px;
    font-size: 14px;
    margin-bottom: 2px;
    color: var(--text-dark-color-2);
}
.modal-details ul.list-style-2 li span {
    font-weight: bold;
    color: #f6811e;
}
.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: var(--links-color-1);
}
.modal-details .modal-button {
    margin-top: 25px;
}
.modal-details .modal-heading {
    text-align: center;
    font-size: 14px;
}

/* Modal Top Offers */
.modal-top-offers .modal-content {
    background-color: var(--accent-color-1);
    padding-top: 60px;
    padding-bottom: 60px;
}
.modal-top-offers .modal-content .close {
    color: var(--text-dark-color-2);
}
.modal-top-offers .modal-content .modal-title h3,
.modal-top-offers .modal-content .modal-title p {
    color: var(--text-dark-color-2);
}
.modal-top-offers .offer-text {
    margin: 0;
}
.modal-top-offers .button {
    width: 30%;
}
.modal-top-offers .button .btn-main {
    background-color: var(--accent-color-2);
}
@media (max-width: 500px) {
    .modal-content {
        width: 100%;
    }
}
/*
****************************
* BUTTONS
****************************
*/
.btn-main {
    position: relative;
    background: var(--gradient-mint);
    border-radius: 7px;
    border: none;
    width: 100%;
    height: 43px;
    font-size: 14px;
    line-height: 19px;
    text-align: center;
    color: var(--light-color);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 0 rgba(90,153,212, .5);
    -webkit-animation: pulse 2s infinite;
    text-decoration: none;
}
.btn-offer-details {
    display: inline-flex;
    text-align: center;
    position: relative;
    user-select: none;
    cursor: pointer;
    color: var(--links-color-2);
    font-size: 13px;
    padding-right: 14px;
    margin: 14px 0;
}
.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 var(--links-color-2);
    border-width: 0 1.5px 1.5px 0;
    display: inline-block;
    height: 9px;
    width: 9px;
}
@-webkit-keyframes pulse {
    0% {
    }
    70% {
        box-shadow: 0 0 0 7px rgba(90,153,212, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(90,153,212, 0);
    }
}
@keyframes pulse {
    0% {
    }
    70% {
        box-shadow: 0 0 0 7px rgba(90,153,212, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(90,153,212, 0);
  }
}

/*
****************************
* Main SEO Pages *
****************************
*/
.mainTextPages p {
    color: var(--text-dark-color-2)
}
.mainTextPages p.text-lg {
    font-size: 16px;
    font-style: italic;
}
.mainTextPages p.text-head {
    font-size: 18px;
    font-weight: 800;
}
.mainTextPages ul li {
    margin-top: 12px;
}
.mainTextPages ul li span {
    display: block;
    color: var(--text-dark-color-2);
}
.mainTextPages ul li span:first-child {
    font-weight: 600;
    margin-bottom: 7px;
}

/*
****************************
* SVG ICONS *
****************************
*/
.icon {
    display: inline-block;
    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;
}
@media (max-width: 350px) {
    .btn-offer-details {
        font-size: 12px;
    }
    .modal-details .modal-logo {
        max-width: 150px;
    }
    .modal-details .modal-content {
        padding: 25px 20px;
    }
    .modal-content .modal-offers .offer-text {
        font-size: 18px;
    }
    .main .offers_wrapper .offer .col-one {
        width: 33%;
    }
    .main .offers_wrapper .offer .col-two {
        width: 67%;
        padding-left: 10px;
    }
    .main .offers_wrapper .offer .offer-info li span {
        font-size: 11px;
    }
    .main .offers_wrapper .offer .offer-info li span.bold {
        font-size: 12px;
    }
}

