.div_1 {
    background-color: #fff;
    padding: 20px;
    margin: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
    overflow-y: overlay;
    overflow-x: hidden;
    /*border: 0.5px solid var(--blue-dark);*/
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.div_2, .div_3, .div_4, #div_tickets_2, #div_pardakhts_2, #div_pardakhts_3 {
    background-color: #fff;
    position: relative;
    display: none;
    height: 100%;
    border-radius: 10px;
    overflow-y: overlay;
    overflow-x: hidden;
    padding: 70px 10px 32px !important;
    box-shadow: var(--box-shadow);
    margin: auto;
}

/*note div*/
.note_div {
    background-color: #fff;
    position: relative !important;
    display: none;
    height: 100%;
    border-radius: 10px;
    overflow-y: overlay !important;
    overflow-x: hidden;
    padding: 0 !important;
    box-shadow: var(--box-shadow);
}

.note_div p {
    margin: 10px 0 0 0;
    text-align: center;
}

.note_div textarea {
    height: 30vh;
    width: 100%;
    margin: 10px 2px;
    padding: 20px;
    resize: none;
}

.note_div input, #div_d_notes_3 #p_note_title {
    margin: 16px auto;
    display: block;
    text-align: center;
    border-radius: 5px;
    padding: 5px;
    border: none;
}

.list_div {
    padding: 30px 20px;
}

.list_div ul {
    margin: 10px 0;
    padding: 0;
}

.list_div ul li {
    list-style: none;
    position: relative;
    padding: 10px 5px;
    margin: auto 0;
    border-bottom: 0.5px dotted var(--blue-dark);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.4s;
}

.list_div ul li.active {
    background-color: var(--scroll-bar-color);
}

.list_div ul li:hover {
    background-color: var(--bgc-container-pattern-color);
}

.list_div ul li p {
    margin: auto 0;
}

.hover_ul {
    margin: 10px 0;
    padding: 0;
}

.hover_ul li {
    list-style: none;
    padding: 5px 5px;
    margin: auto 0;
    border-bottom: 0.5px dotted var(--blue-dark);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.4s;
}

.hover_ul li:hover {
    background-color: var(--bgc-pattern-color);
}

/*patient list*/
.patient_list {
    padding: 30px 20px;
}

.patient_list .patient_list_ul {
    padding: 0;
    margin: 5px 0;
}

.patient_list .patient_list_ul li {
    list-style: none;
    padding: 10px 5px;
    margin: auto 0;
    border-bottom: 0.5px dotted var(--blue-dark);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.4s;
    align-items: center;

}

.patient_list .patient_list_ul li:hover {
    box-shadow: var(--box-shadow-light) !important;
}

.patient_list .patient_list_ul li.active {
    box-shadow: var(--box-shadow-light) !important;
}

.patient_list .patient_list_ul li p {
    margin: auto 0;
}

/*doctor list*/
.doctor_list {
    padding: 20px;
}

.doctor_list .doctor_list_ul {
    padding: 0;
    margin: 5px 0;
}

.doctor_list .doctor_list_ul li {
    list-style: none;
    padding: 10px 5px;
    margin: auto 0;
    border-bottom: 0.5px dotted var(--blue-dark);
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    cursor: pointer;
    transition: 0.4s;
    position: relative;
}

.doctor_list .doctor_list_ul li:hover {
    box-shadow: var(--box-shadow-dark) !important;
}

.doctor_list .doctor_list_ul li.active {
    box-shadow: var(--box-shadow-light) !important;
}

.doctor_list .doctor_list_ul li p {
    margin: auto 0 !important;
}

.doctor_list .doctor_list_ul li a {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
}

#policy_container {
    margin: 20px;
}

/* Style the buttons that are used to open and close the accordion panel */
.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    /*text-align: left;*/
    border: none;
    outline: none;
    transition: 0.4s;
    margin: 70px 30px 30px 30px;
    font-size: 26px;
    font-weight: bolder;
    display: flex;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}

div.accordion:hover {
    background-color: #bababa;
}

div.accordion:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: #777;
}

div.accordion.active:after {
    content: "\2796"; /* Unicode character for "minus" sign (-) */
}

/* Style the accordion panel. Note: hidden by default */
.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: all 0.2s ease-out;
}

.workshop_div {
    background: linear-gradient(
            45deg, var(--blue-dark), var(--blue));
    color: white;
}

.clip_div {
    background: linear-gradient(
            45deg, var(--green-medium-dark), var(--green));
    color: black;
}

@media (max-width: 768px) {
    .div_1 {
        width: 100%;
    }

    .div_2, .div_3, .div_4 {
        display: none;
        width: 100%;
        margin: 0;
    }

    .note_div {
        display: none;
        width: 100%;
        margin: 0;
    }

    .list_div {
        /*display: none;*/
        width: 100%;
        margin: 0;
    }
}