.fake {
    display: none;
}
html {
    width: 100%;
    height: 100%;
    color: #20252E;
    font-family: 'Source Sans Pro', sans-serif;
    overflow: scroll;
}
body {
    height: 100%;
    font-family: 'Source Sans Pro', sans-serif;
    color: #20252E;
    background-color: #1e5d91;
    position: absolute;
    left: 0;
    right: 0;
    overflow-x: hidden;
}
.fixed {
    left: 0 !important;
    right: 0 !important;
}

/* Mozilla based browsers */
::-moz-selection { background-color: transparent; text-shadow: none; }

/* Works in Safari */
::selection { background-color: transparent; text-shadow: none; }

/* Works in Opera */
::-o-selection { background-color: transparent; text-shadow: none; }
::-ms-selection { background-color: transparent; text-shadow: none; }

/* Works in Internet Explorer */
::-webkit-selection { background-color: transparent; text-shadow: none; }
img::selection { background-color: transparent; text-shadow: none; }
button::selection { background-color: transparent; text-shadow: none; }

::selection { background: #e2eae2; }
::-moz-selection { background: #e2eae2; }
::-webkit-selection { background: #e2eae2; }

hr {
    display: block;
    border: 0;
    border-top: 1px solid #9CCDC7;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio, canvas, iframe, img, svg, video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

h1 {
    font-size: 48px;
    text-transform: capitalize;
}
h2,h3,h4,h5,h6 {
    text-transform: capitalize;
}
.btn-default {
    color: #fff;
    background-color: #20252E;
    width: 200px;
}
.btn {
    border-radius: 0;
    text-transform: uppercase;
    font-weight: 400;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers:
 */

.hidden {
    display: none;
}

/*
 * Hide only visually, but have it available for screen readers:
 * http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visuallyhidden:active, .visuallyhidden:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}
.focusable:active, .focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}
/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before, .clearfix:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */
}
.clearfix:after {
    clear: both;
}

/* Firefox feature to hide input number spinners */
input[type='number'] {
    -moz-appearance:textfield;
}

/* REMOVES TEXT AND IMAGE SELECTION */

img, .left-menu-listing, .login-container {
    -moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    /*
     Introduced in IE 10.
     See http://ie.microsoft.com/testdrive/HTML5/msUserSelect/
    */
    -ms-user-select: none;
    user-select: none;
}

/* Disable a div */

.div-disabled {
    pointer-events: none;
    opacity: 0.5;
}

/*** NAV ***/
.nav-menu-fixed {
    background-color: #eaeff2;
    width: 78%;
    position: fixed;
    right: 0;
    z-index: 1002;
}
.nav-menu-fixed>.row {
    margin-right: 0;
}
.nav-menu {
    color: #fff;
    margin-left: 0;
}
.nav-menu-content {
    background-color: #fff;
    color: #20252E;
    margin: 15px 0;
    box-shadow: 0 0 3px rgba(0,0,0,0.1);
}
.menu-header {
    margin: 10px -2px;
}
.menu-header img {
    height: 40px;
    margin-top: -7px;
}

/*** LEFT MENU ***/

.hour {
    position: fixed;
    left: 0;
    width: 22%;
    text-align: right;
    margin: 0;
    line-height: 0;
    top: -12px;
    background-color: #1e5d91;
    z-index: 2;
}
.active-menu {
    background-color: #29313C;
}
.active-menu hr {
    border-top: 1px solid transparent;
}
.menu-name {
    margin-bottom: 20px;
    margin-left: -20px;
    margin-right: -19px;
    display: block;
}
.sector-name {
    font-size: 30px;
    margin-top: 10px;
}
.sector-name-hr {
    margin-top: 0;
    margin-bottom: 0;
}
.left-menu-fixed {
    position: fixed;
    top: 0;
    left: 0;
    bottom:0;
    background-color: #1e5d91;
    background: rgba(30, 93, 145,1);
    height: 100%;
    width: calc(22% + 17px);
    overflow-y: scroll;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    z-index: 1001;
    padding-right: 20px;
}
.checked-left-menu {
    display: inherit !important;
}
.left-menu-fixed::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 12px;
}
.menu-left {
    color: #fff;
    position: relative;
    top: 93px;
    margin-left: -10px;
}
.menu-left>div {
    margin-bottom: 25px;
}
.left-menu-listing {
    cursor: pointer;
    margin-top: -1px;
    position: relative;
    z-index: 1;
}
.left-menu-listing div {
    padding-left: 10px;
    padding-right: 10px;
}
.left-menu-listing-name {
    font-size: 16px;
    float: left;
    margin-top: 10px;
}
.left-menu-listing-hr {
    margin-top: 6px;
    margin-bottom: 0;
}

/* BACK BUTTON */
.back {
    cursor: pointer;
    color: #fff;
    text-decoration: none;
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 3;
    width: 150px;
}
.back-h3 {
    margin-top: 2px;
    margin-left: -4px;
}
.back-icon {
    height: 20px;
    margin-top: -4px;
}
.back-menu-icon {
    height: 35px;
}
/*** RIGHT MENU ***/
.right-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 78%;
    background-color: #eaeff2;
    padding-top: 89px;
    min-height: 100%;
    z-index: 1001;
}
p {
    font-size: 18px;
    margin: 10px 0 10px;
}
span {
    font-size: 18px;
}
h2 {
    font-size: 27px;
}
h3 {
    font-size: 18px;
}
ul {
    list-style-type: none;
    background-color: #eaeff2;
    padding: 0;
}
li {
    padding-bottom: 10px;
    height: 35px;
    padding-top: 5px;
    padding-left: 10px;
    cursor: pointer;
    font-size: 18px;
}
li:hover {
    background-color: #1e5d91;
    color: #fff;
}
/* SAVE AND CANCEL BUTTONS */
.save-position {
    margin-top: 15px;
    text-align: right;
}
.save {
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    text-align: right;
    margin-left: 15px;
}
.cancel {
    color: #90969B;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
}
.save-position img {
    margin-left: 5px;
    height: 18px;
    margin-top: -5px;
    cursor: pointer;
}
/* INPUTS */
input {
    border: 0;
    color: #1e5d91;
    font-weight: 700;
    width: 300px;
    height: 35px;
    margin-left: 10px;
    outline-color: #1e5d91;
    -webkit-outline-color: #1e5d91;
    -moz-outline-color: #1e5d91;
    background-color: #eaeff2;
    padding-left: 10px;
}
::-webkit-input-placeholder {
    letter-spacing: 0;
    font-size: 90%;
    color: #1e5d91;
    font-style: italic;
    font-weight: normal;
    padding-top: 1px;
}
:-moz-placeholder { /* Firefox 18- */
    letter-spacing: 0;
    font-size: 90%;
    color: #1e5d91;
    font-style: italic;
    margin-top: 3px;
    font-weight: normal;
}
::-moz-placeholder {  /* Firefox 19+ */
    letter-spacing: 0;
    font-size: 90%;
    color: #1e5d91;
    font-style: italic;
    margin-top: 3px;
    font-weight: normal;
}
:-ms-input-placeholder {
    letter-spacing: 0;
    font-size: 90%;
    color: #1e5d91;
    font-style: italic;
    margin-top: 3px;
    font-weight: normal;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    /*-moz-appearance: none;*/
    margin: 0;
}
input::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}
input::selection {
    background: #b3d4fc;
    text-shadow: none;
}
.active-toggle {
    margin-bottom: 3px;
}
.general-checkbox {
    margin-top: 0;
    min-height: 1.8rem !important;
    margin-bottom: -3px;
}
.general-checkbox input[type="checkbox"] {
    margin-left: 0;
    width: 4rem;
}
.general-checkbox label:before {
    width: 3.8rem !important;
    height: 1.5rem !important;
    background: transparent !important;
    margin-top: 2px;
}
.general-checkbox label:after {
    width: 2.2rem !important;
    height: 2.2rem !important;
    background: #1e5d91 -webkit-linear-gradient(transparent, rgba(255, 255, 255, 1));
    background-color: #1e5d91 !important;
    border: 1px solid #fff !important;
    margin-left: -1px;
    margin-top: -1px;
    box-shadow: none !important;
}
.general-checkbox input:focus:checked~.box:before, .general-checkbox input:focus:checked~label:before {
    background-color: #fff!important;
}
.general-checkbox input:checked~.box:before, .general-checkbox input:checked~label:before {
    background-color: #fff!important;
}
.ui.checkbox .box:before, .ui.checkbox label:before {
    background-color: #a5a5a5 !important;
}
.general-checkbox-selection label:after {
    border: 2px solid #eaeff2 !important;
}
.ui.toggle.checkbox input:focus:checked ~ .box:before, .ui.toggle.checkbox input:focus:checked ~ label:before {
    background-color: #fff !important;
    border: 2px solid #1e5d91 !important;
 }
.ui.toggle.checkbox input:checked ~ .box:before, .ui.toggle.checkbox input:checked ~ label:before {
    background-color: #fff !important;
    border: 2px solid #1e5d91 !important;
}
.square-checkbox {
    height: 25px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}
.square-checkbox input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 25px;
    height: 25px;
    background-color: #fff;
    border: 2px solid #1e5d91 !important;
    cursor: pointer;
    position: relative;
    margin: 0;
    flex-shrink: 0;
}
.square-checkbox input:checked {
    background-color: #1e5d91;
}
.square-checkbox input:checked::before {
    content: '\2713';
    font-size: 20px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.square-checkbox label {
    height: 25px;
    margin-left: 10px;
    margin-bottom: 0;
    font-size: 18px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
}

/* CLEARABLE INPUTS*/
.clearable{
  background: url(../img/icons/bt_cancel_floor.svg) no-repeat right -22px center;
  padding: 3px 25px 3px 0; /* Use the same right padding (18) in jQ! */
  transition: background 0.4s;
}
.clearable.x  { background-position: right 2px center; }
.clearable.onX{ cursor: pointer; }
.error-message-content {
    padding-left: 20px;
    font-weight: 700;
    font-style: italic;
}
/* BUTTONS */
.button-blue {
    background-color: #1e5d91;
}

.button-gray {
    background-color: gray;
}

.general-button {
    width: 100%;
    height: 45px;
    text-transform: uppercase;
    margin: 0;
    border: 0;
}

.round-button {
    width: auto;
    height: 45px;
    text-transform: uppercase;
    margin: 0;
    border: 0;
    border-radius: 15px;
}

.button-disabled {
    pointer-events: none;
    opacity: 0.5;
    cursor: not-allowed;
}
/* FOR ANY MODAL */
body.modal-open {
    overflow-y: scroll;
    position: fixed !important;
}
.modal {
    right: -15px;
}
/* ==========================================================================
   CONFIRMATION MESSAGE MODAL
   ========================================================================== */
.attention-header {
    margin-top: 10px;
    text-transform: none;
    min-height: 30px;
    margin-bottom: 5px;
    color: #20252e;
}
.attention-header-hr {
    border-top: 1px solid #90969b;
}
.confirmation-message-header {
    margin: auto;
    color: #20252e;
    text-transform: none;
    margin-top: 5px;
    font-size: 22px;
}
.confirmation-buttons-div {
    margin-top: 20px;
}
.button-yes {
    text-align: center;
    cursor: pointer;
    background-color: #1e5d91;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    width: 49%;
    margin-left: 2%;
    height: 37px;
    line-height: 40px;
}
.button-no {
    text-align: center;
    cursor: pointer;
    background-color: #90969b;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    width: 49%;
    height: 37px;
    line-height: 40px;
}
.single-button {
    width: 100%;
    margin: 0;
}
/********** NOTIFICATIONS MODAL **********/
.notification-modal {
    top: 10px;
    bottom: inherit;
    left: initial;
    right: 10px;
    z-index: 1061 !important;
    overflow-x: hidden;
    overflow-y: auto !important;
    box-shadow: 0 0 20px rgba(0,0,0,.8);
}
.notification-modal .modal-dialog {
    width: 400px;
    margin: 0;
}
.notification-modal-open {
    overflow: auto;
}
.notification-modal .modal-content-box {
    margin-bottom: 10px;
}
.notification-modal .confirmation-buttons-div {
    margin-top: 10px;
    padding: 0 10px;
}
.notification-modal .modal-content-box>div {
    padding: 0 10px;
}
.notification-modal .hr {
    margin-bottom: 0;
}
.notification-modal .modal-content-box>div:first-child {
    display: none;
}
.notification-modal .confirmation-message-header {
    font-size: 18px;
}
.notification-modal .button-no {
    height: 27px;
    line-height: 29px;
}
.notification-modal .button-yes {
    height: 27px;
    line-height: 29px;
}
.attention-header {
    margin: 0;
    margin-top: 5px;
    font-size: 24px;
}
.notification-modal .confirmation-buttons-div span {
    font-size: 16px;
}
@media only screen and (max-width: 1199px) {
    h1 {
        font-size: 42px;
    }
    h2 {
        font-size: 24px;
    }
    h3 {
        font-size: 16px;
    }
    p {
        font-size: 16px;
    }
    span {
        font-size: 16px;
    }
    li {
        height: 30px;
        padding-bottom: 5px;
        font-size: 16px;
    }
    .hour {
        top: -13px;
    }
    .back {
        top: 7px;
    }
    .back-icon {
        height: 16px;
    }
    .back-menu-icon {
        height: 30px;
    }
    .menu-name {
        margin-bottom: 15px;
        margin-left: -27px;
    }
    .nav-menu-content {
        margin: 8px -2px;
    }
    .menu-header {
        margin: 10px -2px;
    }
    .menu-header img {
        height: 35px;
    }
    .sector-name {
        font-size: 26px;
        margin-top: 15px;
    }
    .menu-left {
        margin-left: -5px;
        top: 77px;
    }
    .left-menu-listing {
        margin-left: -20px;
    }
    .left-menu-listing div {
        padding-left: 8px;
    }
    .left-menu-listing-name {
        font-size: 16px;
        float: left;
        margin-top: 12px;
    }
    .left-menu-listing-hr {
        margin-top: 8px;
    }
    .right-menu-content {
        padding-top: 71px;
    }
    .save-position img {
        height: 16px;
    }
    /********** NOTIFICATION MODAL **********/
    .notification-modal .modal-dialog {
        width: 300px;
    }
    .notification-modal .hr {
        margin-bottom: 0;
        margin-top: -25px;
    }
    .notification-modal .attention-header {
        margin-top: 5px;
        font-size: 20px;
    }
    .notification-modal .confirmation-buttons-div {
        margin-top: 5px;
    }
    .notification-modal .confirmation-message-header {
        font-size: 16px;
    }
    .notification-modal .confirmation-buttons-div span {
        font-size: 14px;
    }
    .notification-modal .button-no {
        height: 23px;
        line-height: 25px;
    }
    .notification-modal .button-yes {
        height: 23px;
        line-height: 25px;
    }
}
@media only screen and (max-width: 991px) {
    .nav-menu-fixed {
        width: 75%;
    }
    .right-menu-content {
        width: 75%;
    }
    h1 {
        font-size: 32px;
    }
    h2 {
        font-size: 20px;
    }
    h3 {
        font-size: 14px;
    }
    p {
        font-size: 14px;
    }
    span {
        font-size: 14px;
    }
    li {
        font-size: 14px;
        height: 30px;
        padding-top: 5px;
    }
    input {
        height: 28px;
    }
    .general-checkbox {
        min-height: 1.5rem !important;
        margin-bottom: 0 !important;
    }
    .general-checkbox input[type="checkbox"] {
        width: 4rem !important;
        margin-left: 1rem;
        height: 1.5rem !important;
        margin-top: 3px;
    }
    .general-checkbox label:before {
        width: 4rem !important;
        height: 1.5rem !important;
        margin-top: 1.5px;
    }
    .general-checkbox label:after {
        width: 2.1rem !important;
        height: 2.1rem !important;
    }
    .hour {
        width: 25%;
        top: -15px;
    }
    .back {
        top: 5px;
    }
    .back-icon {
        height: 13px;
    }
    .back-menu-icon {
        height: 25px;
    }
    .menu-name {
        margin-bottom: 15px;
        margin-left: -20px;
    }
    .nav-menu-content {
        margin: 8px -5px;
    }
    .menu-header {
        margin: 0 -5px;
    }
    .menu-header img {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .menu-header img {
        height: 28px;
    }
    .sector-name {
        font-size: 20px;
        margin-top: 0;
        margin-left: -10px;
    }
    .sector-name-hr {
        margin-left: -10px;
    }
    .left-menu-fixed {
        width: calc(25% + 20px);
        padding-left: 5px;
        padding-right: 5px;
    }
    .left-menu-listing-name {
        margin-top: 9px;
    }
    .left-menu-listing-hr {
        margin-top: 0;
    }
    .menu-left {
        margin-left: 5px;
        top: 62px;
        margin-right: 0;
    }
    .right-menu-content {
        padding-top: 55px;
    }
    .save-position img {
        height: 12px;
    }
    .left-menu-listing div {
        padding-left: 6px;
    }
    .save-position div {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .button-yes {
        height: 32px;
        line-height: 35px;
    }
    .button-no {
        height: 32px;
        line-height: 35px;
    }
    .attention-header {
        font-size: 20px;
        margin-top: 5px;
        text-transform: none;
        min-height: 22px;
        margin-bottom: 12px;
    }
    /********** NOTIFICATION MODAL **********/
    .notification-modal .modal-dialog {
        width: 280px;
    }
    .notification-modal .attention-header {
        margin-top: 2px;
        font-size: 18px;
    }
    .notification-modal .hr {
        margin-top: -30px;
    }
    .notification-modal .modal-content-box>div {
        padding: 0 5px;
    }
    .notification-modal .modal-content-box {
        margin-bottom: 5px;
    }
}
@media only screen and (max-width: 800px) {
    /******************************
    STYLING FOR IPADS
    ******************************/
    h3 {
        font-size: 20px;
    }
    span {
        font-size: 16px;
    }
    p {
        font-size: 18px;
    }
    li {
        font-size: 18px;
        height: 40px;
        padding-top: 10px;
    }
    h2 {
        font-size: 24px;
    }
    .save-position img {
        height: 16px;
    }
    .left-menu-fixed {
        width: calc(30% + 17px);
    }
    .nav-menu-fixed {
        width: 70%;
    }
    .right-menu-content {
        width: 70%;
    }
    .hour {
        width: 30%;
    }
    .back-menu-icon {
        height: 30px;
    }
    .left-menu-listing-name {
        font-size: 16px;
        margin-top: 10px;
        padding-bottom: 7px;
    }
    .left-menu-listing-hr {
        margin-top: 7px;
    }
    input {
        height: 35px;
    }
}
/* #### Tablets Portrait or Landscape #### */
@media screen and (max-device-width: 1024px) {
    /* FOR ANY MODAL ON TABLETS */
    body.modal-open {
        overflow-y: hidden;
        position: absolute !important;
    }
    .modal {
        right: 0;
    }
}
@media only screen and (device-width: 768px) {
  /* For general iPad layouts */
    .left-menu-fixed {
        width: calc(30% + 10px);
    }
}
@media only screen and (device-width: 768px) and (orientation:landscape) {
  /* For general iPad layouts → landscape layouts only */
    .left-menu-fixed {
        width: calc(22% + 10px);
    }
}
@media only screen and (max-width: 767px) {
    body {
        transition-duration: 0.5s;
        transition-property: top, bottom, left, right;
    }
    .no-margin-right {
        right: 0 !important;
    }
    p {
        font-size: 18px;
    }
    span {
        font-size: 18px;
    }
    li {
        font-size: 18px;
        padding-top: 7px;
        height: 40px;
        padding-bottom: 2px;
    }
    h2 {
        font-size: 18px;
    }
    /* LEFT MENU */
    .back-h3 {
        margin-top: 10px;
    }
    .back-menu-icon {
        height: 30px;
        margin-left: 0;
    }
    .hour {
        width: 90vw;
        top: -8px;
    }
    .left-menu-fixed {
        width: calc(92vw - -2px);
    }
    .menu-left {
        top: 85px;
        margin-left: 15px;
    }
    /* RIGHT MENU */
    .right-menu-content {
        position: absolute;
        width: 100%;
        padding-top: 60px;
        margin-right: 0;
        left: 0;
    }
    .save-position img {
        height: 18px;
    }
    .save {
        font-size: 18px;
    }
    .cancel {
        font-size: 18px;
    }
    .clearable {
        background-size: 20px 15px;
    }
    .nav-menu-fixed {
        top: -1px;
        width: 100%;
        height: 70px;
        position: absolute;
        left: 0;
    }
    .nav-menu-content {
        height: 55px;
        padding-left: 65px;
    }
    .nav-menu {
        width: 100%;
        position: fixed;
        background: #eaeff2;
    }
    .menu-header {
        margin: 5px -10px 0;
        font-size: 28px;
    }
    .attention-header {
        min-height: 30px;
        font-size: 30px;
    }
    .left-menu-listing-name {
        font-size: 22px;
        margin-top: 12px;
        line-height: 43px;
    }
    .left-menu-listing-hr {
        margin-top: 25px;
    }
    input {
        height: 40px;
    }
    .button-yes {
        height: 40px;
        line-height: 40px;
    }
    .button-no {
        height: 40px;
        line-height: 40px;
    }
    .error-message-content {
        padding-left: 10px;
    }
    .pgslidefixed {
        position: fixed !important;
        left: 90vw !important;
        -webkit-transition: left 0.5s; /* Safari 3.1 to 6.0 */
        transition: left 0.5s;
    }
    .pgslideabsolute {
        position: fixed !important;
    }
    .pgslideabsolute.nav-toggle-div {
        margin-left: 7px;
    }
}
@media only screen and (max-width: 650px) {
    .left-menu-fixed {
        width: calc(92vw - -5px);
    }
}
@media only screen and (max-width: 600px) {
    .left-menu-listing-name {
        font-size: 20px;
        line-height: 37px;
    }
    .left-menu-listing-hr {
        margin-top: 18px;
    }
}
@media only screen and (max-width: 550px) {
    .left-menu-fixed {
        width: calc(92vw - -6px);
    }
}
@media only screen and (max-width: 450px) {
    h1 {
        font-size: 24px;
    }
    span {
        font-size: 16px;
    }
    p {
        font-size: 16px;
    }
    li {
        padding-top: 11px;
        font-size: 16px;
    }
    h2 {
        font-size: 16px;
    }
    input {
        width: 150px;
    }
    .save-position img {
        height: 16px;
        margin-left: 5px;
        margin-top: -3px;
    }
    .button-yes {
        height: 35px;
        line-height: 37px;
    }
    .button-no {
        height: 35px;
        line-height: 37px;
    }
    .attention-header {
        min-height: 15px;
        margin-bottom: 10px;
    }
    .left-menu-listing-name {
        font-size: 18px;
        line-height: 42px;
    }
    .left-menu-listing-hr {
        margin-top: 21px;
    }
    .nav-menu-content {
        padding-left: 60px;
    }
    .menu-left {
        top: 70px;
        margin-left: 10px;
    }
    .menu-header {
        margin: 10px -10px 0;
        font-size: 24px;
    }
    .menu-header img {
        height: 22px;
        margin-top: 8px;
    }
    .left-menu-fixed {
        width: calc(89% - -8px);
        padding-right: 0;
    }
    .back-h3 {
        height: 30px;
        margin-top: 5px;
    }
    .sector-name {
        margin-top: -2px;
    }
}
@media only screen and (max-width: 420px) {
    .menu-header {
        font-size: 20px;
    }
}
@media only screen and (max-width: 370px) {
    .square-checkbox {
        height: 20px;
    }
    .square-checkbox input {
        width: 20px;
        height: 20px;
    }
    .square-checkbox input:checked::before {
        font-size: 16px;
    }
    .square-checkbox label {
        height: 20px;
        font-size: 16px;
    }
    .menu-header {
        font-size: 18px;
    }
    .menu-header img {
        height: 18px;
    }
}
@media only screen and (max-width: 350px) {
    li {
        padding-left: 5px;
    }
    input {
        padding-left: 5px;
    }
    .left-menu-listing-name {
        font-size: 18px;
    }
    .left-menu-fixed {
        width: calc(90% - -10px);
        padding-right: 8px;
    }
    .menu-left {
        margin-right: -12px;
    }
    .save-position img {
        height: 14px;
        margin-left: 2px;
        margin-top: -3px;
    }
    .save {
        font-size: 15px;
    }
    .cancel {
        font-size: 15px;
    }
    .attention-header {
        min-height: 13px;
    }
    /* .menu-header {
        font-size: 22px;
    } */
}
@media only screen and (max-width: 320px) {
    .left-menu-fixed {
        padding-right: 12px;
    }
}
@media (max-device-width: 991px) {
    body:not(:-moz-handler-blocked) .left-menu-fixed {
        width: calc(25% + 7px);
    }
}
@media (max-device-width: 800px) {
    body:not(:-moz-handler-blocked) .left-menu-fixed {
        width: calc(30% + 7px);
    }
}
@media (max-device-width: 767px) {
    body:not(:-moz-handler-blocked) .left-menu-fixed {
        width: calc(92vw - 12px);
    }
}
@media (max-device-width: 1199px) and (max-device-height: 768px) and (orientation: landscape) {
    body:not(:-moz-handler-blocked) .left-menu-fixed {
        width: calc(22% + 6px);
    }
}
@media (max-device-width: 991px) and (max-device-height: 768px) and (orientation: landscape) {
    body:not(:-moz-handler-blocked) .left-menu-fixed {
        width: calc(25% + 6px);
    }
}
@media (max-device-width: 800px) and (max-device-height: 768px) and (orientation: landscape) {
    body:not(:-moz-handler-blocked) .left-menu-fixed {
        width: calc(30% + 7px);
    }
}
@media (max-device-width: 767px) and (max-device-height: 600px) and (orientation: landscape) {
    body:not(:-moz-handler-blocked) .left-menu-fixed {
        width: calc(92vw - 7px);
    }
}
@media (max-device-width: 450px) and (max-height: 600px) and (orientation: landscape) {
    body:not(:-moz-handler-blocked) .left-menu-fixed {
        width: calc(92vw - 5px);
    }
}
@media (max-device-width: 767px) and (max-device-height: 1199px) and (orientation: portrait) {
    body:not(:-moz-handler-blocked) .left-menu-fixed {
        width: calc(92vw - 12px);
        padding-right: 7px;
    }
}
@media (device-width: 768px) and (max-device-height: 1280px) and (orientation: portrait) {
    body:not(:-moz-handler-blocked) .left-menu-fixed {
        width: calc(30% - -6px);
    }
}
@media (max-device-width: 600px) and (max-device-height: 1199px) and (orientation: portrait) {
    body:not(:-moz-handler-blocked) .left-menu-fixed {
        width: calc(92vw - 9px);
        padding-right: 5px;
    }
}
@media (max-device-width: 450px) and (max-device-height: 800px) and (orientation: portrait) {
    body:not(:-moz-handler-blocked) .left-menu-fixed {
        width: calc(92vw - 5px);
    }
}
@media (max-device-width: 350px) and (max-device-height: 800px) and (orientation: portrait) {
    body:not(:-moz-handler-blocked) .left-menu-fixed {
        padding-right: 12px;
    }
}