.appointment-wrapper {
    background-color: rgb(41 97 250 / 10%);
    padding: 10px 40px;
    min-height: 100vh;
}
.appointment-container {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 0 20px #77777729;
    position: relative;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}
.appointment-content {
    padding: 20px 30px 117px;
    min-height: calc(100vh - 20px);
    display: flex;
    flex-direction: column;
}
.appointment-time {
    max-height: 350px;
    overflow-y: auto;
    padding: 10px;
}

.appointment-time-item {
    cursor: pointer;
    border: 1px solid #cbcbcb;
    background: #fff;
    margin: 10px 0;
    padding: 6px 10px;
    border-radius: 8px;
}

.appointment-time-item:hover {
    background: #fdfdfd;
}

.appointment-time-item.selected {
    border: 1px solid #000;
    background: #000;
    color: #fff;
}

.appointment-booked-item {
    cursor: pointer;
    border: 1px solid #cbcbcb;
    background: #fff;
    margin: 10px 0;
    padding: 6px 10px;
    border-radius: 8px;
    position: relative;
}

.appointment-booked-item-action {
    opacity: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0 0 0 / 45%);
    transition: all 0.4s;
    border-radius: 5px;
}
.appointment-booked-item-action .btn{
    height: 36px;
    line-height: 20px;
}
.appointment-booked-item:hover .appointment-booked-item-action {
    opacity: 1;
}

.appointment-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 10px 10px 0 0;
}
.border-right {
    border-right: 1px solid #dee2e6;
}

.appointment-toparea {
    text-align: center;
}
.ap-image {
    max-width: 265px;
    width: 100%;
}
.ap-brnad-name {
    font-size: 16px;
    font-weight: 900;
    line-height: 21px;
    margin-top: 17px;
    color: #2d2756;
}
.ap-sub-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
    margin-top: 4px;
    margin-bottom: 15px;
}
.btn-appointment {
    text-align: center;
    flex-direction: column;
    cursor: pointer;
    border: 0;
    transition: all 0.4s;
}
.btn-appointment:hover {
}
.btn-appointment .ap-btn-inner-icon {
    align-items: center;
    border-radius: 50%;
    display: flex;
    height: 72px;
    justify-content: center;
    width: 72px;
    border-radius: 100px;
}
.btn-appointment .svg-path {
    fill: #aaa;
    transition: all 0.4s;
}
.btn-appointment:hover .svg-path,
.btn-appointment.active .svg-path {
    fill: #000;
}
.btn-appointment.active .ap-btn-inner-icon {
    background: aliceblue;
}
.btn-appointment.active .ap-btn-inner-text {
    color: #000;
}
.btn-appointment .ap-btn-inner-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 19px;
    text-transform: capitalize;
    color: #aaaaaa;
    margin-top: 10px;
    margin-bottom: 5px;
}
.ap-structure-wrap {
    display: flex;
    width: 100%;
    min-height: calc(100vh - 280px);
}
.ap-structure-wrap .ap-structure-left {
    width: 250px;
    min-width: 250px;
    padding: 50px 15px 15px;
}
.ap-structure-wrap .ap-structure-right {
    width: 100%;
    padding: 15px;
    display: flex;
    flex-direction: column;
}
.ap-structure-wrap .ap-structure-title {
    font-size: 28px;
    font-weight: 600;
    line-height: 37px;
    margin: 0;
    padding-left: 8px;
    margin-bottom: 50px;
    margin-top: 30px;
}
.iti{
    width: 100%;
}
.ap-structure-right-inner{
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    min-height: 90%;
}
.chat-form{
    display: flex;
    flex-direction: column;
    height: 100%;
}
.schedule-wrap-area{
    min-height: calc(100vh - 320px);
    border-radius: 10px;
}
.schedule-wrap-area .ap-image{
    max-width: 120px;
}


@media screen and (max-width: 767.98px) {
    .appointment-wrapper{
        padding: 10px 10px 100px;
    }
    .appointment-content{
        padding: 15px;
    }
    .ap-structure-wrap{
        flex-wrap: wrap;
    }
    .ap-structure-wrap .ap-structure-left{
        width: 100%;
    }
    .ap-structure-wrap .ap-structure-right{
        width: 100%;
        margin-bottom: 20px;
    }
    .ap-structure-wrap .ap-structure-title{
        margin-bottom: 30px;
        margin-top: 30px;
        font-size: 22px;
    }
    .appointment-buttons{
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #fff;
        overflow-x: auto;
        flex-wrap: nowrap;
        max-width: 100%;
        display: block;
        white-space: nowrap;
        gap: 0px;
        padding: 10px 10px 5px;
    }
    .btn-appointment .ap-btn-inner-icon{
        width: 36px;
        height: 36px;
        margin: 0 auto;
    }
    .btn-appointment .ap-btn-inner-icon svg{
        width: 30px;
        height: 30px;
    }
    .btn-appointment .ap-btn-inner-icon svg.ap-btn-inner-icon-size{
        width: 18px;
        height: 18px;
    }
    .appointment-buttons::-webkit-scrollbar{
        display: none;
    }
    .ap-image {
        max-width: 155px;
        width: 100%;
    }
}
