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

body {
    font-family: 'Inter', sans-serif;
    background: #F8F9FA;
    color: #191919;
    font-size: 16px;
    line-height: 24px;
    min-width: 360px;
    margin: 0 auto;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

ol {
    margin-left: 19px;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color .3s;
}

a:hover {
    text-decoration: underline;
}

label .btn {
    pointer-events: auto;
}

label {
    pointer-events: none;
}

label * {
    pointer-events: auto;
}

.text-uppercase {
    text-transform: uppercase;
}

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

.text-success {
    color: #80DA60;
}

.wrapper {
    /* overflow: hidden; */
    padding-top: 76px;
}

.container {
    max-width: 1316px;
    margin: 0 auto;
    padding: 0 10px;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.form-inner .row {
    gap: 20px;
}

.form-inner.loading {
    opacity: .8;
    pointer-events: none;
}

.row .col {
    flex: 1 1 calc(50% - 10px);
    min-width: 200px;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-center {
    justify-content: center;
}

.text-gray {
    color: #999;
}

.btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 24px;
    height: 44px;
    border: 0;
    text-align: center;
    transition: all .3s;
    text-decoration: none !important;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 16px;
    cursor: pointer;
    flex-shrink: 0;
    white-space: nowrap;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn:disabled:hover {
    opacity: 0.65;
}

.btn span {
    transition: opacity .3s;
}

.btn .spinner {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -0.5em 0 0 -0.5em;
}

.btn.loading {
    opacity: 0.8;
    pointer-events: none;
}

.btn.loading span {
    visibility: hidden;
    opacity: 0;
}

.btn.loading .spinner {
    opacity: 1;
}

.btn.btn-lg {
    height: 52px;
    font-size: 20px;
}

.btn.btn-md {
    height: 40px;
}

.btn.btn-sm {
    height: 35px;
    padding: 0 20px;
}

.btn.btn-xs {
    font-size: 14px;
    font-weight: 500;
    height: 26px;
    padding: 0 9px;
}

.btn .fa-solid, .btn .fa-regular, .btn .fa-light, .btn .fa-thin, .btn .fa-brands {
    font-size: 20px;
    margin-right: 8px;
}

.btn.btn-lg .fa-solid, .btn.btn-lg .fa-regular, .btn.btn-lg .fa-light, .btn.btn-lg .fa-thin, .btn.btn-lg .fa-brands {
    font-size: 24px;
}

.btn.btn-xs .fa-solid, .btn.btn-xs .fa-regular, .btn.btn-xs .fa-light, .btn.btn-xs .fa-thin, .btn.btn-xs .fa-brands {
    font-size: 18px;
}

.btn.btn-primary {
    background: var(--primary);
}

.btn.btn-primary:hover {
    background: rgba(var(--primary-r), var(--primary-g), var(--primary-b), .85);
}

.btn.btn-youtube {
    background: #EE6352;
}

.btn.btn-youtube:hover {
    background: rgba(238, 99, 82, 0.85);
}

.btn.btn-telegram {
    background: #27A7E7;
}

.btn.btn-telegram:hover {
    background: rgba(39, 167, 231, 0.85);
}

.btn.btn-red {
    background: #F30D17;
}

.btn.btn-red:hover {
    background: #F64A51;
}

.btn.btn-gray {
    color: #191919;
    background: #F4F5F5;
}

.btn.btn-gray:hover {
    color: #fff;
    background: var(--primary);
}

.btn.btn-success {
    background: #80DA60;
}

.btn.btn-success:hover {
    background: #73dd4d;
}

.switcher {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.switcher.platform-switcher {
    gap: 20px;
}

.switcher .btn {
    padding: 0 20px;
}

.switcher .btn:last-child {
    margin-right: 0;
}

.switcher .btn.btn-primary {
    background: #F4F5F5;
    color: #191919;
}

.switcher .btn.btn-primary.active {
    background: var(--primary);
    color: #fff;
}

.switcher .btn.btn-primary:hover {
    background: rgba(var(--primary-r), var(--primary-g), var(--primary-b), .85);
    color: #fff;
}

.badge {
    display: flex;
    padding: 3px 10px;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 32px;
    white-space: nowrap;
}

.badge.badge-danger {
    background: #EE6352;
}

.badge.badge-success {
    background: #10C469;
}

.badge .fa-solid, .badge .fa-regular, .badge .fa-light, .badge .fa-thin, .badge .fa-brands {
    font-size: 18px;
    margin-right: 8px;
} 

.badge.badge-red {
    background: #F30D17;
}

.alert {
    font-size: 16px;
    line-height: 19px;
    font-weight: 500;
    padding: 20px;
    border-radius: 8px;
}

.alert.alert-warning {
    background: #FEF7E8;
}

.alert.alert-danger {
    background: rgb(255, 240, 240);
    color: rgb(100, 41, 41);
}

.alert.alert-success {
    background: #F2FBEF;
}

.alert.alert-info {
    background: #e5f1ff;
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.from-label {
    display: flex;
    align-items: center;
    color: #191919;
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.from-label .label-icon {
    font-size: 20px;
    margin-right: 8px;
}

.from-label .btn {
    margin-left: 8px;
}

.form-group .field {
    position: relative;
}

.form-group .field.loading {
    pointer-events: none;
}

.form-group .field.loading .form-control {
    opacity: .5;
}

.form-group .field.loading i:not(.spinner){
    opacity: .5;
}

.form-group .field.loading .btn {
    opacity: .5;
}

.form-group .field .spinner {
    top: 27px;
    width: 2em;
    height: 2em;
    border-width: 2px;
    margin: -1em 0 0 -1em;
}

.form-group .field .form-group-buttons {
    position: absolute;
    top: 15px;
    right: 18px;
}

.form-group .field-subtext {
    color: #44444A;
    font-size: 14px;
    line-height: 17px;
    font-weight: 500;
    margin-top: 30px;
}

.form-group.with-switcher .field-subtext {
    margin-top: 15px;
}

.form-button {
    display: flex;
    justify-content: center;
}

.form-button .btn {
    padding: 12px 24px; 
}

.checkout-wrapper .form-button .btn {
    width: 100%;
    height: 56px;
}

.checkout-wrapper .form-button {
    margin-top: 40px;
}

.form-group .form-control {
    width: 100%;
    padding: 0 18px 0 48px;
    border: 0;
    color: #868787;
    border-radius: 8px;
    background: #F4F5F5;
    height: 56px;
    font-size: 16px;
    font-weight: 500;
    transition: all .3s;
    border: 1px solid #F4F5F5;
}

.form-group .form-control.active {
    color: #191919;
}

.form-group.is-invalid .form-control.active, .form-group.is-invalid .form-control.active:hover {
    color: #F30D17;
}

.form-group .form-control.active:hover {
    color: #191919;
}

.form-group .form-control.active + i {
    color: #191919;
}

.form-group.is-invalid .form-control.active + i {
    color: #F30D17;
}

.form-group.is-invalid .form-control, .form-group.is-invalid:hover .form-control {
    border-color: #F30D17;
}

.form-group.is-valid .form-control, .form-group.is-valid:hover .form-control {
    border-color: #63C042;
}

.form-group.is-valid #promo {
    color: #63C042;
}

.form-group:hover .form-control {
    color: #838384;
    background: #EDEEEF;
    border-color: #EDEEEF;
}

.form-group.active .form-control {
    color: #191919;
}

.form-group .field-icon {
    position: absolute;
    top: 18px;
    left: 20px;
    font-size: 20px;
    color: #868787;
    transition: all .3s;
}

.form-group:hover .field-icon {
    color: #838384;
}

.form-group.is-invalid .field-icon, .form-group.is-invalid:hover .field-icon {
    color: #F30D17;
}

.form-group.is-valid .field-icon, .form-group.is-valid:hover .field-icon {
    color: #63C042;
}

.form-group.active .field-icon {
    color: #191919;
}

.form-group .validate-status {
    position: absolute;
    top: 60px;
    left: 0;
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    display: none;
    -webkit-animation: opacity .3s;
    animation: opacity .3s;
}

#get-steam-balance-form .form-group .validate-status {
    position: relative;
    top: 6px;
    align-items: start;
}

.form-group.is-valid .validate-status, .form-group.is-invalid .validate-status {
    align-items: center;
    display: flex;
}

.form-group.is-valid .validate-status {
    color: #63C042;
}

.form-group.is-invalid .validate-status {
    color: #F30D17;
}

.form-group .validate-status i {
    position: relative;
    top: -1px;
    font-size: 16px;
    margin-right: 8px;
}

.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* background: rgba(var(--primary-r), var(--primary-g), var(--primary-b), 0.03); */
    background: var(--header-bg);
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1);
    height: 76px;
    z-index: 1000;
}

.header-wrapper .row {
    flex-wrap: nowrap;
}

.header-nav {
    display: flex;
}

.left-header, .right-header {
    flex: 1;
    display: flex;
    flex-wrap: nowrap;
}

.right-header {
    justify-content: space-between;
    padding-left: 50px;
}

.shop-logo {
    display: flex;
    text-decoration: none !important;
    padding: 12px 0;
    flex-shrink: 0;
}

.shop-logo .logo {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    margin-right: 10px;
    border: 1px solid #fff;
}

.shop-logo .shop-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 2px;
    color: #191919;
}

.shop-logo .shop-domain {
    position: relative;
    display: flex;
    align-items: center;
    color: #44444A;
    font-size: 14px;
}

.shop-logo .shop-domain .fa-circle-check {
    font-size: 20px;
    margin-left: 5px;
    color: #80DA60;
}

.shop-logo .shop-domain-info {
    -webkit-animation: explode .2s;
    animation: explode .2s;
    background-color: #fff;
    border-radius: 4px;
    bottom: -36px;
    box-shadow: 0 10px 16px rgba(0, 0, 0, .175);
    display: none;
    padding: 4px 10px;
    position: absolute;
    z-index: 1000;
    font-size: 14px;
    white-space: nowrap;
}

.shop-logo .shop-domain:hover .shop-domain-info {
    display: block;
}

.shop-logo .shop-domain:hover .shop-domain-info .fa-lock {
    color: #80da60;
    margin-right: 8px;
}

.catalog-button-wrapper {
    position: relative;
    padding: 19px 0;
    /* margin-right: 98px; */
    flex-shrink: 0;
}

.catalog-button-wrapper .catalog-button {
    display: flex;
    align-items: center;
    border: 0;
    background: none;
    font-size: 14px;
    color: #44444A;
    text-align: left;
    cursor: pointer;
    transition: color .3s;
}

.catalog-button-wrapper .catalog-button:hover {
    color: var(--primary);
}

.catalog-button-wrapper .catalog-button .fa-cart-circle-plus {
    font-size: 38px;
    margin-right: 8px;
    color: #191919;
    transition: color .3s;
}

.catalog-button-wrapper .catalog-button:hover .fa-cart-circle-plus {
    color: var(--primary);
}

.catalog-button-wrapper .catalog-button strong {
    font-size: 16px;
    color: #191919;
    transition: color .3s;
}

.catalog-button-wrapper .catalog-button:hover strong {
    color: var(--primary);
}

.catalog-button-wrapper .catalog-dropdown {
    position: absolute;
    top: 76px;
    left: -15px;
    padding-top: 6px;
    display: none;
    -webkit-animation: explode .2s;
    animation: explode .2s;
    z-index: 20;
}

.catalog-button-wrapper:hover .catalog-dropdown {
    display: block;
}

.catalog-button-wrapper .catalog-dropdown ul {
    list-style: none;
    background: rgb(244 245 246);
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.catalog-button-wrapper .catalog-dropdown ul li:first-child a {
    border-radius: 8px 8px 0 0;
}

.catalog-button-wrapper .catalog-dropdown ul li:last-child a {
    border-radius: 0 0 8px 8px;
}

.catalog-button-wrapper .catalog-dropdown ul li a {
    display: flex;
    align-items: center;
    color: #191919;
    font-weight: 500;
    line-height: 19px;
    padding: 15px 25px;
    text-decoration: none;
    white-space: nowrap;
    transition: all .3s;
}

.catalog-button-wrapper .catalog-dropdown ul li:hover a {
    color: var(--primary);
}

.catalog-button-wrapper .catalog-dropdown ul li:hover a {
    background: rgba(var(--primary-r), var(--primary-g), var(--primary-b), .1);
}

.catalog-button-wrapper .catalog-dropdown ul li a .fa-solid, .catalog-button-wrapper .catalog-dropdown ul li a .fa-regular, .catalog-button-wrapper .catalog-dropdown ul li a .fa-light, .catalog-button-wrapper .catalog-dropdown ul li a .fa-thin, .catalog-button-wrapper .catalog-dropdown ul li a .fa-brands {
    font-size: 20px;
    margin-right: 8px;
}

.menu-wrapper {
    margin-right: 60px;
    padding: 26px 0;
    flex-shrink: 0;
}

.menu-wrapper .menu ul {
    list-style: none;
    display: flex;
}

.menu-wrapper .menu ul li {
    margin-right: 40px;
}

.menu-wrapper .menu ul li:last-child {
    margin-right: 0;
}

.menu-wrapper .menu ul li a {
    color: #191919;
    font-size: 16px;
    text-decoration: none;
    transition: opacity .3s;
}

.menu-wrapper .menu ul li:hover a {
    color: var(--primary);
}

.header-wrapper .user-account {
    padding: 16px 0;
}

.banners-wrapper {
    margin-top: 40px;
}

.banners-wrapper .row {
    gap: 20px;
}

.banners-wrapper .banner-item {
    background: var(--blocks-bg);
    width: calc(50% - 10px);
    height: 200px;
    border-radius: 8px;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1);
}

.banners-wrapper .banner-item .banner-item-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
    padding: 30px 20px;
}

.banners-wrapper .banner-item a {
    text-decoration: none;
}

.banners-wrapper .banner-item .banner-background {
    position: absolute;
    bottom: 0;
    right: 0;
    width: auto;
    height: 100%;
    transition: all 0.3s;
    opacity: .5;
}

.banners-wrapper .banner-item:hover .banner-background {
    transform: scale(1.05);
}

.banners-wrapper .banner-item .banner-inner {
    position: relative;
    z-index: 10;
}

.banners-wrapper .banner-item .banner-title {
    color: #191919;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.banners-wrapper .banner-item .banner-description {
    color: #191919;
    line-height: 19px;
}

.banners-wrapper .banner-item .banner-bottom {
    width: calc(100% - 40px);
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 30px;
    left: 20px;
    z-index: 10;
}

.banners-wrapper .banner-item .banner-bottom .btn {
    margin-left: auto;
}

.sale-wrapper {
    margin-top: 20px;
}

.sale-wrapper .sale-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #D9D9D9;
    padding: 30px 20px;
    border-radius: 8px;
}

.sale-wrapper .sale-inner .sale-title {
    font-size: 20px;
    font-weight: 600;
}

.sale-wrapper .sale-inner .sale-description {
    font-weight: 500;
    line-height: 19px;
    margin-top: 10px;
}

.sale-wrapper .sale-inner .btn {
    margin-left: 20px;
}

.catalog-wrapper {
    margin-top: 40px;
}

.catalog-wrapper.catalog-page {
    margin-bottom: 60px;
}

.catalog-wrapper .catalog-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.catalog-wrapper .catalog-inner {
    padding: 20px;
    border-radius: 8px;
    background: #fff;
}

.catalog-wrapper .catalog-nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-list ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
}

.nav-list ul li {
    flex-shrink: 0;
}

.nav-list ul li .nav-button {
    display: flex;
    align-items: center;
    color: rgba(25, 25, 25, 0.75);
    font-weight: 500;
    padding: 6px 5px;
    font-size: 16px;
    transition: all .3s;
    text-decoration: none;
    background: none;
    border: 0;
    border-bottom: 2px solid transparent;
    cursor: pointer;
}

.nav-list ul li:hover .nav-button, .nav-list ul li .nav-button.active {
    color: var(--primary);
}

.nav-list ul li .nav-button.active {
    border-color: var(--primary);
}

.nav-list ul li .nav-button .fa-solid, .nav-list ul li .nav-button .fa-regular, .nav-list ul li .nav-button .fa-light, .nav-list ul li .nav-button .fa-thin, .nav-list ul li .nav-button .fa-brands {
    margin-right: 8px;
    font-size: 20px;
}

.search-field-wrapper {
    position: relative;
}

.search-field-wrapper .search-field {
    position: relative;
}

.search-field-wrapper .search-field input {
    width: 340px;
    height: 41px;
    color: rgba(25, 25, 25, 0.75);
    font-size: 16px;
    font-weight: 500;
    padding: 0 42px 0 12px;
    background: #fff;
    border-radius: 16px;
    transition: color .3s, border-color .3s;
    border: 1px solid rgba(25, 25, 25, 0.75);
}

.search-field-wrapper .search-field:hover input {
    color: rgba(25, 25, 25, 1);
    border-color: rgba(25, 25, 25, 1);
}

.search-field-wrapper.active .search-field input {
    color: var(--primary);
    border-color: var(--primary);
    border-radius: 16px 16px 0 0;
}

.search-field-wrapper .search-field .search-icon {
    position: absolute;
    top: 8px;
    right: 12px;
    color: rgba(25, 25, 25, 0.75);
    font-size: 25px;
    transition: opacity .3s;
}

.search-field-wrapper .search-field .spinner {
    border-color: rgba(25, 25, 25, 0.75);
}

.search-field-wrapper .search-field:hover .search-icon {
    color: rgba(25, 25, 25, 1);
}

.search-field-wrapper.active .search-field .search-icon.fa-xmark {
    cursor: pointer;
}

.search-field-wrapper.active .search-field .search-icon {
    color: var(--primary);
}

.search-field-wrapper .search-dropdown {
    position: absolute;
    top: 41px;
    left: 0;
    width: 100%;
    border: 1px solid var(--primary);
    border-top: none;
    display: none;
    background: rgb(251 251 251);
    border-radius: 0 0 16px 16px;
    z-index: 20;
}

.search-field-wrapper .search-dropdown .search-item {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    text-decoration: none;
    color: #191919;
    transition: all .3s;
    border-bottom: 1px solid var(--primary);
}

.search-field-wrapper .search-dropdown .search-item:hover {
    color: var(--primary);
    background: rgba(var(--primary-r), var(--primary-g), var(--primary-b), .1);;
}

.search-field-wrapper .search-dropdown .search-item:last-child {
    border-bottom: 0;
    border: 0 0 16px 16px;
}

.search-field-wrapper .search-dropdown .search-item .image {
    line-height: 0;
}

.search-field-wrapper .search-dropdown .search-item .image img {
    width: 67px;
    height: 100px;
    border-radius: 8px;
}

.search-field-wrapper .search-dropdown .search-item .info {
    width: calc(100% - 91px);
    padding: 0 5px;
    text-align: center;
}

.search-field-wrapper .search-dropdown .search-item .title {
    line-height: 19px;
    font-weight: 600;
    margin-bottom: 10px;
}

.search-field-wrapper .search-dropdown .search-item .badge {
    display: inline-block;
    padding: 1.5px 8px;
}

.search-field-wrapper .search-dropdown .search-item .price {
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-field-wrapper .search-dropdown .search-item .price .old-price {
    font-size: 14px;
    font-weight: 600;
    text-decoration: line-through;
    margin-left: 10px;
} 

.search-field-wrapper .search-bottom {
    border-top: 1px solid var(--primary);
    padding: 12px;
    text-align: center;
}

.search-field-wrapper .search-bottom .buttons-wrapper {
    margin-top: 10px;
}

.catalog-items {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 30px 19.6px;
    justify-content: center;
    margin-top: 30px;
}

.catalog-items .spinner {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 7em;
    height: 7em;
    z-index: 50;
    border-width: 5px;
    border-color: #EE6352;
    margin: -3.5em 0 0 -3.5em;
}

.catalog-items.loading {
    pointer-events: none;
}

.catalog-items::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .5);
    display: none;
    animation: opacity .3s;
}

.catalog-items.loading::after {
    display: block;
}

.catalog-item {
    position: relative;
    width: 100%;
    aspect-ratio: 193 / 251;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
}

.catalog-item .item-background {
    position: relative;
    width: 100%;
    height: auto;
    z-index: 0;
    transition: all .2s ease-out;
    -o-object-fit: cover;
    object-fit: cover;
}

.catalog-item:hover .item-background {
    transform: scale(1.05);
}

.catalog-item .item-cover-shadow {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.catalog-item .catalog-item-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 10px 15px;
    z-index: 10;
}

.catalog-item .badge {
    padding: 1.5px 6px;
}

.catalog-item .discount {
    display: inline-block;
    position: absolute;
    top: 10px;
    right: 15px;
}

.catalog-item .catalog-item-cover {
    line-height: 0;
}

.catalog-item .catalog-item-bottom {
    position: absolute;
    left: 15px;
    bottom: 10px;
    width: calc(100% - 30px);
}

.catalog-item.no-price .catalog-item-bottom {
    bottom: 33px;
}

.catalog-item .catalog-item-title {
    color: #fff;
    line-height: 19px;
    font-weight: 700;
    height: 38px;
    overflow: hidden;
}

.catalog-item.no-price .catalog-item-title {
    display: flex;
    align-items: end;
}

.catalog-item .catalog-item-price {
    display: flex;
    align-items: center;
    margin-top: 5px; 
}

.catalog-item .catalog-item-price .price {
    padding: 1.5px 8px;
}

.catalog-item .catalog-item-price .old-price {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration-line: line-through;
    margin-left: 5px;
}

.buttons-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
    justify-content: center;
}

.catalog-wrapper .buttons-wrapper {
    margin-top: 30px;
}

.blogger-message-wrapper {
    margin: 50px 0;
    text-align: center;
}

.blogger-message-wrapper .shop-logo-image {
    line-height: 0;
}

.blogger-message-wrapper .shop-logo-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.blogger-message-wrapper .message-text {
    position: relative;
    padding: 10px 10px 10px 40px;
    max-width: 504px;
    margin: 20px auto 0;
    font-weight: 500;
    line-height: 19px;
    color: var(--primary);
    border: 1px solid var(--primary);
    background: var(--blocks-bg);
    border-radius: 8px;
}

.blogger-message-wrapper .buttons-wrapper {
    margin-top: 20px;
}

.blogger-message-wrapper .message-text::before {
    position: absolute;
    left: 14px;
    top: 50%;
    content: '\f130';
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    color: var(--primary);
    font-size: 20px;
    transform: translateY(-50%);
}

footer {
    display: flex;
    align-items: center;
    min-height: 260px;
    background: #191919;
    color: #fff;
    padding: 20px 0;
}

footer > .container > .row {
    justify-content: center;
    align-items: center;
}

footer .shop-logo {
    padding: 0;
    margin-bottom: 40px;
}

footer .shop-logo .logo {
    border: 0;
}

footer .shop-logo .shop-name {
    color: #fff;
}

footer .shop-logo .shop-domain {
    color: #C4C4C9;
}

footer a {
    color: #C4C4C9;
    font-weight: 600;
    text-decoration: none !important;
    transition: all .3s;
}

footer a:hover {
    color: #fff;
}

footer a .fa-solid, footer a .fa-regular, footer a .fa-light, footer a .fa-thin, footer a .fa-brands {
    font-size: 20px;
    margin-right: 8px;
}

footer .footer-center {
    display: flex;
    margin: 0 100px;
}

footer .stat-block {
    text-align: center;
    margin-right: 50px;
}

footer .stat-block:last-child {
    margin-right: 0;
}

footer .stat-block .stat-value {
    font-size: 24px;
    font-weight: 600;
    line-height: 29px;
}

footer .stat-block .stat-title {
    font-weight: 600;
    line-height: 19px;
    margin-top: 5px;
}

footer .footer-nav ul {
    list-style: none;
}

footer .footer-nav ul li {
    margin-bottom: 15px;
}

footer .footer-nav ul li:last-child {
    margin-bottom: 0;
}

.breadcrumbs-wrapper {
    margin: 40px 0 20px;
}

.breadcrumbs ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    color: #44444A;
}

.breadcrumbs ul li {
    position: relative;
    font-size: 14px;
    line-height: 17px;
    font-weight: 600;
    flex-shrink: 0;
}

.breadcrumbs ul li a {
    color: #44444A;
    text-decoration: none;
}

.breadcrumbs ul li:last-child, .breadcrumbs ul li a:hover {
    color: var(--primary);
}

.breadcrumbs ul li::after {
    content: '/';
    margin: 0 4px;
}

.breadcrumbs ul li:last-child::after {
    display: none;
}

.page-title {
    font-size: 24px;
    line-height: 29px;
    font-weight: 700;
    margin-top: 10px;
}

.page-wrapper .page {
    min-height: 600px;
    padding: 20px;
    border-radius: 8px;
    background: #fff;
    margin-bottom: 60px;
}

.page-inner {
    margin: 20px auto 0;
    max-width: 500px;
    text-align: center;
}

.text-page .page-inner {
    max-width: 100%;
    text-align: inherit;
}

.text-page .page-inner h2 {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 20px;
}

.text-page .page-inner p {
    margin: 0 0 16px 25px;
}

.auth-success .page-inner {
    width: 430px;
}

.page .page-icon {
    font-size: 50px;
    color: var(--primary);
    margin-bottom: 20px;
}

.page .page-subtitle {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.page .page-description {
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    margin-bottom: 30px;
}

.page.auth-success .page-description {
    font-weight: 400;
}

.auth-success .btn {
    min-width: 350px;
}

.profile-wrapper {
    background: #F4F5F5;
    padding: 20px 0;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
}

.profile-wrapper .user-balance {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    line-height: 22px;
}

.profile-wrapper .user-bonuses {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 18px;
    color: #F30D17; 
    margin-top: 20px;
}

.profile-wrapper .user-bonuses i {
    font-size: 20px;
    margin-right: 2px;
}

.profile-wrapper .user-balance .fa-regular {
    font-size: 18px;
    margin-right: 8px;
}

.profile-wrapper .buttons-wrapper {
    margin-top: 30px;
}

.user-orders-history h2 {
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
}

.user-orders-history .buttons-wrapper {
    margin-top: 20px; 
}

.user-orders-history .nav-list {
    margin: 30px 0;
}

.user-orders-history .nav-list ul {
    justify-content: center;
}

.user-orders-list .user-orders-list-item {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
    background: #F0F0F1;
    border-radius: 8px;
    padding: 15px 20px;
}

.user-orders-list .user-orders-list-item .buttons-wrapper {
    width: 100%;
}

.user-orders-list .user-orders-list-item .user-orders-list-item-inner {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    max-width: 700px;
    width: 100%;
    box-sizing: border-box;
}

.user-orders-list .user-orders-list-item .list-item-cell { 
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    line-height: 19px;
    white-space: nowrap;
    min-width: 0;
}

.user-orders-list.gifts-list .user-orders-list-item .list-item-cell { 
    white-space: normal;
}

.user-orders-list.unpaid-orders .user-orders-list-item .user-orders-list-item-inner {
    justify-content: center;
}

.user-orders-list.gifts-list .user-orders-list-item .user-orders-list-item-inner {
    max-width: 546px;
}

.user-orders-list.unpaid-orders .user-orders-list-item .list-item-cell:nth-child(2), .user-orders-list.unpaid-orders .user-orders-list-item .list-item-cell:nth-child(3) {
    flex: inherit;
}

.user-orders-list-item .list-item-cell:nth-child(1) {
    width: 230px;
}

.user-orders-list-item .list-item-cell:nth-child(2),
.user-orders-list-item .list-item-cell:nth-child(3) {
    flex: 1 1 0;
}

.user-orders-list-item .list-item-cell:nth-child(4), .gifts-list .user-orders-list-item .list-item-cell:nth-child(3) {
    flex: 0 0 auto;
    min-width: 120px;
    justify-content: center;
}

.user-orders-list .user-orders-list-item:hover {
    background: #F0F0F1;
    color: var(--primary);
}

.user-orders-list .user-orders-list-item:last-child {
    margin-bottom: 0;
}

.user-orders-list .user-orders-list-item .list-item-cell .cell-icon {
    margin-right: 8px;
    font-size: 20px; 
}

.product-wrapper {
    position: relative;
    display: flex;
    align-items: top;
    flex-wrap: nowrap;
}

.product-wrapper.flex-wrap {
    flex-wrap: wrap;
}

.product-wrapper .product-cover {
    width: 269px;
    margin-right: 20px;
    flex-shrink: 0;
}

.product-wrapper .product-cover .purchase-mode {
    display: none;
}

.product-wrapper .product-cover .image {
    line-height: 0;
    margin-bottom: 30px;
}

.product-wrapper.flex-wrap .product-cover .image {
    margin-bottom: 0;
}

.product-wrapper .product-cover .image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.product-wrapper .product-cover .purchase-mode .subtitle {
   justify-content: center;
}

.product-wrapper .product-cover .purchase-mode .btn {
    width: 100%;
}

.product-wrapper .subtitle {
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 20px;
}

.product-wrapper .subtitle .btn {
    margin-left: 8px;
}

.product-wrapper .subtitle.user-region {
    display: flex;
    align-items: center;
}

.product-wrapper .subtitle.user-region .btn {
    margin-left: 10px;
}

.product-wrapper .product-block {
    position: relative;
    width: calc(100% - 289px);
    display: flex;
    flex-wrap: wrap;
}

.product-wrapper.loading {
    pointer-events: none;
    opacity: 0.8;
}

.product-wrapper > .spinner {
    position: absolute;
    left: 50%;
    top: 186px;
    width: 7em;
    height: 7em;
    z-index: 50;
    border-width: 5px;
    border-color: #EE6352;
    margin: -3.5em 0 0 -3.5em;
}

.product-wrapper .select-edition-selector .subtitle {
    text-align: center;
}

.select-edition-selector {
    margin-bottom: 30px;
}

.select-edition-selector .switcher {
    flex-wrap: wrap;
}

.select-edition-selector .switcher .btn {
    width: 100%;
}

.select-edition-selector .switcher .btn:last-child {
    margin-bottom: 0;
}

.select-edition-selector .go-back-btn {
    max-width: 146px;
    margin-top: 10px;
    font-weight: 500;
} 

.select-edition-selector .cancel-order-btn {
    font-weight: 500;
}

.activation-icon, .flag-icon {
    position: relative;
    background-size: 20px 40px;
    background-repeat: no-repeat;
    background-position: 0 0;
    width: 20px;
    height: 20px;
}

.flag-icon {
    border-radius: 50%;
}

.activation-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    opacity: 0;
    background-size: 20px 40px;
    background-position: 0 -20px;
    transition: opacity .3s;
    background-image: inherit;
}

.active .activation-icon::after, .btn:hover .activation-icon::after {
    opacity: 1;
}

.flag-icon {
    background-size: 20px 20px;
}

.product-options-wrapper {
    width: 55.45%;
    min-height: 369px;
    flex-shrink: 0;
}

.product-options-wrapper .product-option {
    margin-bottom: 20px;
}

.product-options-wrapper .product-option:last-child {
    margin-bottom: 0;
}

.btn .activation-icon, .btn .flag-icon {
    margin-right: 8px;
}

.product-buy-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 411px;
}

.product-buy-wrapper .product-buy {
    padding: 20px 10px;
    background: #FEF7F6;
    border-radius: 8px;
}

.product-buy-wrapper .product-buy .product-price {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 51px;
}

.product-buy-wrapper .product-buy .product-price .badge {
    padding: 1.5px 10px;
}

.product-buy-wrapper .product-buy .old-price {
    font-weight: 600;
    line-height: 19px;
    margin-bottom: 5px;
    text-decoration: line-through;
}

.product-buy-wrapper .product-buy .price {
    color: #F30D17;
    font-size: 40px;
    font-weight: 600;
}

.product-buy-wrapper .product-buy .discount {
    margin-right: 10px;
}

.product-buy-wrapper .product-buy .stock-status {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    padding: 6px;
    margin: 16.5px 0;
    background: #fff;
    border-radius: 8px;
}

.product-buy-wrapper .product-buy .stock-status .stock-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}

.product-buy-wrapper .product-buy .stock-status .stock-indicator.low-stock {
    color: #F30D17;
}

.product-buy-wrapper .product-buy .stock-status .stock-indicator.high-stock {
    color: #74D952;
}

.product-buy-wrapper .product-buy .stock-status .stock-indicator .fa-battery-full, 
.product-buy-wrapper .product-buy .stock-status .stock-indicator .fa-battery-quarter {
    font-size: 20px;
    margin-right: 8px;
}

.product-buy-wrapper .discount-counter {
    background: #FDEBEB;
    padding: 15px;
    line-height: 19px;
    text-align: center;
    border-radius: 8px;
    color: #F30D17;
    margin-bottom: 16.5px;
}

.product-buy-wrapper .discount-counter .counter {
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
}

.product-buy-wrapper .discount-counter .counter span {
    color: #F5454C;
    margin: 0 4px;
}

.product-info-wrapper {
    display: flex;
    margin-top: 30px;
    width: 100%;
}

.product-info-wrapper .product-description-wrapper {
    width: calc(100% - 269px);
}

.purchase-mode .switcher {
    margin-bottom: 10px;
}

.product-info-wrapper .instruction ul {
    list-style: none;
}

.product-info-wrapper .instruction ol {
    margin-left: 18px;
}

.product-info-wrapper .product-description-wrapper .alert-warning, .product-info-wrapper .product-description-wrapper .alert-info {
    margin-bottom: 20px;
}

.product-info-wrapper .product-description-wrapper .alert-success {
    margin-bottom: 30px;
}

.product-info-wrapper .product-description {
    font-weight: 500;
}

.additional-content {
    width: 269px;
    flex-shrink: 0;
    margin-left: 20px;
}

.additional-content .subtitle {
    justify-content: center;
}

.additional-content .purchase-mode {
    margin-bottom: 30px;
}

.dlc-list .dlc-item {
    display: block;
    line-height: 0;
    margin-bottom: 10px;
    border-radius: 8px;
    background: #F4F5F5;
    padding: 10px;
}

.popular-games .dlc-list .dlc-item {
    max-width: 200px;
    margin: 0 auto 10px;
}

.dlc-list .dlc-item .dlc-item-inner {
    overflow: hidden;
    border-radius: 8px;
}

.dlc-list .dlc-item img {
    width: 100%;
    height: auto;
    transition: all .3s;
}

.dlc-list .dlc-item:hover img {
    transform: scale(1.1);
}

.dlc-list .dlc-item:last-child {
    margin-bottom: 0; 
}

.additional-content .purchase-mode .btn {
    width: 100%;
}

.purchase-mode .purchase-mode-switcher {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: #fff;
    color: #8C8C8C;
    border-radius: 8px;
}

.purchase-mode .purchase-mode-switcher span {
    transition: all .3s;
}

.purchase-mode .purchase-mode-switcher:not(.active) span.case {
    color: #191919;
}

.purchase-mode .purchase-mode-switcher.active span.buy {
    color: #191919;
}

.purchase-mode .purchase-mode-switcher .slider-switcher {
    position: relative;
    width: 34px;
    height: 22px;
    border-radius: 22px;
    background: #000;
    margin: 0 15px;
    cursor: pointer;
    flex-shrink: 0;
}

.purchase-mode .purchase-mode-switcher .slider-switcher::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    transition: all .3s;
}

.purchase-mode .purchase-mode-switcher.active .slider-switcher::after {
    left: 15px;
}

.purchase-mode .purchase-mode-switcher .tooltip-wrapper {
    margin-left: 8px;
}

.purchase-mode .purchase-mode-text {
    text-align: center;
    font-size: 14px;
    line-height: 19px;
    color: #44444A;
    margin-top: 5px;
}

.product-buy-wrapper .purchase-mode {
    margin-top: 20px;
}

.product-buy-wrapper #buy-button {
    width: 100%;
}

.tooltip-wrapper {
    position: relative;
    height: 20px;
    cursor: pointer;
}

.tooltip-wrapper i {
    color: #191919;
    font-size: 20px;
}

.tooltip-wrapper .tooltip {
    position: absolute;
    top: 0;
    right: 22px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    line-height: 16px;
    font-size: 14px;
    -webkit-animation: explode .2s;
    animation: explode .2s;
    display: none;
    border-radius: 8px;
    z-index: 100;
}

.tooltip-wrapper:hover .tooltip {
    display: block;
}

.checkout-wrapper, .order-wrapper {
    width: 967px;
}

.payment-methods-switcher {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.payment-methods-switcher .payment-method-item {
    position: relative;
    display: flex;
    align-items: center;
    flex: 1 1 calc(33.333% - 13.333px);
    flex-grow: 0;
    padding: 10px 20px;
    border-radius: 8px;
    background: #F4F5F5;
    color: #191919;
    transition: all .3s;
    cursor: pointer;
    line-height: 19px;
}

.payment-methods-switcher .payment-method-item:hover {
    color: #fff;
    background: rgba(var(--primary-r), var(--primary-g), var(--primary-b), .85);
}

.payment-methods-switcher .payment-method-item.selected {
    color: #fff;
    background: var(--primary);
}

.payment-methods-switcher .payment-method-item::after {
    content: '\f00c';
    position: absolute;
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    top: 50%;
    right: 20px;
    font-size: 25px;
    color: #fff;
    transform: translateY(-50%);
    transition: all .3s;
    opacity: 0;
}

.payment-methods-switcher .payment-method-item.selected::after {
    opacity: 1;
}

.payment-methods-switcher .payment-method-item .payment-method-logo {
    line-height: 0;
    margin-right: 10px;
}

.payment-methods-switcher .payment-method-item .payment-method-logo img {
    width: 41px;
    height: 42px;
}

.payment-methods-switcher .payment-method-item .title {
    font-weight: 600;
}

.payment-methods-switcher .payment-method-item .amount {
    margin-top: 3px;
    font-weight: 500;
}

.checkout-wrapper .checkout-amount, .order-wrapper .checkout-amount {
    line-height: 22px; 
    font-weight: 500;
    margin-top: 16px;
    text-align: center;
}

.custom-checkbox {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    user-select: none;
}

.custom-checkbox input {
    display: none;
}

.custom-checkbox .checkbox-icon {
    position: relative;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.custom-checkbox .checkbox-icon i {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 18px;
    color: #191919;
}

.custom-checkbox input:checked+.checkbox-icon i.fa-square {
    display: none;
}

.custom-checkbox input:not(:checked)+.checkbox-icon i.fa-square-check {
    display: none;
}

.custom-checkbox .checkbox-text {
    font-weight: 600;
    text-align: center;
}

.custom-checkbox .checkbox-text a {
    font-weight: 700;
}

.purchase-terms {
    margin-top: 40px;
    line-height: 19px;
}

.purchase-terms .custom-checkbox {
    justify-content: center;
}

.order-wrapper .row-title, .roulette-wrapper .sell-message {
    display: flex;
    align-items: center;
    font-weight: 500;
    line-height: 20px;
    text-align: left;
}

.order-wrapper .row-title i, .roulette-wrapper .sell-message i {
    font-size: 20px;
    margin-right: 8px;
}

.order-wrapper .row-title span {
    margin: 0 6px;
}

.roulette-wrapper .sell-message span {
    margin-left: 6px;
}

.roulette-wrapper .sell-message a {
    margin-left: 6px;
}

.order-wrapper .row-title strong {
    font-weight: 700;
}

.order-wrapper .row-title b {
    font-weight: 600;
}

.order-wrapper .row-label {
    display: block;
    font-weight: 600;
    margin-bottom: 15px;
}

.order-status-wrapper {
    text-align: center;
    margin: 20px auto 40px;
    max-width: 560px;
}

.order-status-wrapper .btn {
    width: 250px;
}

.order-status-wrapper .payment-btn, .order-status-wrapper .support-btn {
    width: 350px;
}

.order-status-wrapper .order-wating {
    margin-bottom: 20px;
}

.order-status-wrapper .order-number {
    line-height: 19px;
    font-weight: 500;
}

.order-status-wrapper .order-number strong {
    color: var(--primary);
}

.order-status-wrapper .buttons-wrapper {
    margin: 20px 0 15px;
}

.order-receipt-wrapper {
    padding: 20px;
    background: #F4F5F5;
    border-radius: 8px;
    margin-top: 20px;
}

.order-receipt-wrapper .order-receipt-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 40px;
    margin-top: 30px;
}

.roulette-wrapper .roulette-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.roulette-wrapper .roulette {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 19.6px;
    left: -88px;
}

.roulette-wrapper .roulette.slow {
    transition: all 1000s cubic-bezier(.075, .9, .4, 1)
}

.roulette-wrapper .roulette.rolling {
    transition: all 12s cubic-bezier(.075, .9, .4, 1);
}

.roulette-wrapper .roulette-overlay {
    position: relative;
    height: 262px;
    padding: 28px 20px;
}

.roulette-wrapper .roulette-overlay::after, 
.roulette-wrapper .roulette-overlay::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    width: calc(50% - 88.6px);
    height: 260px;
    border-radius: 8px;
    border: 1px solid #338AF3;
    background: rgba(51, 138, 243, 0.25);
    z-index: 10;
}

.roulette-wrapper .roulette-overlay .win-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: #338AF3;
    transform: translateX(-50%);
    z-index: 10;
}

.roulette-wrapper .roulette-overlay .win-line::before, 
.roulette-wrapper .roulette-overlay .win-line::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    width: 0;
    height: 0;
}

.roulette-wrapper .roulette-overlay .win-line::before {
    bottom: 0;
    border-bottom: 5px solid #338AF3; 
}

.roulette-wrapper .roulette-overlay .win-line::after {
    top: 0;
    border-top: 5px solid #338AF3;
}

.roulette-wrapper .roulette-overlay::before {
    left: 0;
}

.roulette-wrapper .roulette-overlay::after {
    right: 0;
}

.roulette-wrapper .roulette-inner {
    overflow: hidden;
}

.roulette-wrapper .roulette .roulette-item {
    width: 156px;
    height: 204px;
    line-height: 0;
    flex-shrink: 0;
}

.roulette-wrapper .roulette .roulette-item img {
    width: 100%;
    height: 204px;
    border-radius: 8px;
}

.roulette-wrapper .buttons-wrapper {
    flex-wrap: wrap;
    gap: 20px;
    width: 550px;
    margin: 20px auto 0;
}

.roulette-wrapper .buttons-wrapper .btn {
    margin: 0 !important;
    width: 260px;
}

.roulette-wrapper .buttons-wrapper .spin-btn {
    width: 350px;
}

.in-case-items-wrapper .in-case-title, .prizes-list-title {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.in-case-items-wrapper .in-case-title i, .prizes-list-title i {
    font-size: 23px;
    margin-right: 8px;
}

.in-case-items-wrapper {
    margin-top: 40px;
}

.in-case-items-wrapper .in-case-items-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(162px, 1fr));
    gap: 20px 19.6px;
    justify-content: center;
}

.in-case-items-wrapper .in-case-items-list .in-case-item {
    width: 100%;
    aspect-ratio: 193 / 251;
    line-height: 0;
}   

.in-case-items-wrapper .in-case-items-list .in-case-item img {
    width: 100%;
    height: 204px;
    border-radius: 8px;
}

.win-wrapper .win-item {
    display: flex;
    justify-content: center;
}

.win-wrapper .sell-message {
    margin-top: 20px;
}

.win-wrapper .catalog-item {
    max-width: 193px;
}

.explode {
    -webkit-animation: explode .2s;
    animation: explode .2s;
}

.explode-out {
    -webkit-animation: explode-out .2s;
    animation: explode-out .2s;
}

.fadeIn {
    animation: fadeIn .3s ease-in forwards;
}

.fadeOut {
    animation: fadeOut .3s ease-out forwards;
}

.support-screen .buttons-wrapper .btn {
    width: 350px;
}

.gift-wrapper {
    max-width: 688px;
    margin: 0 auto;
    padding: 20px 0;
}

.gift-wrapper .gift-inner {
    max-width: 420px;
    margin: 0 auto;
}

.gift-wrapper .gift-inner .btn {
    width: 306px;
}

.gift-wrapper .gift-image {
    text-align: center;
    background: rgba(139, 204, 71, 0.3);
    border-radius: 8px;
    width: 220px;
    height: 220px;
    padding: 10px;
    margin: 0 auto 20px;
}

.gift-wrapper .gift-image img {
    width: 200px;
    height: 200px;
    border-radius: 8px;
}

.gift-wrapper .gift-description {
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    margin-bottom: 30px;
}

.gift-wrapper .alert.alert-success {
    margin: 30px auto 0;
}

.gift-wrapper .prizes-list-title {
    margin-top: 30px;
}

.gift-wrapper .prizes-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.prize-item {
    position: relative;
    width: 216px;
    padding: 15px;
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.prize-item .prize-item-inner {
    position: relative;
    z-index: 2;
}

.prize-item:hover {
    transform: scale(1.05);
}

.gift-ticket-item .prize-item:hover, .get-steam-gift .prize-item:hover {
    transform: scale(1);
}

.prize-item::before, .prize-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 17px;
    transition: all 0.3s;
}

.prize-item::after {
    opacity: 0;
}

.prize-item:hover::after {
    opacity: 1;
}

.prize-item.yellow-style::before {
    background: rgba(255, 219, 94, 0.25);
}

.prize-item.yellow-style::after {
    background: rgba(255, 219, 94, 0.5);
}

.prize-item.purple-style::before {
    background: rgba(136, 71, 255, 0.25);
}

.prize-item.purple-style::after {
    background: rgba(136, 71, 255, 0.5);
}

.prize-item.rare-style::before {
    background: rgba(75, 105, 255, 0.25);
}

.prize-item.rare-style::after {
    background: rgba(75, 105, 255, 0.5);
}

.prize-item.arcana-style::before {
    background: rgba(139, 204, 71, 0.25);
}

.prize-item.arcana-style::after {
    background: rgba(139, 204, 71, 0.5);
}

.prize-item.mythical-style::before {
    background: rgba(136, 71, 255, 0.25);
}

.prize-item.mythical-style::after {
    background: rgba(136, 71, 255, 0.5);
}

.prize-item.legendary-style::before {
    background: rgba(211, 44, 230, 0.25);
}

.prize-item.legendary-style::after {
    background: rgba(211, 44, 230, 0.5);
}

.prize-item.immortal-style::before {
    background: rgba(232, 193, 59, 0.25);
}

.prize-item.immortal-style::after {
    background: rgba(232, 193, 59, 0.5);
}

.prize-item.orange-style::before {
    background: rgba(255, 177, 105, 0.25);
}

.prize-item.orange-style::after {
    background: rgba(255, 177, 105, 0.5);
}

.prize-item.coral-style::before {
    background: rgba(255, 106, 115, 0.25);
}

.prize-item.coral-style::after {
    background: rgba(255, 106, 115, 0.5);
}

.prize-item .prize-image {
    width: 100%;
    height: 110px;
    overflow: hidden;
    line-height: 0;
    border-bottom: 2px solid;
    margin-bottom: 13px;
}

.prize-item .prize-image img {
    width: 100%;
    height: 110px;
}

.prize-item.yellow-style .prize-image {
    border-color: #FFDB5E;
}

.prize-item.purple-style .prize-image {
    border-color: #8847FF;
}

.prize-item.rare-style .prize-image {
    border-color: rgb(75, 105, 255);
}

.prize-item.arcana-style .prize-image {
    border-color: rgb(139, 204, 71);
}

.prize-item.mythical-style .prize-image {
    border-color: rgb(136, 71, 255);
}

.prize-item.legendary-style .prize-image {
    border-color: rgb(211, 44, 230);
}

.prize-item.immortal-style .prize-image {
    border-color: rgb(232, 193, 59);
}

.prize-item.orange-style .prize-image {
    border-color: rgb(255, 177, 105);
}

.prize-item.coral-style .prize-image {
    border-color: rgb(255, 106, 115);
}

.prize-item .prize-title {
    font-size: 14px;
    font-weight: 600;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.gift-ticket-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.gift-ticket-wrapper .gift-ticket-item {
    width: 216px;
    height: 177px;
    border-radius: 17px;
    cursor: pointer;
    perspective: 1000px;
}

.gift-ticket-wrapper .gift-ticket-item .card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.gift-ticket-wrapper .gift-ticket-item.is-flipped .card-inner {
    transform: rotateY(180deg);
}

.gift-ticket-wrapper .gift-ticket-item .card-front, .gift-ticket-wrapper .gift-ticket-item .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
}

.gift-ticket-wrapper .gift-ticket-item .card-front {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 17px;
    background: #FEF3F3;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.gift-ticket-wrapper .gift-ticket-item .card-front i {
    transform: rotate(-10deg);
    font-size: 70px;
    color: #F30D17;
}

.gift-ticket-wrapper .gift-ticket-item.flipped .card-back .prize-item {
    border: 2px solid #FFDB5E;
    border-radius: 19px;
}

.gift-ticket-wrapper .gift-ticket-item .card-back {
    transform: rotateY(180deg);
}

.gift-ticket-wrapper .gift-ticket-item.is-flipped:hover, .gift-ticket-wrapper .gift-ticket-item.is-flipped:hover {
    animation: none;
}

.gift-ticket-wrapper .gift-ticket-item:hover {
    animation: shake 1s ease-in-out;
}

.gift-ticket-result {
    text-align: center;
    margin-top: 25px;
}

.gift-ticket-result .gift-ticket-status {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    margin-bottom: 10px;
}

.gift-ticket-result .gift-ticket-status i {
    font-size: 19px;
    margin-right: 10px;
}

.gift-ticket-result.success .gift-ticket-status i {
    color: #ADF7B6;
}

.gift-ticket-result.success .gift-ticket-status b {
    font-weight: 700;
    color: #FFB169;
    margin-left: 6px;
}

.gift-ticket-result .gift-ticket-status-description {
    font-size: 16px;
    font-weight: 500;
}

.gift-ticket-result .gift-ticket-status-description b {
    color: #FFB169;
    font-weight: 600;
}

.gift-ticket-result .buttons-wrapper {
    margin-top: 25px;
}

.gift-ticket-result .gift-ticket-status {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    margin-bottom: 10px;
}

.gift-ticket-result .gift-ticket-status i {
    font-size: 19px;
    margin-right: 10px;
}

.gift-ticket-result.success .gift-ticket-status i {
    color: #80DA60;
}

.gift-ticket-result.success .gift-ticket-status b {
    font-weight: 700;
    color: var(--primary);
    margin-left: 6px;
}

.gift-ticket-result .gift-ticket-status-description {
    font-size: 16px;
    font-weight: 500;
}

.gift-ticket-result .gift-ticket-status-description b {
    color: var(--primary);
    font-weight: 600;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@-webkit-keyframes explode {
    0% {
        transform: scale(0) rotate(-25deg)
    }

    to {
        transform: scale(1) rotate(0deg)
    }
}

@keyframes explode {
    0% {
        transform: scale(0) rotate(-25deg)
    }

    to {
        transform: scale(1) rotate(0deg)
    }
}

@-webkit-keyframes explode-out {
    0% {
        transform: scale(1) rotate(0px)
    }

    to {
        transform: scale(0) rotate(-25deg)
    }
}

@keyframes explode-out {
    0% {
        transform: scale(1) rotate(0deg)
    }

    to {
        transform: scale(0) rotate(-25deg)
    }
}

@-webkit-keyframes opacity {
    0% {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes opacity {
    0% {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes shake {
    0% {
        transform: translate(0, 0) scale(1);
    }
    15% {
        transform: translate(-1px, 1px) scale(1.01);
    }
    30% {
        transform: translate(1px, -1px) scale(1.02);
    }
    45% {
        transform: translate(-1px, 1px) scale(1.01);
    }
    60% {
        transform: translate(1px, -1px) scale(1.02);
    }
    75% {
        transform: translate(-1px, 1px) scale(1.01);
    }
    100% {
        transform: translate(0, 0) scale(1);
    } 
}

/*Carousel*/
.owl-nav {
    text-align: center;
    margin-top: 10px;
}

.owl-nav > button {
    font-size: 20px;
    color: #191919;
    position: relative;
    background: none;
    border: none;
    z-index: 10;
    transition: .3s;
    cursor: pointer;
    outline: none;
    margin: 0 15px;
}

.owl-nav > button:hover {
    color: var(--primary);
}

.owl-nav .owl-prev.disabled,
.owl-nav .owl-next.disabled {
    cursor: default !important;
    opacity: 0.2;
}

.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 1;
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
}

.owl-carousel.height-100 .owl-stage {
    display: flex;
    flex-wrap: nowrap;
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

.owl-carousel.height-100 .owl-item {
    float: none;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
    display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel.owl-loaded {
    display: block;
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block;
}

.owl-carousel.owl-hidden {
    opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
    visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel.owl-grab {
    cursor: move;
    cursor: grab;
}

.owl-carousel.owl-rtl {
    direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
    float: right;
}

.no-js .owl-carousel {
    display: block;
}

.owl-carousel .animated {
    animation-duration: 1000ms;
    animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
    z-index: 0;
}

.owl-carousel .owl-animated-out {
    z-index: 1;
}

.owl-carousel .fadeOut {
    animation-name: fadeOut;
}

/*Modal*/
.modal-dialog {
    position: relative;
    width: 605px;
    margin: 0 auto;
}

.modal-dialog-centered {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - 1rem);
}

.modal.show .modal-dialog {
    -webkit-transform: none;
    transform: none;
}

.modal-dialog-centered::before {
    display: block;
    height: calc(100vh - 1rem);
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
    content: "";
}

body.modal-open {
    overflow: hidden;
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
    will-change: transform, opacity;
}

.modal.show {
    display: block;
}

.modal-content {
    position: relative;
    width: 100%;
    padding: 20px;
    background: #FFF;
    border-radius: 8px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.modal-close {
    position: absolute;
    right: 8px;
    top: 3px;
    background: none;
    color: #191919;
    font-size: 24px;
    cursor: pointer;
    border: 0;
    z-index: 10;
}

.modal-backdrop {
    opacity: 0;
    transition: opacity 0.3s ease;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1040;
}

.modal-backdrop.show {
    opacity: 1;
}

.modal .modal-title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    margin-bottom: 25px;
}

.modal .modal-title i {
    font-size: 20px;
    margin-right: 8px;
}

.modal .error-text {
    text-align: center;
}

.buttons-wrapper .btn[type="submit"] {
    min-width: 220px;
}

.mobile-menu-btn {
    border: 0;
    cursor: pointer;
    font-size: 40px;
    display: none;
    height: 54px;
    padding: 7px;
    background: #F8F9FA;
    border-radius: 8px;
    position: relative;
    top: 11px;
    transition: all .3s;
}

.mobile-menu-btn.active {
    background: #E6E9ED;
}

.no-items-found {
    text-align: center;
    max-width: 700px;
    margin:0 auto;
}

.spinner {
    width: 1em;
    height: 1em;
	border-top: 2px solid #fff;
    border-radius: 50%;
	border-right: 2px solid transparent;
	animation: spinner 700ms linear infinite;
}

@-webkit-keyframes spinner {
	to {
		transform: rotate(360deg);
	}
}

@keyframes spinner {
	to {
		transform: rotate(360deg);
	}
}

.user-gift-description p b {
    color: var(--primary);
}

#auth-form .alert {
    margin-bottom: 20px;
}

.steam-gift-wrapper .section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 30px;
}

.steam-gift-wrapper .section-title i {
    font-size: 20px;
    margin-right: 10px;
}

.steam-gift-wrapper .user-gift-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.steam-gift-wrapper .buttons-wrapper {
    margin-top: 30px;
}

#more-info-modal .alert {
    margin-bottom: 20px;
}

.bonuses-description {
    display: flex;
    align-items: start;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
}

.bonuses-description .fa-regular {
    font-size: 20px;
    margin-right: 8px;
    color: #F30D17;
}

#withdrawal-bonuses-form .alert {
    margin-bottom: 20px;
}

#goPayModal .buttons-wrapper {
    margin-top: 30px;
}

#goPayModal .buttons-wrapper .btn {
    width: 100%;
}

#goPayModal .table {
    margin: 0 auto;
}

#goPayModal .table td {
    padding: 5px;
}

@media screen and (max-width:1260px) {
    .catalog-button-wrapper {
        margin-right: 40px;
    }

    .menu-wrapper {
        margin-right: 30px;
    }

    .banners-wrapper .banner-item .banner-item-wrapper {
        padding: 20px;
    }

    .banners-wrapper .banner-item .banner-bottom {
        bottom: 20px;
    }
}

@media screen and (max-width:1199px) {
    .container {
        width: 1020px;
    }

    .header-wrapper .row {
        position: relative;
    }

    .mobile-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .catalog-wrapper .catalog-nav-wrapper {
        justify-content: center;
        flex-direction: column-reverse;
    }

    .catalog-wrapper .catalog-nav-wrapper .nav-search {
        margin-bottom: 20px;
    }

    .payment-methods-switcher .payment-method-item {
        flex: inherit;
        width: calc(50% - 10px);
    }

    .product-buy-wrapper {
        width: 340px;
    }

    .product-wrapper .product-cover {
        width: 201px;
    }

    .product-options-wrapper {
        width: 54.45%;
    }

    .mobile-menu {
        display: none;
        flex-wrap: wrap;
        background: #F1F3F5;
        z-index: 99;
        border-radius: 0 0 8px 8px;
        position: absolute;
        right: 0;
        top: 74px;
        padding: 20px;
        max-width: 330px;
        margin-top: 2px;
        box-shadow: 0px 8px 10px -6px rgba(var(--primary-r), var(--primary-g), var(--primary-b), 0.1);
        justify-content: center;
        -webkit-animation: explode .2s;
        animation: explode .2s;
    }

    .mobile-menu.active {
        display: flex;
    }

    .header-wrapper .user-account {
        order: 1;
        padding: 0 0 16px;
    }

    .catalog-button-wrapper {
        order: 2;
        margin: 0;
    }

    .menu-wrapper {
        order: 3;
    }

    .catalog-button-wrapper .catalog-button {
        display: none;
    }

    .catalog-button-wrapper .catalog-dropdown {
        position: relative;
        top: 0;
        left: 0;
        padding-top: 0;
        display: block;
    }

    .catalog-button-wrapper .catalog-dropdown ul {
        list-style: none;
        background: none;
        box-shadow: none;
        border-radius: 8px;
    }

    .catalog-button-wrapper .catalog-dropdown ul li:first-child a, .catalog-button-wrapper .catalog-dropdown ul li:last-child a {
        border-radius: 8px;
    }

    .catalog-button-wrapper .catalog-dropdown ul li a {
        border-radius: 8px;
        justify-content: center;
    }

    .menu-wrapper {
        margin-right: 0;
        padding: 15px 0 0;
    }

    .menu-wrapper .menu ul {
        display: block;
        text-align: center;
    }

    .menu-wrapper .menu ul li {
        margin: 0 0 20px;
    }

    .menu-wrapper .menu ul li:last-child {
        margin-bottom: 0;
    }
    
}

@media screen and (max-width:1040px) {
    .container {
        width: 740px;
    }

    .banners-wrapper .banner-item { 
        width: 100%;
    }

    .nav-list ul {
        gap: 14px;
        justify-content: center;
    }

    footer .shop-logo {
        margin: 0 auto 30px;
        justify-content: center;
    }

    footer .footer-center {
        margin: 30px 0;
        width: 100%;
        justify-content: center;
    }

    footer .footer-nav ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    footer .footer-nav ul li {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .product-wrapper {
        flex-wrap: wrap;
        justify-content: center;
    }

    .checkout-wrapper, .order-wrapper {
        width: 100%;
    }

    .checkout-page .product-wrapper .product-cover .image {
        display: none;
    }

    .product-buy-wrapper {
        position: fixed;
        width: 100%;
        top: inherit;
        left: 0;
        bottom: 0;
        right: inherit;
        z-index: 999;
    }

    .product-buy-wrapper .product-buy .stock-status, .product-buy-wrapper .discount-counter {
        display: none;
    }

    .product-buy-wrapper .product-buy .btn {
        margin-top: 20px;
    }

    .product-options-wrapper {
        width: 100%;
    }

    .product-wrapper .product-block {
        display: block;
        width: 100%;
    }

    .product-info-wrapper {
        display: block;
    }

    .product-info-wrapper .product-description-wrapper {
        width: 100%;
    }

    .product-options-wrapper {
        min-height: inherit;
    }

    .product-wrapper .product-cover {
        margin: 0 0 30px 0;
    }

    .additional-content {
        width: 100%;
        max-width: 100%;
        flex-shrink: inherit;
        margin: 20px 0 0 0;
    }

    .additional-content .subtitle {
        text-align: left;
    }

    .dlc-list {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }

    .dlc-list .dlc-item {
        width: calc(50% - 10px);
        margin-bottom: 0;
    }

    .user-orders-list .user-orders-list-item .user-orders-list-item-inner {
        flex-wrap: wrap;
        justify-content: center;
    }

    .user-orders-list-item .list-item-cell:nth-child(1) {
        width: auto;
    }

    .user-orders-list-item .list-item-cell:nth-child(2), .user-orders-list-item .list-item-cell:nth-child(3) {
        flex: inherit;
    }

    .user-orders-list-item .list-item-cell:nth-child(4) {
        flex: inherit;
        min-width: inherit;
    }

    .prizes-list-wrapper .prizes-list {
        gap: 20px;
    }

    .prize-item {
        width: calc(33.333333% - 15px);
    }

    .prize-item .prize-image {
        width: 100%;
        height: auto;
    }

    .prize-item .prize-image img {
        width: 100%;
        height: auto;
    }

    .gift-ticket-wrapper .gift-ticket-item {
        width: 30.8%;
        height: 157px;
    }

    .gift-ticket-wrapper .gift-ticket-item .prize-item {
        width: 100%;
    }

    .header-nav {
        display: flex;
        flex-direction: column;
    }
}

@media screen and (max-width:767px) {
    .container {
        width: 100%;
        padding: 0 10px;
    }

    .banners-wrapper .banner-item {
        height: auto;
    }

    .banners-wrapper .banner-item .banner-bottom {
        width: 100%;
        flex-wrap: wrap;
        position: relative;
        bottom: 0;
        left: 0;
        margin-top: 20px;
        justify-content: center;
        flex-direction: column;
    }

    .banners-wrapper .banner-item .banner-bottom .btn {
        margin-left: 0;
    }

    .banners-wrapper .banner-item .banner-bottom .badge {
        margin-bottom: 20px;
    }

    .sale-wrapper .sale-inner {
        flex-wrap: wrap;
    }

    .sale-wrapper .sale-inner .btn {
        margin: 20px 0 0;
    }

    .search-field-wrapper .search-field input {
        width: 300px;
    }

    .catalog-items {
        gap: 20px 19.6px;
        grid-template-columns: repeat(auto-fill, minmax(135px, 1fr));
    }

    .catalog-item {
        max-width: 250px;
        margin: 0 auto;
    }

    .blogger-message-wrapper .message-text {
        text-align: left;
    }

    .auth-success .page-inner {
        width: 100%;
    }

    .auth-success .btn {
        min-width: 300px;
    }

    .page-wrapper .page {
        min-height: inherit;
    }

    .row .col {
        flex: 1 1 100%;
    }

    .form-inner .row {
        gap: 0;
    }

    .payment-methods-switcher .payment-method-item {
        width: 100%;
    }

    .order-status-wrapper .payment-btn, .order-status-wrapper .support-btn {
        width: 300px;
    }

    .in-case-items-wrapper .in-case-items-list {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    }

    .roulette-wrapper .buttons-wrapper {
        width: 100%;
    }

    .roulette-wrapper .buttons-wrapper .spin-btn {
        width: 300px;
    }

    .dlc-list .dlc-item {
        width: 100%;
        margin: 0 auto;
        max-width: 300px;
    }

    .product-wrapper .product-cover {
        width: 100%;
        text-align: center;
    }

    .product-wrapper .product-cover img {
        max-width: 250px;
    }

    .product-wrapper .product-cover .alert.alert-warning {
        margin-bottom: 20px;
    }

    .mobile-menu {
        max-width: 100%;
        flex-direction: column;
        width: 100%;
    }

    .support-screen .buttons-wrapper .btn {
        width: 300px;
    }

    .prizes-list-wrapper .prizes-list {
        gap: 10px;
    }

    .prize-item {
        width: calc(50% - 5px);
        padding: 10px;
    }

    .prize-item .prize-title {
        font-size: 11px;
    }

    .prize-item .prize-image {
        margin-bottom: 6px;
    }

    .gift-ticket-wrapper {
        gap: 12px;
    }

    .gift-ticket-wrapper .gift-ticket-item {
        width: calc(33.333333% - 8px);
        padding-top: calc(33.333333% - 8px);
        height: inherit;
        position: relative;
    }

    .gift-ticket-wrapper .gift-ticket-item .card-inner {
        position: absolute;
        top: 0;
        left: 0;
    }

    .gift-ticket-wrapper .gift-ticket-item .card-front i {
        font-size: 35px;
    }

    .product-wrapper .product-cover .purchase-mode {
        display: block;
    }

    .product-buy-wrapper .product-buy .purchase-mode {
        display: none;
    }

    .modal-dialog {
        width: calc(100% - 15px);
    }
}