/* colors
blue #0a4c80
green #71c277
yellow #fcf0a6 */
@import url('https://fonts.googleapis.com/css2?family=Manrope&family=Charmonman&display=swap');
@import url('https://fonts.cdnfonts.com/css/rage-italic');

body {
  color: #0a4c80 !important;
  font-family: 'Manrope', sans-serif !important;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 2.5rem;
}

h4 {
  font-size: 2rem;
}

h5 {
  font-size: 1.5rem;
}

h6 {
  font-size: 1.2rem;
}

p {
  font-size: 1.2rem;
}

.blue {
  color: #0a4c80;
}

.green {
  color: #71c277;
}

.white {
  color: #fff;
}

.blue-background {
  background-color: #0a4c80;
}

.green-background {
  background-color: #71c277;
}

.yellow-background {
  background-color: #fcf0a6;
}

.color-block {
  width: 200px;
  height: 70px;
}

.fancy {
  /* font-family: 'Charmonman', cursive; */
  font-family: 'Rage Italic', sans-serif;
}

.notice {
  border: 1px solid #dc3545 !important;
}

.image-banner {
  margin-top: -4rem;
}

.divider {
  /* margin-left: -10rem;
  margin-right: -15rem; */
  z-index: 10;
}

a:hover {
  color: #71c277;
}

header {
  border-bottom: #71c277 solid 3px;
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea,
select {
  font-family: 'Manrope', sans-serif !important;

}

.form-check-input:checked {
  background-color: #0a4c80;
  border-color: #0a4c80;
}

#name1,
#name2 {
  /* display: none; */
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  z-index: -1;
}


/* Dropdown nav bar settings */
.navbar-nav li:hover > ul.dropdown-menu {
  display: block;
}

.dropdown-submenu {
  position:relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  right: 100%;
  margin-top:-6px;
}

/* rotate caret on hover */
.dropdown-menu > li > a:hover:after {
  text-decoration: underline;
  transform: rotate(-90deg);
} 

.navbar>.container-fluid {
  align-items: flex-end;
}

nav a {
  color: #0a4c80 !important;
  font-size: 1.5rem !important;
}


.dropdown-item {
  font-size: 1.2rem !important;
}

/* main>div {
  background: rgba(255,255,255,0.4);
  box-shadow: #888888 2px 2px 12px 2px;

} */

.btn-primary {
  background-color: #0a4c80 !important;
  border-color: #0a4c80 !important;
}

.btn-warning {
  background-color: #71c277 !important;
  border-color: #71c277 !important;
}

.hidden {
  display: none !important;
}

.display {
  display: block;
}



/* TOGGLE FOR ACTIVE */
.toggle {
  /* --width: 252px; */
  --width: 144px;
  /* --height: calc(var(--width) / 3); */
  /* --height: calc(var(--width) / 7); */
  --height: calc(var(--width) / 4);

  position: relative;
  display: inline-block;
  width: var(--width);
  height: var(--height);
  /* box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3); */
  cursor: pointer;
  border-radius: var(--height);
}

.toggle input {
  display: none;
}

.toggle .slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--height);
  /* border: 2px solid #dbdbdb; */
  border: 2px solid #a1a1a1;
  /* background-color: #0dcaf0; */
  /* background-color: #dbdbdb; */
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease-in-out;
}

.toggle .slider::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 5px;
  width: calc(var(--height)*0.6);
  height: calc(var(--height)*0.6);
  border-radius: calc(var(--height) / 2);
  /* border: 3px solid #dbdbdb; */
  border: 3px solid #a1a1a1;
  /* background-color: #dbdbdb; */
  background-color: #a1a1a1;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease-in-out;
}

.toggle input:checked+.slider {
  /* background-color: #198754; */
  /* background-color: #dbdbdb; */
  background-color: #fff;
}

.toggle input:checked+.slider::before {
  transform: translateX(calc(var(--width) - var(--height)));
}

.toggle .labels {
  position: absolute;
  top: 6px;
  left: 0;
  width: 100%;
  height: 100%;
  color: #0dcaf0;
  transition: all 0.4s ease-in-out;
}

.toggle .labels::after {
  content: attr(data-frozen);
  position: absolute;
  right: 20px;
  opacity: 1;
  font-weight: bold;
  /* text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4); */
  transition: all 0.4s ease-in-out;
}

.toggle .labels::before {
  content: attr(data-active);
  position: absolute;
  left: 20px;
  opacity: 0;
  /* color: #dbdbdb; */
  /* color: #fefefe; */
  color: #198754;
  font-weight: bold;
  /* text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.4); */
  /* text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4); */
  /* text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.3); */
  /* text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8); */
  transition: all 0.4s ease-in-out;
}

.toggle input:checked~.labels::after {
  opacity: 0;
}

.toggle input:checked~.labels::before {
  opacity: 1;
}
/* END TOGGLE FOR ACTIVE */


/* ******************************* */
/* FOOTER */
/* ******************************* */
footer {
  border-top: #71c277 solid 3px;
}

/* @media screen and (max-width: 767px) {
  #street-view,
  #crosswalk-crowd {
    display: none;
  }
} */
