﻿@import url(https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,400;1,500;1,700&display=swap); /* Roboto */
/*******    COLOR VARIABLES     *******/
/********   TYPOGRAPHY VARIABLES  ********/
body {
    font-family: "Roboto", Verdana, Geneva, sans-serif;
}

/* media-breakpoint-down applies to the given screen size or bigger  */
/* media-breakpoint-down applies to the given screen size or smaller  */
/* media-breakpoint-only applies to the given screen size  */
/*******    COLOR VARIABLES     *******/
/********   TYPOGRAPHY VARIABLES  ********/
.text-xs {
    font-size: 11px;
}

.text-small {
    font-size: 14px;
}

.text-base {
    font-size: 18px;
}

.text-large {
    font-size: 21px;
}

.text-xl {
    font-size: 28px;
}

.text-2xl {
    font-size: 36px;
}

.text-3xl {
    font-size: 48px;
}

.text-4xl {
    font-size: 60px;
}

.text-5xl {
    font-size: 84px;
}

.font-light {
    font-weight: 300;
}

.font-regular {
    font-weight: 400;
}

.font-semi-bold {
    font-weight: 500;
}

.font-bold {
    font-weight: 700;
}

/*******    COLOR VARIABLES     *******/
/********   TYPOGRAPHY VARIABLES  ********/
.alert-danger {
    border-color: #ef3030;
    background-color: #fff0f0;
    color: #960f0f;
}

.alert-warning {
    border-color: #ffb000;
    background-color: #fff9eb;
    color: #4c2906;
}

.alert-success {
    border-color: #81d322;
    background-color: #f8ffef;
    color: #273f06;
}

.alert-info {
    border-color: #58afff;
    background-color: #f5fafc;
    color: #002e60;
}

.alert-purple {
    border-color: #be5be3;
    background-color: #fcf3ff;
    color: #420b5b;
}

.border-dotted-2 {
    border-width: 2px;
    border-style: dashed;
}

/*******    COLOR VARIABLES     *******/
/********   TYPOGRAPHY VARIABLES  ********/
.badge-warning {
    background: #ffe2a1;
    color: #4c2906;
}

.badge-info {
    background: #aad6ff;
    color: #002e60;
}

.badge-success {
    background: #d1f8a0;
    color: #273f06;
}

.badge-danger {
    background: #ff8383;
    color: #490808;
}

.badge-secondary {
    background: #e3e2e1;
    color: #2d2c2b;
}

.badge-secondary-warning {
    background: #dda5f2;
    color: #420b5b;
}

.badge-purple {
    background: #dda5f2;
    color: #420b5b;
}

.badge-gray-500 {
    background: #898888;
    color: #ffffff;
}

.badge-gray-900 {
    background: #161616;
    color: #ffffff;
}

.badge-black {
    background: #000000;
    color: #ffffff;
}

.badge-orange {
    background: #FF952C;
    color: #6E3700;
}

.badge-teal, .badge-outbound {
    background: #0AC7AD;
    color: #ffffff;
}

.badge-blue-600, .badge-inbound {
    background: #005ec2;
    color: #ffffff;
}

.modal-header {
    background: #2d2c2b;
    color: #fff;
    border-bottom: 4px solid #ffb000;
    border-top-left-radius: .2rem;
    border-top-right-radius: .2rem;
}

.modal-title {
    font-weight: 300;
}

.modal-close-icon {
    width: 20px;
    height: 20px;
}

.modal.fade {
    opacity: 1;
}

    .modal.fade .modal-dialog {
        -webkit-transform: translate(0);
        -moz-transform: translate(0);
        transform: translate(0);
    }

.modal-dialog.animated {
    -webkit-animation-duration: 0.2s;
    animation-duration: 0.2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.modal {
    background-color: rgba(0, 0, 0, 0);
    transition: background-color .25s ease-out;
}

    .modal.show {
        background-color: rgba(0, 0, 0, 0.5);
    }

.modal-backdrop {
    display: none;
}

.modal-backdrop-transparent {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: transparent;
    opacity: 0;
    width: 100%;
    height: 100%;
    z-index: 900;
}

.modal-backdrop-primary {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0.6;
    width: 100%;
    height: 100%;
    z-index: 1040;
}

.modal-transition {
    transition: all 0.4s ease;
}

.modal-content {
    box-shadow: 0 2px 4px rgba(68, 68, 68, 0.6) !important;
    border: none !important;
    max-height: calc(100vh - 56px);
}

.modal-header {
    cursor: grab;
}

.st-default-modal-dialog .modal-body {
    max-height: 600px;
    overflow: auto;
}

/*******    COLOR VARIABLES     *******/
/********   TYPOGRAPHY VARIABLES  ********/
.st-tooltip-link {
    color: #898888;
    cursor: help;
    font-size: 18px;
    text-align: middle;
    margin-left: 8px;
}

    .st-tooltip-link:hover {
        color: #007bff;
    }

/*******    COLOR VARIABLES     *******/
/********   TYPOGRAPHY VARIABLES  ********/
.st-tab.active {
    color: #2d2c2b;
    border-bottom: 3px solid #007bff;
}

/*******    COLOR VARIABLES     *******/
/********   TYPOGRAPHY VARIABLES  ********/
/* -----------------------

    DEFAULT FORM STYLING

   ----------------------- */
.input-validation-error, .form-control.is-invalid {
    border-color: #dc3545;
    padding-right: 2.25rem;
    /*background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px;*/
    background-repeat: no-repeat;
    background-position: center right calc(2.25rem / 4);
    background-size: calc(2.25rem / 2) calc(2.25rem / 2);
    /*background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E");*/
    background-image: none;
}

label.is-invalid {
    width: 100%;
    margin-top: .25rem;
    font-size: 80%;
    color: #dc3545;
}

.is-invalid:focus, .input-validation-error:focus {
    border-color: rgba(220, 53, 69, 0.8);
    outline: 0;
    -webkit-box-shadow: 0 0 8px rgba(220, 53, 69, 0.6) !important;
    /* Safari 3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
    -moz-box-shadow: 0 0 8px rgba(220, 53, 69, 0.6) !important;
    /* Firefox 3.5 - 3.6 */
    box-shadow: 0 0 8px rgba(220, 53, 69, 0.6) !important;
    /* Opera 10.5, IE 9, Firefox 4+, Chrome 6+, iOS 5 */
}

.dropdown-validation-error {
    border-color: #dc3545;
}

    .dropdown-validation-error:focus {
        border-color: rgba(220, 53, 69, 0.8);
        outline: 0;
        -webkit-box-shadow: 0 0 8px rgba(220, 53, 69, 0.6) !important;
        /* Safari 3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
        -moz-box-shadow: 0 0 8px rgba(220, 53, 69, 0.6) !important;
        /* Firefox 3.5 - 3.6 */
        box-shadow: 0 0 8px rgba(220, 53, 69, 0.6) !important;
        /* Opera 10.5, IE 9, Firefox 4+, Chrome 6+, iOS 5 */
    }

.field-validation-error,
.custom-invalid-feedback {
    width: 100%;
    margin-top: .25rem;
    font-size: 80%;
    color: #dc3545;
}

/* hide 'x' on invalid custom selects*/
.custom-select.input-validation-error, .custom-select.is-invalid {
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px;
    /*background: none;
    background-image: none;*/
}

input:focus,
select:focus,
textarea:focus,
button:focus,
.btn:focus,
.btn:hover {
    -webkit-box-shadow: 0 0 8px rgba(0, 123, 255, 0.6) !important;
    /* Safari 3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
    -moz-box-shadow: 0 0 8px rgba(0, 123, 255, 0.6) !important;
    /* Firefox 3.5 - 3.6 */
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.6) !important;
    /* Opera 10.5, IE 9, Firefox 4+, Chrome 6+, iOS 5 */
}

.btn.btn-link:focus,
.btn.btn-a-link:focus,
.btn.btn-link:hover,
.btn.btn-a-link:hover,
.btn:disabled {
    -webkit-box-shadow: none !important;
    /* Safari 3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
    -moz-box-shadow: none !important;
    /* Firefox 3.5 - 3.6 */
    box-shadow: none !important;
    /* Opera 10.5, IE 9, Firefox 4+, Chrome 6+, iOS 5 */
}

.st-label {
    font-size: .85rem;
    color: #898888;
    margin-bottom: 0;
}

.validation-summary.validation-summary-errors ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

/*******    COLOR VARIABLES     *******/
/********   TYPOGRAPHY VARIABLES  ********/
.loader-wrap {
    width: 64px;
    height: 32px;
    background: #fff;
    top: -2px;
    left: -2px;
    z-index: 999;
}

.loader {
    border: 4px solid rgba(244, 243, 242, 0.2);
    border-radius: 50%;
    border-top: 4px solid #f8f8f8;
    width: 24px;
    height: 24px;
    -webkit-animation: spin 1s linear infinite;
    /* Safari */
    animation: spin 1s linear infinite;
    margin: auto;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader {
    border-top: 4px solid #007bff !important;
}

.btn .spinner-border {
    display: none;
}

.btn-loading {
    position: relative;
}

    .btn-loading .spinner-border {
        position: absolute;
        display: block !important;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin: auto;
        width: 16px;
        height: 16px;
        opacity: 0;
    }

    .btn-loading:disabled {
        position: relative;
    }

        .btn-loading:disabled .text {
            color: rgba(255, 255, 255, 0);
        }

        .btn-loading:disabled .spinner-border {
            position: absolute;
            display: block !important;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            margin: auto;
            width: 16px;
            height: 16px;
            opacity: 1.0 !important;
        }

/*CHECK IF THIS NEEDS TO BE WITH THE LOADER*/
.st-loader-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.st-link-danger {
    color: #ef3030 !important;
}

    .st-link-danger:hover {
        color: #960f0f !important;
    }

.btn-a-link {
    padding: 0;
    color: #007bff;
}

/*NOT SURE WHY THIS IS HERE, ALREADY HAVE SOMETHING SIMILAR*/
.btn-danger-link {
    color: #ef3030 !important;
}

    .btn-danger-link:hover {
        color: #960f0f;
    }

.btn-a-link:hover {
    color: #005ec2;
}

.btn-outline-primary {
    background: #d6ebff;
}

.btn-outline-success {
    background: #edffd6;
}

.btn-outline-danger {
    background: #ffcdcd;
}

.st-img-btn {
    background: #d6ebff;
    border: 1px solid #007bff;
    padding: 1rem;
    text-align: center;
    border-radius: .25rem !important;
    color: #00438b;
    cursor: pointer;
}

    .st-img-btn:hover {
        background: #007bff;
        color: #ffffff;
    }

/*NOT SURE WHAT THIS IS USED FOR*/
.btn-icon-left {
    padding-left: 38px !important;
    background-image: url("/Content/img/map/st-icon-center-map-20x20.png");
    background-position: 12px 8px;
    background-repeat: no-repeat;
    transition: all 150ms ease-in-out;
}

    .btn-icon-left:hover {
        background-image: url("/Content/img/map/st-icon-center-map-hover-20x20.png");
        background-position: 12px 8px;
        background-repeat: no-repeat;
    }

.st-main-nav li {
    -webkit-user-select: none;
    /* Safari */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* IE10+/Edge */
    user-select: none;
    /* Standard */
}

    .st-main-nav li:hover {
        color: #ffffff;
        cursor: pointer;
    }

.st-main-nav-link:hover {
    color: #ffffff !important;
    cursor: pointer;
}

.st-main-nav-section-nav {
    font-weight: 700;
}

    .st-main-nav-section-nav ul:not(:last-child) {
        margin-right: 2.5rem;
    }

    .st-main-nav-section-nav li {
        margin-bottom: .35rem;
    }

    .st-main-nav-section-nav a {
        color: #ffc655 !important;
    }

/* CUSTOM RADIO */
.st-custom-radio [type=radio] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

    /* IMAGE STYLES */
    .st-custom-radio [type=radio] + img {
        cursor: pointer;
    }

    /* CHECKED STYLES */
    .st-custom-radio [type=radio]:checked + img {
        outline: 2px solid #f00;
    }

    /* IMAGE STYLES */
    .st-custom-radio [type=radio] + div {
        cursor: pointer;
        color: #007bff;
        background: #ffffff;
        border: #007bff solid 1px;
        border-radius: .25rem;
        padding: 1rem;
    }

        /* CHECKED STYLES */
        .st-custom-radio [type=radio] + div:hover {
            background: #f5fafc;
            color: #007bff;
        }

    .st-custom-radio [type=radio]:checked + div {
        background: #fcf3ff;
        color: #9a14cc;
        border-color: #9a14cc;
    }

.snack-success {
    border-color: #aeec66 !important;
}

    .snack-success .snack-status-icon-success {
        display: block !important;
    }

.snack-warning {
    border-color: #ffc655 !important;
}

    .snack-warning .snack-status-icon-warning {
        display: block !important;
    }

.snack-danger {
    border-color: #fa5252 !important;
}

    .snack-danger .snack-status-icon-danger {
        display: block !important;
    }

.snack-info {
    border-color: #58afff !important;
}

    .snack-info .snack-status-icon-info {
        display: block !important;
    }

/**************************/
/*    ANIMATION STYLES    */
/**************************/
.slide-in-from-right {
    animation: slide-in-from-right 0.5s forwards;
    -webkit-animation: slide-in-from-right 0.5s forwards;
}

.slide-out-to-right {
    animation: slide-out-to-right 0.5s forwards;
    -webkit-animation: slide-in-from-right 0.5s forwards;
}

/*********************************/
@keyframes slide-in-from-right {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@-webkit-keyframes slide-in-from-right {
    0% {
        -webkit-transform: translateX(0%);
    }

    100% {
        -webkit-transform: translateX(-100%);
    }
}

/********************************/
@keyframes slide-out-to-right {
    0% {
        transform: translateX(-100%);
        opacity: 1.0;
    }

    100% {
        transform: translateX(0%);
        opacity: 0;
    }
}

@-webkit-keyframes slide-out-to-right {
    0% {
        -webkit-transform: translateX(-100%);
        opacity: 1.0;
    }

    100% {
        -webkit-transform: translateX(0%);
        opacity: 0;
    }
}

.st-details-table td:first-child {
    color: #5b5a57;
    width: 33%;
}

.st-details-table td:nth-child(2) {
    font-weight: 700;
    width: 67%;
}

.st-table thead th {
    background: #3f3f3d;
    color: #ffffff;
}

.st-table.st-table-fixed-header {
    position: relative;
    top: -1px;
}

    .st-table.st-table-fixed-header th {
        position: sticky;
        top: -1px;
        /* Don't forget this, required for the stickiness */
    }

.st-table.st-table-dark td, .st-table.st-table-dark th {
    border-top: 1px solid #5b5a57;
    border-bottom-style: none;
}

.st-table.st-table-dark tr {
    background: #3f3f3d !important;
}

.st-table-fixed-header th {
    border-top: none !important;
}

th.order {
    cursor: default;
}

    th.order.order-ascending:after {
        font-family: "Font Awesome 5 Free";
        content: "\F30C";
        color: #898888;
        padding: 6px;
    }

    th.order.order-descending:after {
        font-family: "Font Awesome 5 Free";
        content: "\F309";
        color: #898888;
        padding: 6px;
    }

/*******    COLOR VARIABLES     *******/
/********   TYPOGRAPHY VARIABLES  ********/
/*******    TEXT COLORS     *******/
.text-gray-100 {
    color: #f8f8f8 !important;
}

.text-gray-200 {
    color: #f4f3f2 !important;
}

.text-gray-300 {
    color: #e3e2e1 !important;
}

.text-gray-400 {
    color: #c1c0bf !important;
}

.text-gray-500 {
    color: #898888 !important;
}

.text-gray-600 {
    color: #5b5a57 !important;
}

.text-gray-700 {
    color: #3f3f3d !important;
}

.text-gray-800 {
    color: #2d2c2b !important;
}

.text-gray-900 {
    color: #161616 !important;
}

.text-yellow-100 {
    color: #fff9eb !important;
}

.text-yellow-200 {
    color: #fff0cf !important;
}

.text-yellow-300 {
    color: #ffe2a1 !important;
}

.text-yellow-400 {
    color: #ffc655 !important;
}

.text-yellow-500 {
    color: #ffb000 !important;
}

.text-yellow-600 {
    color: #bf7600 !important;
}

.text-yellow-700 {
    color: #7f4909 !important;
}

.text-yellow-800 {
    color: #4c2906 !important;
}

.text-yellow-900 {
    color: #281504 !important;
}

.text-green-100 {
    color: #f8ffef !important;
}

.text-green-200 {
    color: #edffd6 !important;
}

.text-green-300 {
    color: #d1f8a0 !important;
}

.text-green-400 {
    color: #aeec66 !important;
}

.text-green-500 {
    color: #81d322 !important;
}

.text-green-600 {
    color: #5ea012 !important;
}

.text-green-700 {
    color: #40660e !important;
}

.text-green-800 {
    color: #273f06 !important;
}

.text-green-900 {
    color: #0b1402 !important;
}

.text-red-100 {
    color: #fff0f0 !important;
}

.text-red-200 {
    color: #ffcdcd !important;
}

.text-red-300 {
    color: #ff8383 !important;
}

.text-red-400 {
    color: #fa5252 !important;
}

.text-red-500 {
    color: #ef3030 !important;
}

.text-red-600 {
    color: #c61d1d !important;
}

.text-red-700 {
    color: #960f0f !important;
}

.text-red-800 {
    color: #490808 !important;
}

.text-red-900 {
    color: #2d0b09 !important;
}

.text-blue-100 {
    color: #f5fafc !important;
}

.text-blue-200 {
    color: #d6ebff !important;
}

.text-blue-300 {
    color: #aad6ff !important;
}

.text-blue-400 {
    color: #58afff !important;
}

.text-blue-500 {
    color: #007bff !important;
}

.text-blue-600 {
    color: #005ec2 !important;
}

.text-blue-700 {
    color: #00438b !important;
}

.text-blue-800 {
    color: #002e60 !important;
}

.text-blue-900 {
    color: #001933 !important;
}

.text-purple-100 {
    color: #fcf3ff !important;
}

.text-purple-200 {
    color: #f4d8ff !important;
}

.text-purple-300 {
    color: #dda5f2 !important;
}

.text-purple-400 {
    color: #be5be3 !important;
}

.text-purple-500 {
    color: #9a14cc !important;
}

.text-purple-600 {
    color: #720aa3 !important;
}

.text-purple-700 {
    color: #57067c !important;
}

.text-purple-800 {
    color: #420b5b !important;
}

.text-purple-900 {
    color: #2c0b3d !important;
}

/*******    BACKGROUND COLORS     *******/
.bg-gray-100 {
    background-color: #f8f8f8 !important;
}

.bg-gray-200 {
    background-color: #f4f3f2 !important;
}

.bg-gray-300 {
    background-color: #e3e2e1 !important;
}

.bg-gray-400 {
    background-color: #c1c0bf !important;
}

.bg-gray-500 {
    background-color: #898888 !important;
}

.bg-gray-600 {
    background-color: #5b5a57 !important;
}

.bg-gray-700 {
    background-color: #3f3f3d !important;
}

.bg-gray-800 {
    background-color: #2d2c2b !important;
}

.bg-gray-900 {
    background-color: #161616 !important;
}

.bg-yellow-100 {
    background-color: #fff9eb !important;
}

.bg-yellow-200 {
    background-color: #fff0cf !important;
}

.bg-yellow-300 {
    background-color: #ffe2a1 !important;
}

.bg-yellow-400 {
    background-color: #ffc655 !important;
}

.bg-yellow-500 {
    background-color: #ffb000 !important;
}

.bg-yellow-600 {
    background-color: #bf7600 !important;
}

.bg-yellow-700 {
    background-color: #7f4909 !important;
}

.bg-yellow-800 {
    background-color: #4c2906 !important;
}

.bg-yellow-900 {
    background-color: #281504 !important;
}

.bg-yellow-100 {
    background-color: #fff9eb !important;
}

.bg-yellow-200 {
    background-color: #fff0cf !important;
}

.bg-yellow-300 {
    background-color: #ffe2a1 !important;
}

.bg-yellow-400 {
    background-color: #ffc655 !important;
}

.bg-yellow-500 {
    background-color: #ffb000 !important;
}

.bg-yellow-600 {
    background-color: #bf7600 !important;
}

.bg-yellow-700 {
    background-color: #7f4909 !important;
}

.bg-yellow-800 {
    background-color: #4c2906 !important;
}

.bg-yellow-900 {
    background-color: #281504 !important;
}

.bg-green-100 {
    background-color: #f8ffef !important;
}

.bg-green-200 {
    background-color: #edffd6 !important;
}

.bg-green-300 {
    background-color: #d1f8a0 !important;
}

.bg-green-400 {
    background-color: #aeec66 !important;
}

.bg-green-500 {
    background-color: #81d322 !important;
}

.bg-green-600 {
    background-color: #5ea012 !important;
}

.bg-green-700 {
    background-color: #40660e !important;
}

.bg-green-800 {
    background-color: #273f06 !important;
}

.bg-green-900 {
    background-color: #0b1402 !important;
}

.bg-red-100 {
    background-color: #fff0f0 !important;
}

.bg-red-200 {
    background-color: #ffcdcd !important;
}

.bg-red-300 {
    background-color: #ff8383 !important;
}

.bg-red-400 {
    background-color: #fa5252 !important;
}

.bg-red-500 {
    background-color: #ef3030 !important;
}

.bg-red-600 {
    background-color: #c61d1d !important;
}

.bg-red-700 {
    background-color: #960f0f !important;
}

.bg-red-800 {
    background-color: #490808 !important;
}

.bg-red-900 {
    background-color: #2d0b09 !important;
}

.bg-blue-100 {
    background-color: #f5fafc !important;
}

.bg-blue-200 {
    background-color: #d6ebff !important;
}

.bg-blue-300 {
    background-color: #aad6ff !important;
}

.bg-blue-400 {
    background-color: #58afff !important;
}

.bg-blue-500 {
    background-color: #007bff !important;
}

.bg-blue-600 {
    background-color: #005ec2 !important;
}

.bg-blue-700 {
    background-color: #00438b !important;
}

.bg-blue-800 {
    background-color: #002e60 !important;
}

.bg-blue-900 {
    background-color: #001933 !important;
}

.bg-purple-100 {
    background-color: #fcf3ff !important;
}

.bg-purple-200 {
    background-color: #f4d8ff !important;
}

.bg-purple-300 {
    background-color: #dda5f2 !important;
}

.bg-purple-400 {
    background-color: #be5be3 !important;
}

.bg-purple-500 {
    background-color: #9a14cc !important;
}

.bg-purple-600 {
    background-color: #720aa3 !important;
}

.bg-purple-700 {
    background-color: #57067c !important;
}

.bg-purple-800 {
    background-color: #420b5b !important;
}

.bg-purple-900 {
    background-color: #2c0b3d !important;
}

/*******    BORDER COLORS     *******/
.border-gray-100 {
    border-color: #f8f8f8 !important;
}

.border-gray-200 {
    border-color: #f4f3f2 !important;
}

.border-gray-300 {
    border-color: #e3e2e1 !important;
}

.border-gray-400 {
    border-color: #c1c0bf !important;
}

.border-gray-500 {
    border-color: #898888 !important;
}

.border-gray-600 {
    border-color: #5b5a57 !important;
}

.border-gray-700 {
    border-color: #3f3f3d !important;
}

.border-gray-800 {
    border-color: #2d2c2b !important;
}

.border-gray-900 {
    border-color: #161616 !important;
}

.border-yellow-100 {
    border-color: #fff9eb !important;
}

.border-yellow-200 {
    border-color: #fff0cf !important;
}

.border-yellow-300 {
    border-color: #ffe2a1 !important;
}

.border-yellow-400 {
    border-color: #ffc655 !important;
}

.border-yellow-500 {
    border-color: #ffb000 !important;
}

.border-yellow-600 {
    border-color: #bf7600 !important;
}

.border-yellow-700 {
    border-color: #7f4909 !important;
}

.border-yellow-800 {
    border-color: #4c2906 !important;
}

.border-yellow-900 {
    border-color: #281504 !important;
}

.border-green-100 {
    border-color: #f8ffef !important;
}

.border-green-200 {
    border-color: #edffd6 !important;
}

.border-green-300 {
    border-color: #d1f8a0 !important;
}

.border-green-400 {
    border-color: #aeec66 !important;
}

.border-green-500 {
    border-color: #81d322 !important;
}

.border-green-600 {
    border-color: #5ea012 !important;
}

.border-green-700 {
    border-color: #40660e !important;
}

.border-green-800 {
    border-color: #273f06 !important;
}

.border-green-900 {
    border-color: #0b1402 !important;
}

.border-red-100 {
    border-color: #fff0f0 !important;
}

.border-red-200 {
    border-color: #ffcdcd !important;
}

.border-red-300 {
    border-color: #ff8383 !important;
}

.border-red-400 {
    border-color: #fa5252 !important;
}

.border-red-500 {
    border-color: #ef3030 !important;
}

.border-red-600 {
    border-color: #c61d1d !important;
}

.border-red-700 {
    border-color: #960f0f !important;
}

.border-red-800 {
    border-color: #490808 !important;
}

.border-red-900 {
    border-color: #2d0b09 !important;
}

.border-blue-100 {
    border-color: #f5fafc !important;
}

.border-blue-200 {
    border-color: #d6ebff !important;
}

.border-blue-300 {
    border-color: #aad6ff !important;
}

.border-blue-400 {
    border-color: #58afff !important;
}

.border-blue-500 {
    border-color: #007bff !important;
}

.border-blue-600 {
    border-color: #005ec2 !important;
}

.border-blue-700 {
    border-color: #00438b !important;
}

.border-blue-800 {
    border-color: #002e60 !important;
}

.border-blue-900 {
    border-color: #001933 !important;
}

.border-purple-100 {
    border-color: #fcf3ff !important;
}

.border-purple-200 {
    border-color: #f4d8ff !important;
}

.border-purple-300 {
    border-color: #dda5f2 !important;
}

.border-purple-400 {
    border-color: #be5be3 !important;
}

.border-purple-500 {
    border-color: #9a14cc !important;
}

.border-purple-600 {
    border-color: #720aa3 !important;
}

.border-purple-700 {
    border-color: #57067c !important;
}

.border-purple-800 {
    border-color: #420b5b !important;
}

.border-purple-900 {
    border-color: #2c0b3d !important;
}

.z-0 {
    z-index: 0 !important;
}

.z-1 {
    z-index: 1 !important;
}

.z-10 {
    z-index: 10 !important;
}

.z-1000 {
    z-index: 1000 !important;
}

.hide {
    display: none !important;
}

.h-screen {
    height: 100vh;
}

.min-h-screen {
    min-height: 100vh;
}

.w-20 {
    width: 20% !important;
}

.w-40 {
    width: 40% !important;
}

.w-60 {
    width: 60% !important;
}

.w-80 {
    width: 80% !important;
}

/*******    COLOR VARIABLES     *******/
/********   TYPOGRAPHY VARIABLES  ********/
.st-map-container {
    width: 100%;
    position: relative;
    color: #ffffff;
}

.st-map-controls-container {
    height: 100%;
    position: absolute;
    display: flex;
    z-index: 2;
}

#st-map-controls {
    overflow-x: hidden;
    overflow-y: scroll;
    background: #3f3f3d;
    height: 100%;
    width: 410px;
    flex-grow: 1;
    color: #ffffff;
    /* width */
    /* Track */
    /* Handle */
    /* Handle on hover */
}

    #st-map-controls::-webkit-scrollbar {
        width: 17px;
    }

    #st-map-controls::-webkit-scrollbar-track {
        border: solid 1px #5b5a57;
        background: #3f3f3d;
    }

    #st-map-controls::-webkit-scrollbar-thumb {
        background: #5b5a57;
    }

        #st-map-controls::-webkit-scrollbar-thumb:hover {
            background: #898888;
        }

    #st-map-controls.controls-closed {
        width: 0 !important;
    }

        #st-map-controls.controls-closed ~ div #st-map-controls-pin {
            display: none;
        }

    #st-map-controls a {
        color: #58afff !important;
    }

        #st-map-controls a:hover {
            color: #d6ebff !important;
        }

.stop-list-item-details-section {
    background: #3f3f3d;
    border-radius: .2rem;
    padding: .5rem 1rem;
    margin: .5rem 1.5rem .5rem 0;
}

#st-map-controls-nav {
    background: #2d2c2b;
    border-radius: 0 24px 24px 0;
    align-self: start;
    padding: 10px 10px 10px 0;
    display: flex;
    flex-direction: column;
    flex-grow: 0;
    max-width: 50px;
}

.st-map-controls-nav-item {
    width: 40px;
    height: 32px;
    box-sizing: border-box;
    border-radius: 0 16px 16px 0;
    display: flex;
}

    .st-map-controls-nav-item:not(:first-child) {
        margin-top: 10px;
    }

#st-map-controls-pin {
    top: 188px;
    left: 0;
    box-sizing: border-box;
    display: flex;
    color: #fff;
    margin-top: 10px;
}

    #st-map-controls-pin a {
        height: 32px;
        color: #ffffff;
        border-radius: 0 16px 16px 0;
        align-items: center;
        text-align: center;
        white-space: nowrap;
        position: relative;
        width: auto;
        display: inline-flex;
        align-items: center;
    }

        #st-map-controls-pin a span.pin-text {
            padding: 4px 6px;
            white-space: nowrap;
            position: relative;
            height: 32px;
            z-index: 1;
            height: 100%;
            width: 0;
            color: #fff;
            overflow: hidden;
            transition: 0.3s all ease;
            height: 100%;
            display: flex;
            align-items: center;
            border-top-right-radius: 20px;
            border-bottom-right-radius: 20px;
            margin-left: 20px;
            padding-left: 20px;
            padding-right: 10px;
            cursor: pointer;
            background: #007bff;
            opacity: 0;
        }

        #st-map-controls-pin a span.pin-icon {
            color: #fff;
            cursor: pointer;
            border-radius: 0 16px 16px 0;
            height: 100%;
            width: 2.5rem;
            display: flex;
            justify-content: center;
            align-items: center;
            position: absolute;
            z-index: 2;
            background: #007bff;
        }

        #st-map-controls-pin a.pinned span.pin-icon {
            background: #ef3030;
        }

        #st-map-controls-pin a.pinned span.pin-text {
            background: #ef3030;
        }

        #st-map-controls-pin a.not-pinned i {
            transform: rotate(90deg);
        }

        #st-map-controls-pin a:hover {
            color: #ffffff;
            text-decoration: none;
            cursor: pointer;
        }

            #st-map-controls-pin a:hover span.pin-text {
                display: inline;
                width: 100%;
                opacity: 1.0;
            }

        #st-map-controls-pin a * {
            margin: 0 auto;
            display: block;
        }

.st-map-controls-nav-item-link {
    box-sizing: border-box;
    padding: 4px 6px;
    margin-left: 8px;
    background: #007bff;
    color: #ffffff !important;
    border-radius: 16px;
    display: flex;
    align-items: center;
    text-align: center;
    min-width: 32px;
    text-decoration: none;
}

    .st-map-controls-nav-item-link:hover {
        color: #ffffff;
        text-decoration: none !important;
        background: #007bff;
        cursor: pointer;
    }

    .st-map-controls-nav-item-link * {
        margin: 0 auto;
        display: block;
    }

.st-map-controls-nav-item.selected {
    background: #3f3f3d;
}

    .st-map-controls-nav-item.selected .st-map-controls-nav-item-link {
        background: #3f3f3d;
        color: #f4f3f2;
    }

.st-map-control {
    padding-right: 17px;
}

.st-map-control-title {
    background: #161616;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    padding: 2px 14px;
}

.st-map-controls-layer-group-title {
    font-size: 14px;
    font-weight: 500;
    padding: 12px 14px;
    color: #ffb000;
    background: #2d2c2b;
}

.st-map-controls-layer-item {
    padding: 12px 14px 12px 6px;
    color: #f4f3f2;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #5b5a57;
}

    .st-map-controls-layer-item:hover {
        background: #5b5a57;
        cursor: pointer;
    }

    .st-map-controls-layer-item .item-title {
        flex-grow: 1;
        padding-left: 4px;
    }

    .st-map-controls-layer-item.layer-visible .layer-item-visibility:after {
        content: '\F06E';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        font-style: normal;
        margin: 0px 0px 0px 10px;
        text-decoration: none;
    }

    .st-map-controls-layer-item.layer-invisible {
        opacity: .5;
    }

        .st-map-controls-layer-item.layer-invisible .layer-item-visibility:after {
            content: '\F070';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            font-style: normal;
            margin: 0px 0px 0px 10px;
            text-decoration: none;
        }

.tooltip-bubble {
    color: #898888;
}

    .tooltip-bubble:hover {
        color: #ffffff;
        cursor: help !important;
    }

.stop-list-item,
.roster-list-item {
    position: relative;
    padding: 12px 6px;
    border-bottom: solid 1px #5b5a57;
    /*    &:hover {
        background: $gray-600;
        border-bottom: solid 1px $gray-700;
    }*/
}

    .stop-list-item .stop-list-item-details,
    .stop-list-item .roster-list-item-details,
    .roster-list-item .stop-list-item-details,
    .roster-list-item .roster-list-item-details {
        display: none;
    }

    .stop-list-item .close-stop-details,
    .stop-list-item .close-smart-alert-details,
    .roster-list-item .close-stop-details,
    .roster-list-item .close-smart-alert-details {
        display: none;
    }

    .stop-list-item .open-stop-details,
    .stop-list-item .open-smart-alert-details,
    .roster-list-item .open-stop-details,
    .roster-list-item .open-smart-alert-details {
        display: inline-block;
    }

    .stop-list-item.selected,
    .roster-list-item.selected {
        background: #5b5a57;
        border-bottom: solid 1px #3f3f3d;
    }

        .stop-list-item.selected .stop-list-item-details,
        .stop-list-item.selected .roster-list-item-details,
        .roster-list-item.selected .stop-list-item-details,
        .roster-list-item.selected .roster-list-item-details {
            display: block;
        }

        .stop-list-item.selected .close-stop-details,
        .stop-list-item.selected .close-smart-alert-details,
        .roster-list-item.selected .close-stop-details,
        .roster-list-item.selected .close-smart-alert-details {
            display: inline-block;
        }

        .stop-list-item.selected .open-stop-details,
        .stop-list-item.selected .open-smart-alert-details,
        .roster-list-item.selected .open-stop-details,
        .roster-list-item.selected .open-smart-alert-details {
            display: none;
        }

.stop-list-item {
    /*z-index:-2;*/
    position: relative;
}

    .stop-list-item.not-visited {
        z-index: 99;
        background: #3f3f3d;
    }

/*.not-visited {*/
/*background: $gray-800;*/
/*z-index: 99;
    background: $gray-800;
}*/
.stop-details-content {
    margin-left: 2rem;
}

/*.stop-list-item.visited::before {
    content: "";
    border-left: $yellow-500 dotted 4px;
    position: absolute;
    left: 48px;
    top:0;
    width: 1px;
    height: 100%;
    z-index: 2;
}

.stop-list-item.not-visited::before {
    content: "";
    border-left: $gray-500 dotted 4px;
    position: absolute;
    left: 20px;
    top: 0;
    width: 1px;
    height: 100%;
    z-index: 2;
}
*/
.roster-list-item {
    padding-left: 14px;
}

.stop-list-item-basic-info,
.roster-list-item-basic-info {
    display: flex;
    align-items: center;
}

.stop-number {
    background: url("/Content/img/map/st-map-legend-stop-resolved.png");
    width: 56px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    flex-grow: 0;
    flex-shrink: 0;
    margin-left: 1rem;
    margin-right: 1rem;
    z-index: 2;
    /*    &.stop-list-item-selected {
        background: $gray-600;
        border-bottom: solid 1px $gray-700;
    }*/
}

    .stop-number.stop-designated {
        background: url("/Content/img/map/st-map-legend-unresolved.png") no-repeat center;
    }

    .stop-number.stop-skipped {
        background: url("/Content/img/map/st-map-legend-stop-skipped.png") no-repeat center;
    }

        .stop-number.stop-skipped span {
            padding-bottom: 6px;
        }

    .stop-number.stop-unknown {
        background: url("/Content/img/map/st-map-legend-undesignated-stops.png") no-repeat center;
    }

    .stop-number.campus {
        background: url("/Content/img/map/st-map-legend-campuses-resolved.png") no-repeat center;
    }

        .stop-number.campus span {
            background: #fa5252;
            border-radius: 2rem;
            border: 2px solid #122E4C;
            padding-left: .5rem;
            padding-right: .5rem;
        }

        .stop-number.campus.skipped {
            /*background: url('~/Content/img/map/st-map-legend-campuses-unresolved.png') no-repeat center;*/
        }

            .stop-number.campus.skipped span {
                background: #898888 !important;
            }

    .stop-number.depot {
        background: url("/Content/img/map/st-map-legend-depots-resolved.png") no-repeat center;
    }

        .stop-number.depot span {
            background: #fa5252;
            border: 2px solid #122E4C;
            border-radius: 2rem;
            padding-left: .5rem;
            padding-right: .5rem;
        }

        .stop-number.depot.skipped {
            /*background: url('~/Content/img/map/st-map-legend-depots-unresolved.png') no-repeat center;*/
        }

            .stop-number.depot.skipped span {
                background: #898888 !important;
            }

.stop-item-menu,
.roster-item-menu {
    color: #c1c0bf;
    padding: 8px;
    margin: 4px;
    flex-grow: 0;
    flex-shrink: 0;
}

/*.roster-item-menu {
    color: $gray-400;
    padding: 8px;
    margin: 4px;
    flex-grow: 1;
}*/
.stop-item-menu-item,
.roster-item-menu-item {
    display: inline-block;
    text-align: center;
}

    .stop-item-menu-item:not(:first-child),
    .roster-item-menu-item:not(:first-child) {
        margin-left: 10px;
    }

    .stop-item-menu-item:hover,
    .roster-item-menu-item:hover {
        color: #ffffff;
        cursor: pointer;
    }

    .stop-item-menu-item.stop-skipped,
    .roster-item-menu-item.stop-skipped {
        opacity: 0 !important;
        cursor: default;
    }

.stop-item-menu-item {
    width: 20px !important;
}

.stop-item-info,
.roster-item-info {
    flex-grow: 1;
}

.stop-list-item-details {
    padding-left: 56px;
}

    .stop-list-item-details ul {
        list-style-type: none;
        padding-left: 0;
        margin-bottom: 0;
        padding-bottom: 12px;
    }

        .stop-list-item-details ul li {
            padding: 6px 0;
            cursor: default;
        }

            .stop-list-item-details ul li:not(:last-child) {
                border-bottom: solid 1px #898888;
            }

.stop-entry-exit-points {
    background: #3f3f3d;
    border-radius: 0.2rem;
    padding: .5rem 1rem;
    margin: .5rem 1.5rem .5rem 0;
}

.designated-stop-time {
    color: #898888;
}

/*.smart-alert-selected {
    color: $purple-300;

    &:hover {
        color: $purple-300;
    }
}*/
.show-smart-alerts-marker .alert-selected-text {
    display: none;
}

.smart-alert-selected {
    background: #dda5f2;
    color: #420b5b;
    display: inline-block;
    padding: .25em .4em;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

    .smart-alert-selected .alert-selected-text {
        display: inline !important;
        font-size: 75%;
    }

    .smart-alert-selected:hover {
        color: #420b5b;
    }

/*.route-line {*/
/*border-left: $yellow-500 dotted 4px;*/
/*border-left: #00ff00 dotted 4px;
    position: absolute;
    left: 48px;
    top: 30px;
    width: 1px;
    height: calc(100% - 58px);
    z-index: 1;
}*/
header {
    z-index: 999;
}

.st-legend-advanced-marker .st-legend-marker-details {
    display: none;
    z-index: 99;
}

.st-legend-advanced-marker:hover .st-legend-marker-details {
    display: flex;
}

.st-ui-container {
    background: #f8f8f8;
    width: 100%;
}

    .st-ui-container .st-view-header {
        background: #2d2c2b;
        color: #ffffff;
    }

.st-fixed-container {
    position: absolute;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

    .st-fixed-container .st-view-header {
        flex-grow: 0;
        flex-shrink: 0;
    }

    .st-fixed-container > * {
        overflow: auto;
    }

.st-view-header-main {
    display: flex;
    align-items: center;
    padding: .5rem;
}

    .st-view-header-main .st-view-header-title {
        flex-grow: 1;
    }

        .st-view-header-main .st-view-header-title h1 {
            font-size: 24px;
            margin-bottom: 0 !important;
        }

.st-view-body {
    border-top: 1px solid #c1c0bf;
    flex-grow: 1;
}

    .st-view-body .tab-content {
        width: 100%;
        height: 100%;
    }

.st-view-body-columns {
    display: flex;
    width: 100%;
    height: 100%;
    background: #f8f8f8;
    overflow: hidden;
}

    .st-view-body-columns tab-pane {
        display: flex;
    }

    .st-view-body-columns > * {
        flex-grow: 1;
        overflow: hidden;
    }

        .st-view-body-columns > * > .st-view-group-body {
            overflow: auto;
            height: 100%;
        }

.st-view-columns {
    display: flex;
    height: 100%;
}

.st-view-column {
    flex-grow: 1;
    overflow: hidden;
    border-right: 1px solid #c1c0bf;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.st-view-column-body {
    overflow: auto;
    height: 100%;
}

.st-view-group {
    border-right: 1px solid #c1c0bf;
    display: flex;
    flex-direction: column;
}

.st-view-group-header {
    background: #3f3f3d;
    display: flex;
    align-items: center;
    color: #ffffff;
    padding: 0 4px;
    flex-grow: 0;
    flex-shrink: 0;
}

    .st-view-group-header h2 {
        font-size: 16px;
        padding-top: 6px;
        margin-right: 6px;
    }

    .st-view-group-header .st-info {
        color: #e3e2e1;
    }

    .st-view-group-header .btn-a-link {
        color: #58afff;
    }

.st-tab-actions {
    background: #3f3f3d;
    padding: 1rem .5rem;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

/***********************/
/* OTHER GLOBAL STYLES */
/***********************/
body {
    background: #f8f8f8;
}

.st-navbar-bottom-border {
    background: #fed53d;
    /* Old browsers */
    background: -moz-linear-gradient(-45deg, #fed53d 0%, #ffb000 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg, #fed53d 0%, #ffb000 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg, #fed53d 0%, #ffb000 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fed53d', endColorstr='#ffb000',GradientType=1 );
    /* IE6-9 fallback on horizontal gradient */
    background-size: cover;
    width: 100%;
    height: 10px;
}

.st-bg-yellow-gradient {
    background: #fed53d;
    /* Old browsers */
    background: -moz-radial-gradient(center, ellipse cover, #fed53d 1%, #ffb000 100%);
    /* FF3.6-15 */
    background: -webkit-radial-gradient(center, ellipse cover, #fed53d 1%, #ffb000 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: radial-gradient(ellipse at center, #fed53d 1%, #ffb000 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fed53d', endColorstr='#ffb000',GradientType=1 );
    /* IE6-9 fallback on horizontal gradient */
}
/*******    COLOR VARIABLES     *******/
/********   TYPOGRAPHY VARIABLES  ********/
/* media-breakpoint-down applies to the given screen size or bigger  */
/* media-breakpoint-down applies to the given screen size or smaller  */
/* media-breakpoint-only applies to the given screen size  */
/*
    This file is a "reset" file for the bootstrap styles that are affecting the current styles of the Admin Portal

    Once we've completely switched over to the new styles, we should be able to remove this file.
*/
/*******    COLOR VARIABLES     *******/
/********   TYPOGRAPHY VARIABLES  ********/
/*body {
    font-size: .85rem;
}*/
.nav-mainmenu {
    height: inherit;
}

.hor-nav li, .hor-nav a {
    position: relative;
    bottom: 3px;
}

#activitymap {
    background: #f4f3f2;
}

    #activitymap > div {
        float: right;
    }

    #activitymap div {
        box-sizing: initial;
        background-repeat: no-repeat;
        /*background-position: bottom;*/
    }

    #activitymap * {
        cursor: default;
    }

.H_ui * {
    box-sizing: content-box !important;
}

.H_ui .here-maps-tooltip {
    position: relative;
    opacity: 1.0;
    background: #ffffff;
    text-align: left;
    padding-left: 6px;
}

.here-maps-tooltip {
    font-size: 12px !important;
}

.st-map-bubble {
    opacity: 0;
}

.opacity-100 {
    opacity: 1.0;
}

.homeMarker {
    left: calc(-100% + 154px) !important;
}

    .homeMarker::before {
        position: absolute;
        /*top: -70px;*/
        top: 50%;
        transform: translateY(calc(50% - 54px));
        width: 14px;
        height: 28px;
        left: -144px;
        content: url("/Content/img/map/ib-left-tail.png");
    }

    .homeMarker .H_ib_body {
        bottom: 0 !important;
        transform: translate(-2px, calc(50% - 30px));
        margin-left: 20px;
    }

    .homeMarker .H_ib_tail {
        display: none;
    }

.districtMarker {
    left: calc(-100% + 154px) !important;
}

    .districtMarker::before {
        position: absolute;
        /*top: -70px;*/
        top: 50%;
        transform: translateY(calc(50% - 28px));
        width: 14px;
        height: 28px;
        left: -144px;
        content: url("/Content/img/map/ib-left-tail.png");
    }

    .districtMarker .H_ib_body {
        bottom: 0 !important;
        transform: translate(-2px, 50%);
        margin-left: 20px;
    }

    .districtMarker .H_ib_tail {
        display: none;
    }

.alertMarker {
    left: calc(-100% + 154px) !important;
}

    .alertMarker::before {
        position: absolute;
        /*top: -70px;*/
        top: 50%;
        transform: translateY(calc(50% - 28px));
        width: 14px;
        height: 28px;
        left: -144px;
        content: url("/Content/img/map/ib-left-tail.png");
    }

    .alertMarker .H_ib_body {
        bottom: 0 !important;
        transform: translate(-2px, 50%);
        margin-left: 20px;
    }

    .alertMarker .H_ib_tail {
        display: none;
    }

.H_ib_content {
    max-width: 100px;
    line-height: 20px;
}

#navbar-wrap *, :after, :before {
    box-sizing: content-box;
}

.nav-tabs-dark {
    border-bottom: 1px solid #5b5a57;
}

    .nav-tabs-dark .nav-link {
        text-decoration: none !important;
    }

        .nav-tabs-dark .nav-link:not(.active) {
            color: #c1c0bf;
        }

            .nav-tabs-dark .nav-link:not(.active):hover {
                border: 1px solid #5b5a57;
            }

        .nav-tabs-dark .nav-link.active {
            background-color: #3f3f3d;
            color: #ffffff;
            border: 1px solid #5b5a57;
            border-bottom: 1px solid #3f3f3d;
        }

.table tr:nth-child(odd) {
    background: #f4f3f2 !important;
}

.table tr:nth-child(even) {
    background: #ffffff !important;
}

.table tr {
    border-bottom: none;
}

.route-details-tab a {
    color: #007bff !important;
}

/*header {
    height: 40px !important;
}*/
#site-home {
    width: 200px !important;
    height: 27px !important;
}

.ui-widget {
    font-family: "Roboto", Verdana, Geneva, sans-serif !important;
}

.ui-dialog {
    background: #f8f8f8 !important;
}

#st-stop-map-controls, #st-passthrough-map-controls {
    overflow: hidden;
    background: #3f3f3d;
    height: 100%;
    width: 300px;
    flex-grow: 1;
    color: #fff;
}

#st-stop-map-controls, #st-passthrough-map-controls {
    user-select: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

    #st-stop-map-controls.controls-closed, #st-passthrough-map-controls.controls-closed {
        width: 0 !important;
    }

        #st-stop-map-controls.controls-closed ~ div #st-stop-map-controls-pin, #st-passthrough-map-controls.controls-closed ~ div #st-stop-map-controls-pin {
            display: none;
        }

        #st-stop-map-controls.controls-closed ~ div #st-passthrough-map-controls-pin, #st-passthrough-map-controls.controls-closed ~ div #st-passthrough-map-controls-pin {
            display: none;
        }

#st-stop-map-controls-nav, #st-passthrough-map-controls-nav {
    background: #2d2c2b;
    border-radius: 0 24px 24px 0;
    align-self: start;
    padding: 10px 10px 10px 0;
    display: flex;
    flex-direction: column;
    flex-grow: 0;
    max-width: 50px;
}

#st-stop-map-controls-pin, #st-passthrough-map-controls-pin {
    top: 188px;
    left: 0;
    box-sizing: border-box;
    display: flex;
    color: #fff;
    margin-top: 10px;
}

    #st-stop-map-controls-pin a, #st-passthrough-map-controls-pin a {
        height: 32px;
        color: #ffffff;
        border-radius: 0 16px 16px 0;
        align-items: center;
        text-align: center;
        white-space: nowrap;
        position: relative;
        width: auto;
        display: inline-flex;
        align-items: center;
    }

        #st-stop-map-controls-pin a span.pin-text, #st-passthrough-map-controls-pin a span.pin-text {
            padding: 4px 6px;
            white-space: nowrap;
            position: relative;
            height: 32px;
            z-index: 1;
            height: 100%;
            width: 0;
            color: #fff;
            overflow: hidden;
            transition: 0.3s all ease;
            height: 100%;
            display: flex;
            align-items: center;
            border-top-right-radius: 20px;
            border-bottom-right-radius: 20px;
            margin-left: 20px;
            padding-left: 20px;
            padding-right: 10px;
            cursor: pointer;
            background: #007bff;
            opacity: 0;
        }

        #st-stop-map-controls-pin a span.pin-icon, #st-passthrough-map-controls-pin a span.pin-icon {
            color: #fff;
            cursor: pointer;
            border-radius: 0 16px 16px 0;
            height: 100%;
            width: 2.5rem;
            display: flex;
            justify-content: center;
            align-items: center;
            position: absolute;
            z-index: 2;
            background: #007bff;
        }

        #st-stop-map-controls-pin a.pinned span.pin-icon, #st-passthrough-map-controls-pin a.pinned span.pin-icon {
            background: #ef3030;
        }

        #st-stop-map-controls-pin a.pinned span.pin-text, #st-passthrough-map-controls-pin a.pinned span.pin-text {
            background: #ef3030;
        }

        #st-stop-map-controls-pin a.not-pinned i, #st-passthrough-map-controls-pin a.not-pinned i {
            transform: rotate(90deg);
        }

        #st-stop-map-controls-pin a:hover, #st-passthrough-map-controls-pin a:hover {
            color: #ffffff;
            text-decoration: none;
            cursor: pointer;
        }

            #st-stop-map-controls-pin a:hover span.pin-text, #st-passthrough-map-controls-pin a:hover span.pin-text {
                display: inline;
                width: 100%;
                opacity: 1.0;
            }

        #st-stop-map-controls-pin a *, #st-passthrough-map-controls-pin a * {
            margin: 0 auto;
            display: block;
        }

.border-1 {
    border-width: 1px !important;
}

.border-2 {
    border-width: 2px !important;
}

.border-3 {
    border-width: 3px !important;
}

.border-4 {
    border-width: 4px !important;
}

.border-5 {
    border-width: 5px !important;
}

.st-label {
    color: #2d2c2b !important;
}

#searchFormOpener {
    cursor: pointer;
    background: #3f3f3d;
}

    #searchFormOpener:hover {
        background: #007bff;
    }

.d-flex[style*="display:none"], .d-flex[style*="display: none"] {
    display: none !important;
}

.st-header-tabs {
    margin-top: .25rem;
    border-bottom: #3f3f3d solid 0.5rem;
}

    .st-header-tabs ul {
        padding-left: .5rem;
    }

.table th {
    background: #3f3f3d;
    color: #ffffff;
}

.validation-error-wrap ul {
    margin: 1rem 0;
}

    .validation-error-wrap ul:before {
        content: "Errors:";
    }

.add-cursor {
    cursor: url("/Content/img/map_add_marker.png"), auto;
}

/*.add-cursor-disabled {
    cursor: url('~/Content/img/map_add_marker_disabled.png'), auto;
}*/
.ui-datepicker {
    background: #ffffff;
    border: solid 1px #c1c0bf;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.4) 0 4px 8px;
}

.ui-datepicker-header {
    background: #3f3f3d;
    border-radius: 4px;
    color: #ffffff;
    font-weight: 700;
}

.ui-datepicker-next {
    position: relative;
}

    .ui-datepicker-next::before {
        color: #ffc655 !important;
        position: absolute;
        left: 11px;
        top: 4px;
        font-family: "Font Awesome 5 Free";
        content: "\F0DA";
    }

.ui-datepicker-prev {
    position: relative;
}

    .ui-datepicker-prev::before {
        color: #ffc655 !important;
        position: absolute;
        left: 11px;
        top: 4px;
        font-family: "Font Awesome 5 Free";
        content: "\F0D9";
    }

.ui-datepicker-calendar {
    border-collapse: separate !important;
    border-spacing: 2px;
}

    .ui-datepicker-calendar tbody {
        font-size: 18px;
    }

        .ui-datepicker-calendar tbody .ui-state-active {
            background: #ffc655 !important;
        }

        .ui-datepicker-calendar tbody .ui-state-highlight {
            position: relative;
        }

            .ui-datepicker-calendar tbody .ui-state-highlight::after {
                content: " ";
                width: 6px;
                height: 6px;
                border-radius: 3px;
                background: #c1c0bf;
                position: absolute;
                bottom: 2px;
                left: 14px;
            }

        .ui-datepicker-calendar tbody td {
            /*            padding-top: .5rem;
            padding-bottom: .5rem;*/
            background: #f4f3f2;
            border-radius: 4px;
            margin: .2rem;
        }

            .ui-datepicker-calendar tbody td:hover {
                background: #e3e2e1;
            }

            .ui-datepicker-calendar tbody td a {
                display: block;
                width: 100%;
                height: 100%;
            }

        .ui-datepicker-calendar tbody .ui-datepicker-week-end a {
            color: #898888 !important;
        }

input[type="button"]:disabled, button:disabled {
    background: #f4f3f2 !important;
    border: #f4f3f2 !important;
    color: #c1c0bf !important;
    cursor: not-allowed;
}

.cursor-pointer {
    cursor: pointer !important;
}

div.st-map-control {
    padding-right: 0px !important;
}

.st-map-container {
    height: 100%;
    background: #f4f3f2;
}

/*STOP LIST - FOR MAP*/
.stop-list-item-details-section {
    background: #3f3f3d;
    border-radius: .2rem;
    padding: .5rem 1rem;
    margin: .5rem 1.5rem .5rem 0;
}

/*STOP LIST LEGEND - FOR MAP*/
.legend-item, .legend-item * {
    cursor: help;
    user-select: none;
    /* supported by Chrome and Opera */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
}

/*STOP LIST - FOR MAP*/
#st-map-controls {
    user-select: none;
    /* supported by Chrome and Opera */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
}

    #st-map-controls .st-link-danger {
        color: #ff8383 !important;
    }

        #st-map-controls .st-link-danger:hover {
            color: #ffcdcd !important;
        }

/*STOP MAP LEGEND - FOR MAP*/
.st-stop-map-controls-nav-item, .st-passthrough-map-controls-nav-item {
    width: 40px;
    height: 32px;
    box-sizing: border-box;
    border-radius: 0 16px 16px 0;
    display: flex;
}

    .st-stop-map-controls-nav-item:not(:first-child), .st-passthrough-map-controls-nav-item:not(:first-child) {
        margin-top: 10px;
    }

    /*EDIT STOP MAP LEGEND - FOR MAP*/
    .st-stop-map-controls-nav-item.selected, .st-passthrough-map-controls-nav-item.selected {
        background: #3f3f3d;
    }

        .st-stop-map-controls-nav-item.selected .st-map-controls-nav-item-link, .st-passthrough-map-controls-nav-item.selected .st-map-controls-nav-item-link {
            background: #3f3f3d;
            color: #f4f3f2;
        }

/*EDIT STOP MAP LEGEND - FOR MAP*/
.edit-stop-st-map-controls-layer-item-2, .st-map-controls-layer-item-2 {
    padding: 12px 14px 12px 6px;
    color: #f4f3f2;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #5b5a57;
}

    .edit-stop-st-map-controls-layer-item-2.layer-invisible, .st-map-controls-layer-item-2.layer-invisible {
        opacity: .6;
    }

        .edit-stop-st-map-controls-layer-item-2.layer-invisible .edit-stop-layer-visibility-btn, .edit-stop-st-map-controls-layer-item-2.layer-invisible .layer-visibility-btn, .edit-stop-st-map-controls-layer-item-2.layer-invisible .layer-visibility-btn-passthrough, .st-map-controls-layer-item-2.layer-invisible .edit-stop-layer-visibility-btn, .st-map-controls-layer-item-2.layer-invisible .layer-visibility-btn, .st-map-controls-layer-item-2.layer-invisible .layer-visibility-btn-passthrough {
            background: url("/Content/img/map/st-icon-16x16-eye-slash.png") no-repeat center;
        }

            .edit-stop-st-map-controls-layer-item-2.layer-invisible .edit-stop-layer-visibility-btn.layer-data-unavailable, .edit-stop-st-map-controls-layer-item-2.layer-invisible .layer-visibility-btn.layer-data-unavailable, .edit-stop-st-map-controls-layer-item-2.layer-invisible .layer-visibility-btn-passthrough.layer-data-unavailable, .st-map-controls-layer-item-2.layer-invisible .edit-stop-layer-visibility-btn.layer-data-unavailable, .st-map-controls-layer-item-2.layer-invisible .layer-visibility-btn.layer-data-unavailable, .st-map-controls-layer-item-2.layer-invisible .layer-visibility-btn-passthrough.layer-data-unavailable {
                cursor: not-allowed;
            }

                .edit-stop-st-map-controls-layer-item-2.layer-invisible .edit-stop-layer-visibility-btn.layer-data-unavailable:after, .edit-stop-st-map-controls-layer-item-2.layer-invisible .layer-visibility-btn.layer-data-unavailable:after, .edit-stop-st-map-controls-layer-item-2.layer-invisible .layer-visibility-btn-passthrough.layer-data-unavailable:after, .st-map-controls-layer-item-2.layer-invisible .edit-stop-layer-visibility-btn.layer-data-unavailable:after, .st-map-controls-layer-item-2.layer-invisible .layer-visibility-btn.layer-data-unavailable:after, .st-map-controls-layer-item-2.layer-invisible .layer-visibility-btn-passthrough.layer-data-unavailable:after {
                    position: relative;
                    content: '\F071';
                    font-family: 'Font Awesome 5 Free';
                    font-weight: 900;
                    font-style: normal;
                    color: #ffc655;
                    text-decoration: none;
                    left: 12px;
                    top: 10px;
                }

    .edit-stop-st-map-controls-layer-item-2 .edit-stop-layer-visibility-btn, .edit-stop-st-map-controls-layer-item-2 .layer-visibility-btn, .edit-stop-st-map-controls-layer-item-2 .layer-visibility-btn-passthrough, .st-map-controls-layer-item-2 .edit-stop-layer-visibility-btn, .st-map-controls-layer-item-2 .layer-visibility-btn, .st-map-controls-layer-item-2 .layer-visibility-btn-passthrough {
        position: relative;
        background: url("/Content/img/map/st-icon-eye-16x16.png") no-repeat center;
        width: 24px;
        height: 22px;
        cursor: pointer;
    }

        .edit-stop-st-map-controls-layer-item-2 .edit-stop-layer-visibility-btn:hover, .edit-stop-st-map-controls-layer-item-2 .layer-visibility-btn:hover, .edit-stop-st-map-controls-layer-item-2 .layer-visibility-btn-passthrough:hover, .st-map-controls-layer-item-2 .edit-stop-layer-visibility-btn:hover, .st-map-controls-layer-item-2 .layer-visibility-btn:hover, .st-map-controls-layer-item-2 .layer-visibility-btn-passthrough:hover {
            background-color: #5b5a57 !important;
        }

/*USED ON INDEX STOPS RIGHT NOW*/
.st-icon {
    width: 36px;
    height: 36px;
    cursor: pointer;
}

    .st-icon.st-icon-copy-stop {
        background: url("/Content/img/map/st-icon-copy-stop.png");
    }

        .st-icon.st-icon-copy-stop:hover {
            background: url("/Content/img/map/st-icon-copy-stop-hover.png");
        }

/*ACTION TOOLBAR - CURRENTLY USED ON THE ROUTE PAGE*/
.st-toolbar .st-toolbar-icon {
    border-radius: .25rem;
    padding: .5rem;
    margin: .25rem 0;
    cursor: pointer;
}

    .st-toolbar .st-toolbar-icon:hover {
        background-color: #2d2c2b;
    }

/* START ROUTING STYLES */
.stop-number.depot span, .stop-number.campus span {
    background: #122e4c !important;
    border: none !important;
    border-radius: 2rem;
    padding-left: .5rem;
    padding-right: .5rem;
}

.route-activity-stop-list .ui-state-highlight {
    background: #5b5a57 !important;
    border: none !important;
    height: 87px;
}

.st-route-type-badge {
    font-weight: 500;
    border-radius: .25rem;
    padding: .125rem .5rem;
}

    .st-route-type-badge.inbound {
        background: #0071bc;
        color: #ffffff;
    }

    .st-route-type-badge.outbound {
        background: #0AC7AD;
        color: #ffffff;
    }

/*MAP TOOLBAR BTN SELECTED (SHOWS YELLOW BUTTON WITH CIRCLE)*/
.st-map-tool-btn-selected {
    background: #fff0cf url("/Content/img/btn-active-circle-yellow-700.png") no-repeat bottom 10px right 10px !important;
    border: 1px solid #ffb000 !important;
    color: #7f4909;
}

    .st-map-tool-btn-selected:hover {
        color: #7f4909 !important;
    }

/*NOT SURE WHAT THIS IS USED FOR*/
#editGeofenceHelperText {
    display: none;
}

/*HERE MAPS ICONS/CURSORS*/
.add-campus-cursor {
    cursor: url("/Content/img/map/st-map-marker-campus-add.png") 28 22, auto;
}

.add-depot-cursor {
    cursor: url("/Content/img/map/st-map-marker-depot-add.png") 28 23, auto;
}

.drag-cursor {
    cursor: url("/Content/img/drag-cursor.png"), auto;
}

.draggable-stop-marker {
    cursor: grab;
}

/*SPECIFIC TO THE FREEZE BUTTON*/
/* The container */
.st-freeze-stop-time-chkbox-container {
    display: block;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default checkbox */
    .st-freeze-stop-time-chkbox-container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/* Create a custom checkbox */
.st-freeze-stop-time-chkbox-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0.375rem 0.5rem 0.375rem 1.75rem;
    height: calc(1.5em + 0.75rem + 2px);
    text-decoration: none !important;
    font-size: 1rem;
    background: #f5fafc url("/Content/img/map/st-icon-freeze-20x20-not-frozen.png") no-repeat 6px 9px;
    border: 1px solid #007bff;
    border-radius: 0.25rem !important;
    color: #00438b;
    width: 100%;
}

    .st-freeze-stop-time-chkbox-checkmark #stFreezeTxtNotFrozen {
        display: inline;
    }

    .st-freeze-stop-time-chkbox-checkmark #stFreezeTxtFrozen {
        display: none;
    }

/* On mouse-over, add a light blue background color */
.st-freeze-stop-time-chkbox-container:hover input ~ .st-freeze-stop-time-chkbox-checkmark {
    background-color: #d6ebff;
}

/* When the checkbox is checked, add a blue background */
.st-freeze-stop-time-chkbox-checkmark.frozen-stop-btn {
    background: #007bff url("/Content/img/map/st-icon-freeze-20x20-frozen.png") no-repeat 6px 9px;
    color: #ffffff;
}

    .st-freeze-stop-time-chkbox-checkmark.frozen-stop-btn #stFreezeTxtNotFrozen {
        display: none;
    }

    .st-freeze-stop-time-chkbox-checkmark.frozen-stop-btn #stFreezeTxtFrozen {
        display: inline;
    }

    .st-freeze-stop-time-chkbox-checkmark.frozen-stop-btn:hover {
        background: #00438b url("/Content/img/map/st-icon-freeze-20x20-frozen.png") no-repeat 6px 9px !important;
    }

/* Create the checkmark/indicator (hidden when not checked) */
.st-freeze-stop-time-chkbox-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/*FROZEN STOP ICON FOR HERE MAPS*/
.frozen-stop {
    background: url("/Content/img/map/st-map-legend-stop-frozen.png") no-repeat center !important;
}

/*UNKNOWN STOP ICON FOR HERE MAPS*/
.unknown-stop {
    background: url("/Content/img/map/st-map-legend-undesignated-stops.png") no-repeat center !important;
}

/*THIS ONE TOO*/
.st-inspection-section-item {
    color: #161616;
}

    .st-inspection-section-item.clickable:hover {
        background: #f4f3f2;
        cursor: pointer;
        color: #007bff;
    }

    .st-inspection-section-item.active {
        background: #ffc655 !important;
    }

/*SEEMS TO BE SPECIFIC TO THE RESEQUENCE BUTTON*/
.resequence-list {
    padding-left: 0;
    font-weight: 700;
    list-style: none;
}

    .resequence-list li {
        background: #f8f8f8;
        border-bottom: 1px solid #c1c0bf;
        height: 60px;
        display: flex;
        align-items: center;
        cursor: grab;
    }

/*NOT SURE EITHER*/
.resequence-list-numbers {
    padding-left: 0;
    font-weight: 700;
    color: #ffc655;
    list-style: none;
}

    .resequence-list-numbers li {
        background: #3f3f3d;
        border-bottom: 1px solid #c1c0bf;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

/*SMART ROUTING SPECIFIC - USED FOR ACTIVE DATASET*/
.st-active-bulb {
    width: 12px;
    height: 12px;
    border-radius: 6px;
    background: #81d322;
    -webkit-box-shadow: 0 0 6px rgba(174, 236, 102, 0.6);
    -moz-box-shadow: 0 0 6px rgba(174, 236, 102, 0.6);
    box-shadow: 0 0 6px rgba(174, 236, 102, 0.6);
    margin-right: 4px;
}

.st-inactive-bulb {
    width: 12px;
    height: 12px;
    border-radius: 6px;
    background: #ef3030;
    -webkit-box-shadow: 0 0 6px rgba(250, 82, 82, 0.6);
    -moz-box-shadow: 0 0 6px rgba(250, 82, 82, 0.6);
    box-shadow: 0 0 6px rgba(250, 82, 82, 0.6);
    margin-right: 4px;
}

/*PROBABLY GLOBAL*/
.main-nav-action-menu {
    border-radius: 0.25rem 0 0.25rem 0.25rem !important;
}

.main-nav-action-menu-btn {
    border-radius: 0.25rem;
}

    .main-nav-action-menu-btn.active {
        background: #f8f8f8 !important;
        color: #2d2c2b !important;
        border-radius: 0.25rem 0.25rem 0 0 !important;
    }

/*STYLING FOR SEARCH BUTTON ON SEARCH DRAWER*/
.st-sticky-search {
    background-color: rgba(63, 63, 61, 0);
    transition: background-color .3s;
}

    .st-sticky-search.st-sticky-search-active {
        background-color: #3f3f3d;
    }

/*WHAT IS THIS FOR*/
.st-active-nav-item {
    color: #ffc655 !important;
    background: #2d2c2b;
}

/*ONLY USED FOR EDIT STOP CLOSE ICON*/
.ui-dialog-titlebar-close {
    background: url("/Content/img/st-icon-black-times-16x16.png") center;
}

/*GLOBAL - CURRENTLY NOT USED*/
.st-back-btn {
    transition: max-width .5s;
    max-width: 30px;
    overflow: hidden;
    white-space: nowrap;
}

    .st-back-btn:hover {
        /*width: auto;*/
        transition: max-width .5s;
        max-width: 300px;
    }

        .st-back-btn:hover .st-back-btn-text {
            opacity: 1.0;
        }

    .st-back-btn .st-back-btn-text {
        margin-left: .25rem;
        opacity: 0;
        transition: opacity .25s;
    }

/*GLOBAL FOR JQUERY SELECT2*/
.select2-selection {
    margin-top: 6px !important;
    height: 36px !important;
}

.select2-selection__rendered {
    padding-top: 3px;
}

.select2-selection__arrow {
    top: 10px !important;
}

.select2-results__options {
    margin-top: -6px !important;
    margin-bottom: -6px !important;
}

.select2-dropdown--below {
    padding-top: 6px !important;
    padding-bottom: 6px !important;
}

div.st-search-form-container {
    border-right: 3px solid #c1c0bf;
    width: 300px;
    flex-grow: 0;
    flex-shrink: 0;
}

.icon-passthrough {
    background-image: url("/Content/img/map/st-icon-passthrough-blue-20x20.png") !important;
}

    .icon-passthrough:hover {
        background-image: url("/Content/img/map/st-icon-passthrough-20x20.png") !important;
    }

st-toggle {
    align-items: center;
    display: flex;
    align-content: flex-start;
}

.st-toggle__label {
    flex-grow: 1;
}

.st-toggle__input {
    opacity: 0;
    position: absolute;
    z-index: -1;
}

.st-toggle__container {
    display: block;
    background: 61px 30px #c1c0bf;
    padding: 1px;
    border-radius: 15px;
    height: 30px;
    transition: background-color 0.3s ease;
    width: 61px;
    margin-left: auto;
    cursor: pointer;
}

:focus + .st-toggle__container {
    -webkit-box-shadow: 0 0 8px rgba(0, 123, 255, 0.6) !important;
    -moz-box-shadow: 0 0 8px rgba(0, 123, 255, 0.6) !important;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.6) !important;
}

.st-toggle__container.st-toggle__on,
:checked + .st-toggle__container {
    background-color: #007bff;
    border-color: #007bff;
}

    .st-toggle__container.st-toggle__on .st-toggle__knob {
        transform: translateX(31px);
    }

.st-toggle__container.st-toggle__small {
    width: 41px;
    height: 20px;
}

    .st-toggle__container.st-toggle__small .st-toggle__knob {
        height: 18px !important;
        width: 18px !important;
    }

    .st-toggle__container.st-toggle__small.st-toggle__on .st-toggle__knob,
    :checked + .st-toggle__container > .st-toggle__container.st-toggle__small.st-toggle__on {
        transform: translateX(21px) !important;
    }

.st-toggle__knob {
    display: block;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
    height: 28px;
    width: 28px;
    transition: transform 0.3s ease;
}

:checked + .st-toggle__container > .st-toggle__knob {
    transform: translateX(31px);
}

@media print {
    * {
        overflow: visible !important;
    }

    body * {
        visibility: hidden;
    }

    .printable, .printable * {
        visibility: visible;
    }

    .printable {
        position: absolute;
        left: 0;
        top: 0;
    }

    .no-print, .no-print * {
        display: none !important;
    }

    .page-break {
        page-break-before: always;
    }

    a, a:visited {
        color: #000 !important;
        text-decoration: none !important;
    }
}

@media screen {
    .noPrint {
    }

    .noScreen {
        display: none;
    }
}
