.koalendarFrame {
    display: none;
}

.appointmentRootContainer {
    margin: 0 auto;
    display: flex;
    max-width: 1200px;

    .appointmentContainer {
        width: 100%;
        margin: 5px;
        text-align: center;

        .cover {
            width: 100%;
            aspect-ratio: 1;
            overflow: hidden;
            background-size: cover;
        }

        .title {
            font-size: 14px;
            color: #933;
            padding: 10px;
            background-color: rgb(255, 233, 223);
        }

        .desc {
            margin-top: 10px;
            font-size: 14px;
            height: 150px;
        }

        .minute {
            font-weight: bolder;
        }

        .BTN {
            font-weight: normal;
            background: #fff0f0;
            padding: 5px;
            font-size: 14px;
            line-height: 30px;
            margin-top: 10px;
            cursor: pointer;
            user-select: none;
        }

    }
}


@media (max-width: 800px) {
    .appointmentRootContainer {
        display: block;

        .appointmentContainer {
            margin-left: 20px;
            margin-bottom: 40px;
            width: calc(100% - 40px);

            .cover {

            }

            .title {

            }

            .desc {
                padding: 5px;
                height: auto;
            }
        }
    }
}
