/* **** Default **** */

input:focus {
    border: 1px solid rgba(235, 140, 0, 0.808);
    outline: unset;
}

::-webkit-scrollbar {
    width: 10px !important;
    background-color: transparent !important;
  }
  
  ::-webkit-scrollbar-thumb {
    background-color: #888;
  }

 ::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}

/* **** Default **** */

/* ubuntu-regular - latin */
@font-face {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 400;
    src: url('../css/ubuntu-v15-latin-regular.eot'); /* IE9 Compat Modes */
    src: local(''),
         url('../css/ubuntu-v15-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../css/ubuntu-v15-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
         url('../css/ubuntu-v15-latin-regular.woff') format('woff'), /* Modern Browsers */
         url('../css/ubuntu-v15-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
         url('../css/ubuntu-v15-latin-regular.svg#Ubuntu') format('svg'); /* Legacy iOS */
  }


.base-body {
    margin: 0px;
    /*font-family: Roboto, "Helvetica Neue", sans-serif;*/
    font-family: Ubuntu;
    background-color: hsl(215deg 22% 95%);
    color: #222A35;
}

.nav-bar-container{
    display: flex;
    box-shadow: 0 0 5px rgb(0 0 0 / 80%);
    font-size: 14px;
    position: fixed;
    width: 100%;
    top: 0px;
    z-index: 99;
    overflow-x: auto;
}

.menu-button {
    background: url('../img/menu-24px.svg') no-repeat top left;
    background-size: contain;
    color: white;
    cursor: pointer;
    display: inline-block;
    height: 24px;
    width: 24px;
}

.button-accordion {
    background-color: #222A35;
    border: none;
    color: white;
    padding: 12px 16px;
    font-size: 16px;
    cursor: pointer;
    height: 100%;
}

.button-accordion:hover {
    background-color: #222A35;
}


/* ------ Check box Style --------*/


/* The container */

.container-checkbox {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 24px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


/* Hide the browser's default checkbox */

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


/* Create a custom checkbox */

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #d6d5d5;
}

.checkmark-round {
    border-radius: 14px;
    /*margin-top: -5px;*/
}


/* On mouse-over, add a grey background color */

.container-checkbox:hover input~.checkmark {
    background-color: #ccc;
}


/* When the checkbox is checked, add a blue background */

.container-checkbox input:checked~.checkmark {
    background-color: #A9A9A9;
}


/* Create the checkmark/indicator (hidden when not checked) */

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


/* Show the checkmark when checked */

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


/* Style the checkmark/indicator */

.container-checkbox .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.drop-down-item {
    display: block;
    width: 100%;
    /* padding: .25rem 1.5rem; */
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    padding-top: 0.25rem;
    padding-right: 1.5rem;
    padding-bottom: 0.25rem;
}

.drop-down-container {
    min-width: 10rem;
    padding: .5rem 0;
    margin: .125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: .25rem;
}

.drop-down-container:hover {
    background-color: gray;
}


/* ------ Check box Style --------*/

.show-menu-button {
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    height: 32px;
    line-height: 32px;
    overflow: hidden;
    text-decoration: none;
    transition: .1s ease;
    right: 10px;
    display: inline-flex;
    top: 99px;
    background-color: rgba(235, 140, 0, 0.808);
    border-radius: 2px;
    border-style: none;
    box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}

.show-menu-button-nav {
    padding-left: 12px;
    position: relative;
    /* margin-left: 25px; */
    float: right;
    margin-top: -80px;
}

.show-menu-button:hover {
    background-color: #222A35;
}

.show-menu-button-text {
    margin-right: 10px;
}

.card-add-new-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 10px 15px 20px 15px;
    transition: 0.3s;
    width: 50%;
    height: 20%;
    min-height: 125px;
    min-width: 125px;
    background-color: hsl(215deg 22% 90%);
    cursor: pointer;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
    padding: 25px;
}

.card-add-new-item-camera {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 10px 15px 20px 15px;
    transition: 0.3s;
    width: 50%;
    height: 20%;
    min-height: 125px;
    min-width: 125px;
    background-color: hsl(215deg 22% 90%);
    cursor: pointer;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}

.card-add-new-item-camera p {
    margin: 10px;
}

.card-add-new-item-bot {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 10px 15px 20px 15px;
    transition: 0.3s;
    width: 50%;
    height: 20%;
    min-height: 125px;
    min-width: 125px;
    background-color: hsl(215deg 22% 90%);
    cursor: pointer;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}

.card-add-new-item:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.icon-fullscreen-white {
    background: url(../img/full-screen-white.svg) no-repeat top left;
    background-size: contain;
    display: inline-block;
    height: 16px;
    width: 16px;
    margin: 8px;
}

/**** forms validators style ****/

.help-block {
    padding-left: 15px;
    margin-bottom: 5px;
    margin-top: 5px;
    font-size: 14px;
}

.field-error {
    color: #a94442 !important;
}

.field-success {
    color: #3c763d !important;
}

.field-success {
    color: #3c763d !important;
}

.input-error {
    border-color: #a94442 !important;
    border-style: solid !important;
    border-width: 2px !important;
}

.input-success {
    border-color: #3c763d !important;
    border-style: solid !important;
    border-width: 2px !important;
}

.icon-menu-dots-white {
    background: url(../img/menu-dots-white.svg) no-repeat top left;
    background-size: contain;
    display: inline-block;
    height: 18px;
    width: 18px;
    margin: 8px;
}

.icon-menu-dots-gray {
    background: url(../img/menu-dots-gray.svg) no-repeat top left;
    background-size: contain;
    display: inline-block;
    height: 18px;
    width: 18px;
    margin: 8px;
    cursor: pointer;
}

.icon-menu-dots-gray:hover {
    background: url(../img/menu-dots-white.svg) no-repeat top left;
}

.icon-menu-plus-white {
    background: url(../img/menu-plus-white.svg) no-repeat top left;
    background-size: contain;
    display: inline-block;
    height: 16px;
    width: 16px;
    margin: 8px;
}

.icon-plus{
    margin-left: 40px; 
    font-size: 25px; 
    margin-top: -4px;
}

.icon-plus:hover{
    color: white;
}

.icon-menu-compare-white {
    background: url(../img/compare-icon-white.svg) no-repeat top left;
    background-size: contain;
    display: inline-block;
    height: 16px;
    width: 16px;
    margin: 8px;
}

#no_camera_card {
    cursor: pointer;
    box-shadow: 0 0 5px rgb(0 0 0 / 80%);
    transition: transform .2s ease-out, box-shadow .2s ease-out;
}

#no_camera_card:hover {
    box-shadow: 0 3px 15px rgb(0 0 0 / 80%);
}

.icon-general{
    transition: all 0.3s ease-in-out;
}

.icon-general:hover{
    -webkit-filter: drop-shadow( 3px 3px 2px rgba(0, 0, 0, .4));
    filter: drop-shadow( 3px 3px 2px rgba(0, 0, 0, .4));
}

.badge-big{
    display: inline-block;
    min-height: 25px;
    min-width: 25px;
    background-size: contain !important;
    margin-left: 5px;
}

.badge-small{
    display: inline-block;
    min-height: 13px;
    min-width: 13px;
    background-size: contain !important;
    margin-left: 5px;
}

.badge-gray-occlusion {
    background: url(../img/occlusion-gray-badge.svg) no-repeat center;
}

.badge-red-occlusion {
    background: url(../img/occlusion-red-badge.svg) no-repeat center;
}

.badge-orange-occlusion {
    background: url(../img/occlusion-orange-badge.svg) no-repeat center;
}

.badge-blue-occlusion {
    background: url(../img/occlusion-blue-badge.svg) no-repeat center;
}

.badge-gray-integrity {
    background: url(../img/integrity-gray-badge.svg) no-repeat center;
}

.badge-red-integrity {
    background: url(../img/integrity-red-badge.svg) no-repeat center;
}

.badge-orange-integrity {
    background: url(../img/integrity-orange-badge.svg) no-repeat center;
}

.badge-blue-integrity {
    background: url(../img/integrity-blue-badge.svg) no-repeat center;
}

.badge-gray-audit {
    background: url(../img/audit-gray-badge.svg) no-repeat center;
}

.badge-red-audit {
    background: url(../img/audit-red-badge.svg) no-repeat center;
}

.badge-orange-audit {
    background: url(../img/audit-orange-badge.svg) no-repeat center;
}

.badge-blue-audit {
    background: url(../img/audit-blue-badge.svg) no-repeat center;
}

.icon-info-small {
    background: url(../img/info-gray.svg) no-repeat center;
    display: inline-block;
    height: 14px;
    width: 11px;
    background-size: contain;
    margin-left: 5px;
}

.icon-info-small:hover {
    background: url(../img/info-white.svg) no-repeat center;
}

.icon-alert-small {
    background: url(../img/alert-icon-red.svg) no-repeat center;
    display: inline-block;
    height: 14px;
    width: 11px;
    background-size: contain;
    /* flex-basis: 10%; */
    /* margin-top: 5px; */
    margin-left: 5px;
}

.icon-alert-small:hover {
    background: url(../img/alert-icon-ligthred.svg) no-repeat center;
}

.sub-header {
    background-color: white;
    width: 100%;
    padding-bottom: 15px;
}

.sub-header-transparent {
    width: 100%;
    padding-bottom: 15px;
}

.shadow-div {
    width: 100%;
    height: 1px;
    box-shadow: 0 0 5px rgb(0 0 0 / 80%);
    background-color: #222A354d;
}

.text-before-data {
    margin-left: 9%;
    margin-top: 43px;
    color: #222A35;
    font-size: 13px;
    margin-bottom: 10px;
    display: flex;
}

.title-line-new-new {
    margin-left: 9%;
    margin-top: 28px;
    margin-bottom: 30px;
    
}

.title-text-new-new {
    font-size: 36px;
    font-weight: bold;
    color: #222A35;
    display: inline-flex;
}

.sub-title-text-new-new {
    margin-top: 10px;
    color: #222A35;
}

.show-menu-button-right {
    width: max-content;
    position: absolute;
    right: 9%;
    top: 160px;
    transform: translateX(-8px);
}



#templates_container {
    display: flex;
    gap: 10px;
    align-content: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-left: 9%;
    margin-right: 9%;
}

#templates_container-comparison {
    display: flex;
    gap: 10px;
    align-content: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-left: 9%;
    margin-right: 9%;
}

.template-title {
    background-color: white;
    text-align-last: center;
    color: #222A35;
    margin-top: 20px;
    font-size: 20px;
    margin-bottom: 25px;
    margin-left: 20px;
    margin-right: 20px;
    text-align: center;
    position: relative;
}


.template-all {
    background-color: white;
    box-shadow: rgb(0 0 0 / 20%) 0px 4px 8px 0px;
    transition: all 0.3s ease 0s;
    overflow-y: hidden !important;
    min-height: 300px;
    min-width: 400px;
    flex-basis: 100%;
    position: relative;
}

.template-all-with-no-min-height {
    background-color: white;
    box-shadow: rgb(0 0 0 / 20%) 0px 4px 8px 0px;
    transition: all 0.3s ease 0s;
    overflow-y: hidden !important;
    flex-grow: 1;
    flex-shrink: 1;
    min-width: 400px;
    flex-basis: 100%;

}

.template-all canvas {
    min-height: 350px;
}

.template-all:hover {
    box-shadow: rgba(0, 0, 0, 0.2) 0px 8px 12px 0px;
}

.template-division-title {
    width: 100%;
    font-weight: 700;
    padding: 16px 0;
    color: #263238;
    font-size: 21px;
}

.template-division-subtitle {
    width: 100%;
    font-weight: 700;
    color: #263238;
    font-size: 12px;
    padding: 0px 0px 16px 0px;
    margin-top: -12px;
}


.template-line-counting-location:hover {
    box-shadow: rgba(0, 0, 0, 0.2) 0px 8px 12px 0px;
}

.template-third {
    background-color: white;
    box-shadow: rgb(0 0 0 / 20%) 0px 4px 8px 0px;
    transition: all 0.3s ease 0s;
    overflow-y: hidden !important;
    flex-grow: 1;
    flex-shrink: 1;
    min-width: 342px;
    max-width: max(500px, 50%);
}

.template-quarter {
    background-color: white;
    box-shadow: rgb(0 0 0 / 20%) 0px 4px 8px 0px;
    transition: all 0.3s ease 0s;
    overflow-y: hidden !important;
    flex-grow: 1;
    flex-shrink: 1;
    min-width: 340px;
    max-width: 500px;
}


.margin-right {
    margin-right: 1%;
}

.margin-left {
    margin-left: 1%;
}

.template-third:hover {
    box-shadow: rgba(0, 0, 0, 0.2) 0px 8px 12px 0px;
}

.template-quarter:hover {
    box-shadow: rgba(0, 0, 0, 0.2) 0px 8px 12px 0px;
}

.template-two-thirds {
    background-color: white;
    box-shadow: rgb(0 0 0 / 20%) 0px 4px 8px 0px;
    transition: all 0.3s ease 0s;
    overflow-y: hidden !important;
    flex-grow: 1;
    flex-shrink: 1;
    min-width: 400px;
    max-width: 1000px;
}

.template-two-thirds-fix {
    min-height: unset;
}

.template-two-thirds-fix canvas{
    min-height: unset !important;
}


.template-two-thirds:hover {
    box-shadow: rgba(0, 0, 0, 0.2) 0px 8px 12px 0px;
}

.icon-refresh-gray {
    background: url(../img/refresh-gray.svg) no-repeat top left;
    background-size: contain;
    cursor: pointer;
    display: inline-block;
    height: 16px;
    width: 26px;
    margin-left: -3px;
    margin-right: 5px;
}

.icon-refresh-gray:hover {
    background: url(../img/refresh-white.svg) no-repeat top left;
    background-size: contain;
    cursor: pointer;
}

.caret-down {
    background: url(../img/expand_more.svg) no-repeat center;
    display: inline-block;
    height: 18px;
    width: 18px;
    background-size: contain;
    /*margin-left: 8px;*/
}

.caret-down-white {
    background: url(../img/expand_more-white-18dp.svg) no-repeat center;
    display: inline-block;
    height: 18px;
    width: 18px;
    background-size: contain;
    /*margin-left: 8px;*/
}

.caret-up {
    background: url(../img/expand_more_up.svg) no-repeat center;
    display: inline-block;
    height: 18px;
    width: 18px;
    background-size: contain;
    /*margin-left: 8px;*/
}

.queue-selector{
    cursor: pointer;
    align-items: center;
    display: flex;
    padding: 5px 0px;
    padding-left: 8px;
    place-content: center;
    border-radius: 4px;
    background-color: rgb(235 140 0);
    color: #FFFFFF;
    font-size: 13px;
    transition: all 0.5s;
    margin-right: 16px;
}

.queue-selector option{
    padding: 5px 0px;
    color: #222A35;
}

.left-disabled{
    left: unset !important;
    inline-size: auto !important;
}


#main_date_range_picker {
    cursor: pointer;
    align-items: center;
    display: flex;
    padding: 5px 0px;
    padding-left: 8px;
    place-content: center;
    border-radius: 4px;
    background-color: rgb(235 140 0);
    color: #FFFFFF;
    font-size: 13px;
    transition: all 0.5s;
    margin-left: 10px;
}

#main_date_range_picker_comparison {
    cursor: pointer;
    align-items: center;
    display: flex;
    padding: 5px 0px;
    padding-left: 8px;
    place-content: center;
    border-radius: 4px;
    background-color: rgb(235 140 0);
    color: #FFFFFF;
    font-size: 13px;
    transition: all 0.5s;
    margin-left: 4px;
}

#main_date_range_picker span{
    font-weight: bold;
}

#main_date_range_picker_comparison span{
    font-weight: bold;
}


#dashboards_date_range_picker {
    cursor: pointer;
    align-items: center;
    display: flex;
    color: #222A35;
    font-size: 14px;
    padding: 5px 0px;
    padding-left: 8px;
    /*border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #a5a2ab;*/
    font-weight: bold;
    place-content: center;
}

.loading-template-container {
    margin-top: -9px;
    margin-right: -50px;
    width: 100px;
    position: relative;
    float: left;
    inline-size: max-content;
    left: 20px;
    top: 25px;
    z-index: 98;
}

.ui-helper-hidden-accessible {
    display: none;
}

.template-left-box {
    background: #fff;
    cursor: pointer;
    padding: 4px 9px;
    margin-top: -9px;
    /* margin-left: 31px; */
    margin-right: -50px;
    border: groove;
    border-width: 1px;
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%);
    /* width: 216px; */
    /* left: 51.8%; */
    position: relative;
    float: left;
    font-size: x-small;
    /*inline-size: max-content;*/
    border-color: rgba(169, 169, 169, 0.12);
    color: gray;
}

.template-left-box-gauge {
    background: #fff;
    cursor: pointer;
    padding: 4px 9px;
    margin-top: 22px;
    border: groove;
    border-width: 1px;
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%);
    width: 216px;
    position: relative;
    float: left;
    left: -53px;
    font-size: x-small;
    border-color: rgba(169, 169, 169, 0.12);
    color: gray;
}

.template-time-bucket-box {
    background: #fff;
    cursor: pointer;
    padding: 2px 15px;
    border: groove;
    border-width: 1px;
    position: absolute;
    font-size: x-small;
    border-color: rgba(169, 169, 169, 0.12);
    color: gray;
    z-index: 1;
    right: 112px;
    top: 74px;
}

.template-kpi-box {
    background: #fff;
    cursor: pointer;
    padding: 2px 15px;
    border: groove;
    border-width: 1px;
    position: absolute;
    font-size: x-small;
    border-color: rgba(169, 169, 169, 0.12);
    color: gray;
    z-index: 1;
    right: 112px;
    top: 74px;
}

.template-kpi-box-with-time-bucket {
    background: #fff;
    cursor: pointer;
    padding: 2px 15px;
    border: groove;
    border-width: 1px;
    position: absolute;
    font-size: x-small;
    border-color: rgba(169, 169, 169, 0.12);
    color: gray;
    z-index: 1;
    right: 271px;
    top: 74px;
}

.template-up-right-box-fix-camera-routes {
    margin-right: 0% !important;
}


.template-up-right-box {
    cursor: pointer;
    padding: 4px 9px;
    margin-top: -53px;
    position: relative;
    float: right;
    inline-size: max-content;
}

.template-up-right-box-fix {
    margin-top: -51px;
    margin-right: -6px;
}

.template-two-thirds canvas {
    min-height: 350px;
}

.ui-tooltip {
    padding: 8px;
    position: absolute;
    z-index: 9999;
    max-width: 300px;
    background: rgba(0, 0, 0, .2) !important;
    background-color: rgba(255, 255, 255, .8) !important;
}

body .ui-tooltip {
    border-width: 2px;
}

.ui-widget-shadow {
    -webkit-box-shadow: 0px 0px 5px #666666;
    box-shadow: 0px 0px 5px #666666;
}

.ui-widget-content {
}

.templates-equal-size {
    flex-basis: unset !important;
    flex: 1 !important;
    max-width: unset;
}

.template-two-thirds canvas {
    min-height: 350px;
}

.back-button-content {
    display: flex;
    flex-direction: row;
    align-items: center;
}

select {
    color: gray;
    font-weight: bold;
}

.back-button-icon {
    background: url(../img/arrowLeftGrey.svg) no-repeat center;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 5px 5px 3px 5px
}

.background-back-button {
    margin-right: 15px;
}

.background-back-button:hover {
    background-color: #ffffff;
    border-radius: 30px;
    cursor: pointer;
}


.icon-trend-increase {
    background: url(../img/trending_up-dark-24dp.svg) no-repeat center;
    display: inline-block;
    height: 18px;
    width: 18px;
    background-size: contain;
    flex-basis: 10%;
}

.icon-trend-decrease {
    background: url(../img/trending_down-dark-24dp.svg) no-repeat center;
    display: inline-block;
    height: 18px;
    width: 18px;
    background-size: contain;
    flex-basis: 10%;
}

.icon-trend-equal {
    background: url(../img/trending_flat-dark-24dp.svg) no-repeat center;
    display: inline-block;
    height: 40px;
    width: 45px;
    background-size: contain;
    flex-basis: 10%;
}

.icon-trend-location {
    flex-basis: unset !important;
    margin-right: 4px;
}

.icon-trend-increase-green {
    background: url(../img/trending_up-dark-24dp-green.svg) no-repeat center;
    display: inline-block;
    height: 40px;
    width: 45px;
    background-size: contain;
    flex-basis: 10%;
    margin-top: 2px;
}

.icon-trend-decrease-red {
    background: url(../img/trending_down-dark-24dp-red.svg) no-repeat center;
    display: inline-block;
    height: 40px;
    width: 45px;
    background-size: contain;
    flex-basis: 10%;
}

.icon-trend-decrease-green {
    background: url(../img/trending-down-green.svg) no-repeat center;
    display: inline-block;
    height: 40px;
    width: 45px;
    background-size: contain;
    flex-basis: 10%;
}

.icon-trend-increase-red {
    background: url(../img/trending-up-red.svg) no-repeat center;
    display: inline-block;
    height: 40px;
    width: 45px;
    background-size: contain;
    flex-basis: 10%;
}

.icon-trend-equal-gray {
    background: url(../img/trending_flat-dark-24dp-gray.svg) no-repeat center;
    display: inline-block;
    height: 40px;
    width: 45px;
    background-size: contain;
    flex-basis: 10%;
    margin-top: 2px;
}

.icon-trend-equal-lightgray {
    background: url(../img/trending_flat-dark-24dp-lightgray.svg) no-repeat center;
    display: inline-block;
    height: 40px;
    width: 45px;
    background-size: contain;
    flex-basis: 10%;
}

.icon-trend-info {
    background: url(../img/info-gray.svg) center center / contain no-repeat;
    display: inline-block;
    height: 14px;
    width: 25px;
    flex-basis: 10%;
    /* margin-top: 12px; */
    margin-left: 4px;
}

.action-refresh {
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading-image-generic-template{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    position: relative;
    height: 0px;
    z-index: 98;
    display: none;
}

.loading-image-generic-template-summary {
    top: 13px;
    left: 55px;
    transform: translate(-50%, -50%);
    width: 70px;
    position: relative;
    height: 0px;
    z-index: 98;
    display: none;
}


.loading-image-generic-template-show-true{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    position: relative;
    height: 0px;
    z-index: 50;

}

.loading-image-generic-template-img{
    width: 70px;
    height: 70px;
}


.loading-image-generic-template-img-summary{
    width: 25px;
    height: 25px;
}

.title-container-with-back{
    display: flex;
    align-items: center;
}



.card-location{
    margin: 1%;
    transition: transform .2s ease-out,box-shadow .2s ease-out;
    box-shadow: 0 0 25px 0 rgb(0 0 0 / 8%);
    position: relative;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    overflow: hidden;
}



.card-location-hover-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 208px;
    background-color: rgba(22,45,61,.8);
    opacity: 0;
    pointer-events: none;
    overflow: visible;
    transition: opacity .2s ease-out;
}

.card-location:hover{
    box-shadow: 0 4px 30px 0 rgb(0 0 0 / 16%);
    transform: translateY(-4px);
}

.card-location:hover .card-location-hover-content {
    opacity: 1;
    pointer-events: all;
}

.card-location-image{
    background-color: white;
    width: 370px;
    height: 208px;
    overflow: hidden;
}

.card-location-content{
    background-color: white;
    width: 370px;
    height: 92px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    z-index: 2;
}

.card-location-name{
    margin-top: 20px;
    margin-left: 25px;
    font-size: larger;
    color: #222A35;
}

.card-location-data-container{
    margin-top: 8px;
    margin-left: 31px;
    font-size: medium;
    color: #222A35;
    display: inline-flex;
    margin-right: 30px;
    float: right;
}

.loading-image-locations-card {
    position: absolute;
    opacity: 0.7;
    background-color: #fff;
    max-width: 100%;
    max-height: 200px;
    top: 35%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.loading-image-cameras-card {
    width: 100%;
}

.card-location-hover-content-small{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100px;
    background-color: rgba(22,45,61,.8);
    opacity: 0;
    pointer-events: none;
    overflow: visible;
    transition: opacity .2s ease-out;
}

.card-location:hover .card-location-hover-content-small {
    opacity: 1;
    pointer-events: all;
}

.card-location:hover{
    box-shadow: 0 4px 30px 0 rgb(0 0 0 / 16%);
    transform: translateY(-4px);
}

.card-location:hover .card-location-hover-content {
    opacity: 1;
    pointer-events: all;
}

.card-location-image-small{
    background-color: white;
    width: 175px;
    height: 100px;
    overflow: hidden;
}

.card-location-content-small{
    background-color: white;
    width: 175px;
    height: 65px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    z-index: 2;
}

.card-location-name-small{
    margin-top: 20px;
    margin-left: 25px;
    font-size: medium;
    color: #222A35;
    overflow: hidden;
}


.loading-general {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    display: block;
    opacity: 0.7;
    background-color: #222a35;
    z-index: 99;
    text-align: center;
}

.loading-general-small {
    width: 251px;
    height: 228px;
    position: fixed;
    display: block;
    opacity: 0.7;
    background-color: #222a35;
    z-index: 99;
    text-align: center;
    top: 40%;
    left: 50%;
    padding-top: -9px;
    transform: translate3d(-128px, -13%, 0px);
}

.loading-exit{
    color: white;
    font-size: 21px;
    text-align: right;
    margin-right: 17px;
    cursor: pointer;
}

.loading-exit:hover{
    color: gray;
}

.loading-general-aux {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    display: block;
    opacity: 0.7;
    background-color: #222a35;
    z-index: 98;
    text-align: center;
}

.loading-general-image {
    position: fixed;
    z-index: 100;
    height: 75px;
    transform: translateX(-37px);
    top: 40%;
    left: 50%;
}


.select-location-button{
    background-color: rgba(34, 42, 53, 0.05);
    padding: 10px 15px 10px 15px;
    margin-top: 4px;
    margin-left: 10px;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 100;
    cursor: pointer;
    text-align: center;
    max-width: 250px;
    min-width: 30px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    border: solid 1px #80808017;
    height: 19px;
}

.select-location-button-selected{
    background-color: rgba(34, 42, 53, 0.25);
}

.select-location-button:hover{
    background-color: rgba(34, 42, 53, 0.15);
}

.loading-general-text{
    color: white;
    position: fixed;
    z-index: 100;
    height: 75px;
    top: 40%;
    left: 50%;
    margin-top: 109px;
}

.refresh-screen-button{
    position: fixed;
    z-index: 100;
    right: unset;
    font-size: unset;
    padding-right: 10px;
    padding-left: 10px;
    transform: translateX(-50%);
    top: 40%;
    left: 50%;
    margin-top: 138px;
    min-width: 181px;
}
div.cookieterms {
    width: 60vw!important;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 10px;
    padding-bottom: 35px;
    margin-left: 5px;
    -webkit-box-shadow: 7px 5px 47px -6px rgb(0 0 0 / 32%);
    -moz-box-shadow: 7px 5px 47px -6px rgba(0,0,0,.32);
    box-shadow: 7px 5px 47px -6px rgb(0 0 0 / 32%);
}

.cookieterms {
    background: #fff;
    color: #757888;
    font-weight: 400;
    padding: 10px 0;
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 40px;
    text-align: left;
    z-index: 99999;
    line-height: 1.5;
}

.cookieterms #cookie-consent {
    cursor: pointer;
    border: 2px solid #aaa;
    border-radius: 10px;
    padding: 2px 5px;
    margin: 3px;
    color: #aaa;
    font-weight: 500!important;
    font-size: 12px;
    position: relative;
    top: 0;
    left: 100%;
    text-transform: uppercase;
}

.cookieterms h3 {
    font-weight: 500;
    font-size: 23px;
    margin: 0px;
    font-weight: bold;
}

.cookieterms a{
    text-decoration: none;
}

.selectable-options{
    height: 30px;
    /* min-width: 150px; */
    border: 1px solid #a5a2ab;
    background-color: transparent;
    cursor: pointer;
    color: #222A35;
    font-size: 14px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #a5a2ab;
    /* appearance: unset; */
    border-top: unset;
    border-left: unset;
    border-right: unset;
    margin-right: 20px;
    font-weight: unset;
}


.progress-bar {
    padding: 0px;
    width: 100px;
    max-width: 500px;
    background: #a5a2ab;
    border: 0px solid #000;
    border-radius: 3px;
    height: 10px;
    overflow: hidden;
    position: fixed;
    left: 50%;
    transform: translateX(-50px);
    z-index: 100;
    top: 40%;
    margin-top: 90px;
    }
    
.progress-bar .progress__bar {
height: 100%;
width: 0;
border-radius: 4px;
background: rgba(235, 140, 0, 0.8);
transition: 0.3s;
}


.progress-bar .progress__bar__infinite {
    height: 100%;
    width: 30%;
    background: rgba(235, 140, 0, 0.8);
    animation: fill-bar 3s infinite;
  }
  
  @keyframes fill-bar {
        0% {
        margin-left: 0%;
        }
        50% {
        margin-left: 70%;
        }
        100% {
        margin-left: 0%;
        }
  }


#tabs_container{
    padding-bottom: 20px;
}

.plus-button {
    z-index: 40;
    color: #fff;
    outline: none;
    height: 49px;
    line-height: 49px;
    border-radius: 999px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 1px 2px 0 #7a869a;
    font-weight: 700;
    cursor: pointer;
    background-color: #EB8D00 !important;
    width: 49px;
    font-size: 29px;
    position: fixed;
    right: 3px;
    bottom: 70px;
    transform: translateX(-8px);
    margin-bottom: 10px;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none;
}

.alerts-button{
    display: none;
    z-index: 40;
    color: #fff;
    outline: none;
    height: 49px;
    line-height: 49px;
    border-radius: 999px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 1px 2px 0 #7a869a;
    font-weight: 700;
    cursor: pointer;
    background-color: #eb2b00 !important;
    width: 49px;
    font-size: 29px;
    position: fixed;
    right: 3px;
    bottom: 70px;
    transform: translateX(-8px);
    margin-bottom: 10px;
    top: 50%;
}

.add-location-button:hover {
    background-color: #222A35 !important;
}

#help-button:hover{
    background-color: #222A35 !important;

}

.plus-button:hover{
    background-color: #222A35 !important;
}
.add-location-button-active{
    right: 65px !important;
    width: max-content !important;

}

.add-location-button {
    z-index: 39;
    bottom: 90px;
    width: max-content;
    position: fixed;
    width: 0;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    height: 32px;
    line-height: 32px;
    overflow: hidden;
    text-decoration: none;
    right: 20px;
    display: inline-flex;
    background-color: rgba(235, 140, 0, 0.808);
    border-radius: 2px;
    border-style: none;
    box-shadow: 0px 3px 1px -2px rgb(0 0 0 / 20%), 0px 2px 2px 0px rgb(0 0 0 / 14%), 0px 1px 5px 0px rgb(0 0 0 / 12%);
    transition: all 0.3s ease-in-out;
}

.plus-buttons-container{
    right: 0px;
    bottom: 90px;
    position: fixed;
    z-index: 39;
    top: unset !important;
    transition: all 0.3s ease-in-out;
    width: 0;
}


.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.whatsapp-button{
    z-index: 40;
    color: #fff;
    outline: none;
    height: 49px;
    line-height: 49px;
    border-radius: 999px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 1px 2px 0 #7a869a;
    font-weight: 700;
    cursor: pointer;
    background-color: #EB8D00 !important;
    width: 49px;
    font-size: 29px;
    position: fixed;
    right: 3px;
    bottom: 6px;
    transform: translateX(-8px);
    margin-bottom: 10px;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none;
}


.whatsapp-button:hover{
    background-color: #25d366 !important;
}

.icon-edit-white {
    background: url(../img/edit_white.svg) no-repeat top left;
    background-size: contain;
    display: inline-block;
    height: 18px;
    width: 18px;
    margin-left: 10px;
    float: right;
    margin-top: 17px;
    right: 55px;
}

.lag-message{
    display: flex;
    font-size: 14px;
    margin-bottom: 16px;
    padding: 16px;
    position: relative;
    transition: .3s cubic-bezier(.25,.8,.5,1);
    padding-top: 8px;
    padding-bottom: 8px;
    border: thin solid!important;
    background-color: #fb8c00 !important;
    border-color: #fb8c00 !important;
    color: white;
    margin-left: 6%;
    margin-right: 6%;
    border-radius: 4px;
}

.lag-icon{
    height: 24px;
    width: 24px;
    background-color: #fb8c00 !important;
    border-color: #fb8c00 !important;
    fill: currentColor;
    margin-right: 8px;
    color: white;
}
