/* stylelint-disable */
/* stylelint-disable max-line-length */
:root {
  --breakpoint-xxl: 1920px;
  --breakpoint-xl: 1440px;
  --breakpoint-lg: 1280px;
  --breakpoint-md: 1024px;
  --breakpoint-md-s: 992px;
  --breakpoint-sm: 768px;
  --breakpoint-sm-s: 760px;
  --breakpoint-xs: 512px;
  --breakpoint-xxs: 390px;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);

  or object-fit and object-position:
  @include object-fit(cover, top);
*/
.section-locations__content {
  max-width: 390px;
  position: absolute;
}
@media (max-width: 768px) {
  .section-locations__content {
    position: relative;
    text-align: center;
    max-width: 100%;
    margin-bottom: 32px;
  }
  .section-locations__content .section-locations__list {
    display: none;
  }
}
.section-locations__content hr {
  max-width: 360px;
  margin: 20px 0 40px;
}
@media (max-width: 768px) {
  .section-locations__content hr {
    display: none;
  }
}
.section-locations__items {
  list-style: none;
  padding: 0;
  margin: 80px auto 0 auto;
  -moz-columns: 2;
       columns: 2;
  -moz-column-gap: 63px;
       column-gap: 63px;
}
@media (max-width: 1280px) {
  .section-locations__items {
    -moz-column-gap: 24px;
         column-gap: 24px;
  }
}
@media (max-width: 1024px) {
  .section-locations__items {
    margin: 40px auto 0 auto;
    -moz-columns: 1;
         columns: 1;
  }
}
.section-locations__item {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 560px;
  padding: 16px 0;
  border-top: 1px solid var(--sk-color-border);
  position: relative;
  margin-top: -1px;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}
.section-locations__item:last-child {
  border-bottom: 1px solid var(--sk-color-border);
}
.section-locations__item.last-in-first-column {
  border-bottom: 1px solid var(--sk-color-border);
}
@media (max-width: 1024px) {
  .section-locations__item.last-in-first-column {
    border-bottom: none;
  }
}
@media (min-width: 1440px) {
  .section-locations__item {
    max-width: 100%;
  }
}
@media (max-width: 1024px) {
  .section-locations__item {
    padding: 8px 0;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .section-locations__item {
    max-width: 100%;
  }
}
@media (max-width: 512px) {
  .section-locations__item {
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.section-locations__item > p {
  margin-bottom: 0;
}
.section-locations__item-title {
  font-family: var(--sk-font-secondary);
  font-weight: 400;
  font-style: italic;
  width: 100%;
  max-width: 200px;
  padding-right: 10px;
}
@media (max-width: 1280px) {
  .section-locations__item-title {
    max-width: 160px;
  }
}
@media (max-width: 512px) {
  .section-locations__item-title {
    max-width: 100%;
  }
}
.section-locations__item-info {
  display: flex;
  align-items: center;
  flex-grow: 1;
  gap: 10px;
}
@media (max-width: 512px) {
  .section-locations__item-info {
    flex-direction: column;
    align-items: flex-start;
  }
}
.section-locations__item-info p {
  margin: 0;
}
.section-locations__item-status {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
@media (max-width: 512px) {
  .section-locations__item-status {
    width: 100%;
    max-width: 100%;
    order: 1;
  }
}
.section-locations__item-status--circle {
  width: 12px;
  height: 12px;
  display: inline-block;
  border-radius: 50%;
  margin-right: 8px;
}
.section-locations__item-status--circle.planned {
  background-color: #0096eb;
}
.section-locations__item-status--circle.operational {
  background-color: #00c588;
}
.section-locations__item-status--circle.in-construction {
  background-color: #ffae30;
}
.section-locations__item-status--title {
  font-size: 13px;
  font-weight: 200;
}
.section-locations__item-buttons {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 10px;
}
@media (max-width: 512px) {
  .section-locations__item-buttons {
    flex-direction: column;
  }
}
.section-locations__item-buttons .sk-btn {
  white-space: nowrap;
  margin: 0 !important;
}
.section-locations__list {
  list-style: none;
  padding: 0;
}
.section-locations__list.mobile {
  display: none;
}
@media (max-width: 768px) {
  .section-locations__list.mobile {
    display: block;
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin: 32px auto 0;
  }
}
.section-locations__list li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-weight: 200;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .section-locations__list li {
    margin-bottom: 5px;
  }
}
.section-locations__list li span {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 8px;
}
.section-locations__map {
  position: relative;
}
.section-locations__map img,
.section-locations__map svg {
  margin: 0 auto;
}
.section-locations__map img circle[stroke-width],
.section-locations__map svg circle[stroke-width] {
  animation: pulse 2s ease-in-out infinite;
  pointer-events: none;
}
.section-locations__map img circle,
.section-locations__map svg circle {
  cursor: pointer;
  transition: r 0.3s ease-in-out;
}
.section-locations__map img circle:hover, .section-locations__map img circle:focus,
.section-locations__map svg circle:hover,
.section-locations__map svg circle:focus {
  r: 8;
  box-shadow: none;
  outline: none;
}
.section-locations .modal {
  padding: 24px;
  width: 100%;
  max-width: 352px;
  background-color: var(--sk-color-white);
  box-shadow: 0 5px 32px 0 rgba(0, 0, 0, 0.0509803922);
  position: absolute;
  right: 16px;
  top: 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .section-locations .modal {
    right: 0;
    left: 0;
    margin: 0 auto;
  }
}
.section-locations .modal.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.section-locations .modal .close {
  cursor: pointer;
  background-color: transparent;
  border: none;
  position: absolute;
  padding: 12px;
  top: 0;
  right: 0;
}
.section-locations .modal .close svg {
  pointer-events: none;
}
.section-locations .modal .close path {
  transition: stroke 0.3s ease-in-out;
}
.section-locations .modal .close:hover path {
  stroke: var(--sk-color-four);
}
.section-locations .modal__title {
  font-size: 25px;
  line-height: 30px;
  font-family: var(--sk-font-secondary);
  font-style: italic;
  margin-bottom: 0;
}
.section-locations .modal__subtitle {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 16px;
  font-weight: 200;
}
.section-locations .modal__image {
  max-width: 100%;
  height: auto;
  margin-bottom: 16px;
  margin-top: 16px;
}
.section-locations .modal__postcode, .section-locations .modal__dispensers {
  font-size: 16px;
  line-height: 28px;
  font-weight: 200;
  margin-bottom: 0;
}
.section-locations .modal__postcode span, .section-locations .modal__dispensers span {
  font-weight: 700;
}
.section-locations .modal__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}
.section-locations .modal__link {
  font-size: var(--sk-text--xs);
  padding: 3px 13px 2px;
  margin: 0 !important;
}

@keyframes pulse {
  0% {
    r: 2;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    r: 8;
    opacity: 0;
  }
}
