﻿@charset "utf-8";
/* CSS Document */


i.rq {
    color: red;
}

html {
    scroll-behavior: smooth
}

.form-large {
    max-width: 80%;
    margin: 0px auto 50px auto;
    padding: 40px;
    border-radius: 20px;
    background: #f5f5f5;
}

@media only screen and (max-width: 600px) {
    .form-large {
        max-width: calc(100% - 10px);
    }
}

.w-100 {
    width: 100% !important;
}



.fw-bold {
    font-weight: bold;
}

.divider-yellow {
    border-color: #f89427;
    border-width: 3px;
}

.bordered-well {
    border-right: 3px solid #f89427;
    border-left: 3px solid #f89427;
    border-radius: 0;
    background-color: #ffefde;
    background-image: unset;
}

/*.btn-default {
    background-image: linear-gradient(to bottom,#fff 0,#e0e0e0 100%);
}*/

.show-by-btn-check {
    display: none;
}

.btn-check {
    height: 0px;
    width: 0px;
    margin-right: -4px !important;
}

    .btn-check:checked + .btn {
        background-image: linear-gradient(to bottom,#5bc0de 0,#2aabd2 100%);
        color: white;
    }

    .btn-check:disabled + .btn {
        background-image: linear-gradient(to bottom,#d0d0d0 0,#d0d0d0 100%);
        color: #6d6d6d;
    }


.btn-check + .btn {
    background-position: 0 0px;
}

    .btn-check:checked + .btn + .show-by-btn-check {
        display: unset;
    }


.d-flex {
    display: flex !important;
}

.d-inline {
    display: inline !important;
}


.d-none {
    display:none !important;
}

.flex-wrap {
    flex-wrap: wrap;
}

.mt-2 {
    margin-top: 10px;
}

.ms-2 {
    margin-left: 10px;
}

.me-2 {
    margin-right: 10px;
}

.error{
    color:darkred
}


/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal .modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
}

.modal.modal-small .modal-content {
    width: 50%;
}

.flex-column {
    flex-direction: column;
    align-items: flex-start;
}

@media only screen and (max-width: 900px) {
    .modal.modal-small .modal-content
    {
        width: 80%;
    }
}

@media only screen and (min-width: 900px) {
    .flex-md-row{
        flex-direction: row;
    }
}







/* The Close Button */
.modal .modal-content .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.modal .modal-content .loader{
    float: right;
}

.modal .modal-content .close:hover,
.modal .modal-content .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

#myModalChangePanel .btns{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: column;
    
    button{
        margin-bottom: 10px;
        margin-right: 10px;
    }
}

.btn{
    border: 0;
    border-radius: 4px;
    padding: 5px 12px 5px 12px;
    width: fit-content;
    cursor: pointer;
}

.btn-blue{
    background-color: #3498db;
    color: white;
}

.btn-blue:hover{
    background-color: #5858f7;
    color: white;
}

.btn-blue:active{
    background-color: #3498db;
    color: white;
}

.btn-blue:focus{
    background-color: #3498db;
    color: white;
    font-width: bold;
}

select.form-control{
    height: 30px;
}

.align-items-center{
    align-items: center;
}

.loader {
    border: 3px solid #f3f3f3; /* Light grey */
    border-top: 3px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.mr-2{
    margin-right: 10px;
}

.mb-2{
    margin-bottom: 10px;
}

.p-2{
    padding: 10px;
}


.loader-panel{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0000007d;
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 1000;
    flex-direction: column;
}

.loader-panel .loader {
    border: 6px solid #f3f3f3; /* Light grey */
    border-top:6px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.loader-panel .loader-message{
    font-weight: 100;
    margin-top: 10px;
    font-size: 17px;
    background-color: #606060;
    border-radius: 5px;
    padding: 0px 10px;
    color: white;
}

.loader-panel .loader-close{
    margin-right: 20px;
    top: 20px;
    position: absolute;
    color: white;
    opacity: 1;
    right: 20px;
}

@media only screen and (max-width: 768px ) {
    #myModalChangePanel .btns .btn {
        width: 100%;
        margin-right:0;
    }
    #myModalChangePanel .btns {
        clear: both;
    }
    #myModalChangePanel .ddl select  {
        flex-grow: 1;
        margin-right:0 !important;
        max-width: unset;
        margin-bottom: 10px;
    }

    #
    .ddl .btn {
        width: 100%;
    }
}

/* NEW 2nd-Level Dropdown CSS START */
.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu .caret {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    .dropdown-submenu > .dropdown-menu {
        top: 0;
        left: -150px;
        margin-top: -6px;
    }

    .dropdown-submenu.open > a:after {
        border-left-color: #fff;
    }

    .dropdown-submenu.open > .dropdown-menu, .dropdown-submenu.open > .dropdown-menu {
        display: block;
    }

    .dropdown-submenu .dropdown-menu {
        margin-bottom: 8px;
    }

.navbar-default .navbar-nav .open .dropdown-menu .dropdown-submenu ul {
    background-color: #f6f6f6;
}

.navbar-inverse .navbar-nav .open .dropdown-menu .dropdown-submenu ul {
    background-color: #333;
}

.navbar .navbar-nav .open .dropdown-submenu .dropdown-menu > li > a {
    padding-left: 30px;
}

@media screen and (min-width:992px) {
    .dropdown-submenu .dropdown-menu {
        margin-bottom: 2px;
    }

    .navbar .navbar-nav .open .dropdown-submenu .dropdown-menu > li > a {
        padding-left: 25px;
    }

    .navbar-default .navbar-nav .open .dropdown-menu .dropdown-submenu ul {
        background-color: #fff;
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu .dropdown-submenu ul {
        background-color: #fff;
    }
}
/* NEW 2nd-Level Dropdown CSS END */






.table-bordered.gridview-table > tbody > tr > th {
    background: #f1f1f1;
    background: -webkit-linear-gradient(#f3f3f3, #dedede);
    background: -o-linear-gradient(#f3f3f3, #dedede);
    background: -moz-linear-gradient(#f3f3f3, #dedede);
    background: linear-gradient(#f3f3f3, #dedede);
    border: 0;
    font-weight: bold;
    cursor: pointer;
}

.new-facility.breadcrumb > * {
    color: #777;
}

.new-facility.breadcrumb > .active,
.new-facility.breadcrumb > .active a {
    color: black;
}

.pos-relative {
    position: relative;
}

.pos-absolute {
    position: absolute;
}

#OffcanvasBackdrop {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    z-index: 999990;
    opacity:0;
    background-color: #00000047;
    transition: opacity 1s;
}

/* The side navigation menu */
.offcanvas {
    height: 100%; /* 100% Full-height */
    width: 0; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 9999900; /* Stay on top */
    top: 0;
    left: 0;
    background-color: #111; /* Black*/
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 60px; /* Place content 60px from the top */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}


/* The navigation menu links */
.offcanvas a {
    padding: 4px 8px 4px 8px;
    text-decoration: none;
    font-size: 16px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

        /* When you mouse over the navigation links, change their color */
        .offcanvas a:hover {
            color: #f1f1f1;
        }

    /* Position and style the close button (top right corner) */
    .offcanvas .closebtn {
        position: absolute;
        top: 0;
        right: 25px;
        font-size: 36px;
        margin-left: 50px;
    }

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
    transition: margin-left .5s;
    padding: 20px;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
    .offcanvas {
        padding-top: 15px;
    }

        .offcanvas a {
            font-size: 18px;
        }
}

#dynamicReportList {
    list-style-type: none;
    padding-left: 0;
}

#dynamicReportList li:nth-child(2n+1) {
    background-color: #232323;
}