@charset "utf-8";
/* CSS Document */
:root {
    --color_turkish: #D5EFEE;
    --color_green: #79ca9f;
    --color_ligth_green: #DEEFE2;
    --color_link: #1788cb;
    --color_yellow: #E4DC56;
    --color_green_active: #00F81B;
}

@font-face {
    font-family: Heebo;
    src: url("../fonts/Heebo-Regular.ttf");
    font-weight: normal;
    font-display: swap;
}

@font-face {
    font-family: Heebo;
    src: url("../fonts/Heebo-Bold.ttf");
    font-weight: bold;
    font-display: swap;
}

/******    stas razilov    ********/




@font-face {
    font-family: "Ping Hebrew";
    src: url("../fonts/PingHL-Bold.woff2") format("woff2") ;
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Ping Hebrew";
    src: url("../fonts/PingHL-Heavy.woff2") format("woff2") ;
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Ping Hebrew";
    src: url("../fonts/PingHL-Regular.woff2") format("woff2") ;
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}






/******    stas razilov    ********/



/* START HTML DEFAULT */

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

p, a, li {
    font-family: "Ping Hebrew";
    color: black;
    line-height: normal;
}
li{
    font-size: 14px;
}
button {
    font-family: "Ping Hebrew";
}

button:disabled, .disabled {
    opacity: .5;
    pointer-events: none;
    user-select: none;
}

body {
    font-family: "Ping Hebrew";
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-size: 14px;
}

b {
    font-weight: bold;
}
iframe{
    width: 100%;
    height: 600px;
    margin: 30px auto;
    border-radius: 48px 0 48px 48px;
}
input, select, textarea {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid black;
    width: 100%;
    margin: 16px 0;
    padding-bottom: 6px;
}

textarea {
    border: 1px solid black;
    border-radius: 8px;
    padding: 8px;
    min-height: 36px;
    font-family: "Ping Hebrew";
}

select {
    /*background: url("../svg/dropdown.svg") no-repeat center left;*/

    background-image: url("../svg/dropdown.svg");
    background-repeat: no-repeat;
    background-position-y: center;
}

.btn {
    background-color: var(--color_green);
    height: 56px;
    width: 100%;
    max-width: 288px;
    border-radius: 28px;
    color: white;
    font-size: 1.2em;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: .3s background;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    margin: auto;
}

.btn:hover {
    background-color: #6cb08c;
}

.link {
    text-align: center;
    color: var(--color_link);
    transition: .3s;
    cursor: pointer;
}

.link:hover {
    text-decoration: underline;
}

/* END HTML DEFAULT */

/* START HEADER */

header {
    border-bottom: 1px solid var(--color_green);
}

.header_content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 80px;
    width: calc(100% - 20px);
    margin: auto;
}

.header_logo {
    height: 60px;
}

.header_content_close {
    position: absolute;
    left: 0;
}

.header_content_back {
    position: absolute;
    right: 0;
}

/* END HEADER */

/* START MAIN */

main {
    flex: 1 1 auto;
    width: calc(100% - 20px);
    background-color: var(--color_turkish);
    margin: 24px auto;
    border-radius: 40px;
    transition: .3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 36px 16px;
}

.progress_bar {
    width: 100%;
    background-color: white;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    height: 12px;
    margin-bottom: 24px;
}

.progress_bar_fill {
    position: absolute;
    height: 12px;
    background-color: var(--color_green);
    transition: width 0.3s;
}

.content {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.content_bubble {
    background-color: white;
    height: min-content;

    padding: 20px;
    border-radius: 0 60px 60px 60px;
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    max-width: 950px;
}

.content_home {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.content_home__box {
    width: calc(50% - 20px);
    min-height: calc(100vh - 281px);
    position: relative;
}

.content_home__box .title {
    font-size: 2em;
    margin-bottom: 10px;
}

.content_home__box .content_bubble {
    border-radius: 48px;
}
.content_home__box .pet-content-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    font-size: 1.2em !important;
    display: flex;
    justify-content: center;
}

.choose_time_list {
    overflow-x: auto;
    scrollbar-width: thin;
}

.content_bubble_img {
    position: absolute;
    display: block;
}

.title {
    font-size: 2em;
    font-weight: bold;
    text-align: center;
    z-index: 99;
}

/*.title_font-weight-normal*/
/*{*/
/*    font-size: 2em;*/
/*    text-align: center;*/
/*}*/

.desc {
    text-align: center;
    font-size: 1.2em;
    max-width: 600px;
    margin: auto;
}

.text_box {
    background-color: var(--color_turkish);
    max-width: 600px;
    width: 100%;
    padding: 20px;
    border-radius: 16px;
    margin: 20px auto;
}

.text_box p {
    font-size: 1.4em;
}

.text_box_title {
    font-weight: bold;
    font-size: 1.8em !important;
    margin-bottom: 20px;
}

.prosecution_count {
    background-color: var(--color_green);
    padding: 4px 16px;
    color: white;
    font-weight: bold;
    border-radius: 20px;
}

.content_bubble__body {
    flex: 1 1 auto;
    margin: 30px auto;
}

.content_bubble__body.remind {
    margin-top: 0;
}

.content_bubble__body.remind p {
    font-size: 2em;
    text-align: center;
}

.main_page_weekly_arrangement {
    display: flex;
    justify-content: space-between;
    margin: 0 auto 30px;
}

.main_page_weekly_arrangement div {
    width: 13%;
}

.main_page_weekly_arrangement p {
    background-color: white;
    padding: 8px;
    border-radius: 30px;
    font-size: .8em;
    margin: 10px 0;
    text-align: center;
}

.main_page_weekly_arrangement span {
    text-align: center;
    display: block;
}

.main_page_weekly_arrangement p.busy {
    background-color: #EFDEDE;
}

.choose_time {
    display: flex;
    margin-bottom: 10px;
    white-space: nowrap;
    border: none;
    background-color: transparent;
}

.choose_time__btn, .choose_session__btn {
    border-start-start-radius: 0;
    border-end-start-radius: 0;
    border-start-end-radius: 28px;
    border-end-end-radius: 28px;
    width: fit-content;
    padding: 8px;
}

.choose_time__link {
    border-radius: 0;
    width: fit-content;
    padding: 8px;
    margin-left: 10px;
}

.session_detail__container{
    display: flex;
    justify-content: space-between ;
    width: 100%;
    background: none;
    color: inherit;
    border: none;
    padding: 0;
    font: inherit;
    outline: inherit;
}

.session_detail {
    padding-left: 16vw;
    justify-content: space-between;
}

.choose_time__date , .session_detail {
    background-color: var(--color_ligth_green);
    display: flex;
    border-start-start-radius: 28px;
    border-end-start-radius: 28px;
    border-start-end-radius: 0;
    border-end-end-radius: 0;
    margin-inline-start: 10px;
    padding: 16px 10px;
    flex: 1 1 auto;
    justify-content: flex-start;
}

.choose_time__date img , .session_detail img {
    width: 24px;
    margin: 0 8px;
}

.choose_time__desc p {
    background-color: #D5EFEE;
    border-radius: 28px 0 28px 28px;
    padding: 12px 24px;
    margin-right: 56px;
    margin-bottom: 16px;



   /*  stas razilov  */
    width: 80%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;

}


.choose_time__desc.text-full p
{
    overflow: auto;
    text-overflow: unset;
    white-space: normal;

    /*width: 100% !important;*/
    /*white-space: normal !important;*/
    /*text-overflow: unset !important;*/

}




.choose_time__pet {
    flex: 1;
}

.choose_time__date p, .session_detail p {
    padding: 3px;
}

/*.available_day {*/
/*    margin-bottom: 10px;*/
/*}*/

/*.available_day .choose_time {*/
/*    margin-bottom: 0;*/
/*}*/

/*.available_day .choose_time__date {*/
/*    border-radius: 0;*/
/*}*/

/*.available_day .choose_time__btn {*/
/*    border-radius: 0;*/
/*}*/
.available_day__btns{
    background-color: var(--color_green);
    /*padding: 12px 24px;*/
    padding: 13px 24px;

    border-radius: 28px 0 0 28px;
}
.available_day__btns a{
    color: white;
    font-weight: bold;
    display: block;
    font-size: 1.2em;
    margin: 6px 0;
}
.choose_time__date_day{
    display: flex;
    padding: 2px;
}
.conference {
    width: 100%;
    height: calc(100vh - 234px);
    background-color: #222222;
    /*background-image: url("../images/doctor.jpg");*/
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.client_box {
    width: 320px;
    height: 180px;
    /*background-color: #999999;*/
    /*background-image: url("../images/dog.jpg");*/
    /*background-repeat: no-repeat;*/
    /*background-size: cover;*/
    /*background-position: center;*/
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 5;
}

.nav_tabs {
    display: flex;
    border: 2px solid #222;
    max-width: fit-content;
    margin: 15px auto 0;
    border-radius: 30px;
    overflow-x: hidden;
}

.nav_tab:first-child {
    border-left: 2px solid #222;
}

.nav_tab {
    width: 50%;
    text-align: center;
    padding: 12px 16px;
    white-space: nowrap;
    max-width: min-content;
    min-width: 120px;
    cursor: pointer;
}

.nav_tab.active {
    background-color: var(--color_green);
    color: white;
    font-weight: bold;
}

.tools_bar {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    padding: 8px;
    background-color: #000000D3;
    border-radius: 44px;
    z-index: 6;
    width: 100%;
    max-width: 580px;
}

.conference_btn {
    height: 52px;
    width: 52px;
    margin: 8px;
    background-color: black;
    border-radius: 28px;
    transition: .3s;
    border: 2px solid transparent;
    cursor: pointer;
}

.conference_btn.active {
    outline: 3px solid #009BF8 !important;
    box-shadow: 0px 0px 12px #009BF8;
}
.conference_btn.working {
    cursor: progress;
    opacity: 0.4;
    /*pointer-events: none;*/
}
.conference_btn.working:hover {
    border: 2px solid transparent;
}

.conference_btn:hover {
    border: 2px solid var(--color_yellow);
}

.conference_btn img {
    width: 24px;
    height: 24px;
    margin: 12px;
}
.conference_btn img.flip_camera {
    width: 28px;
    height: 28px;
    margin: 10px;
}

.conference_btn.stop {
    background-color: #D26B6B;
    width: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.conference_btn.start{
    background-color: unset !important;
    border: 2px solid var(--color_yellow);
}
.conference_btn.start p{
    animation: blinker_25 2s linear infinite;
}
.no-anim{
    animation: unset !important;
}

.conference_btn.stop p {
    color: white;
    text-align: center;
    font-weight: bold;
    font-size: .8em;
}

.chat {
    width: calc(100% - 40px);
    max-width: 300px;
    height: 69%;
    max-height: 70%;
    background-color: rgba(255, 255, 255, 0.95);
    position: absolute;
    top: 20px;
    right: 20px;
    border-radius: 36px 0 36px 36px;
    overflow: hidden;
    z-index: 5;
}

.bottom_chat {
    width: 100%;
    height: 76px;
    background-color: white;
    position: absolute;
    bottom: 0;
    display: flex;
    padding: 10px;
    justify-content: space-between;
    border-top: 1px solid #707070;
}

.chat_btn_send {
    height: 56px;
    width: 56px;
    background-color: var(--color_link);
    border-radius: 28px;
    transition: .3s;
    cursor: pointer;
}

.chat_btn_send img {
    width: 24px;
    height: 24px;
    margin: 16px;
}

.chat_btn_attach {
    /*background-color: #6cb08c;*/
}

.chat_btn_attach img {
    width: 24px;
    height: 24px;
    margin: 14px 0;
}

.bottom_chat input {
    width: calc(100% - 100px);
    font-size: .8em;
    border: none;
}

.chat_btn_close {
    margin: 10px;
    cursor: pointer;
}

.chat_box {
    overflow: auto;
    margin: 0 16px;
    height: calc(100% - 136px);
    scrollbar-width: thin;
}

.chat_box_msg {
    margin-bottom: 16px;
}

.chat_box_title {
    font-weight: bold;
    margin-bottom: 4px;
}

.chat_box_title.doctor {
    color: var(--color_link);
}

.chat_box_title.client {
    color: var(--color_green);
}

.chat_box_text {
    color: #595F59;
}

.chat_box_download {
    background-color: white;
    border: 1px solid var(--color_link);
    padding: 8px 12px;
    border-radius: 30px;
    color: var(--color_link);
    margin: 4px 0;
    display: inline-block;
    cursor: pointer;
}

.chat_box_download img {
    margin-right: 16px;
}

.radio_smile {
    display: block;
    position: relative;
    margin-bottom: 12px;
    cursor: pointer;
    user-select: none;
    height: 36px;
    width: 36px;
}

.radio_smile input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark_smile_1, .checkmark_smile_2, .checkmark_smile_3, .checkmark_smile_4, .checkmark_smile_5 {
    position: absolute;
    top: 0;
    left: 0;
    height: 36px;
    width: 36px;
    background-size: cover;
    background-color: #eee;
    border-radius: 50%;
}

.radio_smile input:checked ~ .checkmark_smile_1 {
    background-image: url("../svg/emoji_1_active.svg") !important;
}

.radio_smile input:checked ~ .checkmark_smile_2 {
    background-image: url("../svg/emoji_2_active.svg") !important;
}

.radio_smile input:checked ~ .checkmark_smile_3 {
    background-image: url("../svg/emoji_3_active.svg") !important;
}

.radio_smile input:checked ~ .checkmark_smile_4 {
    background-image: url("../svg/emoji_4_active.svg") !important;
}

.radio_smile input:checked ~ .checkmark_smile_5 {
    background-image: url("../svg/emoji_4_active.svg") !important;
}

.rating_icons {
    display: flex;
    justify-content: space-between;
}

/* END MAIN */

/* START FOOTER */

footer a {
    width: 100%;
    display: flex;
    justify-content: center;
    font-size: .75em;
    margin-bottom: 20px;
    color: #565656;
}

/* END FOOTER */

/* START CHECKMARK */

.container {
    display: block;
    position: relative;
    padding-inline-start: 35px;
    cursor: pointer;
    user-select: none;
    padding-top: 4px;
    width: fit-content;
    margin: 0 0 30px;
}

.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    height: 24px;
    width: 24px;
    background-color: white;
    border: 1px solid black;
    border-radius: 5px;
    transition: .3s;
}


.container:hover input ~ .checkmark {
    border: 1px solid var(--color_green);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.container input:checked ~ .checkmark:after {
    display: block;
}

.container .checkmark:after {
    inset-inline-start: 2px;
    top: 2px;
    width: 18px;
    height: 18px;
    border-radius: 3px;
    background-color: var(--color_green);
}

.checkmark_terms {
    margin: auto;
    display: flex;
    width: fit-content;
}

.checkmark_terms .container {
    margin: unset;
}

.checkmark_terms .link {
    margin: 4px;
}

/* END CHECKMARK */

/* START MODAL */

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #00000070;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 40px;
    width: calc(100% - 40px);
    max-width: 768px;
    border: 2px solid var(--color_green);
    position: relative;
    border-radius: 16px;
    max-height: 90%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.close {
    position: absolute;
    left: 16px;
    top: 16px;
}

.close:hover, .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

/* END MODAL */

/* START FORM */
.input_row {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.input_item_1 {
    width: 100%;
}

.input_item_2 {
    width: 48%;
}

.input_row label {
    position: absolute;
    font-size: 0;
    opacity: 0;
}

.chat-media-inform-container{
    color:white;padding:18px; max-width: 500px; background-color: rgba(10,10,10,0.4); position: absolute; z-index: 4999; bottom: 125px; left: calc(50% - 200px);
}
.chat-media-inform-container .close{
    top: 5px;
    transform: scale(0.5, 0.5);
    -ms-transform: scale(0.5, 0.5);
    -webkit-transform: scale(0.5, 0.5);
}


/* END FORM */

video-player-container {
    display:block;
    width:100%;
    height:auto;           /* or 100% if you’re sizing the parent */
    aspect-ratio:16/9;     /* optional */
    overflow:hidden;
}
.hidden { display:none; }


video-player {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
}
/*video-player-container { display:block; width:100%; aspect-ratio:16/9; overflow:hidden; }*/
/*.hidden { display:none !important; }*/

@media (max-width: 600px) {
    #sdk-mic-options-select-container{
        min-width: unset !important;
        width: calc(100% - 25px) !important;
    }

    .chat{
        /*height: 200px;*/
        /*top: -60px;*/

        height: calc(100% - 120px);
        top: 20px;
        z-index: 500;
        max-height: 450px;
    }
    #sdk-chat-btn{
        /*display: none;*/
    }
    .content_home{
        flex-wrap: wrap !important;
    }
    .content_home__box{
        width: 100% !important;
    }
    .content_home__box_moreinfo{
        margin-top: 45px !important;
    }


    main{
        /*padding: unset;*/
        width: 100% !important;
    }
    .conference_btn.mobile-hidden{
        display: none;
    }
    .tools_bar {
        left: unset;
        bottom: 5px;
        /*right: 5px;*/
        /*flex-direction: column;*/
        flex-wrap: wrap;
        max-width: calc(100% - 25px);
        padding: unset;
        right: 50%;
        transform: translateX(+50%);
        width: max-content;
        align-items: center;
        border-radius: 32px;
    }
    #sdk-start-btn {
        order: -1;
        font-size: 0.7em;
    }
    #sdk-stop-btn {
        height: fit-content;
        padding: 8px 0;
    }
    .conference_btn:not(.conference_btn_wizard) {
        margin: 4px;
        height: 32px;
        width: 32px;
    }
    .conference_btn.stop {
        width: 52px;
    }
    .conference_btn:not(.conference_btn_wizard) img {
        width: 24px;
        height: 24px;
        margin: 2px;
    }
    .preview-mode-off{
        width: 40%;
        /*height: unset;*/
        /*top: unset;*/
        /*bottom: 0px;*/
        /*left: 10px;*/
    }
    .modal-content{
        padding: 40px 12px;
    }
    .wizard-flex{
        flex-wrap: wrap;
    }
    .wizard-flex-item{
        width: 100% !important;
        align-items: center;
        margin: 34px 0 !important;
    }
}

@media (min-width: 480px) {

}

@media (min-width: 600px) {

}

@media (min-width: 768px) {
    .header_content {
        width: calc(100% - 96px);
        height: 124px;
    }

    main {
        width: calc(100% - 96px);
        padding: 36px;
    }

    .content_bubble {
        border-radius: 0 150px 150px 150px;
        padding: 48px;
    }

    .title {
        font-size: 3em;
    }

    .desc {
        font-size: 1.5em;
    }

    body {
        font-size: 16px;
    }

    .choose_time__btn, .choose_session__btn {
        padding: 24px;
        width: fit-content;
    }

    .choose_time__link {
        padding: 24px;
    }

    .choose_time__date p, .session_detail p {
        padding: 3px 5px;
    }

    /*.choose_time__date {*/
    /*    padding: 16px 10px;*/
    /*}*/
    .text_box {
        padding: 40px;
    }

    .conference {
        height: calc(100vh - 281px);
    }
}

@media (min-width: 992px) {

}

@media (min-width: 1200px) {

}

.hidden{
    display: none !important;
}

#sdk-participant-status{
    position: absolute;
    left: 50%;
    top: 50%;
    font-size: 2em;
    color: gray;
    transform: translateX(-50%) translateY(-50%);
    /*itzik  nimation: blinker 10s linear infinite;*/
    z-index: 1;
    text-align: center;
    line-height: max(3vw, 1em);
}
.sdk-mic-level-indicator{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    /*background-color: #44ff0054;*/
    background-color: rgba(68, 255, 0, 0.84);
    height: 0;
    /*z-index: -1;*/
    transition: all 0.15s;
}

#sdk-mic-options-select {
    padding: 4px 8px;
    border: 2px solid var(--color_yellow);
    color: white;
    border-radius: 16px;
    background-image: url("../svg/dropdown_video.svg");
    background-repeat: no-repeat;
    background-position-y: center;
    background-position-x: 6px;
}
#sdk-mic-options-select option{
    color: black;
}

#sdk-mic-options-select-container {
    color: white;
    padding: 8px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background-color: #000000E3;
    z-index: 10;
    border-radius: 10px;
    min-width: 320px;
    max-width: 420px;
    width: 100%;
}

@keyframes blinker {
    50% {
        opacity: 0.15;
    }
}
@keyframes blinker_25 {
    50% {
        opacity: 0.25;
    }
}

.pet_params{
    display: flex;
    flex-wrap: wrap;
}
.pet_params div{
    padding: 8px 12px;
    background-color: #DEEFE2;
    border-radius: 8px;
    margin-left: 6px;
    margin-bottom: 6px;
}
.pet_params p{
    font-weight: bold;
}
.pet_params span{
    color: #1788cb;
    font-weight: normal;
}