@charset "UTF-8";
.main .main_subtitle,
.main .main_title {
    text-align: center;
    line-height: 110%;
    color: var(--light-color);
    font-style: normal;
}
.main .main_subtitle span,
.main .main_title span,
.mainKeywords .section-title h1 span,
.mainMfoDetails .section-title h1 span {
    color: var(--accent-color-1);
}
.footer *,
.header *,
.main *,
.mfo-item {
    box-sizing: border-box;
}
.main,
.mfo-link,
.modal,
html {
    height: 100%;
}
@font-face {
    font-family: Gilroy;
    src: local("Gilroy Thin"), local("GilroyT-Thin"), url("../fonts/Gilroy-Thin.woff2") format("woff2");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: Gilroy;
    src: local("Gilroy Regular"), local("Gilroy-Regular"), url("../fonts/Gilroy-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: Gilroy;
    src: local("Gilroy Semibold"), local("Gilroy-Semibold"), url("../fonts/Gilroy-SemiBold.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: Gilroy;
    src: local("Gilroy Bold"), local("Gilroy-Bold"), url("../fonts/Gilroy-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: Gilroy;
    src: local("Gilroy Extrabold"), local("Gilroy-Extrabld"), url("../fonts/Gilroy-ExtraBold.woff2") format("woff2");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
:root {
    --bg-body: #32363a;
    --light-color: #fff;
    --accent-color-1: #fce04f;
    --accent-color-2: #e9c03a;
    --light-grey-1: #babcbd;
    --light-grey-2: #e7ecf0;
    --links-color-1: #888888;
    --links-color-2: #003f88;
    --text-dark-color: #000;
    --text-dark-color-2: #343333;
    --text-dark-color-3: #303d4e;
    --text-grey-color: #636363;
}
.container {
    width: 100%;
    max-width: 425px;
    margin-left: auto;
    margin-right: auto;
}
.container .inner-cont {
    padding-left: 15px;
    padding-right: 15px;
}
body {
    font-family: Gilroy, sans-serif;
    font-weight: 400;
    margin: 0;
    background: var(--bg-body);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-y: scroll;
}
.header {
    padding-top: 17px;
    padding-bottom: 13px;
    z-index: 6;
}
.footer .footer_wrapper,
.header .header_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer .footer_wrapper .footer_logo a,
.header .header_wrapper .header_logo a {
    display: block;
}
.header .header_wrapper .header_logo a img {
    height: 37px;
}
.header .header_wrapper .header_text {
    position: relative;
    color: var(--text-dark-color);
    background: var(--light-color);
    padding: 6px 10px;
    border-radius: 8px 8px 0;
    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(--text-dark-color);
    background: var(--accent-color-1);
    border-radius: 4px;
    padding: 1px 7px;
    transform: rotate(-2deg) translateX(3px);
}
.header_button a {
    position: relative;
    color: var(--text-dark-color);
    background: var(--accent-color-1);
    padding: 6px 10px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

.main {
    overflow: auto hidden;
    padding-top: 15px;
}
.main .main_title {
    font-size: 26px;
    font-weight: 700;
}
.main .main_subtitle {
    font-size: 18px;
    font-weight: 400;
    margin-top: 10px;
    margin-bottom: 10px;
}
.main .general_button_wrapper,
.toggle-button {
    margin-top: 15px;
    text-align: center;
}
.main .main_subtitle span {
    font-weight: 500;
}
.main .offers_wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    min-height: 100vh;
}
.main .offers_wrapper .offer {
    width: calc(50% - 3px);
    padding: 12px 6px;
    position: relative;
    margin-top: 20px;
    background: var(--light-color);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
    border-radius: 15px;
}
.main .offers_wrapper .offer > a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
}
.main .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: var(--light-color);
    position: absolute;
    left: 50%;
    width: 115px;
    text-align: center;
    transform: translateX(-50%);
    top: -12px;
    padding: 0 9px;
    border-radius: 2px;
    text-transform: uppercase;
}
.main .offers_wrapper .offer .label .rubick {
    position: absolute;
    width: 30px;
    height: 30px;
    background: #fff;
    transform: rotate(45deg);
    right: -15px;
}
.main .offers_wrapper .offer .label.orange {
    background: linear-gradient(180deg, #f4c411 0, #f89500 100%), #facc20;
}
.main .offers_wrapper .offer .label.purple {
    background: #af5bf8;
}
.main .offers_wrapper .offer .label.green {
    background: #0bc33f;
}
.main .offers_wrapper .offer .label.dark {
    background: #444;
}
.main .offers_wrapper .offer .label.one {
    background: #ffd500;
    color: #00296b;
}
.main .offers_wrapper .offer .label.two {
    background: #00509d;
    color: #fff;
}
.main .offers_wrapper .offer .offer-logo {
    width: 90%;
    margin: 0 auto;
    display: block;
}

.main .offers_wrapper .offer-present {
    margin: 8px 0 4px 0;
}
.main .offers_wrapper .offer-present-text {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    padding-bottom: 3px;
    line-height: 103%;
}
.main .offers_wrapper .offer-present-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1px;
}
.main .offers_wrapper .offer-present-inner div {
    font-size: 14px;
    font-weight: 500;
/*    flex: 0 0 calc((100% - 10px) / 2);*/
/*    max-width: calc((100% - 10px) / 2);*/
    text-align: center;
}
.main .offers_wrapper .offer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
    padding-top: 3px;
}
.main .offers_wrapper .offer-links a {
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    flex: 1 1;
    max-width: 100%;
}
@media (max-width: 767px) {
    .offerwall .offer-present-inner {
        flex-direction: column;
        gap: 1px;
    }
    .offerwall .offer-present-text {
        max-width: 140px;
        margin: 0 auto;
    }
    .offerwall .offer-present-text,
    .offerwall .offer-present-inner div {
        font-size: 12px;
    }
    .offerwall .offer-present-inner div {
        flex: 1;
        max-width: 100%;
    }
    .offerwall .offer-links {
        gap: 4px;
    }
    .offerwall .offer-links a {
        font-size: 10px;
        flex: 0 0 calc((100% - 4px) / 2);
        max-width: calc((100% - 4px) / 2);
    }
}
/* ------------------------------------------------------------- *
 * Offers Placeholder
/* ------------------------------------------------------------- */
.offer-placeholder {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: calc(50% - 6px);
    height: 388.84px;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 12px 10px;
    margin-top: 20px;
    background: var(--light-color);
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);    
}
.skel {
    background-color: var(--light-grey-2);
    background: linear-gradient(90deg, #d3d3d3 0px, #fff 40px, #d3d3d3 80px);
    background-size: 600px;
    border-radius: 6px;
    animation: placeholderShimmer 1.4s ease infinite;
}
.skel-logo {
    width: 154px;
    height: 79px;
    margin: 0 auto;
}
.skel-info,
.skel-link {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    padding: 15px 0;
}
.skel-info span {
    width: 40%;
    height: 12px;
    opacity: .5;
    border-radius: 3px;
}
.skel-info span:nth-child(even) {
    width: 65%;
    height: 15px;
    opacity: 1;
}
.skel-text {
    width: 92%;
    margin: 0 auto;
    height: 12px;
}
.skel-link span {
    width: 46%;
    height: 14px;
}
.skel-button {
    width: 100%;
    height: 46px;
}
@keyframes placeholderShimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: 600px 0;
    }
}
@media (max-width: 767px) {
    .offer-placeholder {
        height: 392.28px;
        flex: 0 0 calc((100% - 6px) / 2);
        max-width: calc((100% - 6px) / 2);
    }
    .skel-logo {
        width: 135px;
        height: 69px;
    }
    .skel-info span,
    .skel-link span {
        width: 45%;
        height: 15px;
    }
}
.toggle-container {
    border-top: 1px solid #ccc;
}
.toggle-button {
    cursor: pointer;
    color: #1313ff;
    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;
}
.main .offers_wrapper .offer .offer-info,
.modal-details .modal-offer-details {
    border-top: 1px solid var(--light-grey-2);
}
.toggle-button .arrow-up {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}
.toggle-content {
    display: none;
    padding-top: 20px;
}
.icon,
.list-style-one li,
.main .general_button_wrapper .button .approve-credits span,
.offer-link,
.triangle-down {
    display: inline-block;
}
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;
    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,
.modal-details ul.list-style-1 li span,
.modal-details ul.list-style-2 li span {
    font-weight: 700;
    color: var(--accent-color-2);
}
.list-style-two li {
    text-align: center;
    font-size: 15px;
    font-weight: 500;
}
.offer-link {
    font-size: 14px;
    text-align: center;
    text-decoration: underline;
    color: #1313ff;
    margin-bottom: 12px;
}
.offer-text {
    color: #636363;
    font-size: 14px;
    margin: 0 0 10px;
}
.footer,
.mainKeywords,
.mainMfoDetails {
    margin-top: 40px;
}
.main .offers_wrapper .offer .offer-info {
    display: flex;
    flex-direction: column;
    list-style: none;
    text-align: center;
    margin: 0;
    padding: 17px 0 0;
}
.main .offers_wrapper .offer .offer-info li {
    font-size: 12px;
    color: var(--text-dark-color-2);
    position: relative;
    margin-bottom: 5px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.main .offers_wrapper .offer .offer-info li:last-child,
.mainSeo ul li:last-child {
    margin-bottom: 0;
}
.main .offers_wrapper .offer .offer-info li span {
    display: block;
    font-weight: 400;
    color: var(--text-dark-color-3);
    font-size: 14px;
}
.main .offers_wrapper .offer .offer-info li span.bold {
    font-weight: 600;
    font-size: 16px;
    text-align: right;
    color: var(--text-dark-color-2);
}
@media only screen and (max-width: 375px) {
    .container .inner-cont {
        padding-left: 15px;
        padding-right: 15px;
    }
    .main .offers_wrapper .offer .general_button_wrapper .button {
        width: 100%;
    }
}
.btn-wrapper,
.modal-details ul.list-style-2 {
    text-align: center;
}
.main .general_button_wrapper .button {
    width: 100%;
    margin: 0 auto;
    position: relative;
}
.main .general_button_wrapper .button .btn-main,
.main .general_button_wrapper .button a,
.main .general_button_wrapper .button button {
    position: relative;
    background: var(--accent-color-1);
    border-radius: 7px;
    border: none;
    width: 100%;
    height: 43px;
    font-size: 15px;
    line-height: 19px;
    text-align: center;
    color: var(--bg-body);
    font-family: Gilroy, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 0 rgba(90, 153, 212, 0.5);
    -webkit-animation: 2s infinite pulse;
    text-decoration: none;
}
.footer .footer_wrapper .copy span,
.main .bottom_text p,
.mainSeo p,
.mainSeo ul {
    font-size: 13px;
    color: var(--light-color);
}
.main .general_button_wrapper .button button:hover {
    -webkit-animation: none;
    cursor: pointer;
}
.main .general_button_wrapper .button .btn-main img,
.main .general_button_wrapper .button a img {
    margin-right: 4px;
    width: 16px;
}
.main .general_button_wrapper .button button:focus {
    outline: 0;
}
.main .general_button_wrapper .button .action {
    font-family: Gilroy, 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 .approve-credits {
    width: 90%;
    margin: 5px auto 0;
    font-size: 11px;
    color: #5f5f5f;
}
@media (max-width: 350px) {
	.header .header_wrapper .header_logo a img {
		height: 30px;
		width: auto;
	}
    .header .header_wrapper .header_text,
    .main .general_button_wrapper .button .btn-main,
    .main .general_button_wrapper .button a,
    .main .general_button_wrapper .button button,
    .main .offers_wrapper .offer .offer-info li span {
        font-size: 12px;
    }
    .main .offers_wrapper .offer .offer-info li span.bold {
        font-size: 15px;
    }
}
.footer {
    padding: 14px 0;
    position: relative;
}
.footer .footer_wrapper .copy span {
    font-family: Gilroy, sans-serif;
    font-weight: 500;
    line-height: 14px;
}
.footer .footer_wrapper .footer_logo a img {
    width: 105px;
    height: auto;
}
.main .bottom_text {
    margin-top: 42px;
}
.main .bottom_text p {
    font-family: Gilroy, sans-serif;
    font-weight: 400;
    line-height: 100%;
    text-align: justify;
}
.mainSeo {
    padding-top: 30px;
}
.mainSeo .section-title h1,
.mainSeo .section-title h2 {
    color: var(--light-color);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
    margin-bottom: 10px;
    margin-left: 0;
}
.mainSeo ul {
    padding-left: 25px;
}
.mainSeo ul li {
    list-style: circle;
    margin-bottom: 5px;
}
h2.page-title {
    text-align: center;
    color: #326360;
}
.mainKeywords .section-title h1,
.mainMfoDetails .section-title h1,
.mainMfoDetails .section-title h3,
.mainKeywords .section-title h3 {
    color: var(--light-color);
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: 100%;
    margin-bottom: 25px;
    margin-left: 0;
}
.mfo-details .mfo-table,
.modal-details .modal-logo img {
    width: 100%;
}
.mfo-table td {
    border: 0 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;
}
.label {
    width: 160px;
    margin: 0 auto 15px;
    background: #34a853;
    padding: 5px 15px;
    color: var(--light-color);
}
.mfo-link,
.mfo-link:hover {
    color: inherit;
    text-decoration: none;
}
.mfo-item {
    width: 100%;
    margin: 7px 0;
}
.mfo-link {
    display: block;
    padding: 10px;
    border-radius: 20px;
    background-color: var(--light-color);
}
thead {
    border-bottom: 1px solid #333;
}
tbody tr:nth-child(2n),
thead {
    background: #eee;
}
td,
th {
    padding: 5px;
}
th {
    height: 68px;
}
.mainKeywords .keywords-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}
.mainKeywords .keywords-list li {
    margin-right: 10px;
    margin-bottom: 10px;
    list-style: none;
}
.mainKeywords .keywords-list li a {
    text-decoration: none;
    border-radius: 15px;
    background: var(--light-color);
    box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.15);
    display: inline-flex;
    padding: 14px 10px;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    color: #636363;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
}
.modal-details ul.list-style-1 li,
.modal-details ul.list-style-2 li {
    font-weight: 500;
    color: var(--text-dark-color-2);
    display: inline-block;
}
.modal {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background-color: rgba(0, 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 .modal-title h3,
.modal-content .modal-title h4,
.modal-content .modal-title h5 {
    text-align: center;
    margin: 0 0 10px;
    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: 10px;
    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 .button {
    width: 30%;
}
.modal-content .modal-offers .button 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);
    font-family: Gilroy, 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: 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: 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: 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-main,
.btn-offer-details,
.modal-details .modal-heading {
    text-align: center;
    font-size: 14px;
}
.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 .modal-heading {
    margin-bottom: 5px;
}
.modal-details ul.list-style-2 li {
    position: relative;
    text-align: center;
    padding: 0 4px;
    font-size: 14px;
    margin-bottom: 2px;
}
.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;
}
@media (max-width: 767px) {
    .mainSeo .section-title h1 br {
        display: none;
    }
    .modal-details .modal-content {
        width: calc(100% - 30px);
    }
}
.btn-main {
    position: relative;
    background: var(--accent-color-1);
    border-radius: 7px;
    border: none;
    width: 100%;
    height: 43px;
    line-height: 19px;
    color: var(--bg-body);
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 0 rgba(90, 153, 212, 0.5);
    -webkit-animation: 2s infinite pulse;
    text-decoration: none;
}
@-webkit-keyframes up-down {
    50% {
        margin-top: -5px;
    }
}
@keyframes up-down {
    50% {
        margin-top: -5px;
    }
}
.btn-offer-details {
    display: inline-flex;
    position: relative;
    user-select: none;
    cursor: pointer;
    color: var(--links-color-2);
    padding-right: 14px;
    margin: 10px 0 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;
    height: 9px;
    width: 9px;
}
@-webkit-keyframes pulse {
    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 {
    70% {
        box-shadow: 0 0 0 7px rgba(90, 153, 212, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
    }
}
.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;
}
@media (max-width: 350px) {
    .modal-details .modal-content {
        padding: 15px;
        margin-top: 0;
    }
}

.footer_wrapper {
    flex-wrap: wrap;
}
.foooter_privacy {
    width: 100%;
    text-align: center;
    padding: 7px 0;
}
.foooter_privacy a {
    color: var(--accent-color-2);
    font-size: 13px;
    text-align: center;
}

.privacy h3 {
    font-size: 19px;
    text-align: center;
    color: var(--light-color);
    margin-bottom: 35px;
    margin-top: 0;
}

.privacy h5 {
    font-size: 16px;
}

.privacy h5,
.privacy p {
    color: var(--light-color);
    margin-bottom: 16px;
}
.privacy p {
    font-size: 12px;
}
.privacy p a {
    color: var(--accent-color-2);
    text-decoration: underline;
}
.privacy ul {
    padding-left: 12px;
}
.privacy ul li {
	font-size: 12px;
	color: var(--light-color);
    list-style: disc;
    padding: 5px 0;
}

/* BreadCrumb */
ul.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 15px;
}
ul.breadcrumb li {
    position: relative;
    display: flex;
    color: #fff;
    font-size: 13px;
}
ul.breadcrumb li.active {
    color: var(--links-color-2);
}
ul.breadcrumb li a {
    color: inherit;
    text-decoration: none;
}
ul.breadcrumb li:after {
    content: "/";
    margin: 0 6px;
}
ul.breadcrumb li:last-child:after {
    content: "";
    margin: 0;
}
/*BreadCrumb No list */
div.breadcrumb {
    margin-bottom: 15px;
}
div.breadcrumb a {
    position: relative;
    color: #fff;
    font-size: 13px;
}
div.breadcrumb a.active {
    color: var(--links-color-2);
}
div.breadcrumb a {
    color: inherit;
    text-decoration: none;
}
div.breadcrumb a:after {
    content: "/";
    margin: 0 3px 0 6px;
}
div.breadcrumb a:last-child:after {
    content: "";
    margin: 0;
}