@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: 'Exo 2', sans-serif;
}

a {
    text-decoration: none;
}

body {
    width: 100%;
    height: 100%;
    background: #F5F5F5;
}

body::-webkit-scrollbar {
    width: 5px;
}

body::-webkit-scrollbar-track {
    background-color: #E2E2E2;
}

body::-webkit-scrollbar-thumb {
    background-color: #FFC700;
}

[class*="__container"] {
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 1180px;
}

.header {
    width: 100%;
    background: #232D33;
    height: 60px;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 100;
  display: none;
}

.header__container {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.header_hamburger span {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 27px;
    height: 3px;
    background: #FFF;
    border-radius: 8px;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .2s;
    transition-property: color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-text-decoration-color,-webkit-transform,-webkit-filter,-webkit-backdrop-filter;
    margin-bottom: 7px;
}

.header_hamburger span:last-child {
    margin-bottom: 0px;
}

.header_user_balance {
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
}

.header_user_balance span {
    color: #FFC608;
    font-weight: 600;
}

.header_logo {
    display: flex;
    align-items: center;
    padding: 10px 15px;
}

.header_logo_text {
    color: #FFF;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
}

.header_right_element {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header_link_right {
    display: flex;
    gap: 10px;
    align-items: center;
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.main__container {
    position: relative;
    padding-top: 15px;
    padding-bottom: 20px;
    height: 100%;
    min-height: calc(100vh - 450px);
}

.banner_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background: url(/assets/images/banner-bg.png) no-repeat center center / cover;
    min-height: 216px;
    border-radius: 18px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    position: relative;
    padding: 3rem;
}

.banner_wrapper.preorder {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background: url(/assets/images/banner-preorder.png) no-repeat center center / cover;
    min-height: 216px;
    border-radius: 18px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    position: relative;
    padding: 3rem;
    margin-bottom: 30px;
}

.banner_left_block {
    display: flex;
    float: left;
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.banner_left_text {
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.banner_right_block {
    margin-top: 1rem;
}

.btn {
    padding: 12px 30px;
    font-size: 14px;
    border-radius: 6px;
    height: 44px;
    background: #dbe7f1;
    color: #000;
    display: inline-block;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    border-color: transparent;
}

.main_btn {
    background-color: #ffc608;
    color: #000;
}

.why_block {
    margin-top: 15px;
}

.why_title {
    border-bottom: 2px solid #DDD;
    padding-bottom: 20px;
    color: #333;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 28.6px;
}

.why_cards {
    display: flex;
    align-items: center;
    margin-top: 20px;
    gap: 30px;
}

.why_card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 30px 20px 30px 20px;
    border-radius: 10px;
    background: #FFF;
    width: 33.33333333%;
    height: 190px;
}

.why_card_h1 {
    color: #333;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 19.8px;
    margin-bottom: 10px;
}

.why_card_h2 {
    color: #333;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.select_regions {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
    margin-top: 50px;
}

.select_region {
    display: flex;
    width: 33.333333%;
    height: 44px;
    justify-content: center;
    align-items: center;
    border: 2px solid #FFC608;
    color: #222;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    cursor: pointer;
}

.select_region.active {
    color: #FFF;
    background: #FFC608;
}

.select_region:first-child {
    border-radius: 30px 0px 0px 30px;
}

.select_region:last-child {
    border-radius: 0px 30px 30px 0px;
}

.block_accounts {
    display: none;
    margin-top: 40px;
    margin-bottom: 45px;
}

.block_accounts.active {
    display: block;
}

.block_accounts_title {
    border-bottom: 2px solid #DDD;
    padding-bottom: 20px;
    color: #333;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 28.6px;
}

.block_accounts_title:not(:first-child) {
    margin-top: 25px;
}

.blocks_accounts {
    display: grid;
    grid-gap: 30px;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 35px;
}

.card_account {
    position: relative;
    padding: 30px;
    border-radius: 10px;
    background: url(/assets/images/bg-account.png);
    background-size: contain;
    color: #fff;
    box-shadow: 0 6px 25px 0 rgba(30,38,44,.3);
}

.card_account img {
    width: 235px;
    position: absolute;
    left: 135px;
    bottom: 15px;
    z-index: 1;
}

.card_account_title {
    color: #FFF;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 28.6px;
    margin-bottom: 5px;
    position: relative;
    z-index: 2;
}

.percent_sale {
    color: #000000;
    font-weight: bold;
    font-size: 16px;
    position: absolute;
    top: 0;
    left: 0;
    background: #FFC608;
    z-index: 2;
    padding: 6px 14px;
    border-top-left-radius: 8px;
    border-bottom-right-radius: 10px;
    margin: 0!important;
}

.card_account_price {
    color: #FFC608;
    font-size: 34px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
    position: relative;
    z-index: 2;
}

.card_account_text {
    position: relative;
    z-index: 2;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.86px;
    margin-bottom: 10px;
    width: 200px;
}

.prefooter {
    background: #E2E2E2;
    padding: 30px 0
}

.prefooter_text_container {
    position: relative;
    padding-right: 80px;
    padding-left: 10px;
    border-left: 3px solid #ffc608;
    transition: all 0.2s ease-in-out;
}

.support_menu_item.unical {
    background-color: #ffc608;
    color: #FFF;
    padding: 11px 48px 12px 64px;
}

.prefooter_h2 {
    color: #333;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 30.8px;
    margin-bottom: 10px;
}

.prefooter_main_text {
    color: #333;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 5px;
}

.prefooter_hidden {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.prefooter_hidden ul {
    padding-left: 17px;
    list-style-type: disc;
}

.prefooter_hidden ul li {
    color: #333;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
}

.expand_main_text {
    background: #e2e2e2;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    line-height: 42px;
    font-size: 30px;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    border: 3px solid#f2c244;
    transition: 0.3s all;
}

.footer {
    padding: 50px 0 30px;
    background: #232d33;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.footer_advantages {
    margin-bottom: 50px;
    border-bottom: 1px solid#39454e;
    padding-bottom: 50px;
}

.advantages_blocks {
    display: flex;
    gap: 30px;
}

.advantages_block {
    display: flex;
    gap: 15px;
    align-items: center;
    width: 25%;
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.footer_blocks {
    position: relative;
    display: flex;
}

.totop {
    display: none;
    position: absolute;
    padding: 12px 14px;
    border-radius: 50px;
    background-color: #FFC700;
    outline: none;
    border: none;
    right: 0;
    top: -60%;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}

.footer_block {
    width: 50%;
}

.footer_text {
    margin-top: 8px;
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.footer_logo {
    width: 260px;
    height: 60px;
}

.footer_info_h5 {
    color: #FFF;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 18.7px;
}

.footer_ul {
    margin-top: 7px;
    padding-left: 0;
    list-style: none;
}

.footer_ul li {
    display: inline-block;
    margin: 0 10px 10px 0;
    line-height: 1;
}

.footer_ul li a {
    color: #CCC;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 14px;
}

.title_page {
    color: #333;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 33px;
    margin-bottom: 30px;
    margin-top: 10px;
}

.guarantees_cards {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.guarantees_card {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: center;
}

.guarantees_card:last-child {
    margin-bottom: 0;
}

.guarantees_card_title {
    color: #333;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
}

.guarantees_text_description {
    margin-top: 15px;
    color: #333;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.scammers_wrapper {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.scammers_warning {
    color: #333;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 25px;
}

.scammers_shop {
    position: relative;
    padding-right: 80px;
    padding-left: 10px;
    border-left: 3px solid #ffc608;
    overflow: hidden;
    transition: padding 0.3s ease;
}

.scammers_shop:last-child {
    margin-bottom: 30px;
}

.scammers_shop_name {
    color: #333;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 30.8px;
}

.scammers_shops {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.scammers_shop_hidden {
    color: #333;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin-top: 10px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.scammers_shop_show {
    background: #e2e2e2;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-align: center;
    line-height: 26px;
    font-size: 28px;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    border: 3px solid#f2c244;
    transition: 0.3s all;
}

.reviews_wrapper {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.reviews_new_block {
    border-radius: 10px;
    background: #FFF;
    padding: 30px;
    width: 41.66666667%;
}

.reviews_title_new {
    color: #333;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    margin-bottom: 20px;
}

.reviews_form_group {
    margin-bottom: 15px;
}

.reviews_form_input {
    display: block;
    width: 100%;
    height: 44px;
    padding: 15px 20px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

.reviews_form_check {
    display: flex;
    gap: 10px;
    align-items: center;
}

.form_hidden_tg {
    margin-bottom: 15px;
}

.reviews_form_check_label_tg {
    color: #333;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
}

.reviews_form_check_label_num {
    margin-bottom: 10px;
}

.form_check_status {
    margin-bottom: 10px;
}

textarea.reviews_form_input {
    height: auto;
}

.btn_submit_rev {
    width: 100%;
    cursor: pointer;
}

.reviews_block {
    width: 58.33333333%;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
}

.reviews_block_title {
    color: #333;
    text-align: center;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 28.6px;
    margin-bottom: 15px;
}

.card_page {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.rules_title {
    color: #FFC608;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
}

.rules_yellow {
    color: #FFC608;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
}

.rules_block {
    margin-bottom: 15px;
}

.rules_block:last-child {
    margin-bottom: 0;
}

.profile_info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.profile_img img {
    width: 56px;
    height: 56px;
    border-radius: 500px;
    margin-right: 18px;
}

.profile_nick {
    color: #333;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 25.71px;
    margin-right: 18px;
}

.profile_logout {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 15px 40px;
    border-radius: 14px;
    border: 3px solid #FFC608;
    color: #333;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 25.71px;
}

.regions_profile {
    margin-top: 0;
    margin-bottom: 45px;
}

.profile_accounts {
    display: none;
    gap: 30px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.profile_accounts.active {
    display: grid;
}

.profile_card_content {
    padding: 20px 30px;
    border-radius: 16px 16px 0px 0px;
    background: #FFF;

}

.profile_card_name {
    color: #333;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22.86px;
    padding-bottom: 10px;
}

.profile_card_line {
    height: 2px;
    width: 100%;
    border-radius: 18px;
    background: #C5C5C5;
}

.profile_card_info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.profile_card_info {
    margin-top: 10px;
}

.profile_card_block_title {
    color: #333;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 22.86px;
}

.profile_card_block_num {
    color: #333;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22.86px;
}

.profile_card_button {
    display: inline-flex;
    width: 100%;
    padding: 16px 59px 17px 59px;
    justify-content: center;
    align-items: center;
    border-radius: 0px 0px 16px 16px;
    background: #FFC700;
    cursor: pointer;
}

.support_wrapper {
    display: flex;
    gap: 30px;
    border-radius: 10px;
    background: #FFF;
    padding: 30px;
}

.support_menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.support_content {
    display: none;
    width: 100%;
}

.support_content.active {
    display: block;
}

.support_menu_item {
    display: flex;
    padding: 11px 81.699px 12px 85.22px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    background: #F0F5F9;
    border-radius: 30px;
    border-bottom: 2px solid #FFF;
    cursor: pointer;
}

.support_menu_item.active {
    color: #FFF;
    border-radius: 30px;
    background: #202020;
    box-shadow: 0px 15px 30px 0px rgba(98, 180, 150, 0.20);
}

.support_content_title {
    color: #333;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    margin-bottom: 20px;
}

.support_content_item {
    width: 100%;
    border-top: 1px solid #F3F4F9;
    background: #FFF;
    padding: 16px 0px;
    gap: 10px;
    overflow: hidden;
    transition: padding 0.3s ease;
}

.support_content_flex {
    display: flex;
    align-items: center;
    gap: 7px;
}

.support_content_item:last-child {
    border-bottom: 1px solid #f3f4f9;
}

.support_content_text {
    color: #333;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 17.6px;
}

.header_product {
    position: relative;
    width: 100%;
    height: 385px;
    background: url(/assets/images/back-product.jpg) no-repeat center center / cover;
}

.product_content {
    width: 100%;
    height: 385px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin: auto;
}

.product_image img {
    width: 100%;
    max-width: 450px;
}

.more_account_info {
    position: relative;
    z-index: 2;
}

.product_title {
    color: #FFF;
    font-size: 34.453px;
    font-style: normal;
    font-weight: 700;
    line-height: 37.899px;
}

.product_description {
    color: #FFF;
    font-size: 18.552px;
    font-style: normal;
    font-weight: 400;
    line-height: 30.292px;
    margin-bottom: 10px;
}

.product_price {
    color: #FFC608;
    font-size: 45.054px;
    font-style: normal;
    font-weight: 700;
    line-height: 45.054px;
}

.product_count {
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
}

.product_old_price {
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    text-decoration: line-through;
}

.product_help_buy {
    color: #FFC608;
    font-size: 18px;
    font-weight: 400;
    line-height: 30.292px;
    cursor: pointer;
}

.product_buy, .product_guest {
    width: 245px;
    margin-top: 20px;
    color: #000;
    text-align: center;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 31px;
    border-radius: 10px;
    background: #FFC608;
    padding: 15px 10px;
    cursor: pointer;
}

.product_overview_wrapper {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.product_overview {
    width: 60%;
}

.product_instruction {
    width: 45%;
}

.product_overview_title {
    color: #333;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 28.6px;
    margin-bottom: 20px;
}

.product_overview_text {
    border-radius: 10px;
    background: #FFF;
    padding: 25px;
    color: #333;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

.product_overview_text a {
    color: #FFA800;
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    text-decoration-line: underline;
}

.auth_modal_wrapper, .payment_modal_wrapper, .confirm_modal_wrapper, .check_modal_wrapper, .data_modal_wrapper, .help_modal_wrapper, .noacc_modal_wrapper {
    display: none;
    position: absolute;
    top: 35%;
    left: 50%;
    margin: 0 auto;
    padding: 25px 40px;
    background-color: #fff;
    color: #FFF;
    border-radius: 15px;
    transform:translate(-50%, -50%);
    z-index: 1000;
}

.data_modal_wrapper svg {
    width: 100%;
    margin: 0 auto;
}

.product_sell_info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product_discount .sale {
    width: 75px;
    height: 75px;
    border: 5px solid #FFC608;
    line-height: 68px;
    text-align: center;
    font-size: 21px;
    float: left;
    color: #FFC608;
    font-weight: bold;
    border-radius: 50%;
}

.data_modal_help_title {
    color: #333;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    margin-top: 40px;
    margin-bottom: 25px;
    text-align: left;
}

.data_modal_helper_link {
    display: flex;
    align-items: center;
    color: #CACACA;
    font-size: 14px;
    font-weight: 500;
    border-radius: 50px 7px 7px 50px;
    gap: 12px;
    background: #F5F5F5;
}

.auth_modal_title {
    color: #333;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    padding-bottom: 15px;
    text-align: center;
}

.auth_modal_text {
    color: #333;
    text-align: center;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    padding-top: 30px;
}

.auth_modal_btn {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.reviews_content {
    max-height: 535px;
    overflow-y: auto;
}

.reviews_content::-webkit-scrollbar {
    width: 5px;
}

.reviews_content::-webkit-scrollbar-track {
    background-color: #E2E2E2;
}

.reviews_content::-webkit-scrollbar-thumb {
    background-color: #FFC700;
}

.reviews_content {
    margin-top: 10px;
}

.review_username {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    margin-right: 3px;
}

.review_tg {
    color: #333;
    font-weight: 400;
}

.review_block {
    padding-left: 10px;
    border-left: 3px solid #ffc608;
}

.review_text {
    margin-top: 7px;
}

.review_block {
    margin-bottom: 15px;
}

.aside_left_menu {
    display: none;
    position: fixed;
    width: 280px;
    height: calc(100% + 1075px);
    z-index: 999;
    background: #1E262C;
    padding: 10px 15px;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .2s;
    transition-property: color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-text-decoration-color,-webkit-transform,-webkit-filter,-webkit-backdrop-filter;
}

.aside_left_menu.active {
    display: block;
}

.aside_btn {
    width: 100%;
    background-color: #ffc608;
    color: #000;
    padding: 12px 30px;
    font-size: 14px;
    border-radius: 6px;
    height: 44px;
    display: inline-block;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    border-color: transparent;
    text-align: center;
}

.aside_menu_title {
    color: #C3C6CE;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    margin-top: 40px;
    margin-bottom: 20px;
}

.aside_menu_items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-left: 15px;
}

.aside_menu_item {
    color: #C3C6CE;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
}

.aside_menu_item:hover {
    color: #FFC608;
}

.header_hamburger.active span:nth-child(1) {
    transform: translateY(10px) rotate(48deg);
}

.header_hamburger.active span:nth-child(2) {
    display: none;
}

.header_hamburger.active span:nth-child(3) {
    transform: translateY(0px) rotate(-45deg);
}

.profile_balances {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.profile_balance {
    font-size: 14px;
    font-weight: 500;
}

.profile_pay {
    cursor: pointer;
}

.payment_modal_content {
    margin-top: 40px;
}

.payment_modal_input {
    margin-bottom: 7px;
}

.payment_modal_inputs{
    margin-bottom: 25px;
}

.pay_alert {
    font-size: 12px;
    font-weight: 500;
    margin-top: 5px;
    text-align: center;
}

.pay_alert.success {
    color: #0B9039;
}

.pay_alert.error {
    color: #900b0b;
}

.payment_modal_input {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #FFC700;
    padding: 15px 10px;
    outline: none;
}

.payment_modal_pay {
    width: 100%;
    text-align: center;
    cursor: pointer;
}

.confirm_product_buy {
    color: #fff;
    border-radius: 10px;
    background: #FFC700;
    width: 100%;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
}

.cancel_product_buy {
    width: 100%;
    padding: 15px 20px;
    color: #333;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #FFC700;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
}

.check_modal_title {
    color: #333;
    font-size: 29.446px;
    font-style: normal;
    font-weight: 600;
}

.check_modal_desc {
    color: #333;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    margin-top: 10px;
}

.check_modal_load {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    font-size: 38px;
    gap: 3px;
    clip-path: inset(0 11ch 0 0);
    animation: loading 1s steps(4) infinite;
    color: #E4E4E4;
}

@keyframes loading {
    to {
      clip-path: inset(0 -1ch 0 0)
    }
  }

.data_modal_input {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 7px;
    background: #F5F5F5;
    padding: 5px 10px;
    margin-bottom: 10px;
}


.data_modal_input_name {
    color: #CACACA;
    font-size: 8.834px;
    font-weight: 500;
}

.data_modal_input_data {
    text-align: start;
}

.data_modal_input_login, .data_modal_input_password {
    color: #333;
    font-size: 14.723px;
    font-style: normal;
    font-weight: 500;
    max-width: 340px;
    overflow: hidden;
}

.data_modal_copy {
    width: 42px;
    cursor: pointer;
    border-radius: 7.361px;
    background: #FFC700;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.data_modal_thinks {
    margin-top: 20px;
    color: #333;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
}

.data_modal_myprod {
    margin-top: 12px;
    color: #333;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
}

.support_description {
    padding-left: 10px;
    border-left: 3px solid #ffc608;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    margin-top: 10px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.widget_bottom {
    position: fixed;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    bottom: 10%;
}

.widget_vk .widget_icon {
    border-radius: 23px;
    background: #FFC700;
    padding: 15px;
    font-size: 19px;
}

.widget {
    display: flex;
    gap: 5px;
    align-items: center;
    text-align: center;
    color: #fff;
    border-radius: 25px;
    padding-right: 10px;
}

.widget_vk {
    background: #B39012;
}

.widget_tg {
    background: #545960;
}

.widget_tg .widget_icon {
    border-radius: 23px;
    background: #00A7DC;
    padding: 15px;
    font-size: 19px;
}

.instruction_card {
    margin-top: 50px;
}

.instruction_title {
    text-align: left;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.instruction_text {
    color: #333;
    font-size: 12px;
    font-weight: 500;
    text-align: left;
}

.payment_modal_methods {
    justify-content: center;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.payment_modal_method {
    padding: 15px;
    border: 2px solid #C5C5C5;
    border-radius: 50px;
    cursor: pointer;
}

.payment_modal_method.active {
    border-color: #FFC700;
}

.payment_modal_method img {
    width: 50px;
    height: 48px;
}

.profile_youtube {
    width: 100%;
    max-width: 450px;
    padding: 15px 25px;
    background: #FFF;
    border-radius: 16px;
}

.raffle_block {
    position: relative;
    padding: 30px;
    width: 100%;
    height: 100%;
    margin-top: 50px;
    background: radial-gradient(63.67% 118.49% at 50% -18.49%, rgba(25, 19, 28, 0.9) 29.85%, #19131C 100%), url('/assets/images/raffle-bg.jfif');
    border-radius: 18px;
}

.raffle_wrapper {
    width: 100%;
}

.raffle_title {
    font-size: 30px;
    font-weight: 600;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 25px;
}

.raffle_progress {
    width: 100%;
    max-width: 580px;
    height: 10px;
    border-radius: 1000px;
    background-color: #362A3C;
    position: relative;
    margin: 0 auto;
    margin-bottom: 15px;
}

.fill_progress {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 1000px;
    background-color: #FFC608;
}

.raffle_rules {
    width: 100%;
    max-width: 290px;
    padding: 8px 16px;
    text-align: center;
    border: 1px solid #382C3E;
    border-radius: 6px;
    margin: 0 auto;
    color: #FFF;
    margin-bottom: 25px;
}

.raffle_rules_accounts {
    padding: 4px 8px;
    background: #27202B;
    border-radius: 4px;
    margin: 0 6px;
}

.raffle_wrapper .btn {
    display: flex;
    width: 100%;
    max-width: 142px;
    margin: 0 auto;
    cursor: pointer;
}

.raffle_wrapper .btn:disabled {
    opacity: 0.5;
    cursor: default;
}

.raffle_info {
    position: absolute;
    left: 30px;
    bottom: 30px;
    cursor: pointer;
}

@media screen and (max-width: 480px) {
    [class*="__container"] {
        padding-left: 20px;
        padding-right: 20px;
    }
    .profile_accounts {
        grid-template-columns: 1fr 1fr;
    }
    .profile_card_content {
        padding: 10px 15px;
    }
    .profile_card_button {
        padding: 16px 10px 17px 10px;
    }
    .auth_modal_wrapper, .payment_modal_wrapper, .confirm_modal_wrapper, .check_modal_wrapper, .data_modal_wrapper {
        padding: 10px;
        top: 45%;
    }
    .header_link_right span {
        display: none;
    }
    .header_right_element {
        gap: 7px;
    }
    .banner_wrapper {
        justify-content: center;
    }
    .banner_left_text {
        text-align: center;
        font-size: 10px;
    }
    .why_title {
        font-size: 20px;
        border-bottom: 0;
    }
    .why_cards {
        flex-direction: column;
        gap: 10px;
        margin-top: 0px;
    }
    .why_card {
        width: 100%;
    }
    .blocks_accounts {
        display: flex;
        flex-direction: column;
    }
    .card_account img {
        left: 165px;
        width: 205px;
    }
    .block_accounts {
        margin-bottom: 0;
    }
    .advantages_blocks {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .footer_blocks {
        flex-direction: column;
        gap: 25px;
    }
    .footer_block {
        width: 100%;
    }
    .footer_advantages {
        margin-bottom: 20px;
        padding-bottom: 25px;
    }
    .guarantees_card_title {
        font-size: 14px;
    }
    .guarantees_text_description {
        font-size: 10px;
        margin-top: 10px;
    }
    .guarantees_card {
        margin-bottom: 20px;
    }
    .title_page {
        margin-bottom: 20px;
        margin-top: 5px;
    }
    .scammers_wrapper {
        padding: 30px 15px;
    }
    .reviews_wrapper {
        flex-direction: column;
        gap: 20px;
    }
    .reviews_new_block {
        width: 100%;
    }
    .reviews_block {
        width: 100%;
    }
    .product_overview_wrapper {
        flex-direction: column;
    }
    .product_overview, .product_instruction {
        width: 100%;
    }
    .product_overview_title {
        font-size: 20px;
    }
    .product_image img {
        width: 180px;
        height: 100px;
    }
    .product_title {
        font-size: 13px;
        line-height: 14.223px;
    }
    .product_description {
        font-size: 8px;
        line-height: 11.369px;
    }
    .product_price {
        font-size: 17px;
        line-height: 16.909px;
    }
    .product_buy {
        width: 100%;
        margin-top: 10px;
        padding: 8px 20px;
        font-size: 9px;
        line-height: 11.903px;
    }
    .product_content {
        gap: 20px;
        height: 250px;
    }
    .product_image img {
        width: 100%;
    }
    .header_product {
        height: 250px;
    }
    .card_page {
        padding: 20px 10px;
    }
    .support_wrapper {
        flex-direction: column;
    }
    .prefooter_hidden ul li {
        font-size: 14px;
        list-style-type: disc;
    }
}

@media screen and (max-width: 420px) {
    .advantages_blocks {
        grid-template-columns: 1fr;
    }
    .advantages_block {
        width: 100%;
    }
}
