@import url(https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap);

* {
    margin: 0px;
    padding: 0px;
    font-family: "Montserrat", sans-serif;
    box-sizing: border-box
}

body {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px
}

.header {
    display: flex;
    flex-direction: row;
    width: 100%;
    border-bottom: 3px solid #0082c8;
    padding: 5px 10px;
    align-items: center
}

.header .header__img {
    display: flex;
    flex-direction: column;
    justify-content: center
}

.header h1 {
    font-weight: 600;
    color: #000;
    font-size: 42px
}

.deactive {
    display: none
}

.info-doctor {
    position: fixed;
    top: 0px;
    width: 100vw;
    height: 100vh;
    border-radius: 10px;
    padding: 40px 30px;
    background: #fffefe;
    z-index: 9999;
    overflow: scroll
}

.info-doctor h2 {
    font-weight: 600;
    margin: 75px 0px;
    font-size: 32px
}

.info-doctor .img {
    display: inline-block;
    overflow: hidden;
    border-radius: 50%;
    width: 500px;
    height: 500px;
    background: #fff;
    margin: 0px;
    padding: 0px
}

.info-doctor .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.info-doctor div {
    margin-top: 30px
}

.info-doctor div strong,
.info-doctor div b {
    font-weight: 600
}

.info-doctor div p {
    font-size: 16px;
    margin: 10px 0px
}

.info-doctor div h3,
.info-doctor div h4 {
    margin: 10px 0px;
    font-size: 18px;
    font-weight: 600
}

.info-doctor div ul {
    margin: 14px 0px
}

.info-doctor div ul li {
    margin: 8px 0px;
    font-size: 16px
}

.info-doctor .close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    padding: 8px 20px;
    font-size: 45px;
    border-radius: 0px;
    color: #fff;
    border: none;
    background-color: #0082c8;
    cursor: pointer
}

.info-doctor .close-btn:hover {
    background-color: #0791dc
}

.table-body-shedule {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 30px;
    padding: 10px
}

.table-body-shedule table {
    width: 100%;
    border-collapse: collapse
}

.table-body-shedule table tr:nth-child(odd) {
    background-color: #dff5fb
}

.table-body-shedule table th {
    padding: 8px;
    border: 1px solid #5d5d5d;
    background-color: #0082c8;
    color: #fff;
    font-weight: 500
}

.table-body-shedule table td {
    padding: 5px;
    border: 1px solid #5d5d5d
}

.table-body-shedule table .doc-name {
    min-width: 190px;
    font-weight: 600;
    color: #404557;
    cursor: pointer
}

.table-body-shedule table .doc-name:hover {
    background: #0082c8;
    color: #fff
}

.table-body-shedule table .date {
    min-width: 100px;
    font-weight: 600;
    color: #404557;
    display: flex;
    justify-content: center;
    align-items: center;

}

.table-body-shedule table .interval .div-interval {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center
}

.table-body-shedule table .interval .div-interval .st,
.table-body-shedule table .interval .div-interval .en {
    display: flex;
    flex-direction: row;
    position: relative;
    width: -moz-max-content;
    width: max-content;
    align-items: flex-end
}

.table-body-shedule table .interval .div-interval .en {
    margin-left: 3px
}

.table-body-shedule table .interval .div-interval .en::before {
    content: "-";
    margin-right: 3px
}

.table-body-shedule table .interval .div-interval .st::after,
.table-body-shedule table .interval .div-interval .en::after {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    content: attr(data);
    font-size: 10px;
    margin: 0px 2px 5px 2px
}

.table-body-shedule table .depart {
    text-align: center;
    font-weight: 600;
    word-wrap: break-word;
    max-width: 140px;
    background: #fff;
    color: #404557;
    font-weight: 500
}