.rounded-20 {
    border-radius: 20px;
}
.rounded-10 {
  border-radius: 10px;
}
.rounded-50 {
  border-radius: 50px;
}

.selectpicker{
  border: none;
   /* remove the original arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
}

.py-25{
  padding-top: 10px;
  padding-bottom: 10px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}
.text-orange{
  color: #FF6600;
}
.titleh{
  color:#000;
  font-weight: 800;
}
.sidebar-org {
  width: 75vw;
  min-height: 100vh;
}
.fa-sidebar {
  color: #2C2215;
}
.noHover{
  pointer-events: none;
}
.logobar{
  min-height: 12vh;
}
.rounded-40 {
  border-top-left-radius: 40px;
  border-bottom-left-radius:40px;
}
.btn-org {
    background-color: #FF6600;
}
.nav-text-orange{
    color: #2C2215;
    display: block;
    padding: 10px 10px 10px 10px;
}
.nav-text-orange:hover, .nav-text-orange:focus {
  color: #FF6600;
  text-decoration: none;
}

.nav-item.active{
  color: #FF6600;
  background: linear-gradient(90deg, rgba(255, 102, 0, 0.205) 0%, rgba(255, 102, 0, 0.07) 91.25%);
  border-radius: 0px;
}
.nav-text-orange.active{
    opacity: 1;
    color: #FF6600;
}
.nav-text-orange.disabled {
  color: #858796;
  pointer-events: none;
  cursor: default;
} 

.swal-modal {
  border-radius: 20px;
}

.profile-pic-wrapper {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.pic-holder {
  text-align: center;
  position: relative;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.pic-holder .pic {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.pic-holder .upload-file-block,
.pic-holder .upload-loader {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(90, 92, 105, 0.7);
  color: #f8f9fc;
  font-size: 12px;
  font-weight: 600;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.pic-holder .upload-file-block {
  cursor: pointer;
}

.pic-holder:hover .upload-file-block,
.uploadProfileInput:focus ~ .upload-file-block {
  opacity: 1;
}

.pic-holder.uploadInProgress .upload-file-block {
  display: none;
}

.pic-holder.uploadInProgress .upload-loader {
  opacity: 1;
}

/* Snackbar css */
.snackbar {
  visibility: hidden;
  min-width: 250px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 50%;
  bottom: 30px;
  font-size: 14px;
  transform: translateX(-50%);
}

.snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}


.gradient-custom-2 {
    /* fallback for old browsers */
    background: #fccb90;
    
    /* Chrome 10-25, Safari 5.1-6 */
    background: -webkit-linear-gradient(to right, #ee7724, #d8363a,#FF6600);
    
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background: linear-gradient(to right, #ee7724, #d8363a,#FF6600);
    }
    
    @media (min-width: 768px) {
    .gradient-form {
    height: 75vh !important;
    }
    }
    @media (min-width: 769px) {
    .gradient-custom-2 {
    border-top-right-radius: .3rem;
    border-bottom-right-radius: .3rem;
    }
    }

    .btn-orange {
        --bs-btn-color: #000;
        --bs-btn-bg: #FF6600;
        --bs-btn-border-color: #ffffff;
        --bs-btn-hover-color: #000;
        --bs-btn-hover-bg: #ff954f;
        --bs-btn-hover-border-color: #FF6600;
        --bs-btn-focus-shadow-rgb: 11, 172, 204;
        --bs-btn-active-color: #000;
        --bs-btn-active-bg: #FF6600;
        --bs-btn-active-border-color: #FF6600;
        --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
        --bs-btn-disabled-color: #000;
        --bs-btn-disabled-bg: #0dcaf0;
        --bs-btn-disabled-border-color: #0dcaf0;
      }
      .bg-lightorange {
        background:#FFF0E5;
        background-color: #FFF0E5;
      }
      .bg-semiorange {
        background-color: #FFF0E6;
        background: #FFF0E6;
      }
      body {
        background-color: #FFF0E6;
      }
      .nav-placeholder {
        text-align: left;
        padding-left: 25px;
        padding-bottom:10px;
        padding-top:10px;
        color:#C6A598;
        font-weight: 400;
        font-size: 16px;
        line-height: 19px;
      }
      @media print {
        body * {
          visibility:hidden;
        }
        .modalprint * {
          visibility:visible;
        }
        
      }
      
      
      