:root {
    --default-fontfamily: Raleway;
    --number-default-fontfamily: 'Roboto';
    --default-fontsize: 16px;
    --default-color: #191970;
    --default-bg: #ffffff;    
    --primary-color: #191970;
    --oval-color:#2664b9;
    --white-color:#ffffff;
    --heading-color: #ffffff;
    --heading-fontsize: 2.5rem;
    --heading-fontweight: 800;
    --field-label-color: #191970;
    --field-label-fontsize: 12px;
    --field-label-fontweight: 700;
    --field-label-textTransform: uppercase;
    --field-input-background: #f7f7f7;
    --field-input-bordercolor: #eee;
    --field-input-height: 48px;
    --field-input-fontweight: 400;
    --field-input-color: #191970;
    --field-input-fontsize: 16px;
    --field-input-borderradius: 5px;
    --negative-values__color: #f23645;
}

body {
    padding: 0;
    margin: 0;
    color: var(--default-color);
    font-family: var(--default-fontfamily);
    font-size: var(--default-fontsize);
}

.clear-both {
    clear: both;
}

.oval {
    width: 8px;
    height: 8px;
    background-color: var(--oval-color);
    border-radius: 50%;
    display: inline-block;
}

.cursor-pointer {
    cursor: pointer;
}

.justify-child-rows .row{
    justify-content: center;
}

.overflow-x-hidden {
    overflow-x: hidden;
}

.overflow-y-hidden {
    overflow-y: hidden;
}

.mt-ve-1 {
    margin-top: -4px;
}

.ml-ve-2 {
    margin-left: -8px;
}

#page-header .navbar-toggler {
    border: none !important;
}

#page-header button.navbar-toggler:focus:not(:focus-visible) {
    box-shadow: none !important;
}

.page-heading {
    font-size: var(--heading-fontsize);
    font-weight: var(--heading-fontweight);
    color: var(--heading-color);
}

a {
    text-decoration-line: none;
}

.text-justify {
    text-align: justify !important;
}

.roboto-font__family {
    font-family: var(--number-default-fontfamily);
}

.pr__1px {
    padding-right: 1px;
}

.negative-values {
    color: var(--negative-values__color);
}

.font-sm {
    font-size: 14px;
    line-height: 14px;
}

.w-90 {
    width: 90%;
}

.fixed-right__icon {
    z-index: 999;
    position: absolute;
    top: 50%;
    right: -25px;
    transform: translate(-50%, -50%);
    height: 100px;
    width: 50px;
    border-radius: 150px 0 0 150px;
    background-color: #fff;
    border: 1px solid #c5c5dc;
    border-right: none;
    cursor: pointer;
}
.fixed-left__icon {
    z-index: 999;
    position: absolute;
    top: 50%;
    left: 25px;
    transform: translate(-50%, -50%);
    height: 100px;
    width: 50px;
    border-radius: 0 150px 150px 0;
    background-color: #fff;
    border: 1px solid #c5c5dc;
    border-left: none;
    display: none;
    cursor: pointer;
}

.fixed-right__icon img {
    height: 36px;
    width: 20px;
    position: relative;
    top: 30px;
    left: 26px;
}

.fixed-left__icon img {
    height: 36px;
    width: 20px;
    transform: rotate(180deg);
    position: relative;
    top: 30px;
}

@media only screen and (min-width: 769px) and (max-width: 992px) {
    .fixed-right__icon {
        right: -18px;
        height: 70px;
        width: 35px;
    }

    .fixed-right__icon img {
        height: 24px;
        width: 16px;
        top: 22px;
        left: 18px;
    }

    .fixed-left__icon {
        left: 18px;
        height: 70px;
        width: 35px;
    }

    .fixed-left__icon img {
        height: 24px;
        width: 16px;
        top: 22px;
    }
}

@media only screen and (max-width: 768px) {
    .fixed-right__icon {
        right: -11px;
        height: 48px;
        width: 24px;
    }
    
    .fixed-left__icon {
        left: 12px;
        height: 48px;
        width: 24px;
    }
    
    .fixed-right__icon img {
        height: 18px;
        width: 10px;
        top: 10px;
        left: 14px;
    }
    
    .fixed-left__icon img {
        height: 18px;
        width: 10px;
        top: 10px;
    }
}

.lato-font__family {
    font-family: 'Lato';
}

.loader-wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
}

.loader {
    position: fixed;
    top: 50%;
    left: 50%;
    border: 4px solid transparent;
    border-top: 4px solid grey;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    animation: spin 1s linear infinite !important;
    -webkit-animation: spin 1s linear infinite; /* Safari */
}

/* Safari */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.highcharts-legend-item-hidden {
    display: none;
}

.error-message {
    color: var(--negative-values__color);
    font-size: 14px;
    font-weight: 500;
}