.menuItem:hover {
    background-color: #d4ecff;
}
.menuItemHover:hover {
    background-color: #d4ecff;
}

.menuItem svg {
    width: 8vw;
}

.rightMenuItem:hover {
    background-color: #d4ecff;
}
.popMenu {
    position: fixed;
    left: 58px;
    background-color: white;
    top: 37px;
    border: solid 1px grey;
    padding: 10px;
    cursor: pointer;
}
.header {
    background-color: white;
    color: #000142;
    display: table;
    width: 100%;
}
.mobile .header {
    /*height: 18vw !important;*/
}
.mobile .menuItem div{
    margin-top: 3.5vw;
    margin-bottom: 3vw;
    margin-left: 2vw;
    margin-right: 2vw;
}
.mobile .icon img {
    height: 8vw !important;
    padding-left: 3vw !important;
    padding-right: 3vw !important;
}
.vertSeparator {
    border-right:1px solid lightgray;
    height: 46px;
    margin-top: 7px;
    width: 0;
}
.mobile .vertSeparator {
    height: 14vw !important;
    margin-right: 1vw !important;
}
.menuItemRegular {
    font-weight: 500;
    text-align: center;
    width: 85px;
    height: 2px;
    padding-right: 5px;
    padding-left: 5px;
    vertical-align: middle;
    display: table-cell;
    white-space: nowrap;
    cursor: pointer;
}
.menuItemRegular:hover {
    background-color: #d4ecff;
}
.menuItemRegularDisabled:hover {
    background-color: white !important;
}
.menuItemRegularDisabled .svgParent{
    cursor: default;
}

.menuItemRegularDisabled {
    cursor: default !important;

}
.svgParent{
    display: inline-block;
    padding-top: 0px;
    padding-bottom: 4px;
    height: 13px;
    vertical-align: middle;
    cursor: pointer;
}

.menuItem {
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    width: 85px;
    height: 2px;
    padding-right: 5px;
    padding-left: 5px;
    vertical-align: middle;
    display: table-cell;
    white-space: nowrap;
}
.subMenuItem {
    text-transform: uppercase;
    text-align: center;
    width: 85px;
    height: 2px;
    padding-right: 5px;
    padding-left: 5px;
    padding-top: 2px;
    padding-bottom: 6px;
    display: table-cell;
    white-space: nowrap;
}
.mobile .subMenuItem div {
    margin-top: 1.5vw;
    margin-bottom: 1.5vw;
}
.spacerItem {
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    padding-right: 5px;
    padding-left: 5px;
    vertical-align: middle;
    display: table-cell;
}
.leftSpacer{
    padding-left: 65px;
}

.rightMenuItem {
    padding-left: 15px;
    text-align: center;
    width: 95px;
    height: 60px;
    vertical-align: middle;
    display: table-cell;
    color: black;
}

.userItem {
    text-align: right;
    display: table-cell;
    vertical-align: middle;
    padding-right: 15px;
    white-space: nowrap;
}

.userItem .block .dnd {
    padding-right: 10px;
    cursor: pointer;
}

.popupMenu {
    position: fixed;
    background: white;
    border: 1px solid #e6e6e6;
    right: 0;
    padding: 10px;
    margin-right: 10px;
    border-radius: 2px;
    z-index: 10;
}
.mobile .popupMenu {
    position: absolute;
    background: white;
    border: 1px solid #e6e6e6;
    right: 0;
    padding: 10px;
}

.icon img {
    padding-top: 9px;
    padding-left: 20px;
    padding-right: 12px;
}

.icon {
    text-align: center;
    width: 95px;
    height: 60px;
    vertical-align: middle;
    display: table-cell;
}


.blue {
    color: #00B7FF;
}

.underline {
    color: #1B6FF5;
    border-bottom: 2px solid #1B6FF5;
    border-top: 2px solid transparent;
}

.logoutPopup {
    position: absolute;
    right: 10px;
    top: 40px;
    width: 100px;
    border: 1px solid black;
    height: 25px;
    background-color: white;
    text-align: center;
    border-radius: 2px;
    padding-top: 5px;
    cursor: pointer;
}
.popMenuItem{
    text-align: left;
    padding: 6px;
}
.mobile .popMenuItem{
    font-size: 5vw !important;
}
.popMenuItem:hover {
    background-color: #d4ecff;
}

.subMenuItem:hover {
    background-color: #d4ecff;
}

.logoutPopup:hover {
    background-color: #d4ecff;
}
.switch {
    position: relative;
    display: inline-block;
    width: 33px;
    height: 20px;
    margin-left: 20px;
}
.mobile .switch {
    width: 5vw !important;
    height: 3.8vw !important;
    /* margin-top: 0vw; */
    position: relative;
    vertical-align: sub;
}

.green{
    color: limegreen;
}
.grey{
    color: #aaaaaa;
}

.onlineDot {
    margin-right: 5px;
}
.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: 14px;
    width: 15px;
    left: 4px;
    bottom: 3px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}
.mobile .slider:before {
    position: absolute;
    content: "";
    height: 3vw;
    width: 3vw;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}


input:checked + .slider {
    background-color: rgb(3,194,132);
}

input:focus + .slider {
}

input:checked + .slider:before {
    transform: translateX(11px);
}
.mobile input:checked + .slider:before {
    transform: translateX(3vw);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

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

.missingExtensionPopup {
    background-color: #f6826a;
    color: white;
    padding-top: 10px;
    padding-left: 20px;
    padding-bottom: 10px;
    padding-right: 10px;
}
.missingExtensionPopup a {
    text-decoration: none;
    color: white;
}
.missingExtensionPopup .cross {
    vertical-align: super;
    font-size: 130%;
    padding-top: 4px;
    padding-right: 7px;
}
.missingExtensionPopup .subDiv{
    display: inline-block;
    vertical-align: super;
    padding-left: 10px;
    padding-top: 6px;
}
.missingExtensionPopup  .beginButton {
    text-transform: uppercase;
    color: white;
    border: 1px solid white;
    background-color: #f6826a;
    border-radius: 3px;
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    cursor: pointer;
    margin-left: 40px;
}
.newUserPopup {
    background-color: #0b0528;
    color: white;
    padding-top: 10px;
    padding-left: 20px;
    padding-bottom: 10px;
    padding-right: 10px;
}

.licensePopup {
    background-color: rgb(255,105,179);
    color: white;
    padding-top: 10px;
    padding-left: 20px;
    padding-bottom: 10px;
    padding-right: 10px;
}

.licensePopup .beginButton {
    border-radius: 3px;
    border: 1px solid white;
    cursor: pointer;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-left: 15px;
}


.newUserPopup .floatRight {
    float: right;
    cursor: pointer;
}
.newUserPopup .beginButton {
    color: white;
    background-color: #1B6FF5;
    border-radius: 3px;
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    cursor: pointer;
    margin-left: 40px;
}
.newUserPopup .subDiv{
    display: inline-block;
    vertical-align: super;
    padding-left: 10px;
}

.newUserPopup .cross {
    vertical-align: super;
    font-size: 130%;
    padding-top: 1px;
    padding-right: 7px;
}

#visitele .modalPopup {
    width: 290px;
    height: 180px;
}
#visitele .register .modalPopup .center {
    margin-top: 15px;
}
#visitele .register .modalPopup .cross {
    float: right;
    margin-top: 4px;
}

.register .modalPopup .vzt-button {
    margin-top: 50px;
}
.register .modalPopup .okButton{
    text-align: center;
}
#visitele .register .center{
    text-align: center;

}
#visitele .modalInput {
    width: 350px;
    height: 210px;
}

#visitele .visitele-popup {
    margin: auto;
    z-index: 1000000;
    font-family: Arial;
    font-size: 15px;
    border-radius: 10px;
    background-color: white;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: 3px 3px 5px 1px #aaa;
    justify-content: center; /* align horizontal */
    padding-right: 5px;
    padding-left: 5px;
    padding-top: 1px;
}

#visitele .modal .cross {
    width: 21px;
    height: 11px;
    line-height: 22px;
    font-size: 32px;
    color: #999;
    margin-top: 5px;
    margin-right: 5px;
    float: right;
    cursor: pointer;
}

#visitele .modal .cross svg path {
    fill: #aaa;
}

#visitele .modal .okDiv {
    text-align: center;
}

.modal .okButton {
    margin-top: 35px;
    padding: 8px;
    border-radius: 3px;
    color: white;
    background-color: #1B6FF5;
    width: 185px;
    display: inline-block;
    cursor: pointer;
}

#visitele .modal .center {
    margin-top: 38px;
    margin-bottom: 31px;
    text-align: center;
}

.mobile .cspacer {
    display: none;
}
.mobile .urlNode {
    word-break: break-all;
}
.mobile .callFloater {
    padding-top: 3vw;
    padding-left: 3vw;
    width: 97vw;
    bottom: 0;
    left: 0;
    position: fixed;
    background-color: white;
    padding-bottom: 3vw;
    z-index: 1000;
}

.mobile .callFloater .close {
    font-weight: 600;
    margin-right: 4vw;
    padding-top: -2vw;
}
.mobile .callFloater .sessCount {
    background: #939da545;
    border-radius: 3vw;
    width: 5vw;
    display: inline-block;
    text-align: center;
}