@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');

:root{
    --navy: #14233C;
    --light-navy: #233553;
    --light-red: #f58190;
    --red: #E34B5F;
    --dark-red: #b30e0e;
    --light-yellow: #f8e4bb;
    --yellow: #ffc95e;
    --orange: #f48729;
    --dark-yellow: #ccae74;
    --light-green: #c5f3d9;
    --navy-secondary: #0d1523;
    --light-green: #9BCCD1;

    --light: #f6f6f6;
    --dark: #28292c;
    --green: rgb(30, 207, 118);
    --green-hover: rgb(24, 94, 82);

    --gray: #c5c5c5;
}

*{
  font-family: "Poppins", Arial, sans-serif;
}

.font-8{
  font-size: 8pt !important;
}

.font-9{
  font-size: 9pt !important;
}

.font-10{
  font-size: 10pt !important;
}

.font-11{
  font-size: 11pt !important;
}
.font-12{
  font-size: 12pt !important;
}
.font-16{
  font-size: 16pt !important;
}

.font-black{
  color: black !important;
}

.logout-button a{
    color: white;
    text-decoration: none;
}

.bg{
    background: linear-gradient( rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) ), url('/static/images/bg.png');
    background-position: center; 
    background-size: cover;
}

#stag-collapse{
  font-style: unset;
}

#prd-collapse{
  font-style: unset;
}

.toggle-button{
  transition: all 0.3s ease;
}
.arrow-up::after {
  font-family: "Font Awesome 5 Free";
  content: "\f106";
}

.arrow-down::after {
  font-family: "Font Awesome 5 Free";
  content: "\f107";
}

.border-1px-gray{
  border: 1px solid gray;
  height: 100%;
}

.breadcrumb-item a{
    text-decoration: none;
    color: var(--navy);
}

.breadcrumb-item.active{
  font-weight: bold !important;
  color: #6c757d !important;
}

.custom-btn-uploader{
    background-color: var(--orange);
    color: white;
    border-radius: 5px;
    min-width: 3rem;
    min-height: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

input[type="file"] {
  display: none;
}

.custom-btn-primary{
    background-color: var(--orange);
    color: white;
    border-radius: 5px;
    min-width: 3rem;
}

.custom-btn-primary:hover, .custom-btn-uploader:hover{
  background-color: #b45e13;
  color: white;
}

.custom-btn-secondary{
    background-color: var(--gray);
    color: white;
    border-radius: 5px;
    min-width: 3rem;
    border: none;
}
.custom-btn-secondary:hover{
    color: var(--gray);
    border-radius: 5px;
}

.custom-btn-success{
    background-color: var(--green) !important;
    color: white !important;
    border-radius: 5px !important;
    min-width: 3rem;
    border: transparent;
}
.custom-btn-success:hover{
    color: var(--navy) !important;
}

.custom-btn-warning{
    background-color: var(--yellow);
    color: white;
    border-radius: 5px;
}
.custom-btn-warning:hover{
    color: var(--navy);
}

.home-icon{
  bottom: 22px;
  position: absolute;
  left: 9px;
}
.home-icon a{
  text-decoration: none;
  color: black;
  border-radius: 10px;
  padding: .5rem 2rem;
  background-color: white;
}
.home-icon a img{
    width: 20px;
    height: 20px;
}
.menu-href{
    text-decoration: none;
    color: black;
}

.menu-href:hover{
    text-decoration: none;
    color: black;
}

.menu-card:hover{
    background-color: white;
    color: var(--navy);
    transition: 0.3s;
}

.menu-card-navy{
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 15rem;
    min-height: 15rem;
    max-width: 15rem;
    max-height: 15rem;
    word-wrap: break-word;
    background-clip: border-box;
    border-radius: 0.25rem;
    background: var(--navy);
    color: white;
    box-shadow: 15px 15px 32px 0 rgba( 150, 150, 150, 0.37 );
    backdrop-filter: blur( 6px );
    -webkit-backdrop-filter: blur( 6px );
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
}

.menu-card-navy:hover{
    transition: 0.5s;
    transform: translateX(-10%);
}

.menu-card-red{
    position: relative;
    min-width: 15rem;
    min-height: 15rem;
    max-width: 15rem;
    max-height: 15rem;
    word-wrap: break-word;
    background-clip: border-box;
    border-radius: 0.25rem;
    background: var(--red);
    color: white;
    box-shadow: 15px 15px 32px 0 rgba( 150, 150, 150, 0.37 );
    backdrop-filter: blur( 6px );
    -webkit-backdrop-filter: blur( 6px );
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
}

.menu-card-green{
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 15rem;
    min-height: 15rem;
    max-width: 15rem;
    max-height: 15rem;
    word-wrap: break-word;
    background-clip: border-box;
    border-radius: 0.25rem;
    background: var(--green);
    color: white;
    box-shadow: 15px 15px 32px 0 rgba( 150, 150, 150, 0.37 );
    backdrop-filter: blur( 6px );
    -webkit-backdrop-filter: blur( 6px );
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
}


.menu-card-yellow{
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 15rem;
    min-height: 15rem;
    max-width: 15rem;
    max-height: 15rem;
    word-wrap: break-word;
    background-clip: border-box;
    border-radius: 0.25rem;
    background: var(--yellow);
    color: white;
    box-shadow: 15px 15px 32px 0 rgba( 150, 150, 150, 0.37 );
    backdrop-filter: blur( 6px );
    -webkit-backdrop-filter: blur( 6px );
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
}

.menu-card-white{
  position: relative;
  display: flex;
  flex-direction: column;
  word-wrap: break-word;
  background-clip: border-box;
  border-radius: 0.25rem;
  background: white;
  color: black;
  box-shadow: 15px 15px 32px 0 rgba( 150, 150, 150, 0.37 );
  backdrop-filter: blur( 6px );
  -webkit-backdrop-filter: blur( 6px );
  border-radius: 10px;
  border: 1px solid rgba( 255, 255, 255, 0.18 );
}

.menu-card-yellow:hover{
    transition: 0.5s;
    transform: translateX(10%);
}

.menu-card-body {
    flex: 1 1 auto;
    padding: 1rem 1rem;
}

.menu-card-footer{
    padding-bottom: 1rem;
}

.menu-card-body img{
    width: 10rem;
}

.menu-card-body i{
    width: 10rem;
    font-size: 72pt;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    color:black !important;
    border: none !important;
    background-color: transparent !important;
    background: transparent !important;
    border-bottom: .2rem solid var(--navy) !important;
    font-weight: 900;
}

.spinner-container {
    position: absolute;
    width: 85%;
    height: 45%;
    top: 55%;
    left: 15%;
    /* transform: translateX(-50%) translateY(-30%); */
  }

  
.loader {
    position: relative;
    margin: 0 auto;
    width: 5em;
    height: 5em;
    border-radius: 50%;
    box-shadow: inset 0 0 0 0.8em;
    color: red;
    animation: color 6.4s infinite step-end;
  }

  .appear{
    opacity: 1;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  
  .mask {
    position: absolute;
    width: 2.5em;
    height: 5em;
    background-color: #fafafa;
    left: 2.5em;
    transform-origin: 0em 2.5em;
    animation: spin 1.6s ease-out infinite;
  }
  
  .mask2 {
    position: absolute;
    width: 2.5em;
    height: 5em;
    background-color: #fafafa;
    left: 0em;
    transform-origin: 2.5em 2.5em;
    animation: spinNoDelay 1.6s infinite 0.2s;
  }
  .small {
    font-size: 10pt;
  }
  
  .credits {
    margin-top: 25px;
  }
  
  .center {
    text-align: center;
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
  
    50%, 100% {
      transform: rotate(360deg);
    }
  }
  
  @keyframes spinNoDelay {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(353deg);
    }
  }
  
  @keyframes color {
    0% {
      color: #3cba54
    }
    
    25% {
      color: #f4c20d
    }
   
    50% {
      color: #db3236
    }
    
    75% {
      color: #4885ed
    }
  }
@media (min-width: 576px){
    .modal-dialog{
        width: 1000px !important;
        max-width: 1200px !important;
    }
}

.card-container{
  border-radius: .5rem;
  border: 1px solid var(--navy);
  padding: 2rem 2rem;
  margin-bottom: 2rem;
}

.card-header{
  background-color: var(--navy) !important;
  border-top-left-radius: .5rem;
  border-top-right-radius: .5rem;
  margin-top: -2rem;
  margin-left: -2rem;
  margin-right: -2rem;
  margin-bottom: 1rem;
  padding: 1rem 2rem;
  font-weight: 900;
  color: white;
}

.value{
  border-bottom: 1px solid #8f8f8f;
  padding-bottom: .5rem;
  word-break: break-word;
}

.scrollable-row{
  overflow-x: auto;
  /* width: auto !important; */
  white-space: nowrap;
}

.scrollable-col{
    display: inline-block;
    width: 300px; 
    margin-right: 2rem;
    /* height: 100px;  */
}

.severity-info{
  border-radius: 5px;
  background-color: #157347;
  color: white;
  padding: 3px 9px;
}

.severity-error{
  border-radius: 5px;
  background-color: #db3236;
  color: white;
  padding: 3px 9px;
}

table.dataTable thead .sorting, table.dataTable thead .sorting_asc, table.dataTable thead .sorting_desc {
  background-size: 19px;
}

.tab-pane{
  padding: 1rem;
  border: 1px solid gray;
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
}

.nav-pills .nav-link.active{
  background-color: var(--navy) !important;
  color: white !important;
}

.nav-link{
  color: var(--navy) !important;
}

.form-label{
  font-weight: bold;
}
.form-control, .form-select{
  height: 3rem;
}

#loading{
    height: 100vh;
    width: 100vw; 
    position: fixed;
    display: none;
    align-items: center;
    justify-content: center; 
    z-index: 9999;
    background: rgba(255, 255, 255, 0.5);
}

#loading img{
    position: fixed;
    width: 25%;
    z-index: 999;
}

.choices__inner{
  background-color: white !important;
  height: 3rem;

}

.carousel-control-prev, .carousel-control-next{
  background: var(--green);
  height: 2rem;
  opacity: 1;
  position: unset;
  top: unset;
  bottom: 36px;
}

.carousel-control-prev:hover, .carousel-control-next:hover{
  background: #157347;
}

.carousel-indicators [data-bs-target]{
  border-top: 10px solid white !important;
  border-bottom: 10px solid white !important;
  background: rgb(197, 197, 197);
}

.carousel-indicators .active{
  border-top: 10px solid white;
  border-bottom: 10px solid white;
  background: black;
}

.nav-tabs .nav-link.active{
  background-color: var(--yellow);
}

.form-control[readonly]{
  background-color: white !important;
}

@media screen and (min-width: 1900px) {
  #valid{
    height: 30rem;
  }
}