body,
html {
  height: 100%;
  width: 100%;
}

@media (max-width: 500px) {
  body,
  html {
    overflow-x: hidden;
  }
}

body {
  color: #041022;
  font: normal 125%/1.4 'Ubuntu', 'Open Sans', 'Helvetica Neue', 'Helvetica',
  'Arial', sans-serif;
  letter-spacing: 0;
}

a {
  color: #a3deff;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 0px;
  cursor: pointer;
}

a:hover,
a:active,
a:focus,
a:active:focus {
  color: #a3deff;
  border-color: #a3deff;
  text-decoration: none;
}

.link--selected {
  border-color: #a3deff;
}

.link--no-underline,
.link--map {
  padding: 0;
  border: none;
  color: #a3deff;
}

.link--no-underline:hover,
.link--no-underline:active,
.link--no-underline:focus,
.link--no-underline:active:focus,
.link--map:hover,
.link--map:active,
.link--map:focus,
.link--map:active:focus {
  color: inherit;
}

.link--map:hover,
.link--map:active,
.link--map:focus,
.link--map:active:focus {
  color: white;
}

label {
  font-weight: 300;
  font-size: 13px;
  text-transform: uppercase;
  color: #8a8cad;
  margin-top: 30px;
}

hr {
  border-top: 1px solid #d1d1df;
}

canvas {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.title-main {
  font-size: 35px;
  font-weight: 700;
}

.title-secondary {
  font-size: 25px;
  font-weight: 700;
}

.title-third {
  font-size: 15px;
}

.subtitle {
  font-size: 14px;
  color: #8a8cad;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: -0.35px;
}

@media (max-width: 550px) {
  .title-main {
    font-size: 30px;
  }
  .subtitle {
    font-size: 11px;
  }
}

/*************** Flex *******************/
.flex-horizontal-center {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.flex-vertical-center {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.flex-vertical {
  display: flex;
  flex-direction:column;
}

.flex-row {
  display: flex;
  flex-direction: row !important;
}

.flex-center-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-baseline {
  display: flex !important;
  align-items: baseline !important;
}

.flex-align-center {
  display: flex;
  align-items: center !important;
}

.flex-align-start {
  display: flex;
  align-items: start !important;
}

.flex-wrap {
  flex-wrap: wrap;
}

.d-grid {
  display: grid;
}

.d-flex {
  display: flex;
}

.d-block {
  display: block;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-space-around {
  justify-content: space-around !important;
}

.justify-content-space-between {
  display: flex;
  justify-content: space-between !important;
}

.justify-content-end {
  display: flex;
  justify-content: end;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

/*************** Position *******************/
.hide-absolute {
  position: absolute;
  left: -9999px;
}

.sticky-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

.align-center-horizontally-abs {
  left: 50% !important;
  /* position the left edge of the element at the middle of the parent */
  transform: translateX(-50%) !important;
}

/*************** Cursor *******************/
.cursor-marker {
  cursor: url('../svg/marker_cursor.svg') 20 20, auto;
}

/*************** Transition *******************/
.max-height-transition {
  max-height: 500px !important;
  transition: max-height 0.5s ease-in;
}

/*************** Text *******************/
.wordwrap {
  /* These are technically the same, but use both */
  overflow-wrap: break-word;
  word-wrap: break-word;
  /* Adds a hyphen where the word breaks, if supported (No Blink) */
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.link-hover {
  color: #a3deff !important;
  border-color: #a3deff !important;
}

.text-muted {
  color: #d1d1df;
  font-size: 12.5px;
}

.pointer-none {
  pointer-events: none;
}

.pointer-auto {
  pointer-events: auto;
}

.width-fit-content {
  width: fit-content;
}

input {
  border: none;
  box-shadow: none;
  outline: none;
  padding: 0 0 15px 3px;
  width: 100%;
  color: #4a4a73;
  background-color: transparent;
  border-bottom: 2px solid #dee5f2;
  font-size: 20px;
  font-weight: 500;
}

input::placeholder {
  color: #8a8cad;
  font-size: 18px;
  font-weight: 300;
  padding: 0;
  margin: 0;
}

input:read-only {
  background-color: #f3f3f7;
  padding: 15px 30px;
}

textarea {
  border-color: #595389;
  border-radius: 3px;
  width: 100%;
  font-weight: 400;
  font-size: 18px;
  padding: 10px 15px;
}

textarea:hover,
textarea:active,
textarea:focus,
textarea:active:focus {
  outline-color: #8a8cad;
}

input[type='checkbox'],
input[type='radio'] {
  width: auto;
}

input[type='radio']:checked + span {
  color: #4a4a73;
}

.btn-square {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  border-radius: 3px;
  color: white;
  padding: 10px 18px;
  background-color: #d1d1df;
  border: 2px solid transparent;
  display: inline-block;
  position: relative;
  z-index: 1000;
}

.btn-square:hover,
.btn-square:active,
.btn-square:focus,
.btn-square:active:focus {
  color: white;
  outline: none;
  box-shadow: none;
  background-color: #8a8cad;
}

.btn-square--orange {
  background-color: #ffad1e;
  border-color: #ffad1e;
}

.btn-square--orange:hover,
.btn-square--orange:active,
.btn-square--orange:focus,
.btn-square--orange:active:focus {
  background-color: #ff931e;
  border-color: #ff931e;
}

.btn-square--whitespace--orange {
  background-color: white;
  border-color: white;
  color: #ffad1e;
}

.btn-square--whitespace--orange:hover,
.btn-square--whitespace--orange:active,
.btn-square--whitespace--orange:focus,
.btn-square--whitespace--orange:active:focus {
  background-color: white;
  border-color: white;
  color: #ff931e;
}

.btn-square--whitespace--blue {
  background-color: white;
  border-color: white;
  color: #a3deff;
}

.btn-square--whitespace--blue:hover,
.btn-square--whitespace--blue:active,
.btn-square--whitespace--blue:focus,
.btn-square--whitespace--blue:active:focus {
  background-color: white;
  border-color: white;
  color: #3fa9f5;
}

.btn-square--blue {
  background-color: #a3deff;
  border-color: #a3deff;
}

.btn-square--blue:hover,
.btn-square--blue:active,
.btn-square--blue:focus,
.btn-square--blue:active:focus {
  background-color: #3fa9f5;
  border-color: #3fa9f5;
}

.btn-square--secondary {
  background-color: #1cb0dd;
  border-radius: 10px;
}

.btn-square--secondary:hover,
.btn-square--secondary:active,
.btn-square--secondary:focus,
.btn-square--secondary:active:focus {
  background-color: #199ec6;
  border: 2px solid transparent;
}

.btn-square--secondary-shadow {
  box-shadow: 0px 3px 0px 0px #005184;
  transition: all 0.2s ease-in-out;
}

.btn-square--secondary-shadow:hover,
.btn-square--secondary-shadow:active,
.btn-square--secondary-shadow:focus,
.btn-square--secondary-shadow:active:focus {
  box-shadow: 0px 3px 0px 0px #199ec6;
}

.btn-square--popup {
  background-color: #3fa9f5;
  border-color: #3fa9f5;
  color: white !important;
  padding: 4.5px 14px;
  margin-left: 15px;
}

.btn-square--popup:hover,
.btn-square--popup:active,
.btn-square--popup:focus,
.btn-square--popup:active:focus {
  background-color: #3fa9f5;
  border-color: #3fa9f5;
}

.btn-square--popup--no-stars {
  top: 31px;
}

.btn-square--pink {
  background-color: #ff8084;
  border-color: #ff8084;
}

.btn-square--pink:hover,
.btn-square--pink:active,
.btn-square--pink:focus,
.btn-square--pink:active:focus {
  background-color: #f54e64;
  border-color: #f54e64;
}

.btn-square--inverse--purple {
  background-color: transparent;
  border-color: #8a8cad;
  color: #8a8cad;
}

.btn-square--inverse--purple:hover,
.btn-square--inverse--purple:active,
.btn-square--inverse--purple:focus,
.btn-square--inverse--purple:active:focus {
  border-color: #8a8cad;
  background-color: #8a8cad;
  color: white;
}

.btn-square--inverse--white {
  background-color: transparent;
  border-color: white;
  color: white;
}

.btn-square--inverse--white:hover,
.btn-square--inverse--white:active,
.btn-square--inverse--white:focus,
.btn-square--inverse--white:active:focus {
  border-color: white;
  background-color: white;
  color: #332c8a;
}

.btn-square--addSite {
  width: 100%;
  white-space: normal;
}

.btn-square--big {
  font-size: 110%;
}

.btn-round {
  padding: 11px 12px;
  border: 2px solid;
  border-radius: 100px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
}

.btn-round:hover,
.btn-round:active,
.btn-round:focus,
.btn-round:active:focus {
  color: white;
  outline: none;
  box-shadow: none;
}

.btn-round--cyan,
.btn-round--cyan-inverse {
  background-color: transparent;
  border-color: #c2ffeb;
  color: #c2ffeb !important;
}

.btn-round--cyan:hover,
.btn-round--cyan:active,
.btn-round--cyan:focus,
.btn-round--cyan:active:focus,
.btn-round--cyan-inverse:hover,
.btn-round--cyan-inverse:active,
.btn-round--cyan-inverse:focus,
.btn-round--cyan-inverse:active:focus {
  border-color: #c2ffeb;
  color: #c2ffeb;
}

.btn-round--pink {
  border-color: #f54e64;
  color: #f54e64;
}

.btn-round--pink:hover,
.btn-round--pink:active,
.btn-round--pink:focus,
.btn-round--pink:active:focus {
  border-color: #f54e64;
  color: #f54e64;
}

.btn-round--cyan-inverse {
  background-color: #c2ffeb;
  color: white;
}

.btn-round--orange {
  border-color: #ff931e;
  color: #ff931e;
}

.btn-round--orange:hover,
.btn-round--orange:active,
.btn-round--orange:focus,
.btn-round--orange:active:focus {
  border-color: #ff931e;
  color: #ff931e;
}

.btn-underline {
  font-size: 13px;
  font-weight: 700;
  border: none;
  border-bottom: 2px solid;
  border-radius: 0;
  padding: 0 1px 6px 1px;
  text-transform: uppercase;
  background-color: transparent;
  font-family: 'Ubuntu', 'Open Sans', 'Helvetica Neue', 'Helvetica', 'Arial',
    sans-serif;
  font-style: normal;
}

.btn-underline:hover,
.btn-underline:active,
.btn-underline:focus,
.btn-underline:active:focus {
  outline: none;
  box-shadow: none;
}

.btn-underline--white {
  color: white;
}

.btn-underline--white:hover,
.btn-underline--white:active,
.btn-underline--white:focus,
.btn-underline--white:active:focus {
  color: white;
  border-color: white;
}

.btn-underline--blue {
  color: #a3deff;
}

.btn-underline--blue:hover,
.btn-underline--blue:active,
.btn-underline--blue:focus,
.btn-underline--blue:active:focus {
  color: #3fa9f5;
  border-color: #3fa9f5;
}

.btn-underline--purple {
  color: #8a8cad;
}

.btn-underline--purple:hover,
.btn-underline--purple:active,
.btn-underline--purple:focus,
.btn-underline--purple:active:focus {
  color: #595389;
  border-color: #595389;
}

.btn-underline--pink {
  color: #ff8084;
}

.btn-underline--pink:hover,
.btn-underline--pink:active,
.btn-underline--pink:focus,
.btn-underline--pink:active:focus {
  color: #f54e64;
  border-color: #f54e64;
}

.btn-social {
  width: 100%;
  padding: 15px;
  font-size: 15px;
  color: white;
  margin-bottom: 15px;
}

.btn-social:hover,
.btn-social:active,
.btn-social:focus,
.btn-social:active:focus {
  outline: none;
  box-shadow: none;
  color: white;
  border-color: transparent;
}

.btn-social--facebook {
  background-color: #3b5998;
  border-color: #3b5998;
}

.btn-social--facebook:hover,
.btn-social--facebook:active,
.btn-social--facebook:focus,
.btn-social--facebook:active:focus {
  background-color: #344b83;
  border-color: #344b83;
}

.btn-social--google {
  background-color: #e24825;
  border-color: #e24825;
}

.btn-social--google:hover,
.btn-social--google:active,
.btn-social--google:focus,
.btn-social--google:active:focus {
  background-color: #ca4925;
  border-color: #ca4925;
}

.btn-muted {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 300;
  border: none;
  background-color: transparent;
  padding: 0;
  display: inline-block;
  position: relative;
  z-index: 1000;
}

.btn-muted:hover,
.btn-muted:active,
.btn-muted:focus,
.btn-muted:active:focus {
  border: none;
  color: white;
  outline: none;
  box-shadow: none;
}

.btn-muted--pink {
  color: #f54e64;
}

.btn-muted--pink:hover,
.btn-muted--pink:active,
.btn-muted--pink:focus,
.btn-muted--pink:active:focus {
  color: #f54e64;
}

.btn-muted--purple {
  font-style: normal;
  font-family: 'Ubuntu', 'Open Sans', 'Helvetica Neue', 'Helvetica', 'Arial',
    sans-serif;
}

.btn-muted--purple:hover,
.btn-muted--purple:active,
.btn-muted--purple:focus,
.btn-muted--purple:active:focus {
  color: #595389;
}

.social-square-btn {
  position: relative;
  color: #8a8cad;
  font-size: 35px;
  z-index: 3;
}

.social-square-btn:hover,
.social-square-btn:active,
.social-square-btn:focus,
.social-square-btn:active:focus {
  border: none;
}

.social-square-btn--user-page {
  margin-left: 5px;
  z-index: 3;
}

.social-square-btn--twitter:hover,
.social-square-btn--twitter:active,
.social-square-btn--twitter:focus,
.social-square-btn--twitter:active:focus {
  color: #1dcaff;
}

.social-square-btn--facebook:hover,
.social-square-btn--facebook:active,
.social-square-btn--facebook:focus,
.social-square-btn--facebook:active:focus {
  color: #3b5998;
}

.btn-fake {
  color: white;
  font-size: 14px;
  cursor: pointer;
}

.btn-fake--dark-blue {
  color: #332c8a;
}

.btn-square--popup {
  margin-left: 30px;
}

button.btn.btn-primary.dropdown-toggle.btn-block,
button.btn.btn-primary.dropdown-toggle.btn-block:hover {
  background: #332c8a;
  border-color: #332c8a;
}

.dropdown.open > .dropdown-menu > li > a,
.dropdown.open > .dropdown-menu > li > a:hover {
  border: none;
}

.destination-go-top {
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  margin-top: 20px;
  text-align: right;
  width: 100%;
}

.destination-go-top a {
  color: #1b1464;
  text-decoration: none;
  border: none;
  font-size: 2em;
}

.lab {
  display: inline-flex;
  align-items: center;
}

.lab__btn {
  font-weight: 300;
  font-size: 14px;
  padding: 12px 32px 12px 16px;
  color: #595389;
  border: 2px solid #d1d1df;
  background-color: #f2f2f7;
  border-radius: 3px;
  margin-bottom: 7px;
  margin-right: 4px;
}

.lab__btn > a {
  padding-bottom: 0;
  color: #595389;
}

.lab__btn > a:hover,
.lab__btn > a:active,
.lab__btn > a:focus,
.lab__btn > a:active:focus {
  color: #a3deff;
}

.lab__btn--no-remove {
  padding: 8px 16px;
}

.lab__btn--no-remove:hover,
.lab__btn--no-remove:active,
.lab__btn--no-remove:focus,
.lab__btn--no-remove:active:focus {
  border-color: #d1d1df;
  background-color: #f2f2f7;
  outline: none;
  box-shadow: none;
  color: #595389;
}

.lab__btn--inverse {
  font-family: 'Ubuntu', 'Open Sans', 'Helvetica Neue', 'Helvetica', 'Arial',
    sans-serif;
  background-color: #f2f2f7;
  font-style: normal;
  border: none;
  font-weight: 400;
  padding: 7px 13px;
}

.lab__btn--inverse:hover,
.lab__btn--inverse:active,
.lab__btn--inverse:focus,
.lab__btn--inverse:active:focus {
  background-color: #f2f2f7;
}

.lab__remove {
  margin-left: -26px;
  margin-top: -7px;
  cursor: pointer;
  color: #8a8cad;
}

.lab__remove:hover,
.lab__remove:active,
.lab__remove:focus,
.lab__remove:active:focus {
  color: #4a4a73;
}

.lab--dive {
  margin-right: 16px;
}

.stats-border {
  background-color: transparent;
  background-image: url(../svg/stats_delimiter.svg);
  background-repeat: repeat-x;
  width: 100%;
  height: 5px;
  position: absolute;
  bottom: 0;
}

.stats-panel {
  height: 195px;
  position: relative;
}

.stats {
  margin-top: 30px;
  min-height: 58px;
  color: #8a8cad;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.public-page-stats-container > .stats {
  margin-right: 45px;
}

.user-page-badges > div:last-of-type,
.public-page-stats-container > .stats:last-of-type {
  margin-right: 0;
}

.stats--margin-top {
  margin-top: 70px;
}

.stats__icon {
  width: 32px;
  height: 37px;
  margin-right: 20px;
  flex-shrink: 0;
}

.stats__icon--i > i {
  font-size: 35px;
  color: #d1d1df;
}

.stats__icon--feed > i {
  font-size: 50px;
  color: #8a8cad;
  position: relative;
  top: -2px;
  left: -10px;
}

.stats__icon--buddy > i {
  color: #ff931e;
  font-size: 35px;
}

.stats__icon--biggest > svg {
  width: 41px;
}

.stats__icon--bigger > svg {
  width: 39px;
}

.stats__icon--medium > svg {
  width: 34px;
}

.stats__icon--add {
  margin-left: 15px;
  margin-top: 3px;
  margin-right: 0;
  width: 15px;
}

.stats__icon--add > svg {
  width: 27px;
}

.stats__icon--large {
  width: 45px;
  height: 45px;
}

.stats__icon--larger {
  width: 52px;
  height: 52px;
}

.stats__icon--panel-biggest > svg {
  width: 52px;
  height: 52px;
}

.stats__icon--panel-bigger > svg {
  width: 52px;
}

.stats__icon--panel-medium > svg {
  width: 47px;
}

#dropdown .stats__text__label {
  font-size: 12px;
  margin-top: -5px;
  word-wrap: unset;
  padding: 0;
}

.stats__text__label--medium {
  font-size: 11.5px;
  font-weight: 400;
}

.stats__text__label--ellipsis {
  width: 55px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
}

.stats__text__label--large {
  font-size: 13px;
  font-weight: 400;
}

.stats__text__number {
  font-family: 'Libre Baskerville', 'Helvetica Neue', Helvetica, Arial,
    sans-serif;
  font-weight: 700;
  color: #1b1464;
  font-size: 24px;
}

.stats__text__number--large {
  font-size: 33px;
  color: #8a8cad;
}

.stats--add-section {
  cursor: pointer;
}

.stats--add-section .stats__text__label {
  color: #d1d1df;
}

.stats--add-section .stats__text__label--buddy {
  color: #ff931e;
}

.stats--add-section .add-buddy-svg-3,
.stats--add-section .add-buddy-svg-4 {
  stroke: #ff931e;
}

.stats--add-section .add-svg-3,
.stats--add-section .add-svg-4,
.stats--add-section .comment-svg,
.stats--add-section .mf-svg,
.stats--add-section .note-svg-1,
.stats--add-section .note-svg-2,
.stats--add-section .note-svg-4,
.stats--add-section .note-svg-5,
.stats--add-section .time-svg-2,
.stats--add-section .time-svg-3,
.stats--add-section .image-svg,
.stats--add-section .image-svg-2 {
  stroke: #d1d1df;
}

.stats--add-section:hover .stats__text__label {
  color: #8a8cad;
}

.stats--add-section:hover .stats__text__label--buddy {
  color: #ff931e;
}

.stats--add-section:hover .stats__icon--i > i {
  font-size: 35px;
  color: #8a8cad;
}

.stats--add-section:hover .add-svg-3,
.stats--add-section:hover .add-svg-4,
.stats--add-section:hover .comment-svg,
.stats--add-section:hover .mf-svg,
.stats--add-section:hover .note-svg-1,
.stats--add-section:hover .note-svg-2,
.stats--add-section:hover .note-svg-4,
.stats--add-section:hover .note-svg-5,
.stats--add-section:hover .time-svg-2,
.stats--add-section:hover .time-svg-3,
.stats--add-section:hover .image-svg,
.stats--add-section:hover .image-svg-2 {
  stroke: #8a8cad;
}

.stats--add-section--completed .stats__icon--i > i {
  color: #a2c63f;
}

.stats--add-section--completed .stats__text__label {
  color: #a2c63f;
}

.stats--add-section--completed .add-svg-3,
.stats--add-section--completed .add-svg-4,
.stats--add-section--completed .comment-svg,
.stats--add-section--completed .mf-svg,
.stats--add-section--completed .note-svg-1,
.stats--add-section--completed .note-svg-2,
.stats--add-section--completed .note-svg-4,
.stats--add-section--completed .note-svg-5,
.stats--add-section--completed .time-svg-2,
.stats--add-section--completed .time-svg-3,
.stats--add-section--completed .image-svg,
.stats--add-section--completed .image-svg-2 {
  stroke: #a2c63f;
}

.stats--add-section--completed .add-buddy-svg-3,
.stats--add-section--completed .add-buddy-svg-4 {
  stroke: #a2c63f;
}

.stats--add-section--completed:hover .stats__text__label {
  color: #a2c63f;
}

.stats--add-section--completed:hover .stats__text__label--buddy {
  color: #a2c63f;
}

.stats--add-section--completed:hover .stats__icon--i > i {
  color: #a2c63f;
}

.stats--add-section--completed:hover .add-svg-3,
.stats--add-section--completed:hover .add-svg-4,
.stats--add-section--completed:hover .comment-svg,
.stats--add-section--completed:hover .mf-svg,
.stats--add-section--completed:hover .note-svg-1,
.stats--add-section--completed:hover .note-svg-2,
.stats--add-section--completed:hover .note-svg-4,
.stats--add-section--completed:hover .note-svg-5,
.stats--add-section--completed:hover .time-svg-2,
.stats--add-section--completed:hover .time-svg-3,
.stats--add-section--completed:hover .image-svg,
.stats--add-section--completed:hover .image-svg-2 {
  stroke: #a2c63f;
}

.stats--add-section--active .stats__text__label {
  color: #8a8cad;
}

.stats--add-section--active .stats__text__label--buddy {
  color: #ff931e;
}

.stats--add-section--active .stats__icon--i > i {
  font-size: 35px;
  color: #8a8cad;
}

.stats--add-section--active .add-svg-3,
.stats--add-section--active .add-svg-4,
.stats--add-section--active .comment-svg,
.stats--add-section--active .mf-svg,
.stats--add-section--active .note-svg-1,
.stats--add-section--active .note-svg-2,
.stats--add-section--active .note-svg-4,
.stats--add-section--active .note-svg-5,
.stats--add-section--active .time-svg-2,
.stats--add-section--active .time-svg-3,
.stats--add-section--active .image-svg,
.stats--add-section--active .image-svg-2 {
  stroke: #8a8cad;
}

.stats--add-section--error .stats__text__label {
  color: #f54e64;
}

.stats--add-section--error .add-svg-3,
.stats--add-section--error .add-svg-4,
.stats--add-section--error .comment-svg,
.stats--add-section--error .mf-svg,
.stats--add-section--error .note-svg-1,
.stats--add-section--error .note-svg-2,
.stats--add-section--error .note-svg-4,
.stats--add-section--error .note-svg-5,
.stats--add-section--error .time-svg-2,
.stats--add-section--error .time-svg-3,
.stats--add-section--error .image-svg,
.stats--add-section--error .image-svg-2 {
  stroke: #f54e64;
}

.stats__error {
  color: #f54e64;
  margin-top: 25px;
}

.stats__text__label > label {
  font-weight: 400;
  cursor: pointer;
}

.stats__icon--account .location-svg-1,
.stats__icon--account .location-svg-2,
.stats__icon--account .dive-svg,
.stats__icon--account .favorite-svg,
.stats__icon--account .comment-svg,
.stats__icon--account .image-svg,
.stats__icon--account .image-svg-2,
.stats__icon--account .mf-svg-1 {
  stroke: white;
}

.wrapper-link-icon:hover,
.wrapper-link-icon:hover .stats__text__number,
.wrapper-link-icon:hover .stats__icon .mf-svg,
.wrapper-link-icon:hover .stats__icon .comment-svg,
.wrapper-link-icon:hover .stats__icon .dive-svg,
.wrapper-link-icon:hover .stats__icon .image-svg,
.wrapper-link-icon:hover .stats__icon .favorite-svg,
.wrapper-link-icon:hover .stats__icon .image-svg-2 {
  color: #3fa9f5;
  stroke: #3fa9f5;
}

@media (max-width: 550px) {
  .stats__text__number {
    font-size: 20px;
  }
  .stats__text__label--medium {
    font-size: 9.5px;
  }
  .stats__text__label {
    margin: 5px 0;
  }
  .stats__icon {
    margin-right: 11px;
  }
  .stats__icon--i {
    margin: 0;
  }
  .stats__icon--buddy {
    margin-right: 0;
  }
  .stats-panel {
    margin-top: 75px;
  }
  .stats--add-section {
    margin-top: 0 !important;
  }
}

.link-dark-blue-alt {
  color: #332c8a;
}

.link-dark-blue-alt:hover,
.link-dark-blue-alt:active,
.link-dark-blue-alt:focus,
.link-dark-blue-alt:active:focus {
  color: #332c8a;
  border-color: #332c8a;
  text-decoration: none;
}

.link-light-purple {
  color: #8a8cad;
}

.link-light-purple:hover,
.link-light-purple:active,
.link-light-purple:focus,
.link-light-purple:active:focus {
  color: #8a8cad;
  border-color: #8a8cad;
  text-decoration: none;
}

.fake-link {
  color: #a3deff;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 3px;
  cursor: pointer;
}

.fake-link:hover,
.fake-link:active,
.fake-link:focus,
.fake-link:active:focus {
  border-bottom-color: #a3deff;
}

.modal-content {
  width: 700px;
  box-shadow: none;
}

.modal-header {
  border: none;
  color: white;
  padding: 35px 90px 45px 90px;
  background-color: #332c8a;
  border-bottom: 1px solid #cadef6;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.modal-header__followers {
  background: radial-gradient(
    circle,
    rgba(231, 246, 255, 0.994835) 0%,
    white 38%,
    rgba(231, 246, 255, 0.994835) 62%
  );
  padding: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-header__title {
  font-size: 27px;
  font-weight: 700;
}

.modal-header__close {
  position: absolute;
  font-size: 25px;
  right: 40px;
  top: 20px;
  cursor: pointer;
  font-weight: 300;
  opacity: 0.5;
}

.modal-header__close:hover,
.modal-header__close:active,
.modal-header__close:focus,
.modal-header__close:active:focus {
  opacity: 1;
}

.modal-header__close.followers {
  font-size: 20px;
  top: 10px;
}

.modal-header--small {
  padding: 50px 90px 0 90px;
}

.modal-header--small__close {
  top: 8px;
}

.modal-body {
  padding: 35px 90px 45px 90px;
}

.modal-body__followers {
  padding: 2%;
}

.modal-body__title_secondary {
  margin-bottom: 20px;
}

.modal-body__title_secondary--margin-top {
  margin-top: 45px;
}

.modal-body__input-container {
  width: 100%;
}

.modal-footer {
  background-color: #fbfcfd;
  height: 100px;
  border-top: 1px solid #e8e9f0;
  padding: 27px 90px 27px 90px;
  margin-top: 30px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}

.modal-footer--crowded {
  padding: 0 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-modal__input-container {
  margin-top: 30px;
}

.modal-delete-main-text {
  font-size: 26px;
}

.modal-delete-secondary-text {
  margin: 0;
  position: relative;
  top: 25px;
}

.modal-body__input-container > input {
  padding-left: 0;
  padding-top: 0;
  background-color: transparent;
}

.modal-auxiliary-text {
  margin-top: 40px;
  font-size: 17px;
}

@media (max-width: 980px) {
  .modal-content {
    width: 100%;
  }
  .modal-header {
    padding: 17.5px 45px 22.5px 45px;
  }
  .modal-header__title {
    font-size: 21px;
  }
  .modal-body {
    padding: 17.5px 45px 22.5px 45px;
  }
  .modal-body .widget-modal-title {
    font-size: 20px;
  }
  .widget-modal-input--right {
    margin-top: 15px;
  }
}

@media (max-width: 550px) {
  .modal-body {
    padding: 15px;
  }

  .modal-footer--crowded {
    flex-direction: column;
    height: auto;
    padding: 15px 0;
  }

  .modal-footer--crowded > :nth-child(2),
  .modal-footer--crowded > :nth-child(3) {
    margin-top: 20px;
  }

  .modal-header__close {
    font-size: 20px;
    right: 20px;
    top: 15px;
  }
}

.star-icon {
  width: 11px;
  height: 22px;
  margin-right: 4px;
  fill: #ff931e;
  display: inline-block;
}

.star-icon--add-site {
  width: 19px;
  height: 22px;
}

.star-icon--user-page {
  margin-right: 1px;
}

.star-icon--public-page {
  margin-right: 3px;
}

.star-icon--site-dive,
.star-icon--public-page {
  width: 12px;
  height: 15px;
}

.star-icon--flex {
  width: 13px;
  height: 0;
  margin-right: 0;
}

.star-icon--middle {
  width: 18px;
  height: 29px;
}

.star-icon--select {
  cursor: pointer;
}

.star-icon--favorite {
  fill: white;
  width: 15px;
  height: 15px;
  margin: 0;
}

.star-icon--large {
  width: 28px;
  height: 39px;
}

.star-icon--grey {
  fill: #dedede !important;
}

.star-hint {
  display: block;
  position: absolute;
  font-size: 15px;
}

.star-hint--center {
  left: 50% !important;
  /* position the left edge of the element at the middle of the parent */
  transform: translateX(-50%) !important;
}

.location-svg-1,
.location-svg-2 {
  stroke: #8a8cad;
}

.wave-delimiter-icon {
  width: 60px;
  fill: none;
  stroke: #113270;
  stroke-miterlimit: 10;
  stroke-width: 2px;
}

.favorite,
.wishlist,
.transparent-btn-map {
  width: 40px;
  height: 40px;
  border: 2px solid white;
  background-color: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  cursor: pointer;
  margin-right: 10px;
}

.favorite--selected > *,
.wishlist--selected > *,
.claimed-icon--selected > *,
.transparent-btn-map--selected > * {
  fill: #ff931e;
}

.transparent-btn-map--dark-orange {
  color: #ff931e;
}

.claimed-icon-small {
  color: #a2c63f;
  margin-left: 5px;
  font-size: 15px;
}

.wishlist--selected {
  color: #332c8a;
}

.delete-icon {
  width: 40px;
  height: 40px;
  border: 2px solid white;
  background-color: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  cursor: pointer;
  margin-right: 10px;
  font-size: 1.75em;
}

.delete-icon--dive {
  margin-left: 25px;
}

.mf-svg {
  stroke: #8a8cad;
}

.edit-svg {
  fill: #8a8cad;
}

.edit-circle-icon {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
}

.edit-circle-icon__pen {
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 50%;
  margin-left: -7px;
}

.edit-circle-icon__circle .circle-svg-3 {
  stroke: #8a8cad;
}

.edit-circle-icon__circle {
  width: 40px;
  height: 40px;
}

.edit-circle-icon:hover .edit-svg {
  fill: #595389;
}

.edit-circle-icon:hover .circle-svg-3 {
  stroke: #595389;
}

.edit-circle-icon--active .edit-svg {
  fill: #595389;
}

.edit-circle-icon--active .circle-svg-3 {
  stroke: #595389;
}

.edit-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  cursor: pointer;
  margin-right: 8px;
}

.edit-icon:hover .edit-svg {
  fill: #4a4a73;
  opacity: 1;
}

.save-icon {
  font-size: 20px;
  color: #ffad1e;
  position: absolute;
  right: 8px;
  cursor: pointer;
}

.save-icon:hover,
.save-icon:active,
.save-icon:focus,
.save-icon:active:focus {
  color: #ff931e;
}

.save-icon--edit-inline {
  font-size: 22px;
  top: 3px;
}

.save-icon--dc-feed {
  position: absolute;
  right: 0;
  bottom: 13px;
}

@media (max-width: 980px) {
  .edit-circle-icon {
    position: relative;
    left: 0;
    top: 5px;
    display: inline-block;
  }
}

@media (max-width: 550px) {
  .save-icon--dc-feed {
    right: -25px;
  }
}

@media (max-width: 450px) {
  .star-hint--center {
    left: 0 !important;
    transform: translateX(0) !important;
  }
}

.error-form__title {
  font-size: 21px;
  font-weight: 500;
  color: #8a4169;
}

.error-form__title--warning {
  color: #ff931e;
}

.error-form__title--success {
  color: #6b8e23;
}

.error-form__message {
  font-size: 17px;
  font-weight: 300;
  color: #f54e64;
  display: block;
}

.error-form__message--success {
  color: #a2c63f;
}

.error-form__message--warning {
  color: #ffad1e;
}

.error-form--add-site {
  margin-bottom: 20px;
}

.error-form--account {
  margin-top: 30px;
  margin-bottom: 15px;
}

.dropdown-map__menu {
  z-index: 1001;
  position: absolute;
  width: 670px;
  height: 495px;
  background-color: #ffffff;
  right: -60px;
  top: 28px;
  padding: 65px 70px;
  border-radius: 5px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.dropdown-map__menu .location-svg-1,
.dropdown-map__menu .location-svg-2,
.dropdown-map__menu .dive-svg,
.dropdown-map__menu .favorite-svg,
.dropdown-map__menu .comment-svg,
.dropdown-map__menu .image-svg,
.dropdown-map__menu .image-svg-2,
.dropdown-map__menu .mf-svg-1 {
  stroke: #a3deff !important;
}

.dropdown-map__menu__messages-btn {
  float: right;
  margin: 16px 16px 0 0;
}

.dropdown-map__menu__dives-btn {
  margin-right: auto;
  margin-left: 70px;
}

.dropdown-map__menu__dives-btn:hover {
  border-width: 2px;
  border-style: solid;
}

.dropdown-map__menu__below-stats-btn {
  margin-top: 40px;
  margin-bottom: 25px;
}

.dropdown-map__menu__footer {
  position: absolute;
  bottom: 0;
  left: 10px;
  background: white;
  height: 75px;
  width: 100%;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 90px;
}

.dropdown-map__menu--link {
  color: #1b1464;
  font-size: 15px;
  font-weight: 400;
}

.dropdown-map__menu--link:hover,
.dropdown-map__menu--link:active,
.dropdown-map__menu--link:focus,
.dropdown-map__menu--link:active:focus {
  color: #1b1464;
  border-bottom: solid 2px #1b1464;
}

.dropdown-map__menu__title {
  font-weight: 500;
  font-size: 26px;
  display: inline-block;
  margin: 16px 0 35px 0;
  border-bottom: 2px solid #a3deff;
}

.dropdown-map__menu__title:hover,
.dropdown-map__menu__title:active,
.dropdown-map__menu__title:focus,
.dropdown-map__menu__title:active:focus {
  border-bottom: 2px solid #a3deff;
}

.dropdown-map__menu__subtitle {
  font-weight: 400;
  color: #595389;
  font-size: 15px;
  margin: -20px 0 0 0;
}

.dropdown-map__menu__wave-delimiter {
  margin-top: -4px;
}

.arrow-up {
  border-color: rgba(255, 255, 255, 0.9) transparent;
  border-style: solid;
  border-width: 0 6px 6px 6px;
  height: 0;
  width: 0;
  display: inline-block;
  position: relative;
}

.arrow-up--languages,
.arrow-up--select-list {
  position: relative;
  bottom: 2px;
  border-width: 0 4px 4px 4px;
}

.arrow-up--select-list {
  border-color: #3fa9f5 transparent;
  border-width: 4px 4px 0 4px;
}

.arrow-up--light-purple {
  border-color: #8a8cad transparent;
}

.arrow-up--dropdown-mobile {
  border-color: #332c8a transparent;
  bottom: 3px;
  border-width: 4px 4px 4px 0;
}

.arrow-down {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #332c8a;
}

.arrow-down--mobile {
  position: relative;
  top: 8px;
}

.arrow-down--languages {
  border-top-color: rgba(255, 255, 255, 0.5);
  margin-left: 3px;
}

.arrow-up--dropdown {
  position: absolute;
  top: 23px;
  right: 30px;
}

.dropdown-map__menu--account {
  background-color: #ffffff;
  z-index: 1001;
  border-radius: 0;
  top: 60px;
  right: -98px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.dropdown-map__menu--account__wave-delimiter {
  stroke: white;
}

.dropdown-map__menu__footer--account {
  border-radius: 5px;
  background-color: #ffffff;
}

.dropdown_menu--my-map {
  width: 41vw;
  z-index: 1001;
  top: 35px;
  right: -20px;
  background-color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.dropdown_menu--my-map .dropdown-map__menu__footer {
  background-color: #ffffff;
}

.dropdown-map__menu--public-page {
  width: 100%;
  height: auto;
  position: relative;
  background-color: white;
  top: 60px;
  left: 0;
  padding: 0;
}

@media (max-width: 992px) {
  .dropdown-mobile {
    position: absolute;
    z-index: 1005;
    padding: 0;
    margin-top: 15px;
    background-color: white;
    list-style: none;
    width: 100%;
  }
  .dropdown-mobile--site {
    left: 0;
    width: 100%;
    top: 65px;
  }
  .dropdown-mobile--explore {
    top: -80px;
  }
  .dropdown-mobile li {
    margin: 0;
    padding: 25px 20px;
    border-top: 2px solid #ecedf2;
    cursor: pointer;
  }
  .dropdown-mobile li:first-child {
    border-top-color: transparent;
  }
  .dropdown-mobile:last-child {
    border-bottom: 2px solid #ecedf2;
  }
  .dropdown-mobile__link {
    font-size: 19px;
    font-weight: 500;
    color: #1b1464;
    cursor: pointer;
  }
  .dropdown-mobile__link:hover,
  .dropdown-mobile__link:active,
  .dropdown-mobile__link:focus,
  .dropdown-mobile__link:active:focus {
    border-color: transparent;
    color: #1b1464;
  }
  .dropdown-mobile__text {
    margin: 0;
    font-size: 13px;
    color: #8a8cad;
  }
  .header-map {
    z-index: 1001;
  }
}

@media (max-width: 992px) {
  .dropdown-mobile--no-map,
  .dropdown-mobile--feed {
    position: absolute !important;
    margin-top: 0 !important;
  }
  .dropdown-mobile--no-map > li:last-child,
  .dropdown-mobile--feed > li:last-child {
    border-bottom: 2px solid #ecedf2;
  }
  .dropdown-mobile--feed {
    left: 0;
    top: 56px;
  }
  .dropdown-mobile {
    position: relative;
    z-index: 1005;
    padding: 0;
    margin-top: 15px;
    background-color: white;
  }
  .dropdown-mobile--my-map,
  .dropdown-mobile--add-site,
  .dropdown-mobile--dive-center-edit {
    position: absolute;
    z-index: 1005;
    left: 0;
    text-align: left;
  }
  .dropdown-mobile--add-site {
    top: 45px;
  }
  .dropdown-mobile--dive-center-edit {
    top: 65px;
  }
  .dropdown-mobile li {
    margin: 0;
    padding: 25px 20px;
    border-top: 2px solid #ecedf2;
  }
  .dropdown-mobile li:first-child {
    border-top-color: transparent;
  }
  .dropdown-mobile:last-child {
    border-bottom: 2px solid #ecedf2;
  }
  .dropdown-mobile__link {
    font-size: 19px;
    font-weight: 500;
    color: #1b1464;
  }
  .dropdown-mobile__text {
    margin: 0;
    font-size: 13px;
    color: #8a8cad;
  }
}

@media (max-width: 992px) {
  .dropdown-mobile--site {
    top: -15px;
  }
  .dropdown-mobile--explore {
    top: -15px;
  }
}

@media (max-height: 550px) and (max-width: 992px) {
  .dropdown-mobile--explore {
    top: -20px;
  }
}

.dropdown-languages {
  border-radius: 3px;
  background-color: #071a39;
  position: absolute;
  top: 55px;
  padding: 10px 10px 10px 0;
  min-height: 125px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 1001;
  text-transform: uppercase;
}

.dropdown-languages > a {
  margin-bottom: 5px;
  margin-left: 10px;
}

.dropdown-languages > a:last-child {
  margin-bottom: 0;
}

.dropdown-languages--no-map {
  background-color: white;
  border: 1px solid #e1e1e5;
}

.dropdown-languages--no-map > .link--selected {
  border-color: #332c8a;
}

.dropdown-languages--no-map > a {
  color: #332c8a;
}

.dropdown-languages--no-map > a:hover {
  border-color: #332c8a;
}

.dropdown-languages--mobile {
  position: relative;
  bottom: 0;
  background-color: transparent;
  padding: 0;
  max-height: 0;
  transition: max-height 0.5s ease-out;
  overflow: hidden;
  font-size: 14px;
  top: 0;
  min-height: auto;
}

.dropdown-languages--mobile > a {
  margin-left: 0;
  margin-bottom: 10px;
}

.languages-selector {
  position: relative;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 110%;
  padding-left: 10px;
  display: flex;
  align-items: center;
  height: 60px;
  border-left: 1px solid rgba(65, 85, 147, 0.3);
}

.tooltip.top .tooltip-inner,
.tooltip.right .tooltip-inner {
  font-family: 'Ubuntu', 'Open Sans', 'Helvetica Neue', 'Helvetica', 'Arial',
    sans-serif !important;
  background-color: #1b1464;
}

.tooltip.top .tooltip-arrow {
  border-top-color: #1b1464;
}

.tooltip.right .tooltip-arrow {
  border-right-color: #1b1464;
}

.avatar-circle {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  position: relative;
}

.comment-avatar {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  margin-top: -3px;
}

.comment-avatar-default {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  position: relative;
  top: -3px;
  border: 2px solid #8a8cad;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.comment-avatar-default > i {
  color: #8a8cad;
  font-size: 10px;
}

.pagination-block {
  font-family: 'Libre Baskerville', 'Open Sans', 'Helvetica Neue', 'Helvetica',
    'Arial', sans-serif;
}

.pagination .disabled > a {
  font-family: 'Ubuntu', 'Open Sans', 'Helvetica Neue', 'Helvetica', 'Arial',
    sans-serif;
  color: #8a8cad;
  background-color: white;
  border-color: #d1d1df;
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  background-color: #f2f2f7;
  color: #595389;
  border-color: #d1d1df;
}

.pagination > li > a,
.pagination > li > span {
  color: #595389;
  border-color: #d1d1df;
}

.pagination > li > a:hover,
.pagination > li > a:active,
.pagination > li > a:focus,
.pagination > li > a:active:focus,
.pagination > li > span:hover,
.pagination > li > span:active,
.pagination > li > span:focus,
.pagination > li > span:active:focus {
  background-color: #f2f2f7;
}

.pagination-next {
  font-family: 'Ubuntu', 'Open Sans', 'Helvetica Neue', 'Helvetica', 'Arial',
    sans-serif;
}

.simple-pagination {
  margin-bottom: 20px;
}

.simple-pagination li > * {
  cursor: pointer;
  font-size: 12.5px !important;
}

.simple-pagination .prev,
.simple-pagination .next {
  font-family: 'Ubuntu', 'Open Sans', 'Helvetica Neue', 'Helvetica', 'Arial',
    sans-serif;
}

.gallery {
  margin-top: 68px;
}

.gallery--dive {
  margin-top: 100px;
}

.gallery__main-img {
  width: 603px;
  height: 444px;
  cursor: pointer;
}

.gallery__main-img--account {
  width: 522px;
  height: auto;
}

.gallery__small-thumbnail {
  width: 118.29px !important;
  height: 87.29px !important;
}

.gallery__container {
  margin-top: 4px;
  margin-bottom: 100px;
  width: 100%;
}

.gallery__container > img {
  width: 118.29px;
  height: 87.29px;
  opacity: 0.6;
  cursor: pointer;
}

.gallery__container > img:hover,
.gallery__container > img:active,
.gallery__container > img:focus,
.gallery__container > img:active:focus {
  opacity: 1;
}

.gallery__container--account > img {
  width: 102.15px;
  height: auto;
}

.gallery__container--user-page {
  margin-top: 13px;
}

.gallery__container--dive {
  margin-bottom: 3.5px;
}

.gallery__container--flex {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.gallery__container--flex > * {
  margin-right: 5px;
}

.gallery__container__unit {
  position: relative;
  display: inline-block;
  top: -14px;
}

.gallery__container__unit > img {
  vertical-align: initial;
  cursor: pointer;
}

.gallery__container__unit--public_dive {
  top: 0;
}

.gallery__container__unit__add-icon {
  width: 135.29px;
  height: 87.29px;
  display: inline-block;
  cursor: pointer;
}

.gallery__container__unit__add-icon--relative {
  position: relative;
  top: -13px;
}

.gallery__container__unit__remove-icon {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 5px;
  top: 5px;
  cursor: pointer;
}

.gallery__container__unit--no-top {
  top: 0;
}

.gallery__main-container {
  position: relative;
}

.gallery__main-container__remove-icon {
  display: inline-block;
  position: absolute;
  top: 15px;
  right: 30px;
  width: 50px;
  height: 50px;
  cursor: pointer;
}

.gallery__main-container__remove-icon--small {
  top: 10px;
  right: 10px;
  width: 35px;
  height: 35px;
}

.gallery--account {
  margin-top: 30px;
}

.gallery--user-page {
  position: relative;
  top: 50px;
}

.gallery__small-pic {
  margin-bottom: 4px;
  cursor: pointer;
}

.gallery-col-fixed {
  max-width: 604px;
}

.gallery-overlay {
  position: relative;
  display: inline-block;
  height: 10vh;
}

.gallery-overlay__img {
  width: 100%;
  height: 10vh !important;
  border-radius: 10px;
}

.gallery-overlay__cover {
  position: absolute;
  top: 0;
  color: white;
  font-size: 3rem;
  font-family: 'Libre Baskerville', 'Open Sans', 'Helvetica Neue', 'Helvetica',
    'Arial', sans-serif;
  cursor: pointer;
  height: 99%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.gallery-overlay-cover {
  position: absolute;
}

.mfp-caption-with-links {
  background-color: black;
  position: relative;
  margin-right: -36px;
  top: -4px;
  padding: 9px;
  padding-right: 36px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

@media (max-width: 992px) {
  .gallery__main-container {
    margin-top: 25px;
    display: inline-block;
  }
  .gallery__main-container__remove-icon {
    right: 5px;
    top: 5px;
    width: 20px;
    height: 20px;
  }
  .gallery__main-img {
    width: 118.29px;
    height: 87.29px;
  }
  .gallery__container {
    margin-bottom: 15px;
    margin-top: 25px;
    width: 100%;
  }
  .gallery__container > img {
    opacity: 1;
    margin-bottom: 5px;
  }
  .gallery {
    margin-top: 0;
  }
  .account-section .gallery__main-img {
    margin-bottom: -14px;
    margin-top: 15px;
  }
}

@media (max-width: 550px) {
  .gallery__container {
    margin-top: 19px;
    display: flex;
    flex-wrap: wrap;
  }
  .gallery__container > img {
    margin-bottom: 1px;
    margin-right: 1px;
  }
  .gallery__container--account > img {
    width: auto;
  }
  .gallery__container__unit {
    top: 0;
  }
  .gallery__container__unit > img {
    margin-top: 1px;
    margin-right: 1px;
  }
  .gallery--user-page {
    top: 5px;
  }
  .gallery__container--user-page {
    display: flex;
    flex-wrap: wrap;
  }
  .gallery__small-pic {
    margin-bottom: -4px;
    margin-right: 1px;
  }
  .gallery__container__unit__add-icon--relative {
    top: 0;
  }
  .gallery__container--flex > * {
    margin-right: 0;
    margin-bottom: -4px;
  }
}

.edit-section--editable--log {
  display: inline-block;
  float: right;
  position: relative;
  top: -6.5px;
}

.edit-section {
  position: relative;
  white-space: pre-line;
}

.edit-section__field {
  font-weight: 400;
  font-size: 18px;
  margin-top: 15px;
  line-height: 1.75;
}

.edit-section__field--textarea {
  min-height: 225px;
  padding: 10px 15px;
}

.edit-section__field--input {
  width: 100px;
  margin: 0;
  text-align: right;
  font-family: 'Ubuntu', 'Open Sans', 'Helvetica Neue', 'Helvetica', 'Arial',
    sans-serif;
  font-size: 16px;
}

.edit-inline-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.edit-inline-container:hover .edit-svg {
  fill: #4a4a73;
}

.edit-inline__editable {
  position: relative;
}

.edit-inline__editable__container {
  position: absolute;
  width: 100%;
  top: 28px;
}

.page-external-link {
  cursor: pointer;
}

.page-external-link:hover,
.page-external-link:active,
.page-external-link:focus,
.page-external-link:active:focus {
  color: #4a4a73;
}

.binary-switch {
  cursor: pointer;
  display: inline-block;
  position: relative;
  width: 45px;
  height: 15px;
  border: 2px solid white;
  box-shadow: 0 0 0 1px #ebebf5;
  border-radius: 50px;
  background-color: #ebebf5;
}

.binary-switch__label {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: -4.5px;
  left: -3px;
  cursor: pointer;
  margin: 0;
  background-color: #cacae8;
  border: 2px solid white;
  border-radius: 50px;
  box-shadow: 0 0 0 1px #cacae8;
  transition: left 0.4s ease, background-color 0.1s linear,
    border-color 0.1s linear;
}

.binary-switch__label--checked,
.binary-switch__label--two-choices {
  background-color: #3fa9f5;
  border-color: white;
  box-shadow: 0 0 0 1px #3fa9f5;
}

.binary-switch__label--checked {
  left: 24px;
}

.binary-switch--account {
  position: relative;
  top: 2px;
  float: right;
}

.binary-switch--main-section {
  position: absolute;
  right: 0;
  top: 2px;
}

.binary-switch--tag {
  color: #595389;
  font-size: 19px;
  font-weight: 300;
  cursor: pointer;
  width: 60px;
}

.binary-switch--tag--selected {
  font-weight: 500;
}

.binary-switch--unit-system {
  margin: 0 15px;
}

.custom-alert {
  padding: 30px 40px;
  font-size: 15px;
  color: #595389;
  border-radius: 3px;
  border: 2px solid #d1d1df;
}

.custom-alert--blue {
  background-color: aliceblue;
  border-radius: 3px;
}

.custom-alert--pink {
  background-color: #ffe4e1;
  border-color: #ffcecc;
}

.custom-alert--green {
  background-color: #f0fff0;
  border-color: #cddccd;
}

.custom-alert__close-icon {
  position: absolute;
  right: 35px;
  cursor: pointer;
}

.custom-alert--account {
  margin-top: 30px;
}

.custom-alert--big {
  width: 80%;
  margin: 25px auto 0 auto;
}

@media (max-width: 550px) {
  .custom-alert--big {
    width: 100%;
  }
  .custom-alert {
    padding: 15px;
  }
}

.form-center-container {
  border: 3px solid #d1d1df;
  border-radius: 3px;
  padding: 25px 50px 50px 50px;
  width: 750px;
  margin-top: 75px;
}

.form-center-container__title {
  font-size: 25px;
}

.form-center-container__delimiter {
  width: 65px;
  margin-top: -10px;
}

.form-center-container--no-border {
  border-color: transparent;
}

.form__first_col > input {
  margin-bottom: 30px;
}

.form__first_col > input:first-of-type {
  margin-top: 30px;
}

.form__second_col {
  margin-bottom: 30px;
}

.form__second_col__label {
  margin: 0;
  position: relative;
  top: -2px;
  cursor: pointer;
}

.form__second_col__secondary_link {
  position: relative;
  top: 1px;
}

.form__third_col {
  font-size: 14px;
  margin-top: 25px;
  margin-bottom: 30px;
}

.form__social-delimiter_col {
  margin-bottom: 25px;
}

.general-upload {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.general-upload > :first-child {
  width: 30px;
  margin-right: 15px;
}

.general-upload > :nth-child(2) {
  text-transform: uppercase;
}

.general-upload__filename {
  text-transform: none;
  margin-left: 15px;
  color: #d1d1df;
}

@media (max-width: 550px) {
  .form-center-container {
    margin-top: 35px;
    padding: 15px;
  }
}

@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.25, 1.25, 1.25);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}

@keyframes blink {
  from,
  to {
    color: transparent;
  }
  50% {
    color: white;
  }
}

@keyframes rainbow-border {
  0% {
    border-color: #ffad1e;
  }
  50% {
    border-color: #ff931e;
  }
  100% {
    border-color: #d1d1df;
  }
}

@keyframes rainbow-stroke {
  0% {
    stroke: #ffad1e;
  }
  50% {
    stroke: #ff931e;
  }
  100% {
    stroke: #8a8cad;
  }
}

.animation-save {
  animation-name: pulse;
  animation-duration: 0.5s;
}

.slide-in {
  animation: slide-in 0.25s forwards;
}

.slide-out {
  animation: slide-out 0.25s forwards;
}

@keyframes slide-in {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}

@keyframes slide-out {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

table.table-condensed > thead {
  font-family: 'Ubuntu', 'Open Sans', 'Helvetica Neue', 'Helvetica', 'Arial',
    sans-serif;
  color: #595389;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover,
.bootstrap-datetimepicker-widget table td span.active {
  background-color: #595389;
}

td.day,
span.month,
span.year,
span.decade {
  color: #8a8cad;
}

.bootstrap-datetimepicker-widget table td.old,
.bootstrap-datetimepicker-widget table td.new {
  color: #d1d1df;
}

td.day,
span.year,
span.decade {
  font-family: 'Libre Baskerville', 'Open Sans', 'Helvetica Neue', 'Helvetica',
    'Arial', sans-serif;
}

.bootstrap-datetimepicker-widget table td.today:before {
  border-bottom-color: #595389;
}

span.decade.active {
  color: white;
}

.bootstrap-datetimepicker-widget.dropdown-menu.usetwentyfour.bottom {
  z-index: 2009;
}

.header-map-wrapper {
  background-color: rgba(27, 20, 100, 0.75);
  padding: 0 1vw;
  display: flex;
  border-bottom: 1px solid #9BBEFC;
}

.header-map-wrapper--solid {
  background-color: #332c8a;
  background-image: none;
}

.header-map-wrapper--absolute {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1001;
}

.header-map-container {
  display: flex;
  width: 100%;
}

.header-map-container__col {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.header-map-container__col--1 {
  width: 130px;
}

.header-map-container__col--2 {
  margin: 0 20px 0 15px;
}

.header-map-container__col--3 {
  width: 30%;
  font-size: 16px;
  font-weight: 300;
  color: white;
  cursor: pointer;
}

.header-map-container__col--4 {
  margin-left: auto;
}

.header-map-container__col--5 {
  color: white;
  font-weight: 300;
}

.header-map-container__nav-item {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-transform: uppercase;
  height: 60px;
  font-size: 12px;
  margin: 0 15px;
  box-sizing: border-box;
  border-top: 0;
  border-bottom: 2px solid #071a39;
  font-weight: 500;
}

.header-map-container__nav-item-margin {
  margin: 0 15px;
}

.header-map-container__nav-item-btn {
  margin: 0;
  width: 70px;
  border-left: 1px solid rgba(65, 85, 147, 0.3);
}

.header-map-container__nav-item-btn > .icon {
  color: #ffffff;
  font-size: 20px;
}

.header-map-container__nav-item-btn:hover,
.header-map-container__nav-item-btn:active,
.header-map-container__nav-item-btn:focus,
.header-map-container__nav-item-btn:active:focus {
  border-left: 1px solid rgba(65, 85, 147, 0.3);
  border-bottom: 2px solid #ff8900;
}

.header-map-container__nav-item-btn:hover > .icon,
.header-map-container__nav-item-btn:active > .icon,
.header-map-container__nav-item-btn:focus > .icon,
.header-map-container__nav-item-btn:active:focus > .icon {
  color: #a3deff;
}

.header-map-container__nav-item-btn--active {
  border-bottom: 2px solid #ff8900;
}

.header-map-container__divider {
  height: 28px;
  width: 1px;
  background-color: rgba(65, 85, 147, 0.3);
  margin: 0 15px;
}

.header-map-container__logo {
  width: 130px;
  padding: 0;
  border: none;
  height: 34px;
}

.header-map-container__delimiter,
.header-map-container__delimiter-second {
  color: white;
  font-size: 40px;
  position: relative;
  top: -3px;
  opacity: 0.6;
  mix-blend-mode: overlay;
}

.header-map-container__delimiter-second {
  margin: 0 30px 0 45px;
}

.header-map-search-icon,
.header-map-mobile-icon {
  width: 20px;
  margin-right: 15px;
  position: relative;
  top: 5px;
}

.language-selector {
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 100%;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 110%;
  padding: 6px;
  display: flex;
  align-items: center;
}

@media (max-width: 1250px) {
  .header-map-container__col--2 {
    margin: 0 20px;
  }
}

@media (max-width: 992px) {
  .header-map-container__col--3 {
    position: static;
    margin-left: auto;
  }
  .header-map-mobile-icon {
    cursor: pointer;
    width: 25px;
  }
  .header-map-search-icon,
  .header-map-mobile-icon {
    top: 0;
  }

  .search-container {
    position: relative;
    width: 90vw !important;
    z-index: 1001;
  }

  .search-container input::placeholder {
    font-size: 16px;
  }

  .header-map-mobile-icon {
    font-size: 2rem;
    color: #fff;
  }
}

.burger-menu {
  position: relative;
  width: 25px;
  height: 25px;
  cursor: pointer;
  z-index: 1000;
}

.burger {
  position: absolute;
  background: white;
  width: 100%;
  height: 2.55px;
  top: 50%;
  right: 0px;
  margin-top: -2.5px;
  opacity: 1;
}

.burger::before {
  position: absolute;
  background: white;
  width: 25px;
  height: 2.55px;
  top: 10px;
  content: '';
  display: block;
}

.burger::after {
  position: absolute;
  background: white;
  width: 25px;
  height: 2.55px;
  bottom: 10px;
  content: '';
  display: block;
}

.burger::after,
.burger::before,
.burger {
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

.burger-menu.menu-on .burger::after {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  bottom: 0px;
}

.burger-menu.menu-on .burger::before {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  top: 0px;
}

.burger-menu.menu-on .burger {
  background: rgba(111, 111, 111, 0);
}

.masonry--margin {
  margin: 20px 0 75px 0;
  overflow: auto;
}

.masonry--margin-site img {
  object-fit: cover;
  height: 10vh;
}

.masonry--margin-site img:first-child {
  height: 30vh;
}

.two-pics-gallery img {
  height: 30vh;
  object-fit: cover;
}

@media screen and (max-width: 1000px){
  .aligned-row {
    display: block;
  }
}

.masonry__item {
  float: left;
  cursor: pointer;
  margin-right: 1px;
  margin-bottom: 1px;
  height: auto;
}

.masonry__item--last {
  margin-right: 0;
}

.masonry__item--full {
  width: 100%;
}

.masonry__item--half {
  width: calc(50% - 0.5px);
}

.masonry__item--third {
  width: calc(33.3333333% - 0.67px);
}

.masonry__item--quarter {
  width: calc(25% - 0.75px);
}

.masonry__item--fifth {
  width: calc(20% - 0.8px);
}

@media (max-width: 992px) {
  .masonry__item--half {
    width: calc(50% - 0.5px);
  }
  .masonry--margin {
    margin: 20px 0 0 0;
  }
}

@media (max-width: 768px) {
  .masonry--margin-site img:first-child {
    height: 30vh;
  }

  .masonry__item--half {
    width: calc(50% - 0.5px);
  }

  .two-pics-gallery > img {
    height: 30vh !important;
    width: 49%;
    display: flex;
    object-fit: cover;
  }

  .one-pic-gallery > img{
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .one-pic-gallery > img{
    height: 30vh !important;
  }

  .one-pic-gallery {
    margin: 0 auto;
  }
}

.report-select-label {
  margin-bottom: 15px;
}

#report-modal span.select2.select2-container.select2-container--bootstrap {
  border-bottom: 2px solid #d1d1df;
  padding-bottom: 5px;
  padding-left: 0;
}

#report-modal input.select2-search__field {
  color: #595389;
  font-weight: 400;
}

#report-modal .select2-container--bootstrap .select2-selection,
#report-modal .select2-container--bootstrap.select2-region .select2-selection {
  background: transparent;
  margin: 0;
  padding: 0;
  border: none;
  box-shadow: none;
  font-size: 18px;
  outline: none;
}

#report-modal .select2-container--bootstrap .select2-selection {
  color: #8a8cad;
}

#report-modal .select2-container > * {
  outline: none;
}

#report-modal
  .select2-container--bootstrap.select2-container--focus
  .select2-selection,
#report-modal
  .select2-container--bootstrap.select2-container--open
  .select2-selection,
#report-modal .select2-container--bootstrap .select2-dropdown {
  box-shadow: none;
  border: none;
}

#report-modal
  .select2-container--bootstrap
  .select2-search__field::-webkit-input-placeholder {
  color: #8a8cad;
}

#report-modal
  .select2-container--bootstrap
  .select2-search__field:-moz-placeholder {
  color: #8a8cad;
}

#report-modal
  .select2-container--bootstrap
  .select2-search__field::-moz-placeholder {
  color: #8a8cad;
  opacity: 1;
}

#report-modal
  .select2-container--bootstrap
  .select2-search__field:-ms-input-placeholder {
  color: #8a8cad;
}

#report-modal span.select2-dropdown.select2-dropdown--below {
  background-color: transparent;
  color: #1b1464 !important;
  top: -1px;
}

#report-modal li.select2-results__option {
  background-color: white !important;
  min-height: 50px !important;
  border-bottom: 1px solid #e8e8ef;
  border-left: 1px solid #e8e8ef;
  border-right: 1px solid #e8e8ef;
  font-size: 14px;
  display: flex;
  align-items: center;
}

#report-modal li.select2-results__option:nth-last-of-type {
  border-bottom: none;
}

#report-modal li.select2-results__option:first-child {
  border-top: 1px solid #e8e8ef;
}

#report-modal li.select2-results__option.select2-results__option--highlighted {
  background-color: #4a4a73 !important;
}

#report-modal li.select2-selection__choice {
  color: #8a8cad !important;
  background-color: transparent !important;
}

#report-modal
  .select2-container--bootstrap
  .select2-results
  > .select2-results__options {
  max-height: none;
}

#report-modal .dive-select-custom > h4 {
  display: inline-block;
  font-weight: 500;
  font-size: 20px;
}

#report-modal .dive-select-custom > img {
  width: 70px;
  float: right;
}

#report-modal .dive-select-custom > p {
  margin: -10px 0 0 0;
  font-weight: 300;
  color: #8a8cad;
}

.drag-drop {
  text-align: center;
  padding: 25px;
  margin-top: 35px;
  border: 2px dashed #d1d1df;
  max-width: 662px;
}

.drag-drop--dragover {
  border-color: #595389;
}

.drag-drop__primary-text {
  margin: 0;
}

.drag-drop__secondary-text {
  text-transform: uppercase;
  font-weight: 300;
  color: #d1d1df;
  margin: 10px 0 15px 0;
}

.drag-drop__secondary-text > span:not(.color-light-purple-alternative) {
  color: #8a8cad;
}

.drag-drop-before::before {
  position: absolute;
  width: 100%;
  height: 150%;
  content: '';
  border: 2px dotted;
  animation: rainbow-border 2.5s ease-in infinite;
}

.popup-container {
  display: flex;
}

.popup-container > * {
  flex: 1 0 auto;
}

.popup-container__col:first-child {
  padding-right: 2.5%;
}

.popup-container__col:last-child {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.popup-container__col--center {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.popup-container__title {
  font-size: 1.73333em;
  font-weight: 700;
  margin: -3px 0 0 0;
}

.popup-container__title > a {
  color: #113270;
  text-decoration: none;
}

.popup-container__title > a:hover,
.popup-container__title > a:active,
.popup-container__title > a:focus,
.popup-container__title > a:active:focus {
  border: none;
}

.popup-container__regions {
  font-size: 1.416669em;
  font-weight: 300;
  margin: 2px 0 0 0;
}

.popup-container__favorite--active {
  background-color: #ff931e !important;
}

.popup-container__add-list-btn {
  margin: 0 5px;
}

.popup-container__add-list-btn > span {
  position: relative;
}

.popup-container__pick-list-btn {
  position: absolute;
  right: 0;
  top: -15px;
}

.popup-container__favorite,
.popup-container__add-list-btn,
.popup-container__pick-list-btn {
  border-radius: 2px;
  cursor: pointer;
  height: 30px;
  width: 30px;
  background-color: #bdccd4;
  font-size: 25px;
  color: white;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-container__pick-list-btn {
  font-size: 15px;
}

.popup-container__favorite__icon {
  width: 15px;
  fill: white;
  position: relative;
  top: -1px;
}

.btn-square--popup {
  margin-left: 0;
}

.popup-container__list-error {
  position: absolute;
  top: -24px;
  left: -151px;
  color: #f54e64;
}

.popup-container__select-list {
  position: absolute;
  left: -161px;
  top: -15px;
  z-index: 1000;
  width: 131px;
  height: 30px;
  padding: 0 0 0 5px;
  border: none;
  border-radius: 2px;
  font-size: 14px;
  background-color: white;
}

.popup-container__select-list::placeholder {
  font-size: 14px;
}

.popup-container__close-list-btn {
  position: relative;
  top: 1px;
  left: 5px;
  color: rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.popup-container__close-list-btn:hover,
.popup-container__close-list-btn:active,
.popup-container__close-list-btn:focus,
.popup-container__close-list-btn:active:focus {
  color: #1b1464;
}

.popup-container__pick-list-btn--enabled,
.popup-container__add-list-btn--picked {
  background-color: #332c8a;
}

.popup-content__list-dropdown {
  position: absolute;
  top: 91px;
  right: 45.5px;
  width: 151px;
  max-height: 190px;
  overflow-y: auto;
  background-color: white;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.popup-container__list-dropdown-container {
  display: flex;
  position: relative;
}

.popup-container__list-dropdown {
  position: absolute;
  top: 16px;
  right: 0;
  width: 161.5px;
  max-height: 200px;
  overflow-y: auto;
  background-color: white;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.popup-container__list-dropdown__item {
  padding: 10px 4.25px;
  margin: 0;
  display: flex;
  align-items: center;
  flex: 0 0 100%;
  cursor: pointer;
  color: #4a4a73;
  min-height: 40px;
  border-bottom: 1px solid #d1d1df;
  /* These are technically the same, but use both */
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  /* This is the dangerous one in WebKit, as it breaks things wherever */
  word-break: break-all;
  /* Instead use this non-standard one: */
  word-break: break-word;
  /* Adds a hyphen where the word breaks, if supported (No Blink) */
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.popup-container__list-dropdown__item:hover {
  background-color: #4a4a73;
  color: white;
}

.popup-container__list-dropdown__item > input[type='checkbox'] {
  position: relative;
  top: -1px;
  margin-right: 5px;
}

.popup-container__list-dropdown__item--add {
  padding: 5px;
  justify-content: center;
  color: #a2c63f;
  min-height: 30px;
}

.popup-container__list-dropdown__item--add:hover {
  background-color: white;
  color: #a2c63f;
}

.popup-container__list-dropdown__item--selected {
  background-color: #4a4a73;
  color: white;
}

.loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 10000;
}

.loading--site {
  position: absolute;
  right: -50px;
}

.loading--bottom {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.loading__icon {
  width: 275px;
}

.loading__icon--small,
.loading__icon--site {
  width: 50px;
  position: relative;
}

.loading__icon--small {
  top: -10px;
}

.loading__text {
  color: #d1d1df;
  font-size: 25px;
  font-weight: 300;
  margin-top: -50px;
}

.search-cover {
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 401;
  color: #595389;
  font-size: 1.25em;
  border-radius: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  width: 400px;
  height: 37px;
  position: relative;
  /*position: absolute;
  top: 11px;
  left: 300px;*/
  transition: width 0.25s ease-in;
}

.search-cover--focus {
  width: 500px;
  background-color: white;
}

.search-cover--full {
  width: 100% !important;
}

#search-cover {
  /* Make Select2 boxes match Bootstrap3 heights: */
}

#search-cover .select2-container--bootstrap {
  display: inline-block;
  margin-right: 10px;
}

#search-cover .select2-selection__rendered {
  line-height: 35px !important;
}

#search-cover .select2-selection {
  height: 46px !important;
}

#search-cover
  .select2-container--bootstrap
  .select2-selection--multiple
  .select2-search--inline
  .select2-search__field {
  height: 45px;
}

#search-cover
  .select2-container--bootstrap
  .select2-selection--multiple
  .select2-selection__choice__remove {
  display: none;
}

#search-cover
  .select2-container--bootstrap
  .select2-selection--multiple
  .select2-selection__choice {
  border: none;
}

#search-cover .select2-container--bootstrap .select2-selection,
#search-cover .select2-container--bootstrap.select2-region .select2-selection {
  background: transparent;
  margin: 0;
  padding: 0;
  border: none;
  box-shadow: none;
  font-size: 20px;
  outline: none;
}

#search-cover .select2-container--bootstrap .select2-selection {
  color: #8a8cad;
}

#search-cover .select2-container--bootstrap {
  width: 500px !important;
}

#search-cover .select2-search__field {
  width: 139% !important;
}

#search-cover .select2-container > * {
  outline: none;
}

#search-cover li.select2-selection__choice {
  color: #8a8cad !important;
  background-color: transparent !important;
}

#search-cover
  .select2-container--bootstrap.select2-container--focus
  .select2-selection,
#search-cover
  .select2-container--bootstrap.select2-container--open
  .select2-selection,
#search-cover .select2-container--bootstrap .select2-dropdown {
  box-shadow: none;
  border: none;
}

#search-cover
  .select2-container--bootstrap
  .select2-search__field::-webkit-input-placeholder {
  color: #595389;
}

#search-cover
  .select2-container--bootstrap
  .select2-search__field:-moz-placeholder {
  color: #595389;
}

#search-cover
  .select2-container--bootstrap
  .select2-search__field::-moz-placeholder {
  color: #595389;
  opacity: 1;
}

#search-cover
  .select2-container--bootstrap
  .select2-search__field:-ms-input-placeholder {
  color: #595389;
}

.select2-search-dropdown {
  background-color: transparent;
  color: #1b1464 !important;
  border: none !important;
  box-shadow: none !important;
}

.select2-search-dropdown ul#select2-search-name-results {
  max-height: 350px !important;
}

.select2-search-dropdown li.select2-results__option {
  background-color: white !important;
  height: 70px !important;
  border-bottom: 1px solid #e8e8ef;
  outline: none;
}

.select2-search-dropdown
  li.select2-results__option.select2-results__option--highlighted {
  background-color: #4a4a73 !important;
}

.select2-search-dropdown li.select2-results__option.select2-results__message {
  display: none;
}

.select2-search-dropdown .select2-custom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  font-size: 19px;
  height: 100%;
  margin: 0 119px;
}

.select2-search-dropdown .select2-add-ds {
  padding-left: 85px;
}

.select2-search-dropdown .search-indicator-icon {
  width: 25px;
  position: absolute;
  left: -45px;
  top: 15px;
}

.select2-search-dropdown .search-indicator-icon .pressure-svg-2 {
  stroke: #8a8cad;
}

.select2-search-dropdown .select2-custom > h4 {
  margin: 0;
  font-weight: 500;
  font-size: clamp(10px, 0.5vw + 12px, 20px);
}

.select2-search-dropdown .select2-custom__region {
  font-weight: 300;
  color: #8a8cad;
  margin-left: 11px;
}

.select2-search-dropdown
  span.select2.select2-container.select2-container--bootstrap {
  padding: 0;
  border: 0;
}

.select2-search-dropdown {
  margin-left: -10vw;
  top: 8px;
  width: 52vw !important;
}

@media(min-width: 992px) {
  .select2-search-explore-page {
    width: 80vw !important;
    top: -10px ;
  }
}

@media (max-width: 1200px) {
  .search-cover--focus {
    width: 360px;
  }
}

@media (max-width: 992px) {
  .search-cover {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 60px;
    background-color: white;
    border-radius: 0;
  }

  #search-cover .search-cover__close-icon {
    margin-right: 12px;
  }

  .select2-search-dropdown {
    top: 1px !important;
    left: 5vw !important;
    right: 5vw !important;
    margin-left: 0 !important;
    width: 90vw !important;
  }

  .select2-search-dropdown .select2-custom {
    margin: 0;
    padding-left: 45px;
  }

  .select2-search-dropdown .select2-add-ds {
    padding-left: 12px;
  }

  .select2-search-dropdown .select2-container--bootstrap {
    width: 90% !important;
  }
  .select2-search-dropdown .search-indicator-icon {
    left: 0;
  }
  .select2-container--open {
    left: 0 !important;
  }

  .select2-search-explore-page {
    margin-left: 0 !important;
  }
}

#crowd-shortcut {
  display: none !important;
}

.share-container {
  position: absolute;
  bottom: -40px;
  left: 0;
  margin-top: 15px;
  padding-left: 3.7%;
  font-size: 18px;
  color: #8a8cad;
  width: 100%;
  display: flex;
  align-items: center;
}

.share-col-1 > span {
  margin-left: 5px;
}

.share-col-2 {
  position: relative;
}

.share-col-2 > a {
  padding-bottom: 0;
  margin-left: 15px;
}

.share-container--dive-site {
  position: static;
  padding-left: 14.1%;
}

.share-container--dive-center {
  position: relative;
  left: -1.5%;
  bottom: 0;
}

.share-link {
  text-decoration: none;
  border-bottom-color: transparent;
  font-weight: 400;
}

.share-link--facebook {
  color: #3b5998;
}

.share-link--facebook:hover,
.share-link--facebook:active,
.share-link--facebook:focus,
.share-link--facebook:active:focus {
  color: #3b5998;
  border-bottom-color: #3b5998;
}

.share-link--twitter {
  color: #1dcaff;
}

.share-link--twitter:hover,
.share-link--twitter:active,
.share-link--twitter:focus,
.share-link--twitter:active:focus {
  color: #1dcaff;
  border-bottom-color: #1dcaff;
}

@media (max-width: 550px) {
  .share-container {
    flex-direction: column;
    bottom: -66px;
    justify-content: center;
    padding-left: 0;
  }
  .share-container--dive-center {
    position: relative;
    left: 0;
    bottom: 0;
    padding: 0;
  }
  .share-col-2 > a:first-child {
    margin-left: 0;
  }
}

.buddy-list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 15px;
}

.buddy-list--item {
  width: 64px;
  height: 60px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.buddy-list--item:last-child {
  margin-bottom: 0;
}

.buddy-list--item--active {
  border: 1px dashed #a2c63f;
  padding: 0 1rem;
}

.notification {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  cursor: pointer;
  position: relative;
}

.notification--color {
  color: #8a8cad;
  border-color: #8a8cad;
}

.notification--top {
  top: 1px;
}

.notification__number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: white;
  background-color: #ff931e;
}

.avatar-red-point,
.message-orange-point,
.burger-messages-red-point {
  background-color: #ff931e;
  border-radius: 50%;
  height: 10px;
  width: 10px;
}

.avatar-red-point {
  position: relative;
  bottom: 12px;
  right: 9px;
  z-index: 2;
}

.message-orange-point {
  position: absolute;
  right: 18px;
  top: 14px;
}

.dropdown-map .message-orange-point {
  right: -8px;
  top: -3px;
}

.burger-messages-red-point {
  position: relative;
  display: inline-block;
  right: 6px;
  bottom: 10px;
}

@media (max-width: 992px) {
  .notification {
    width: 35px;
    height: 35px;
    right: 15px;
  }
  .notification__number {
    height: 18px;
    width: 18px;
    top: -5px;
    right: -8px;
    font-size: 10px;
  }
  .avatar-red-point {
    position: absolute;
    top: 6px;
    right: -4px;
  }
}

/**
============= Feed Stats =============
 */
.feed-stats {
  min-height: 190px;
  position: relative;
}

.feed-stats__entry {
  min-height: 58px;
  color: #8a8cad;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
}

.feed-stats__entry--clickable {
  cursor: pointer;
}

.feed-stats__number {
  font-family: 'Libre Baskerville', 'Helvetica Neue', Helvetica, Arial,
    sans-serif;
  font-weight: 700;
  font-size: 33px;
  padding-bottom: 0;
  border: none;
}

.feed-stats__text {
  font-size: 11px;
  position: relative;
  top: -5px;
}

.feed-stats-icon {
  margin-right: 20px;
  font-size: 50px;
}

.feed-stats-icon {
  margin-right: 20px;
  font-size: 50px;
}

.feed-stats-svg {
  width: 42px;
  margin-right: 20px;
  flex-shrink: 0;
}

@media (max-width: 1490px) {
  .feed-entry__center-icon {
    right: 15px;
  }
}

@media (max-width: 992px) {
  .feed-stats {
    top: 10px;
    min-height: 90px;
  }
  .feed-stats-icon {
    font-size: 40px;
  }
  .feed-stats__number {
    font-size: 25px;
  }
  .feed-stats-svg {
    width: 36px;
  }
  .feed-stats__entry {
    padding: 15px 0;
    width: 200px;
  }
  .stats-border--feed {
    bottom: -20px !important;
  }
}

@media (max-width: 520px) {
  .discard-dc-btn {
    margin: 15px 0 0 0;
  }
  .feed-entry__mb-mobile {
    margin-bottom: 15px;
  }
}

.multbg-top-to-bottom {
  border-top: 3px solid #d1d1df;
  background-image: -webkit-gradient(
    linear,
    0 0,
    0 100%,
    from(#d1d1df),
    to(transparent)
  );
  background-image: -webkit-linear-gradient(#d1d1df, transparent);
  background-image: -moz-linear-gradient(#d1d1df, transparent),
    -moz-linear-gradient(#d1d1df, transparent);
  background-image: -o-linear-gradient(#d1d1df, transparent),
    -o-linear-gradient(#d1d1df, transparent);
  background-image: linear-gradient(#d1d1df, transparent),
    linear-gradient(#d1d1df, transparent);
  -moz-background-size: 3px 100%;
  background-size: 3px 100%;
  background-position: 0 0, 100% 0;
  background-repeat: no-repeat;
}

.editor-container {
  margin: 50px 0;
}

.ql-editor {
  font-family: 'Libre Baskerville', 'Open Sans', 'Helvetica Neue', 'Helvetica',
    'Arial', sans-serif;
  font-weight: 300;
  font-size: 125%;
  min-height: 250px;
}

.ql-preview {
  font-size: 110%;
}

.ql-editor.ql-blank::before {
  color: #d1d1df;
}

.collapse-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  height: auto;
  margin-left: 10px;
}

.collapse-icon i {
  display: block;
  transition: all 0.1s ease;
  font-size: 15px;
  color: #332c8a;
}

.collapse-icon--down {
  transform: rotateZ(90deg);
}

.loading-bullets {
  margin-top: 50px;
  text-align: center;
}

.loading-bullets > div {
  width: 25px;
  height: 25px;
  background-color: #4a4a73;
  margin-right: 5px;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.loading-bullets .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.loading-bullets .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}

@keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

span.select2-selection.select2-selection--single.select2-default {
  border-color: #d1d1df;
  box-shadow: none;
}

span.select2-selection.select2-selection--single.select2-default
  .select2-selection__rendered {
  color: #8a8cad;
}

span.select2-dropdown.select2-default-dropdown {
  border: 1px solid #d1d1df;
}

span.select2-dropdown.select2-default-dropdown
  span.select2-search.select2-search--dropdown
  input.select2-search__field {
  color: #595389;
  border: 1px solid #d1d1df;
}

span.select2-dropdown.select2-default-dropdown .select2-results__option {
  padding: 9px;
  color: #595389;
  border-bottom: 1px solid #d1d1df;
}

span.select2-dropdown.select2-default-dropdown .select2-results__option:hover,
span.select2-dropdown.select2-default-dropdown
  .select2-results__option--highlighted {
  background-color: #4a4a73;
  color: white;
}

.activity {
  max-height: 750px;
  width: 35%;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.9);
  position: absolute;
  top: 60px;
  z-index: 400;
  overflow-y: scroll;
}

.activity__header {
  margin: 0 0 20px 0;
}

.activity__card {
  margin: 0 auto 25px auto;
  padding: 15px;
  background-color: white;
}

.activity__card__main {
  font-size: 16px;
}

.activity__card__secondary {
  margin-top: 15px;
  font-size: 14px;
  color: #8a8cad;
  display: flex;
  align-items: baseline;
}

.activity__card__secondary i {
  font-size: 20px;
  color: #d1d1df;
}

.activity__card:last-of-type {
  margin-bottom: 0;
}

.activity__stars {
  margin-left: auto;
}

.activity__footer {
  text-align: center;
  color: #8a8cad;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.activity__card--select {
  color: #4a4a73;
  cursor: pointer;
}

.activity__card--select:hover,
.activity__card--select:active,
.activity__card--select:focus,
.activity__card--select:active:focus {
  box-shadow: 0 6px 12px -2px rgba(74, 74, 115, 0.15),
    0 3px 7px -3px rgba(74, 74, 115, 0.2);
}

.activity-slider {
  background-color: rgba(7, 26, 57, 0.9);
  color: white;
  font-size: 20px;
  width: 35px;
  height: 35px;
  position: absolute;
  top: 60px;
  left: 35%;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.activity-slider:hover,
.activity-slider:active,
.activity-slider:focus,
.activity-slider:active:focus {
  background-color: #071a39;
}

.activity-slider i {
  transition: all 0.3s ease-in-out;
}

.stats-border--activity {
  position: relative;
  width: 80%;
  background-position: center;
  margin: 0 auto 40px auto;
}

.slide-left-in {
  animation: slide-left-in 0.25s forwards;
}

.slide-left-out {
  animation: slide-left-out 0.25s forwards;
}

@keyframes slide-left-in {
  0% {
    left: 0;
  }
  100% {
    left: 35%;
  }
}

@keyframes slide-left-out {
  0% {
    left: 35%;
  }
  100% {
    left: 0;
  }
}

@media (max-width: 1023px) {
  .masonry--margin-site img {
    height: 15vh !important;
  }

  .activity {
    display: none;
  }
  .activity-slider {
    display: none;
  }
}

@media (max-height: 892px) {
  .activity {
    max-height: 578px;
  }
}

@media (max-height: 992px) and (min-height: 892px) {
  .activity {
    max-height: 730px;
  }
}

@media (max-width: 1250px) {
  .activity {
    width: 53%;
  }
  .activity-slider {
    left: 53%;
  }
  @keyframes slide-left-in {
    0% {
      left: 0;
    }
    100% {
      left: 53%;
    }
  }
  @keyframes slide-left-out {
    0% {
      left: 53%;
    }
    100% {
      left: 0;
    }
  }
}

@media (min-width: 1250px) and (max-width: 1650px) {
  .activity {
    width: 45%;
  }
  .activity-slider {
    left: 45%;
  }
  @keyframes slide-left-in {
    0% {
      left: 0;
    }
    100% {
      left: 45%;
    }
  }
  @keyframes slide-left-out {
    0% {
      left: 45%;
    }
    100% {
      left: 0;
    }
  }
}

.markdown-container {
  line-height: 1.5;
}

.markdown-container > h1:first-child {
  margin-top: 0;
}

.markdown-container p {
  margin-bottom: 25px;
  font-size: 15px;
}

.markdown-container img {
  max-width: 100%;
}

.overlay-card {
  max-width: 350px;
  height: 350px;
  position: relative;
}

.overlay-card--small {
  max-width: 150px;
  height: 150px;
}

.overlay-card img {
  width: 100%;
}

.overlay-card__text {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px 0 40px 15px;
  background-color: rgba(255, 255, 255, 0.75);
}

.overlay-card h3 {
  margin: 0;
  color: #1b1464;
}

.overlay-card--small > .overlay-card__text {
  padding: 5px 0 15px 8px;
}

.beside-card {
  display: flex;
  border-radius: 3px;
}

.beside-card__pic {
  display: inline-block;
  flex: 0 0 128px;
}

.beside-card__pic > img {
  max-width: 100%;
  height: 100px;
}

.beside-card__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.beside-card__text > p {
  margin: 0;
}

.beside-card__stars {
  margin-bottom: -7px;
}

.beside-card__stars > span {
  margin-right: 1px;
}

.shaka-anchor {
  display: inline-block;
  position: relative;
}

.shaka-container {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  color: #fff;
  font-weight: 300;
}

.shaka-container__feed-entry {
  position: absolute;
  top: 43px;
  right: 0;
  width: 27px;
  z-index: 2;
}

.shaka-container__dive-picture {
  position: absolute;
  top: 6px;
  right: 12px;
}

.shaka-icon {
  cursor: pointer;
}

.shaka-icon__feed-entry {
  width: 25px;
  height: 25px;
}

.shaka-icon__footer-small-map {
  width: 50px;
  height: 50px;
}

.shaka-icon__dive-picture {
  width: 25px;
  height: 25px;
}

.shaka-counter__feed-entry {
  position: absolute;
  left: 16px;
  bottom: -1px;
  font-size: 8px;
}

.shaka-counter__dive-picture {
  position: absolute;
  left: 18px;
  bottom: -3px;
  font-size: 9px;
}

.shaka-given {
  color: #ff931e;
}

@media (max-width: 1490px) {
  .shaka-container__feed-entry {
    position: absolute;
    bottom: 1px;
    top: auto;
  }
}

.hide {
  display: none;
}

.nps {
  position: fixed;
  bottom: 100px;
  right: 0;
  left: 0;
  border-radius: 5px;
  z-index: 1100;
  border: 1px solid #ccc;
  box-shadow: 1px 2px 12px #ccc;
  max-width: 767px;
  margin: 0 auto;
}

.nps #nps-dismiss {
  position: absolute;
  font-size: 25px;
  right: 20px;
  top: 5px;
  cursor: pointer;
  font-weight: 300;
  opacity: 0.5;
  z-index: 1200;
}

.nps-container {
  position: relative;
  font-size: 14px;
  width: 100%;
  background-color: #fff;
}

.nps-container .nps-content {
  width: 100%;
  padding: 25px 30px;
}

.nps-container .nps-content__title {
  margin-bottom: 20px;
  font-size: 1.5em;
  max-width: 90%;
}

.nps-container .nps-content__subtitle {
  margin-bottom: 15px;
  font-size: 1.2em;
}

.nps-container .nps-content__subtitle .site-name {
  font-weight: 700;
  color: #1b1464;
}

.nps-container .form-scores {
  margin-bottom: 15px;
}

.nps-container .form-scores__header {
  display: flex;
  justify-content: space-between;
}

.nps-container .form-scores__header-hint {
  color: #808080;
}

.nps-container .form-scores__values {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-top: 5px;
}

.nps-container .form-scores__values-num {
  border-radius: 50%;
  color: #000;
  width: 50px;
  height: 50px;
  border: 2px solid #a3deff;
  background-color: #fff;
  cursor: pointer;
}

.nps-container .form-scores__values-num.active {
  background-color: #a3deff;
  color: #fff;
}

.nps-container .form-scores__values-num:hover {
  background-color: #a3deff;
}

.nps-container .nps-error__title {
  font-size: 21px;
  color: #8a4169;
}

.nps-container.flash-active {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 260px;
}

.nps-container.flash-active .nps-content {
  display: none;
}

.nps-container .success-flash {
  position: absolute;
  max-width: 80%;
  opacity: 0;
}

.nps-container .success-flash__message {
  font-size: 1.4em;
  margin: 0;
  word-break: break-word;
}

.nps-container .flash-visible {
  position: relative;
  opacity: 1;
  transition: opacity 0.3s;
}

.nps-container #feedback-textbox {
  width: 100%;
  margin-bottom: 15px;
  border: 2px solid #a3deff;
  border-radius: 5px;
  padding: 5px 8px;
}

.nps-container #feedback-textbox:focus {
  outline: none;
}

@media (max-width: 767px) {
  .nps-container {
    font-size: 12px;
    bottom: 0;
    text-align: center;
    border-radius: 0;
  }
  .nps-container-content__title {
    margin: 0 auto 20px;
  }
}

@media (max-width: 600px) {
  .nps-container .nps-content {
    padding: 15px;
  }
  .nps-container .form-scores__values-num {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 470px) {
  .nps-container .form-scores__values-num {
    width: 30px;
    height: 30px;
  }
}

.comments__link {
  color: #1cb0dd;
  border-color: #1cb0dd;
  padding-bottom: 1px;
  opacity: 1;
}

.comments__button {
  color: #1cb0dd;
  opacity: 1;
  font-weight: bold;
  padding-right: 10px;
}

span.site-dive-details-content__comment:before {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  height: 30px;
  width: 30px;
  border: none;
  border-bottom-left-radius: 50%;
  background: transparent;
  box-shadow: 0 20px 0 0 rgb(240, 249, 253);
}

span.site-dive-details-content__comment {
  position: relative;
  display: block;
  padding: 33px;
  margin: 10px;
  background-color: #f0f9fd;
  white-space: normal;
  color: #2f4565;
  opacity: 0.75;
  font-size: 1.6rem;
  line-height: 1.5;
  width: 90%;
  letter-spacing: 0;
}

.header-map {
  display: flex;
  position: absolute;
  z-index: 1001;
  top: 0;
  left: 0;
  height: 160px;
  width: 100%;
  background-image: linear-gradient(
    #010547,
    rgba(1, 5, 71, 0.945) 7.9%,
    rgba(1, 5, 71, 0.883) 15.3%,
    rgba(1, 5, 71, 0.815) 22.2%,
    rgba(1, 5, 71, 0.743) 28.7%,
    rgba(1, 5, 71, 0.667) 34.8%,
    rgba(1, 5, 71, 0.589) 40.6%,
    rgba(1, 5, 71, 0.509) 46.2%,
    rgba(1, 5, 71, 0.429) 51.7%,
    rgba(1, 5, 71, 0.348) 57.2%,
    rgba(1, 5, 71, 0.269) 62.8%,
    rgba(1, 5, 71, 0.193) 68.7%,
    rgba(1, 5, 71, 0.121) 75.2%,
    rgba(1, 5, 71, 0.059) 82.6%,
    rgba(1, 5, 71, 0.015) 91.2%,
    transparent
  );
}

.header-map__row {
  margin: 35px 70px 0 70px;
}

.header-map__row--top {
  position: relative;
  top: -2px;
}

.header-map__row--right {
  margin-left: auto;
}

.header-map__logo {
  width: 130px;
  display: inline-block;
}

.header-map__logo:hover,
.header-map__logo:active,
.header-map__logo:focus,
.header-map__logo:active:focus {
  outline: none;
}

.header-map__logo > a:hover,
.header-map__logo > a:active,
.header-map__logo > a:focus,
.header-map__logo > a:active:focus {
  text-decoration: none;
  outline: none;
  border: none;
}

.header-map__menu {
  position: relative;
  top: -11px;
}

.header-map__row__link {
  color: white;
}

.header-map__row__link:hover,
.header-map__row__link:active,
.header-map__row__link:focus,
.header-map__row__link:active:focus {
  color: white;
  outline: none;
  border-color: transparent;
}

.fa-vertical-line:after {
  content: '\007C';
}

.avatar-map,
.avatar-list,
.default-avatar {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  top: -2.5px;
}

.avatar-list {
  margin-left: 0;
  top: 0;
}

.default-avatar {
  border: 2px solid white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  top: -0.75px;
}

.default-avatar > i {
  color: white;
  font-size: 20px;
}

.default-avatar--list {
  margin-left: 0 !important;
  border-color: #8a8cad;
}

.default-avatar--list > i {
  color: #8a8cad;
}

.default-avatar--dark {
  border-color: #8a8cad;
}

.default-avatar--dark > i {
  color: #8a8cad;
}

.default-avatar--light-purple {
  border-color: #8a8cad;
}

.default-avatar--light-purple > i {
  color: #8a8cad;
}

.default-avatar--big {
  width: 50px;
  height: 50px;
  border-color: #8a8cad;
  top: -14px;
  cursor: default;
  margin-left: 0;
}

.default-avatar--big > i {
  color: #8a8cad;
  font-size: 25px;
}

.delimiter {
  color: white;
  position: relative;
  top: -6px;
  left: -7px;
  margin: 0 50px 0 45px;
  font-size: 2.5em;
  opacity: 0.6;
  mix-blend-mode: overlay;
}

.delimiter--menu {
  margin-left: 47px;
  margin-right: 11px;
  top: 4px;
}

.my-map-second-half-col .default-avatar {
  top: 1px;
}

@media (max-width: 980px) {
  .header-map {
    flex-wrap: wrap;
    justify-content: center;
  }
  .header-map__row {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  .header-map__logo {
    width: 150px;
  }
  .header-map__row--right {
    margin: 0;
  }
}

.footer {
  background-color: white;
  z-index: 3;
  height: 75px;
  border-top: 3px solid #e1e1e5;
  padding: 0 80px;
  margin-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.footer a {
  font-size: 13px;
  margin-right: 20px;
}

.footer a:last-child {
  margin-right: 0;
}

.footer-first-links-container {
  margin-right: auto;
}

.footer--small {
  padding: 0 25px;
  margin-top: 0;
}

.footer-second-links-container {
  margin-right: 50px;
}

@media (max-width: 650px) {
  .footer-first-links-container {
    width: 100%;
    text-align: center;
  }
  .footer-second-links-container {
    width: 100%;
    justify-content: center;
    margin: 15px 0;
  }
  .footer-third-links-container {
    text-align: center;
  }
  .footer-third-links-container > * {
    display: block;
    margin-right: 0 !important;
  }
  .footer {
    margin-top: 150px;
    padding: 0;
  }
}

@media (max-width: 900px) {
  .footer-second-links-container {
    margin-right: 0;
  }
}

.footer-small-map {
  position: absolute;
  z-index: 403;
  bottom: 0;
  height: 205px;
  width: 100%;
  padding-left: 105px;
  color: white;
  background-image: linear-gradient(
    transparent,
    rgba(1, 5, 71, 0.015) 7.9%,
    rgba(1, 5, 71, 0.059) 15.3%,
    rgba(1, 5, 71, 0.121) 22.2%,
    rgba(1, 5, 71, 0.193) 28.7%,
    rgba(1, 5, 71, 0.269) 34.8%,
    rgba(1, 5, 71, 0.348) 40.6%,
    rgba(1, 5, 71, 0.429) 46.2%,
    rgba(1, 5, 71, 0.509) 51.7%,
    rgba(1, 5, 71, 0.589) 57.2%,
    rgba(1, 5, 71, 0.667) 62.8%,
    rgba(1, 5, 71, 0.743) 68.7%,
    rgba(1, 5, 71, 0.815) 75.2%,
    rgba(1, 5, 71, 0.883) 82.6%,
    rgba(1, 5, 71, 0.945) 91.2%,
    #010547
  );
}

.footer-small-map__title {
  font-size: 60px;
  font-weight: 700;
}

.footer-small-map__star-container {
  margin-bottom: -10px;
}

.footer-small-map__title-container {
  display: flex;
  align-items: center;
}

.footer-small-map__delimiter {
  font-size: 50px;
  top: -2px;
  margin-left: 50px;
  margin-right: 35px;
}

.footer-small-map__title-margin-top {
  margin-bottom: -5px;
}

.footer-small-map__wave_delimiter {
  stroke: white;
  width: 100px;
  margin-top: -5px;
}

.footer-small-dive {
  height: auto;
  padding-bottom: 18px;
}

.footer-small-map__title-container--dive-public {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.footer-small-map--dive-center {
  height: 150px;
}

@media (max-width: 1450px) {
  .footer-small-map {
    padding-left: 70px;
    height: 250px;
  }
  .footer-small-dive {
    height: auto;
  }
}

@media (max-width: 980px) {
  .footer-small-map {
    padding: 0 35px;
    height: 37%;
  }
  .footer-small-map__title-container {
    justify-content: flex-end;
  }
  .footer-small-map__title {
    font-size: 30px;
  }
  .footer-small-map__subtitle {
    font-size: 20px;
    margin-top: 0;
  }
  .footer-small-map__wave_delimiter {
    width: 80px;
    margin-top: -7px;
  }
}

@media (max-width: 992px) {
  .footer-small-map {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 25px 15px;
  }
  .footer-small-map.footer-small-map--site {
    justify-content: flex-start;
  }
  .footer-small-map.footer-small-dive {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding-bottom: 35px;
  }
}

@media (max-width: 550px) {
  .footer-small-map {
    height: 25%;
    display: block;
  }
  .footer-small-map .star-icon--middle {
    width: 11px;
    height: 22px;
    margin-right: 1px;
  }
  .footer-small-map__title {
    font-size: 25px;
    margin-right: 15px;
  }
  .footer-small-map__subtitle {
    font-size: 15px;
  }
  .footer-small-map.footer-small-map--site {
    display: flex;
    justify-content: flex-start;
  }
  .footer-small-dive {
    height: 40%;
  }
  .footer-small-dive .star-icon--middle {
    width: 15px;
    height: 30px;
  }
  .footer-small-dive .footer-small-map__title-container {
    justify-content: flex-start;
    margin: 11px 0;
  }
  .footer-small-dive .footer-small-map__title {
    font-size: 16px;
  }
  .footer-small-dive .dive-change-date-input {
    font-size: 15px;
    padding: 0 0 15px 0;
    background-color: transparent;
  }
  .footer-small-dive
    .dive-datetimepicker-container
    .bootstrap-datetimepicker-widget.dropdown-menu.usetwentyfour.bottom {
    top: 84px !important;
  }
}

@media screen and (max-width: 550px) {
  .footer-small-map {
    top: 125px;
    left: 15px;
    background-image: none;
  }
  .footer-small-map.footer-small-dive {
    padding-bottom: 0;
  }
  .footer-small-dive {
    display: block;
  }
  .footer-small-dive .footer-small-map__title {
    font-size: 25px;
    margin-right: 15px;
  }
  .footer-small-dive .footer-small-map__star-container {
    margin: -10px 0 -5px 0;
  }
  .shaka-container__footer-small-map {
    position: absolute;
    bottom: unset;
    right: unset;
  }
}

@media (max-width: 992px) and (max-height: 500px) {
  .footer-small-dive {
    height: 40%;
  }
  .footer-small-dive .star-icon--middle {
    width: 15px;
    height: 30px;
    margin-right: 2px;
  }
  .footer-small-dive .footer-small-map__title-container {
    justify-content: flex-start;
    margin: 10px 0 10px 0;
  }
  .footer-small-dive .footer-small-map__title {
    font-size: 24px;
  }
  .footer-small-dive .dive-change-date-input {
    font-size: 18px;
    padding: 0 0 15px 0;
    background-color: transparent;
  }
  .footer-small-dive
    .dive-datetimepicker-container
    .bootstrap-datetimepicker-widget.dropdown-menu.usetwentyfour.bottom {
    top: 84px !important;
  }
}

.footer-big-map {
  z-index: 405;
  position: absolute;
  bottom: 3px;
  left: 0;
  height: 36px;
  width: 100%;
}

.footer-big-map__container {
  width: calc(100% - 120px);
  position: relative;
  left: 120px;
}

.footer-big-map__container__link {
  cursor: pointer;
  margin-right: 20px;
  font-size: 14px;
}

.footer-big-map__container__link--fake {
  cursor: default;
  color: white;
}

.footer-big-map__container__delimiter {
  top: 1px;
  margin-left: 20px;
  margin-right: 20px;
}

.footer-big-map__container__secondary-links {
  display: inline-block;
}

@media (max-width: 992px) {
  .footer-big-map {
    height: 55px;
  }
  .footer-big-map__container {
    position: absolute;
    width: 100%;
    left: 0;
    top: inherit;
    text-align: center;
  }
}

@media (max-width: 700px) {
  .footer-big-map__container {
    text-align: right;
  }
}

@media (max-width: 615px) {
  .footer-big-map__container {
    top: 0;
    width: 100%;
    text-align: center;
  }
  .footer-big-map__container__link {
    font-size: 12px;
  }
  .footer-big-map__container__secondary-links {
    margin-top: 5px;
    display: block;
  }
  .footer-big-map__container__secondary-links > * {
    display: inline;
  }
}

.modal-body__badge {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.modal-body__badge__img {
  height: 250px;
  margin-right: 30px;
  margin-top: 15px;
}

.modal-body__badge__img--last {
  margin-right: 0;
}

@media (max-width: 550px) {
  .modal-body__badge__img {
    height: 115px;
  }
}

.bootstrap-datetimepicker-widget.dropdown-menu {
  z-index: 1002;
}

.gm-style {
  color: transparent;
}

@media (max-width: 992px) {
  #crowd-shortcut {
    display: none !important;
  }
  .no-padding {
    padding: 0 10px;
  }
  .no-padding-mobile {
    padding: 0;
  }
}

@media (max-width: 550px) {
  .page-header {
    margin: 0;
  }
}

.site-body {
  overflow-x: hidden;
}

.small-map-container {
  height: 625px;
  position: relative;
}

#site-map {
  width: 100%;
  height: 100%;
}

.no-dive-icon {
  position: relative;
  width: 950px;
  margin: 0 auto;
  margin-top: -225px;
}

.no-dive-icon--small {
  width: 100%;
  margin-top: -165px;
}

.site-header {
  position: relative;
  font-weight: 700;
  font-size: 60px;
  color: #392480;
  margin-top: 65px;
  margin-bottom: 30px;
  z-index: 2;
}

.site-main-col {
  padding: 0 250px;
}

.site-description {
  font-family: 'Georgia', 'Ubuntu', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #041022;
  line-height: 1.7;
}

.site-description__credits {
  font-size: 75%;
  color: #d1d1df;
  font-family: 'Ubuntu', 'Open Sans', 'Helvetica Neue', 'Helvetica', 'Arial',
    sans-serif;
  margin-top: 15px;
}

.site-section {
  margin-top: 50px;
}

.site-section__title {
  color: #4a4a73;
  display: inline-block;
}

.site-section__subtitle {
  margin-top: -5px;
  margin-bottom: 5px;
}

.site-section__info {
  color: #ffad1e;
  font-size: 14px;
  font-weight: 300;
}

.site-section__delimiter {
  stroke: #4a4a73;
  width: 80px;
}

.site-section__content {
  margin-top: 35px;
}

.site-dive-details {
  margin-top: 45px;
}

.site-dive-details:first-child {
  margin-top: 0;
}

.site-dive-details-user {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.site-dive-details-user__avatar-icon-default {
  margin-top: 34px;
}

.site-dive-details-user__text-container {
  display: inline-block;
  margin-left: 20px;
  position: relative;
  top: -5px;
}

.site-dive-details-user__text-container__name {
  color: #f54e64;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
}

.site-dive-details-user__text-container__name > a {
  color: #f54e64;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  padding: 0;
  border: none;
}

.site-dive-details-user__text-container__name > a:hover,
.site-dive-details-user__text-container__name > a:active,
.site-dive-details-user__text-container__name > a:focus,
.site-dive-details-user__text-container__name > a:active:focus {
  border: none;
}

.site-dive-details-user__text-container__date {
  font-size: 16px;
  font-weight: 300;
  color: #8a8cad;
  margin-right: 15px;
}

.site-dive-details-user__date-stars-container {
  display: flex;
  align-items: center;
  margin-top: -15px;
}

.site-dive-details-user > :last-child {
  display: flex;
  margin-left: auto;
}

.site-dive-details-content {
  position: relative;
  border-radius: 3px;
  font-size: 18px;
  color: #8a8cad;
}

.site-dive-details-content__comment {
  line-height: 1.75;
  font-family: 'Georgia', 'Ubuntu', sans-serif;
  white-space: pre-wrap;
  font-style: italic;
  margin-inline-start: 2em;
}

.site-dive-details-content__comment + .site-dive-details-content-secondary {
  margin-top: 25px;
}

.site-dive-details-content__comment-header {
  margin-top: 1.75em;
}

.site-dive-details-content__comment-wrapper {
  margin-top: 20px;
}

.site-dive-details-content__comment-time {
  margin-left: 2em;
  font-size: 13px;
  color: #d1d1df;
}

.site-show-btn {
  margin-bottom: 15px;
}

.site-dive-details-animals {
  display: inline-block;
  flex-grow: 1;
}

.site-dives-pagination {
  margin-top: 30px;
}

.dive-comment-body {
  font-family: 'Georgia', 'Ubuntu', sans-serif;
  color: #8a8cad;
  font-weight: 400;
  font-size: 18px;
  margin-top: -1.75em;
  line-height: 1.75;
  white-space: pre-line;
}

.dive-comment-user-name {
  color: #4a4a73;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
}

.user-dives__header {
  margin-bottom: 40px;
}

.user-dives__stats {
  margin-bottom: 45px;
}

.user-dives__add-dive-btn {
  float: right;
  margin-top: 26px;
}

.user-dives--margin {
  margin-top: 74.5px;
}

.user-dive-list__item {
  border-bottom: 2px solid #eff0f4;
  height: 68px;
  display: flex;
  align-items: center;
}

.user-dive-list__item:first-child {
  border-top: 2px solid #eff0f4;
}

.user-dive-list__date {
  font-size: 18px;
  font-weight: 400;
  color: #8a8cad;
  min-width: 123px;
}

.user-dive-list__star-container {
  padding-top: 4px;
  margin-left: 48px;
}

.user-dive-list__add-dive-btn {
  margin-left: auto;
}

.user-dives__stats__number {
  font-size: 30px;
  font-family: 'Libre Baskerville', 'Open Sans', 'Helvetica Neue', 'Helvetica',
    'Arial', sans-serif;
}

.user-dives__stats__label {
  display: inline-block;
  position: relative;
  top: -1px;
  width: 50px;
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
  color: #8a8cad;
}

.site-section__container__text-content {
  font-family: 'Libre Baskerville', 'Open Sans', 'Helvetica Neue', 'Helvetica',
    'Arial', sans-serif;
  color: #595389;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.75;
}

.site-dive-details-content-secondary {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.internal-site-regions {
  position: relative;
  top: 80px;
  padding: 0 80px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.internal-site-regions > span {
  padding: 0;
  font-weight: 500;
}

.internal-site-regions__link {
  padding: 0;
  border: none;
  font-size: 12.5px;
  line-height: 17.5px;
  color: #4a4a73;
}

.internal-site-regions--above {
  bottom: -60px;
}

.internal-site-regions__comma {
  margin-left: -2px;
  margin-right: 2.5px;
}

.btn-report {
  position: absolute;
  letter-spacing: 0.25px;
  font-size: 18px;
  right: 20px;
  bottom: 30px;
  text-transform: uppercase;
  color: white;
  cursor: pointer;
  border-bottom: 2px solid;
}

.btn-report--important {
  font-size: 125%;
  color: #a3deff;
  border-color: #a3deff;
}

.coordinates-map-container {
  height: 400px;
  margin-top: 50px;
}

.coordinates-gps-container {
  position: relative;
  margin-top: 52px;
}

.coordinates-gps-container > span {
  display: block;
  position: absolute;
  text-transform: uppercase;
  transform: translateX(-50%);
  background-color: white;
  padding: 0 20px;
  top: -7px;
  left: 50%;
}

.coordinates-gps-container > div {
  width: 45%;
  display: inline-block;
}

.coordinates-gps-container > div:last-child {
  margin-left: 9%;
}

.site-dive-padding {
  padding-right: 5%;
}

#anchor-top-description {
  margin-top: 36px;
}

@media (max-width: 1700px) {
  .site-main-col {
    padding: 0 50px;
  }
  .site-dive-details-content {
    width: 100%;
  }
}

@media (max-width: 1250px) {
  .no-dive-icon--small {
    margin-top: -115px;
  }
}

@media (max-width: 1024px) {
  .site-body .select2-search-dropdown {
    width: 100vw !important;
  }
}

@media (max-width: 980px) {
  .site-main-col {
    padding: 0;
  }
  .site-header {
    font-size: 50px;
  }
}

@media (max-width: 992px) {
  .btn-report {
    right: 15px;
    bottom: 20px;
    font-size: 16px;
    color: white;
  }
  .btn-report--important {
    bottom: -35px;
  }
  .small-map-container {
    min-height: 60%;
    height: 60%;
  }
  .small-map-container .leaflet-bottom.leaflet-left {
    display: none;
  }
  .site-section {
    margin-top: 10px;
  }
  .user-dives--margin {
    margin-top: 0;
  }

  .site-body .select2-search-dropdown {
    left: 0 !important;
  }
  .site-dive-padding {
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  #anchor-top-description {
    margin-top: 13px;
  }
}

@media (max-width: 700px) {
  .internal-site-regions {
    top: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .internal-site-regions__link {
    margin-right: 10px;
  }
  .internal-site-regions__link:first-of-type {
    margin-left: 10px;
  }
  .internal-site-regions__link:last-of-type {
    margin-right: 0;
  }
}

@media (max-width: 650px) {
  .site-dive-details-content {
    width: 100%;
    padding: 10px;
  }
  .site-section__content {
    margin-top: 15px;
  }
  .site-section {
    margin-bottom: 0;
  }
  .user-dive-list__star-container {
    padding-top: 0;
    margin-left: 0;
  }
}

@media (max-width: 550px) {

  .internal-site-regions__link {
    margin-right: 0;
    margin-top: 10px;
    display: block;
  }
  .internal-site-regions__link:first-of-type {
    margin-left: 0;
  }
  .internal-site-regions__link:last-of-type {
    margin-right: 0;
  }
  .user-dive-list__item {
    display: flex;
    flex-direction: column;
    padding: 5px 0;
    height: auto;
  }
  .user-dive-list__add-dive-btn {
    margin-left: 0;
  }
  .site-header {
    margin-top: 125px;
  }
}

@media (max-width: 992px) and (max-height: 450px) {
  .small-map-container {
    height: 375px;
  }
}

.empty-dive-icon {
  position: absolute;
  width: 65%;
  margin: 0 auto;
  top: -35px;
}

.dive-log__title {
  margin-top: 40px;
}

.dive-log__title__icon {
  width: 25px;
  height: 29px;
  display: inline-block;
}

.dive-log__title__text {
  display: inline-block;
  margin: -10px 0 0 5px;
  font-size: 20px;
  font-weight: 500;
}

.dive-log__table {
  margin-top: 15px;
}

.dive-log__table__col {
  width: 330px;
  padding: 25px 20px;
  font-size: 13px;
  color: #8a8cad;
  vertical-align: middle;
  border: 1px solid #d1d1df;
  position: relative;
}

.dive-log__table__col__label {
  float: left;
  text-transform: uppercase;
}

.dive-log__table__col__value {
  float: right;
  color: #595389;
  font-weight: 700;
  font-size: 16px;
}

.dive-log__table__col__unit {
  color: #d1d1df;
  font-weight: 300;
  text-transform: none;
}

.dive-log__save-btn-container {
  margin-top: 15px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  max-width: 662px;
}

.input-file {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.animals-container-dive {
  margin-top: 40px;
  margin-bottom: 40px;
}

.social-dive-btn {
  width: 40px;
  height: 40px;
  border: 2px solid white;
  background-color: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  cursor: pointer;
  margin-right: 10px;
  font-size: 17px;
  position: relative;
  top: 5px;
  color: white;
}

.social-dive-btn--facebook-inverse {
  background-color: #3b5998;
  border-color: #3c4e8e;
  color: white;
}

.social-dive-btn--facebook-inverse:hover {
  background-color: #3c4e8e;
  border-color: #3c4e8e;
  color: white;
}

.social-dive-btn--facebook:hover {
  color: #3b5998;
  border-color: white;
}

.social-dive-btn--twitter-inverse {
  background-color: #1dcaff;
  border-color: #1dbff5;
  color: white;
}

.social-dive-btn--twitter-inverse:hover {
  background-color: #1dbff5;
  border-color: #1dbff5;
  color: white;
}

.social-dive-btn--twitter:hover {
  color: #1dcaff;
  border-color: white;
}

.dive-title-mobile {
  display: flex;
  flex-direction: column;
}

.cancel-log-btn {
  margin-right: 15px;
  cursor: pointer;
}

span.select2-selection.select2-selection--multiple.select2-animals {
  border: none;
  box-shadow: none;
  border-radius: 0;
  background-color: transparent;
}

.select2-animals {
  border-bottom: 2px solid #d1d1df !important;
  padding-bottom: 5px !important;
}

.select2-animals .select2-search__field {
  padding: 0 !important;
  margin: 0 !important;
  outline: 0 !important;
  width: 300px !important;
  color: #595389 !important;
  font-weight: 400 !important;
  font-size: 18px !important;
  background: transparent !important;
}

.select2-animals .select2-search__field::-webkit-input-placeholder {
  color: #8a8cad;
}

.select2-animals .select2-search__field:-moz-placeholder {
  color: #8a8cad;
}

.select2-animals .select2-search__field::-moz-placeholder {
  color: #8a8cad;
  opacity: 1;
}

.select2-animals .select2-search__field:-ms-input-placeholder {
  color: #8a8cad;
}

.select2-animals .select2-selection__choice {
  color: #595389 !important;
  background-color: transparent !important;
  border: none !important;
  margin: 4px 0 0 0 !important;
  padding: 0 !important;
  font-size: 18px !important;
}

.select2-animals-dropdown {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  background-color: transparent;
  color: #1b1464 !important;
  top: -1px;
}

.select2-animals-dropdown li.select2-results__option.select2-results__message {
  display: none;
}

.select2-animals-dropdown .select2-results__options {
  max-height: 425px !important;
}

.select2-animals-dropdown li.select2-results__option {
  background-color: white !important;
  min-height: 65px !important;
  border-bottom: 1px solid #e8e8ef;
}

.select2-animals-dropdown li.select2-results__option:first-child {
  border-top: 1px solid #e8e8ef;
}

.select2-animals-dropdown
  li.select2-results__option.select2-results__option--highlighted {
  background-color: #4a4a73 !important;
}

.select2-animals-dropdown li.select2-selection__choice {
  color: #8a8cad !important;
  background-color: transparent !important;
}

.select2-animals-dropdown .dive-select-custom {
  display: flex;
  justify-content: space-between;
}

.select2-animals-dropdown .dive-select-custom__first-col > h4 {
  font-weight: 500;
  font-size: 20px;
}

.select2-animals-dropdown .dive-select-custom__first-col > p {
  margin: -10px 0 0 0;
  font-weight: 300;
  color: #8a8cad;
}

.select2-animals-dropdown .dive-select-custom__second-col {
  display: flex;
  align-items: center;
}

.select2-animals-dropdown .dive-select-custom__second-col > img {
  width: 70px;
  float: right;
}

input.dive-change-date-input {
  border: none;
  color: white;
  background-color: transparent;
  padding: 0;
  font-size: 24px;
  margin-top: 0;
  margin-bottom: -8px;
  font-weight: 300;
  cursor: pointer;
}

.dive-datetimepicker-container {
  display: inline-block;
  width: 200px;
}

.dive-datetimepicker-container
  .bootstrap-datetimepicker-widget.dropdown-menu.usetwentyfour.bottom {
  top: 124px !important;
}

.dive-delete-container {
  position: absolute;
  right: 0;
}

.dive-delete-container__btn {
  top: -65px;
  right: 15px;
}

.label--no-margin {
  margin: 0;
}

.select-dive-modal-col {
  display: inline-block;
}

.select-dive-modal-col label {
  display: block;
  margin-top: 10px;
}

.select-dive-modal-col input {
  position: relative;
  top: 2px;
  margin-right: 5px;
}

@media (max-width: 1469px) {
  .log-stats,
  .chart-share-container {
    display: none;
  }
}

@media (max-width: 1024px) {
  .dive-body .select2-search-dropdown {
    width: 100vw !important;
  }
}

@media (max-width: 992px) {
  .dive-stats .stats__icon--large {
    width: 25px;
    height: 25px;
  }
  .stats--add-section {
    margin-left: 0;
  }
  .stats--margin-top {
    margin-top: 35px;
  }
  .stats__text__label--large {
    font-size: 10px;
  }
  .stats__icon--add {
    width: 25px;
    height: 25px;
    margin: -19px 0 0px 10px;
  }
  .empty-dive-title {
    text-align: center;
    font-size: 30px;
    margin-top: 100px;
  }
  .stats-border {
    bottom: -45px;
  }
  .select2-container--bootstrap {
    width: 100% !important;
  }
  .dive-title-mobile .footer-small-map__star-container {
    margin: -10px 0 -5px 0;
  }
  .dive-title-mobile .footer-small-map__title-container {
    justify-content: flex-start;
  }
  .dive-title-mobile input.dive-change-date-input {
    font-size: 20px;
  }
  .dive-title-mobile
    .dive-datetimepicker-container
    .bootstrap-datetimepicker-widget.dropdown-menu.usetwentyfour.bottom {
    top: 73px !important;
  }
  .footer-small-dive .footer-small-map__title-container {
    justify-content: flex-end !important;
    width: 100%;
  }
  .dive-body .dive-select-custom > img {
    width: 50px;
    float: right;
  }
  .dive-body .select2-search-dropdown {
    left: 0 !important;
  }
  .stats-border {
    bottom: -15px;
  }
}

@media (max-width: 550px) {
  .dive-stats {
    padding-top: 15px;
  }
  .dive-stats .stats__text {
    text-align: center;
  }
  .dive-stats .stats__icon--large {
    width: 23px;
    height: 0;
    margin: 0;
    position: relative;
    top: -32px;
  }
  .dive-stats .stats__icon--add {
    margin: 0;
    position: relative;
    left: -5px;
  }
  .stats--add-section {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 25px;
  }
  .dive-log__table__col {
    padding: 15px 10px;
  }
  .dive-body .select2-container--bootstrap {
    width: 100% !important;
  }
  .dive-title-mobile
    .dive-datetimepicker-container
    .bootstrap-datetimepicker-widget.dropdown-menu.usetwentyfour.bottom {
    top: 63px !important;
  }
  .stats-border {
    bottom: -45px;
  }
}

@media (max-width: 992px) and (max-height: 450px) {
  .stats-border {
    bottom: 30px;
  }
  .site-section {
    margin-top: 0;
  }
}

@media (max-width: 430px) {
  .stats-border {
    bottom: 30px;
  }
}

.header-account {
  background-color: #332c8a;
  height: 100px;
}

.header-account__logo {
  width: 130px;
  height: 70px;
  margin-left: 70px;
  position: relative;
  top: 32px;
  display: inline-block;
}

.header-account__logo > a:hover,
.header-account__logo > a:active,
.header-account__logo > a:focus,
.header-account__logo > a:active:focus {
  border: none;
}

.header-account__col {
  display: flex;
  align-items: center;
}

.account-subheader {
  margin-top: 50px;
  padding-bottom: 20px !important;
  border-bottom: 2px solid #eeeef3;
}

.tabs {
  display: inline-block;
}

.tabs__item {
  margin-right: 20px;
  position: relative;
  top: -2px;
  color: #8a8cad;
  text-transform: uppercase;
  font-size: 12px;
  padding-bottom: 6px;
  font-weight: 400;
}

.tabs > .tabs__item {
  top: 0;
}

.tabs {
  display: flex;
  justify-content: end;
  align-items: center;
  column-gap: 3%;
  width: 100%;
}

.tabs > a {
  padding-bottom: 0;
  text-decoration: underline;
}

.tabs > a:hover {
  border-bottom: 3px solid #ff8900;
  text-decoration: none;
}

.tabs__item:hover,
.tabs__item:active,
.tabs__item:focus,
.tabs__item:active:focus {
  border-color: #f54e64;
  color: #595359;
}

.tabs__item--selected {
  border-color: #f54e64;
  color: #595389;
}

.tabs__item:last-child {
  margin-right: 0;
}

.create-page-feedback {
  position: relative;
}

.create-page-feedback > .btn-square--pink {
  margin-top: 15px;
}

.create-page-feedback__container {
  margin: 0;
  position: relative;
  top: 15px;
  font-size: 14px;
  font-weight: 500;
  color: #f54e64;
  text-align: left;
}

.account-main-section__delimiter--big {
  margin-top: 20px;
}

.form__first_col > input {
  margin-bottom: 30px;
}

.form__first_col > input:first-of-type {
  margin-top: 30px;
}

.account-email-notify {
  background-color: #ffe1e6;
}

.account-cancel-btn {
  color: #595389;
  font-size: 13px;
  text-transform: uppercase;
  display: inline-block;
  margin-top: 15px;
}

.account-cancel-btn:hover,
.account-cancel-btn:active,
.account-cancel-btn:focus,
.account-cancel-btn:active:focus {
  color: #595389;
  border-color: #595389;
}

.account-back-to-btn {
  display: inline-block;
  margin-top: 30px;
  text-transform: uppercase;
}

.account-alert-col {
  margin-top: 25px;
  margin-bottom: -25px;
}

.account-delete-btn {
  margin-right: 15px !important;
  margin-top: -100px;
  font-size: 12px !important;
  position: absolute;
  right: 0;
}

.slug-preview {
  font-size: 20px;
  color: #8a8cad;
  font-weight: 300;
  margin: 0 0 5% 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.slug-preview > label {
  width: 100%;
}

.slug-preview__left {
  display: flex;
}

.slug-preview__slug {
  position: relative;
  color: #3fa9f5;
  font-weight: 400;
}

.slug-preview__slug > input {
  position: absolute;
  width: auto;
  top: 0;
  padding-left: 0;
  padding-bottom: 7.5px;
  color: #3fa9f5;
  border-color: #3fa9f5;
  font-weight: 400;
}

.slug-preview__below {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 992px) {

  .account-main-section__first_col {
    margin-top: 0;
  }

  .account-main-section__second_col {
    margin-top: 15px;
  }

  .account-main-section__first_col__avatar-container {
    transform: scale(0.75);
    margin-left: -21px;
  }
}

@media (max-width: 550px) {
  .header-account {
    height: 125px;
  }
  .header-account__col {
    flex-direction: column;
  }
  .header-account__logo {
    width: 150px;
    margin-left: 0;
    top: 16px;
  }
  .header-map__row--right {
    text-align: center;
    margin-left: 0;
  }
  .header-map__row {
    margin: 0;
  }
  .account-subheader__additional-links-container {
    float: none;
    text-align: center;
    margin-top: 25px;
  }
  .account-main-section__title {
    font-size: 30px;
  }
  .account-main-section__subtitle {
    font-size: 12px;
  }
  .slug-preview__slug > input {
    width: 150px;
  }
}

@media (max-width: 400px) {
  .slug-preview__slug > input {
    width: 100px;
  }
}

@media (max-width: 992px) and (max-height: 450px) {
  .account-subheader__additional-links-container {
    float: none;
    text-align: center;
    margin-top: 15px;
  }
}

@media (max-width: 650px) {
  .create-page-feedback > .btn-square--pink {
    margin-bottom: 100px;
  }
}

.manage-section {
  margin-top: 20px;
}

.manage-section--first {
  margin-top: 30px;
  margin-bottom: 20px;
}

.manage-section__row-settings-label {
  font-weight: 300;
  text-transform: capitalize;
  color: #8a8cad;
  font-size: 13px;
  margin: 0;
  margin-bottom: 10px;
  display: inline-block;
}

.manage-section__row-settings-title {
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 25px;
}

.manage-section__slug {
  border-color: #4a4a73;
}

.manage-section__rule {
  display: block;
  width: 100%;
  position: relative;
}

.manage-section__rule--first {
  top: 14px;
}

.manage-section__remove-page-btn {
  text-transform: uppercase;
  color: #f54e64;
  cursor: pointer;
  position: relative;
  top: -2px;
  font-size: 18px;
}

.manage-section__remove-page-btn:hover,
.manage-section__remove-page-btn:active,
.manage-section__remove-page-btn:focus,
.manage-section__remove-page-btn:active:focus {
  color: #f54e64 !important;
}

.manage-section__dive-details-section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.manage-section__option-container {
  margin-bottom: 15px;
  padding: 0;
}

.manage-section .manage-section__rule {
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(
    90deg,
    white 0%,
    #dee5f2 7%,
    #dee5f2 93%,
    white 100%
  );
  border-image-slice: 1;
  margin: 15px 0;
}

.slug-link-hovered {
  border-color: #4a4a73;
}

.manage-section__url {
  display: flex;
  justify-content: space-between;
  font-size: 21px;
  font-weight: 300;
  color: #8a8cad;
  margin-bottom: -10px;
}

.manage-section-slug-part {
  position: relative;
  color: #3fa9f5;
  font-weight: 400;
}

.manage-section-slug-part > input {
  position: absolute;
  top: 0;
  width: auto;
  padding: 0;
  color: #3fa9f5;
  border-color: #3fa9f5;
  font-weight: 400;
  font-size: 21px;
}

.manage-section__url__left,
.manage-section__url__right {
  display: flex;
}

.manage-section__url__left {
  border-bottom: 2px solid transparent;
}

.manage-section__url__left--url {
  border-bottom-color: #8a8cad;
  cursor: pointer;
}

.manage-section__url__left--url:hover,
.manage-section__url__left--url:active,
.manage-section__url__left--url:focus,
.manage-section__url__left--url:active:focus {
  color: #4a4a73;
  border-color: #4a4a73;
}

.manage-section__url__right > * {
  cursor: pointer;
  font-size: 20px;
}

.manage-section__url__right > *:hover,
.manage-section__url__right > *:active,
.manage-section__url__right > *:focus,
.manage-section__url__right > *:active:focus {
  color: #4a4a73;
  border-color: #4a4a73;
}

.manage-section__url__right * > .edit-icon {
  margin: 0;
}

.manage-section__url__right > :nth-child(2) {
  margin: 0 10px;
}

.edit-save-container {
  position: relative;
}

.edit-save-container > .save-icon {
  top: 2px;
  right: 0;
  font-size: 20px;
}

.manage-page-feedback {
  position: relative;
  top: 23px;
}

.manage-page-feedback > i {
  margin-right: 3px;
}

.manage-page-feedback > span {
  font-weight: 500;
}

.manage-page-feedback > .btn-square--pink {
  margin-top: 15px;
}

.manage-page-feedback__container {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #f54e64;
  text-align: left;
}

@media (max-width: 1200px) and (min-width: 922px) {
  .manage-section-slug-part > input {
    width: 180px;
  }
}

@media (max-width: 922px) {
  .manage-section__rule--first {
    top: 5px;
  }
  .manage-section-slug-part > input {
    width: auto;
  }
}

@media (max-width: 600px) {
  .manage-section__url {
    flex-wrap: wrap;
  }
  .manage-section__url__right {
    justify-content: flex-end;
    flex: 1 0 100%;
  }
}

@media (max-width: 550px) {
  .manage-section__rule--first {
    top: 15px;
  }
  .manage-section__external-link {
    margin-left: 5px;
  }
}

@media (max-width: 500px) {
  .manage-section-slug-part > input {
    width: 100px;
  }
}

#my-map {
  width: 100%;
  height: 100vh;
}

.map__simple-header {
  position: absolute;
  top: 0;
  z-index: 998;
  width: 100%;
  height: 66px;
  padding: 0 40px;
  background-color: #071a39;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #071A39;
}

.map__simple-header__logo {
  width: 130px;
}

.map__simple-header__logo > a:hover,
.map__simple-header__logo > a:active,
.map__simple-header__logo > a:focus,
.map__simple-header__logo > a:active:focus {
  border: none;
}

.map__simple-header__logo {
  align-self: center;
  height: 34px;
}

.half-header {
  min-height: 66px;
  border-bottom: 2px solid #e8e8ef;
}

.half-header__items {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: 70px;
}

.my-map-stats-rule {
  margin-top: 68px;
  border-color: #e8e8ef;
  width: 90%;
}

.my-map-widget-btn,
.my-map-public-page-btn {
  position: absolute;
  bottom: 0;
}

.my-map-widget-btn--margin {
  right: 10rem;
}

.my-map-public-page-btn {
  left: 10rem;
}

.my-map-widget-btn--translateX {
  transform: translateX(-50%);
}

.latest-dives {
  margin-top: 65px;
  padding-left: 65px;
  padding-right: 50px;
}

.latest-dives__delimiter {
  margin-top: -11px;
  width: 85px;
  margin-bottom: 30px;
}

.latest-dives .wave-delimiter-svg {
  stroke: #4a4a73;
}

.latest-dives__header {
  display: flex;
  margin-bottom: 60px;
}

.latest-dives__header > :first-child {
  flex: 2;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.latest-dives__unit {
  display: flex;
  align-items: center;
  margin-top: 0;
  padding: 20px 0 15px 0;
}

.latest-dives__unit > div {
  margin-left: auto;
  position: relative;
  top: -1px;
}

.latest-dives__unit__site {
  font-size: 16px;
  font-weight: 700;
  max-width: 275px;
  display: inline-block;
}

.latest-dives__unit__date {
  font-size: 14px;
  font-weight: 400;
  color: #8a8cad;
  margin-right: 45px;
  display: inline-block;
}

.latest-dives__unit__date:hover,
.latest-dives__unit__date:active,
.latest-dives__unit__date:focus,
.latest-dives__unit__date:active:focus {
  color: #8a8cad;
  border-color: #8a8cad;
}

.latest-dives__unit__star-container {
  display: inline-block;
  float: right;
}

.latest-dives__unit__star-container > .star-icon {
  width: 11px;
  height: 11px;
  margin-right: 1px;
}

.my-map-second-half-col {
  position: relative;
  height: 100vh;
  overflow-y: scroll;
}

.my-map-show-more-btn {
  display: block;
  color: #332c8a;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  margin: 15px 0;
  cursor: pointer;
}

.map__group-control {
  width: 60px;
  height: 60px;
  z-index: 1000;
  cursor: pointer;
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map__group-control__icon {
  width: 31px;
  height: 31px;
}

.map__group-control__icon .layers-svg {
  stroke: white;
}

.map__group-control--active {
  background-color: #27226b;
}

.map__group-control__extended {
  position: absolute;
  left: 0;
  width: 100px;
  z-index: 4;
}

.map__group-control__extended__unit {
  cursor: pointer;
  height: 115px;
  background-color: #332c8a;
  border-top: 1px solid #5146d1;
  border-bottom: 1px solid #151252;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.map__group-control__extended__unit__icon > svg {
  width: 28px;
  height: 28px;
}

.map__group-control__extended__unit__label {
  font-size: 12px;
  color: white;
  text-transform: uppercase;
  opacity: 0.75;
  text-align: center;
}

.map__group-control__extended__unit:first-of-type {
  border-top: none;
}

.my-map-socials-container {
  width: 25%;
  padding-top: 12px;
  padding-left: 70px;
}

/*************** WIDGET MODAL *********************/
.widget-modal-title {
  font-size: 25px;
}

.widget-modal-subtitle {
  color: #8a8cad;
  font-weight: 300;
  font-size: 16px;
  margin-top: -5px;
  margin-bottom: 40px;
}

.widget-modal-input-container {
  margin-bottom: 40px;
}

/****************************************************/
/*************** LEAFLET *********************/
.leaflet-container {
  font-family: 'Ubuntu', 'Helvetica Neue', 'Arial', sans-serif !important;
}

.leaflet-popup-content-wrapper {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 3px;
}

.leaflet-pane.leaflet-popup-pane {
  top: -15px;
}

.leaflet-popup-tip {
  width: 13px;
  height: 13px;
  opacity: 0.9;
}

.leaflet-popup-content {
  margin: 35px 35px;
  color: #113270;
}

.leaflet-popup-content__col {
  position: relative;
}

.leaflet-popup-content__row {
  display: flex;
  justify-content: space-around;
}

.leaflet-popup-content__title {
  font-size: 1.73333em;
  font-weight: 700;
  margin: -3px 0 0 0;
}

.leaflet-popup-content__title > a {
  color: #113270;
  text-decoration: none;
}

.leaflet-popup-content__title > a:hover,
.leaflet-popup-content__title > a:active,
.leaflet-popup-content__title > a:focus,
.leaflet-popup-content__title > a:active:focus {
  border: none;
}

.leaflet-popup-content__subtitle {
  font-size: 1.416669em;
  font-weight: 300;
  margin: 2px 0 0 0;
}

.leaflet-popup-content__favorite,
.leaflet-popup-content__add-list-btn,
.leaflet-popup-content__pick-list-btn {
  display: inline-block;
  height: 30px;
  width: 30px;
  background-color: #bdccd4;
  margin-left: 13px;
  margin-right: -9px;
  border-radius: 2px;
  cursor: pointer;
}

.leaflet-popup-content__add-list-btn,
.leaflet-popup-content__pick-list-btn {
  font-size: 25px;
  color: white;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  right: -5px;
  top: -0.5px;
  margin-left: 0;
}

.leaflet-popup-content__pick-list-btn {
  font-size: 15px;
  font-weight: 300;
}

.leaflet-popup-content__pick-list-btn--ds {
  position: absolute;
  height: 41px;
  top: 2px;
  width: 40px;
}

.leaflet-popup-content__select-list {
  position: absolute;
  top: 13px;
  right: 15px;
  z-index: 1000;
  width: 121px;
  height: 30px;
  padding: 0 0 0 5px;
  border: none;
  border-radius: 2px;
  font-size: 14px;
  background-color: white;
}

.leaflet-popup-content__select-list--ds {
  position: relative;
  top: 2px;
  height: 41px;
  width: 213px;
}

.leaflet-popup-content__select-list::placeholder {
  font-size: 14px;
}

.leaflet-popup-content__select-list--top {
  top: 25px;
}

.leaflet-popup-content__list-dropdown {
  position: absolute;
  top: 31px;
  right: 9px;
  width: 151.5px;
  max-height: 190px;
  overflow-y: auto;
  background-color: white;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.leaflet-popup-content__list-dropdown--ds {
  width: 241.65px;
  top: 44px;
  right: -14px;
  max-height: 235px;
}

.leaflet-popup-content__list-dropdown--ds > :last-child {
  border-bottom: none;
}

.leaflet-popup-content__list-dropdown--top {
  top: 56px;
}

.leaflet-popup-content__list-dropdown__item,
.leaflet-popup-content__list-dropdown__item--ds {
  padding: 10px 4.25px;
  margin: 0;
  display: flex;
  align-items: center;
  flex: 0 0 100%;
  cursor: pointer;
  color: #4a4a73;
  min-height: 40px;
  border-bottom: 1px solid #d1d1df;
  /* These are technically the same, but use both */
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  /* This is the dangerous one in WebKit, as it breaks things wherever */
  word-break: break-all;
  /* Instead use this non-standard one: */
  word-break: break-word;
  /* Adds a hyphen where the word breaks, if supported (No Blink) */
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.leaflet-popup-content__list-dropdown__item:hover,
.leaflet-popup-content__list-dropdown__item--ds:hover {
  background-color: #4a4a73;
  color: white;
}

.leaflet-popup-content__list-dropdown__item > input[type='checkbox'],
.leaflet-popup-content__list-dropdown__item--ds > input[type='checkbox'] {
  position: relative;
  top: -1px;
  margin-right: 5px;
}

.leaflet-popup-content__list-dropdown__item--ds {
  padding: 14px 4.25px;
}

.leaflet-popup-content__list-dropdown__item--ds:last-child {
  border-bottom: 1px solid #d1d1df;
}

.leaflet-popup-content__list-dropdown__item--add {
  padding: 5px;
  justify-content: center;
  color: #a2c63f;
  min-height: 30px;
}

.leaflet-popup-content__list-dropdown__item--add:hover {
  background-color: white;
  color: #a2c63f;
}

.leaflet-popup-content__list-dropdown__item--add--ds {
  padding: 14px 0;
}

.leaflet-popup-content__close-list-btn {
  position: relative;
  right: -25px;
  color: rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.leaflet-popup-content__close-list-btn:hover,
.leaflet-popup-content__close-list-btn:active,
.leaflet-popup-content__close-list-btn:focus,
.leaflet-popup-content__close-list-btn:active:focus {
  color: #1b1464;
}

.leaflet-popup-content__close-list-btn--ds {
  color: white;
  right: 70px;
}

.leaflet-popup-content__close-list-btn--ds:hover,
.leaflet-popup-content__close-list-btn--ds:active,
.leaflet-popup-content__close-list-btn--ds:focus,
.leaflet-popup-content__close-list-btn--ds:active:focus {
  color: white;
}

.leaflet-popup-content__list-error {
  position: absolute;
  top: -5px;
  left: 12px;
  color: #f54e64;
}

.leaflet-popup-content__list-error--ds {
  top: -17px;
  left: -97px;
}

.leaflet-popup-content__list-dropdown__item--selected {
  background-color: #4a4a73;
  color: white;
}

.leaflet-popup-content__pick-list-btn--enabled {
  background-color: #f54e64;
}

.leaflet-popup-content__add-list-btn--picked {
  background-color: #f54e64;
}

.controllers-group-2 {
  position: relative;
  z-index: 1000;
}

.leaflet-popup-content__favorite__icon {
  width: 16px;
  fill: white;
  position: relative;
  top: 7px;
  left: 7px;
}

.leaflet-popup-content__favorite--active {
  background-color: #ff931e;
}

.custom-btn {
  text-transform: uppercase;
  font-size: 11px;
  color: white !important;
  letter-spacing: 1px;
  background-color: #a3deff;
  border-radius: 3px;
  position: relative;
  margin-left: 13px;
  top: 25px;
  padding-top: 7px;
  padding-bottom: 6px;
}

.custom-btn:hover,
.custom-btn:active,
.custom-btn:focus,
.custom-btn:active:focus {
  background-color: #3fa9f5;
  color: white;
  text-decoration: none;
  border-color: #3fa9f5;
}

.btn-app {
  text-transform: uppercase;
  font-size: 11px;
  color: white;
  letter-spacing: 1px;
  border: 1px solid red;
}

.btn-app:hover,
.btn-app:focus {
  color: white;
  text-decoration: none;
}

.btn-cta-blue {
  background-color: #3fa9f5;
  border-radius: 3px;
  color: white !important;
  position: relative;
}

.btn-cta-blue--tooltip {
  margin-left: 13px;
  top: 26px;
}

.select-list-dropdown {
  position: absolute;
  left: 0;
  top: 50px;
  width: 100%;
  z-index: 1001;
  border: 1px solid #d1d1df;
  border-radius: 2px;
  max-height: 201px;
  overflow-y: auto;
  background-color: white;
  text-align: left;
}

.select-list-dropdown__item {
  display: flex;
  align-items: center;
  padding: 0 5px;
  min-height: 40px;
  border-bottom: 1px solid #d1d1df;
  color: #4a4a73;
  cursor: pointer;
}

.select-list-dropdown__item:last-child {
  border-bottom: none;
}

.select-list-dropdown__item:hover a {
  color: white;
}

.select-list-dropdown__item > a {
  color: #8a8cad;
  padding-bottom: 0;
  border: none;
}

.select-list-dropdown__item:hover,
.select-list-dropdown__item:active,
.select-list-dropdown__item:focus,
.select-list-dropdown__item:active:focus {
  background-color: #4a4a73;
  color: white;
}

#filter-region {
  font-size: 12.5px;
  text-transform: uppercase;
  color: #d1d1df;
}

#filter-region-dropdown {
  top: 20px;
}

/****************************************************/
@media (max-width: 1700px) {
  .my-map-socials-container {
    padding-left: 15px;
    padding-top: 15px;
  }
  .half-header__items {
    margin-right: 15px;
  }
  .default-avatar--my-map {
    margin-left: 15px;
  }
}

@media (max-width: 1575px) {
  .my-map-public-page-btn {
    left: 5rem;
  }
  .my-map-widget-btn--margin {
    right: 5rem;
  }
}

@media (max-width: 1375px) {
  .latest-dives {
    padding: 0;
  }
  .my-map-public-page-btn {
    left: 1rem;
  }
  .my-map-widget-btn--margin {
    right: 1rem;
  }
}

@media (max-width: 992px) {
  #my-map {
    width: 100%;
    height: 70vh;
  }
  .half-header__items {
    width: 100%;
    text-align: center;
    margin: 0;
  }
  .map__group-control__extended {
    position: absolute;
    z-index: 1001;
    right: 0;
    top: calc(-70vh + 45px);
    left: auto;
    width: 65px;
  }
  .map__group-control__extended__unit {
    height: calc((70vh - 45px) / 3);
  }
  .my-map-second-half-col {
    overflow-y: visible;
  }
  .map__simple-header {
    padding: 3px 15px 0 15px;
    height: 45px;
  }
  .map__group-control {
    width: 65px;
    height: 45px;
  }
  .my-map-socials-container {
    padding: 0;
    margin-left: -5px;
    display: inline-block;
    position: relative;
    top: 6px;
  }
  .half-header__items {
    width: auto;
    display: inline-block;
    margin-left: auto;
  }
  .default-avatar {
    margin-left: 15px;
  }
  .leaflet-popup-content__select-list--ds {
    position: absolute;
    top: -9px;
    right: 26px;
  }
  .leaflet-popup-content__pick-list-btn--ds {
    position: absolute;
    right: 18px;
    top: -9px;
  }
  .leaflet-popup-content__list-dropdown--ds {
    right: 9px;
    top: 33px;
    width: 229.65px;
  }
  .leaflet-popup-content__close-list-btn--ds {
    right: -8px;
    top: 2px;
  }
  .my-map-main-padding-container {
    padding: 0;
  }
  .controllers-group-2 {
    position: absolute;
    bottom: 53px;
  }
  .my-map-public-page-btn {
    left: 10rem;
  }
  .my-map-widget-btn--margin {
    right: 10rem;
  }
}

@media (max-width: 550px) {
  .my-map-main-padding-container {
    padding: 0;
  }
  .latest-dives__delimiter {
    margin-bottom: 0;
  }
  .latest-dives__unit {
    flex-direction: column;
  }
  .latest-dives__unit > div {
    margin: 0;
  }
  .controllers-group-2 {
    bottom: 103px;
  }
  .my-map-public-page-btn {
    left: 1rem;
  }
  .my-map-widget-btn--margin {
    right: 1rem;
  }
}

#public-page-map {
  width: 100%;
  height: 100vh;
  background-color: white;
  z-index: 2;
}

.user-page-second-col__header {
  border-bottom: 2px solid #DEE5F2;
  height: 66px;
  padding: 0 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.user-page-second-col__header > span {
  color: #8a8cad;
  font-size: 16px;
  font-weight: 300;
}

.user-page-second-col__header > span:nth-child(2) {
  margin-left: auto;
}

.wave-delimiter-icon--user-page {
  width: 85px;
}

.public-page-stats-container {
  position: relative;
  top: 15px;
}

.public-page-stats-container > .stats {
  display: inline-flex;
}

.user-page-second-col {
  height: 100vh;
}

.user-page-padding-container {
  padding: 0 0 0 88px;
}

.user-page-section {
  margin-top: 30px;
}

.user-page-section--first {
  margin-top: -10px;
}

.user-page-section--first--margin {
  margin-top: 30px;
}

.user-page-section__subtitle {
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  margin-top: -5px;
}

.user-page-section__delimiter {
  width: 85px;
  margin-top: -3px;
}

.user-page-section__animals-container {
  margin-top: 45px;
}

.user-page-dive-unit {
  margin-top: 50px;
}

.user-page-dive-unit__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.user-page-dive-unit__header__text {
  font-size: 16px;
  font-weight: 300;
  color: #8a8cad;
}

.user-page-dive-unit__body {
  background-color: #fdfdfe;
  border: 2px solid #f3f3f7;
  border-radius: 3px;
  padding: 40px;
  margin-top: 30px;
  font-size: 17px;
  font-family: 'Libre Baskerville', 'Open Sans', 'Helvetica Neue', 'Helvetica',
    'Arial', sans-serif;
  color: #7a7b99;
  font-style: italic;
}

.user-page-dive-unit__body__animal-container {
  margin-top: 20px;
}

.user-page-star-container {
  white-space: nowrap;
  margin-left: 1em;
}

.user-page-section__dives-container {
  margin-bottom: 40px;
}

.user-page-pagination {
  margin-top: 30px;
}

.user-page-placeholder {
  font-size: 50px;
}

.user-page-social-container {
  right: 0;
  top: 6px;
}

.user-page-title-container {
  width: 100%;
  display: inline-block;
}

.user-page-follow-btn {
  padding: 5px;
  vertical-align: text-bottom;
  margin-top: 5px;
  position: relative;
  z-index: 1000;
}

@media (max-width: 1500px) {
  .user-page-padding-container {
    padding: 0 10px 0 70px;
  }
}

@media (max-width: 992px) {
  #public-page-map {
    height: 60vh;
  }
  #public-page-map .map__simple-header {
    padding: 3px 15px 0 15px;
  }
  .user-page-second-col {
    overflow-y: visible;
  }
  .public-page-stats-container {
    margin-left: 0;
  }
  .user-page-avatar {
    bottom: -45px;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1003;
  }
  .user-page-padding-container {
    padding: 0 22px;
  }

  .user-page-dive-unit__header__text {
    font-size: 13px;
  }
  .user-page-dive-unit,
  .user-page-section--first--margin {
    margin-top: 25px;
  }
  .stats__text__label {
    min-width: 60px;
  }
  .user-page-social-container {
    right: 10px;
  }
}

@media (max-width: 550px) {
  .user-page-dive-unit__header {
    flex-direction: column;
    align-items: flex-start;
  }
  .user-page-dive-unit__header__text {
    order: 2;
  }
  .user-page-star-container {
    order: 1;
    margin-left: 0;
  }
  .user-page-dive-unit__body {
    margin-top: 10px;
    padding: 5px;
  }
}

.wizard {
  width: 100%;
  position: absolute;
  top: 70px;
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wizard__container {
  height: 60px;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 35px 100px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.wizard--show {
  opacity: 1;
  z-index: 1002;
}

.wizard-container {
  position: absolute;
  background-color: white;
  width: 20%;
  height: 50px;
  border-radius: 6px;
  z-index: 99999;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  margin-top: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 50%;
  margin-left: -10%;
}

.add-site-popup__stars__label {
  font-size: 15px;
  font-weight: 300;
  color: #595389;
  display: inline-block;
  margin-bottom: 5.4px;
}

.add-site-popup__second-col {
  margin-top: 30px;
}

.add-site-popup__error {
  font-size: 13px;
  color: #f54e64;
  font-weight: 500;
  margin-bottom: 20px;
}

.add-site-popup__stars {
  margin-top: -2px;
}

.leaflet-bottom.leaflet-left {
  margin: 0 !important;
  left: -4px;
}

.leaflet-bottom.leaflet-right {
  z-index: 0;
}

.leaflet-control-zoom.leaflet-bar.leaflet-control {
  margin-bottom: 35px;
}

.cancel-add-site-btn {
  position: absolute;
  right: 8px;
  bottom: 168px;
  z-index: 1000;
  background-color: transparent;
}

@media (max-width: 980px) {
  .mt-15px,
  .add-site-popup__stars {
    margin-top: 15px;
  }
  .add-site-popup__stars {
    text-align: left;
  }
}

@media (max-width: 550px) {
  .wizard__container {
    text-align: center;
    width: 100%;
    padding: 0;
    margin-top: -15px;
    border-radius: 0;
    height: 45px;
  }
  .cancel-add-site-btn {
    bottom: 168px;
  }
}

.locations {
  margin-top: 50px;
  min-height: 67vh;
}

.locations__title {
  margin-bottom: 50px;
}

.locations__link {
  font-weight: 300;
  text-transform: uppercase;
  display: inline-block;
  margin-right: 10px;
  padding-bottom: 2px;
  color: #332c8a;
  font-size: 16px;
}

.locations__link:hover,
.locations__link:active,
.locations__link:focus,
.locations__link:active:focus {
  border-color: transparent;
}

.locations__browse {
  font-size: 110%;
  color: #332c8a;
  margin-right: 10px;
}

.locations__browse:last-of-type {
  margin-right: 0;
}

.locations__browse:hover,
.locations__browse:active,
.locations__browse:focus,
.locations__browse:active:focus {
  color: #332c8a;
  border-color: transparent;
}

.locations__delimiter {
  width: 80px;
  margin-top: -45px;
  margin-bottom: 50px;
}

.locations__dive-site {
  display: flex;
  align-items: center;
  justify-content: start;
  margin-bottom: 25px;
}

.locations__dive-site__name {
  font-size: clamp(14px, 0.5vw + 16px, 30px);
  flex: 1.5;
}

.locations__dive-site__name:hover,
.locations__dive-site__name:active,
.locations__dive-site__name:focus,
.locations__dive-site__name:active:focus {
  border-color: transparent;
}

.locations__dive-site__star-container {
  position: relative;
  top: 3px;
  left: 15px;
  flex: 1;
}

.locations-no-dive-sites {
  height: calc(100vh - 275px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.locations-no-dive-sites > h1 {
  margin-bottom: 30px;
}

@media (max-width: 992px) {
  .locations {
    margin-top: 0;
  }
  .locations__delimiter {
    margin-bottom: 25px;
  }
  .locations .list {
    padding-left: 25px;
  }
}

.error-container {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-container__delimiter {
  font-size: 12em;
  font-weight: 300;
  color: #e5e5e6;
  margin-left: 25px;
}

.error-container__main {
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-container__main-text-container {
  text-align: center;
}

.error-container__main-text-container__code {
  font-family: 'Libre Baskerville', 'Open Sans', 'Helvetica Neue', 'Helvetica',
    'Arial', sans-serif;
  font-size: 13.5em;
  color: #595389;
  margin-bottom: -27px;
}

.error-container__main-text-container__text {
  text-transform: uppercase;
  font-size: 2em;
  font-weight: 300;
  letter-spacing: 2px;
}

.error-container__logo {
  position: relative;
  top: 15px;
  width: 225px;
  text-align: center;
}

.error-container__logo > a:hover,
.error-container__logo > a:active,
.error-container__logo > a:focus,
.error-container__logo > a:active:focus {
  border-color: transparent;
  text-decoration: none;
  padding: 0;
}

@media (max-width: 550px) {
  .error-container__main {
    flex-direction: column;
  }
  .error-container__logo {
    top: 0;
    width: 110px;
    margin-bottom: 25px;
  }
  .error-container__main-text-container__code {
    font-size: 8.5em;
  }
  .error-container__main-text-container__text {
    font-size: 1.25em;
  }
}

.explore-body .leaflet-popup-content p {
  margin: 0;
}

#explore-map {
  width: 100%;
  height: 75%;
}

.explore-container {
  position: relative;
  width: 100%;
  z-index: 1001;
  top: 0;
}

.arrow-up--explore {
  position: relative;
  bottom: 2px;
  border-width: 0 4px 4px 4px;
}

@media (max-width: 992px) {
  .hello-container {
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 999999;
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .hello-container__icon {
    width: 50px;
  }
  .hello-container__close-icon {
    position: absolute;
    top: 5px;
    right: 14px;
    margin-right: 0;
    font-size: 34px;
  }
  .hello-container__title {
    font-size: 45px;
    margin-bottom: 25px;
  }
  .hello-container__text {
    font-size: 16px;
  }
}

@media (max-width: 680px) {
  .hello-container {
    text-align: center;
  }
  .hello-container__title {
    font-size: 40px;
  }
}

@media (max-width: 992px) and (max-height: 550px) {
  .leaflet-bottom.leaflet-left {
    left: 0;
    bottom: -8px;
  }
}

.terms-container {
  line-height: 1.5;
  font-size: 125%;
}

.terms-container > h3 {
  margin-top: 35px;
}

.terms-container > h4 {
  margin-top: 25px;
}

.register-features {
  font-size: 24px;
  list-style: none;
}

.register-features > li {
  margin-bottom: 15px;
  font-weight: 300;
}

.register-features > li:nth-last-of-type {
  margin-bottom: 0;
}

.register-features > li:before {
  content: '';
  display: inline-block;
  margin-right: 10px;
  height: 14px;
  width: 14px;
  background-color: transparent;
  background-image: url(../svg/marker_features.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.register-features-header {
  font-size: 45px;
  margin: 10.25px 0 75px 0;
}

.register-features-header--smaller {
  font-size: 35px;
}

.register-features-delimiter {
  width: 2px;
  height: 600px;
  position: absolute;
  top: 120px;
  right: -11.25%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    #d1d1df 50%,
    transparent 100%
  );
}

.register-features-footnote {
  margin-top: 75px;
  font-size: 15px;
}

@media (max-width: 1265px) {
  .register-features-header {
    font-size: 35px;
  }
  .register-features {
    padding: 0;
  }
}

@media (max-width: 765px) {
  .register-features {
    margin: 0;
    padding: 0;
    font-size: 20px;
  }
  .register-features > li:before {
    height: 12px;
    width: 12px;
  }
  .register-features-header {
    font-size: 30px;
    margin: -25px 0 50px 0;
  }
  .register-features-footnote {
    margin-top: 50px;
  }
}

.lists-item {
  margin-bottom: 30px;
  color: #8a8cad;
}

.lists-item:last-of-type {
  margin-bottom: 0;
}

.lists-item__controllers {
  position: relative;
}

.lists-item__controllers > * {
  cursor: pointer;
  margin-right: 25px;
}

.lists-item__controllers > *:hover,
.lists-item__controllers > *:active,
.lists-item__controllers > *:focus,
.lists-item__controllers > *:active:focus {
  color: #595389;
}

.lists-item__controllers > :last-child {
  margin-right: 0;
}

.lists-item__rename-input {
  position: absolute;
  top: 1px;
  left: 16px;
  font-weight: 300;
  font-size: 13px;
  color: #8a8cad;
  text-transform: uppercase;
  padding-left: 0;
}

.lists-item__error {
  color: #f54e64;
  position: absolute;
  top: -20px;
}

.stats-dc {
  min-height: 195px;
  padding: 20px 0;
  display: flex;
  align-items: center;
}

.stats-dc__img {
  max-width: 100%;
}

.stats-dc--labels {
  color: #8a8cad;
  font-size: 20px;
  font-weight: 300;
  text-transform: uppercase;
}

.stats-dc--labels__icon {
  margin-left: 5px;
  font-size: 14px;
  color: #d1d1df;
  cursor: pointer;
}

.stats-dc--values {
  color: #d1d1df;
  font-size: 15px;
  font-weight: 300;
}

.dc-edit-form-container {
  margin: 40px 0 60px 0;
}

.dc-edit-form-container input,
.dc-edit-form-container textarea {
  margin-bottom: 20px;
}

.dc-alert {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1005;
}

.dc-logo-limit {
  font-size: 11px;
  text-transform: uppercase;
  color: #d1d1df;
}

.dc-title-mobile {
  position: absolute;
  top: 50px;
  left: 15px;
  width: calc(100% - 15px);
  color: white;
}

.dc-title-mobile__title {
  font-size: 25px;
  margin-bottom: 0;
}

.dc-title-mobile__subtitle {
  display: inline-block;
  margin-bottom: 5px;
  font-size: 15px;
}

.dc-site-section {
  margin-bottom: 45px;
}

.dc-site-section__header {
  display: flex;
  margin-bottom: 10px;
}

.dc-site-section__header__col-1 {
  display: flex;
  align-items: center;
}

.dc-site-section__header__col-2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 23px;
}

.dc-site-section__header__col-2 > :first-child {
  margin: 0;
}

.dc-site-section__header__col-2 > :last-child {
  margin: 5px 0 0 0;
}

.dc-site-section__description {
  flex: 1 0 100%;
  margin-top: 15px;
}

.dc-site-section__header-subtitle > span:not(:first-child) {
  margin-left: 10px;
}

@media (max-width: 992px) {
  .dc-site-section {
    margin-bottom: 15px;
  }
}

@media (max-width: 550px) {
  .stats-border--dc {
    bottom: 0;
  }
}

.thanks-container {
  height: 100vh;
}

.thanks-icon {
  font-size: 150px;
}

.thanks-primary-message {
  font-size: 45px;
}

@media (max-width: 550px) {
  .thanks-icon {
    font-size: 125px;
  }
  .thanks-primary-message {
    font-size: 35px;
  }
}

.updates.breadcrumb {
  background: transparent;
  margin-bottom: 5px !important;
  margin-top: 20px;
}

.updates.breadcrumb a {
  color: #041022;
}

.updates.tabbable-panel {
  padding: 0;
}

.updates.tabbable-line {
  background: #e7f6ff;
  background: radial-gradient(circle, #e7f6ff 50px, white 350px);
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(
    90deg,
    white 0%,
    #dee5f2 7%,
    #dee5f2 93%,
    white 100%
  );
  border-image-slice: 1;
}

.updates.tabbable-line > .nav-tabs {
  border: none;
  margin: 0px;
}

.updates.tabbable-line > .nav-tabs > li {
  margin-right: 2px;
  border-bottom: 4px solid transparent;
}

.updates.tabbable-line > .nav-tabs > li > a {
  border: 0;
  margin-right: 0;
  padding: 15px;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 2px;
  color: #425d88;
  font-size: 12px;
}

.updates.tabbable-line > .nav-tabs > li > a > i {
  color: #a6a6a6;
}

.updates.tabbable-line > .nav-tabs > li.open,
.updates.tabbable-line > .nav-tabs li:hover {
  border-bottom: 4px solid #fbcdcf;
}

.updates.tabbable-line > .nav-tabs > li.open > a,
.updates.tabbable-line > .nav-tabs li:hover > a {
  border: 0;
  background: none !important;
  color: #333333;
  text-transform: uppercase;
}

.updates.tabbable-line > .nav-tabs > li.open > a > i,
.updates.tabbable-line > .nav-tabs li:hover > a > i {
  color: #a6a6a6;
}

.updates.tabbable-line > .nav-tabs > li.open.dropdown-menu,
.updates.tabbable-line > .nav-tabs li:hover.dropdown-menu {
  margin-top: 0px;
}

.updates.tabbable-line > .nav-tabs > li.active {
  border-bottom: 3px solid #ff8925;
  position: relative;
}

.updates.tabbable-line > .nav-tabs > li.active > a {
  border: 0;
  color: #041022;
  text-decoration: none;
}

.updates.tabbable-line > .nav-tabs > li.active > a > i {
  color: #404040;
}

.updates.tabbable-line > .tab-content {
  margin-top: -3px;
  background-color: #fff;
  border: 0;
  border-top: 1px solid #eee;
  padding: 15px 0;
  padding-bottom: 0;
}

.updates.nav-tabs > li.active > a {
  background-color: transparent;
}

.updates.media-heading {
  margin-top: 15px;
  line-height: 1.5;
  margin-top: 0;
  color: #041022;
  font-size: 18px;
  font-family: Ubuntu, 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande',
    'Lucida Sans', Arial, sans-serif;
  opacity: 0.7;
  text-align: left;
}

.updates.render-map > .feed-entry__map {
  position: static;
  right: 0;
  top: 0;
  float: none;
  border-radius: 10px;
  margin-top: 15px;
}

.updates.feed-stats-svg svg * {
  stroke: #8bbce0;
}

.updates.fa-icon {
  font-size: clamp(25px, 1vw + 3rem, 5rem);
  color: #8bbce0;
  margin-top: 5px;
}

.updates.badge.badge-notify {
  background: #709bba 0% 0% no-repeat padding-box;
  border: 1px solid #ffffff;
  position: relative;
  top: -40px;
  left: 15px;
  padding: 2px 5px;
  font-size: 10px;
  color: white;
}

.latest-dives__unit > div {
  margin-left: 0;
}

.marine-animals,
.dive-site_latest-dives {
  margin: 20px 0;
}

.marine-animal,
.latest-dive .latest-dive__details {
  display: flex;
  align-items: center;
}

.marine-animal,
.latest-dive {
  padding: 20px 0;
  border-top: 1px solid #dee5f2;
}

.marine-animal:last-child,
.latest-dive:last-child, .buddy-container:last-child {
  border-bottom: 1px solid #dee5f2;
}

.marine-animal .name {
  flex: 1;
  padding-left: 20px;
  height: 60px;
}

.marine-animal .name a {
  color: #041022;
  font-size: 18px;
  line-height: 50px;
  text-align: left;
  text-decoration: underline;
}

.marine-animal .name a:hover {
  text-decoration: none;
}

.marine-animal .image {
  width: 64px;
  height: 44px;
}

.marine-animal .image.contains-svg {
  display: flex;
  align-content: center;
  justify-content: center;
}

.marine-animal .image.contains-svg span {
  display: inline-block;
  width: 40px;
  height: 40px;
}

.marine-animal .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.marine-animal .stat {
  text-transform: uppercase;
}

.border-light-purple {
  border-color: #8a8cad;
}

.block {
  display: block !important;
}

.inl-block {
  display: inline-block !important;
}

/*************** Size *******************/
.font-size-45px {
  font-size: 45px !important;
}

.font-size-60px {
  font-size: 60px !important;
}

.font-size-20px {
  font-size: 20px !important;
}

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

.font-size-16px {
  font-size: 16px !important;
}

.font-size-15px {
  font-size: 15px !important;
}

.font-size-14px {
  font-size: 14px !important;
}

.font-size-12px {
  font-size: 12px !important;
}

.font-size-30px {
  font-size: 30px;
}

.font-size-lg {
  font-size: 40px !important;
}

@media (max-width: 992px) {
  .font-size-lg {
    font-size: 35px !important;
  }
}

@media (max-width: 480px) {
  .font-size-lg {
    font-size: 30px !important;
  }
}

/*************** Color *******************/
.color-blue {
  color: #3fa9f5 !important;
}

.color-light-blue {
  color: #a3deff !important;
}

.color-light-blue:hover,
.color-light-blue:active,
.color-light-blue:focus,
.color-light-blue:active:focus {
  color: #a3deff !important;
}

.color-green-intense {
  color: #22bb65 !important;
}

.color-green {
  color: #a2c63f !important;
}

.color-dark-green {
  color: #6b8e23 !important;
}

.color-light-purple {
  color: #8a8cad !important;
}

.color-pink {
  color: #f54e64 !important;
}

.color-pink:hover,
.color-pink:active,
.color-pink:focus,
.color-pink:active:focus {
  border-color: #f54e64 !important;
}

.color-light-purple-alternative {
  color: #d1d1df !important;
}

.color-light-purple-alternative:hover,
.color-light-purple-alternative:active,
.color-light-purple-alternative:focus,
.color-light-purple-alternative:active:focus {
  border-color: #d1d1df !important;
}

.color-white {
  color: white !important;
}

.color-white:hover,
.color-white:active,
.color-white:focus,
.color-white:active:focus {
  border-color: white !important;
}

.color-white-transparent {
  color: rgba(255, 255, 255, 0.5) !important;
}

.color-white-transparent:hover,
.color-white-transparent:active,
.color-white-transparent:focus,
.color-white-transparent:active:focus {
  border-color: rgba(255, 255, 255, 0.5) !important;
}

.color-faded {
  opacity: 0.75;
}

.color-faded:hover,
.color-faded:active,
.color-faded:focus,
.color-faded:active:focus {
  opacity: 1;
}

.color-orange {
  color: #ffad1e !important;
}

.color-dark-orange {
  color: #ff931e !important;
}

.color-dark-blue-alt {
  color: #332c8a !important;
}

.color-dark-blue {
  color: #1b1464 !important;
}

.color-dark {
  color: #041022 !important;
}

.color-facebook {
  color: #3b5998 !important;
}

.color-instagram {
  color: #dc2743 !important;
}

.color-twitter {
  color: #1dcaff !important;
}

/*************** Transformation *******************/
.lowercase {
  text-transform: lowercase !important;
}

/*************** Weight *******************/
.weight-light {
  font-weight: 300 !important;
}

.weight-medium {
  font-weight: 500 !important;
}

.weight-bold {
  font-weight: 700 !important;
}

.line-height-15 {
  line-height: 1.5 !important;
}

.ml-auto {
  margin-left: auto !important;
}

.no-margin {
  margin: 0 !important;
}

.m-b-50px {
  margin-bottom: 50px !important;
}

.m-b-40px {
  margin-bottom: 40px !important;
}

.m-b-15px {
  margin-bottom: 15px !important;
}

.m-t-50px {
  margin-top: 50px !important;
}

.m-t-40px {
  margin-top: 40px !important;
}

.m-t-20px {
  margin-top: 20px !important;
}

.m-t-15px {
  margin-top: 15px !important;
}

.mt-100 {
  margin-top: 100px;
}

.m-r-15px {
  margin-right: 15px !important;
}

.m-r-30px {
  margin-right: 30px !important;
}

.m-r-50px {
  margin-right: 50px !important;
}

.m-l-15px {
  margin-left: 15px !important;
}

.m-l-5px {
  margin-left: 5px !important;
}

.margin-top-md {
  margin-top: 35px !important;
}

.margin-bottom-md {
  margin-bottom: 35px !important;
}

.margin-bottom-lg {
  margin-bottom: 70px !important;
}

.margin-top-lg {
  margin-top: 70px !important;
}

.margin-bottom-xsm {
  margin-bottom: 5px !important;
}

.no-margin-bottom {
  margin-bottom: 0 !important;
}

.no-margin-top {
  margin-top: 0 !important;
}

.no-ml-pl {
  margin-left: 0;
  padding-left: 0;
}

@media (max-width: 992px) {
  .margin-top-md {
    margin-top: 30px !important;
  }
  .margin-bottom-lg {
    margin-bottom: 60px !important;
  }
}

@media (max-width: 480px) {
  .margin-top-md {
    margin-top: 25px !important;
  }
  .margin-bottom-md {
    margin-bottom: 25px !important;
  }
  .margin-bottom-lg {
    margin-bottom: 50px !important;
  }
  .margin-top-lg {
    margin-top: 50px !important;
  }
}

@media (max-width: 992px) {
  .no-margin-992px {
    margin: 0 !important;
  }
}

.noselect {
  user-select: none !important;
}

.pointer {
  cursor: pointer !important;
}

.stroke-light-purple {
  stroke: #8a8cad !important;
}

.z-1000 {
  z-index: 1000 !important;
}

.no-padding {
  padding: 0 !important;
}

.padding-left-10px {
  padding-left: 10px !important;
}

.padding-right-10px {
  padding-right: 10px !important;
}

.padding-right-0 {
  padding-right: 0 !important;
}

.padding-top-15px {
  padding-top: 15px !important;
}

.p-top-40px{
  padding-top: 40px;
}

.p-bottom-40px {
  padding-bottom: 40px;
}

.padding-bottom-15px {
  padding-bottom: 15px !important;
}

.padding-left-15px {
  padding-left: 15px !important;
}

.padding-right-15px {
  padding-right: 15px !important;
}

.pos-relative {
  position: relative !important;
}

.pos-absolute {
  position: absolute !important;
}

.top-0 {
  top: 0 !important;
}

.left-0 {
  left: 0 !important;
}

.bottom-5px {
  bottom: 5px !important;
}

.transform-180deg {
  transform: rotate(180deg) !important;
}

.translateX-n100 {
  transform: translateX(-100%) !important;
}

.hidden,
.visibility-hidden {
  visibility: hidden !important;
}

.visible {
  visibility: visible !important;
}

.background-very-light-purple {
  background-color: #f8f7fa !important;
}

.background-white {
  background-color: white !important;
}

.background-black-opacity {
  background-color: rgba(0, 0, 0, 0.75);
}

.height-100vh {
  height: 100vh !important;
}

.width-100vw {
  width: 100vw !important;
}


.width-100 {
  width: 100%;
}

.font-italic {
  font-style: italic;
}

span.unavailable .dive-svg,
span.unavailable .mf-svg-1,
span.unavailable .location-svg-1,
span.unavailable .location-svg-2,
span.unavailable .time-svg-1,
span.unavailable .time-svg-2,
span.unavailable .time-svg-3,
span.unavailable .image-svg,
span.unavailable .image-svg-2{
  stroke: rgb(195, 209, 219) !important;
}

.jumbotron h1 {
  font-size: clamp(3rem, 2vw + 1rem, 5rem);
  color: #fff;
}

.dive-page .dive-datetimepicker-container input,
.dive-page-another-user .dive-datetimepicker-container input {
  font-size: clamp(18px, 0.7vw + 0.5rem, 3rem);
}

.dive-page .breadcrumb,
.dive-page-another-user .breadcrumb,
.owner-edit-page .breadcrumb,
.inbox .breadcrumb,
#destination-page .breadcrumb, .dive-site-public-page .breadcrumb {
  font-size: clamp(14px, 0.6vw + 0.5rem, 1.5rem);
  color: #EDEFF3;
}

.my-dives-page .stats_label {
  font-size: clamp(12px, 0.5vw + 0.5rem, 1.8rem);
}

#destination-page .navbar-nav > li{
  font-size: clamp(10px, 0.5vw + 0.4rem, 1.3rem);
}

.dive-site-public-page .dive-location, .dive-site-public-page .dive-location a {
  font-size: clamp(14px, 1vw + 1.5rem, 2.5rem) !important;
}

.destinations .destination .card.hovercard .card-info .title {
  font-size: clamp(14px, 1vw + 1.2rem, 2rem) !important;
}

input.select2-search__field::placeholder {
  font-size: clamp(12px, 0.5vw + 1.2rem, 1.7rem);
}

.updates.stat-container__name {
  font-size: clamp(14px, 0.5vw + 1.2rem, 1.4rem);
}

.updates.stat-container__value {
  font-size: clamp(16px, 0.5vw + 1.8rem, 2.7rem);
}