@font-face {
    font-family: 'Georgia Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Georgia Regular'), url('../fonts/georgia.woff') format('woff');
}


@font-face {
    font-family: 'Georgia Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Georgia Italic'), url('../fonts/georgiai.woff') format('woff');
}


@font-face {
    font-family: 'Georgia Bold';
    font-style: normal;
    font-weight: normal;
    src: local('Georgia Bold'), url('../fonts/georgiab.woff') format('woff');
}


@font-face {
    font-family: 'Georgia Bold Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Georgia Bold Italic'), url('../fonts/georgiaz.woff') format('woff');
}

@font-face {
    font-family: 'Brutal Type Light';
    src: url('BrutalType-Light.html');
    src: local('Brutal Type Light'), local('BrutalType-Light'),
        url('../fonts/BrutalType-Lightd41d.eot?#iefix') format('embedded-opentype'),
        url('../fonts/BrutalType-Light.woff2') format('woff2'),
        url('../fonts/BrutalType-Light.woff') format('woff'),
        url('../fonts/BrutalType-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

body {
    font-family: 'Brutal Type Light';
    font-size: 16px;
    background: url(../img/body.jpg);
    position: relative;
}

a {
    text-decoration: none;
    transition: all .3s ease;
}

:root {
    --yellowMain: #c4ac81;
    --darkMain: #1c2b2f;
    --darkMain2: #374A4F;
}

.btn {
    font-family: 'Georgia Regular' !important;
    border: none;
    text-transform: uppercase;
    border-radius: 5px;
    font-size: 16px;
    padding: 15px 35px;
    outline: none;
    cursor: pointer;
    box-shadow: 0 -2px 0 rgba(0, 0, 0, 0.09) inset, 0 2px 0 rgba(255, 255, 255, 0.1) inset;
    text-decoration: none !important;
}

.btnLigth {
    background: linear-gradient(to right, #D6AC67, #BC893D);
    color: var(--darkMain);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btnDark {
    background: linear-gradient(to right, #384B50, #142328);
    color: var(--yellowMain) !important;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
    text-decoration: none !important;
}

.btnLigth,
.btnDark {
    background-size: 200%;
    background-position: left;
    transition: background-position 0.5s ease, transform 0.3s ease;
}

.btnLigth:hover {
    background-position: right;
}

.btnDark:hover {
    background-position: right;
}

.wrapper {
    width: 1200px;
    position: relative;
    margin: 0 auto;
}

.headDesc {
    height: 334px;
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding: 0 120px;
    overflow: hidden;
    background: url(../img/header.jpg) top center no-repeat;
}

.headDesc h1 {
    font-size: 40px;
    text-transform: uppercase;
    font-family: 'Georgia Regular';
    background: linear-gradient(to left, #D6AC67, #BC893D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;

}

.headDesc p {
    color: var(--yellowMain);
    line-height: 140%;
    font-size: 15px;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.8);
}

.navigation {
    height: 59px;
    font-family: 'Georgia Regular';
    background: url(../img/nav.jpg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
}

.navigation a {
    font-size: 17px;
    text-transform: uppercase;
    color: var(--yellowMain);
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.8);
}

.navigation a:hover {
    text-shadow: 0 0 5px rgba(202, 156, 84, 0.6);
}

.navigation::before {
    content: '';
    width: 100%;
    height: 5px;
    position: absolute;
    top: -5px;
    left: 0;
    background: url(../img/nav-line.png);
}

.navigation::after {
    content: '';
    width: 100%;
    height: 5px;
    position: absolute;
    bottom: -5px;
    left: 0;
    background: url(../img/nav-line.png);
}

.headLeftSt {
    width: 194px;
    height: 448px;
    position: absolute;
    left: -92px;
    top: 0;
    z-index: 2;
    background: url(../img/head-st.png);
}

.headRightSt {
    width: 194px;
    height: 448px;
    position: absolute;
    right: -92px;
    top: 0;
    z-index: 2;
    background: url(../img/head-st.png);
}

.logo {
    position: absolute;
    left: -73px;
    top: -80px;
    z-index: 999;
    transition: all .3s ease;
    animation: navAnimation 2s ease;
}

@keyframes navAnimation {
    from {
        transform: translate(0, -20px);
    }

    to {
        transform: translate(0, 0px);
    }
}

.headLeftSt,
.headRightSt {
    animation: navAnimation 1s ease;
}

.content {
    animation: contentAnimation 2s ease;
}

@keyframes contentAnimation {
    from {
        transform: translate(0, 20px);
    }

    to {
        transform: translate(0, 0px);
    }
}

.logo:hover {
    top: -85px;
}

.topSd {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 460px;
    z-index: -1;
    background: linear-gradient(to bottom, rgba(45, 61, 68, 0.99), rgba(45, 61, 68, 0.01));
}

.bottomSd {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 460px;
    z-index: -1;
    background: linear-gradient(to top, rgba(45, 61, 68, 0.99), rgba(45, 61, 68, 0.01));
}

.logoB {
    position: absolute;
    z-index: -2;
    top: 450px;
    left: -400px;
    opacity: 0.06;
}

.logoB2 {
    position: absolute;
    z-index: -2;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%, 0);
    opacity: 0.06;
}

.content {
    display: grid;
    grid-template-columns: 1fr 325px;
    gap: 85px;
    padding: 80px 0 0 0;
    min-height: 600px;
}

.leftContentFlex {
    display: flex;
    gap: 15px;
}

.leftTextFlex {
    display: flex;
    flex-direction: column;
    gap: 35px;
    line-height: 140%;
    color: var(--darkMain);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
    width: -webkit-fill-available;
    width: -moz-available;
}

.pageTitle {
    color: var(--darkMain);
    text-transform: uppercase;
    font-size: 42px;
    font-family: 'Georgia Regular';
    line-height: 120%;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}

.rightSidebar {
    color: var(--darkMain);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}

.contLine {
    margin: 35px 0;
}

.contAdvantagesGrid {
    color: var(--darkMain);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 40px;
}

.contDvBlock {
    background: linear-gradient(to bottom right, #E9DCC7, #E4D4BB, #E2CCAA);
    min-height: 100px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 25px 15px;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    box-shadow: 0 10px 15px rgba(179, 136, 86, 0.4);
}

.contDvBlock1 {
    position: absolute;
    top: -5px;
    left: -8px;
    z-index: 2;
    background: url(../img/left-top-brd.png);
    width: 24px;
    height: 24px;
}

.contDvBlock2 {
    position: absolute;
    top: -5px;
    right: -5px;
    z-index: 2;
    background: url(../img/left-top-brd.png);
    width: 24px;
    height: 24px;
    transform: rotate(-270deg);
}

.contDvBlock3 {
    position: absolute;
    bottom: -5px;
    left: -8px;
    z-index: 2;
    background: url(../img/left-top-brd.png);
    width: 24px;
    height: 24px;
    transform: rotate(-90deg);
}

.contDvBlock4 {
    position: absolute;
    bottom: -5px;
    right: -5px;
    z-index: 2;
    background: url(../img/left-top-brd.png);
    width: 24px;
    height: 24px;
    transform: rotate(-180deg);
}

.contDvBlock5 {
    position: absolute;
    top: -5px;
    left: -5px;
    z-index: 1;
    background: url(../img/brd-line.png);
    width: 100%;
    height: 8px;
    transform: rotate(-180deg);
}

.contDvBlock6 {
    position: absolute;
    bottom: -5px;
    left: -5px;
    z-index: 1;
    background: url(../img/brd-line.png);
    width: 100%;
    height: 8px;
}

.contDvBlock7 {
    position: absolute;
    right: -5px;
    top: 0px;
    z-index: 1;
    background: url(../img/brd-line2.png);
    width: 7px;
    height: 100%;
}

.contDvBlock8 {
    position: absolute;
    left: -5px;
    top: 0px;
    z-index: 1;
    background: url(../img/brd-line2.png);
    width: 7px;
    height: 100%;
}

.contDvBlockTitle {
    color: var(--darkMain);
    text-transform: uppercase;
    font-size: 14px;
    font-family: 'Georgia Regular';
    line-height: 120%;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}

.contDvBlock p {
    font-size: 14px;
    line-height: 120%;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}

.ContAdvantages2 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    line-height: 140%;
    color: var(--darkMain);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}

.footer {
    margin-top: 80px;
}

.footerDesc {
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: url(../img/footer.jpg) top center no-repeat;
}

.siteCopir {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--yellowMain);
    padding: 10px 0;
    background: #122227;
    position: relative;
}

.siteCopir::before {
    content: '';
    width: 100%;
    height: 5px;
    position: absolute;
    top: -5px;
    left: 0;
    background: url(../img/nav-line.png);
}

.footLeftSt {
    width: 194px;
    height: 448px;
    position: absolute;
    left: -92px;
    bottom: 0;
    z-index: 2;
    background: url(../img/foot-st.png) no-repeat;
}

.footRightSt {
    width: 194px;
    height: 448px;
    position: absolute;
    right: -92px;
    bottom: 0;
    z-index: 2;
    background: url(../img/foot-st.png) no-repeat;
}

.footerDesc img {
    transition: all .3s ease;
}

.footerDesc img:hover {
    opacity: 0.8;
}

.asidTabsBtn {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.asidTabsBtn .btn {
    width: 100%;
    box-shadow: 0 5px 5px rgba(179, 136, 86, 0.4);
}

.asidTabsBtn .btnDark {
    box-shadow: 0 5px 5px rgba(18, 34, 39, 0.2);
}

.formWrapper {
    width: 312px;
    /* min-height: 300px; */
    margin: 20px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 110px 0;
    background: url(../img/bord-top.jpg) top center no-repeat,
        url(../img/bord-bottom.jpg) bottom center no-repeat,
        url(../img/bord-center.jpg) center;
}

.formContainer {
    width: 226px;
    margin: 0 auto;
}

.formContainer form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.formContainer form input {
    width: -webkit-fill-available;
    width: -moz-available;
    border: 1px solid #B59D84;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 0 rgba(255, 255, 255, 0.4) inset;
    background: none;
    height: 32px;
    border-radius: 3px;
    padding-left: 15px;
    color: var(--darkMain);
    font-size: 12px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
    outline: none;
}

.formContainer form input::placeholder {
    color: var(--darkMain);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}

.formContainer form input[type="checkbox"] {
    width: auto;
    height: auto;
}

.formTitle {
    color: var(--darkMain);
    text-transform: uppercase;
    font-size: 17px;
    font-family: 'Georgia Regular';
    line-height: 120%;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}

.termsInp span {
    display: inline-flex;
    width: 16px;
    height: 16px;
    background: linear-gradient(to right, #D6AC67, #BC893D);
    border-radius: 2px;
    position: relative;
    align-items: center;
    justify-content: center;
}

.termsInp span::before {
    content: '';
    width: 10px;
    height: 10px;
    background: linear-gradient(to right, #384B50, #142328);
    border-radius: 2px;
    display: none;
}

.termsInpAcc:checked~span::before,
#termsInp:checked~span::before {
    display: inline-flex;
}

.termsInp label {
    display: flex;
    gap: 10px;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
    cursor: pointer;
}

.termsInp label input {
    display: none;
}

.termsInp label a {
    font-family: 'Georgia Bold';
    color: var(--darkMain);
}

.formWrapper {
    display: none;
}

.formWrapper.active {
    display: flex;
}

.widget {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
    position: relative;
    padding: 20px;
    background: linear-gradient(to bottom right, #E9DCC7, #E4D4BB, #E2CCAA);
    box-shadow: 0 10px 15px rgba(179, 136, 86, 0.4);
}

.widgetList {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.widgetList a {
    color: var(--darkMain);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
    font-size: 17px;
    color: var(--yellowMain);
    border-radius: 3px;
    font-family: 'Georgia Regular';
    color: var(--darkMain);
    border-bottom: 1px solid #B59D84;
    padding-bottom: 10px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}

.widgetList a:last-child {
    border-bottom: none;
    box-shadow: none;
}

.widgetList a:hover {
    padding-left: 10px;
}

.widget table tr th,
.widget table tr td {
    padding: 5px 0;
    font-size: 15px;
}

.statNum {
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
    font-family: 'Georgia Regular';
    font-size: 18px !important;
}

.formContainer a {
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
    font-family: 'Georgia Regular';
    font-size: 15px;
    color: var(--darkMain);

}

.stoneСolumn1 {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 101px;
    z-index: 5;
    background: url(../img/left-b-bord.png) top left no-repeat,
        url(../img/bottom-b-bord.png) bottom left no-repeat,
        url(../img/center-b-bord.png) left repeat-y;
}

.stoneСolumn2 {
    position: fixed;
    right: 0;
    top: 0;
    height: 100%;
    width: 101px;
    z-index: 5;
    background: url(../img/left-b-bord2.png) top right no-repeat,
        url(../img/bottom-b-bord2.png) bottom right no-repeat,
        url(../img/center-b-bord2.png) right repeat-y;
}

@media screen and (max-width:1482px) {

    .stoneСolumn1,
    .stoneСolumn2 {
        display: none;
    }
}

.navMedia {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.navMedia a.active,
.navMedia a:hover {
    opacity: 0.8;
    transform: translate(0, -3px);
}

.postImages {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 30px 35px rgba(179, 136, 86, 0.2);
}

.faq {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    padding: 10px 20px;
    cursor: pointer;
    position: relative;
    background: linear-gradient(to bottom right, #0E2930, #3C5156, #26373C);
    box-shadow: 0 10px 15px rgba(179, 136, 86, 0.4);
    color: var(--yellowMain);
}

.faq-question {
    position: relative;
    position: relative;
    font-size: 21px;
    font-family: 'Georgia Regular';
    text-shadow: none;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    padding-top: 0;
    font-size: 14px;
    text-shadow: none;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
    padding-top: 10px;
}

.faq-answer a {
    color: var(--darkMain);
    font-family: 'Georgia Regular';
    text-decoration: underline;
}

.newsWrapper {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
}

.newsWrapperPage {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(1, 1fr);
}

.news {
    position: relative;
    min-height: 100px;
    font-size: 14px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(to bottom right, #E9DCC7, #E4D4BB, #E2CCAA);
    box-shadow: 0 10px 15px rgba(179, 136, 86, 0.4);
}

.newsTitle {
    font-size: 21px;
    font-family: 'Georgia Regular';
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
    line-height: 120%;
}

.news .btn {
    margin-top: 20px;
    display: inline-flex;
}

.news img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 15px rgba(179, 136, 86, 0.2);
}

.newsDate {
    font-size: 11px;
    padding: 2px 5px;
    border-radius: 3px;
    color: var(--darkMain);
    width: max-content;
    margin-bottom: 15px;
    border: 1px solid rgba(0, 0, 0, 0.09);
}

.newsImages {
    margin-bottom: 20px;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.pagination a {
    background: linear-gradient(to right, #384B50, #142328);
    color: var(--yellowMain) !important;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
    border-radius: 5px;
    font-size: 13px;
    padding: 10px 20px;
    cursor: pointer;
    text-decoration: none !important;
}

.pagination li a:hover,
.pagination li.active a {
    background: linear-gradient(to right, #D6AC67, #BC893D);
    color: var(--darkMain) !important;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
}

.inpts {
    width: -webkit-fill-available;
    border: 1px solid #B59D84;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 0 rgba(255, 255, 255, 0.4) inset;
    background: none;
    height: 32px;
    border-radius: 3px;
    padding-left: 15px;
    color: var(--darkMain);
    font-size: 12px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
    outline: none;
}

.inpts::placeholder {
    color: var(--darkMain);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}

.suportForm {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.suportForm textarea {
    padding-top: 15px;
    min-height: 120px;
}

.offersCol {
    position: relative;
    min-height: 100px;
    background: linear-gradient(to bottom right, #0E2930, #3C5156, #26373C);
    box-shadow: 0 10px 15px rgba(179, 136, 86, 0.4);
    color: var(--yellowMain);
}

.offersWrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.offersCol {
    text-shadow: none;
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.offersName {
    font-size: 29px;
    text-transform: uppercase;
    font-family: 'Georgia Regular';
    text-shadow: none;
}

.offersCol img {
    max-width: 190px;
    height: auto;
}

.offersCol .contLine {
    margin: 0;
}

.affiliateWrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.affiliateWrapper ol {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
}

.affiliateWrapper ol li {
    padding-left: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.affiliateWrapper b {
    font-size: 29px;
    text-transform: uppercase;
    font-family: 'Georgia Regular';
}

.affiliateWrapper ol li span {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    display: inline-flex;
    background: linear-gradient(to bottom right, #0E2930, #3C5156, #26373C);
    border: 2px solid #D6AC67;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
}

.mobile_nav {
    display: none;
}

.termsWrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.termsWrapper b {
    font-size: 21px;
    text-transform: uppercase;
    font-family: 'Georgia Regular';
}

.termsWrapper a {
    text-decoration: underline;
    color: var(--darkMain);
    font-family: 'Georgia Regular';
}

.formWrapperCabinet {
    display: flex;
}

.widgetListCab a {
    color: var(--darkMain2);
}

.captchaWr {
    display: flex;
    gap: 10px;
    flex-direction: column;
    align-items: start;
    width: -webkit-fill-available;
}

.captchaWr img {
    border-radius: 3px;
    background: #000;
}

.signupForm input,
.signupForm select {
/*    margin-bottom: 10px;*/
}

.signupForm {
    font-size: 14px;
    color: var(--darkMain);
    font-family: 'Georgia Regular';
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.leftTextFlex a {
    color: var(--darkMain);
    font-family: 'Georgia Regular';
    text-decoration: underline;
}

.signupForm .formTitle {
    align-items: start;
    text-align: left;
}

.signupForm label {
    opacity: 0.7;
}

.signupForm .btn {
    width: max-content;
}

.signupForm .termsInp label {
    flex-direction: row;
    flex-wrap: wrap;
}

.error {
    border: 1px solid #DD6752;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
    border-radius: 5px;
    padding: 10px;
    font-size: 14px;
    color: #DD6752;
}

.success {
    border: 1px solid #033801;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
    border-radius: 5px;
    padding: 10px;
    font-size: 14px;
    color: #033801;
}


.info {
    border: 1px solid #5492e3;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
    border-radius: 5px;
    padding: 10px;
    font-size: 14px;
    color: #5492e3;
}

/* Safe opening */

.safeWrapper {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
    width: -webkit-fill-available;
    width: -moz-available;
    width: fill-available;
/*    height: -webkit-fill-available;
    height: -moz-available;
    height: fill-available;*/
    height: 100%;
    background: linear-gradient(to bottom right, #806749, #422F17);
    overflow: hidden;
    perspective: 2000px;
    perspective-origin: center center;
    overflow: visible;
}

.safeDoors {
    width: -webkit-fill-available;
    width: -moz-available;
    width: fill-available;
    height: 100%;
    /* border: 3px solid #000; */
    background: linear-gradient(to bottom right, #806749, #422F17);
    /* border-radius: 10px; */
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3), 1px 2px 0 #FFE3A8 inset;
    position: relative;
}

.safeHinge {
    position: absolute;
    top: 100px;
    left: -5px;
    width: 20px;
    height: 135px;
    background: url(../img/safe/1.png);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    border: 1px solid #000;
    border-radius: 5px;
}

.safeHing2 {
    position: absolute;
    bottom: 100px;
    left: -5px;
    width: 20px;
    height: 135px;
    background: url(../img/safe/1.png);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    border: 1px solid #000;
    border-radius: 5px;
}

.safeDoors01 {
    width: 800px;
    height: 800px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 4px solid #4E3920;
    background: linear-gradient(to bottom right, #977A5B, #34250D);
    border-radius: 100%;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.5), 1px 2px 0 #FFE3A8 inset;
    position: relative;
}

.safeDoors02 {
    width: 80%;
    height: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 4px solid #34250D;
    background: linear-gradient(to bottom right, #977A5B, #34250D);
    border-radius: 100%;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.5), 1px 2px 0 #FFE3A8 inset;
    position: relative;
}

.safeDoors03 {
    width: 332px;
    height: 332px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform-origin: 0 0;
    background: url(../img/safe/2.png);
    border: 4px solid #34250D;
    border-radius: 100%;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5), 1px 2px 0 #FFE3A8 inset;
    animation: safeDoorsSp 2s linear infinite;
}

@keyframes safeDoorsSp {
    0% {
        transform: rotate(0deg) translate(-50%, -50%);
    }

    100% {
        transform: rotate(-360deg) translate(-50%, -50%);
    }
}

.safeDoors {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transform-origin: left center;
    transition: transform 2.5s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.safeDoors::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10px;
    width: 10px;
    height: 100%;
    background: #2a2a2a;
    transform: rotateY(90deg);
    transform-origin: left;
}

.safeDoors.open {
    transform: rotateY(-110deg);
}

.safeWrapper.fade-out {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

.widgetListCab a {
    display: flex;
    align-items: center;
    gap: 10px;
}
.widgetListCab a span {
    width: 26px;
    height: 26px;
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
/*    background: linear-gradient(to right, #384B50, #142328);*/
}

.mainWidgetListWr {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.mainWidgetList {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.mainWidgetListD {
    font-family: 'Georgia Regular';
    font-size: 16px;
}

.mainWidgetLight{
    position: relative;
    min-height: 50px;
    background: linear-gradient(to bottom right, #E9DCC7, #E4D4BB, #E2CCAA);
    box-shadow: 0 10px 15px rgba(179, 136, 86, 0.4);
    padding: 20px;
}

.mainWidgetDark{
    position: relative;
    min-height: 50px;
    background: linear-gradient(to bottom right, #0E2930, #3C5156, #26373C);
    box-shadow: 0 10px 15px rgba(179, 136, 86, 0.4);
    color: var(--yellowMain);
    padding: 20px;
}

.mainWidgetFlex {
    display: flex;
    align-items: center;
    gap: 50px;
}

.mainWidgetIcon {
    background: linear-gradient(to top right, #0E2930, #3C5156, #26373C);
    padding: 10px;
    border-radius: 10px;
    position: relative;
}

.mainWidgetIcon img {
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.7));
    width: 100px;
}

.mainWidgetDarkFlex {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.mainBallWrapper {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(4, 1fr);
}

.mainBallWrapper .offersDesc {
    text-shadow: none;
    font-size: 14px;
}

#copyBtn {
    padding: 5px 10px;
    font-size: 12px;
}

.mainWidgetListDFlrex {
    display: flex;
    gap: 7px;
}

.pageTitleDesc {
    font-size: 20px;
}

.offersName small {
    font-size: 12px;
    text-shadow: none;
}

.plansWrapper {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(2, 1fr);
}

.curWrapper {
    grid-template-columns: repeat(1, 1fr);
}

.mainPlan {
    position: relative;
    text-shadow: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mainPlaneName {
    font-family: 'Georgia Regular';
    font-size: 24px;
    text-align: center;
}

.mainPlanChecked {
    position: absolute;
    top: 10px;
    left: 10px;
    border-radius: 100%;
        background: linear-gradient(to top, #D6AC67, #BC893D);
    width: 30px;
    height: 30px;
}

.mainPlanChecked::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 100%;
    background: linear-gradient(to top right, #0E2930, #3C5156, #26373C);
    width: 20px;
    height: 20px;
    transition: all .3s ease;
    opacity: 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.mainPlanInput:checked ~ .mainPlanChecked::before {
    opacity: 1;
}

.mainPlanInput {
    display: none;
}

.mainPlanList {
    color: #E8D8BF;
    font-size: 14px;
}

.pSysBalBtn {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.mainPsysLabel {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.mainWidgetPsys {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    padding: 10px 20px;
}

.mainPsysCh {
    background: #E8D8BF;
    width: 16px;
    height: 16px;
    border-radius: 100%;
    display: flex;
    position: relative;
}

.mainPsysCh::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 100%;
    background: linear-gradient(to top right, #0E2930, #3C5156, #26373C);
    width: 10px;
    height: 10px;
    transition: all .3s ease;
    opacity: 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.mainPsysLabel input:checked ~ .mainPsysCh::before {
    opacity: 1;
}

.mainPsysLabel input {
    display: none;
}

.mainPsysLabel input[type="radio"]:disabled ~ .mainPsysCh {
    opacity: 0.3;
}

.pSysName {
    font-family: 'Georgia Regular';
    font-size: 21px;
    text-align: center;
}

.pSysBal small {
    font-family: 'Georgia Regular';
}

.pageMinTitle {
    font-family: 'Georgia Regular';
    font-size: 24px;
    margin: 25px 0;
    color: var(--darkMain2);
}

.amountWrapper {
    display: flex;
/*    flex-wrap: wrap;*/
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.amountWrapper .btn {
    white-space: nowrap;
}

.amountWrapper input {
    height: 44px;
    font-family: 'Georgia Regular';
    font-size: 24px;
}

.pageMinTitleMg {
    margin: 0;
}

.mainDepositsWrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mainWidgetLightDeposits {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.maindDate {
    font-size: 13px;
    display: flex;
    gap: 5px;
}

.mainWidgetLight table tr td {
    font-size: 14px;
}

.mainWidgetLight table tr td b {
    font-family: 'Georgia Regular';
    font-size: 16px;
}

.mainWidgetLight table tr td {
    border-bottom: 1px solid #B59D84;
    padding: 5px 0;
}

.mainTable tr:last-child td {
    border: none;
    box-shadow: none;
}

.mt20 {
    margin-top: 20px;
}

.mainDepositsListaProf,
.mainDepositsListaAmo {
    font-size: 14px;
/*    text-align: center;*/
}

.mainDepositsListaName {
    text-align: left;
    margin-bottom: 20px;
}

.mainDepositsListaAmo span,
.mainDepositsListaProf span {
    font-family: 'Georgia Regular';
    font-size: 16px;
}

.mainDepositsHist form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: start;
}

.mainTable {
    font-size: 15px;
}

.mainTable tr th {
    text-align: left;
    font-family: 'Georgia Regular';
    font-size: 16px;
}

.mainTable small {
    font-family: 'Georgia Regular';
    font-size: 16px;
}

.mainTable tr td {
    border-bottom: 1px solid #B59D84;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
    padding: 5px 0;
}

.mainTable .mainWidgetLight {
    min-height: auto;
    font-family: 'Georgia Regular';
    font-size: 18px;
}

.mainAccountBalance,
.mainPendingWithdrawals {
    font-size: 22px;
}

.mainWidgetDarkOp {
    opacity: 0.5;
    cursor: help;
}

.btnSmall {
    padding: 5px 10px;
    font-size: 12px;
    text-decoration: none !important;
}

.withdrawalWrapper {
    margin: 25px 0;
    gap: 25px;
}

.accFullname input {
    width: 100%;
}

.mainTable tr td small {
    font-family: 'Georgia Regular';
}

.termsInpWrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.itemReff {
    font-family: 'Georgia Regular';
    font-size: 18px;
}

.reffLinksWrapper {
    display: flex;
    gap: 25px;
}

.reffLinksWrapperBl {
   
}

.reffLinksWrapperBtn {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.reffLinksWrapperBtn .btn {
    text-align: center;
}

.reffLinksWrapperBl textarea {
    height: 132px;
}

.reffLinksWrapperBl img {
    max-width: 100%;
    height: auto;
}

::selection {
  background-color: #CB9D55;
  color: #1a1a1a;
}

::-moz-selection {
  background-color: #CB9D55;
  color: #1a1a1a;
}

.mainDepositsFieldWr {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mainTable {
  border-collapse: collapse;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  font-family: 'Georgia', serif;
}

.mainTable th {
  text-transform: uppercase;
  font-size: 0.9rem;
  border-bottom: 2px solid #d6ac67;
  letter-spacing: 1px;
}

.mainTable tr th,
.mainTable tr td {
    padding: 8px !important;
}

.mainTable tbody tr:nth-child(odd) {
  background: #ffffff;
}

.mainTable tbody tr:nth-child(even) {
  background: #f4eee5;
}

.mainTable tbody tr:hover {
  background: #e9dcc7;
  transition: background 0.3s;
}
.mainTable td {
  padding: 12px 20px;
  color: #2c2c2c;
  font-size: 1rem;
  border-bottom: 1px solid #e4d4bb;
}

.mainTable tfoot tr {
  background: #2c3e50;
}

.mainTable tfoot td {
  color: #ffffff;
  font-weight: bold;
  padding: 14px 20px;
  border-top: 2px solid #d6ac67;
  text-transform: uppercase;
}


.mainTable {
    width: -webkit-fill-available;
    width: -moz-available;
    border-radius: 8px;
    overflow: hidden;
}