@import url('https://fonts.googleapis.com/css2?family=Play:wght@400;700&display=swap');

.menu .nav a {
    color: var(--default-text-color);
    margin-left: 15px;
    outline: none;
}

.shop_label_list_server,
.shop_label_name_server {
    margin-right: 20px;
}

.shop_table.shop_table_add_card,
.shop_table.shop_table_edit_card {
    max-width: 637px;
    border-radius: 12px;
}


.wrapper_server_accept {
    max-width: 750px;
}
.servers_accept {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.server_accept p{
    font-size: 20px;
}
.server_accept:hover {
    border: 1px solid var(--span-color);
}
.server_accept {
    padding: 0px 50px;
    margin: 10px 15px;
    cursor: pointer;
    border-radius: 10px;
    background: rgba(0,0,0,.4);
    transition: .3s all;
    border: 1px solid white;
}
.server_accept_title {
    text-transform: uppercase;
    text-align: center;
    font-size: 20px;
    margin-bottom: 30px;
}
.wrapper_server_accept {
    position: fixed;
    z-index: 50000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.shop_table_add_card .shop_body_table,
.shop_table_edit_card .shop_body_table {
    padding: 10px;
    display: flex;
    flex-direction: column;
}

.shop_wrapper_card_server {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.shop_wrapper_name_card {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    justify-content: space-between;
}

#description_card,
#description_edit_card {
    width: 100%;
    min-height: 80px;
    resize: vertical;
    background-color: var(--input-form);
    border-radius: 6px;
    padding: 10px;
    color: var(--span-color);
}

#price_card,
#price_edit_card {
    margin-right: 61px;
}

.shop_wrapper_name_card label[for="group_card"],
.shop_wrapper_name_card label[for="group_edit_card"] {
    margin-right: 13px;
}

.shop_list_servers {
    margin-right: 20px;
    margin-bottom: 5px;
}

.i-privilage {
    margin-bottom: 10px;
}

#notes {
    z-index: 30002 !important;
}

.shop_table_add_card .shop_wrapper_table_button,
.shop_table_edit_card .shop_wrapper_table_button,
.shop_table_add_server .shop_wrapper_table_button {
    margin: 10px 0 0 0;
    padding: 2px;
}

.shop_button_cancel {
    display: flex;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: .6s all;
    outline: 2px solid var(--red-color);
    color: var(--red-color);
    width: 100%;
    justify-content: center;
}

.shop_button_cancel:hover {
    background-color: var(--red-color);
    color: var(--default-text-color);
}

.shop_list_servers {
    cursor: pointer;
}

.shop_list_servers {
    display: block;
}

#shop_name_server,
.shop_list_servers {
    padding: 11px 12px;
    border-radius: 8px;
    border: 1px solid var(--button-color);
    color: var(--span-color);
    font-weight: 700;
    text-transform: uppercase;
    background-color: var(--button-color);
}

.shop_button_add_server {
    padding: 10px 20px;
    display: flex;
    background: transparent;
    outline: 2px solid var(--span-color);
    color: var(--span-color);
    border-radius: 8px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
    width: 100%;
    cursor: pointer;
    transition: .3s;
    justify-content: center;
}

.shop_button_add_server:hover {
    transition: .3s;
    background-color: var(--span-color);
    color: var(--grey-color);
}

.shop_table_add_server .shop_body_table {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.shop_label_name_server {
    margin-top: 10px;
    margin-bottom: 5px;
    display: block;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    color: var(--custom-text-color);
}

.shop_label_list_server {
    display: block;
    margin-top: 20px;
    margin-bottom: 5px;
}

.shop_table_add_server {
    max-width: 450px;
}

.shop_have_privilage {
    margin-top: 30px;
    margin-bottom: 35px;
    font-size: 16px;
}

.shop_accept_question {
    margin-bottom: 10px;
    font-size: 15px;
}

.shop_table_accept .shop_body_table {
    text-align: center;
}

.shop_table_yes:hover {
    opacity: .7;
}

.shop_table_yes {
    width: 50%;
    display: flex;
    height: 50px;
    align-items: center;
    justify-content: center;
    background: var(--span-color);
    cursor: pointer;
    transition: .6s all;
}

.shop_table_no {
    width: 50%;
    display: flex;
    height: 50px;
    background: rgba(0, 0, 0, .1);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .6s all;
}

.shop_table_no:hover {
    opacity: .7;
}

.shop_wrapper_table_button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.shop_black_screen {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 30000;
    backdrop-filter: blur(4px);
    background: rgb(0 0 0 / 65%);
}

.shop_table {
    max-width: 500px;
    width: 100%;
    border-radius: 12px;
    background: var(--card-color);
    margin: auto;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 30001;
    box-shadow: 0px 0px 20px 20px rgb(0 0 0 / 16%);
}

.shop_header_table {
    width: 100%;
    height: 50px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 10px 10px 0 0;
    background: var(--span-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.shop_name {
    text-transform: uppercase;
}

.shop_row_add_server {
    display: flex !important;
}

.shop_add_card .shop_card_new {
    background: var(--bottom-line-table);
    border-radius: 12px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-bottom: 0;
    transition: .3s;
    cursor: pointer;
    gap: 10px;
}

.add_new_text {
    display: flex;
    background-color: var(--bottom-line-table);
    padding: 14px;
    justify-content: center;
    width: 100%;
    border-radius: 4px;
    transition: .3s;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    height: 100%;
}

.shop_card_new:hover svg {
    fill: var(--green-color);
    transition: .3s;
}

.shop_card_new:hover .add_new_text {
    color: var(--green-color);
    transition: .3s;
}

.add_new_icon {
    display: flex;
    background-color: var(--card-color);
    padding: 14px;
    border-radius: 4px;
    transition: .3s;
}

.add_new_icon svg {
    width: 14px;
    height: auto;
    fill: var(--custom-text-color);
    transition: .3s;
}

.shop_delete_card,
.shop_change_card {
    position: absolute;
    bottom: 0;
    width: 50%;
    height: 35px;
    background: var(--modal-bg);
    color: var(--custom-text-color);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .6s all;
    cursor: pointer;
}

.shop_change_card:hover {
    color: var(--span-color);
    background-color: var(--button-color);
}

.shop_delete_card:hover {
    color: var(--red-color);
    background-color: var(--button-color);
}

.shop_delete_card {
    right: 0;
}

.shop_change_card {
    left: 0;
}

.shop_row_cards {
    display: flex;
    gap: 15px;
    justify-content: center;
    padding: 0 15px;
}

.shop_card_wrapper {
    margin-bottom: 15px;
}

.shop_card_wrapper .shop_card {
    height: 100%;
}

.shop_delete_server {
    transition: .3s;
}

#delete-server {
    display: flex;
    width: 22px;
    height: 22px;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--bottom-line-table);
    padding-right: 10px;
}

#delete-server:hover svg {
    fill: var(--red-color);
    opacity: 1;
    transition: .3s;
}

.shop_delete_server svg {
    display: flex;
    width: 16px;
    height: auto;
    fill: var(--custom-text-color);
    transition: .3s;
    opacity: .1;
}

.shop_add_server {
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop_add_server svg {
    width: 16px;
    height: auto;
    fill: var(--green-color);
}

.shop_add_server:hover {
    background: var(--button-color-hover);
    color: var(--span-color);
}

.shop_server {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    font-weight: 700 !important;
    gap: 10px;
}

.shop_row_addition {
    margin-left: 0;
}

.shop_servers_info {
    text-align: center;
    padding: 10px 0;
    background: rgba(0, 0, 0, .1);
}

.shop_servers_column {
    padding-left: 0;
    border-right: 1px solid rgba(128, 128, 128, .3);
    margin-top: 0;
}

.shop_row_main {
    margin-top: 10px;
}

.shop_card_main {
    width: 100%;
    margin-left: 5px;
    margin-right: 5px;
}

.shop_card {
    background: var(--bottom-line-table);
    border-radius: 12px;
    position: relative;
    transition: .3s;
}

.shop_card_title {
    margin: 10px;
    display: flex;
    font-size: 16px;
    font-weight: 900;
    padding: 10px 0;
    border-radius: 4px;
    color: var(--span-color);
    background-color: var(--button-color);
    justify-content: center;
    font-family: Play;
    white-space: nowrap;
}

.shop_card_description {
    padding: 0 5px 0 0;
    color: var(--default-text-color);
    font-size: 11px;
    font-weight: 600;
    line-height: 23px;
    height: 150px;
    overflow: hidden;
    overflow-y: scroll;
    margin: 5px 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: relative;
}

.stroke_dc {
    position: relative;
    background-color: var(--input-form);
    padding: 10px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
    text-align: center;
}

.stroke_dc:hover {
    background-color: var(--button-color);
    color: var(--span-color);
    transition: .3s;
}

li.desc_square {
    list-style: disc;
}

.shop_footer_cart {
    display: flex;
    flex-direction: row;
}

.shop_block_price {
    display: flex;
    flex-direction: column;
    background-color: var(--modal-bg);
    margin: 10px;
    padding: 5px;
    border-radius: 8px;
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 50px;
}

.add_to_cart_text {
    position: absolute;
    display: flex;
    font-size: 16px;
    font-weight: 800;
    color: var(--span-color);
    justify-content: center;
    align-items: center;
    transition: .3s;
    left: 0;
    right: 0;
    top: 50%;
    bottom: 50%;
}

.shop_card_wrapper_footer {
    display: flex;
    background-color: var(--span-color-low);
    margin: 10px 10px 10px 0;
    padding: 5px;
    border-radius: 8px;
    height: auto;
    cursor: pointer;
    justify-content: center;
    transition: .3s;
}

.shop_card_wrapper_footer:hover {
    background-color: var(--span-color);
    transition: .3s;
}

.shop_card_wrapper_footer:hover svg {
    fill: var(--button-color);
    transition: .3s;
}

.shop_card_price {
    color: var(--money);
    font-weight: 800;
    font-size: 20px;
    display: flex;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: .3s;
}

.shop_card_buy {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
}

.shop_card_buy svg {
    width: 18px;
    height: auto;
    fill: var(--span-color);
    transition: .3s;
}

.shop_card_image img {
    width: 100%;
    border-radius: 12px 12px 0 0;
    -webkit-user-drag: none;
    background-size: cover;
}

.shop_card_image {
    position: relative;
    overflow: hidden;
}

.menu .nav li {
    display: block;
    width: 100%;
    padding: 10px;
    cursor: pointer;
    font-weight: var(--font-weight-3);
    font-size: 12px;
}

.menu .nav li:hover {
    background: #262626;
}

.view-shop {
    display: none;
    color: var(--custom-text-color);
    font-size: 13px;
    font-weight: 600;
}

.i-privilage {
    margin-top: 5px;
    border-radius: 6px;
    padding: 5px 10px;
    background: var(--bottom-line-table);
    color: var(--span-color);
    border: 1px solid var(--border-bottom-line);
    font-weight: 400;
}

.product_wrapper_shop {
    padding: 5px 0px 10px 5px !important;
    margin: 0 !important;
}

.fix_block_shop {
    margin-bottom: 130px;
}

.product_price_sum p {
    font-size: 20px;
    font-weight: 800;
    color: var(--money);
}

.basket_empty {
    text-align: center;
    margin-top: 30px;
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 700;
    opacity: .5;
    user-select: none;
    color: var(--custom-text-color);
}

.sctrike_price {
    text-decoration: line-through;
    color: var(--default-text-color);
    opacity: .1;
    display: inline;
    margin-right: 10px;
}

.wrapper_product_button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.product_button {
    background: transparent;
    color: var(--span-color);
    outline: 2px solid var(--span-color);
    border-radius: 6px;
    padding: 10px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    transition: .3s;
    width: 100%;
    text-align: center;
}

.product_button:hover {
    color: var(--grey-color);
    background-color: var(--span-color);
}

.promo_basket {
    background: var(--bg-table-color);
    border-radius: 8px;
    border: 1px solid var(--border-bottom-line);
    color: var(--custom-text-color);
    padding: 1px 7px;
    font-size: 11px;
    font-weight: 600;
    height: 34px;
    margin: 9px 0;
    width: 333px;
    margin-left: 20px;
}

.gift_basket {
    background: var(--bg-table-color);
    border-radius: 8px;
    border: 1px solid var(--border-bottom-line);
    color: var(--custom-text-color);
    padding: 1px 7px;
    font-size: 11px;
    font-weight: 600;
    height: 34px;
    margin: 6px 0 0 0;
    width: 298px;
}

.cashbox {
    width: 110px;
    margin: 10px 9px;
    display: inline-block;
}

.cashbox img {
    width: 110px;
}

.product_price_sum {
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 20px;
    gap: 10px;
    color: var(--custom-text-color);
}

.product_delete:hover svg {
    fill: var(--red-color);
    transition: .3s;
}

.product_delete:hover {
    background-color: var(--button-color-hover);
    transition: .3s;
}

.product_delete svg {
    width: 12px;
    height: auto;
    fill: var(--custom-text-color);
    cursor: pointer;
    transition: .3s;
}

.product_delete {
    height: 35px;
    width: 35px;
    display: flex;
    background-color: var(--button-color);
    border-radius: 6px;
    justify-content: center;
    cursor: pointer;
    transition: .3s;
}

.product_price {
    font-size: 15px;
    color: var(--money);
    font-weight: 800;
}

.product_count {
    padding: 0 9px;
    height: 23px;
}

.product_minus,
.product_count,
.product_plus {
    border: 1px solid var(--checkbox-bg-color);
    border-radius: 4px;
    margin: 0 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--custom-text-color);
    font-weight: 500;
    font-size: 11px;
}

.product_plus,
.product_minus {
    cursor: pointer;
    width: 23px;
    height: 23px;
    transition: .5s;
}

.product_plus:hover,
.product_minus:hover {
    color: var(--bg-color);
    background-color: var(--custom-text-color);
    /* border: 1px solid rgba(255, 255, 255, .7); */
}

.wrapper_produt_count {
    display: flex;
    margin-right: -9px;
}

.product {
    padding: 10px 40px 5px 10px;
    position: relative;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: space-between;
}

.product_name {
    font-size: 9px;
    width: 125px;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 700;
    color: var(--custom-text-color);
    margin-bottom: 0px;
    margin-left: -4px;
    margin-right: -11px;
}
.basket_header {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    background-color: var(--card-color);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    color: var(--span-color);
    border-radius: 12px 12px 0 0;
}
.basket_header_pc {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    background-color: var(--card-color);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    color: var(--span-color);
    border-radius: 12px 12px 0 0;
}
.basket_header_mobile {
    display: none;
}
.basket_header_pc svg {
	weight: 24px;
	height: 24px;
    fill: var(--money);
    transition: .3s;
}

@media (max-width:768px) {
	.basket_header_pc {
		display: none;
	}
	.basket_header_mobile {
		display: flex;
		align-items: center;
		justify-content: center;
		height: 50px;
		background-color: var(--card-color);
		text-transform: uppercase;
		font-size: 14px;
		font-weight: 700;
		color: var(--span-color);
		border-radius: 12px 12px 0 0;
	}
	.basket_header_mobile svg {
		weight: 24px;
		height: 24px;
		fill: var(--money);
		transition: .3s;
}
    .basket {
        width: 250px;
        height: 410px;
        background: var(--menu-bg-color);
        border-radius: 12px;
        position: fixed;
        left: -400px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1000;
        box-shadow: 0px 0px 20px 20px rgb(0 0 0 / 16%);
    }

    .basket_body {
        width: 100%;
        position: absolute;
        top: 50px;
        left: 0;
        overflow: auto;
        display: flex;
        flex-direction: column;
    }

    .product_name {
        font-size: 12px;
        width: 100px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-weight: 700;
        color: var(--custom-text-color);
        transition: .3s;
    }

    .product {
        margin: 5px 0;
        padding: 10px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-radius: 4px;
        user-select: none;
        -webkit-user-drag: none;
        background-color: var(--bottom-line-table);
        transition: .3s;
    }

    .basket_empty {
        text-align: center;
        margin-top: 20px;
        font-size: 20px;
        text-transform: uppercase;
        font-weight: 700;
        opacity: .5;
        user-select: none;
        color: var(--custom-text-color);
    }
}

@media (min-width:769px) {
    .basket {
        width: 400px;
        height: 500px;
        background: var(--menu-bg-color);
        border-radius: 12px;
        position: fixed;
        left: -400px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1000;
        box-shadow: 0px 0px 20px 20px rgb(0 0 0 / 16%);
    }

    .basket_body {
        height: 500px;
        width: 100%;
        position: absolute;
        top: 50px;
        left: 0;
        overflow: auto;
        display: flex;
        flex-direction: column;
    }

    .product_name {
        font-size: 12px;
        width: 221px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-weight: 700;
        color: var(--custom-text-color);
        transition: .3s;
    }

    .product {
        margin: 5px 0;
        padding: 20px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-radius: 4px;
        user-select: none;
        -webkit-user-drag: none;
        background-color: var(--bottom-line-table);
        transition: .3s;
    }

    .basket_empty {
        text-align: center;
        margin-top: 60px;
        font-size: 30px;
        text-transform: uppercase;
        font-weight: 700;
        opacity: .5;
        user-select: none;
        color: var(--custom-text-color);
    }
}


html {
    overflow-X: hidden;
}

@media (max-width:768px) {
    .button_basket {
        margin: 10px 5px 0 5px;
        width: 100%;
        height: max-content;
        background: var(--card-color);
        border-radius: 8px;
        display: flex;
        justify-content: center;
        z-index: 1;
        cursor: pointer;
        transition: .3s;
        gap: 10px;
        padding: 10px 15px;
        position: relative;
        overflow: hidden;
        flex-direction: column;
        align-items: center;
    }

    .button_to_buy {
        display: flex;
        justify-content: center;
        width: 100%;
        height: auto;
        margin-left: auto;
        padding: 10px;
        margin-right: auto;
        border-radius: 6px;
        transition: .3s;
        z-index: 1;
        gap: 10px;
        text-transform: uppercase;
        font-size: 12px;
        font-weight: 700;
        color: var(--span-color);
        background-color: var(--button-color);
    }

    .left_content {
        display: flex;
        gap: 10px;
        align-items: center;
        flex-direction: row;
    }

    .left_content_text {
        font-size: 14px;
        text-transform: uppercase;
        font-weight: 700;
        color: var(--span-color);
    }

    .right_content {
        padding: 0 10px;
        width: 100%;
        height: 35px;
        color: var(--red-color);
        background-color: var(--button-color);
        font-weight: 700;
        text-transform: uppercase;
        font-size: 12px;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        user-select: none;
    }
}

@media (min-width:769px) {
    .button_basket {
        margin: 10px 5px 0 5px;
        width: 100%;
        height: max-content;
        background: var(--card-color);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        z-index: 1;
        cursor: pointer;
        transition: .3s;
        gap: 10px;
        padding: 10px 15px;
        position: relative;
        overflow: hidden;
    }

    .button_to_buy {
        position: absolute;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        width: max-content;
        height: auto;
        margin-left: auto;
        padding: 10px;
        margin-right: auto;
        border-radius: 6px;
        transition: .3s;
        z-index: 1;
        gap: 10px;
        text-transform: uppercase;
        font-size: 12px;
        font-weight: 700;
        color: var(--span-color);
        background-color: var(--button-color);
    }

    .left_content {
        display: flex;
        gap: 10px;
        align-items: center;
        flex-direction: row;
    }

    .left_content_text {
        font-size: 14px;
        text-transform: uppercase;
        font-weight: 700;
        color: var(--span-color);
    }

    .right_content {
        padding: 0 10px;
        width: max-content;
        height: 35px;
        color: var(--red-color);
        background-color: var(--button-color);
        font-weight: 700;
        text-transform: uppercase;
        font-size: 12px;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        user-select: none;
    }
}

.button_basket svg {
    width: 16px;
    height: auto;
    fill: var(--span-color);
    transition: .3s;
}

.button_basket:hover .button_to_buy {
    background-color: var(--button-color-hover);
    transition: .3s;
}

.circle_basket {
    width: 35px;
    height: 35px;
    color: var(--green-color);
    background-color: var(--button-color);
    font-weight: 600;
    font-size: 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}

.animate_basket::after {
    left: auto !important;
    right: -3px !important;
}

.shop_servers_wrap_area {
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
    background-color: var(--card-color);
    border-radius: 8px;
    padding: 10px;
    gap: 10px;
}

.shop_button_servers {
    color: var(--custom-text-color);
    padding: 10px 15px;
    transition: .3s;
    border-radius: 6px;
    background: var(--button-color);
    cursor: pointer;
    width: max-content;
    user-select: none;
    -webkit-user-drag: none;
}

.shop_button_servers:hover {
    color: var(--span-color);
    background: var(--button-color-hover);
    transition: .3s;
}

.shop_server_active {
    background: var(--button-color-hover) !important;
    color: var(--span-color);
    border: none !important;
    outline: none !important;
}

@media (max-width:768px) {
    .product_wrapper_cart {
        padding: 5px;
        overflow: hidden;
        overflow-y: scroll;
    }

    .sad_no_basket svg {
        width: 100px;
        height: auto;
        fill: var(--custom-text-color);
    }

    .add_empty {
        padding: 10px 15px;
        display: flex;
        justify-content: center;
        text-align: center;
        color: var(--custom-text-color);
        font-size: 13px;
        font-weight: 800;
        border: 1px dashed var(--custom-text-color);
        border-radius: 8px;
        position: absolute;
        bottom: 10px;
        left: 10px;
        right: 10px;
    }
}

@media (min-width:769px) {
    .product_wrapper_cart {
        padding: 5px;
        height: 160px;
        overflow: hidden;
        overflow-y: scroll;
    }

    .sad_no_basket svg {
        width: 150px;
        height: auto;
        fill: var(--custom-text-color);
    }

    .add_empty {
        padding: 10px 20px;
        display: flex;
        justify-content: center;
        text-align: center;
        color: var(--custom-text-color);
        font-size: 17px;
        font-weight: 800;
        border: 1px dashed var(--custom-text-color);
        border-radius: 8px;
        position: absolute;
        bottom: 60px;
        left: 10px;
        right: 10px;
    }
}

.product_wrapper_cart_none {
    display: none;
}

select#servers-sb {
    padding: 11px 12px;
    border-radius: 8px;
    border: 1px solid var(--button-color);
    color: var(--span-color);
    font-weight: 700;
    text-transform: uppercase;
    background-color: var(--button-color);
}

@media (max-width:1147px) {
    .shop_colmd3 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width:1148px) {
    .shop_colmd3 {
        -ms-flex: 0 0 24%;
        flex: 0 0 24%;
        max-width: 24%;
    }
}

.hide_shop {
    visibility: hidden;
    opacity: 0;
    transition: .3s;
    position: absolute;
    transform: translateY(40px);
}

.hide_shop_buy {
    visibility: hidden;
    opacity: 0;
    transition: .3s;
    transform: translateX(40px);
}

.price_abs_block {
    position: absolute;
    transition: .3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    left: 0;
    right: 0;
}

.price_text {
    font-size: 9px;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    color: var(--custom-text-color);
}

.sad_no_basket {
    display: flex;
    margin-top: 22px;
    justify-content: center;
    user-select: none;
}

.shop_add_promo .shop_body_table,
.shop_edit_promo .shop_body_table {
    padding: 10px;
}

.bg_content {
    display: block;
    padding: 10px;
    background: transparent;
    border-radius: 8px;
}

.input-form {
    position: relative;
    text-align: left;
    margin-top: 6px;
    margin-bottom: 6px;
    width: 100%;
}

.product:hover {
    background-color: var(--bg-table-color);
    transition: .3s;
    box-shadow: 0 5px 14px 0px rgb(14 14 14 / 60%);
}

.product:hover .product_name {
    color: var(--default-text-color);
    transition: .3s;
}


@media (max-width:578px) {
    .logs_hide {
        display: none !important;
    }

    .shop_logs_head {
        padding: 19px 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        background-color: var(--bottom-line-table);
        border-radius: 4px;
        margin: 5px;
        user-select: none;
        justify-items: center;
    }

    .shop_logs_head span {
        font-weight: 600;
        font-size: 11px;
        text-transform: uppercase;
        color: var(--custom-text-color);
        display: flex;
    }

    .shop_logs_head svg {
        display: none;
    }

    .shop_logs_body li {
        height: 60px;
        background: var(--bg-table-color);
        border-radius: 4px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        padding: 0;
        margin-right: 5px;
        margin-left: 6px;
        transition: .3s;
        position: relative;
        align-items: center;
        justify-items: center;
    }

    .shop_logs_body li:hover {
        transition: .3s;
        background-color: var(--button-color);
    }

    .shop_logs_body li:not(:last-child) {
        margin-bottom: 3px;
    }

    .shop_logs_body li span {
        font-size: 12px;
        font-weight: 500;
        display: flex;
        align-items: center;
        color: var(--default-text-color);
        z-index: 2;
        justify-content: center;
        white-space: nowrap;
        max-width: 149px;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .shop_logs_body a {
        color: var(--span-color);
        font-weight: 600;
        font-size: 12px;
    }

    .shop_logs_body a svg {
        width: 13px;
        height: auto;
        fill: var(--money);
        margin-bottom: 4px;
    }

    .shop_logs_scroll {
        margin-bottom: 5px;
    }
}

@media (min-width:579px) and (max-width:768px) {
    .logs_hide {
        display: none !important;
    }

    .shop_logs_head {
        padding: 19px 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        background-color: var(--bottom-line-table);
        border-radius: 4px;
        margin: 5px;
        user-select: none;
        justify-items: stretch;
    }

    .shop_logs_head span {
        font-weight: 600;
        font-size: 11px;
        text-transform: uppercase;
        color: var(--custom-text-color);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .shop_logs_head svg {
        display: none;
    }

    .shop_logs_body li {
        height: 60px;
        background: var(--bg-table-color);
        border-radius: 4px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        padding: 0;
        margin-right: 5px;
        margin-left: 6px;
        transition: .3s;
        position: relative;
        align-items: center;
        justify-items: stretch;
    }

    .shop_logs_body li:hover {
        transition: .3s;
        background-color: var(--button-color);
    }

    .shop_logs_body li:not(:last-child) {
        margin-bottom: 3px;
    }

    .shop_logs_body li span {
        font-size: 12px;
        font-weight: 500;
        display: flex;
        align-items: center;
        color: var(--default-text-color);
        justify-content: center;
    }

    .shop_logs_body a {
        color: var(--span-color);
        font-weight: 600;
        font-size: 13px;
    }

    .shop_logs_body a svg {
        width: 16px;
        fill: var(--money);
        margin-bottom: 4px;
    }

    .shop_logs_scroll {
        margin-bottom: 5px;
    }
}

@media (min-width:769px) {
    .logs_hide {
        display: block;
    }

    .shop_logs_head {
        padding: 19px 0;
        display: grid;
        grid-template-columns: repeat(8, 1fr);
        background-color: var(--bottom-line-table);
        border-radius: 4px;
        margin: 5px;
        user-select: none;
        justify-items: stretch;
    }

    .shop_logs_head span {
        font-weight: 600;
        font-size: 11px;
        text-transform: uppercase;
        color: var(--custom-text-color);
        display: flex;
        align-items: center;
        text-align: center;
        justify-content: center;
    }

    .shop_logs_head svg {
        width: 15px;
        height: 15px;
        fill: var(--custom-text-color);
        margin-left: 7px;
    }

    .shop_logs_body li {
        height: 60px;
        background: var(--bg-table-color);
        border-radius: 4px;
        display: grid;
        grid-template-columns: repeat(8, 1fr);
        padding: 0;
        margin-right: 5px;
        margin-left: 6px;
        transition: .3s;
        position: relative;
        align-items: center;
        justify-items: stretch;
    }

    .shop_logs_body li:hover {
        transition: .3s;
        background-color: var(--button-color);
    }

    .shop_logs_body li:not(:last-child) {
        margin-bottom: 3px;
    }

    .shop_logs_body li span {
        font-size: 12px;
        font-weight: 500;
        display: flex;
        align-items: center;
        color: var(--default-text-color);
        z-index: 2;
        justify-content: center;
    }

    .shop_logs_body a {
        color: var(--span-color);
        font-weight: 600;
        font-size: 13px;
    }

    .shop_logs_body a svg {
        width: 16px;
        height: auto;
        fill: var(--money);
        margin-bottom: 4px;
    }

    .shop_logs_scroll {
        margin-bottom: 5px;
    }
}

#discount {
    padding: 10px;
}

.wrapper_button_shop_promo {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
}

.button_shop_promo {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--button-color);
    cursor: pointer;
    border-radius: 8px;
    transition: .3s;
}

.button_shop_promo svg,
.button_shop_promo_delete svg {
    width: 14px;
    height: auto;
    fill: var(--default-text-color);
}

.button_shop_promo_delete {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--button-color);
    cursor: pointer;
    border-radius: 8px;
    transition: .3s;
}

.button_shop_promo_delete:hover svg {
    fill: var(--red-color);
    transition: .3s;
}

.button_shop_promo_delete:hover {
    background: var(--button-color-hover);
    transition: .3s;
}

.button_shop_promo:hover {
    background: var(--button-color-hover);
    transition: .3s;
}

.wrapper_shop_promo {
    width: 100%;
}

.block_shop_promo {
    background-color: var(--grey-color);
    border-radius: 12px;
    text-align: center;
    padding: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.options_promo {
    font-size: 12px;
    color: var(--custom-text-color);
    font-weight: 700;
    white-space: nowrap;
    transition: .3s;
    display: flex;
    height: 50px;
    padding: 0 15px;
    border-radius: 8px;
    background-color: var(--bg-table-color);
    align-items: center;
}

.block_shop_promo:hover .options_promo {
    color: var(--default-text-color);
    transition: .3s;
}

.row_shop_promo {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.shop_add_promo,
.shop_edit_promo {
    background: var(--card-color);
}

.shop_add_promo .shop_body_table,
.shop_edit_promo .shop_body_table {
    padding: 10px;
}

.wrapper_add_promo {
    padding: 10px;
}

.close_cart_slame {
    display: flex;
    position: absolute;
    right: 10px;
    align-items: center;
    width: 30px;
    height: 30px;
    justify-content: center;
    cursor: pointer;
    transition: .3s;
}

.close_cart_slame svg {
    width: 14px;
    height: auto;
    fill: var(--custom-text-color);
    transition: .3s;
}

.close_cart_slame:hover svg {
    fill: var(--red-color);
    transition: .3s;
}

.avatars_fix {
    border-radius: 50%;
    width: 20px;
    height: 20px;
}
.how_to_convert_steamid {
    display: flex;
    justify-content: center;
    flex-direction: row;
    background-color: var(--fon);
    color: var(--custom-text-color);
    margin: 11px 21px;
    padding: 10px 0;
    border-radius: 8px;
    cursor: pointer;
    transition: .3s;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 12px;
    align-items: center
}

.how_to_convert_steamid:hover {
    filter: brightness(105%);
    transition: .3s
}

.checkbox {
    display: flex;
    cursor: pointer;
    flex-direction: row;
    align-items: center;
    margin-top: 5px
}

.checkbox:hover .checkbox__check {
    background: rgb(96 128 255/12%)
}

.checkbox__input {
    width: 0;
    height: 0;
    opacity: 0
}

.checkbox__input:checked+.checkbox__check {
    background: #6080ff;
    stroke-dashoffset: 0
}

.checkbox__check {
    margin: 10px 10px 4px 20px;
    padding: 1px;
    border: 1px solid #6080ff;
    background: 0 0;
    stroke: #f9f9f9;
    stroke-dasharray: 25;
    stroke-dashoffset: 25;
    stroke-linecap: round;
    stroke-width: .2rem;
    border-radius: 4px;
    fill: none;
    transition: background .4s,stroke-dashoffset .6s
}
.info-bonus {
    border-radius: 10px;
    width: 100%;
    margin: 0 auto;
    margin-top: 15px;
    padding: 10px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    margin-bottom: 20px;
    background: url(../img/bannerweb33.png);
    background-position: center;
    background-repeat: repeat;
  }
  .info-bonus a {
    margin-left: 5px;
    color: #f0b358; /* Цвет ссылки */
    font-weight: bold; /* Толщина шрифта, чтобы было заметнее */
    display: inline-flex; /* Используем inline-flex для выравнивания иконки справа от текста */
    align-items: center; /* Выравнивание иконки по вертикали */
  }
  #timer {
      /* font-weight: bold; */
      background: var(--secondary-color);
      color: var(--primary-color);
      padding: var(--base-padding);
      width: 140px;
      text-align: center;
      border: 1px dashed var(--secondary-color);
      margin-right: 2.5rem;
      line-height: 1.3;
  }
  @media (max-width: 768.9px) {
    .info-bonus {
      font-size: 13px;
      margin-left: 5px;
      margin-right: 5px;
    }
  
    .info-bonus a {
      margin-left: 0px;
    }
  
    .abdabsasbddab {
      width: 40px;
      height: 40px;
    }
  
    .abdabsasbdbdab {
      width: 0px;
      height: 0px;
    }
  
    #timer {
      margin-right: 10px;
        text-align: right;
        white-space: nowrap;
    }
  }
