
/***** Custom CSS *****/

@font-face {
    font-family: 'Arial Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Arial Regular'), url('../fonts/ARIAL.woff') format('woff');
}

@font-face {
    font-family: 'Arial Bold';
    font-style: normal;
    font-weight: normal;
    src: local('Arial Bold'), url('../fonts/ARIALBD.woff') format('woff');
}

@font-face {
    font-family: 'Arial Medium';
    font-style: normal;
    font-weight: normal;
    src: local('Arial Medium'), url('../fonts/ArialMdm.woff') format('woff');
}


/* Equiserve font */
@font-face {
    font-family: 'Switzer';
    font-weight: 400;
    /*font-display: swap;*/
    font-style: normal;
    src: local('Arial Medium'), url('../fonts/Switzer-Regular.woff2') format('woff2'),
        local('Arial Medium'), url('../fonts/Switzer-Regular.woff') format('woff');
}


@font-face {
    font-family: 'Switzer-Italic';
    font-weight: 400;
    /*font-display: swap;*/
    font-style: italic;
    src: url('../fonts/Switzer-Italic.woff2') format('woff2'),
        url('../fonts/Switzer-Italic.woff') format('woff');
}

@font-face {
    font-family: 'Switzer-Medium';
    font-weight: 500;
    /*font-display: swap;*/
    font-style: normal;
    src: url('../fonts/Switzer-Medium.woff2') format('woff2'),
        url('../fonts/Switzer-Medium.woff') format('woff');
}

@font-face {
    font-family: 'Switzer-MediumItalic';
    font-weight: 500;
    /*font-display: swap;*/
    font-style: italic;
    src: url('../fonts/Switzer-MediumItalic.woff2') format('woff2'),
    url('../fonts/Switzer-MediumItalic.woff') format('woff');
}

@font-face {
    font-family: 'Switzer-Semibold';
    font-weight: 600;
    /*font-display: swap;*/
    font-style: normal;
    src: url('../fonts/Switzer-Semibold.woff2') format('woff2'),
    url('../fonts/Switzer-Semibold.woff') format('woff');
}

@font-face {
    font-family: 'ClashGrotesk-Regular';
    src: url('../fonts/ClashGrotesk-Regular.woff2') format('woff2'),
        url('../fonts/ClashGrotesk-Regular.woff') format('woff');
        font-weight: 400;
        font-display: swap;
        font-style: normal;
}

@font-face {
    font-family: 'ClashGrotesk-Medium';
    src: url('../fonts/ClashGrotesk-Medium.woff2') format('woff2'),
        url('../fonts/ClashGrotesk-Medium.woff') format('woff');
        font-weight: 500;
        font-display: swap;
        font-style: normal;
}

@font-face {
    font-family: 'ClashGrotesk-Semibold';
    src: url('../fonts/ClashGrotesk-Semibold.woff2') format('woff2'),
        url('../fonts/ClashGrotesk-Semibold.woff') format('woff');
        font-weight: 600;
        font-display: swap;
        font-style: normal;
}
/* end Equiserve font */


body {
    font-family: 'Arial Regular', sans-serif;
    font-weight: normal;
    font-size: 0.9rem;
    background-color: #fff;
    color: #000;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    height: 100vh;
}

h1, h2, h3, h4 {
    font-family: 'Arial Bold',sans-serif;
}

label {
    font-family: 'Arial Medium',sans-serif;
}

.loginBanner {
    height: 100vh;
    overflow: hidden;
}

.scrollable {
    position: fixed;
    width: 100%;
    overflow: auto;
    min-height: 100px;
    height: 100%;
    float: right;
    right: 0;
}
/***LOGIN FORM CSS****/

.form, .loginForm {
    width: 370px;
}

.form-control:focus {
    border-color: #17a39b;
    box-shadow: none;
}

.form-control {
    border-color: #ededed;
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
}

.loginForm h1 {
    font-size: 1.5rem;
    margin-bottom: 4rem;
    font-family: 'ClashGrotesk-Semibold', arial, sans-serif;
}

.form-group {
    margin-bottom: 1.5rem;
}

.btn-submit {
    background-color: #17a39b;
    color: #fff;
    padding-left: 2rem;
    padding-right: 2rem;
}

.loginForm .form-group label > span, .form .form-group label > span {
    color: #ce0000;
    font-size: 1rem;
}

.loginForm .text-color {
    color: #17a39b;
}

.mt-10 {
    margin-top: 10rem;
}

.field-icon {
    float: right;
    margin-left: -25px;
    margin-right: 8px;
    color: #939393;
    margin-top: -25px;
    position: relative;
    z-index: 2;
}



/***** SELECT INPUT *****/
.bootstrap-tagsinput {
    background-color: #fff;
    border: 1px solid #ededed;
    padding: 0.5rem 0.75rem;
    color: #555;
    vertical-align: middle;
    border-radius: 4px;
    max-width: 100%;
    line-height: 22px;
    cursor: text;
}

    .bootstrap-tagsinput input {
        border: none;
        box-shadow: none;
        outline: none;
        background-color: transparent;
        padding: 0 6px;
        margin: 0;
        width: auto;
        max-width: inherit;
    }

    .bootstrap-tagsinput.form-control input::-moz-placeholder {
        color: #777;
        opacity: 1;
    }

    .bootstrap-tagsinput.form-control input:-ms-input-placeholder {
        color: #777;
    }

    .bootstrap-tagsinput.form-control input::-webkit-input-placeholder {
        color: #777;
    }

    .bootstrap-tagsinput input:focus {
        border: none;
        box-shadow: none;
    }

    .bootstrap-tagsinput .tag {
        margin-right: 2px;
        color: #010101;
    }

    .bootstrap-tagsinput .tag [data-role="remove"] {
    margin-left: 12px;
    cursor: pointer;
    }

    .bootstrap-tagsinput .tag [data-role="remove"]:after {
    content: "x";
    padding: 0px 2px;
    }

    .bootstrap-tagsinput .tag [data-role="remove"]:hover {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
    }

    .bootstrap-tagsinput .tag [data-role="remove"]:hover:active {
        box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    }

.input-tags {
    width: 100%;
    padding: 15px;
    display: block;
    margin: 0 auto;
}

.label-info {
    background-color: #e5e5e5;
    padding: 8px 10px;
    border-radius: 3px;
}
.bottom_tag {
    width: 100%;
    background-color: #fff;
    padding: 20px;
    text-align: right;
    position: fixed;
    bottom: 0;
    right: 0px;
    max-width: 100%;
}

/*.service-coverage-chart {
    clip-path: inset(32px 0 0 0);
}*/

/* Equiserve dashboard */

.equi-wrap {
    background: #f0f3f2 url("/Images/cwis-background-image.jpg");
    background-attachment: fixed;
}

.equi-wrap span.fa {
    color: #091da4 !important;
}
.equi-wrap a:hover span.fa {
    color: #a5eb3b !important;
}
.equi-wrap .disable_card span.fa {
    color: #999 !important;
}

.equi-wrap i.fas {
    font-style: normal;
}

.equi-wrap .tooltip-inner {
    color: #091da4;
    border-color: #bbb;
}

.equi-wrap .navbar.equi-nav {
    color: #fff;
    background: #091da4;
}
.equi-wrap .navbar.equi-nav .navbar-nav .nav-link {
    color: #fff;
}
.equi-wrap .navbar.equi-nav .navbar-nav .dropdown-toggle:after, 
.equi-wrap .navbar.equi-nav .navbar-nav .dropdown-item:hover,
.equi-wrap .navbar.equi-nav .navbar-nav .dropdown-menu.culture-menu li a:hover,
.equi-wrap .sustainability-text {
    color: #a5eb3b;
}

.equi-wrap .profileDetails div + div a {
    color: #091da4;
}
.equi-wrap .profileDetails div + div a:hover {
    color: #a5eb3b;
}

.equi-wrap .btn-next, .equi-wrap .float {
    background-color: #091da4;
}

.equi-wrap .topmenu .nav-item.active a {
    color: #091da4 !important;
}

.equi-wrap .topmenu .nav-item.active a:after {
    border-color: #091da4;
}

.equi-wrap .btn-outline {
    color: #091da4;
    border-color: #091da4;
}

.equi-wrap .btn-outline:hover {
    background-color: #d9ddfd;
}

.equi-wrap .baseline div a, .equi-wrap .addmore {
    color: #091da4;
}

.equi-wrap .baseline div a:hover, .equi-wrap .addmore:hover {
    color: #a5eb3b;
}

.equi-wrap .graph-card h6, 
.equi-wrap .navbar-light .navbar-nav .nav-link {
    font-family: 'Switzer-Semibold', Arial, sans-serif;
}

.equi-wrap .label-check, .equi-wrap .grid-content .grid-heading,
.equi-wrap .btn {
    font-family: 'Switzer', Arial, sans-serif;
}

.equi-wrap .accordionContent .card-header h5 span {
    flex-basis: 0;
    flex-grow: 14;
    flex-shrink: 14;
}
.equi-wrap .accordionContent .card-header h5 label.switch {
    flex-basis: 0;
    flex-grow: 1;
    flex-shrink: 1;
    right: unset !important;
    left: unset !important;
}
.equi-wrap .accordionContent .card-header h5 label.switch .slider {
    position: static;
    display: inline-block;
}
.equi-wrap .accordionContent .card-header h5 label.switch .slider:before {
    bottom: 2px !important;
}
.equi-wrap .accordionContent .card-header h5 .accordion-link {
    margin: 0;
}

.equi-wrap .equi-icon:hover .far {
    color: #a5eb3b;
}