.main-color {
    color: rgba(199,29,34,255);
}

.main-color-background {
    background-color: rgba(199,29,34,255);
}

.main-green {
    color: #14733b;
}

.main-green-background {
    background-color: #14733b;
}

.dark-text {
  color: rgb(47, 59, 51);
}

.scrolled-brand {
    position: fixed;
    width: 85px;
    height: 45px;
    top: 8px;
    transition: top 2s ease 0s;
    transition-property: all;
    transition-duration: 0.5s;
}

.brand {
    position: fixed;
    width: 150px;
    height: 80px;
    top: 20px;
    transition: top 2s ease 0s;
    transition-property: all;
    transition-duration: 0.5s;
}

input[type="checkbox"] {
    -ms-transform: scale(1.3); /* IE */
    -moz-transform: scale(1.3); /* FF */
    -webkit-transform: scale(1.3); /* Safari and Chrome */
    -o-transform: scale(1.3); /* Opera */
    transform: scale(1.3);
    accent-color: #14733b;
}

input[type="radio"]:checked {
  background-color: #14733b !important;
  accent-color: #14733b !important;
  border-color: #14733b !important;
}

.form-check-input:checked {
  background-color: #14733b !important;
  border-color: white !important;
  box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.5) !important;
}

.form-check-input:focus {
  border-color: #14733b !important;
  box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.5) !important;
}

.pagination-container {
    display: flex;
    column-gap: 10px;
  }
  .paginate-buttons {
    height: 40px;
    width: 40px;
    border-radius: 20px;
    cursor: pointer;
    background-color: rgb(242, 242, 242);
    border: 1px solid rgb(217, 217, 217);
    color: black;
  }
  .paginate-buttons:hover {
    background-color: #d8d8d8;
  }
  .active-page {
    background-color: #14733b;
    border: 1px solid #0b4e27;
    color: white;
  }
  .active-page:hover {
    background-color: #14733b;
  }

  

@media (max-width: 767px) {
    .navbar .navbar-brand img {
        position: relative;
        top: 0px !important;
        width: 85px !important;
        height: 45px !important;
    }
}


textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {   
  border-color: #14733b;
  box-shadow: none;
  outline: 0 none;
}

/* scrollbar */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgba(199,29,34,255); 
    border-radius: 10px;
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: rgba(199,29,34,255); 
    border-radius: 10px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: rgba(199,29,34,255); 
  }
/* ------------ end of scroll bar --------------- */

.v-enter-active,
.v-leave-active {
  transition: opacity 0.5s ease;
}

.v-enter-from,
.v-leave-to {
  opacity: 0;
}

.slide-fade-enter-active {
  transition: all 0.3s ease-out;
}

.slide-fade-leave-active {
  transition: all 0.8s cubic-bezier(1, 0.5, 0.8, 1);
}

.slide-fade-enter-from,
.slide-fade-leave-to {
  transform: translateX(20px);
  opacity: 0;
}