html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    background-color: #f6f8f9 !important;
}

dropdown:hover {
    color: #000 !important;
}


.dropdown-submenu {
    position: relative;
}


.dropdown-submenu > .dropdown-menu {
    left: 100%;
    /* -6px gives dropdown-menu's padding+border */
    top: -6px;
}

.dropdown-submenu:hover > .dropdown-menu, .dropdown-submenu > a:focus + .dropdown-menu {
    /* :focus support is incomplete - pressing Tab sets focus to submenu, but that immediately hides submenu */
    display: block;
}

#map {
    height: 500px;
    /*width: 1200px;*/
}

.society-marker {
    background-image: url("../images/logoSynt.png");
    background-size: cover;
    background-color: white;
    border-radius: 25px;
    width: 40px;
    height: 40px;
}

.patient-marker_selected {
    background-image: url("../images/8673639_ic_fluent_person_circle_filled_icon.png");
    background-size: cover;
    background-color: white;
    border-radius: 25px;
    width: 40px;
    height: 40px;
    z-index:999;
}

.patient-marker_notselected {
    background-image: url("../images/emoji_people.png");
    background-size: cover;
    background-color: white;
    border-radius: 25px;
    width: 40px;
    height: 40px;
}

.patient-marker {
    
    
}

.dropzone-import {
    width: 100%;
    height: 40px;
    border: 2px dashed #ccc;
    border-radius: 5px;
    background-color: rgba(183, 183, 183, 0.1);
    color: #555;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s;
}

.dropzone-import.dropzone-active {
    border-color: #007bff;
}


.dropzone-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

    .dropzone-text span {
        margin: 5px;
        font-size: 15px;
        font-weight: 300;
        opacity: 0.5;
    }

.dropzone-import:hover {
    border-color: #999;
}

.dropdown-submenu .dropdown-menu {
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    max-height: 600px;
    overflow-x: hidden;
}

.hideModal {
    display: block
}
.nav-item:not(.nav-item-right):hover, .dropdown-submenu:hover, .dropdown-submenu li:hover {
    background-color: #00000030;
}

.vc-datagrid-row {
    background-color: red !important;
    cursor: pointer;
}

.vc-component-container
{
    margin-top: 20px;
}

.top-nav-links {
    box-sizing: border-box;
    padding: 12px;
    margin: 16px 0px 16px 16px;
    height: auto;
    display: flex;
    align-items: center;
    gap: 0 8px;
    position: relative;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,.16);
}
.top-nav-breadcrumb {
    margin: 16px 16px 16px 16px;
}
.content-table .dx-widget > .dx-datagrid {
    box-shadow: 0 2px 6px rgba(0,0,0,.16);
    box-sizing: border-box;
    padding: 12px;
    margin: 16px 0 16px 16px;
    display: flex;
    gap: 0 8px;
    position: relative;
    border-radius: 6px;
}
nav.navbar {
    box-shadow: 0 2px 6px rgba(0,0,0,.16);
}

.pulse {
    animation: animatePulse 3s linear infinite
}

@keyframes animatePulse {
    0% {
        box-shadow: 0 0 0 0 rgb(255, 109, 74, 0.7), 0 0 0 0 rgb(255, 109, 74, 0.7)
    }

    40% {
        box-shadow: 0 0 0 50px rgb(255, 109, 74, 0), 0 0 0 0 rgb(255, 109, 74, 0.7)
    }

    80% {
        box-shadow: 0 0 0 50px rgb(255, 109, 74, 0), 0 0 0 30px rgb(255, 109, 74, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgb(255, 109, 74, 0), 0 0 0 30px rgb(255, 109, 74, 0)
    }
}

#map-left-container {
    margin-top: 20px;
    margin-left: 10px;
    z-index: 10;
    position: absolute;
}

#map-flag {
    padding: 15px;
    width: 300px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    max-height: 450px;
    overflow-y: scroll;
    margin-bottom: 20px;
}

#map-operator-list {
    padding: 15px;
    width: 300px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    max-height: 450px;
    overflow-y: scroll;
}

#map-profession-list {
    margin-top: 20px;
    padding: 15px;
    width: 300px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    max-height: 450px;
    overflow-y: scroll;
}

.operators-by-profession-inside-container {
    margin-top: 10px;
    box-sizing: content-box;
    max-height: 140px;
}

.operator-list-elem {
    display: flex;
    flex-direction: row;
    margin-top: 5px;
}

.operator-list-elem-img {
    padding: 3px;
    flex: 1;
    background-color: blue;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    width: 39px;
    height: 39px;
    margin-right: 10px;
}

.operator-list-elem-text {
    flex: 6;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 16px;
}

#incudo_geolocation_content {
    display: flex;
    flex-direction: row;
}

#incudo_geolocation_content_table {
    flex: 2;
    padding: 20px;
}

#incudo_geolocation_content_users {
    flex: 1;
    padding: 20px;
}
.evaluation_emotionalthermometer_slider_spacer {
    height: 25px;
}
.evaluation_emotionalthermometer_slider_container {
    min-height: 75px;
}

.paxme_form_data_hidden {
    display: none;
}

.full-width-button-cptype {
    width: 100%;
    margin-bottom: 8px;
}

#evaluation_draft_status {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: 10px;
    font-size: 14px;
    font-weight: bold;
}

.eval_draft_row {
    background-color: #ffeecc !important;
    font-weight: bold !important;
}

.dx-row.eval_draft_row {
    background-color: #ffeecc !important;
    font-weight: bold !important;
}

.dx-row.eval_draft_row:nth-child(even)
.dx-row.eval_draft_row:nth-child(odd){
    background-color: #ffeecc !important;
    font-weight: bold !important;
}

.loading_indicator_center_popup {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.main_header_components_content 
{
    background-color: unset !important;
    border: unset !important;
}