.page__game-line {
    overflow: hidden;
    padding: 0px 0px 14px 0px;
    margin: 0px 0px 20px 0px;
    background-color: rgba(0, 0, 0, 0.2);
}

.game-line__container {
    max-width: 430px;
    margin: 0 auto;
}

.game-line__slider {
    padding: 0px 20px;
}

.game-line__slider-line {}

.game-line__slide {
    width: unset;

    max-width: 100px;
    max-height: 100px;

    position: relative;
    border-radius: 12px;
    background: #161c2f;
}

.game-line__slide--active {
    box-shadow: inset 0 2px 10px 0 rgba(255, 111, 7, 0.4);
    background: #161c2f;
    border: 2px solid #ff6f07;
    border-radius: 12px;
}

.game-line__slide-check {
    position: absolute;
    top: -1px;
    left: -1px;
    width: 25px;
    height: 20px;
    z-index: 2;

    transition: all .2s ease;
    opacity: 0;
    box-shadow: 0 2px 10px 0 rgba(255, 111, 7, 0.4);
    background: #ff7008;
    border-radius: 10px 0;

    display: flex;
    align-items: center;
    justify-content: center;
}

.game-line__slide--active .game-line__slide-check {
    opacity: 1;
}

.game-line__slide-check-img {}

.game-line__slide-img {
    width: 100%;
    max-width: 100px;
    max-height: 100px;
    object-fit: cover;
    border-radius: 12px;
    opacity: 0.2;
}

.game-line__slide-logo {
    position: absolute;
    top: calc(50% - 12px);
    left: 50%;
    transform: translate(-50%, -50%);
}

.game-line__slide-name {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.23);
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0 0 12px 12px;

    font-weight: 700;
    font-size: 12px;
    letter-spacing: -0.03em;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.game-line-scrollbar {
    width: 100%;
    height: 4px;
    background: rgba(22, 28, 47, 0.6);

    margin: 0px 0px 15px 0px;
}


/* ------------------------------------ */

.page__shop-form {}

.shop-form__container {}

.shop-form {}

.shop-form__active-game {
    position: relative;
    z-index: 1;
    border-radius: 12px;
    overflow: hidden;

    max-height: 60px;

    padding: 12.5px 20px 12.5px 17px;
    margin: 0px 0px 20px 0px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.shop-form__active-game-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.6;
    z-index: -1;
}

.shop-form__active-game-text {}

.shop-form__active-game-sub {
    font-weight: 500;
    font-size: 12px;
    letter-spacing: -0.03em;
    color: rgba(255, 255, 255, 0.7);
}

.shop-form__active-game-name {
    font-weight: 700;
    font-size: 16px;
    letter-spacing: -0.03em;
    color: #fff;
}

.shop-form__active-game-logo {
    text-align: end;
}

.shop-form__active-game-logo-img {
    max-width: 72%;
}

.shop-form__dropdown {
    position: relative;
    margin: 0px 0px 10px 0px;
}

.shop-form__dropdown-active {
    background: #14192a;
    border-radius: 12px;
    padding: 17px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

    cursor: pointer;
}

.shop-form__dropdown-left {
    display: flex;
    align-items: center;
    gap: 6px;
    pointer-events: none;
}

.shop-form__dropdown-active-icon {
    max-width: 18px;
    pointer-events: none;
}

.shop-form__dropdown-active-text {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: -0.03em;
    color: #fff;
}

.shop-form__dropdown-active-price {}

.shop-form__dropdown-active-value {}

.shop-form__dropdown-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-form__dropdown-right-arrow {
    transition: all .3s ease;
}

.dropdown-active--active .shop-form__dropdown-right-arrow {
    transform: rotate(180deg);
}

.shop-form__dropdown-content {
    position: absolute;
    top: 120%;
    left: 0;
    width: 100%;
    z-index: 2;

    transition: all .3s ease;

    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
}

.shop-form__dropdown-body {
    padding: 10px;
    background-color: rgba(43, 51, 75);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    position: relative;

    display: flex;
    flex-direction: column;
    gap: 5px;
}

.shop-form__dropdown-body::after {
    content: '';

    position: absolute;
    top: -6px;
    right: 6px;
    z-index: -1;

    width: 0;
    height: 0;
    border: 0 solid transparent;
    border-right-width: 12px;
    border-left-width: 12px;
    border-bottom: 12px solid rgba(43, 51, 75, 1);
}

.shop-form__dropdown-item {
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    padding: 8px 7px;
    border-radius: 8px;
    background: rgba(181, 215, 255, 0.1);

    cursor: pointer;
}

.shop-form__dropdown-item--active {
    background: rgba(255, 111, 7, 0.15);
}

.shop-form__dropdown-content-icon {
    max-width: 20px;
}

.shop-form__dropdown-content-text {
    font-weight: 500;
    font-size: 14px;
    line-height: 164%;
    letter-spacing: -0.03em;
    color: #bdbbe2;
}

.shop-form__dropdown-item--active .shop-form__dropdown-content-text {
    font-weight: 500;
    font-size: 14px;
    line-height: 164%;
    letter-spacing: -0.03em;
    color: #ff6f07;
}

.shop-form__dropdown-content-price {}

.shop-form__dropdown-content-value {}

.shop-form__label {
    display: block;
    margin: 0px 0px 10px 0px;
}

.shop-form__input {
    background: #14192a;
    border-radius: 12px;
    padding: 17.5px 17px;
    width: 100%;

    font-style: italic;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: -0.03em;
    color: #fff;
}

.shop-form__input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.shop-form__wrong {
    border: 1px dashed #14192a;
    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0px 0px 20px 0px;
}

.shop-form__wrong-text {
    padding: 17.5px 17px;

    font-weight: 500;
    font-size: 12px;
    letter-spacing: -0.03em;
    text-align: center;
    color: #5c647e;
}

.shop-form__checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.shop-form__label-check {
    font-weight: 400;
    font-size: 12px;
    letter-spacing: -0.03em;
    color: #838ba7;
    cursor: pointer;

    margin: 0px 0px 15px 0px;
}

.shop-form__checkbox+label {
    display: flex;
    align-items: center;
    user-select: none;
}

.shop-form__checkbox+label::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    flex-grow: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    background-color: #14192a;
    margin-right: 6px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 70% 70%;
}

.shop-form__checkbox:checked+label::before {
    background-color: #ff6f07;
    background-image: url("../img/shop/game-slider/check.svg");
}

.shop-form__btn {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

    padding: 18px 17px;
    box-shadow: 0 1px 20px 0 rgba(255, 111, 7, 0.15);
    background: #ff6f07;
    border-radius: 12px;

    margin: 0px 0px 20px 0px;
}

.shop-form__btn-text {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: -0.03em;
    color: #fff;
}

.shop-form__btn-arrow {}

.shop-form__desc {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.shop-form__desc-row {
    display: flex;
    align-items: end;
    gap: 10px;
}

.shop-form__desc-text {
    font-weight: 400;
    font-size: 12px;
    letter-spacing: -0.03em;
    color: #838ba7;
}

.shop-form__desc-line {
    width: 100%;
    height: 1px;
    background: rgba(131, 139, 167, 0.2);
    display: block;
    transform: translateY(-2px);
}

.shop-form__desc-price {
    font-weight: 700;
    font-size: 12px;
    letter-spacing: -0.03em;
    text-align: right;
    color: #fff;
    white-space: nowrap;
}

.shop-form__desc-value {
    font-weight: 700;
    font-size: 12px;
    letter-spacing: -0.03em;
    text-align: right;
    color: #fff;
    white-space: nowrap;
}