/* Owned Card */
.owned_card_box {
    margin-top: 28px;
    padding: 75px 40px;
    border-radius: 10px;
    background: #FAFAFA;
}
.owned_card_swiper {
    margin: -6px -40px 0;
    padding: 0 60px;
}
.owned_card_swiper .owned_card_slide {
    width: 133px;
}
.owned_card {
    text-align: center;
}
.owned_card_label {
    position: relative;
    display: block;
    padding-top: 10px;
    cursor: pointer;
}
.owned_card_label::before {
    content: '';
    position: absolute;
    top: 0;
    right: -5px;
    width: 30px;
    height: 30px;
    background: url('../img/online/chk_off.svg') no-repeat;
    background-size: 100%;
    z-index: 1;
}
.owned_card_image_area {
    overflow: hidden;
    position: relative;
    width: 126px;
    height: 198px;
    border-radius: 8px;
}
.owned_card_image {
    overflow: hidden;
    display: block;
    position: relative;
    width: 126px;
    height: 198px;
    margin: 0 auto;
    box-sizing: border-box;
    border-radius: 8px;
    padding: 3px;
    opacity: 0.5;
}
.owned_card_image::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    border: 3px solid transparent;
}
.owned_card_image > img {
    width: 100%;
}
.owned_card_image.is_rotated > img {
    width: 192px;
    height: 120px;
    transform: translate(-36px, 36px) rotate(90deg);
}
.owned_card_warn {
    position: absolute;
    left: 3px;
    right: 3px;
    bottom: 3px;
    padding: 8px 0;
    background: rgba(2, 68, 163, 0.8);
    color: #fff;
    font-size: 13px;
    line-height: 1.2308;
    border-radius: 0 0 7px 7px;
}
.owned_card_warn img {
    display: block;
    width: 20px;
    margin: 0 auto 4px;
}
.owned_card_name {
    display: block;
    margin-top: 16px;
    line-height: 1.6667;
    font-size: 18px;
}
.owned_card_number {
    display: block;
    margin-top: 4px;
    line-height: 1.4;
    font-size: 17px;
    color: #696969;
}
.owned_card_input {
    display: none;
}
.owned_card_input:checked + .owned_card_label::before {
    background-image: url('../img/online/chk_on.svg');
}
.owned_card_input:checked + .owned_card_label .owned_card_image {
    opacity: 1;
}
.owned_card_input:checked + .owned_card_label .owned_card_image::before {
    border-color: #0244a3;
}
.owned_card_input:checked + .owned_card_label .owned_card_name {
    font-weight: 700;
}
.owned_card_description {
    text-align: center;
    line-height: normal;
    font-size: 20px;
    margin-bottom: 34px;
    word-break: keep-all;
    word-wrap: break-word;
}
.owned_card_main {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    min-width: 54px;
    height: 24px;
    padding: 0 6px;
    border-radius: 7px 0;
    background: #f560ce;
    font-size: 12px;
    color: #fff;
    font-weight: 700;
}
@media (min-width: 601px) {
    .hide-desktop {
        display: none;
    }
}
@media (max-width: 600px) {
    .hide-mobile {
        display: none;
    }
    .owned_card_description {
        font-size: 16px;
    }
    .owned_card_swiper {
        margin: -6px -24px 0;
        padding: 0 24px;
    }
    .owned_card_swiper .owned_card_slide {
        width: 111px;
    }
    .owned_card_image_area {
        width: 104px;
        height: 164px;
    }
    .owned_card_image {
        width: 104px;
        height: 164px;
        padding: 2px;
    }
    .owned_card_image::before {
        border-width: 2px;
    }
    .owned_card_image.is_rotated > img {
        width: 160px;
        height: 100px;
        transform: translate(-30px, 30px) rotate(90deg);
    }
    .owned_card_name {
        font-size: 15px;
    }
    .owned_card_number {
        margin-top: 0;
        font-size: 14px;
    }
    .owned_card_warn {
        left: 2px;
        right: 2px;
        bottom: 2px;
        font-size: 12px;
        line-height: 1.3333;
    }
}

/* Not Found */
.not_found {
    padding: 40px 0;
    text-align: center;
}
.not_found_image {
    width: 60px;
}
.not_found_title {
    margin-top: 16px;
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
}
.not_found_description {
    margin-top: 16px;
    color: #696969;
    font-size: 18px;
    line-heihgt: 1.4;
}
.not_found .buttons {
    justify-content: center;
    margin-top: 32px;
}
.not_found .buttons .sub_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    margin-right: 0;
    padding: 0 10px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: normal;
    letter-spacing: -0.36px;
}
@media (max-width: 600px) {
    .not_found .buttons {
        margin-top: 24px;
    }
    .not_found_title {
        font-size: 16px;
    }
    .not_found_description {
        font-size: 15px;
    }
}

/* button disabled */
button:disabled {
    opacity: 0.4
}