:root {
  --light-blue: #00bfff;
  --blue: #007fff;
  --dark-blue: #0052a3;
  --footer-color: white;
  --checkbox-color: #43c414;
}

#header {
  background: var(--main-blue);
  border-radius: 0;
  margin-bottom: 30px;
  box-shadow: 0px 5px 5px silver;
}

#imbarcazione-dropdown,
#viaggio-dropdown,
#viaggiatore-dropdown {
  margin-top: 75px !important;
  z-index: 1100;
}

/* checkbox */
.checkbox-wrapper-12 {
  position: relative;
}

.checkbox-wrapper-12>svg {
  position: absolute;
  top: -130%;
  left: -170%;
  width: 110px;
  pointer-events: none;
}

.checkbox-wrapper-12 * {
  box-sizing: border-box;
}

.checkbox-wrapper-12 input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  margin: 0;
}

.checkbox-wrapper-12 input[type="checkbox"]:focus {
  outline: 0;
}

.checkbox-wrapper-12 .cbx {
  width: 24px;
  height: 24px;
  top: calc(100px - 12px);
  left: calc(100px - 12px);
}

.checkbox-wrapper-12 .cbx input {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border: 2px solid #bfbfc0;
  border-radius: 50%;
}

.checkbox-wrapper-12 .cbx label {
  width: 24px;
  height: 24px;
  background: none;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  transform: trasnlate3d(0, 0, 0);
  pointer-events: none;
}

.checkbox-wrapper-12 .cbx svg {
  position: absolute;
  top: 5px;
  left: 4px;
  z-index: 1;
  pointer-events: none;
}

.checkbox-wrapper-12 .cbx svg path {
  stroke: #fff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 19;
  stroke-dashoffset: 19;
  transition: stroke-dashoffset 0.3s ease;
  transition-delay: 0.2s;
}

.checkbox-wrapper-12 .cbx input:checked+label {
  animation: splash-12 0.6s ease forwards;
}

.checkbox-wrapper-12 .cbx input:checked+label+svg path {
  stroke-dashoffset: 0;
}

@-moz-keyframes splash-12 {
  40% {
    background: var(--checkbox-color);
    box-shadow: 0 -18px 0 -8px var(--checkbox-color),
      16px -8px 0 -8px var(--checkbox-color),
      16px 8px 0 -8px var(--checkbox-color), 0 18px 0 -8px var(--checkbox-color),
      -16px 8px 0 -8px var(--checkbox-color),
      -16px -8px 0 -8px var(--checkbox-color);
  }

  100% {
    background: var(--checkbox-color);
    box-shadow: 0 -36px 0 -10px transparent, 32px -16px 0 -10px transparent,
      32px 16px 0 -10px transparent, 0 36px 0 -10px transparent,
      -32px 16px 0 -10px transparent, -32px -16px 0 -10px transparent;
  }
}

@-webkit-keyframes splash-12 {
  40% {
    background: var(--checkbox-color);
    box-shadow: 0 -18px 0 -8px var(--checkbox-color),
      16px -8px 0 -8px var(--checkbox-color),
      16px 8px 0 -8px var(--checkbox-color), 0 18px 0 -8px var(--checkbox-color),
      -16px 8px 0 -8px var(--checkbox-color),
      -16px -8px 0 -8px var(--checkbox-color);
  }

  100% {
    background: var(--checkbox-color);
    box-shadow: 0 -36px 0 -10px transparent, 32px -16px 0 -10px transparent,
      32px 16px 0 -10px transparent, 0 36px 0 -10px transparent,
      -32px 16px 0 -10px transparent, -32px -16px 0 -10px transparent;
  }
}

@-o-keyframes splash-12 {
  40% {
    background: var(--checkbox-color);
    box-shadow: 0 -18px 0 -8px var(--checkbox-color),
      16px -8px 0 -8px var(--checkbox-color),
      16px 8px 0 -8px var(--checkbox-color), 0 18px 0 -8px var(--checkbox-color),
      -16px 8px 0 -8px var(--checkbox-color),
      -16px -8px 0 -8px var(--checkbox-color);
  }

  100% {
    background: var(--checkbox-color);
    box-shadow: 0 -36px 0 -10px transparent, 32px -16px 0 -10px transparent,
      32px 16px 0 -10px transparent, 0 36px 0 -10px transparent,
      -32px 16px 0 -10px transparent, -32px -16px 0 -10px transparent;
  }
}

@keyframes splash-12 {
  40% {
    background: var(--checkbox-color);
    box-shadow: 0 -18px 0 -8px var(--checkbox-color),
      16px -8px 0 -8px var(--checkbox-color),
      16px 8px 0 -8px var(--checkbox-color), 0 18px 0 -8px var(--checkbox-color),
      -16px 8px 0 -8px var(--checkbox-color),
      -16px -8px 0 -8px var(--checkbox-color);
  }

  100% {
    background: var(--checkbox-color);
    box-shadow: 0 -36px 0 -10px transparent, 32px -16px 0 -10px transparent,
      32px 16px 0 -10px transparent, 0 36px 0 -10px transparent,
      -32px 16px 0 -10px transparent, -32px -16px 0 -10px transparent;
  }
}

footer {
  background: var(--footer-color);
  padding: 25px;
}

/* subscribe input */
footer .inputGroup {
  min-height: 50px;
  padding: 0 1rem;
  font-size: 15px;
  /* border: 1px solid #5e4dcd;
  border-radius: 6px 0 0 6px; */
  background-color: transparent;
  position: relative;
  width: 400px;
  max-width: 50%;
  margin: 1em 0 1em 0;
  font-family: "Segoe UI", sans-serif;
}

footer .inputGroup input {
  font-size: 100%;
  padding: 0.8em;
  outline: none;
  border: 2px solid rgb(200, 200, 200);
  background-color: transparent;
  border-radius: 20px;
  width: 100%;
}

footer .inputGroup label {
  font-size: 100%;
  position: absolute;
  left: 10px;
  padding: 0.8em;
  margin-left: 0.5em;
  pointer-events: none;
  transition: all 0.3s ease;
  color: rgb(100, 100, 100);
}

footer .inputGroup :is(input:focus, input:valid)~label {
  transform: translateY(-50%) scale(0.9);
  margin: 0em;
  margin-left: 1.3em;
  padding: 0.4em;
  background-color: var(--footer-color);
}

footer .inputGroup :is(input:focus, input:valid) {
  border-color: rgb(132, 132, 195);
}

button.subscribe {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
  font-size: inherit;
  font-family: inherit;

  width: 12rem;
  height: auto;
}

button.subscribe .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 3rem;
  height: 3rem;
  background: #282936;
  border-radius: 1.625rem;
}

button.subscribe .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}

button.subscribe .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 0.625rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}

button.subscribe .circle .icon.arrow::before {
  position: absolute;
  content: "";
  top: -0.29rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg);
}

button.subscribe .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0;
  margin: 0 0 0 1.85rem;
  color: #282936;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
}

button:hover .circle {
  width: 100%;
}

button:hover .circle .icon.arrow {
  background: #fff;
  transform: translate(1rem, 0);
}

button:hover .button-text {
  color: #fff;
}

/* BOOTSTRAP BREAKPOINTS
        X-Small devices (portrait phones, less than 576px)
        No media query for `xs` since this is the default in Bootstrap */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {}

.container {
  padding: 10px 10px;
  margin: 0px;
}

#map {
  height: calc(100vh - 300px);
}

.dropdown ul,
.dropdown button {
  width: 100%;
  margin: 4px 0;
}

/* SELECT 2 FIXERS */
.select2-container--bootstrap-5 .select2-dropdown.select2-dropdown--below {
  z-index: 20000;
}