html {
  scroll-behavior: smooth;
}

.img-logo {
  height: 45px;
  margin-top: 3px;
}

.select2-container--default .select2-selection--single {
  height: 46px !important;
  padding: 12px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  top: 85% !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 26px !important;
}

.select2-container--default .select2-selection--single {
  border: 1px solid #ccc !important;
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.075) inset;
  transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 20px;
  right: 8px;
}

.has-error .select2-selection {
  border-color: #dd4b39 !important;
}

.nav > li > a {
  padding: 10px 13px;
}

/* VUE vue-progressbar */

.__cov-progress {
  transition: all 0.3s ease-in-out;
  -moz-box-shadow: #333 1px 0 6px 1px;
  -ms-box-shadow: #333 1px 0 6px 1px;
  -webkit-box-shadow: #333 1px 0 6px 1px;
  box-shadow: #333 1px 0 6px 1px;
}

.big-btn {
  width: 100%;
  margin: 3rem 0;
  font-size: 150%;
  letter-spacing: 0.8rem;
}

input.number-input__input {
  font-size: 18px !important;
}

.timeline-item {
  padding: 1rem;
  position: relative;
  color: rgba(0, 0, 0, 0.7);
  border-left: 2px solid rgba(0, 0, 0, 0.3);
}

.timeline-item p {
  font-size: 1rem;
}

.timeline-item::before {
  content: attr(date-is);
  position: absolute;
  left: 2em;
  font-weight: bold;
  top: 1em;
  display: block;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 0.785rem;
}

.timeline-item::after {
  width: 10px;
  height: 10px;
  display: block;
  top: 2em;
  position: absolute;
  left: -7px;
  border-radius: 10px;
  content: '';
  border: 2px solid rgba(0, 0, 0, 0.3);
  background: white;
}

.timeline-item:last-child {
  border-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0)) 1 100%;
}

.btn-primary {
  background-color: #00472b;
  border-color: #245724;
}

.btn-primary:hover {
  background-color: #245724;
  border-color: #245724;
  border: 1px solid #333;
  opacity: 0.7;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.flex-container {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}

.horz-container {
  display: flex;
  flex-direction: row;
  flex-flow: wrap;
  justify-content: center;
}

.horz-data {
  margin: 5px 20px;
}

.v-switch-label {
  font-size: 18px;
}

/* Calendar styles START */
.bg-gray {
  background-color: #6b7280;
}
.bg-red {
  background-color: #f3f4f6;
}
.bg-yellow {
  background-color: #f59e0b;
}
.bg-green {
  background-color: #10b981;
}
.bg-blue {
  background-color: #3b82f6;
}
.bg-indigo {
  background-color: #6366f1;
}
.bg-purple {
  background-color: #8b5cf6;
}
.bg-pink {
  background-color: #db2777;
}
.bg-brand {
  background-color: #00472c;
}
.text-white {
  color: white;
}
.vc-day,
.vc-weekday {
  border: 1px solid #efefef;
}
.vc-weekday {
  font-weight: bold;
  color: #000;
}
.vc-arrow {
  background-color: #e2e2e2;
}
.day-label {
  font-size: 2rem;
}
.event-class {
  margin-top: 0.2rem;
  text-align: left;
  padding: 0.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
}
.day-slot {
  height: 150px;
  overflow: auto;
  cursor: pointer;
}
.custom-calendar {
  width: 100% !important;
}
.text-xs {
  font-size: 12px;
}
/* Calendar Styles END */

.vdpComponent.vdpWithInput > input {
  border: none;
  font-size: 14px;
}

/* Toogle switch - Start */
.switch {
  position: relative;
  display: inline-block;
  width: 80px;
  height: 34px;
}

.switch input {
  display: none;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(170, 170, 170);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: '';
  height: 26px;
  width: 26px;
  left: 6px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: rgb(99, 168, 68);
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(40px);
}

/*------ ADDED CSS ---------*/
.slider:after {
  content: 'NO';
  color: white;
  font-size: 18px;
  display: block;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  right: 7%;
}

input:checked + .slider:after {
  content: 'YES';
  font-size: 18px;
  right: 27%;
}
input:checked + .slider:before {
  right: 25%;
}
/* Toogle switch - End */

.list-unstyled {
  margin-bottom: 2rem;
}
/* Calendar views */
.hourly {
  border: 1px solid #9ca3af;
  padding: 10px;
  border-bottom: none;
}
.hourly:nth-child(2n) {
  background-color: #f9fafb;
}
.hourly:last-child {
  border: 1px solid #9ca3af;
}
