@charset "UTF-8";

:root {
    --container-padding: 0 20px;
    --container-padding-carousel: 16px 20px;
}
body {
    border: none;
}

.container {
    padding: 1.4rem;
}

.app-container {
    overflow-x: unset;
}

header {
    position: absolute;
    height: 300px;
    border-left: 1px solid rgba(132, 132, 139, 0.2);
    border-right: 1px solid rgba(132, 132, 139, 0.2);
    overflow: hidden;
    width: 100%;
    top: 0;
    user-select: none;
}

    header .background-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1.2);
        filter: blur(8px) brightness(0.65);
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }

        header .background-image::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

    header .control {
        display: flex;
        padding: 22px 20px;
        justify-content: space-between;
        align-items: center;
    }

        header .control > div {
            display: flex;
            align-items: center;
            column-gap: 10px;
        }

        header .control .control-button {
            border-radius: 9999px;
            width: 35px;
            height: 35px;
            background-color: rgba(0, 0, 0, 0.2);
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

main {
    --book-height: 245px;
    border-radius: 1rem 1rem 0 0;
    background: #fafafa;
    top: calc(var(--book-height) / 2 + 72px);
    position: absolute;
    width: 100%;
    border-left: 1px solid rgba(132, 132, 139, 0.2);
    border-right: 1px solid rgba(132, 132, 139, 0.2);
}

.book-image {
    border-radius: 0.7rem;
    width: 170px;
    height: var(--book-height);
    top: calc(var(--book-height) / -2);
    aspect-ratio: 10.65/16;
    left: 50%;
    position: absolute;
    transform: translate(-50%);
    z-index: 1;
    box-shadow: 0 5px 50px -12px rgba(0, 0, 0, 0.25);
}

    .book-image .main-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0.7rem;
    }

    .book-image::after {
        content: url("../images/iconpack/view-bottom-circle.svg");
        position: absolute;
        bottom: -24px;
        z-index: -1;
        left: 50%;
        transform: translate(-50%);
    }

.book-info {
    margin-top: calc(var(--book-height) / 2 + 25px);
}

    .book-info .title {
        display: flex;
        flex-direction: column;
        align-items: center;
        row-gap: 4px;
        color: #434343;
        padding: 0 12px;
    }

        .book-info .title span {
            color: #808080;
        }

        .book-info .title h1 {
            width: fit-content;
            margin: auto;
            font-size: 1.4rem;
            font-weight: 550;
            text-align: center;
        }

    .book-info button.your-status {
        display: flex;
        align-items: stretch;
        justify-content: space-between;
        font-size: 1.2rem;
        font-weight: 500;
        color: #28c4cc;
        stroke: #28c4cc;
        width: 290px;
        background-color: rgba(40, 196, 204, 0.08);
        border-radius: 0.8rem;
        margin: auto;
        margin-top: 2rem;
        user-select: none;
    }

        .book-info button.your-status .your-status-icon {
            padding: 0 32px;
            border-right: 3px solid #fff;
            display: flex;
            align-items: center;
        }

        .book-info button.your-status .your-status-text {
            padding: 9px;
            width: 100%;
        }

button.your-status[data-status] {
    border: 2px solid #28C4CC;
}
    button.your-status[data-status] .your-status-icon {
        border-right: 2px solid #28C4CC;
    }

.container {
    padding: var(--container-padding);
    margin: auto;
}

.bottom-controlbar {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
    width: 100%;
    background-color: #fff;
    padding: 14px;
    display: flex;
    border-left: 1px solid #ebeff1;
    border-right: 1px solid #ebeff1;
    align-items: center;
    gap: 16px;
}

    .bottom-controlbar > div {
        font-weight: 500;
        padding-left: 0.8rem;
    }

    .bottom-controlbar > .btn {
        display: flex;
        column-gap: 8px;
        align-items: center;
        justify-content: center;
        background: var(--color-theme);
        border: 1px solid var(--color-theme);
        color: #fff;
        stroke: #fff;
        padding: 13px;
        font-size: 15px;
        font-weight: 500;
        border-radius: 17px;
        width: 100%;
        box-shadow: 0 3px 1px -1px rgba(0, 0, 0, 0.08);
    }

        .bottom-controlbar > .btn.btn-outline {
            background: #fff;
            border-color: var(--color-theme);
            color: var(--color-theme);
            stroke: var(--color-theme);
            box-shadow: none;
        }

.reading-status {
    display: flex;
    align-items: center;
    border-radius: 1rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05), 0 0px 3px -1px rgba(0, 0, 0, 0.05);
    margin-top: 1.5rem;
}

    .reading-status div {
        display: flex;
        font-size: 0.75rem;
        font-weight: 500;
        color: #8b8b8b;
        justify-content: space-between;
        width: 100%;
        padding: 1.3rem 0.5rem;
    }

        .reading-status div:not(:first-child) {
            border-right: 1px solid #eaedf1;
        }

        .reading-status div .rs-left {
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

    .reading-status img {
        width: 12px;
    }

.bottom-menu {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 10;
}

    .bottom-menu .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.3);
    }

    .bottom-menu .content {
        background-color: #fff;
        border-radius: 1.7rem 1.7rem 0 0;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%);
        width: 100%;
        padding: 1.5rem;
        max-width: 500px;
    }

        .bottom-menu .content .head {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            position: relative;
        }

            .bottom-menu .content .head img {
                position: absolute;
                right: 0;
                top: 50%;
                transform: translateY(-50%);
            }

        .bottom-menu .content .body .text {
            color: #696969;
            font-size: 1.1rem;
        }

.radio-button {
    padding: 12px 0;
    display: flex;
    align-items: center;
    column-gap: 8px;
    cursor: pointer;
    color: #696969;
    font-weight: 500;
    font-size: 14px;
}

    .radio-button input[type="radio"]:checked + span {
        color: #28c4cc;
    }

.book-type {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding-top: 18px;
    user-select: none;
}

    .book-type .book-type-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        color: #828d99;
        font-weight: 500;
        font-size: 12px;
    }

.text-content {
    margin-top: 18px;
    background-color: #fff;
    padding: 14px 20px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.05), 0 2px 2px rgba(0, 0, 0, 0.05);
    border-radius: 15px;
}

    .text-content .title {
        font-weight: 600;
        font-size: 14px;
        color: #434343;
    }

    .text-content .secDesciption {
        display: flex;
        flex-direction: column;
        overflow: hidden;
        position: relative;
        transition: all 300ms;
    }

        .text-content .secDesciption.collaps {
            height: 200px;
        }

            .text-content .secDesciption.collaps::after {
                content: '';
                background: linear-gradient(0deg, rgba(255, 255, 255, 0.85), transparent);
                width: 100%;
                height: 100%;
                position: absolute;
                top: 0;
                left: 0;
            }

    .text-content .text {
        font-size: 15px;
        font-weight: 300;
        margin-top: 10px;
        color: #4b4a4a;
        position: relative;
    }

        .text-content .text > .text-of-editor {
            height: 130px;
            overflow: hidden;
            transition: all 0.4s;
        }

        .text-content .text .linear-hide {
            width: 100%;
            color: #28c4cc;
            font-weight: 500;
            font-size: 12px;
            margin-top: 15px;
            display: none;
        }

            .text-content .text .linear-hide .collapseDescription {
                display: flex;
                align-items: center;
                gap: 5px;
                cursor: pointer;
                padding: 5px;
            }

                .text-content .text .linear-hide .collapseDescription img {
                    transition: all 300ms;
                }

    .text-content .categories {
        display: flex;
        gap: 10px;
        align-items: center;
        margin-top: 12px;
    }

.categories .category-item {
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 300;
    background-color: rgba(84, 88, 101, 0.09);
    border-radius: 9999px;
    color: #545865;
}

.categories > span {
    font-size: 12px;
    font-weight: 600;
    color: #434343;
}

.book-subinfo {
    display: flex;
    border-radius: 14px;
    justify-content: space-around;
    padding: 0 10px;
    background-color: #fff;
    margin-top: 20px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05), 0 0px 3px -1px rgba(0, 0, 0, 0.05);
}

    .book-subinfo .line-gap {
        height: 32px;
        width: 2px;
        display: block;
        background-color: #f5f7f9;
        top: 50%;
        transform: translateY(50%);
    }

    .book-subinfo .book-subinfo-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 12px;
        color: #707070;
        padding: 10px;
        gap: 4px;
        width: 25%;
    }

        .book-subinfo .book-subinfo-item .bii-text {
            text-overflow: ellipsis;
            text-wrap: nowrap;
            overflow: hidden;
            width: 100%;
            text-align: center;
        }

        .book-subinfo .book-subinfo-item.more {
            cursor: pointer;
            color: #28c4cc;
        }

.link-button {
    background: #dfdfdf;
    margin-top: 16px;
    border-radius: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 12px 12px 20px;
    color: #434343;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.14);
    cursor: pointer;
}

    .link-button.blue {
        background: rgba(40, 196, 204, 0.1);
        color: #00c0c4;
        box-shadow: 0 2px 0 rgba(28, 175, 183, 0.14);
    }

        .link-button.blue .lb-text-description {
            font-size: 11px;
            font-weight: 500;
            color: #6eb6ba;
        }

    .link-button.pruple {
        background: rgba(168, 108, 228, 0.14);
        color: #a85ef1;
        box-shadow: 0 2px 0 rgba(162, 94, 229, 0.18);
    }

        .link-button.pruple .lb-text-description {
            font-size: 11px;
            font-weight: 500;
            color: #aa92c2;
        }

.lb-content {
    display: flex;
    gap: 12px;
}

.lb-icon {
    padding: 8px;
    background: white;
    border-radius: 12px;
}

.lb-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 4px 0;
}

.lb-text-title {
    font-size: 14px;
    font-weight: 600;
}

.lb-text-description {
    font-size: 11px;
    font-weight: 500;
}

.media-box {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
}

    .media-box .mb-content .carousel-cell:not(:last-child) {
        padding-left: 0 !important;
    }

.mb-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--container-padding);
}

    .mb-topbar .mb-title {
        font-size: 14px;
        font-weight: 700;
        color: #434343;
    }

    .mb-topbar .mb-explore {
        font-size: 12px;
        font-weight: 500;
        color: #999999;
        user-select: none;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 4px;
    }

        .mb-topbar .mb-explore i {
            font-size: 10px;
        }

.media-production {
    width: 300px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.05), 0 0 3px -1px rgba(0, 0, 0, 0.2);
    gap: 12px;
    border-radius: 14px;
    background: #fff;
}

    .media-production .mp-content {
        height: 150px;
        border-radius: 10px;
        overflow: hidden;
    }


.mp-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .mp-footer .mp-senario {
        display: flex;
        align-items: center;
        gap: 4px;
        font-size: 12px;
        font-weight: 600;
    }

.mp-user {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #434343;
    font-size: 12px;
    font-weight: 600;
}

    .mp-user img {
        width: 30px;
        height: 30px;
        border-radius: 9999px;
        background-color: #f0f0f0;
    }

.media-production .note {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px;
    height: 100%;
    background: url("../images/notebook.jpg");
}

    .media-production .note .note-text {
        height: 100%;
        overflow: hidden;
        font-size: 13px;
        font-weight: 500;
        color: #4b4a4a;
    }

    .media-production .note .note-info {
        width: fit-content;
        align-self: flex-end;
        background-color: #fff;
        border-radius: 9999px;
        font-size: 11px;
        color: #949494;
        padding: 3px 8px;
    }

.media-production .mp-picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-production .mp-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.book-video-player {
    position: relative;
}

    .book-video-player .bvp-play-control-btn {
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 9999px;
        background-color: #00c0c4;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        user-select: none;
        transition: opacity 250ms;
    }

        .book-video-player .bvp-play-control-btn img {
            width: 17px;
        }

    .book-video-player.pause .bvp-pcb-pause {
        display: none;
    }

    .book-video-player.play .bvp-pcb-play {
        display: none;
    }

.mp-content.audio-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    border-radius: 8px;
    background-color: #f7f9fa;
    padding: 10px;
}

    .mp-content.audio-content .audio-content-text {
        height: 100%;
        overflow: hidden;
        font-size: 12px;
        color: #4b4a4a;
    }

/* book audio */

.baudio .baudio-btn {
    min-width: 38px;
    min-height: 38px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #28c4cc;
}

    .baudio .baudio-btn img:not(.show) {
        display: none;
    }

    .baudio .baudio-btn img {
        width: 16px;
    }

.baudio .baudio-time {
    color: #434343;
    font-size: 12px;
    font-weight: 500;
}

.baudio #bookaudio-container {
    width: 100%;
    height: 40px;
}

.study-priod {
    width: 90%;
    min-width: 310px;
    overflow: hidden;
    border-radius: 25px;
    border: 2px solid #fff;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05), 0 0px 3px -1px rgba(0, 0, 0, 0.05);
    background: #fff;
    max-width: 320px;
    user-select: none;
}

    .study-priod:hover {
        cursor: grab;
    }

    .study-priod:active {
        cursor: grabbing;
    }

    .study-priod img.sp-image {
        height: 120px;
        width: 100%;
        object-fit: cover;
        max-width: 320px;
    }

.sp-title {
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateY(-5px);
}

.sp-profile {
    width: 52px;
    height: 52px;
    border: 3px solid #fff;
    object-fit: cover;
    border-radius: 9999px;
    transform: translateY(-10px);
}

.sp-title .sp-text {
    font-size: 14px;
    font-weight: 600;
    color: #444444;
}

.sp-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sp-followers {
    display: flex;
    align-items: center;
    direction: ltr;
}

    .sp-followers .sp-follower {
        width: 30px;
        height: 30px;
        object-fit: cover;
        border-radius: 9999px;
        margin-left: -10px;
        border: 2px solid #fff;
    }

    .sp-followers .sp-follower-more {
        background-color: #e9eaee;
        color: #aeb2c0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

.sp-bottom-bar .sp-text {
    display: flex;
    gap: 9px;
    color: #828d99;
    font-size: 12px;
    font-weight: 500;
}

.sp-content {
    padding: 0 16px 12px 20px;
}

.bvp-progress-bar {
    display: inline-block;
    width: 100%;
    height: 5px;
    background: #000;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 250ms;
    cursor: default;
}

    .bvp-progress-bar:hover {
        height: 10px;
    }

        .bvp-progress-bar:hover .thumbler {
            height: 50%;
        }

    .bvp-progress-bar .thumbler {
        content: "";
        position: absolute;
        left: 0;
        width: 0%;
        height: 2px;
        border-radius: 0 999px 999px 0;
        top: 0;
        transition: width 250ms linear;
        background-color: #fff;
    }

@media only screen and (min-width: 576px) {
    .reading-status div {
        justify-content: center;
        gap: 16px;
    }
}

.timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    direction: ltr;
    margin-top: 16px;
}

    .timer > div {
        background: #fff;
        width: 60px;
        height: 60px;
        border-radius: 10px;
        box-shadow: 0 3px 1px -1px rgba(0, 0, 0, 0.08);
        font-size: 20px;
        font-weight: 500;
        color: #434343;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .timer .day, .timer .hour {
        display: none;
    }

    .timer > div::after {
        color: #999999;
        font-weight: 400;
        font-size: 14px;
    }

    .timer > .day::after {
        content: "روز";
    }

    .timer > .hour::after {
        content: "ساعت";
    }

    .timer > .minute::after {
        content: "دقیقه";
    }

    .timer > .second::after {
        content: "ثانیه";
    }

.boxDeadlineOver {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.deadlineOver {
    border-radius: 0.8rem;
    background-color: #ffc10730;
    padding: 10px 20px;
    color: #FF9800;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid #ff980038;
    margin-top: 20px;
    display: none;
}

.bottom-sheet .body {
    font-size: 15px;
    font-weight: 300;
    color: #4b4a4a;
}

.bottom-sheet .book-delivery .text {
    color: #595959;
    font-weight: 500;
    font-size: 1.05rem;
    margin-bottom: 25px;
    padding: 20px;
    text-align: center;
}

.bottom-sheet .delivery-types {
    margin-top: 20px;
}

    .bottom-sheet .delivery-types .dt-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 0;
        font-weight: 500;
        color: #5b6879;
        cursor: pointer;
    }

        .bottom-sheet .delivery-types .dt-item:not(:last-child) {
            border-bottom: 1px solid #ebedef;
        }

.value .cost {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 17px;
    font-weight: 500;
    color: #02476f;
    line-height: normal;
    /* height: fit-content; */
}

.bottom-sheet .value {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
    color: #444444;
    margin-top: 20px;
}

.textbox {
    padding: 14px 18px;
    background-color: #f6f7f9;
    border-radius: 15px;
    outline: none;
    font-size: 15px;
    color: #5b6879;
    font-weight: 400;
}

.input-control .textbox.invalid {
    outline: 1px solid #ff2b67 !important;
}

    .input-control .textbox.invalid + .invalid-text {
        color: #ff2b67;
        font-size: 13px;
        font-weight: 400;
    }

.textbox:focus {
    outline: 1.5px solid #cbd9dd;
}

.input-control {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

    .input-control .label {
        color: #767676;
        font-size: 13px;
        font-weight: 600;
    }

.delivery-to-person {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.user-information {
    display: flex;
    gap: 12px;
    margin: 20px 0 30px 0;
}

    .user-information img {
        width: 64px;
        height: 64px;
        object-fit: cover;
        border-radius: 9999px;
    }

    .user-information div {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        font-weight: 400;
        color: #808080;
        font-size: 14px;
    }

    .user-information .name {
        color: #444444;
        font-size: 16px;
        font-weight: 600;
    }

.shelfs {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 10px;
}

.shelf-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .shelf-item img.icon {
        padding: 8px;
        border-radius: 12px;
        background-color: #e5f5f5;
    }

    .shelf-item .content {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .shelf-item span.title {
        color: #444444;
        font-size: 14px;
        font-weight: 600;
    }

    .shelf-item span.description {
        color: #808080;
        font-size: 14px;
        font-weight: 400;
    }

/* loader animation */
.loader {
    width: 22px;
    transform-origin: center;
    animation: rotate4 2s linear infinite;
}

    .loader circle {
        fill: none;
        stroke: hsl(214, 84%, 15%);
        stroke-width: 6;
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
        stroke-linecap: round;
        animation: dash4 1.5s ease-in-out infinite;
    }

@keyframes rotate4 {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash4 {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 90, 200;
        stroke-dashoffset: -35px;
    }

    100% {
        stroke-dashoffset: -125px;
    }
}

.properties .property-item {
    display: flex;
    justify-content: space-between;
    padding: 18px 0;
    font-size: 14px;
    font-weight: 500;
}

.property-item .name {
    display: flex;
    gap: 10px;
    color: #808080;
    align-items: center;
}

.property-item .text {
    color: #434343;
}

.property-item:not(:last-child) {
    border-bottom: 1px solid #ebedef;
}

.property-item:first-child {
    padding-top: 0;
}

.make-media-box {
    background-color: #fff;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px;
    margin-top: 18px;
    border-radius: 18px;
    margin: 18px 20px 0 20px;
    cursor: pointer;
    user-select: none;
}

    .make-media-box > div:first-child {
        display: flex;
        gap: 10px;
    }

        .make-media-box > div:first-child .icon {
            padding: 11px;
            border-radius: 14px;
            background-color: rgba(0, 192, 196, 0.1);
        }

        .make-media-box > div:first-child .title {
            font-weight: 700;
            font-variation-settings: 'ss04';
            color: #00C0C4;
        }

        .make-media-box > div:first-child .description {
            font-size: 12px;
            color: #8B9596;
        }

        .make-media-box > div:first-child .textes {
            display: flex;
            flex-direction: column;
            padding: 3px 0;
            justify-content: space-between;
        }

@media only screen and (min-width: 500px) {
    #bsheet-media-production p {
        text-align: center;
    }
}

.production-type-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
    margin: 24px auto 0;
    padding: 0 4px;
    max-width: 360px;
}

.production-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    outline: 1px solid #EEF1F3;
    border-radius: 18px;
    padding: 14px 10px 18px 10px;
    transition: all 85ms ease;
    cursor: pointer;
    position: relative;
    user-select: none;
}
.production-type .check-tick {
    position: absolute;
    top: 9px;
    right: 9px;
    width: 21px;
    height: 21px;
}
.production-type:not(.selected) .check-tick {
    display: none;
}

    .production-type.selected {
        outline-width: 2px;
        outline-color: #00C0C4;
        box-shadow: 0 6px 12px -3px rgba(0, 192, 196, 0.1);
    }

    .production-type .title {
        color: #434343;
        font-weight: 700;
        text-align: center;
        margin-top: 14px;
    }

    .production-type img {
        width: 34px;
    }

    .production-type .description {
        color: #808080;
        margin-top: 4px;
        font-size: 12px;
        text-align: center;
    }

.button {
    padding: 13px;
    border-radius: 15px;
    background-color: #00C0C4;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    width: 100%;
    margin-top: 30px;
}

.book-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

    .book-row img {
        min-width: 68px;
        height: 90px;
        object-fit: cover;
        border-radius: 8px;
        box-shadow: 0px 6px 12px -3px rgba(0, 0, 0, 0.1), 0px 4px 2px -2px rgba(0, 0, 0, 0.08);
    }

    .book-row .textes {
        display: flex;
        flex-direction: column;
    }

    .book-row .title {
        color: #434343;
        font-weight: 600;
        font-size: 14px;
    }

    .book-row .author {
        color: #707070;
        font-size: 12px;
        margin-top: 8px;
        font-weight: 400;
    }

.label-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .label-group .char-counter {
        display: inline-flex;
    }

    .label-group .label-msg {
        color: #999999 !important;
        font-size: 12px !important;
        font-weight: 500 !important;
        margin-left: 5px;
    }

        .label-group .label-msg * {
            color: #999999 !important;
            font-size: 12px !important;
            font-weight: 500 !important;
        }

.bottom-sheet .body.p-cover-need {
    padding: 4px;
}

.bottom-sheet textarea.textbox {
    scrollbar-width: none;
    height: 131px;
}

.file-button {
    border: 2px dashed #CBD9DD;
    color: #545865 !important;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    padding: 11px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .file-button > .display {
        display: flex;
        align-items: center;
        gap: 10px;
        min-width: fit-content;
    }

    .file-button > .filename {
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
        direction: ltr;
        text-wrap: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

#bsheet-pob, #bsheet-mob {
    height: 500px;
}

    #bsheet-pob .body {
        position: relative;
        overflow: hidden;
    }

    #bsheet-pob [screen="1"], #bsheet-mob .body {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    #bsheet-pob [screen="2"] {
        display: flex;
        flex-direction: column;
    }
    #bsheet-pob [cropper-wrapper] {
        flex-grow: 1;
        overflow: hidden;
    }

    #bsheet-pob [screen] {
        width: 100%;
        height: 100%;
        transition: all 0.2s;
    }
    #bsheet-pob .canvas {
        width: 100%;
        height: 100%;
        display: block;
        max-width: 100%;
        background-color: #434343;
        border-radius: 20px;
        object-fit: contain;
    }

.cropper-container {
    width: 100% !important;
}