html,
body {
  height: 100%;
  margin: 0;
  padding: 0 !important;
  background-color: white !important;
  font-family: "Space Grotesk", sans-serif !important;
  color: #273658 !important;
  display: flex;
  flex-direction: column;
}

body {
  display: flex;
  flex-direction: column;
}

p {
  margin-bottom: 0 !important;
}

/* Scrollbar stylization */
/* Width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
/* Handle */
::-webkit-scrollbar-thumb {
  background: #273658;
  border: 1px solid rgba(0, 0, 0, 0);
  background-clip: padding-box;
  border-radius: 50px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #fcd403;
  border: 1px solid #273658;
}

section {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0rem 5rem 3.5rem;
  flex: 1 0 auto;
}

.circle-separator {
  width: 6px;
  height: 6px;
  border-radius: 20px;
  background-color: black;
}

.button {
  text-decoration: none;
  background-color: white;
  color: #273658;
  border: 1px solid rgba(252, 212, 3, 0.5);
  border-radius: 50px;
  padding: 0.5rem 0.9rem;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.button:hover {
  color: #273658;
  background-color: #fcd403;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-filled {
  color: #273658;
  font-weight: 600;
  text-decoration: none;
  background-color: #fcd403;
  padding: 0.5rem 2rem;
  border: unset;
  border-radius: 50px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.btn-filled:hover {
  background-color: #273658;
  color: #fcd403;
}

a.active {
  padding-left: 1.3rem !important;
  padding-right: 1.3rem !important;
  border: 1px solid #fcd403;
  border-radius: 40px;
  color: #fcd403 !important;
}

.active-img {
  background-color: #fcd403;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.active-link {
  color: #fcd403 !important;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

a {
  color: #83878f;
  text-decoration: underline;
}

a:hover {
  color: #fcd403;
}

.data-error {
  font-size: 40px;
  color: red;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.logo {
  height: 70px;
}

.expanded {
  height: auto !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.collapsed {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

.divider {
  border-top: 1px solid #e9f0ff;
}

.draw-zones {
  height: 100%;
}
.draw-zones #map {
  height: 100%;
}

#map {
  height: 100%;
}

#block-message {
  background-color: #273658;
  color: #fcd403;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 3rem !important;
  padding: 1rem 2rem;
  word-break: break-all;
}

#auth-wrapper {
  width: 100%;
  max-width: 400px;
}
#auth-wrapper .title_container {
  display: flex;
  justify-content: center;
  flex-flow: column;
  text-align: center;
  align-items: center;
}
#auth-wrapper .title_container .title {
  margin: 2rem 0rem;
  font-size: 2rem;
}
#auth-wrapper .title_container img {
  width: 200px;
}

header#nav {
  width: 100%;
  max-width: 1440px !important;
  margin: 0 auto !important;
  padding: 1rem 5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header#nav #main-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1.5rem;
}
header#nav #main-menu ul li {
  position: relative;
}
header#nav #main-menu ul li ul {
  margin-top: 0.5rem;
  visibility: hidden;
  opacity: 0;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 4px 30px 0px #c7cfe2;
  width: 155px;
  position: absolute;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  left: 0;
  display: none;
  z-index: 10;
}
header#nav #main-menu ul li ul li {
  padding: 0.5rem 0rem;
  clear: both;
  width: 100%;
}
header#nav #main-menu ul li ul li a {
  padding: 0rem 0rem 0.5rem 1rem;
}
header#nav #main-menu ul li:hover > ul,
header#nav #main-menu ul li ul:hover {
  visibility: visible;
  opacity: 1;
  display: block;
}
header#nav #main-menu ul li a {
  color: #273658;
  font-weight: 500;
  text-decoration: none;
  padding: 0.7rem;
}
header#nav #main-menu ul li a:hover {
  color: #fcd403;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
}
header#nav #leave-buttons {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  align-items: center;
}
header#nav #leave-buttons #logout {
  width: 30px;
  height: 30px;
  background-color: #fcd403;
  border: 1px solid #fcd403;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
header#nav #leave-buttons #logout:hover {
  background-color: transparent;
}

footer {
  background: linear-gradient(97.91deg, #ffbe2e 3.86%, #fcd403 81.05%);
  border-radius: 20px 20px 0px 0px;
  margin-top: auto;
}
footer .footer {
  width: 100%;
  max-width: 1440px !important;
  margin: 0 auto !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5rem;
}
footer .footer p {
  margin: 0;
}
footer .footer .footer-links {
  display: flex;
  align-items: center;
  gap: 3rem;
}
footer .footer .footer-links a {
  color: #273658;
  font-weight: 500;
  text-decoration: none;
}
footer .footer .footer-links a:hover {
  text-decoration: underline;
}

#login {
  display: flex;
  justify-content: center;
  align-items: center;
}
#login p {
  text-align: center;
}
#login .wrapper {
  width: 100%;
  max-width: 400px;
}
#login .title_container {
  display: flex;
  justify-content: center;
  flex-flow: column;
  text-align: center;
  align-items: center;
}
#login .title_container .title {
  margin: 30px;
}
#login .title_container img {
  width: 200px;
}
#login #login-form {
  display: flex;
  flex-flow: column;
}
#login #login-form #login-forgot-pass {
  text-align: center;
}
#login #login-form input {
  padding: 15px 20px 15px 25px;
  margin: 10px 0;
  border-radius: 30px;
  border: 1px solid #dae0f5;
}
#login #login-form .button {
  border-color: #fcd403;
  background-color: #fcd403;
  margin-top: 20px;
}
#login #login-form .button:hover {
  background-color: #273658;
  border-color: #273658;
  color: #fcd403;
}
#login #google-btn {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0.625rem auto;
}

#sign-up {
  display: flex;
  justify-content: center;
  align-items: center;
}
#sign-up .registration-error ul li {
  text-align: start;
}
#sign-up p {
  text-align: center;
}
#sign-up #sign-up-form {
  display: flex;
  flex-flow: column;
}
#sign-up #sign-up-form #terms:checked::before {
  background-color: #fcd403;
}
#sign-up #sign-up-form .tp-check {
  display: flex;
  align-items: start;
  margin-top: 15px;
}
#sign-up #sign-up-form input {
  padding: 15px 20px 15px 25px;
  margin: 10px;
  border-radius: 30px;
  border: 1px solid #dae0f5;
}
#sign-up #sign-up-form .button {
  border-color: #fcd403;
  background-color: #fcd403;
  margin-top: 20px;
}
#sign-up #sign-up-form .button:hover {
  background-color: #273658;
  border-color: #273658;
  color: #fcd403;
}

#forgot-password {
  display: flex;
  justify-content: center;
  align-items: center;
}
#forgot-password .title_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
#forgot-password .title_container .title {
  margin: 2rem 0rem;
}
#forgot-password .title_container img {
  width: 200px;
}
#forgot-password .title_container p {
  margin-bottom: 1.5rem !important;
  color: #83878f;
  text-align: center;
}
#forgot-password #forgot-pass-form {
  display: flex;
  flex-flow: column;
}
#forgot-password #forgot-pass-form input {
  padding: 15px 20px;
  margin: 10px;
  border-radius: 30px;
  border: 1px solid #dae0f5;
}
#forgot-password #forgot-pass-form .button {
  border-color: #fcd403;
  background-color: #fcd403;
  margin: 0px 20px;
  padding: 15px 30px;
}
#forgot-password #forgot-pass-form .button:hover {
  background-color: #273658;
  border-color: #273658;
  color: #fcd403;
}
#forgot-password #forgot-pass-form .back-button {
  background-color: transparent;
  color: #273658;
}
#forgot-password #forgot-pass-form .back-button:hover {
  text-decoration: none !important;
  border: 1px solid #273658;
}
#forgot-password #forgot-pass-form .buttons-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
}

#forgot-password.reset-password #forgot-pass-form input[type=submit] {
  margin-top: 1.5rem;
}
#forgot-password.reset-password #formFooter {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  gap: 2rem;
}
#forgot-password.reset-password #formFooter a.button {
  text-decoration: none;
  padding: 0.75rem 1.5rem;
}
#forgot-password.reset-password #formFooter a.button:hover {
  background-color: #273658;
  border-color: #273658;
  color: #fcd403;
}

#change-password-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
#change-password-section a {
  color: #83878f;
}
#change-password-section p {
  text-align: center;
}
#change-password-section .wrapper {
  width: 400px;
}
#change-password-section .title_container {
  display: flex;
  justify-content: center;
  flex-flow: column;
  text-align: center;
  align-items: center;
}
#change-password-section .title_container .title {
  margin: 30px;
}
#change-password-section .title_container img {
  width: 200px;
}
#change-password-section .title_container p {
  color: #83878f;
}
#change-password-section #change-pass-form {
  display: flex;
  flex-flow: column;
}
#change-password-section #change-pass-form input {
  padding: 15px 20px;
  margin: 10px;
  border-radius: 30px;
  border: 1px solid #dae0f5;
}
#change-password-section #change-pass-form .button {
  border-color: #fcd403;
  background-color: #fcd403;
  margin: 0px 20px;
  padding: 15px 30px;
}
#change-password-section #change-pass-form .button:hover {
  background-color: #273658;
  border-color: #273658;
  color: #fcd403;
}
#change-password-section #change-pass-form .back-button {
  background-color: transparent;
  color: #273658;
}
#change-password-section #change-pass-form .buttons-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
}

#download {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
}
#download #carousel-container {
  width: calc(50% - 1.5rem);
  background-image: url("../images/CityScheme.svg");
  background-repeat: no-repeat;
  background-color: rgba(255, 255, 255, 0.7);
  background-blend-mode: lighten;
}
#download #carousel-container #slideshow-container {
  width: 290px;
  position: relative;
  margin: 0 auto;
  margin-top: 75px;
  border: 1.25px solid #fcd403;
  border-radius: 28px;
  padding: 0.9rem;
  /* Hide the images by default */
  /* Next & previous buttons */
  /* Position the "next button" to the right */
}
#download #carousel-container #slideshow-container .mySlides {
  display: none;
  box-shadow: 30px 30px 10px 0px rgba(199, 207, 226, 0.5019607843);
  border-radius: 40px;
  animation: fade 1s linear;
}
#download #carousel-container #slideshow-container .prev,
#download #carousel-container #slideshow-container .next {
  position: absolute;
  cursor: pointer;
  top: 275px;
  width: 50px;
  height: 50px;
  margin-top: -22px;
  padding: 14px;
  text-align: center;
  font-weight: bold;
  color: #fcd403;
  text-decoration: none;
  font-size: 16px;
  background-color: #273658;
  border-radius: 50px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
#download #carousel-container #slideshow-container .prev:hover,
#download #carousel-container #slideshow-container .next:hover {
  background-color: #fcd403;
  color: #273658;
}
#download #carousel-container #slideshow-container .next {
  right: -5rem;
}
#download #carousel-container #slideshow-container .prev {
  left: -5rem;
}
@keyframes fade {
  0% {
    opacity: 0.1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
#download .info {
  width: calc(50% - 1.5rem);
  background-color: white;
}
#download .info h1 {
  font-size: 48px;
  max-width: 450px;
  font-weight: 500;
}
#download .info p.subtitle {
  max-width: 520px;
  font-size: 15.5px;
  margin-bottom: 1.5rem !important;
}
#download .info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#download .info ul li {
  display: flex;
  gap: 1.5rem;
  align-items: start;
}
#download .info ul li .item-text {
  margin-bottom: 1rem;
}
#download .info ul li .item-text h3 {
  font-weight: 700;
  font-size: 19.5px;
}
#download .info ul li .item-text p {
  margin: 0;
}
#download .info .download-p {
  font-weight: 600;
  font-size: 1.5rem;
  margin: 1rem 0rem 2rem !important;
}
#download .info .download-links {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
#download .info .download-links img {
  max-width: 130px;
  height: 40px;
}

#dashboard {
  width: 100%;
  display: flex;
  gap: 3rem;
  justify-content: space-between;
}
#dashboard h1 {
  font-weight: 500;
  font-size: 50px;
}
#dashboard #upi {
  width: 560px;
  overflow: auto;
}
#dashboard #upi-wrapper {
  margin-bottom: 30px;
}
#dashboard .aside-left {
  width: calc(17.5% - 2rem);
  height: -moz-fit-content;
  height: fit-content;
  text-align: center;
  box-shadow: 0px 4px 30px 0px rgb(199, 207, 226);
  border-radius: 30px;
  padding: 2rem 1rem;
}
#dashboard .aside-left .container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
#dashboard .aside-left .container .head {
  font-size: 12px;
  font-weight: 500;
}
#dashboard .aside-left .container .stat {
  font-weight: 700;
  font-size: 20px;
}
#dashboard .aside-left .container img {
  width: 57px;
  height: 57px;
}
#dashboard .aside-left .divider {
  width: 30%;
  margin: 2rem auto;
}
#dashboard main {
  width: calc(65% - 2rem);
}
#dashboard main .main-buttons {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  gap: 1rem;
  margin: 2rem 0rem;
}
#dashboard main .main-buttons img,
#dashboard main .main-buttons svg {
  width: 18px;
  height: 18px;
}
#dashboard main .main-buttons .button {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
#dashboard main .main-buttons #show-key:hover svg path {
  fill: currentColor;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
#dashboard main .main-buttons #delete-account svg {
  width: 22px;
  height: 22px;
}
#dashboard main .main-buttons #delete-account:hover {
  background-color: red !important;
  color: white;
}
#dashboard main .main-buttons #delete-account:hover svg path {
  fill: currentColor;
}
#dashboard main #form-wrapper {
  display: flex;
  flex-direction: column;
}
#dashboard main .hidden-form {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2rem !important;
}
#dashboard main .hidden-form .input-field-container {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  gap: 0.6rem;
  align-items: center;
  border: 1px solid #dae0f5;
  border-radius: 50px;
  padding: 1rem;
}
#dashboard main .hidden-form .input-field-container label {
  font-size: 14px;
  font-weight: 600;
}
#dashboard main .hidden-form .input-field-container input {
  border: unset;
  color: #273658;
  font-size: 14px;
}
#dashboard main .hidden-form .input-field-container input:focus {
  outline: none;
}
#dashboard main .bars-charts-wrapper #bars-title {
  display: inline-block;
  margin-top: 10px;
  font-weight: 500;
}
#dashboard main .bars-charts-wrapper .tabs {
  display: inline-block;
  margin-bottom: 20px;
}
#dashboard main .bars-charts-wrapper .bars-wrapper {
  margin-top: 20px;
  width: 100%;
}
#dashboard main .bars-charts-wrapper .bars-wrapper #monthChart {
  outline: 1px solid #eee;
  padding: 5%;
  border-radius: 30px;
  margin-top: 30px;
}
#dashboard main .bars-charts-wrapper .bars-wrapper #monthChartSigns {
  outline: 1px solid #eee;
  display: none;
  border-radius: 30px;
  margin-top: 30px;
}
#dashboard main .bars-charts-wrapper .switch-button {
  background: white;
  border-radius: 50px;
  border: 1px solid rgba(252, 212, 3, 0.5);
  overflow: hidden;
  width: 180px;
  font-weight: bold;
  text-align: center;
  font-size: 14px;
  color: #fcd403;
  position: relative;
  padding-right: 110px;
}
#dashboard main .bars-charts-wrapper .switch-button:before {
  content: "Signs";
  position: absolute;
  color: #273658;
  top: 0;
  bottom: 0;
  right: 0;
  width: 95px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  pointer-events: none;
}
#dashboard main .bars-charts-wrapper .switch-button-selected {
  color: #273658;
}
#dashboard main .bars-charts-wrapper .switch-button-selected:before {
  color: #fcd403;
}
#dashboard main .bars-charts-wrapper .switch-button-checkbox {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 2;
}
#dashboard main .bars-charts-wrapper .switch-button-checkbox:checked + .switch-button-label:before {
  transform: translateX(85px);
  transition: transform 300ms linear;
}
#dashboard main .bars-charts-wrapper .switch-button-checkbox + .switch-button-label {
  position: relative;
  padding: 15px 0;
  width: 95px;
  display: block;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  pointer-events: none;
}
#dashboard main .bars-charts-wrapper .switch-button-checkbox + .switch-button-label:before {
  content: "";
  background: #273658;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 30px;
  transform: translateX(0);
  transition: transform 300ms;
}
#dashboard main .bars-charts-wrapper .switch-button-checkbox + .switch-button-label .switch-button-label-span {
  position: relative;
}
#dashboard .marketing {
  width: 100%;
}
#dashboard .aside-right {
  width: calc(17.5% - 2rem);
}
#dashboard .aside-right .points,
#dashboard .aside-right .pie-wrapper {
  margin-top: 30px;
  height: -moz-fit-content;
  height: fit-content;
  box-shadow: 0px 4px 30px 0px rgb(199, 207, 226);
  border-radius: 30px;
  width: 100%;
}
#dashboard .aside-right .points {
  padding: 2rem 2rem;
}
#dashboard .aside-right .points .divider {
  width: 100%;
}
#dashboard .aside-right .pie-wrapper {
  text-align: center;
  padding: 2rem 1rem;
}
#dashboard .aside-right .pie-wrapper .head {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
#dashboard .aside-right .container {
  display: flex;
  flex-direction: column;
}
#dashboard .aside-right .container .head {
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
}
#dashboard .aside-right .container .head img {
  margin-right: 10px;
  width: 14px;
  height: 14px;
}
#dashboard .aside-right .container .stat {
  font-weight: 700;
  font-size: 20px;
}
#dashboard .aside-right .container img {
  width: 57px;
  height: 57px;
}
#dashboard .aside-right .container .stats-wrapper {
  margin-top: 20px;
}
#dashboard .aside-right .divider {
  width: 30%;
  margin: 1rem auto;
}
#dashboard .aside-right-marketing {
  display: flex;
  align-items: center;
}
#dashboard .aside-right-marketing .pie-wrapper {
  margin-top: 0px;
}

#campaigns {
  box-sizing: border-box;
}
#campaigns .campaign-container h3 {
  text-align: center;
}
#campaigns .campaign-container .campaign-grid {
  border: 1px solid #dae0f5;
  border-radius: 20px;
  box-sizing: border-box;
  display: grid;
  font-size: 14px;
  grid-template-columns: repeat(9, 1fr);
  margin-top: 20px;
  padding: 10px 0;
  margin-bottom: 1.5rem;
}
#campaigns .campaign-container .campaign-grid div {
  box-sizing: border-box;
  text-align: center;
  padding: 5px 0;
}
#campaigns .campaign-container .campaign-grid div.grid-head {
  font-weight: 700;
}
#campaigns .campaign-container .campaign-grid div.info-wrapper {
  display: flex;
  gap: 6px;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin-left: 17px;
  position: relative;
}
#campaigns .campaign-container .campaign-grid div.info-wrapper img {
  width: 17px;
  height: 17px;
  cursor: pointer;
}
#campaigns .campaign-container .campaign-grid div.info-wrapper .info {
  opacity: 0;
  position: absolute;
  background-color: #273658;
  color: white;
  z-index: 1;
  border-radius: 10px;
  padding: 0.5rem;
  width: 270px;
  text-align: center;
  top: -65px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}

#edit-camera {
  padding-bottom: 2rem;
  flex: unset;
}
#edit-camera .edit-camera-wrapper {
  display: flex;
}
#edit-camera .edit-camera-wrapper #edit-camera-form {
  width: 30%;
}
#edit-camera .edit-camera-wrapper #edit-camera-form h1 {
  margin-bottom: 50px;
}
#edit-camera .edit-camera-wrapper #edit-camera-form .input-container input {
  padding: 10px;
  border-radius: 30px;
  border: 1px solid #dae0f5;
  margin: 10px;
  width: 80%;
}
#edit-camera .edit-camera-wrapper #edit-camera-form #camera_name {
  background: url(../images/camera-web.svg) no-repeat scroll 12px 14px;
  padding-left: 2.25rem;
}
#edit-camera .edit-camera-wrapper #edit-camera-form #url {
  background: url(../images/link.svg) no-repeat scroll 10px 14px;
  padding-left: 2.25rem;
}
#edit-camera .edit-camera-wrapper #edit-camera-form #address {
  background: url(../images/map.svg) no-repeat scroll 10px 14px;
  padding-left: 2.25rem;
}
#edit-camera .edit-camera-wrapper #edit-camera-form .camera-submit * {
  padding: 15px 25px;
  font-size: 14px;
  margin: 10px;
  border-radius: 30px;
  color: #273658;
  border: 1px solid #fcd403;
  font-weight: 600;
}
#edit-camera .edit-camera-wrapper #edit-camera-form .camera-submit input {
  background-color: #fcd403;
}
#edit-camera .edit-camera-wrapper #edit-camera-form .camera-submit input:hover {
  background-color: #273658;
  border-color: #273658;
  color: #fcd403;
}
#edit-camera .edit-camera-wrapper #edit-camera-form .camera-submit button {
  background-color: transparent;
}
#edit-camera .edit-camera-wrapper #edit-camera-form .camera-submit button:hover {
  background-color: #273658;
  border-color: #273658;
  color: #fcd403;
}
#edit-camera .edit-camera-wrapper .edit-camera-map-wrapper {
  width: 70%;
  padding: 15px;
  border-radius: 30px;
  border: 1px solid #dae0f5;
}
#edit-camera .edit-camera-wrapper .edit-camera-map-wrapper #map {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  z-index: 0;
}

#my-cameras {
  flex: unset;
}
#my-cameras .table-wrapper {
  overflow-x: auto;
}
#my-cameras table.my-cameras {
  width: 100%;
  min-width: 825px;
}
#my-cameras table.my-cameras thead th {
  padding: 15px 25px;
}
#my-cameras table.my-cameras thead th:last-child {
  padding-left: 40px;
}
#my-cameras table.my-cameras tbody {
  box-shadow: 0 0 0 1px #e9f0ff;
  border-radius: 30px;
}
#my-cameras table.my-cameras tbody tr {
  border-bottom: 1px solid #e9f0ff;
}
#my-cameras table.my-cameras tbody tr:last-child {
  border-bottom: none;
}
#my-cameras table.my-cameras tbody .td-content-circle {
  display: flex;
  justify-content: center;
  align-items: center;
}
#my-cameras table.my-cameras tbody .td-content-circle .circle {
  background-color: #fcd403;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
}
#my-cameras table.my-cameras tbody .td-content {
  padding: 1rem 1.5rem;
}
#my-cameras table.my-cameras tbody .td-content .edit-btn {
  padding: 0.5rem 1rem;
  border-radius: 30px;
  border: 1px solid #e9f0ff;
  color: #83878f;
  text-decoration: none;
}

#history .history-filters .form-wrapper #search-form {
  display: flex;
}
#history .history-filters .form-wrapper #search-form p {
  padding-bottom: 30px;
  padding-top: 10px;
  font-size: 14px;
  font-weight: 400;
  color: #83878f;
}
#history .history-filters .form-wrapper #search-form .filter-column {
  width: 30%;
  margin-right: 50px;
}
#history .history-filters .form-wrapper #search-form .filter-column > label {
  margin-bottom: 10px;
  margin-left: 30px;
  color: #273658;
  font-weight: 700;
}
#history .history-filters .form-wrapper #search-form .filter-column .multiselect-native-select {
  display: flex;
}
#history .history-filters .form-wrapper #search-form .filter-column .multiselect-native-select .btn-group {
  width: 100%;
}
#history .history-filters .form-wrapper #search-form .filter-column > input,
#history .history-filters .form-wrapper #search-form .filter-column .dropdown-toggle {
  margin-bottom: 20px;
  padding: 0.75rem 1rem;
  padding-left: 30px;
  border-radius: 30px;
  border: 1px solid #dae0f5;
  color: #83878f;
  display: flex;
}
#history .history-filters .form-wrapper #search-form .filter-column > input span,
#history .history-filters .form-wrapper #search-form .filter-column .dropdown-toggle span {
  width: 100%;
  text-align: left;
}
#history .history-filters .form-wrapper #submit-btn {
  background-color: #fcd403;
  padding: 16px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  border: none;
}
#history .history-filters .form-wrapper #submit-btn:hover {
  background-color: #273658;
  border-color: #273658;
  color: #fcd403;
}
#history .history-filters .history-map-wrapper {
  width: 100%;
  border: 1px solid #dae0f5;
  padding: 15px;
  border-radius: 30px;
}
#history .history-filters .history-map-wrapper #map {
  height: 100%;
  border-radius: 24px !important;
  z-index: 0;
}
#history #history-section {
  display: flex;
}
#history #history-section #content-wrapper {
  width: 100%;
  display: flex;
}
#history #history-section #content-wrapper h1 {
  font-size: 30px;
  font-weight: 500;
}
#history #history-section #content-wrapper p {
  font-size: 14px;
  font-weight: 400;
  color: #83878f;
}
#history #history-section .tab-buttons-wrapper {
  width: 269px;
  margin-right: 50px;
  margin-top: 30px;
}
#history #history-section .tab-buttons-wrapper .switch-button {
  background: white;
  border-radius: 50px;
  border: 1px solid rgba(252, 212, 3, 0.5);
  overflow: hidden;
  width: 180px;
  font-weight: bold;
  text-align: center;
  font-size: 14px;
  color: #fcd403;
  position: relative;
  padding-right: 110px;
}
#history #history-section .tab-buttons-wrapper .switch-button:before {
  content: "Diagram";
  position: absolute;
  color: #273658;
  top: 0;
  bottom: 0;
  right: 0;
  width: 95px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  pointer-events: none;
}
#history #history-section .tab-buttons-wrapper .switch-button-selected {
  color: #273658;
}
#history #history-section .tab-buttons-wrapper .switch-button-selected:before {
  color: #fcd403;
}
#history #history-section .tab-buttons-wrapper .switch-button-checkbox {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 2;
}
#history #history-section .tab-buttons-wrapper .switch-button-checkbox:checked + .switch-button-label:before {
  transform: translateX(85px);
  transition: transform 300ms linear;
}
#history #history-section .tab-buttons-wrapper .switch-button-checkbox + .switch-button-label {
  position: relative;
  padding: 15px 0;
  width: 95px;
  display: block;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  pointer-events: none;
}
#history #history-section .tab-buttons-wrapper .switch-button-checkbox + .switch-button-label:before {
  content: "";
  background: #273658;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 30px;
  transform: translateX(0);
  transition: transform 300ms;
}
#history #history-section .tab-buttons-wrapper .switch-button-checkbox + .switch-button-label .switch-button-label-span {
  position: relative;
}
#history #history-section #diagram {
  justify-content: space-around;
  gap: 1.5rem;
}
#history #history-section #diagram .container {
  margin: 0;
  box-shadow: 0px 4px 30px 0px rgb(199, 207, 226);
  border-radius: 30px;
  padding: 0;
  padding-top: 20px;
  max-width: 250px;
  width: calc(33.3% - 1rem);
}
#history #history-section #diagram .container .head {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #273658;
}
#history #history-section #diagram .container .stat {
  padding: 20px;
}
#history #history-section #diagram .container .stat .numbers-wrapper .number {
  display: flex;
  justify-content: space-between;
  padding: 5px;
}
#history #history-section #diagram .container .stat .numbers-wrapper .number p {
  color: #273658;
  font-weight: 400;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#history #history-section #diagram .container .stat .numbers-wrapper .number p span {
  display: flex;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  margin-right: 5px;
}
#history #history-section #diagram .container .stat .numbers-wrapper .number p .total_color {
  background-color: #fcd403;
}
#history #history-section #diagram .container .stat .numbers-wrapper .number p .unique_color {
  background-color: #273658;
}
#history #history-section #diagram .container .stat .numbers-wrapper .number span {
  color: #273658;
  font-weight: 700;
}
#history #table .history-table-container {
  width: 100%;
  overflow-x: auto;
}
#history #table table {
  min-width: 1350px;
}
#history #table.small table {
  min-width: 440px;
}
#history #table.small table thead tr {
  padding: 1rem 0rem;
}
#history #table.small table thead tr th {
  padding: 0.5rem 0rem 1.25rem;
}
#history #table.small table thead tr th:last-child {
  text-align: end;
  padding-right: 13px;
}
#history #table.small table thead tr th:nth-child(2) {
  text-align: center;
}
#history #table.small table tbody tr td {
  padding-bottom: 0.5rem;
}
#history #table.small table tbody tr td .scale {
  padding: 0.5rem 0.75rem;
  margin: 0;
}
#history #table.small table tbody tr td:last-child {
  text-align: end;
}
#history #table.small table tbody tr td:nth-child(2) {
  text-align: center;
}

#faq .title {
  text-align: center;
  margin-bottom: 2.5rem;
}
#faq ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
#faq ul li.step {
  display: flex;
  flex-direction: column;
  padding: 1rem 2rem;
  border-radius: 30px;
  box-shadow: 0px 4px 30px 0px rgb(199, 207, 226);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}
#faq ul li.step .step-wrapper {
  display: flex;
  width: 100%;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
#faq ul li.step .step-wrapper .step-number {
  font-size: 2.5rem;
  font-weight: 500;
  color: #fcd403;
}
#faq ul li.step .step-wrapper h3 {
  margin-bottom: 0;
  font-weight: 500;
  font-size: 20px;
}
#faq ul li.step .step-wrapper img {
  padding: 1rem;
}
#faq ul li.step .step-info {
  margin: 0;
  height: 0px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #273658;
}
#faq ul li.step .step-info a {
  color: #273658;
  font-style: italic;
}
#faq ul li.step .step-info a:hover {
  color: #fcd403;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.main-container-marketing .filters-container {
  display: flex;
  flex-flow: row;
  align-items: end;
}
.main-container-marketing .filters-container .filter {
  display: flex;
  flex-flow: column;
  padding: 10px;
  width: 400px;
  text-align: left;
}
.main-container-marketing .filters-container .filter label {
  margin-left: 30px;
}
.main-container-marketing .filters-container .filter > input,
.main-container-marketing .filters-container .filter .dropdown-toggle {
  padding: 15px 20px;
  margin: 10px;
  border-radius: 30px;
  border: 1px solid #dae0f5;
}
.main-container-marketing .filters-container .filter .btn-group {
  width: 100%;
}
.main-container-marketing .filters-container .filter .btn-group .dropdown-toggle {
  text-align: left !important;
}
.main-container-marketing .filters-container .submit-button {
  padding: 10px;
  margin: 10px;
}
.main-container-marketing .filters-container .submit-button .button {
  border-color: #fcd403;
  background-color: #fcd403;
  padding: 15px 25px;
}
.main-container-marketing .filters-container .submit-button .button:hover {
  background-color: #273658;
  border-color: #273658;
  color: #fcd403;
}
.main-container-marketing .history-map-wrapper {
  border-radius: 30px;
  border: 1px solid #dae0f5;
}
.main-container-marketing .history-map-wrapper #map {
  border-radius: 22px;
}
.main-container-marketing .grand-total-container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 30px 0px;
  background-color: white;
  border-radius: 30px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.main-container-marketing .grand-total-container p {
  color: #83878f;
}
.main-container-marketing .grand-total-container #grand-total-records,
.main-container-marketing .grand-total-container #grand-total-unique-records {
  color: #273658;
  font-weight: 700;
}
.main-container-marketing .grand-total-container #csv-submit {
  padding: 10px 20px;
  border: 1px solid #fcd403;
  background-color: transparent;
  border-radius: 30px;
  color: #273658;
}
.main-container-marketing .grand-total-container #csv-submit:hover {
  background-color: #273658;
  color: #fcd403;
  border: none;
}
.main-container-marketing table {
  height: 600px;
}
.main-container-marketing thead,
.main-container-marketing tbody {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.main-container-marketing thead .active-row,
.main-container-marketing tbody .active-row {
  background-color: #273658;
  color: #fcd403;
}
.main-container-marketing thead tr td,
.main-container-marketing thead tr th,
.main-container-marketing tbody tr td,
.main-container-marketing tbody tr th {
  min-width: 125px;
}
.main-container-marketing thead tr td,
.main-container-marketing tbody tr td {
  padding-left: 10px;
  padding-right: 10px;
}
.main-container-marketing thead tr td:first-child,
.main-container-marketing tbody tr td:first-child {
  border-top-left-radius: 30px;
}
.main-container-marketing thead tr td:last-child,
.main-container-marketing tbody tr td:last-child {
  border-top-right-radius: 30px;
}
.main-container-marketing thead tr td:first-child,
.main-container-marketing tbody tr td:first-child {
  border-bottom-left-radius: 30px;
}
.main-container-marketing thead tr td:last-child,
.main-container-marketing tbody tr td:last-child {
  border-bottom-right-radius: 30px;
}
.main-container-marketing tbody {
  height: 460px;
  overflow: auto;
  border: 1px solid #dae0f5;
  border-radius: 14px;
  overflow-x: hidden;
}
.main-container-marketing tbody tr {
  padding: 10px 0px;
}
.main-container-marketing tbody tr:hover {
  background-color: #fcd403;
  color: #273658;
}
.main-container-marketing tbody tr td {
  padding: 5px;
}
.main-container-marketing tbody .total {
  padding-bottom: 10px;
  border-top: 1px solid #dae0f5;
}
.main-container-marketing tbody .total td {
  font-size: 18px;
}
.main-container-marketing tbody .total:hover {
  background-color: transparent;
}
.main-container-marketing #table-plates tbody tr:hover {
  background-color: transparent;
}
.main-container-marketing #table-days tbody,
.main-container-marketing #table-plates tbody {
  height: 560px;
}
.main-container-marketing .camera-table,
.main-container-marketing .camera-table-regions {
  overflow-x: hidden;
}

#sub_accounts .link-tab {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
#sub_accounts table {
  width: 100%;
  margin-top: 30px;
}
#sub_accounts table th {
  padding: 15px 25px;
}
#sub_accounts table tbody {
  box-shadow: 0 0 0 1px #e9f0ff;
  border-radius: 30px;
}
#sub_accounts table tbody tr {
  border-bottom: 1px solid #e9f0ff;
}
#sub_accounts table tbody tr:last-child {
  border-bottom: none;
}
#sub_accounts table tbody .td-content-circle {
  display: flex;
  justify-content: center;
  align-items: center;
}
#sub_accounts table tbody td {
  padding: 15px 25px;
}

#not-found {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 50px;
  justify-content: center;
}
#not-found div {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
#not-found div img {
  width: 240px;
}
#not-found div p {
  color: #273658;
  font-size: 24px;
  font-weight: 500;
  margin: 0;
  padding: 0;
}
#not-found a {
  background: #fcd403;
  border-radius: 100px;
  color: #273658;
  display: flex;
  gap: 5px;
  font-size: 14px;
  font-weight: 600;
  padding: 15px 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
#not-found a img {
  width: 12px;
}
#not-found a:hover {
  background: #273658;
  color: #fcd403;
}
#not-found a:hover img {
  filter: brightness(0) saturate(100%) invert(72%) sepia(92%) saturate(1366%) hue-rotate(3deg) brightness(110%) contrast(98%);
}

#notification .msg {
  text-align: center;
  border-radius: 20px;
  padding: 1rem 0rem;
}
#notification .success {
  background: lightgreen;
}
#notification .failed {
  background: coral;
}
#notification form {
  margin: 0 auto;
  width: 800px;
}
#notification form .input {
  display: flex;
  flex-direction: column;
  margin-top: 1.25rem;
}
#notification form .input label {
  font-weight: 700;
  color: #273658;
  margin-bottom: 5px;
}
#notification form .input input,
#notification form .input textarea {
  font-family: "Rubik", sans-serif;
  font-size: 13px;
  color: #273658;
  padding: 0.75rem 1rem;
  border: 1px solid #273658;
  border-radius: 20px;
  box-sizing: border-box;
}
#notification form .input input:focus,
#notification form .input textarea:focus {
  outline: none;
  border: 1px solid #fcd403;
  padding-left: 1rem;
}
#notification form .input textarea {
  height: 100px !important;
  resize: none;
}
#notification form .input input[type=datetime-local] {
  padding: 10.5px 1rem;
}
#notification form .input.multi-select .multiselect-native-select select#user_id {
  left: 5rem;
}
#notification form .input.multi-select .multiselect-native-select .btn-group .multiselect-container input[type=search] {
  padding: 0.75rem 2rem;
  border: unset;
  box-shadow: unset;
}
#notification form .input.multi-select .multiselect-native-select .btn-group .multiselect-container button input {
  font-size: 1rem;
  padding: unset;
  border-radius: unset;
}
#notification form .input.multi-select .multiselect-native-select .btn-group > button {
  border: 1px solid #273658;
  box-shadow: unset;
  transition: unset;
}
#notification form .input.multi-select .multiselect-native-select .btn-group > button:focus {
  border: 1px solid #fcd403;
}
#notification form .input.checkbox .container {
  display: block;
  position: relative;
  cursor: pointer;
  padding: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
#notification form .input.checkbox .container input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  cursor: pointer;
  transform: translateY(-1.5px);
}
#notification form .input.checkbox .container input:checked ~ .checkmark {
  background-color: #273658;
}
#notification form .input.checkbox .container input:checked ~ .checkmark:after {
  display: block;
}
#notification form .input.checkbox .container .checkmark {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 2px;
  left: 7.5rem;
  border: 2px solid #273658;
  border-radius: 50px;
  box-sizing: border-box;
}
#notification form .input.checkbox .container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
#notification form .input.checkbox .container .checkmark::after {
  left: 5px;
  top: 1px;
  width: 0.3rem;
  height: 0.75rem;
  border: solid #fcd403;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
#notification form button[type=submit] {
  font-family: "Rubik", sans-serif;
  width: 100%;
  height: 40px;
  background: #fcd403;
  font-size: 0.9rem;
  font-weight: 600;
  color: #273658;
  border: none;
  border-radius: 40px;
  margin-top: 1.25rem;
  cursor: pointer;
}
#notification form button[type=submit]:hover {
  background: #273658;
  color: #fcd403;
}
#notification form select#campaign_id {
  border-radius: 20px;
  border: 1px solid #273658;
  padding: 0.625rem 1rem;
}

#push_history .push_preview {
  color: #273658;
  border-radius: 40px;
  box-shadow: 0px 4px 30px 0px rgb(199, 207, 226);
  padding: 2rem 2.5rem;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  margin-bottom: 2rem;
  width: 720px;
  cursor: pointer;
}
#push_history .push_preview .push_data h4 {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-weight: 600;
  width: 570px;
}
#push_history .push_preview .push_data .scheduled {
  color: #fcd403;
}
#push_history .push_preview .push_data .released {
  color: #83878f;
}
#push_history .push_preview img {
  width: 4rem;
  height: 4rem;
  border: 1px solid #273658;
  border-radius: 15px;
}
#push_history .heading {
  margin: 0 auto;
  margin-bottom: 1.25rem;
  width: 920px;
}
#push_history .heading img {
  height: 2rem;
  transform: rotate(270deg);
  float: left;
  margin-left: 2rem;
}
#push_history .heading h4 {
  text-align: center;
}
#push_history .push_wrapper {
  display: flex;
  gap: 2rem;
  box-shadow: 0px 4px 30px 0px rgb(199, 207, 226);
  border-radius: 50px;
  padding: 3rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  color: #273658;
}
#push_history .push_wrapper .input {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}
#push_history .push_wrapper .input label {
  font-weight: 600;
  padding-left: 1rem;
}
#push_history .push_wrapper .input input {
  border-radius: 20px;
  padding: 0.5rem 1rem;
  outline: none;
  border: 1px solid #273658;
  width: 400px;
  font-size: 0.9rem;
}
#push_history .push_wrapper .dates_wrapper {
  display: flex;
  gap: 1rem;
}
#push_history .push_wrapper .dates_wrapper input {
  width: calc(200px - 0.5rem);
}
#push_history .push_wrapper .content_wrapper {
  display: flex;
  gap: 1rem;
}
#push_history .push_wrapper .content_wrapper .textarea {
  padding: 0.75rem;
  border: 1px solid #273658;
  border-radius: 20px;
  outline: none;
  width: calc(400px - 8.5rem);
  height: 7.5rem;
}
#push_history .push_wrapper .content_wrapper .textarea textarea {
  width: 100%;
  height: 100%;
  overflow: auto;
  padding: unset;
  border: unset;
}
#push_history .push_wrapper .content_wrapper .textarea textarea:focus {
  outline: none;
}
#push_history .push_wrapper img {
  width: 7.5rem;
  height: 7.5rem;
  border: 1px solid #273658;
  border-radius: 30px;
}

.create-campaign form {
  display: flex;
  flex-direction: column;
}
.create-campaign form label {
  color: #273658;
  font-weight: 700;
  margin: 1.25rem 0 0.25rem;
}
.create-campaign form input {
  border-color: #273658;
  border-style: solid;
  border-width: 1px;
  color: #273658;
  outline: none;
  padding: 0.75rem 1rem;
  border-radius: 20px;
}
.create-campaign form input:active, .create-campaign form input:focus {
  border-color: #fcd403;
}
.create-campaign form input[type=submit] {
  background-color: #273658;
  border: none;
  color: white;
  font-weight: 500;
  margin-top: 1.5rem;
}
.create-campaign form input[type=submit]:hover {
  background-color: #fcd403;
  color: #273658;
}

.campaigns-admin-view table {
  margin-top: 2rem;
  width: 100%;
}
.campaigns-admin-view table tr td {
  padding: 0.5rem;
  text-align: center;
}
.campaigns-admin-view table thead {
  background-color: #273658;
  color: white;
}
.campaigns-admin-view table thead tr td {
  border-right: 1px solid white;
}
.campaigns-admin-view table tbody tr:nth-child(even) {
  background-color: #e9f0ff;
}

@media screen and (min-width: 1025px) {
  #menu-overlay {
    display: none;
  }
  #mobile-menu {
    display: none;
  }
  .mobile {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  section {
    padding: 3rem 2.5rem calc(116px + 3rem);
  }
  #main-menu {
    display: none;
  }
  header#nav {
    position: fixed;
    bottom: 0;
    padding: 1rem;
    display: block;
    z-index: 1;
    background-color: white;
    box-shadow: 0px -4px 30px 0px #c7cfe2;
  }
  header#nav .logo {
    display: none;
  }
  header#nav #leave-buttons {
    display: none;
  }
  header#nav #mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
  }
  header#nav #mobile-menu ul li a {
    color: #273658;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    cursor: pointer;
  }
  header#nav #mobile-menu ul li a .img-wrapper {
    width: 55px;
    height: 55px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header#nav #mobile-menu ul li a img {
    width: 33px;
    height: 33px;
  }
  header#nav #mobile-menu ul.sample-mobile-menu {
    justify-content: flex-end;
  }
  /* The Overlay (background) */
  #menu-overlay {
    margin: 0rem 0.5rem 0.5rem;
    height: calc(100% - 116px);
    width: 0;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    background-color: white;
    overflow-x: hidden;
    /* Disable horizontal scroll */
    transition: 0.2s;
    /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
    /* Position the content inside the overlay */
  }
  #menu-overlay .overlay-content {
    /* The navigation links inside the overlay */
  }
  #menu-overlay .overlay-content a {
    color: #273658;
    font-weight: 500;
    text-decoration: none;
    padding: 1rem 1rem;
    font-size: 20px;
    display: block;
    font-weight: 500;
    transition: 0.2s;
    /* Transition effects on hover (color) */
  }
  #menu-overlay .overlay-content a:focus {
    color: #fcd403;
  }
  #menu-overlay .overlay-content .divider {
    width: calc(100% - 1.2rem);
    margin: 0 auto;
  }
  #menu-overlay .overlay-content .document-links {
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #menu-overlay .overlay-content .document-links a {
    font-size: 14px;
    font-weight: 700;
  }
  #download #carousel-container {
    background-size: unset;
    height: -moz-fit-content;
    height: fit-content;
  }
  #download #carousel-container #slideshow-container {
    margin: 8rem auto;
  }
  #dashboard {
    gap: 2rem;
    flex-direction: column;
    align-items: center;
  }
  #dashboard .aside-left {
    padding: 1rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  #dashboard .aside-left .container {
    gap: 0.5rem;
  }
  #dashboard .aside-left .divider {
    width: unset;
    margin: unset;
    border-right: 1px solid #e9f0ff;
  }
  #dashboard main {
    width: 100%;
  }
  #dashboard main h1 {
    display: none;
  }
  #dashboard main .main-buttons {
    width: -moz-fit-content;
    width: fit-content;
    margin: 1rem auto 2rem;
  }
  #dashboard main #form-wrapper .hidden-form {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
  #dashboard main .bars-charts-wrapper #bars-title {
    margin-top: 15px;
  }
  #dashboard .aside-right {
    width: 100%;
    display: flex;
    gap: 2rem;
    justify-content: center;
  }
  #dashboard .aside-right .points {
    padding: 1rem;
    width: 40%;
  }
  #dashboard .aside-right .pie-wrapper {
    width: unset;
  }
  #campaigns {
    width: 100vw;
  }
  #campaigns .campaign-container .campaign-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  #campaigns .campaign-container .campaign-grid div.info-wrapper .info {
    width: 150px;
    top: -105px;
  }
  #notification form {
    width: 90vw !important;
  }
  footer {
    display: none;
  }
}
@media screen and (max-width: 720px) {
  section {
    padding-top: 2rem;
  }
  #download {
    flex-direction: column-reverse;
    align-items: center;
  }
  #download .info {
    width: 100%;
    padding-bottom: calc(116px + 3rem);
  }
  #download .info h1 {
    margin: 0 auto;
    text-align: center;
    font-weight: 700;
  }
  #download .info p.subtitle {
    margin: 1rem auto 0rem;
  }
  #download .info ul {
    margin-top: 1.5rem;
    padding-left: 3.5rem;
  }
  #download .info .download-p {
    width: -moz-fit-content;
    width: fit-content;
    margin: 44rem auto 2rem !important;
  }
  #download .info .download-links {
    justify-content: space-between;
  }
  #download #carousel-container {
    width: 100%;
    margin-top: -62rem;
  }
  #download #carousel-container #slideshow-container {
    margin: 2.5rem auto;
  }
  #dashboard main .main-buttons {
    justify-content: center;
    align-items: center;
  }
  #edit-camera .edit-camera-wrapper {
    flex-direction: column;
    gap: 2rem;
  }
  #edit-camera .edit-camera-wrapper #edit-camera-form {
    width: 100%;
    text-align: center;
  }
  #edit-camera .edit-camera-wrapper #edit-camera-form h1 {
    margin-bottom: 2rem;
  }
  #edit-camera .edit-camera-wrapper .edit-camera-map-wrapper {
    width: 100%;
  }
  #edit-camera .edit-camera-wrapper .edit-camera-map-wrapper #map {
    height: 400px;
  }
  #history .history-filters {
    flex-direction: column;
    align-items: center;
  }
  #history .history-filters h1 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 2rem;
  }
  #history .history-filters .form-wrapper {
    width: 100%;
  }
  #history .history-filters .form-wrapper #search-form .filter-column {
    margin: 0;
    width: 100%;
  }
  #history .history-filters .form-wrapper #search-form .filter-column > input {
    width: 100%;
  }
  #history .history-filters .form-wrapper #search-form .filter-column span .btn-group {
    width: 100%;
    max-width: unset;
  }
  #history .history-filters .form-wrapper #submit-btn {
    width: 200px;
    margin: 1.5rem auto;
    display: block;
  }
  #history .history-filters .history-map-wrapper {
    width: 100%;
    height: 400px;
  }
}
@media screen and (max-width: 710px) {
  #download #carousel-container {
    margin-top: -66rem;
  }
}
@media screen and (max-width: 480px) {
  section {
    padding: 2rem 1rem calc(91px + 2rem);
  }
  header#nav #mobile-menu ul li a {
    font-size: 11px;
  }
  header#nav #mobile-menu ul li a .img-wrapper {
    width: 38px;
    height: 37px;
  }
  header#nav #mobile-menu ul li a .img-wrapper img {
    width: 17px;
    height: 21px;
  }
  #download .info ul {
    padding: 0;
  }
  #download .info .download-links {
    flex-direction: column;
    align-items: center;
  }
  #download .info .download-links img {
    max-width: unset;
    height: 48px;
  }
  #download .info .download-p {
    font-size: 1rem;
    color: #fcd403;
  }
  #download #carousel-container {
    margin-top: -78rem;
  }
  #download #carousel-container #slideshow-container {
    width: 270px;
    padding: 0.7rem;
  }
  #download #carousel-container #slideshow-container .prev,
  #download #carousel-container #slideshow-container .next {
    width: 35px;
    height: 35px;
    margin-top: -32px;
    padding: 6px;
  }
  #download #carousel-container #slideshow-container .next {
    right: -2.5rem;
  }
  #download #carousel-container #slideshow-container .prev {
    left: -2.5rem;
    padding-right: 8px;
  }
  #dashboard .aside-left .container {
    padding: 0 0.25rem;
  }
  #dashboard main #form-wrapper #pass-form {
    flex-direction: column;
  }
  #dashboard main #upi-wrapper {
    flex-direction: row;
  }
  #dashboard .aside-right {
    gap: 1rem;
  }
  #dashboard .aside-right .points {
    width: unset;
    padding: 0;
  }
  #dashboard .aside-right .pie-wrapper {
    padding: 0;
    width: 56%;
  }
  #dashboard .aside-right .pie-wrapper .container {
    padding: 1rem;
  }
  #dashboard .aside-right .container {
    padding: 1rem 1.5rem;
  }
  #edit-camera .edit-camera-wrapper .edit-camera-map-wrapper #map {
    height: 300px;
  }
  #history .history-filters .form-wrapper #submit-btn {
    width: 100%;
  }
  #history #history-section #content-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  #history #history-section #diagram {
    flex-direction: column;
    align-items: center;
  }
  #history #history-section #diagram .container {
    width: 250px;
  }
  #faq ul li.step .step-info {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 360px) {
  #dashboard {
    gap: 1rem;
  }
  #dashboard .aside-right .divider {
    margin: 0.5rem auto;
  }
  #history .history-filters .history-map-wrapper {
    height: 300px;
  }
}/*# sourceMappingURL=default.css.map */