/*error massage*/
#error_massage {
    display: none;
    padding: 0 20px;
    color: red;
    margin: 0;
}

.iframe_local_div {
    height: 50vh;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.iframe_local {
    margin-top: -50px;
    /*width: calc(100%);*/
    /*height: calc(100% + 100px);*/
}



/*BUTTONS*/
.ravandarman_btn {
    color: white;
    background-color: var(--green-dark);
    border: 0;
    font-size: 16px;
    margin: 6px auto;
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    border-radius: var(--border-radius);
    transition: 0.3s;
}

.ravandarman_btn.blue_btn {
    background-color: var(--blue);
}

.ravandarman_btn:hover {
    color: white;
    background-color: var(--green-medium-dark);
    box-shadow: 0 3px 6px var(--my-gray-color-light);
    transform: translateY(-2px);
    border: none !important;
}

.ravandarman_back_btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    color: var(--blue-dark);
    cursor: pointer;
    z-index: 10;
}

.white_back_btn {
    color: white;
}

.ravandarman_btn_small {
    width: auto !important;
    margin: 6px;
    padding: 3px 10px;
    height: auto;
}

.ravandarman_btn_link {
    width: auto !important;
    margin: 6px;
    padding: 1px 14px;
    height: auto;
    background-color: transparent !important;
    border: 2px solid var(--blue);
    color: var(--blue);
    box-shadow: none;
}

.ravandarman_btn_link.active {
    background-color: var(--blue) !important;
    color: white !important;
    box-shadow: var(--box-shadow-light);
}

.ravandarman_btn_link:hover {
    background-color: var(--blue) !important;
    color: white !important;
    border: none !important;

}

.ravandarman_btn_href {
    width: auto !important;
    margin: 6px;
    padding: 5px 10px;
    height: auto;
    background-color: transparent !important;
    border-bottom: 2px solid var(--blue);
    color: var(--blue);
    box-shadow: none;
    transition: all 0.2s;
    border-radius: 0;
}

.ravandarman_btn_href:hover {
    border-bottom: 2px solid var(--green) !important;
    color: inherit;
    background-color: inherit;
    box-shadow: none;
    transform: translateY(-2px);
}

.ravandarman_btn_orange {
    color: white;
    background-color: #FD7E14FF;
}

.ravandarman_btn_orange:hover {
    background-color: #ba5b10;
}

.ravandarman_more_btn {
    position: absolute;
    top: 24px;
    left: 20px;
    cursor: pointer;
    z-index: 10;
    height: 25px;
    width: 25px;
}

.ravandarman_call_btn {
    position: absolute;
    top: 25px;
    left: 55px;
    cursor: pointer;
    z-index: 10;
    height: 25px;
    width: 25px;
}

.img_profile_big {
    width: 100px !important;
    height: 100px;
    border-radius: 50%;
    box-shadow: var(--box-shadow-dark);
    object-fit: cover;
}

.img_profile_small {
    background-size: 20px;
    width: 50px !important;
    height: 50px;
    border-radius: 50%;
    box-shadow: var(--box-shadow-dark);
    object-fit: cover;
}

.img_profile_very_small {
    background-size: 20px;
    width: 30px !important;
    height: 30px;
    border-radius: 50%;
    /*box-shadow: var(--box-shadow-dark);*/
    object-fit: cover;
}

.img_poster_small {
    width: 100px !important;
    height: 150px;
    border-radius: 10px;
    /*box-shadow: var(--box-shadow-dark);*/
    object-fit: cover;
}

.img_poster_big {
    display: block;
    margin: auto;
    width: 200px !important;
    height: 300px;
    border-radius: 10px;
    box-shadow: var(--box-shadow-dark);
    object-fit: cover;
}

.div_banner {
    display: flex;
    justify-content: space-between;
    background-color: var(--blue-dark);
    color: white;
    padding: 10px;
    align-items: center;
    margin: 0;
}

.div_banner p {
    margin: 0;
    text-align: center;
}

.div_banner_fade {
    display: flex;
    justify-content: space-between;
    background-color: var(--green-dark);
    opacity: 0.7;
    color: white;
    padding: 2px 10px;
    align-items: center;
    margin: 0;
}

.div_banner_fade p {
    margin: 0;
}

.p_description {
    text-align: justify;
    background-color: aliceblue;
    padding: 20px 15px;
    border-radius: 10px;
    box-shadow: var(--box-shadow-dark);
    margin-bottom: 10px;
    font-size: small !important;
}

.p_empty {
    text-align: center;
    margin: 20px !important;
    color: gray;
}

.site_logo {
    display: inline-block;
    margin: auto 30px auto 0;
    width: 50px;
    height: 50px;
    cursor: pointer;
}

.p_fade {
    font-size: x-small;
    color: #b3b3b3;
}

.log_div_main {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.2);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.log_div_child {
    width: 50%;
    max-height: 80vh;
    background-color: white;
    border-radius: 10px;
    padding: 40px 20px;
    overflow: auto;
    position: relative;
    box-shadow: 0 0 10px var(--box-shadow);
    margin: auto;
    z-index: 10;
}

.log_div_child.notification {
    width: 35%;
    position: absolute;
    margin: 10px;
    bottom: 10px;
    right: 0;
}

.log_div_child .btn_close_log {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    color: var(--blue-dark);
    cursor: pointer;
}

.log_div_child .btn_select_log {
    cursor: pointer;
}

/*call log*/
.log_call_div_main {
    direction: ltr;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.2);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.log_call_div_main .call_go_to_note {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: aliceblue;
    padding: 10px;
    border-radius: 10px;
    transition: all 1s;
}

.log_call_div_main .call_go_to_note.active {
    width: 40vw;
    height: 85vh;
}

.log_call_div_main .call_go_to_note #call_note_div {
    width: 100%;
    height: 95%;
}

.bi-question-circle {
    color: var(--blue-dark);
    font-size: small;
    cursor: pointer;
}

.zero_top_padding {
    padding-top: 0 !important;
}

.little_top_padding {
    padding-top: 10px !important;
}

.non_display {
    width: 0;
    height: 0;
    opacity: 0;
    display: none;
}

.p_id {
    width: 0;
    height: 0;
    opacity: 0;
    display: none;
}

/*p_notes*/
.span_divider {
    display: block;
    width: 100%;
    margin: 10px auto;
    height: 2px;
    background-color: var(--blue-dark);
}

.top_banner {
    background-color: var(--blue-dark);
    width: 100%;
    position: relative;
    padding: 70px 32px 32px;
}

.top_banner .ravandarman_back_btn {
    color: white;
}

#p_meeting_date {
    position: absolute;
    top: 25px;
    left: 20px;
    color: white;
    margin: 0;
    cursor: pointer;
}

#p_meeting_number {
    font-size: large;
    color: white;
    font-weight: bold;
}

#p_note_title {
    font-size: large;
    color: white
}

#create_note_btns_div {
    display: flex;
    flex-direction: row;
}

#create_note_btns_div button {
    margin: 0 5px !important;
}

.toggler {
    display: flex;
    justify-content: space-around;
    align-content: stretch;
    align-items: stretch;
    border: 2px solid var(--blue-dark);
    background-color: var(--bgc-container-pattern-color);
}

.toggler div {
    border: 1px solid var(--blue-dark);
    padding: 12px;
    width: 100%;
    text-align: center;
    font-size: larger;
    color: gray;
    cursor: pointer;
    transition: all 0.3s;
}

.toggler div.active {
    background-color: var(--blue-dark);
    color: white;
    font-weight: bold;
}

.clinic_name_p {
    transform: rotate(
            90deg);
    background-color: var(--blue);
    font-size: xx-small;
    color: white;
    position: absolute;
    left: -30px;
    bottom: 28px;
    text-align: center;
    border-radius: 0 0 3px 3px;
    width: 70px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 2px;
}

.meeting_online_p {
    transform: rotate(
            90deg);
    background-color: var(--orange);
    font-size: xx-small;
    color: white;
    position: absolute;
    left: -12px;
    bottom: 8px;
    text-align: center;
    border-radius: 0 0 3px 3px;
    width: 29px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 2px;
}

.meeting_paid_p {
    transform: rotate(90deg);
    font-size: xx-small;
    color: white;
    position: absolute;
    right: -12px;
    bottom: 12px;
    text-align: center;
    border-radius: 3px;
    width: 40px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
    padding: 0 2px;
}

.meeting_paid_p.paid {
    background-color: var(--notification-green-bgc);
}

.meeting_paid_p.not_paid {
    background-color: var(--notification-red-bgc);
}

/*ck_editor*/
.ck-content p, .ck-content h1, .ck-content h2, .ck-content h3 {
    text-align: right !important;
}

.ck.ck-toolbar {
    background: var(--bgc-pattern-color) !important;
    border: 1px solid var(--scroll-bar-color) !important;
}

.ck.ck-editor__main > .ck-editor__editable {
    border-color: var(--scroll-bar-color) !important;
    height: var(--ck-editor-height) !important;
}

.ck.ck-button.ck-button_with-text {
    padding: 0 !important;
    width: 66px !important;
}

.todo-list {
    padding-right: 10px !important;
}

.todo-list li {
    margin-bottom: 3px !important;
    max-height: 30px !important;
}

.ck-content .todo-list .todo-list__label > input:after {
    left: 1px !important;
    top: 7px !important;
}

div.text_area {
    padding: 16px;
    border: 1px solid var(--scroll-bar-color);
    height: var(--ck-editor-height);
    border-radius: 2px;
    overflow: auto;
}

.loading_div {
    margin: 10px;
}

#landing_scroller_btn {
    position: absolute;
    bottom: 6vh;
}

#landing_scroller_btn img {
    width: 4vw;
    max-width: 20px;
    height: 4vh;
    max-height: 28px;
}

#landing_scroller_btn i {
    animation: scroll_anim 1s ease-in-out infinite alternate-reverse;
}

.my_icon {
    width: 20px;
    height: auto;
}

.my_big_icon {
    width: 25px !important;
    height: auto;
    opacity: 0.5;
    margin: 5px;
}

.datepicker-plot-area {
    font-family: IRANSans !important;
}

.visible {
    visibility: visible;
    opacity: 1;
    animation: go_up 500ms ease-in-out;
    animation-delay: 100ms;
    transition: opacity 500ms ease-in-out;
}

.hidden {
    visibility: hidden;
    opacity: 0;
    animation: go_down 500ms ease-in-out;
    transition: visibility 0s 500ms, opacity 500ms ease-in-out;
}

/*switch button*/
.switch {
    position: relative;
    display: inline-block;
    width: calc(var(--switch-button-r) * 1.8);
    height: var(--switch-button-r);
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: var(--switch-button-h);
    width: var(--switch-button-h);
    left: 4px;
    bottom: 3px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(var(--switch-button-h));
    -ms-transform: translateX(var(--switch-button-h));
    transform: translateX(var(--switch-button-h));
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.switch_parent p.active {
    font-weight: bold;
    /*font-size: larger;*/
    color: black;
}

.switch_parent p {
    font-weight: lighter;
    /*font-size: smaller;*/
    color: darkgray;

}

/*switch button*/

/*rating*/
.rating_div i {
    margin: 0 3px;
}

.rating_div .bi-star:hover {
    color: orange;
}

.rating_div i.checked {
    color: orange;
}

.div_doctor_rating {
    font-size: xx-small;
    opacity: 0.7;
    width: 30%;
}

.div_doctor_rating div {
    /*display: flex;*/
    /*justify-content: space-between;*/
}

.div_doctor_rating div i {
    margin: 0 1px;
}

.div_education_rating {
    font-size: xx-small;
    opacity: 0.8;
    margin: 10px;
    text-align: center;
}

.div_education_rating div {
    display: flex;
    justify-content: start;
    align-items: center;
}

.div_education_rating div i {
    margin: 0 1px;
}

.searchInput {
    background-image: url('../../styles/images/search_2.svg');
    background-size: 24px;
    background-position: right 10px center;
    background-repeat: no-repeat;
    width: 100%;
    padding: 8px 40px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
}

/*
---------workshops--------
*/

#workshops_ul {
    padding: 0;
    margin: 0;
}

#clips_ul {
    padding: 0;
    margin: 0;
}

.w_description {
    font-size: x-small;
    max-width: 45%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.w_category {
    max-width: 45%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.w_category_complete {
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.w_rating {
    position: absolute;
    top: 20px;
    left: 20px;
    max-width: 30%
}

.w_title {
    font-weight: bold;
    color: var(--blue-dark);
    max-width: 45%
}

.w_title_complete {
    font-weight: bold;
}

.w_description_complete {
    font-size: x-small;
}

.w_doctors_name {
    background-color: var(--green-medium-dark);
    color: white;
    border-radius: 5px;
    padding: 3px 5px !important;
    max-width: max-content;
}

.w_dates {
    background-color: antiquewhite;
    border-radius: 5px;
    padding: 3px 5px !important;
    margin: 1px 0;
    width: fit-content;
    color: black;
}

.w_link {
    background-color: aliceblue;
    border-radius: 5px;
    padding: 3px 5px;
    color: black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 5px;
}

.w_link p {
    word-wrap: break-word;
    max-width: 80%;
    text-overflow: ellipsis;
}

.w_patient_list {
    background-color: white;
    border-radius: 5px;
    padding: 3px 5px;
    color: black;
    cursor: pointer;
}

.w_video_list {
    background-color: black;
    border-radius: 5px;
    padding: 3px 5px;
    color: white;
    cursor: pointer;
}

.workshop_li {
    list-style: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: right !important;
    border-bottom: 1px solid #cccccc;
    padding: 5px;
    transition: all 0.4s;
}

.workshop_li.simple {
    list-style: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: right !important;
    border-bottom: 1px solid #cccccc;
    padding: 5px;
    transition: all 0.4s;
    color: inherit;
}

.workshop_li a {
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0;
}

.workshop_li:hover {
    background-color: var(--bgc-container-pattern-color);
}

.workshop_li div {
    padding: 0 10px;
}

.workshop_li p {
    padding: 10px 0;
}

.workshop_details_div p {
    margin: 5px;
    padding: 5px;
}

.workshop_details_div i {
    padding: 0 5px;
    font-size: larger;
}

#div_search_workshops {
    font-size: small;
    padding: 10px;
    background: aliceblue;
    border-radius: 10px;
}

#div_search_workshops div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#rating_div {
    border-top: 2px solid white;
    margin: 10px;
    background-color: rgba(255, 255, 255, 0.1);
}

.p_tozih {
    font-size: x-small;
    color: rgba(0, 0, 0, 0.6);
    padding: 5px;
}

.p_tozih:before {
    content: " • ";
}

/*
3d transform
*/
.perspective {
    position: relative;
    width: 25vw;
    height: 50vh;
    transform-style: preserve-3d;
    transform: rotateY(-30deg) rotateX(40deg) rotateZ(13deg);
    box-shadow: 17px 29px 30px -10px rgb(0 0 0 / 20%);
}

.perspective_left {
    transform: rotateY(17deg) rotateX(36deg) rotateZ(-15deg) !important;
    box-shadow: -17px 29px 30px -10px rgb(0 0 0 / 20%) !important;
}

.perspective img {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    transform: translateZ(6px);
}

.bottom,
.left {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    transition: all 1s linear;
    overflow: hidden;
    border-radius: 3px;
    transform: translateZ(16px);
}

.left {
    transform: rotateY(270deg) translateX(-1px);
    /*transform-origin: center left;*/
    width: 18px;
}

.bottom {
    transform: rotateX(90deg) translateY(15px) translateZ(-480px);
    transform-origin: bottom center;
    height: 18px;
}

.bottom img {
    transform: rotateX(180deg);
    width: 100%;
    height: 100%;
    left: 0px;
}

.bi-share-fill {
    position: absolute;
    top: 20px;
    left: 20px;
    color: white;
    font-size: x-large;
    cursor: pointer;
}

/*price box*/
.price_box {
    color: #777;
    font-size: 16px;
    display: flex;
    align-items: center;
    border: 2px dashed #adadad;
    background-color: #eeeeee;
    padding: 0 15px;
    margin: 5px 5px 15px;
    border-radius: 10px;
    line-height: 52px;
    position: relative;
}

.price_box strong {
    padding-left: 20px;
    border-left: 2px dashed #adadad;
    font-weight: 500;
    width: 100%;
    max-width: 84px;
    text-align: center;
    height: inherit;
}

.price_box p.price {
    font-size: larger;
    font-weight: bolder;
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: left;
}

.price_box span.toman {
    float: left;
    color: grey;
    font-weight: 400;
    text-align: center;
    margin-right: 5px;
}

/*doctor_list*/
.bi-star, .bi-star-fill {
    width: 10px;
    height: 10px;
    margin: 0 0.5px;
}

.doctor_list_p_banner {
    border-bottom: 2px solid var(--green-dark);
    font-weight: bold;
    padding: 5px;
    text-align: center;
}

.doctor_list_education {
    max-width: 80%;
    min-width: 65%;
}

#div_p_profile_doctor_clinic_details {
    background-color: var(--blue);
    color: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    margin: 10px;
}

#nav_toggler {
    display: none;
}

@media (max-width: 768px) {
    .site_logo {
        margin-right: 10px;
    }

    .log_div_child {
        width: 80%;
    }

    .log_div_child.notification {
        bottom: var(--nav-height);
    }


    .ravandarman_btn {
        width: 100%;
        font-size: small;
    }

    .meeting_online_p {
        left: -10px;
        bottom: 8px;
        width: 30px;
    }

    .log_call_div_main {
        padding-bottom: var(--nav-height);
    }

    .log_div_child.notification {
        width: 60%;
        font-size: small;
    }

    .log_call_div_main .call_go_to_note {
        /*top: var(--nav-height);*/
    }

    .log_call_div_main .call_go_to_note.active {
        width: 95vw;
        height: 60vh;
    }

    .ravandarman_btn_link, .ravandarman_btn_small, .ravandarman_btn_orange {
        font-size: x-small;
    }

    .perspective {
        width: 25vw;
        height: 30vh;
        margin: auto;
    }

    .w_description, .w_category {
        max-width: 18ch;
    }

    .w_title {
        max-width: 60%;
    }

    .doctor_list_education {
        min-width: 86vw;
    }

    #nav_toggler {
        display: block;
        color: white;
        margin: auto 20px auto 0;
        width: 30px;
        height: 30px;
        cursor: pointer;
    }

    #nav_toggler.landing_toggler {
        color: var(--blue-dark);
    }

    #nav_toggler:hover {
        color: var(--green-dark);
    }

    .iframe_local_div{
        height: 60vh;
        width: auto;
        margin: 30px;
    }

}

@keyframes scroll_anim {
    0% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(5px);
    }
}

@keyframes go_up {
    0% {
        transform: translateY(20px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes go_down {
    0% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(20px);
    }
}