/********** Template CSS **********/
:root {
    --primary: #006D82;
    --secondary: #ffffff;
    --light: #000000;
    --dark: #E5F1F3;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Layout ***/
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 300px;
    height: 100vh;
    overflow-y: auto;
    background: var(--secondary);
    transition: 0.5s;
    z-index: 999;
}

.content {
    margin-left: 300px;
    min-height: 100vh;
    background: var(--dark);
    transition: 0.5s;
}

@media (min-width: 992px) {
    .sidebar {
        margin-left: 0;
    }

    .sidebar.open {
        margin-left: -300px;
    }

    .content {
        width: calc(100% - 300px);
    }

    .content.open {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 991.98px) {
    .sidebar {
        margin-left: -300px;
    }

    .sidebar.open {
        margin-left: 0;
    }

    .content {
        width: 100%;
        margin-left: 0;
    }
}


/*** Navbar ***/
.sidebar .navbar .navbar-nav .nav-link {
    padding: 7px 20px;
    color: var(--light);
    font-weight: 500;
    border-left: 3px solid var(--secondary);
    border-radius: 0 30px 30px 0;
    outline: none;
}

.sidebar .navbar .navbar-nav .nav-link:hover,
.sidebar .navbar .navbar-nav .nav-link.active {
    color: var(--primary);
    background: var(--dark);
    border-color: var(--primary);
}

.sidebar .navbar .navbar-nav .nav-link i {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    border-radius: 40px;
}

.sidebar .navbar .navbar-nav .nav-link:hover i,
.sidebar .navbar .navbar-nav .nav-link.active i {
    background: var(--secondary);
}

.sidebar .navbar .dropdown-toggle::after {
    position: absolute;
    top: 15px;
    right: 15px;
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transition: .5s;
}

.sidebar .navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

.sidebar .navbar .dropdown-item {
    padding-left: 25px;
    border-radius: 0 30px 30px 0;
    color: var(--light);
}

.sidebar .navbar .dropdown-item:hover,
.sidebar .navbar .dropdown-item.active {
    background: var(--dark);
}

.content .navbar .navbar-nav .nav-link {
    margin-left: 25px;
    padding: 12px 0;
    color: var(--light);
    outline: none;
}

.content .navbar .navbar-nav .nav-link:hover,
.content .navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.content .navbar .sidebar-toggler,
.content .navbar .navbar-nav .nav-link i {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    border-radius: 40px;
}

.content .navbar .dropdown-item {
    color: var(--light);
}

.content .navbar .dropdown-item:hover,
.content .navbar .dropdown-item.active {
    background: var(--dark);
}

.content .navbar .dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: middle;
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transition: .5s;
}

.content .navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

@media (max-width: 575.98px) {
    .content .navbar .navbar-nav .nav-link {
        margin-left: 15px;
    }
}


/*** Date Picker ***/
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Testimonial ***/
.progress .progress-bar {
    width: 0px;
    transition: 2s;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 5px solid var(--primary);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--dark);
    border-color: var(--primary);
}

button {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 10px 30px;
    transition: 0.5s;
    position: relative;
    font-size: 17px;
    background: #ffffff;
    border: none;
    color: #006D82;
    margin-top: 10px;
  }



  button:hover {
    background: #006D82;
    color: #ffffff;
    box-shadow: 0 0 45px #006D82;
  }
  
  button::before {
    content: '';
    position: absolute;
    inset: 2px;
  }
  
  button span {
    position: relative;
    z-index: 1;
  }
  
  button i {
    position: absolute;
    inset: 0;
    display: block;
  }
  
  button i::before {
    content: '';
    position: absolute;
    border: 2px solid #006D82;
    width: 7px;
    height: 4px;
    top: -3.5px;
    left: 80%;
    background: #222222;
    transform: translateX(-50%);
    transition: 0.5s;
  }
  
  button:hover i::before {
    width: 20px;
    left: 20%;
  }
  
  button i::after {
    content: '';
    position: absolute;
    border: 2px solid #006D82;
    width: 7px;
    height: 4px;
    bottom: -3.5px;
    left: 20%;
    background: #222222;
    transform: translateX(-50%);
    transition: 0.5s;
  }
  
  button:hover i::after {
    width: 20px;
    left: 80%;
  }





.btn_submit {
    font: italic 1.2em "Fira Sans", serif;
    background: none;
    padding: 0;
    border: 2px solid;
    border-radius: 30px;
    border-color: #006D82;
    color: #006D82;
    transition: all 500ms ease-in-out;
    padding: 15px 30px ;
  }
  
  .btn_submit:hover,
  .btn_submit:focus {
    transform: translateY(-1em) scale(120%) ;
    transition-duration: 500ms;
    box-shadow: 0 0.5em 0.5em -0.4em #006D82;
    background: none;
    border: 2px solid;
    border-color: #006D82;
    color: black;
    background-color: #006D82;
    cursor: pointer;
  }

  .table-responsive {
    border: 1px solid black;
  }

  .download-icon:hover,
  .download-icon:focus {
    transform:  scale(120%) ;
    transition-duration: 500ms;
    background: none;
    color: black;
    cursor: pointer;
  }

  .btn-all {
    border: 2px solid #006D82;
    margin-left: 10%;
  }

  .btn-gnx {
    border: 2px solid #CF9D8A;
    margin-left: 10%;
    color : #CF9D8A;
  }

  .btn-gnx:hover {
    background: #CF9D8A;
    color: #ffffff;
    box-shadow: 0 0 45px #CF9D8A;
  }

   
  .btn-gnx i::before {
    content: '';
    position: absolute;
    border: 2px solid #CF9D8A;
    width: 7px;
    height: 4px;
    top: -3.5px;
    left: 80%;
    background: #CF9D8A;
    transform: translateX(-50%);
    transition: 0.5s;
  }

  .p-4{
    height: 100%;
  }

  table {
    border-collapse: collapse;
  }
  td {
    border:1px solid;
  }
  
  .btn-gnx:hover i::before {
    width: 20px;
    left: 20%;
  }
.form-control,.form-control:focus {
    background-color: #ffffff;
    border: 1px solid black;
  }
  .dataTables_filter {
    text-align: left !important;
    padding-left: 1vw;
    border-bottom: 1px solid black;
    background-color: #E5F1F3;
  }

  table.dataTable {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }


  
  .btn-gnx i::after {
    content: '';
    position: absolute;
    border: 2px solid #CF9D8A;
    width: 7px;
    height: 4px;
    bottom: -3.5px;
    left: 20%;
    background: #CF9D8A;
    transform: translateX(-50%);
    transition: 0.5s;
  }
  
  .btn-gnx:hover i::after {
    width: 20px;
    left: 80%;
  }

  
thead, th {
    background-color: #ffffff !important;
    position: sticky;
    top: -1px; 
    z-index: 1; 
    border-left: 1px solid black;
    border-right: 1px solid black;
    color: #000000;
}





