@charset "UTF-8";
@import url("../fonts/gotham/stylesheet.css");
@import url("../fonts/nunitosans/stylesheet.css");
html,
body {
  margin: 0;
  padding: 0;
  color: #131439;
  overflow-x: hidden;
  background: #ffffff;
  font-family: "Gotham", sans-serif;
  font-weight: normal;
  font-size: 18px;
  line-height: 1.5;
}

h6, h5, h4, h3, h2, h1 {
  margin: 15px 0;
  line-height: 1.3em;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 16px;
}

a {
  text-decoration: none;
}

p, ul, ol {
  margin: 15px 0;
  font-size: 18px;
}

p a, li a {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
}
p a:hover, li a:hover {
  color: inherit;
  text-decoration: underline;
}

.container-wrap {
  display: grid;
  grid: auto/1fr minmax(0px, 1280px) 1fr;
  grid-gap: 0 15px;
}
.container-wrap .container {
  grid-column: 2/3;
}

main {
  margin-top: 95px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 95px;
  padding: 0 20px;
  transition: all 200ms ease-in-out;
  z-index: 999;
}
body.fixed .site-header {
  position: fixed;
  left: 0;
  top: 0;
}
body.absolute .site-header {
  position: absolute;
  left: 0;
  top: 0;
}
.site-header .logo {
  display: block;
  width: 102px;
  height: 55px;
}
.site-header .logo img {
  width: 100%;
}
.site-header .header__nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.site-header .header__nav-container .header__btns {
  display: flex;
  align-items: center;
}

.nav-icon3 {
  display: none;
  width: 34px;
  height: 28px;
  position: relative;
  margin: 2px 15px 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
.nav-icon3 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #ffffff;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.nav-icon3 span:nth-child(1) {
  top: 0px;
}
.nav-icon3 span:nth-child(2), .nav-icon3 span:nth-child(3) {
  top: 12px;
}
.nav-icon3 span:nth-child(4) {
  top: 24px;
}
.nav-icon3.open span:nth-child(1) {
  top: 12px;
  width: 0%;
  left: 50%;
}
.nav-icon3.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.nav-icon3.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.nav-icon3.open span:nth-child(4) {
  top: 12px;
  width: 0%;
  left: 50%;
}

.fixed-header main {
  margin-top: 95px;
}
.transparent-header main {
  margin: 0;
}

section.page-intro {
  padding: 60px 0;
}

#site-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.4);
  height: 100%;
  width: 100%;
  z-index: 1001;
  backdrop-filter: blur(2px);
  display: none;
}
#site-overlay.active {
  display: flex;
  justify-content: center;
  align-items: center;
}
#site-overlay .progress-icon {
  display: none;
}
#site-overlay .progress-icon .lds-roller div:after {
  background: #fff !important;
}

.swal-overlay {
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(2px);
}

.swal-modal {
  border-radius: 24px;
}

.swal-title {
  font-size: 26px;
}

.swal-text {
  text-align: center;
}

.swal-footer {
  text-align: center;
}

.swal-button {
  padding: 10px 20px;
  cursor: pointer;
  background: transparent;
  border-radius: 24px;
  transition: all 0.2s ease-in-out;
  outline: none !important;
  box-shadow: none !important;
  font-size: 16px;
}
.swal-button.swal-button--cancel {
  color: rgba(0, 0, 0, 0.7);
  border: 2px solid rgba(0, 0, 0, 0.7);
}
.swal-button.swal-button--cancel:hover {
  color: #ffffff;
  background-color: #E31D75;
  border-color: #E31D75;
  transition: all 0.2s ease-in-out;
}
.swal-button.swal-button--confirm {
  color: #E31D75;
  border: 2px solid #E31D75;
}
.swal-button.swal-button--confirm:hover {
  color: #ffffff;
  background-color: #E31D75;
  transition: all 0.2s ease-in-out;
}

.no-scroll {
  overflow-y: hidden;
}

.btn {
  transition: all 0.2s ease-in-out;
}
.btn:hover {
  transition: all 0.2s ease-in-out;
}
.btn.alt-blue {
  background-color: transparent;
  border: solid 2px #ffffff;
  color: #ffffff;
}
.btn.alt-blue:hover {
  background-color: #ffffff;
  color: #131439;
}
.btn.btn-blue_light {
  background-color: transparent;
  border: solid 2px #ffffff;
  color: #ffffff;
}
.btn.btn-blue_light:hover {
  background-color: #131439;
  border: solid 2px #131439;
}
.btn.grey {
  background-color: #EDEDED;
  border-color: #EDEDED;
}
.btn:disabled {
  background-color: #EDEDED !important;
  color: #787878 !important;
  border-color: #787878 !important;
  opacity: 0.8 !important;
  cursor: default !important;
}

ion-icon {
  pointer-events: none;
}

.featured-image {
  background-color: #f8f8f8;
  border-radius: 25px;
  position: relative;
}
.featured-image .featured {
  border-radius: 25px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-image .logo {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 0.25px;
  padding: 10px 20px;
  outline: 0 !important;
  cursor: pointer;
  border: 2px solid !important;
  border-radius: 24px !important;
  box-shadow: none !important;
  transition: all 0.2s ease-in-out;
  color: #ffffff !important;
  background-color: #E31D75 !important;
  border-color: #E31D75 !important;
}
.btn.outline {
  color: #E31D75 !important;
  background-color: transparent !important;
  border-color: #E31D75 !important;
}
.btn:hover {
  color: #ffffff !important;
  background-color: rgba(0, 0, 0, 0.8) !important;
  border-color: rgba(0, 0, 0, 0.8) !important;
  transition: all 0.2s ease-in-out;
}
.btn.white {
  color: #ffffff !important;
  border: 2px solid #ffffff !important;
}
.btn.white:hover {
  color: rgba(0, 0, 0, 0.8) !important;
  background-color: #ffffff !important;
}
.btn.dark {
  color: rgba(0, 0, 0, 0.8) !important;
  border-color: rgba(0, 0, 0, 0.8) !important;
}
.btn.dark:hover {
  color: #ffffff !important;
  background-color: #E31D75 !important;
  border-color: #E31D75 !important;
  transition: all 0.2s ease-in-out;
}
.btn.small {
  font-size: 13px;
  line-height: 13px;
  text-transform: uppercase;
  padding: 6px 12px;
  background-color: #131439;
  border: 0;
}
.btn.small:hover {
  background-color: #E31D75;
}
.btn.small.used {
  background-color: #131439 !important;
  cursor: default;
  opacity: 0.5;
}
.btn:disabled {
  color: rgba(0, 0, 0, 0.5) !important;
  background-color: transparent !important;
  border-color: rgba(0, 0, 0, 0.5) !important;
}

.btn em {
  font-style: normal;
  position: relative;
  z-index: 2;
}

.btn-blue:hover {
  color: #fff;
}

.btn-white,
.section-grid .btn {
  background-color: transparent;
  border: 2px solid #fff;
  padding-top: 8px;
  padding-bottom: 8px;
  color: #fff;
}

.btn-white span,
.section-grid .btn span {
  background: #fff;
}

.btn-white:hover,
.section-grid .btn:hover {
  color: #fff;
}

.btn-light {
  background-color: #eff0f3;
  border: 2px solid #eff0f3;
  padding-top: 8px;
  padding-bottom: 8px;
  color: #131439;
  font-weight: 500;
}

.btn-light span {
  background: #131439;
}

.btn-light:hover {
  color: #fff;
}

.btn-darkgrey {
  background-color: #3A3C42;
}

.lds-default {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-default div {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #E31D75;
  border-radius: 50%;
  animation: lds-default 1.2s linear infinite;
}

.lds-default div:nth-child(1) {
  animation-delay: 0s;
  top: 37px;
  left: 66px;
}

.lds-default div:nth-child(2) {
  animation-delay: -0.1s;
  top: 22px;
  left: 62px;
}

.lds-default div:nth-child(3) {
  animation-delay: -0.2s;
  top: 11px;
  left: 52px;
}

.lds-default div:nth-child(4) {
  animation-delay: -0.3s;
  top: 7px;
  left: 37px;
}

.lds-default div:nth-child(5) {
  animation-delay: -0.4s;
  top: 11px;
  left: 22px;
}

.lds-default div:nth-child(6) {
  animation-delay: -0.5s;
  top: 22px;
  left: 11px;
}

.lds-default div:nth-child(7) {
  animation-delay: -0.6s;
  top: 37px;
  left: 7px;
}

.lds-default div:nth-child(8) {
  animation-delay: -0.7s;
  top: 52px;
  left: 11px;
}

.lds-default div:nth-child(9) {
  animation-delay: -0.8s;
  top: 62px;
  left: 22px;
}

.lds-default div:nth-child(10) {
  animation-delay: -0.9s;
  top: 66px;
  left: 37px;
}

.lds-default div:nth-child(11) {
  animation-delay: -1s;
  top: 62px;
  left: 52px;
}

.lds-default div:nth-child(12) {
  animation-delay: -1.1s;
  top: 52px;
  left: 62px;
}

@keyframes lds-default {
  0%, 20%, 80%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
}
nav .menu {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
nav .menu .menu-item a {
  color: inherit;
  text-decoration: none;
}
nav .sub-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  visibility: hidden;
}

/* UTILITIES */
.flex-row {
  display: flex;
  flex-direction: row;
}

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

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

.inner-box {
  padding: 25px 0;
}

.line-top {
  border-top: 2px solid #9eadba;
}

.line-bottom {
  border-bottom: 2px solid #9eadba;
}

.line-left {
  border-left: 2px solid #9eadba;
  margin: 25px;
}

.line-right {
  border-right: 2px solid #9eadba;
  margin: 25px;
}

.inner-spacer {
  margin: 25px;
}

/* BUTTONS */
.simple-btn {
  border: 2px solid #E31D75;
  padding: 6px 11px;
  border-radius: 3px;
  color: #E31D75;
  font-size: 15px;
  line-height: 18px;
  font-weight: 400;
  cursor: pointer;
  text-decoration: none !important;
  transition: all 0.2s ease-in-out;
}
.simple-btn:hover {
  color: #ffffff;
  background-color: #E31D75;
  transition: all 0.2s ease-in-out;
}

#card-element {
  border: 2px solid lightgrey;
  padding: 6px 3px;
  border-radius: 5px;
}

.swal2-title {
  font-size: 24px !important;
  line-height: 30px !important;
}

.custom-scrollbar {
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.custom-scrollbar::-webkit-scrollbar {
  width: 10px;
}
.custom-scrollbar::-webkit-scrollbar-track {
  background: #ffffff;
  border-radius: 3px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background-color: #E31D75;
  border-radius: 3px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background-color: #FFA300;
}

.background-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.8);
}

.progress-icon .lds-roller {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.progress-icon .lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}
.progress-icon .lds-roller div:after {
  content: "";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #E31D75;
  margin: -4px 0 0 -4px;
}
.progress-icon .lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}
.progress-icon .lds-roller div:nth-child(1):after {
  top: 63px;
  left: 63px;
}
.progress-icon .lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}
.progress-icon .lds-roller div:nth-child(2):after {
  top: 68px;
  left: 56px;
}
.progress-icon .lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}
.progress-icon .lds-roller div:nth-child(3):after {
  top: 71px;
  left: 48px;
}
.progress-icon .lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}
.progress-icon .lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}
.progress-icon .lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}
.progress-icon .lds-roller div:nth-child(5):after {
  top: 71px;
  left: 32px;
}
.progress-icon .lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}
.progress-icon .lds-roller div:nth-child(6):after {
  top: 68px;
  left: 24px;
}
.progress-icon .lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}
.progress-icon .lds-roller div:nth-child(7):after {
  top: 63px;
  left: 17px;
}
.progress-icon .lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}
.progress-icon .lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12px;
}
@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

form label {
  font-size: inherit;
}

.field-group {
  margin-bottom: 40px;
}
.field-group input {
  width: 100%;
  padding: 10px;
  background: #fff;
  border: 0;
  outline: none;
  padding: 15px;
  border-radius: 24px;
}
.field-group.two-col {
  display: grid;
  grid-gap: 15px;
  grid: auto/1fr 1fr;
}

/* The switch - the box around the slider */
label.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
label.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
label.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
label.switch .slider::before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
label.switch .slider.round {
  border-radius: 34px;
}
label.switch .slider.round::before {
  border-radius: 50%;
}
label.switch input:checked + .slider {
  background-color: #E31D75;
}
label.switch input:focus + .slider {
  box-shadow: 0 0 1px #E31D75;
}
label.switch input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.styled-checkbox {
  position: relative;
  display: flex;
  align-items: center;
}
.styled-checkbox input {
  opacity: 0;
  width: 0;
  height: 0;
}
.styled-checkbox label {
  padding: 5px 0 0 50px;
  cursor: pointer;
}
.styled-checkbox label::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  border: solid 2px #ccc;
  border-radius: 6px;
  position: absolute;
  left: 0;
  top: 0;
}
.styled-checkbox label::after {
  content: "✓";
  position: absolute;
  left: 7px;
  top: 0;
  color: #ffffff;
  font-size: 24px;
  opacity: 0;
}
.styled-checkbox input:checked + label::before {
  background-color: #E31D75;
  border-color: #E31D75;
}
.styled-checkbox input:checked + label::after {
  opacity: 1;
}

.plan-container .plan-overview {
  min-width: 310px;
}
.plan-container .plans-include h4 {
  margin-bottom: 5px;
}
.plan-container .plans-include ul {
  list-style: square;
  padding: 0 0 0 24px;
  margin: 0 0 20px;
}
@media (max-width: 1050px) {
  .plan-container {
    flex-wrap: wrap;
  }
  .plan-container .line-right {
    display: none;
  }
  .plan-container .inner-box {
    width: 100%;
  }
}

.membership-columns {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.membership-columns .membership-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  margin: 15px;
  min-width: 355px;
  max-width: 475px;
  border: 2px solid #c3cfd9;
}
.membership-columns .membership-column .btn-wrapper {
  flex: 1;
  display: flex;
  align-items: flex-end;
}
.membership-columns .membership-column .segment {
  padding: 15px;
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  align-content: flex-start;
}
.membership-columns .membership-column .membership-title {
  font-size: 17px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}
.membership-columns .membership-column .membership-title .current-plan {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  color: #3CB371;
  border: solid 2px #3CB371;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 900;
}
.membership-columns .membership-column .membership-cost {
  font-size: 24px;
  font-weight: 600;
}
.membership-columns .membership-column .membership-button-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 60px;
}
.membership-columns .membership-column .membership-button-container .btn-choose {
  display: inline-block;
}
.membership-columns .membership-column .membership-button-container .btn-selected {
  display: none;
}
.membership-columns .membership-column .info-points .info-point {
  margin: 8px 0;
}
.membership-columns .membership-column .info-points .info-line {
  height: 2px;
  width: 60px;
  background-color: #9eadba;
}
.membership-columns .membership-column.selected .btn-selected {
  display: inline-block;
}
.membership-columns .membership-column.selected .btn-choose {
  display: none;
}
.membership-columns.membership-column-selectable .membership-column {
  transition: all 200ms;
}

.member_bookings__elements_container .member_bookings__upcoming .panel--basic {
  flex-direction: column;
  margin-bottom: 20px;
}

.member_bookings__space_name {
  font-size: 16px;
  color: #4d4d4d;
  line-height: 20px;
  text-align: center;
  margin-top: 5px;
  margin-bottom: 5px;
}
.member_bookings__previous_container {
  display: flex;
  flex-direction: column;
}
.member_bookings__previous {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-top: 15px;
}
.member_bookings__previous > div {
  width: 20%;
}
.member_bookings__upcoming {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  width: 25%;
  padding-left: 10px;
  padding-right: 10px;
}
.member_bookings__element {
  margin-top: 5px;
  font-size: 14px;
  text-align: center;
  color: #4d4d4d;
  display: flex;
  flex-direction: column;
}
.member_bookings__canceled {
  margin-top: 13px;
  text-align: center;
  color: red;
  padding: 6px 15px;
  display: none;
}
.member_bookings__canceled.visible {
  display: block;
}
.member_bookings__elements_container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.member_bookings__cancel_button {
  background-color: #fc1f4a;
  border: none;
  color: #fff;
  padding: 10px 15px;
  border-radius: 32px;
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  width: 100%;
  margin-top: 5px;
  display: none;
  justify-content: center;
}
.member_bookings__cancel_button:hover {
  background-color: #ff4f72;
  color: white;
  cursor: pointer;
}
.member_bookings__cancel_button.visible {
  display: flex;
}
.member_bookings__bookings_title {
  color: #4d4d4d;
}
.member_bookings__no_bookings {
  color: #4d4d4d;
  font-size: 18px;
  font-weight: 500;
}

@media only screen and (max-width: 1350px) {
  .member_bookings__upcoming {
    width: 33.3%;
  }
}
@media only screen and (max-width: 1050px) {
  .member_bookings__upcoming {
    width: 50%;
  }
  .member_bookings__previous {
    flex-direction: column;
    align-items: center;
  }
}
@media only screen and (max-width: 800px) {
  .member_bookings__upcoming {
    width: 100%;
  }
}
.my-credits .credit-container {
  display: flex;
  width: 230px;
  justify-content: space-between;
  margin: 10px 0;
}
.my-credits__purchase_history {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  flex-direction: column;
}
.my-credits__purchase_history > div {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.my-credits__purchase_history > div > div {
  justify-content: center !important;
}
@media (max-width: 640px) {
  .my-credits__purchase_history > div {
    margin: 15px 0 !important;
  }
  .my-credits__purchase_history > div > div {
    width: 100% !important;
  }
}
.my-credits__purchase_history strong {
  line-height: 30px;
}
.my-credits__purchase_history .date {
  width: 25%;
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
}
.my-credits__purchase_history .coworking_credits_amount {
  width: 25%;
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
}
.my-credits__purchase_history .room_credits_amount {
  width: 25%;
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
}
.my-credits__purchase_history .cost {
  width: 25%;
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
}

.payment-btn-disabled {
  background-color: #d0d0d0 !important;
  cursor: default !important;
}

.site-header {
  background-color: #ffffff;
  position: fixed;
}
.site-header .admin-bar .site-header {
  margin-top: 32px;
}
@media only screen and (max-width: 782px) {
  .site-header .admin-bar .site-header {
    margin-top: 46px;
  }
}
.site-header .header__nav-container .menu-container {
  margin-left: 30px;
}
.site-header .header__nav-container .menu-container .menu .menu-item {
  margin-right: 16px;
  color: rgba(0, 0, 0, 0.8);
  font-size: 20px;
}
.site-header .header__nav-container .menu-container .menu .menu-item:last-of-type {
  margin-right: 0;
}
.site-header .header__nav-container .menu-container .menu .menu-item a {
  height: 95px;
  padding: 30px 5px 5px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
}
.site-header .header__nav-container .menu-container .menu .menu-item a:hover {
  color: #E31D75;
}
.site-header .header__nav-container .menu-container .menu .menu-item .description {
  font-size: 14px;
  display: inline-block;
  padding-left: 5px;
}
@media (max-width: 1024px) {
  .site-header .header__nav-container .menu-container .menu .menu-item {
    font-size: 18px;
    margin-right: 10px;
  }
}
.site-header .header__nav-container .menu-container .menu .menu-item .sub-menu {
  background-color: #ffffff;
  border-radius: 0;
  padding: 15px 20px;
  box-shadow: 0px 5px 4px 0px rgba(0, 0, 0, 0.3);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  z-index: 100;
}
.transparent-header .site-header .header__nav-container .menu-container .menu .menu-item .sub-menu {
  border-radius: 12px;
}
.site-header .header__nav-container .menu-container .menu .menu-item .sub-menu .menu-item {
  margin: 0;
  color: #131439;
  font-size: 16px;
  padding: 3px 0;
  margin-bottom: 4px;
  font-weight: 700;
  line-height: 20px;
  opacity: 0.7;
}
.site-header .header__nav-container .menu-container .menu .menu-item .sub-menu .menu-item:hover {
  color: #E31D75;
  opacity: 1;
}
.site-header .header__nav-container .menu-container .menu .menu-item .sub-menu .menu-item a {
  display: block;
  padding: 2px;
  height: auto;
}
.site-header .header__nav-container .menu-container .menu .menu-item .sub-menu .menu-item .sub-menu {
  box-shadow: none;
  border: 0;
  position: relative;
  padding: 10px 0px 0px 15px;
}
.site-header .header__nav-container .menu-container .menu .menu-item .sub-menu .menu-item .sub-menu .menu-item {
  margin-bottom: 2px;
}
.site-header .header__nav-container .menu-container .menu .menu-item.menu-item-has-children:hover .sub-menu {
  visibility: visible;
}
.site-header .header__nav-container .menu-container .menu .menu-item.mega .sub-menu {
  padding: 30px 30px 40px 35px;
  display: flex;
}
.site-header .header__nav-container .menu-container .menu .menu-item.mega .sub-menu li.heading {
  font-weight: 700;
  color: #131439;
  border-right: solid 2px #EDEDED;
  padding-right: 30px;
  margin-right: 30px;
  max-width: 300px;
  font-size: 20px;
  opacity: 1;
  cursor: default;
}
.site-header .header__nav-container .menu-container .menu .menu-item.mega .sub-menu li.heading:last-of-type {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}
.site-header .header__nav-container .menu-container .menu .menu-item.mega .sub-menu li.heading > a {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 0 0 5px 0;
  margin-bottom: 10px;
}
.site-header .header__nav-container .menu-container .menu .menu-item.mega .sub-menu li.heading > a::after {
  content: "";
  display: inline-block;
  height: 2px;
  width: 100%;
  max-width: 200px;
  background-color: #131439;
  position: absolute;
  left: 0;
  bottom: 0;
}
.site-header .header__nav-container .menu-container .menu .menu-item.mega .sub-menu .sub-menu {
  position: relative;
  padding: 0;
  flex-direction: column;
  box-shadow: none;
  border-top: none;
}
.site-header .header__nav-container .menu-container .menu .menu-item.mega .sub-menu .sub-menu .menu-item {
  padding: 6px 0;
}
.site-header .header__nav-container .menu-container .menu .menu-item.mega .sub-menu .sub-menu .menu-item a {
  padding: 0;
}
.site-header .header__nav-container .header__btns .btn-search {
  display: inline-block;
  vertical-align: middle;
  width: 35px;
  height: 35px;
  background-size: contain;
  margin: 0 5px 0 10px;
  display: none;
}
.site-header .header__nav-container .header__btns .btn-account {
  margin-left: 20px;
}
@media (max-width: 1023px) {
  .site-header .header__nav-container {
    justify-content: flex-start;
    flex-direction: row-reverse;
  }
  .site-header .header__nav-container .menu-container, .site-header .header__nav-container .btn-account {
    display: none;
  }
  .site-header .header__nav-container #main-navicon {
    display: inline-block;
    margin: 2px 0 0 30px;
  }
  .site-header .header__nav-container #main-navicon span {
    background-color: #E31D75;
  }
}

.site-footer {
  background-color: #EDEDED;
  padding: 40px 0;
}
.site-footer a {
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
.site-footer a:hover {
  text-decoration: none;
  color: #E31D75;
  transition: all 0.2s ease-in-out;
}
.site-footer .realideas {
  padding: 15px 0;
}
.site-footer .realideas .realideas-logo {
  width: 100%;
  max-width: 140px;
}
.site-footer .realideas h4 {
  margin: 0;
}
.site-footer .realideas .unit-websites {
  display: flex;
  flex-wrap: wrap;
}
.site-footer .realideas .unit-websites .unit {
  padding-right: 15px;
  margin-right: 15px;
  margin-bottom: 5px;
  position: relative;
  text-decoration: none;
  color: initial;
}
.site-footer .realideas .unit-websites .unit:hover {
  color: #E31D75;
}
.site-footer .realideas .unit-websites .unit::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 12px;
  background-color: #000;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.site-footer .realideas .unit-websites .unit:last-of-type::after {
  display: none;
}
.site-footer .sub {
  display: flex;
  padding: 0 0 15px;
}
.site-footer .sub a {
  color: initial;
}
.site-footer .sub a:hover {
  color: #E31D75;
}
.site-footer .sub .copyright {
  margin-right: 30px;
}
@media (max-width: 768px) {
  .site-footer .sub {
    flex-direction: column-reverse;
  }
}
.site-footer .widget .menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}
.site-footer .widget .menu .menu-item {
  display: inline-block;
  margin-right: 20px;
}
.site-footer .wp-block-social-links .wp-social-link {
  background-color: transparent !important;
  transform: scale(1) !important;
}
.site-footer .wp-block-social-links .wp-social-link .wp-block-social-link-anchor {
  padding: 0 !important;
}
.site-footer .wp-block-social-links .wp-social-link .wp-block-social-link-anchor svg {
  fill: rgba(0, 0, 0, 0.8);
  width: 40px;
  height: 40px;
  transition: all 0.2s ease-in-out;
}
.site-footer .wp-block-social-links .wp-social-link:hover svg {
  fill: #E31D75;
  transition: all 0.2s ease-in-out;
}

.mobile-nav_wrap {
  display: none;
  position: fixed;
  top: 0px;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background-color: #ffffff;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mobile-nav_wrap #close-mobile-nav {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  fill: rgba(0, 0, 0, 0.8);
}
.mobile-nav_wrap .logo {
  max-width: 110px;
  margin: 0 91px 0 0;
}
.mobile-nav_wrap .logo img {
  width: 100%;
}
.mobile-nav_wrap .mobile-nav {
  margin: 30px 0;
}
.mobile-nav_wrap .mobile-nav .menu {
  display: flex;
  flex-direction: column;
  padding: 0px 0px 0 20px;
  min-width: 246px;
}
.mobile-nav_wrap .mobile-nav .menu .menu-item {
  color: rgba(0, 0, 0, 0.8);
  font-size: 22px;
}
.mobile-nav_wrap .mobile-nav .menu .menu-item a {
  display: inline-flex;
  margin-bottom: 5px;
  flex-direction: column;
  align-items: start;
  justify-content: start;
}
.mobile-nav_wrap .mobile-nav .menu .menu-item a .description {
  font-size: 14px;
  display: inline-block;
  padding-left: 5px;
}
.mobile-nav_wrap .mobile-nav .menu .mega .sub-menu {
  position: absolute;
  padding-left: 15px;
  margin-bottom: 5px;
}
.mobile-nav_wrap .mobile-nav .menu .mega .sub-menu .menu-item {
  font-size: 16px;
}
.mobile-nav_wrap .mobile-nav .menu .mega .sub-menu .heading > a {
  font-weight: 700;
  position: relative;
  padding-bottom: 5px;
}
.mobile-nav_wrap .mobile-nav .menu .mega .sub-menu .heading > a::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  max-width: 60px;
  height: 1px;
  background-color: #ffffff;
}
.mobile-nav_wrap .mobile-nav .menu .mega .sub-menu .heading .sub-menu {
  padding: 0;
}
.mobile-nav_wrap .mobile-nav .menu .mega .sub-menu .heading .sub-menu .menu-item {
  font-size: 16px;
}
.mobile-nav_wrap .account-nav__btns {
  display: flex;
  width: 100%;
  padding: 15px 15px 0px;
  width: fit-content;
}

.mobile-nav__open .mobile-nav_wrap {
  display: flex;
}

.expanding-notice {
  background-color: #E31D75;
  color: #ffffff;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0px -3px 8px 2px rgba(0, 0, 0, 0.3);
  padding-top: 20px;
}
.expanding-notice .icon-btn {
  position: absolute;
  display: inline-flex;
  align-items: center;
  right: 10px;
  top: 5px;
  fill: #ffffff;
  transition: all 0.2s ease-in-out;
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
}
.expanding-notice .icon-btn .icon {
  width: 30px;
  height: 30px;
}
.expanding-notice .icon-btn .icon svg {
  width: 100%;
}
.expanding-notice .icon-btn:hover {
  color: #131439;
  fill: #131439;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.expanding-notice .container {
  padding: 30px 0;
}
.expanding-notice .container h2 {
  font-size: 22px;
  margin: 0 0 10px;
}
.expanding-notice .container h3 {
  font-size: 18px;
  margin: 0 0 5px;
}
.expanding-notice .container p {
  font-size: 14px;
  margin: 0 0 15px;
}
.expanding-notice.closed {
  visibility: hidden;
}

.expanding-notice_open-btn {
  font-size: 16px;
  display: inline-block;
  background-color: #E31D75;
  fill: #ffffff;
  position: fixed;
  bottom: -55px;
  right: 30px;
  z-index: 1000;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  color: #ffffff;
  height: 50px;
  padding: 10px 48px 0px 15px;
  cursor: pointer;
  box-shadow: 0px -2px 7px 2px rgba(0, 0, 0, 0.3);
  transform: translateY(10px);
  transition: transform 0.2s ease-in-out;
  visibility: hidden;
}
.expanding-notice_open-btn .icon {
  position: absolute;
  width: 35px;
  height: 35px;
  right: 10px;
  top: 4px;
}
.expanding-notice_open-btn svg {
  width: 100%;
}
.expanding-notice_open-btn:hover {
  transform: translateY(0px);
  transition: transform 0.2s ease-in-out;
}
.expanding-notice_open-btn.closed {
  visibility: visible;
  bottom: 0px;
}

section.slider .banner {
  align-items: center;
  position: relative;
  min-height: 300px;
}
section.slider .banner .background-img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}
section.slider .banner .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #000;
  opacity: 0.3;
}
section.slider .banner .container {
  position: relative;
  align-items: center;
  color: #fff;
}

.search-popup {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  color: #000;
  font-size: 36px;
  font-weight: 800;
  visibility: hidden;
  opacity: 0;
  transition: opacity 200ms ease-in-out, visibility 200ms ease;
  transition-delay: 0, 200ms;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-popup .search-container {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  position: relative;
}
.search-popup input {
  border: none;
  background: none;
  font-size: 40px;
  font-weight: 800;
  text-align: left;
  outline: none;
  border-bottom: 1px solid #131439;
  padding: 20px 0;
  width: 600px;
}
@media (max-width: 768px) {
  .search-popup input {
    width: 100%;
  }
}
.search-popup input::placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.search-popup small {
  display: block;
  color: #808080;
  font-weight: 500;
  font-size: 15px;
  margin-top: 20px;
}
.search-popup .search-close {
  width: 40px;
  height: 40px;
  right: 10px;
  top: 10px;
  position: absolute;
  display: block;
  z-index: 200;
  text-indent: -9999px;
}
.search-popup .search-close::before, .search-popup .search-close::after {
  content: "";
  width: 55%;
  height: 2px;
  background: #131439;
  position: absolute;
  top: 48%;
  left: 22%;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.search-popup .search-close::after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.search-popup .search-close:hover::before, .search-popup .search-close:hover::after {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.search__open {
  overflow: hidden;
}
.search__open .search-popup {
  visibility: visible;
  opacity: 1;
}

.search-results-list {
  padding: 30px 0 100px;
}
.search-results-list .page-title {
  margin-bottom: 30px;
}
.search-results-list .search-result {
  display: grid;
  grid: auto/430px auto;
  grid-gap: 30px;
  margin-bottom: 30px;
}
@media (max-width: 920px) {
  .search-results-list .search-result {
    grid: auto/1fr;
  }
}
.search-results-list .search-result .title {
  font-size: 24px;
  line-height: 28px;
  margin: 0 0 15px;
}
.search-results-list .search-result .type {
  display: block;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 15px;
}
.search-results-list .search-result .featured-image {
  height: 280px;
  width: 100%;
  max-width: 430px;
}
.search-results-list .search-result .featured-image .logo {
  max-width: 200px;
}
.search-results-list .search-result .summary {
  padding: 10px 0;
}
.search-results-list .search-result .summary p {
  margin: 0 0 15px;
}

.page-header {
  padding: 100px 0;
  background-color: #131439;
  position: relative;
}
.page-header .background-img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.page-header .background-overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0.3;
}
.page-header .container {
  position: relative;
}
.page-header .container h1 {
  margin: 0;
  color: #ffffff;
}

main {
  margin-top: 95px;
}

.has-white-background-color {
  background-color: #ffffff;
}

.has-black-background-color {
  background-color: rgba(0, 0, 0, 0.8);
}

.has-light-grey-background-color {
  background-color: #EDEDED;
}

.has-dark-grey-background-color {
  background-color: #282828;
}

.has-real-red-background-color {
  background-color: #E31D75;
}

.has-ochre-yellow-background-color {
  background-color: #E09600;
}

.has-dark-blue-background-color {
  background-color: #131439;
}

.has-pia-yellow-background-color {
  background-color: #FBDC12;
}

.has-pia-pink-background-color {
  background-color: #E5057D;
}

.has-pia-blue-background-color {
  background-color: #079FE1;
}

.has-sou-green-background-color {
  background-color: #03E98E;
}

.has-ifd-green-background-color {
  background-color: #3CD250;
}

.wp-block-group {
  display: grid;
  grid: auto/1fr minmax(0px, 1280px) 1fr;
  grid-gap: 0 15px;
}
.wp-block-group.has-background {
  padding: 60px 0;
}
.wp-block-group .wp-block-group__inner-container {
  grid-column: 2/3;
}
.wp-block-group.alignwide {
  grid: auto/1fr minmax(0px, 1560px) 1fr;
}
.wp-block-group.alignfull {
  grid: auto/1fr minmax(0px, 1920px) 1fr;
}

.block h1, .block h2, .block h3, .block h4, .block p, .wp-block-columns h1, .wp-block-columns h2, .wp-block-columns h3, .wp-block-columns h4, .wp-block-columns p {
  margin: 15px 0;
}
.block ul, .block ol, .wp-block-columns ul, .wp-block-columns ol {
  padding-left: 25px;
}

.wp-block-columns {
  padding: 0px;
  margin: 0px;
}
.wp-block-columns .wp-block-column p {
  margin: 15px 0;
}
.wp-block-quote {
  border: 0;
  position: relative;
  padding: 0 45px 0 0;
  text-align: left;
  font-weight: 700;
  margin: 30px 0;
}
.wp-block-quote::before {
  content: open-quote;
  font-size: 80px;
  line-height: 80px;
  position: absolute;
  left: 5px;
  top: -10px;
  opacity: 0.4;
}
.wp-block-quote p {
  padding: 0 60px;
  margin: 0 0 15px;
  color: #fc1f4a;
}
.wp-block-quote cite {
  text-transform: none;
  padding: 0 60px;
  opacity: 0.7;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
}

.wp-block-image {
  margin-bottom: 15px;
}
.wp-block-image.is-style-rounded img {
  border-radius: 25px;
}
.wp-block-image figcaption {
  font-size: 14px;
  text-align: right;
  padding-right: 20px;
  margin: 7px 0;
}

.wp-block-embed.is-type-video.alignfull .wp-block-embed__wrapper {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}
.wp-block-embed.is-type-video.alignfull .wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wp-block-navigation {
  left: auto;
  top: auto;
  right: auto;
  bottom: auto;
  opacity: 1;
  visibility: visible;
  overflow: visible;
  color: inherit;
  font-size: inherit;
  font-weight: 700;
  padding: 30px 0;
}
.wp-block-navigation li {
  border: none;
}
.wp-block-navigation li a {
  transition: all 0.2s ease-in-out;
}
.wp-block-navigation li a:hover {
  color: #E31D75;
  transition: all 0.2s ease-in-out;
}

.wp-block-latest-posts .wp-post-image {
  border-radius: 25px;
}

.wp-block-buttons {
  margin: 15px 0;
}
.wp-block-buttons .wp-block-button .wp-block-button__link {
  font-size: 18px;
  padding: 8px 16px;
}
.wp-block-buttons .wp-block-button .has-real-red-background-color {
  transition: all 0.2s ease-in-out;
}
.wp-block-buttons .wp-block-button .has-real-red-background-color:hover {
  background-color: #131439;
  transition: all 0.2s ease-in-out;
}
.wp-block-buttons .wp-block-button .has-pia-blue-background-color, .wp-block-buttons .wp-block-button .has-pia-pink-background-color {
  transition: all 0.2s ease-in-out;
}
.wp-block-buttons .wp-block-button .has-pia-blue-background-color:hover, .wp-block-buttons .wp-block-button .has-pia-pink-background-color:hover {
  background-color: #FBDC12;
  color: rgba(0, 0, 0, 0.8);
  transition: all 0.2s ease-in-out;
}

.block.hero {
  height: auto;
  min-height: 40vh;
}
.block.hero .slider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.block.hero .banner-content {
  position: relative;
  z-index: 700;
  padding: 90px 40vw 180px 75px;
}
@media (max-width: 768px) {
  .block.hero .banner-content {
    padding: 90px 30px 120px;
  }
}

.block {
  padding: 15px 0;
}
.block.two-columns {
  display: grid;
  grid: auto/1fr 1fr;
}
.block.two-columns .col-text {
  padding: 20vh 60px;
}
.block.two-columns .col-text p {
  margin: 0 0 15px;
}
.block.two-columns .col-text .btn {
  min-width: 150px;
}
.block.two-columns .col-image {
  position: relative;
  overflow: hidden;
}
.block.two-columns .col-image.left {
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}
.block.two-columns .col-image.right {
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}
.block.two-columns .col-image .block-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.block.two-columns .col-video {
  padding: 0 30px;
  align-self: center;
}
.block.two-columns .col-video .embed-container {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}
.block.two-columns .col-video .embed-container iframe,
.block.two-columns .col-video .embed-container object,
.block.two-columns .col-video .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .block.two-columns {
    grid: auto/1fr;
    padding: 15px;
  }
  .block.two-columns .col-text {
    padding: 60px;
    background-color: #ededed;
  }
  .block.two-columns .col-image {
    min-height: 50vh;
    border-top-right-radius: 30px !important;
    border-top-left-radius: 30px !important;
    border-bottom-left-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
    grid-column: 1;
    grid-row: 1;
  }
  .block.two-columns .col-video {
    padding: 0;
  }
}

.block.slider {
  padding: 0;
  background-color: #ffffff;
}
.block.slider .container-wrap {
  position: relative;
  height: 100%;
  align-items: center;
}
.block.slider .container-wrap .container {
  color: #ffffff;
  max-width: 1024px;
}
.block.slider .container-wrap .container .title {
  display: inline-block;
  font-size: 40px;
  line-height: 42px;
  margin-bottom: 15px;
}
.block.slider .container-wrap .container .text {
  margin-bottom: 15px;
}
.block.slider .container-wrap .container .text p {
  font-size: 20px;
}
.block.slider .container-wrap .container .btn {
  color: #ffffff;
  border: 2px solid #ffffff;
}
.block.slider .container-wrap .container .btn:hover {
  color: rgba(0, 0, 0, 0.8);
  background-color: #ffffff;
}
.block.slider .swiper {
  width: 100%;
  height: 70vh;
  min-height: 450px;
}
.block.slider .swiper-button-next,
.block.slider .swiper-button-prev {
  color: #ffffff;
  margin-top: 0;
  transform: translateY(-50%);
  opacity: 0.4;
  transition: all 0.2s ease-in-out;
}
.block.slider .swiper-button-next:hover,
.block.slider .swiper-button-prev:hover {
  opacity: 1;
  transition: all 0.2s ease-in-out;
}
.block.slider .swiper-button-next {
  right: 20px;
}
.block.slider .swiper-button-prev {
  left: 20px;
}
.block.slider .swiper-pagination {
  display: flex;
  justify-content: flex-end;
  padding: 0 20px 10px;
}
.block.slider .swiper-pagination .swiper-pagination-bullet {
  text-align: center;
  line-height: 20px;
  font-size: 12px;
  opacity: 1;
  background: #ffffff;
}
.block.slider .swiper-pagination .swiper-pagination-bullet-active {
  background: #E31D75;
}

.custom-block-spaces {
  display: grid;
  grid: auto/repeat(auto-fill, minmax(320px, 1fr));
  grid-gap: 30px;
  margin: 30px 0;
}

.post-preview_space .featured-image {
  height: 400px;
  border-radius: 25px;
  overflow: hidden;
  margin-bottom: 20px;
}
.post-preview_space .meta {
  padding: 0 20px;
  font-size: 16px;
}
.post-preview_space .meta h3 {
  margin-bottom: 10px;
}
.post-preview_space .meta .prop {
  display: flex;
  margin-bottom: 2px;
}
.post-preview_space .meta .prop span {
  padding: 0;
  margin: 0;
}
.post-preview_space .meta .prop .label {
  width: 130px;
  font-weight: 700;
}
.post-preview_space .meta .days {
  margin-bottom: 20px;
}
.post-preview_space .meta .days .days_container {
  display: flex;
}
.post-preview_space .meta .days .days_container .day {
  margin-right: 6px;
  opacity: 0.3;
  text-transform: capitalize;
}
.post-preview_space .meta .days .days_container .day.available {
  opacity: 1;
  color: #E31D75;
}
.post-preview_space a.btn {
  width: 100%;
  margin: 0 !important;
}

.events-grid, .events-list {
  display: grid;
  grid: auto/repeat(auto-fill, minmax(320px, 1fr));
  grid-gap: 30px;
}

.object-card, .post-preview {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
}
.object-card .featured-image, .post-preview .featured-image {
  grid-column: 2;
  height: 340px;
  position: relative;
  background-color: #c4c4c4;
}
@media (max-width: 1024px) {
  .object-card .featured-image, .post-preview .featured-image {
    grid-column: auto;
  }
}
.object-card .featured-image .featured, .post-preview .featured-image .featured {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.object-card .featured-image .logo, .post-preview .featured-image .logo {
  width: 100%;
  max-width: 300px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.object-card .featured-image .image-overlay, .post-preview .featured-image .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.object-card .featured-image .image-overlay:hover, .post-preview .featured-image .image-overlay:hover {
  opacity: 0.2;
  transition: all 0.3s ease-in-out;
}
.object-card .content, .post-preview .content {
  padding: 30px;
  min-height: 260px;
}
.object-card h3, .post-preview h3 {
  font-size: 22px;
  line-height: 28px;
  margin: 0 0 20px;
}
.object-card .meta span, .post-preview .meta span {
  display: block;
  position: relative;
  padding-left: 40px;
  margin-bottom: 8px;
}
.object-card .meta span ion-icon, .post-preview .meta span ion-icon {
  position: absolute;
  left: 0;
  font-size: 22px;
  opacity: 0.6;
}
.object-card .soldout, .post-preview .soldout {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-20deg);
  font-size: 34px;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: 1px 4px 1px rgba(0, 0, 0, 0.3);
}
.object-card a.btn, .post-preview a.btn {
  margin: 0 0 30px 30px;
}

.post-preview_event {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #EDEDED;
}
.post-preview_event .inner {
  width: 100%;
}
.post-preview_event .inner .meta {
  padding: 20px;
}
.post-preview_event a.btn {
  margin: 0 0 20px 20px;
}

#events-search {
  background-color: #131439;
  padding: 10px 0;
  margin-bottom: 15px;
}
#events-search .container {
  padding: 10px 0;
}
#events-search #search-form {
  display: grid;
  grid: auto/1fr 1fr;
  grid-gap: 20px;
  align-items: center;
}
@media (max-width: 1024px) {
  #events-search #search-form {
    grid: auto/1fr;
  }
}
#events-search #search-form .search-name {
  background-color: transparent;
  border: solid 2px #ffffff;
  border-radius: 50px;
  display: flex;
  align-items: center;
  padding: 8px 15px 8px 5px;
  max-width: 768px;
}
#events-search #search-form .search-name input {
  border: none;
  width: 100%;
  background-color: transparent;
  color: #ffffff;
  outline: 0;
  font-size: 18px;
}
#events-search #search-form .search-name input::placeholder {
  color: #ffffff;
  opacity: 0.7;
}
@media (max-width: 480px) {
  #events-search #search-form .search-name input {
    font-size: 16px;
  }
}
#events-search #search-form .search-name ion-icon {
  color: #ffffff;
  font-size: 28px;
}
#events-search #search-form .search-dates .presets {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 10px;
}
#events-search #search-form .search-dates .presets label {
  display: inline-block;
  border: solid 2px #ffffff;
  border-radius: 30px;
  padding: 3px 14px;
  margin-left: 10px;
  text-decoration: none;
  color: #ffffff;
  min-width: 70px;
  text-align: center;
  cursor: pointer;
  font-size: 18px;
}
#events-search #search-form .search-dates .presets label:hover {
  background-color: #ffffff;
  color: #131439;
  transition: all 0.3s ease-in-out;
}
#events-search #search-form .search-dates .presets label:first-of-type {
  margin-left: 0;
}
@media (max-width: 480px) {
  #events-search #search-form .search-dates .presets label {
    font-size: 14px;
    line-height: 20px;
    padding: 6px 10px;
  }
}
#events-search #search-form .search-dates .presets input {
  background-color: transparent;
  border: none;
  margin: 0;
  padding: 0;
  opacity: 0;
  height: 0;
  position: absolute;
  visibility: hidden;
}
#events-search #search-form .search-dates .presets input:checked + label {
  background-color: #ffffff;
  color: #131439;
}
@media (max-width: 1024px) {
  #events-search #search-form .search-dates .presets {
    justify-content: flex-start;
  }
}
#events-search #search-form .search-dates .date-range {
  display: grid;
  grid: auto/auto 240px;
  align-items: center;
}
@media (max-width: 1024px) {
  #events-search #search-form .search-dates .date-range {
    grid: auto/170px auto;
  }
}
#events-search #search-form .search-dates .date-range .date-range-options {
  display: flex;
  align-items: center;
  justify-content: end;
  position: relative;
  padding-right: 10px;
}
@media (max-width: 1024px) {
  #events-search #search-form .search-dates .date-range .date-range-options {
    justify-content: start;
  }
}
#events-search #search-form .search-dates .date-range .date-range-options label {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 16px;
}
#events-search #search-form .search-dates .date-range .date-range-options label.hide {
  visibility: hidden;
  opacity: 0;
  height: 0;
}
#events-search #search-form .search-dates .date-range .date-range-options #picker-clear {
  position: absolute;
  display: inline-block;
  border: solid 1px #ffffff;
  border-radius: 30px;
  padding: 2px 8px;
  text-decoration: none;
  color: #ffffff;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
}
#events-search #search-form .search-dates .date-range .date-range-options #picker-clear:hover {
  background-color: #ffffff;
  color: #131439;
  transition: all 0.3s ease-in-out;
}
#events-search #search-form .search-dates .date-range .date-range-options #picker-clear.hide {
  visibility: hidden;
  opacity: 0;
  height: 0;
}
#events-search #search-form .search-dates .date-range #datepicker {
  background-color: transparent;
  border: solid 2px #ffffff;
  border-radius: 24px;
  box-sizing: border-box;
  color: #ffffff;
  width: 100%;
  max-width: 240px;
  padding: 8px 14px;
  font-size: 16px;
  text-align: center;
  outline: 0;
}
#events-search #search-form .search-dates .date-range #datepicker:focus {
  border: solid 2px #ffffff;
}
#events-search #search-form .filters {
  display: none;
  z-index: 1001;
  padding: 0 15px;
  position: fixed;
}
#events-search #search-form .filters .inner-wrap {
  display: block;
  border-radius: 25px;
  padding: 40px;
  background-color: #131439;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#events-search #search-form .filters .title {
  display: block;
  color: #ffffff;
  margin: 0 0 5px;
  font-size: 14px;
  text-transform: uppercase;
}
#events-search #search-form .filters .cats, #events-search #search-form .filters .tags {
  color: #ffffff;
  display: grid;
  grid: auto/250px 250px auto;
  margin-bottom: 25px;
}
#events-search #search-form .filters .cats input, #events-search #search-form .filters .tags input {
  background-color: transparent;
  border: none;
  margin: 0;
  padding: 0;
  opacity: 0;
  height: 0;
  position: absolute;
  visibility: hidden;
}
#events-search #search-form .filters .cats label, #events-search #search-form .filters .tags label {
  position: relative;
  display: block;
  padding-left: 30px;
  line-height: 30px;
  cursor: pointer;
  white-space: nowrap;
}
#events-search #search-form .filters .cats label::before, #events-search #search-form .filters .tags label::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  border: solid 1px #ffffff;
  position: absolute;
  left: 0;
  top: 5px;
  border-radius: 3px;
}
#events-search #search-form .filters .cats label::after, #events-search #search-form .filters .tags label::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-color: #ffffff;
  position: absolute;
  left: 3px;
  top: 8px;
  border-radius: 3px;
  opacity: 0;
}
#events-search #search-form .filters .cats input:checked + label::after, #events-search #search-form .filters .tags input:checked + label::after {
  opacity: 1;
}
#events-search #search-form .filters .buttons {
  grid-column: 1/span 2;
  display: flex;
  justify-content: end;
  padding-top: 15px;
}
#events-search #search-form .filters .buttons .btn {
  padding: 6px 12px;
  color: #ffffff;
  background-color: transparent;
  border: solid 1px #ffffff;
  transition: all 0.3s ease-in-out;
}
#events-search #search-form .filters .buttons .btn:hover {
  color: #131439;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
#events-search #search-form .filters .buttons .clear {
  justify-self: flex-start;
}
@media (max-width: 580px) {
  #events-search #search-form .filters .inner-wrap {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translate(0, 0);
    border-radius: 0;
    max-width: none;
    max-height: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    grid-gap: 0;
    overflow-y: scroll;
  }
  #events-search #search-form .filters .title {
    margin-bottom: 15px;
  }
  #events-search #search-form .filters .cats label, #events-search #search-form .filters .tags label {
    font-size: 14px;
    padding-left: 22px;
    line-height: 25px;
  }
  #events-search #search-form .filters .cats label::before, #events-search #search-form .filters .tags label::before {
    width: 14px;
    height: 14px;
  }
  #events-search #search-form .filters .cats label::after, #events-search #search-form .filters .tags label::after {
    width: 10px;
    height: 10px;
  }
  #events-search #search-form .filters .buttons {
    margin-top: 15px;
  }
}

.events-filter {
  display: grid;
  grid: auto/150px auto;
  grid-gap: 15px;
  justify-content: start;
  padding: 10px 0;
  align-items: start;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .events-filter {
    grid: auto/1fr;
  }
}
.events-filter .filters-toggle {
  color: #131439;
  background-color: transparent;
  border: solid 2px #131439;
  border-radius: 40px;
  position: relative;
  padding-right: 60px;
  font-size: 18px;
  line-height: 26px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  justify-self: start;
}
.events-filter .filters-toggle ion-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  opacity: 1;
  color: inherit;
}
.events-filter .filters-toggle:hover, .events-filter .filters-toggle.toggled {
  color: #ffffff;
  background-color: #131439;
  transition: all 0.3s ease-in-out;
}
.events-filter .filter-wrap {
  display: flex;
  flex-wrap: wrap;
}
.events-filter .filter {
  color: #131439;
  background-color: transparent;
  border: solid 2px #131439;
  border-radius: 40px;
  position: relative;
  padding: 6px 12px 6px 38px;
  font-size: 14px;
  line-height: 20px;
  display: flex;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  margin: 8px 10px 0 0;
}
.events-filter .filter ion-icon {
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  opacity: 1;
  color: inherit;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}
.events-filter .filter:hover {
  color: #ffffff;
  background-color: #131439;
  transition: all 0.3s ease-in-out;
}
.events-filter .filter:hover ion-icon {
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}

main.event {
  padding-bottom: 120px;
}
main.event .event-main {
  margin-bottom: 40px;
}
main.event .event-main .featured-image {
  grid-column: 2;
  height: 500px;
  position: relative;
  background-color: #f8f8f8;
  border-radius: 25px;
}
@media (max-width: 1024px) {
  main.event .event-main .featured-image {
    grid-column: auto;
  }
}
main.event .event-main .featured-image .featured {
  border-radius: 25px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
main.event .event-main .featured-image .logo {
  width: 100%;
  max-width: 300px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
main.event .event-main .logos {
  padding: 0 10px;
}
main.event .event-main .logos h4 {
  margin-bottom: 15px;
  border-top: solid 1px rgba(19, 20, 57, 0.2);
  padding-top: 10px;
}
main.event .event-main .logos .logo-loop {
  display: grid;
  grid: auto/repeat(auto-fill, minmax(100px, 1fr));
  align-items: center;
  justify-content: start;
  grid-gap: 15px;
  margin-bottom: 40px;
}
main.event .event-main .logos .logo-loop .logo {
  width: 100%;
  height: auto;
}
main.event .event-main .event-overview {
  grid-column: 1;
  grid-row: 1/span 2;
}
@media (max-width: 1024px) {
  main.event .event-main .event-overview {
    grid-column: auto;
    grid-row: auto;
  }
}
main.event .event-main .event-overview h1 {
  margin-bottom: 30px;
}
main.event .event-main .event-overview .event-meta {
  margin-bottom: 30px;
}
main.event .event-main .event-overview .event-meta span {
  display: block;
  position: relative;
  padding-left: 40px;
  margin-bottom: 15px;
}
main.event .event-main .event-overview .event-meta span ion-icon {
  position: absolute;
  left: 0;
  font-size: 26px;
  opacity: 0.6;
}
main.event .event-main .event-overview .soldout-notify {
  font-size: 22px;
}
main.event .event-main .event-overview .event-dates {
  margin-bottom: 30px;
  padding-top: 15px;
}
main.event .event-main .event-overview .event-dates h3 {
  margin-bottom: 15px;
}
main.event .event-main .event-overview .event-dates .event-date {
  margin-bottom: 3px;
}
main.event .event-main .event-overview .event-dates .event-date .date {
  margin: 0;
}
main.event .event-main .event-overview .event-dates .event-date .status {
  text-align: right;
}
main.event .event-main .event-overview .event-dates .event-date .event-book {
  justify-self: end;
  text-decoration: none;
  display: inline-block;
  border-radius: 12px;
  padding: 4px 14px;
  transition: all 0.3s ease-in-out;
}
main.event .event-main .event-overview .event-dates .event-date .event-book:hover {
  transition: all 0.3s ease-in-out;
}
main.event .event-main .event-overview .event-dates .event-date.header {
  background-color: #ffffff;
  border-bottom: solid 1px #131439;
  opacity: 1;
}
main.event .event-main .event-overview .event-dates .event-date.ava {
  opacity: 1;
}
@media (max-width: 580px) {
  main.event .event-main .event-overview .event-dates .event-date {
    grid: auto/130px auto 120px;
    grid-gap: 0 5px;
  }
  main.event .event-main .event-overview .event-dates .event-date .layout {
    grid-row: 2;
    grid-column: span 2;
  }
  main.event .event-main .event-overview .event-dates .event-date .status {
    grid-column: 3;
    grid-row: span 2;
  }
}
@media (max-width: 380px) {
  main.event .event-main .event-overview .event-dates .event-date {
    grid: auto/130px auto;
    grid-gap: 0 5px;
  }
  main.event .event-main .event-overview .event-dates .event-date .layout {
    grid-row: auto;
    grid-column: auto;
  }
  main.event .event-main .event-overview .event-dates .event-date .status {
    grid-column: auto;
    grid-row: span auto;
  }
}
main.event .event-main .login-box {
  border-top: solid 2px #f0f0f0;
  margin-bottom: 30px;
  padding-top: 15px;
}
main.event .event-main .login-box h4 {
  margin-bottom: 15px;
}
main.event .event-details {
  margin-bottom: 60px;
}
main.event .event-details .container {
  display: block;
  border-bottom: solid 2px #131439;
}
main.event .event-details .info {
  border-top: solid 2px #131439;
}
main.event .event-details .info .info-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  cursor: pointer;
}
main.event .event-details .info .info-header h3 {
  grid-column: span 2;
  margin: 0;
}
main.event .event-details .info .info-header ion-icon {
  font-size: 40px;
  transition: all 0.2s linear;
}
main.event .event-details .info .info-header:hover {
  color: #E31D75;
  transition: color 0.2s linear;
}
main.event .event-details .info .content {
  max-width: 1024px;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.2s linear;
}
main.event .event-details .info .content p {
  margin: 0 0 15px;
}
main.event .event-details .info.active ion-icon {
  transform: rotate(180deg);
  transition: all 0.2s linear;
}
main.event .event-details .info.active .content {
  padding: 40px 0;
  max-height: 100%;
  transition: all 0.2s linear;
}
main.event .event-details .venue .content {
  display: grid;
  grid: auto/3fr 2fr;
  grid-gap: 30px;
  max-width: 100%;
}
@media (max-width: 890px) {
  main.event .event-details .venue .content {
    grid: auto/1fr;
  }
}
main.event .event-details .map {
  border-radius: 25px;
  overflow: hidden;
  border: solid 1px #ccc;
}
main.event .event-details .map .acf-map {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: #ccc solid 1px;
  margin: 0;
}
main.event .related-events .section-title {
  margin-bottom: 40px;
}

.ticketsolve-notification {
  display: none;
  padding: 0 10px;
  position: fixed;
  width: 100%;
  height: 100%;
  max-width: 700px;
  max-height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  justify-content: center;
  align-items: center;
  z-index: 1001;
}
.ticketsolve-notification .inner {
  border-radius: 25px;
  padding: 40px;
  background-color: #131439;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.ticketsolve-notification p {
  color: #ffffff;
  text-align: center;
  font-size: 24px;
  line-height: 32px;
}
.ticketsolve-notification .progress-icon {
  margin-bottom: 30px;
}

.progress-icon .lds-roller {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.progress-icon .lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}
.progress-icon .lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  margin: -4px 0 0 -4px;
}
.progress-icon .lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}
.progress-icon .lds-roller div:nth-child(1):after {
  top: 63px;
  left: 63px;
}
.progress-icon .lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}
.progress-icon .lds-roller div:nth-child(2):after {
  top: 68px;
  left: 56px;
}
.progress-icon .lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}
.progress-icon .lds-roller div:nth-child(3):after {
  top: 71px;
  left: 48px;
}
.progress-icon .lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}
.progress-icon .lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}
.progress-icon .lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}
.progress-icon .lds-roller div:nth-child(5):after {
  top: 71px;
  left: 32px;
}
.progress-icon .lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}
.progress-icon .lds-roller div:nth-child(6):after {
  top: 68px;
  left: 24px;
}
.progress-icon .lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}
.progress-icon .lds-roller div:nth-child(7):after {
  top: 63px;
  left: 17px;
}
.progress-icon .lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}
.progress-icon .lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12px;
}
@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.archive .spaces {
  padding: 40px 0;
}
.archive .spaces .tax-grid {
  display: grid;
  grid: auto/repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}
.archive .spaces .tax-grid.tax-space {
  grid: auto/repeat(auto-fill, minmax(240px, 1fr));
}
.archive .spaces .space-grid {
  display: grid;
  grid: auto/repeat(auto-fill, minmax(340px, 1fr));
  gap: 40px;
}
.archive .spaces .space-tax, .archive .spaces .space {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}
.archive .spaces .space-tax .image-wrap, .archive .spaces .space .image-wrap {
  border-radius: 24px;
  overflow: hidden;
  width: 100%;
  height: 300px;
}
.archive .spaces .space-tax .image-wrap img, .archive .spaces .space .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.archive .spaces .space-tax .link-overlay, .archive .spaces .space .link-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.archive .spaces .space-tax .btn, .archive .spaces .space .btn {
  width: 100%;
}
.archive .spaces .space-tax {
  border-radius: 24px;
  border: solid 2px #EDEDED;
  padding: 15px;
  transition: background-color 0.2s ease-in-out;
  text-align: center;
}
.archive .spaces .space-tax:hover {
  background-color: rgba(237, 237, 237, 0.7);
  transition: background-color 0.2s ease-in-out;
}
.archive .spaces .space-tax .image-wrap {
  height: 240px;
}
.archive .spaces .space {
  align-items: flex-start;
}
.archive .spaces .space .details-container {
  padding: 15px;
  width: 100%;
}
.archive .spaces .space .details-container__location, .archive .spaces .space .details-container__type, .archive .spaces .space .details-container__available_days {
  display: flex;
  justify-content: space-between;
}
.archive .spaces .space .details-container__location .label, .archive .spaces .space .details-container__type .label, .archive .spaces .space .details-container__available_days .label {
  font-weight: 600;
}
.archive .spaces .space .details-container__available_days .days {
  display: inline-block;
  margin-left: 3px;
  font-weight: 600;
  opacity: 0.5;
}
.archive .spaces .space .details-container__available_days .active {
  color: #E31D75;
  opacity: 1;
}

.show-filters {
  display: none;
}

.hide-filters {
  display: none;
}

.archive_button {
  background-color: #E31D75;
  border: none;
  color: #ffffff;
  padding: 10px 15px;
  border-radius: 32px;
  text-decoration: none;
  text-align: center;
  font-weight: 700;
}
.archive_button:hover {
  background-color: #E31D75;
  cursor: pointer;
}

.spaces_archive_header {
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-color: #f0f0f0;
  position: relative;
  background-image: url(../images/ui/hero-1.jpg);
  color: #ffffff;
  height: 280px;
}
.spaces_archive_header h1 {
  width: 88%;
  margin: auto;
  font-size: 40px;
}
.spaces_archive_header__divider {
  width: 100%;
  height: 80px;
  position: absolute;
  bottom: 0;
  left: 0px;
  right: 0px;
  background: url(../images/ui/scroll_divider_white.svg) no-repeat top right;
  background-size: 100%;
}

.spaces_archive {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: center;
  margin-top: 50px;
}
h2 .spaces_archive__space_available_title {
  line-height: 20px;
}
.spaces_archive__checkbox_empty {
  width: 17px;
  margin-left: 10px;
}
.spaces_archive__filter_title_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.spaces_archive__loader {
  height: 0;
  width: 0;
  padding: 15px;
  border: 6px solid #EDEDED;
  border-right-color: #E31D75;
  border-radius: 22px;
  -webkit-animation: rotate 1s infinite linear;
  /* left, top and position just for the demo! */
  position: absolute;
  left: 50%;
  top: 50%;
}
@-webkit-keyframes rotate {
  /* 100% keyframe for  clockwise. 
         use 0% instead for anticlockwise */
  100% {
    -webkit-transform: rotate(360deg);
  }
}
.spaces_archive__no_spaces_found {
  display: none;
  margin-left: 15px;
  font-size: 18px;
  color: #282828;
  font-weight: bold;
}
.spaces_archive__space_info_container {
  margin-top: 10px;
}
.spaces_archive__spaces_container {
  width: 100%;
  display: grid;
  grid: auto/repeat(auto-fill, minmax(380px, 1fr));
  gap: 30px;
}
.spaces_archive__space_image {
  height: 260px;
  border-radius: 20px;
  background-position: center;
  background-repeat: no-repeat;
}
.spaces_archive__pagination_container {
  text-align: right;
  margin-top: 30px;
}
.spaces_archive__space_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.spaces_archive__space_container .space-title {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}
.spaces_archive__space_container img {
  width: 100%;
  border-radius: 15px;
  max-height: 400px;
  object-fit: cover;
}
.spaces_archive__space_container h2 {
  font-size: 14px;
  color: #282828;
  line-height: 25px;
  display: flex;
  width: 35%;
  min-width: 35%;
  margin: 0 10px 0 0;
}
.spaces_archive__space_container h3 {
  font-size: 18px;
  color: #282828;
  line-height: 25px;
  margin: 0 0 15px;
}
.spaces_archive__space_container span {
  font-weight: 400;
  display: flex;
  font-size: 14px;
  color: #282828;
  line-height: 25px;
}
.spaces_archive__pagination_spaces {
  width: 70%;
  position: relative;
}
.spaces_archive__days {
  margin-left: 3px;
  margin-right: 3px;
}
.spaces_archive__monday {
  margin-right: 3px;
}
.spaces_archive__space_description {
  display: flex;
  margin-top: 3px;
}
.spaces_archive__space_location {
  display: flex;
}
.spaces_archive__filters {
  width: 18%;
  background-color: #EDEDED;
  height: auto;
  border-radius: 15px;
  padding: 20px;
  margin-right: 30px;
  height: fit-content;
}
.spaces_archive__filters span {
  font-size: 16px;
  color: #282828;
  line-height: 30px;
  font-weight: 400;
  cursor: pointer;
  white-space: nowrap;
}
.spaces_archive__filters .active span {
  color: #E31D75;
}
.spaces_archive__filters h2 {
  font-size: 18px;
  color: #282828;
  margin-bottom: 5px;
}
.spaces_archive__booking_button {
  background-color: #E31D75;
  border: none;
  color: #ffffff;
  padding: 10px 5px;
  border-radius: 32px;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
  transition: all 0.2s ease-in-out;
}
.spaces_archive__booking_button:hover {
  color: #ffffff;
  cursor: pointer;
  background-color: #131439;
  transition: all 0.2s ease-in-out;
}
.spaces_archive__pagination_numbers {
  text-decoration: none;
  margin: 3px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: all 0.2s ease-in-out;
}
.spaces_archive__pagination_numbers:hover {
  background-color: #131439;
  color: #ffffff;
  transition: all 0.2s ease-in-out;
}
.spaces_archive__pagination_next_link {
  text-decoration: none;
  margin: 10px;
  cursor: pointer;
  background-color: rgba(237, 237, 237, 0.5);
  border-radius: 12px;
  padding: 3px 6px;
}
.spaces_archive__pagination_prev_link {
  text-decoration: none;
  margin: 10px;
  cursor: pointer;
  background-color: rgba(237, 237, 237, 0.5);
  border-radius: 12px;
  padding: 3px 6px;
}
.spaces_archive__pagination_active {
  color: #ffffff;
  pointer-events: none;
  background-color: #E31D75;
}
.spaces_archive .disabled {
  pointer-events: none;
}

@media only screen and (max-width: 1024px) {
  .spaces_archive .spaces_archive__filters {
    display: none;
    justify-content: center;
    align-items: center;
    top: 0;
    margin: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: fixed;
    width: 100%;
    z-index: 90000;
    height: 100%;
  }
}
@media only screen and (max-width: 1184px) {
  .show-filters {
    display: block;
    margin-bottom: 30px;
    margin-top: 20px;
  }
  .hide-filters {
    display: block;
  }
  .spaces_archive {
    flex-direction: column;
    align-items: center;
    margin-top: 0;
  }
  .spaces_archive__filters_container {
    max-width: 350px;
    position: relative;
  }
  .spaces_archive__filters_container button {
    margin-top: 20px;
  }
  .spaces_archive .spaces_archive__filters {
    display: none;
    justify-content: center;
    align-items: center;
    top: 0;
    margin: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: fixed;
    width: 100%;
    z-index: 90000;
    height: 100%;
  }
  .spaces_archive__pagination_spaces {
    width: 90%;
  }
  .spaces_archive__filters {
    margin-top: 50px;
    margin-right: 0;
    width: 90%;
  }
  .spaces_archive_header__divider {
    height: 50px;
  }
}
@media only screen and (max-width: 640px) {
  .spaces_archive__space_container {
    width: 90%;
    margin-right: 0;
  }
  .spaces_archive__pagination_spaces {
    width: 90%;
  }
  .spaces_archive__spaces_container {
    justify-content: center;
  }
  .spaces_archive_header__divider {
    height: 25px;
  }
}
.spaces_archive__filters_container .title {
  font-size: 30px !important;
  margin-top: 0;
}
.spaces_archive__filters_container .spaces_archive__filters_title {
  padding-top: 30px;
  padding-bottom: 6px;
  line-height: initial;
  display: block;
  font-weight: 700;
  font-size: 20px;
}

.spaces_loader {
  background-color: #ffffff;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.85;
  z-index: 10;
  display: none;
}
.spaces_loader .loader {
  height: 0;
  width: 0;
  padding: 15px;
  border: 6px solid #EDEDED;
  border-right-color: #E31D75;
  border-radius: 22px;
  -webkit-animation: rotate 1s infinite linear;
  position: absolute;
  left: 50%;
  top: 50%;
}

.tickboxdisabled {
  pointer-events: none !important;
  opacity: 0.2;
}

.add_to_bookings.tickboxdisabled {
  opacity: 0.5;
}

.space-wrapper {
  width: 100%;
}
.space-wrapper__login_button {
  background-color: #E31D75;
  color: #ffffff;
  padding: 16px 87px;
  border-radius: 40px;
  border: none;
  font-weight: 600;
  font-size: 17px;
  margin-top: 20px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
.space-wrapper__login_button:hover {
  background-color: #131439;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.space-wrapper__register_button {
  background-color: #E31D75;
  color: #ffffff;
  padding: 16px 87px;
  border-radius: 40px;
  border: none;
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 50px;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  text-decoration: none;
}
.space-wrapper__register_button:hover {
  background-color: #131439;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.space-wrapper__login_register_container {
  display: flex;
  width: 90%;
  margin: auto;
  align-items: center;
  flex-direction: column;
  padding-bottom: 20px;
}
.space-wrapper__login_register_container h2 {
  color: #282828;
  font-size: 28px;
  text-align: center;
}
.space-wrapper__login_register_container h3 {
  color: #4d4d4d;
  font-size: 17px;
  line-height: 50px;
}
.space-wrapper__not_enough_credits_container, .space-wrapper__booking_message_container {
  background-color: rgba(0, 0, 0, 0.9);
  top: 0;
  bottom: 0;
  position: fixed;
  left: 0;
  z-index: 99999;
  right: 0;
  display: none;
  justify-content: center;
  align-items: center;
}
.space-wrapper__not_enough_credits_container #credits-payment-form {
  width: 310px;
}
.space-wrapper__not_enough_credits_container .credits_container {
  margin-top: 20px;
  display: flex;
  gap: 50px;
}
.space-wrapper__not_enough_credits_container .credits_needed {
  margin-top: 10px;
}
.space-wrapper__booking_error_container {
  background-color: rgba(0, 0, 0, 0.9);
  top: 0;
  bottom: 0;
  position: fixed;
  left: 0;
  z-index: 99999;
  right: 0;
  display: none;
  justify-content: center;
  align-items: center;
}
.space-wrapper__message {
  color: #4d4d4d;
  font-size: 21px;
  font-weight: 600;
  text-align: center;
  line-height: 30px;
  margin-bottom: 0.5em;
}
.space-wrapper__close_message {
  font-size: 15px;
  color: #4d4d4d;
  margin-top: 16px;
}
.space-wrapper__close_message:hover {
  cursor: pointer;
}
.space-wrapper__content_container {
  width: 700px;
  height: 350px;
  background-color: white;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.space-wrapper__member_area_button {
  width: 100%;
  max-width: 200px;
  margin-top: 15px;
}
.space-wrapper .booking-wrapper {
  grid: auto/1fr minmax(0px, 1440px) 1fr;
  background-color: #EDEDED;
  padding: 60px 0;
  margin-bottom: 0;
}
.space-wrapper .booking-wrapper h2 {
  margin: 0 0 40px;
}
.space-wrapper .booking-wrapper .booking-container {
  display: grid;
  grid: auto/460px 280px auto;
  gap: 60px;
}
@media only screen and (max-width: 1340px) {
  .space-wrapper .booking-wrapper .booking-container {
    grid: auto/2fr 1fr;
  }
}
@media only screen and (max-width: 768px) {
  .space-wrapper .booking-wrapper .booking-container {
    grid: auto/1fr;
    gap: 30px;
  }
}
.space-wrapper .booking-wrapper .booking-container h4 {
  color: #4d4d4d;
  font-size: 18px;
}
.space-wrapper .booking-wrapper .col-title {
  position: relative;
  margin-bottom: 50px;
  text-transform: uppercase;
  font-size: 18px;
  padding-left: 65px;
}
@media only screen and (max-width: 768px) {
  .space-wrapper .booking-wrapper .col-title {
    margin-bottom: 30px;
  }
}
.space-wrapper .booking-wrapper .col-title span {
  display: inline-flex;
  height: 55px;
  width: 55px;
  align-items: center;
  justify-content: center;
  background-color: #131439;
  color: #ffffff;
  border-radius: 50%;
  font-size: 30px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.space-wrapper .booking-wrapper .calendar-section p {
  font-size: 13px;
}
.space-wrapper .booking-wrapper .booking-form-section h4 {
  margin-bottom: 20px;
}
.space-wrapper .booking-wrapper .booking-form-section .selected_container .book-btn {
  background-color: #E31D75;
  color: white;
  padding: 10px 60px;
  border-radius: 40px;
  border: none;
  outline: none !important;
  font-weight: 600;
  font-size: 14px;
  margin-top: 20px;
  cursor: pointer;
}
.space-wrapper .booking-wrapper .booking-form-section .selected_container .book-btn:hover {
  background-color: #ff4f72;
}
.space-wrapper .booking-wrapper .booking-form-section .select_time_slot_button {
  border-radius: 10px;
  cursor: pointer;
  border: none;
  padding: 16px 20px;
  font-size: 13px;
  background-color: #e6e6e6;
  color: #6b6b6b;
  outline: none !important;
  white-space: nowrap;
  width: 150px;
}
.space-wrapper .booking-wrapper .booking-form-section .select_time_slot_button:hover {
  background-color: #ff4f72;
  color: white;
}
.space-wrapper .booking-wrapper .booking-form-section .select_time_slot_button.active {
  pointer-events: none;
  cursor: default;
  background-color: #E31D75;
  color: white;
}
.space-wrapper .booking-wrapper .booking-form-section .time_slot_button_am {
  margin-right: 5px;
}
.space-wrapper .booking-wrapper .booking-form-section .time_slot_button_pm {
  margin-right: 5px;
}
.space-wrapper .ui-datepicker td:not(.user-selected) span {
  background-color: #E31D75 !important;
  color: rgba(255, 255, 255, 0.7) !important;
  border-color: #E31D75 !important;
  opacity: 0.7;
}
.space-wrapper .ui-datepicker td span {
  color: #ffffff !important;
  border-color: #E31D75 !important;
}
.space-wrapper .ui-datepicker td {
  opacity: 1 !important;
}
.space-wrapper .datepicker .ui-datepicker-inline {
  background-color: transparent;
  border: 0;
}
.space-wrapper .datepicker .ui-datepicker-header {
  background-color: transparent;
  border: 0;
}
.space-wrapper .datepicker .ui-datepicker-header .ui-icon {
  width: 30px;
  height: 30px;
  background-position: center;
  background-size: 44px;
  margin: 0;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.space-wrapper .datepicker .ui-datepicker-header .ui-datepicker-prev .ui-icon {
  background-image: url("/members/assets/images/icons/icon-chevron-left.svg");
}
.space-wrapper .datepicker .ui-datepicker-header .ui-datepicker-prev-hover {
  top: 2px;
  left: 2px;
  border: solid 2px rgba(0, 0, 0, 0.5);
  border-radius: 6px;
}
.space-wrapper .datepicker .ui-datepicker-header .ui-datepicker-next .ui-icon {
  background-image: url("/members/assets/images/icons/icon-chevron-right.svg");
}
.space-wrapper .datepicker .ui-datepicker-header .ui-datepicker-next-hover {
  top: 2px;
  right: 2px;
  border: solid 2px rgba(0, 0, 0, 0.5);
  border-radius: 6px;
}
.space-wrapper .datepicker .ui-datepicker-calendar thead tr {
  background-color: transparent;
  color: rgba(0, 0, 0, 0.8);
  border-top: solid 2px rgba(0, 0, 0, 0.8);
  border-bottom: solid 2px rgba(0, 0, 0, 0.8);
}
.space-wrapper .datepicker .ui-datepicker-calendar thead tr th {
  padding: 6px 4px;
  font-size: 16px;
  font-weight: 700;
}
.space-wrapper .datepicker .ui-datepicker-calendar tbody {
  padding-top: 5px;
}
.space-wrapper .datepicker .ui-datepicker-calendar tbody tr:first-of-type td {
  padding-top: 5px;
}
.space-wrapper .datepicker .ui-datepicker-calendar tbody tr td {
  padding: 2px;
}
.space-wrapper .datepicker .ui-datepicker-calendar tbody tr td a,
.space-wrapper .datepicker .ui-datepicker-calendar tbody tr td span {
  background-color: white;
  border-radius: 10px !important;
  border: 2px solid white;
  outline: 0 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  transition: all 0.2s ease-in-out;
}
.space-wrapper .datepicker .ui-datepicker-calendar tbody tr td a:hover,
.space-wrapper .datepicker .ui-datepicker-calendar tbody tr td span:hover {
  background-color: #E31D75;
  border-color: #E31D75;
  color: #ffffff;
  transition: all 0.2s ease-in-out;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  background-color: #131439 !important;
  border: 2px solid #131439 !important;
  color: #ffffff !important;
}

.space-wrapper .datepicker .ui-datepicker-inline {
  width: 100%;
  min-width: 310px;
}

.space-wrapper .datepicker .ui-datepicker-calendar thead tr th {
  padding: 15px 4px;
}

.space-header {
  grid: auto/1fr minmax(0px, 1440px) 1fr;
  padding: 40px 0;
}
.space-header .container {
  display: grid;
  grid: auto/1fr 1fr;
  gap: 40px;
}
@media (max-width: 800px) {
  .space-header .container {
    grid: auto/1fr;
  }
}
.space-header .space-image-container {
  border-radius: 24px;
  overflow: hidden;
  max-height: 420px;
}
.space-header .space-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.space-header .details-container__type, .space-header .details-container__location {
  display: flex;
}
.space-header .details-container__type span, .space-header .details-container__location span {
  color: #4D4D4D;
  display: flex;
  align-items: center;
  line-height: 25px;
}
.space-header .details-container .label {
  display: inline-block;
  width: 150px;
  color: #282828;
  line-height: 25px;
  margin-right: 10px;
  font-weight: 700;
}
.space-header .details-container__available_days {
  display: flex;
  margin: 5px 0 20px;
}
.space-header .details-container__available_days .days {
  display: inline-block;
  margin-right: 6px;
  color: #EDEDED;
}
.space-header .details-container__available_days .active {
  color: #E31D75;
}

.space_header__details_paragraph {
  margin-bottom: 20px !important;
  width: 90%;
  font-size: 18px !important;
  color: #4d4d4d !important;
}
.space_header__details_paragraph p {
  font-size: 18px !important;
  color: #4d4d4d !important;
}

.divider_grey {
  width: 100%;
  height: 70px;
  z-index: 9;
  padding-bottom: 10px;
  left: 0px;
  right: 0px;
  background: url(../images/ui/scroll_divider_grey.svg) no-repeat top right;
  background-size: 100%;
}

.booking_summary {
  position: relative;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 15px;
  padding: 20px;
  overflow: hidden;
}
.booking_summary h4 {
  margin-top: 0;
}

.bookings_container {
  color: #282828;
}
.bookings_container .table_header {
  display: grid;
  grid: auto/140px 160px auto 30px;
  gap: 0 15px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 800px) {
  .bookings_container .table_header {
    display: none;
  }
}
.bookings_container .table_header div {
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  padding-left: 5px;
}
.bookings_container .table_header div:nth-of-type(3) {
  text-align: right;
}
.bookings_container .table_header .close {
  width: 13px;
  margin-left: 15px;
}
.bookings_container .single_booking_container {
  display: grid;
  grid: auto/140px 160px auto 30px;
  gap: 0 15px;
  font-size: 18px;
  margin-bottom: 10px;
  border-radius: 3px;
  padding-left: 5px;
}
@media (max-width: 520px) {
  .bookings_container .single_booking_container {
    grid: auto/140px auto 30px;
  }
  .bookings_container .single_booking_container .time_display {
    grid-row: 2;
  }
}
.bookings_container .single_booking_container:nth-of-type(even) {
  background-color: rgba(237, 237, 237, 0.5);
}
.bookings_container .single_booking_container div:nth-of-type(3) {
  text-align: right;
}
.bookings_container .single_booking_container .remove_booking {
  position: relative;
  width: 30px;
  height: 30px;
}
.bookings_container .single_booking_container .remove_booking::before {
  content: "";
  width: 2px;
  height: 20px;
  background-color: #E31D75;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.bookings_container .single_booking_container .remove_booking::after {
  content: "";
  width: 2px;
  height: 20px;
  background-color: #E31D75;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  transition: background-color 0.2s ease-in-out;
}
.bookings_container .single_booking_container .remove_booking:hover {
  cursor: pointer;
}
.bookings_container .single_booking_container .remove_booking:hover::before, .bookings_container .single_booking_container .remove_booking:hover::after {
  background-color: #131439;
  transition: background-color 0.2s ease-in-out;
}
.bookings_container .single_booking_container .technician {
  grid-column: span 4;
  font-size: 14px;
  color: #4D4D4D;
}
.bookings_container .single_booking_container .technician .add-technician {
  border: solid 1px green;
  background-color: rgba(0, 128, 0, 0.1);
  border-radius: 8px;
  color: green;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}
.bookings_container .single_booking_container .technician .add-technician:hover {
  background-color: rgba(0, 128, 0, 0.3);
  transition: background-color 0.2s ease-in-out;
}
.bookings_container .booking-totals {
  display: grid;
  grid: auto/auto 30px;
  gap: 0 15px;
  text-align: right;
  margin-bottom: 15px;
  border-top: solid 1px #131439;
  padding-top: 10px;
}

.booking_selection {
  margin-top: 25px;
}
.booking_selection h4 {
  margin-bottom: 30px;
}
.booking_selection__information {
  margin-top: 8px;
  display: flex;
  align-items: center;
}
.booking_selection__information .label {
  font-size: 16px;
  color: #4D4D4D;
}
.booking_selection__information span {
  color: #4D4D4D;
}
.booking_selection .add_to_bookings {
  background-color: #E31D75;
  color: #ffffff;
  padding: 10px 30px;
  border-radius: 40px;
  border: none;
  max-width: 200px;
  outline: none !important;
  font-weight: 600;
  font-size: 14px;
  margin-top: 20px;
  cursor: pointer;
  text-align: center;
  position: relative;
}
.booking_selection .add_to_bookings:hover {
  background-color: #131439;
}
.booking_selection .add_to_bookings .button-complete {
  display: none;
}

body.booking-complete .booking_selection .add_to_bookings {
  position: static;
}

.configuration_wrapper {
  display: flex;
  width: 100%;
  background-color: #eff0f3;
  padding: 60px 0;
}
.configuration_wrapper h4 {
  color: #4d4d4d;
  font-size: 21px;
}
.configuration_wrapper__container {
  display: flex;
  width: 90%;
  flex-direction: column;
  justify-content: center;
  margin: auto;
}
.configuration_wrapper__radio_buttons {
  margin-top: 10px;
}
.configuration_wrapper__title {
  width: 80%;
  margin: auto;
  margin-bottom: 30px;
}

.booking-form-section__buttons_container {
  white-space: nowrap;
}

@media only screen and (max-width: 1340px) {
  .booking-confirmation-section {
    grid-column: span 2;
  }
}
@media only screen and (max-width: 768px) {
  .booking-confirmation-section {
    grid-column: span 1;
  }
}

.configuration_wrapper [type=radio] {
  visibility: hidden;
}
.configuration_wrapper [type=radio]::before {
  border: 2px solid #FC1F4A;
  height: 0.9em;
  width: 0.9em;
  border-radius: 50%;
  display: block;
  content: " ";
  cursor: pointer;
  visibility: visible;
}
.configuration_wrapper [type=radio]:checked::before {
  background: radial-gradient(#FC1F4A 36%, transparent 38%);
}
.configuration_wrapper label {
  margin-left: 5px;
  color: #4d4d4d;
  line-height: 25px;
  margin-right: 10px;
}
.configuration_wrapper .configuration_radio_description {
  display: none;
  margin-top: -10px;
  padding-left: 20px;
}
.configuration_wrapper .configuration_radio_description h3 {
  color: #4d4d4d;
  line-height: 25px;
  font-size: 17px;
}
.configuration_wrapper .configuration_radio_description p {
  font-size: 14px;
  color: #4d4d4d;
  display: flex;
  align-items: center;
  margin: 0;
  margin-bottom: 10px;
}
.configuration_wrapper__section_con {
  display: flex;
  width: 80%;
  margin: auto;
}
.configuration_wrapper__radio {
  width: 50%;
}
.configuration_wrapper__radio p {
  font-size: 13px;
  color: #4d4d4d;
  display: flex;
  align-items: center;
  margin: 0;
  margin-bottom: 10px;
  max-width: 350px;
}
.configuration_wrapper__description {
  width: 50%;
}
.configuration_wrapper .active {
  display: block;
}

.map_container .divider_grey {
  top: -70px;
  margin-bottom: -70px;
  position: relative;
}

@media only screen and (max-width: 1040px) {
  .booking-form-section__buttons_container {
    display: flex;
    justify-content: center;
  }
  .space-wrapper__register_button {
    margin-bottom: 100px;
  }
  .space-wrapper .booking-wrapper .booking-form-section,
  .space-wrapper .booking-wrapper .booking-form-section h4 {
    margin-top: 20px;
  }
  .space-wrapper .booking-wrapper .booking-form-section,
  .space-wrapper .booking-wrapper .calendar-section {
    width: 100%;
    margin-bottom: 20px;
  }
  .space-wrapper .booking-wrapper .booking-form-section .selected_container .book-btn {
    width: 300px;
    display: flex;
    justify-content: center;
    margin: auto;
    margin-top: 30px;
  }
  .space-wraper .divider_grey {
    height: 60px;
  }
}
body.booking-complete .main:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  background-color: rgba(19, 20, 57, 0.6);
}

.booking_summary #required_confirm_message {
  display: none;
  margin: 0 0 15px;
  text-align: left;
  font-size: 14px;
}
.booking_summary > .booking_purchase-methods_container {
  overflow: hidden;
  margin-bottom: 15px;
  text-align: right;
  background-color: rgba(237, 237, 237, 0.7);
  border-radius: 6px;
  padding: 10px;
}
.booking_summary > .booking_purchase-methods_container.hide {
  max-height: 0px;
  padding: 0;
  margin: 0;
}
.booking_summary > .booking_purchase-methods_container h4.subtitle {
  font-size: 14px;
  margin-bottom: 5px;
}
.booking_summary > .booking_purchase-methods_container .purchase_method_wrap {
  display: none;
  padding: 3px 30px 3px 0;
  position: relative;
}
.booking_summary > .booking_purchase-methods_container .purchase_method_wrap input {
  height: 0;
  opacity: 0;
  position: absolute;
}
.booking_summary > .booking_purchase-methods_container .purchase_method_wrap label {
  display: inline-block;
  cursor: pointer;
}
.booking_summary > .booking_purchase-methods_container .purchase_method_wrap label::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  position: absolute;
  border: solid 2px #787878;
  border-radius: 50%;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.booking_summary > .booking_purchase-methods_container .purchase_method_wrap label::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  position: absolute;
  background-color: #131439;
  border-radius: 50%;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
}
.booking_summary > .booking_purchase-methods_container .purchase_method_wrap input:checked ~ label::after {
  opacity: 1;
}
.booking_summary > .booking_confirmation_container {
  position: relative;
  overflow: hidden;
  text-align: right;
  transition: max-height 0.3s, opacity 0.3s;
}
.booking_summary > .booking_confirmation_container.hide {
  max-height: 0px;
}
.booking_summary > .booking_confirmation_container .option {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0;
  min-height: 75%;
  display: none;
  margin: 0 0 15px;
}
.booking_summary > .booking_confirmation_container .option p {
  font-size: 16px;
  margin: 0 0 10px;
}
.booking_summary > .booking_confirmation_container .option .space-wrapper__message {
  min-height: 60px;
}
.booking_summary > .booking_confirmation_container .option .disabled_warning {
  display: none;
}
.booking_summary > .booking_confirmation_container .option.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.booking_summary > .booking_confirmation_container .option.disabled * {
  pointer-events: none;
}
.booking_summary > .booking_confirmation_container .option.disabled .credits_notice {
  display: none;
}
.booking_summary > .booking_confirmation_container .option.disabled .disabled_warning {
  display: block;
}
.booking_summary > .booking_confirmation_container .option p {
  margin: 5px 0;
}
.booking_summary > .booking_confirmation_container .success,
.booking_summary > .booking_confirmation_container .error,
.booking_summary > .booking_confirmation_container .payment {
  background-color: transparent;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}
.booking_summary > .booking_confirmation_container .success.show,
.booking_summary > .booking_confirmation_container .error.show,
.booking_summary > .booking_confirmation_container .payment.show {
  transform: translate(0px);
  opacity: 1;
  pointer-events: auto;
  z-index: 505;
  height: 100%;
}
.booking_summary > .booking_confirmation_container .success .space-wrapper__content_container,
.booking_summary > .booking_confirmation_container .error .space-wrapper__content_container,
.booking_summary > .booking_confirmation_container .payment .space-wrapper__content_container {
  max-height: 100%;
}
.booking_summary > .booking_confirmation_container .payment .existing-card-list {
  margin-bottom: 30px;
}
.booking_summary > .booking_confirmation_container .payment .existing-card-list #card-selected {
  width: 100%;
  padding: 6px;
  font-size: 14px;
  cursor: pointer;
  text-align: right;
}
.booking_summary > .booking_confirmation_container .payment #booking-payment-form {
  width: 100%;
}
.booking_summary > .booking_confirmation_container .payment #booking-payment-form #stripe-card-element {
  width: 100%;
  max-width: 550px;
}
.booking_summary > .booking_confirmation_container .payment #booking-payment-form .checkout-btns {
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
}
.booking_summary > .booking_confirmation_container .payment #booking-payment-form .checkout-btns .close {
  background-color: transparent;
  color: #131439;
  border: solid 2px #131439;
}
.booking_summary > .booking_confirmation_container .payment #booking-payment-form .checkout-btns .close:hover {
  color: #ffffff;
  background-color: #131439;
  transition: all 0.2s ease-in-out;
}
.booking_summary > .booking_confirmation_container .space-wrapper__close_message {
  width: 100%;
  margin-top: 20px;
  z-index: 500;
  display: block;
}

@media only screen and (max-width: 810px) {
  .configuration_wrapper__section_con {
    flex-direction: column;
  }
  .configuration_wrapper__container {
    width: 100%;
  }
  .configuration_wrapper__description {
    margin-top: 40px;
    width: 100%;
  }
  .configuration_wrapper__radio {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .configuration_wrapper .configuration_radio_description {
    padding: 0;
  }
  .divider_grey {
    height: 40px;
  }
  .map_container .divider_grey {
    top: -40px;
    margin-bottom: -40px;
    position: relative;
  }
  .space_header {
    justify-content: center;
    width: 90%;
    margin: auto;
    flex-direction: column-reverse;
  }
  .space_header__back_button {
    margin: auto;
    justify-content: center;
    width: 50%;
    min-width: 200px;
  }
  .space_header__title_button {
    flex-direction: column-reverse;
  }
  .space_header__title_button h1 {
    margin-top: 20px;
  }
  .space_header__details_container {
    width: 90%;
    margin: auto;
    margin-top: 10px;
  }
  .space_header__image_container {
    width: 100%;
    margin-top: 40px;
  }
  .space_header__space_image {
    width: 90%;
  }
}
@media only screen and (max-width: 500px) {
  .booking-form-section__buttons_container {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .time_slot_button_pm {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .space-wrapper .booking-wrapper .booking-form-section .selected_container .book-btn {
    width: 100%;
  }
  .space-wrapper .booking-wrapper .booking-form-section .select_time_slot_button {
    width: 100%;
  }
  .datepicker {
    width: 100%;
    margin: auto;
  }
  .calendar-section {
    margin-bottom: 90px;
  }
  .booking_selection__information span {
    width: 50%;
  }
  .booking_selection__information h2 {
    width: 50%;
  }
  .divider_grey {
    height: 20px;
  }
  .map_container .divider_grey {
    top: -20px;
    margin-bottom: -20px;
    position: relative;
  }
}
.loader {
  background-color: white;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  z-index: 998;
  align-items: center;
  justify-content: center;
  display: none;
}
.loader.show {
  display: flex;
}
.loader .lds-roller div:after {
  background: #E31D75;
}

.time-slots span,
.space_header__location span,
.room-cap span,
.room-type span {
  display: block;
}
.time-slots span strong,
.space_header__location span strong,
.room-cap span strong,
.room-type span strong {
  margin-right: 10px;
}

.available-timeslots {
  display: block;
  margin: 15px 0;
}
.available-timeslots .timeslot-row {
  display: flex;
  margin: 0 0 15px;
  max-width: 350px;
}
.available-timeslots .timeslot-row.chosen {
  pointer-events: none;
}
.available-timeslots .timeslot-row .cost {
  margin-left: 30px;
}
.available-timeslots .timeslot-row .timespan,
.available-timeslots .timeslot-row .cost {
  flex: 1;
}
.available-timeslots .timeslot-row .select-timeslot-btn {
  outline: none;
  border: none;
  font-size: 18px;
  padding: 12px 16px;
  border-radius: 6px;
  font-weight: 400;
  border: 2px solid #787878;
  width: 100%;
  transition: all 0.2s ease-in-out;
}
.available-timeslots .timeslot-row .select-timeslot-btn:hover:not([disabled]) {
  background-color: #E31D75;
  border-color: #E31D75;
  color: #ffffff;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.available-timeslots .timeslot-row .select-timeslot-btn .selected {
  display: none;
}
.available-timeslots .timeslot-row .select-timeslot-btn:disabled {
  border-color: rgba(120, 120, 120, 0.5);
  position: relative;
  overflow: hidden;
}
.available-timeslots .timeslot-row .select-timeslot-btn:disabled::after {
  content: "";
  display: inline-block;
  height: 2px;
  width: 110%;
  background-color: rgba(120, 120, 120, 0.5);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-9deg);
}
.available-timeslots .timeslot-row.chosen .select-timeslot-btn {
  background-color: #131439;
  border-color: #131439;
  color: #ffffff;
}

.my-credits .credit-container {
  display: flex;
  width: 230px;
  justify-content: space-between;
  margin: 10px 0;
}
.my-credits__purchase_history {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  flex-direction: column;
}
.my-credits__purchase_history > div {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.my-credits__purchase_history > div > div {
  justify-content: center !important;
}
@media (max-width: 640px) {
  .my-credits__purchase_history > div {
    margin: 15px 0 !important;
  }
  .my-credits__purchase_history > div > div {
    width: 100% !important;
  }
}
.my-credits__purchase_history strong {
  line-height: 30px;
}
.my-credits__purchase_history .date {
  width: 25%;
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
}
.my-credits__purchase_history .coworking_credits_amount {
  width: 25%;
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
}
.my-credits__purchase_history .room_credits_amount {
  width: 25%;
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
}
.my-credits__purchase_history .cost {
  width: 25%;
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
}

.payment-btn-disabled {
  background-color: #d0d0d0 !important;
  cursor: default !important;
}

.member_bookings__elements_container .member_bookings__upcoming .panel--basic {
  flex-direction: column;
  margin-bottom: 20px;
}

.member_bookings__space_name {
  font-size: 16px;
  color: #4d4d4d;
  line-height: 20px;
  text-align: center;
  margin-top: 5px;
  margin-bottom: 5px;
}
.member_bookings__previous_container {
  display: flex;
  flex-direction: column;
}
.member_bookings__previous {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-top: 15px;
}
.member_bookings__previous > div {
  width: 20%;
}
.member_bookings__upcoming {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  width: 25%;
  padding-left: 10px;
  padding-right: 10px;
}
.member_bookings__element {
  margin-top: 5px;
  font-size: 14px;
  text-align: center;
  color: #4d4d4d;
  display: flex;
  flex-direction: column;
}
.member_bookings__canceled {
  margin-top: 13px;
  text-align: center;
  color: red;
  padding: 6px 15px;
  display: none;
}
.member_bookings__canceled.visible {
  display: block;
}
.member_bookings__elements_container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.member_bookings__cancel_button {
  background-color: #fc1f4a;
  border: none;
  color: #fff;
  padding: 10px 15px;
  border-radius: 32px;
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  width: 100%;
  margin-top: 5px;
  display: none;
  justify-content: center;
}
.member_bookings__cancel_button:hover {
  background-color: #ff4f72;
  color: white;
  cursor: pointer;
}
.member_bookings__cancel_button.visible {
  display: flex;
}
.member_bookings__bookings_title {
  color: #4d4d4d;
}
.member_bookings__no_bookings {
  color: #4d4d4d;
  font-size: 18px;
  font-weight: 500;
}

@media only screen and (max-width: 1350px) {
  .member_bookings__upcoming {
    width: 33.3%;
  }
}
@media only screen and (max-width: 1050px) {
  .member_bookings__upcoming {
    width: 50%;
  }
  .member_bookings__previous {
    flex-direction: column;
    align-items: center;
  }
}
@media only screen and (max-width: 800px) {
  .member_bookings__upcoming {
    width: 100%;
  }
}
.plan-container .plan-overview {
  min-width: 310px;
}
.plan-container .plans-include h4 {
  margin-bottom: 5px;
}
.plan-container .plans-include ul {
  list-style: square;
  padding: 0 0 0 24px;
  margin: 0 0 20px;
}
@media (max-width: 1050px) {
  .plan-container {
    flex-wrap: wrap;
  }
  .plan-container .line-right {
    display: none;
  }
  .plan-container .inner-box {
    width: 100%;
  }
}

.membership-columns {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.membership-columns .membership-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  margin: 15px;
  min-width: 355px;
  max-width: 475px;
  border: 2px solid #c3cfd9;
}
.membership-columns .membership-column .btn-wrapper {
  flex: 1;
  display: flex;
  align-items: flex-end;
}
.membership-columns .membership-column .segment {
  padding: 15px;
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  align-content: flex-start;
}
.membership-columns .membership-column .membership-title {
  font-size: 17px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}
.membership-columns .membership-column .membership-title .current-plan {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  color: #3CB371;
  border: solid 2px #3CB371;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 900;
}
.membership-columns .membership-column .membership-cost {
  font-size: 24px;
  font-weight: 600;
}
.membership-columns .membership-column .membership-button-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 60px;
}
.membership-columns .membership-column .membership-button-container .btn-choose {
  display: inline-block;
}
.membership-columns .membership-column .membership-button-container .btn-selected {
  display: none;
}
.membership-columns .membership-column .info-points .info-point {
  margin: 8px 0;
}
.membership-columns .membership-column .info-points .info-line {
  height: 2px;
  width: 60px;
  background-color: #9eadba;
}
.membership-columns .membership-column.selected .btn-selected {
  display: inline-block;
}
.membership-columns .membership-column.selected .btn-choose {
  display: none;
}
.membership-columns.membership-column-selectable .membership-column {
  transition: all 200ms;
}

.my_payment_container {
  margin-top: 20px;
}

.card_container {
  display: flex;
  justify-content: space-between;
  max-width: 900px;
  background-color: white;
  border-radius: 30px;
  padding: 20px;
}
@media only screen and (max-width: 900px) {
  .card_container {
    flex-direction: column;
    align-items: center;
  }
}
.card_container .card_details {
  min-height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card_container .card_details div {
  margin-top: 8px;
}
.card_container .card_details .brand_name {
  display: flex;
}
@media only screen and (max-width: 900px) {
  .card_container .card_details .brand_name {
    flex-direction: column-reverse;
    align-items: center;
  }
}
.card_container .card_details .default_card {
  background-color: #E31D75;
  color: white;
  border-radius: 10px;
  padding: 2px;
  padding-left: 15px;
  padding-right: 15px;
  max-width: 100px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  margin-left: 10px;
  margin-top: 8px;
}
@media only screen and (max-width: 900px) {
  .card_container .card_details .default_card {
    flex-direction: column;
    align-items: center;
    margin-left: 0;
  }
}
.card_container .card_actions_container {
  width: 200px;
}
.card_container .card_actions_container .update_card,
.card_container .card_actions_container .delete_card,
.card_container .card_actions_container .default_card {
  margin-top: 8px;
  text-align: center;
  border-radius: 3px;
  padding: 5px 12px;
}
.card_container .card_actions_container .update_card:hover,
.card_container .card_actions_container .delete_card:hover,
.card_container .card_actions_container .default_card:hover {
  cursor: pointer;
}
.card_container .card_actions_container .delete_card {
  border: 1px solid #E31D75;
  color: #E31D75;
  position: relative;
}
.card_container .card_actions_container .delete_card.disabled {
  color: #ccc;
  border-color: #ccc;
  cursor: not-allowed;
}
.card_container .card_actions_container .delete_card.disabled:active {
  pointer-events: none;
}
.card_container .card_actions_container .delete_card .tooltip_delete {
  visibility: hidden;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  /* Position the tooltip */
  position: absolute;
  z-index: 1;
  top: 105%;
  left: 0;
}
.card_container .card_actions_container .delete_card:hover .tooltip_delete {
  visibility: visible;
}
.card_container .card_actions_container .default_card {
  color: #E31D75;
  text-decoration: underline;
}
.card_container .card_actions_container .update_card {
  background-color: #E31D75;
  color: white;
}

.card_details_update,
.card_details_delete,
.card_details_default {
  background-color: rgba(0, 0, 0, 0.9);
  top: 0;
  bottom: 0;
  position: fixed;
  left: 0;
  z-index: 99999;
  right: 0;
  justify-content: center;
  align-items: center;
  display: none;
}
.card_details_update .card_details_container,
.card_details_delete .card_details_container,
.card_details_default .card_details_container {
  position: relative;
}
.card_details_update .card_delete_response,
.card_details_update .card_response,
.card_details_update .card_default_response,
.card_details_delete .card_delete_response,
.card_details_delete .card_response,
.card_details_delete .card_default_response,
.card_details_default .card_delete_response,
.card_details_default .card_response,
.card_details_default .card_default_response {
  display: none;
  text-align: center;
  margin: auto;
  margin-top: 20px;
  font-weight: bold;
}
.card_details_update .loader_container,
.card_details_delete .loader_container,
.card_details_default .loader_container {
  background-color: rgba(160, 160, 160, 0.9);
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 99999;
  border-radius: 30px;
  right: 0;
  justify-content: center;
  align-items: center;
  position: absolute;
  display: none;
}
.card_details_update .loader_container .loader4,
.card_details_delete .loader_container .loader4,
.card_details_default .loader_container .loader4 {
  height: 0;
  width: 0;
  padding: 15px;
  border: 6px solid #ccc;
  border-right-color: red;
  border-radius: 22px;
  -webkit-animation: rotate 1s infinite linear;
  /* left, top and position just for the demo! */
  position: absolute;
  left: 47%;
  top: 47%;
}
@-webkit-keyframes rotate {
  /* 100% keyframe for  clockwise. 
         use 0% instead for anticlockwise */
  100% {
    -webkit-transform: rotate(360deg);
  }
}
.card_details_update .card_form,
.card_details_delete .card_form,
.card_details_default .card_form {
  width: 700px;
  height: 350px;
  background-color: white;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 720px) {
  .card_details_update .card_form,
  .card_details_delete .card_form,
  .card_details_default .card_form {
    width: 100%;
  }
}
@media only screen and (max-width: 500px) {
  .card_details_update .card_form,
  .card_details_delete .card_form,
  .card_details_default .card_form {
    padding: 30px;
  }
}
.card_details_update .card_form .card_info,
.card_details_delete .card_form .card_info,
.card_details_default .card_form .card_info {
  display: flex;
  flex-direction: column;
}
.card_details_update .card_form .form_container,
.card_details_delete .card_form .form_container,
.card_details_default .card_form .form_container {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  align-items: center;
}
.card_details_update .card_form .form_container .update_message,
.card_details_update .card_form .form_container .delete_message,
.card_details_delete .card_form .form_container .update_message,
.card_details_delete .card_form .form_container .delete_message,
.card_details_default .card_form .form_container .update_message,
.card_details_default .card_form .form_container .delete_message {
  margin-top: 10px;
}
.card_details_update .card_form .form_container .expiry_date_con,
.card_details_delete .card_form .form_container .expiry_date_con,
.card_details_default .card_form .form_container .expiry_date_con {
  margin-top: 10px;
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
}
.card_details_update .card_form .form_container .expiry_date_con input,
.card_details_delete .card_form .form_container .expiry_date_con input,
.card_details_default .card_form .form_container .expiry_date_con input {
  text-align: center;
}
.card_details_update .card_form .form_container input,
.card_details_delete .card_form .form_container input,
.card_details_default .card_form .form_container input {
  border-radius: 15px;
  padding-left: 10px;
  padding-right: 10px;
  width: 100%;
}
.card_details_update .card_form .submit_update,
.card_details_update .card_form .submit_delete,
.card_details_update .card_form .submit_default,
.card_details_delete .card_form .submit_update,
.card_details_delete .card_form .submit_delete,
.card_details_delete .card_form .submit_default,
.card_details_default .card_form .submit_update,
.card_details_default .card_form .submit_delete,
.card_details_default .card_form .submit_default {
  margin: auto;
  width: 400px;
  margin-top: 20px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 720px) {
  .card_details_update .card_form .submit_update,
  .card_details_update .card_form .submit_delete,
  .card_details_update .card_form .submit_default,
  .card_details_delete .card_form .submit_update,
  .card_details_delete .card_form .submit_delete,
  .card_details_delete .card_form .submit_default,
  .card_details_default .card_form .submit_update,
  .card_details_default .card_form .submit_delete,
  .card_details_default .card_form .submit_default {
    width: 100%;
  }
}
.card_details_update .card_form .close_delete_msg_btn,
.card_details_update .card_form .close_form_btn,
.card_details_update .card_form .close_default_msg_btn,
.card_details_delete .card_form .close_delete_msg_btn,
.card_details_delete .card_form .close_form_btn,
.card_details_delete .card_form .close_default_msg_btn,
.card_details_default .card_form .close_delete_msg_btn,
.card_details_default .card_form .close_form_btn,
.card_details_default .card_form .close_default_msg_btn {
  text-decoration: underline;
}
.card_details_update .card_form .close_delete_msg_btn:hover,
.card_details_update .card_form .close_form_btn:hover,
.card_details_update .card_form .close_default_msg_btn:hover,
.card_details_delete .card_form .close_delete_msg_btn:hover,
.card_details_delete .card_form .close_form_btn:hover,
.card_details_delete .card_form .close_default_msg_btn:hover,
.card_details_default .card_form .close_delete_msg_btn:hover,
.card_details_default .card_form .close_form_btn:hover,
.card_details_default .card_form .close_default_msg_btn:hover {
  cursor: pointer;
}

.show-filters {
  display: none;
}

.hide-filters {
  display: none;
}

.youtube_icon {
  font-size: 0px;
  display: inline-block;
  height: 51px;
  width: 50px;
  background-size: contain;
}

.twitter_icon {
  font-size: 0px;
  display: inline-block;
  height: 51px;
  width: 50px;
  background-size: contain;
}

.social_icon {
  font-size: 0px;
  display: inline-block;
  height: 50px;
  width: 50px;
  background-size: contain;
  transition: fill 0.3s;
}

.social_icon svg {
  transition: fill 0.3s;
}

.flickr_icon {
  font-size: 0px;
  display: inline-block;
  height: 51px;
  width: 50px;
  background-size: contain;
}

.instagram_icon {
  font-size: 0px;
  display: inline-block;
  height: 51px;
  width: 50px;
  background-size: contain;
}

.linkedin_icon {
  font-size: 0px;
  display: inline-block;
  height: 51px;
  width: 50px;
  background-size: contain;
}

.social_icon svg:hover {
  fill: #ff0a58;
}

.social_media_links {
  margin-top: 15px;
}

.linkedin_icon i svg {
  width: 50px;
  height: 50px;
}

.instagram_icon i svg {
  width: 50px;
  height: 50px;
}

.flickr_icon i svg {
  width: 50px;
  height: 50px;
}

.facebook_icon i svg {
  width: 50px;
  height: 50px;
}

.twitter_icon i svg {
  width: 50px;
  height: 50px;
}

.youtube_icon i svg {
  width: 50px;
  height: 50px;
}

.archive_button {
  background-color: #fc1f4a;
  border: none;
  color: #fff;
  padding: 10px 15px;
  border-radius: 32px;
  text-decoration: none;
  text-align: center;
  font-weight: 700;
}
.archive_button:hover {
  background-color: #ff4f72;
  cursor: pointer;
}

.organisations_archive__search_input {
  height: 30px;
  width: 100%;
  padding: 10px;
  background: #fff;
  border: none;
  border-bottom: 1px solid #E6E6E6;
  outline: none;
  border-radius: 25px;
}

.search_btn {
  background-color: #fc1f4a;
  border: none;
  color: white;
  padding: 5px 2px;
  border-radius: 25px;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
  width: 100%;
  margin-top: 5px;
}

.organisations_archive_header {
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-color: #f0f0f0;
  position: relative;
  background-image: url(../images/ui/hero-1.jpg);
  color: #fff;
  height: 280px;
}
.organisations_archive_header h1 {
  width: 88%;
  margin: auto;
  font-size: 40px;
}
.organisations_archive_header__divider {
  width: 100%;
  height: 80px;
  position: absolute;
  bottom: 0;
  left: 0px;
  right: 0px;
  background: url(../images/ui/scroll_divider_white.svg) no-repeat top right;
  background-size: 100%;
}

.organisation-wrapper {
  margin-bottom: 200px;
}
.organisation-wrapper .organisation_description {
  display: flex;
  width: 90%;
  margin: auto;
  margin-top: 30px;
}
.organisation-wrapper .organisation_header__website, .organisation-wrapper .organisation_header__phone, .organisation-wrapper .organisation_header__email {
  display: flex;
}

.organisations_archive {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: center;
  margin-top: 50px;
}
h2 .organisations_archive__organisation_available_title {
  line-height: 20px;
}
.organisations_archive__checkbox_empty {
  width: 17px;
  margin-left: 10px;
}
.organisations_archive__filter_title_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.organisations_archive__search_input {
  width: 100%;
}
.organisations_archive__loader {
  height: 0;
  width: 0;
  padding: 15px;
  border: 6px solid #ccc;
  border-right-color: red;
  border-radius: 22px;
  -webkit-animation: rotate 1s infinite linear;
  /* left, top and position just for the demo! */
  position: absolute;
  left: 50%;
  top: 50%;
}
@-webkit-keyframes rotate {
  /* 100% keyframe for  clockwise. 
         use 0% instead for anticlockwise */
  100% {
    -webkit-transform: rotate(360deg);
  }
}
.organisations_archive__no_organisations_found {
  display: none;
  margin-left: 15px;
  font-size: 18px;
  color: #4d4d4d;
  font-weight: bold;
}
.organisations_archive__organisation_info_container {
  margin-top: 10px;
}
.organisations_archive__organisations_container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: auto;
}
.organisations_archive__organisation_image {
  height: 260px;
  border-radius: 20px;
  background-position: center;
  background-repeat: no-repeat;
}
.organisations_archive__pagination_container {
  text-align: center;
  margin-top: 30px;
}
.organisations_archive__organisation_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-right: 30px;
  width: calc(33.3% - 30px);
}
.organisations_archive__organisation_container .organisation-title {
  height: 60px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}
.organisations_archive__organisation_container img {
  width: 100%;
  border-radius: 15px;
  max-height: 400px;
  object-fit: cover;
}
.organisations_archive__organisation_container h2 {
  font-size: 12px;
  color: #4d4d4d;
  line-height: 25px;
  display: flex;
  width: 35%;
  min-width: 35%;
  margin-right: 10px;
}
.organisations_archive__organisation_container h3 {
  font-size: 15px;
  color: #4d4d4d;
  line-height: 25px;
  margin-right: 10px;
}
.organisations_archive__organisation_container span {
  font-weight: 400;
  display: flex;
  font-size: 12px;
  color: #4d4d4d;
  line-height: 25px;
}
.organisations_archive__pagination_organisations {
  width: 70%;
  position: relative;
}
.organisations_archive__organisation_description {
  display: flex;
  margin-top: 25px;
}
.organisations_archive__organisation_location {
  height: 37px;
  display: flex;
}
.organisations_archive__organisation_location span {
  line-height: 20px;
}
.organisations_archive__filters {
  width: 18%;
  background-color: #F2F2F2;
  height: auto;
  border-radius: 15px;
  padding: 20px;
  margin-right: 30px;
  height: fit-content;
}
.organisations_archive__filters h3 {
  font-size: 14px;
  color: #4D4D4D;
  line-height: 30px;
  font-weight: 400;
  cursor: pointer;
  white-space: nowrap;
}
.organisations_archive__filters .active h3 {
  color: #fc1f4a;
}
.organisations_archive__filters h2 {
  font-size: 18px;
  color: #4D4D4D;
  margin-bottom: 5px;
}
.organisations_archive__visit_button {
  background-color: #fc1f4a;
  border: none;
  color: white;
  padding: 10px 5px;
  border-radius: 32px;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
}
.organisations_archive__visit_button:hover {
  color: white;
  cursor: pointer;
  background-color: #ff4f72;
}
.organisations_archive__pagination_numbers {
  text-decoration: none;
  margin: 10px;
  color: #DFDFDF;
  cursor: pointer;
}
.organisations_archive__pagination_next_link {
  text-decoration: none;
  margin: 10px;
  cursor: pointer;
}
.organisations_archive__pagination_prev_link {
  text-decoration: none;
  margin: 10px;
  cursor: pointer;
}
.organisations_archive__pagination_active {
  color: #FF0A58;
  pointer-events: none;
}
.organisations_archive .disabled {
  pointer-events: none;
}

@media only screen and (max-width: 1024px) {
  .organisations_archive .organisations_archive__filters {
    display: none;
    justify-content: center;
    align-items: center;
    top: 0;
    margin: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: fixed;
    width: 100%;
    z-index: 90000;
    height: 100%;
  }
}
@media only screen and (max-width: 1184px) {
  .show-filters {
    display: block;
    margin-bottom: 30px;
    margin-top: 20px;
  }
  .hide-filters {
    display: block;
  }
  .organisations_archive {
    flex-direction: column;
    align-items: center;
    margin-top: 0;
  }
  .organisations_archive__filters_container {
    max-width: 350px;
    position: relative;
  }
  .organisations_archive__filters_container button {
    margin-top: 20px;
  }
  .organisations_archive .organisations_archive__filters {
    display: none;
    justify-content: center;
    align-items: center;
    top: 0;
    margin: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: fixed;
    width: 100%;
    z-index: 90000;
    height: 100%;
  }
  .organisations_archive__pagination_organisations {
    width: 90%;
  }
  .organisations_archive__organisations_container {
    width: 90%;
    flex-wrap: wrap;
  }
  .organisations_archive__filters {
    margin-top: 50px;
    margin-right: 0;
    width: 90%;
  }
  .organisations_archive_header__divider {
    height: 50px;
  }
  .organisations_archive__organisation_container {
    margin-right: 30px;
    width: calc(50% - 30px);
  }
}
@media only screen and (max-width: 640px) {
  .organisations_archive__organisation_container {
    width: 90%;
    margin-right: 0;
  }
  .organisations_archive__pagination_organisations {
    width: 90%;
  }
  .organisations_archive__organisations_container {
    justify-content: center;
  }
  .organisations_archive_header__divider {
    height: 25px;
  }
}
.organisations_archive__filters_container .title {
  font-size: 30px !important;
}
.organisations_archive__filters_container .organisations_archive__filters_title {
  padding-top: 30px;
  padding-bottom: 6px;
  line-height: initial;
}

.single-creators .creator-profile {
  padding: 60px 0;
}
.single-creators .creator-profile .container {
  display: grid;
  grid: auto/1fr 1fr;
  grid-gap: 60px;
}
.single-creators .creator-profile .profile-image img {
  width: 100%;
  border-radius: 3px;
  padding: 5px 5px 20px 5px;
  box-shadow: 2px 2px 6px 2px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg);
}
.single-creators hr {
  margin: 40px 0;
  background-color: #ccc;
  border: 0;
  height: 2px;
}
.single-creators .skills {
  padding: 0 0 40px;
}
.single-creators .skills .processes {
  margin-bottom: 30px;
}

.regform .terms-conditions {
  background-color: #fff;
  padding: 25px 15px 25px 25px;
  height: 100%;
  border-radius: 25px;
  margin-bottom: 20px;
}
.regform .terms-conditions .inner {
  padding: 0 15px 0 0;
  max-height: 400px;
  overflow-y: scroll;
}
.regform .terms-conditions .inner p {
  font-size: 14px;
}
.regform .terms-conditions .inner ol, .regform .terms-conditions .inner ul {
  padding-left: 20px;
  margin: 0 0 10px;
}
.regform .terms-conditions .inner ol li, .regform .terms-conditions .inner ul li {
  margin-bottom: 10px;
  font-size: 14px;
}
.regform .password-rules .requirements {
  margin: 0 0 15px;
  padding-left: 24px;
}
.regform .password-rules .requirements li.pass {
  color: #3CB371;
}
.regform .password-rules .requirements li.fail {
  color: #E31D75;
}
.regform .set-password.matched input[type=password] {
  border-color: #3CB371 !important;
}
.regform .tcagree {
  position: relative;
}
.regform button.btn.unread, .regform button.btn.invalid {
  pointer-events: none;
  background-color: #ccc;
  border-color: #ccc;
}
.regform #reg-loader {
  margin-top: 15px;
  position: relative;
  background: transparent;
}

#page-header-banner .slider .swiper-slide {
  padding-top: 95px;
  height: 50vh;
  min-height: 400px;
}
#page-header-banner .slider .swiper-slide .background-color {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
}
#page-header-banner .slider .swiper-slide .container-wrap {
  height: 100%;
  position: relative;
}
#page-header-banner .slider .swiper-slide .container-wrap .container {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 30px 0 60px;
}
#page-header-banner .slider .swiper-slide .content {
  width: auto;
  padding: 10px;
  position: relative;
}
#page-header-banner .slider .swiper-slide .content .content_background_colour {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
}
#page-header-banner .slider .swiper-slide .content .title {
  font-size: 58px;
  line-height: 1.2em;
  display: block;
  position: relative;
  width: auto;
}
#page-header-banner .slider .swiper-slide .content .subtext {
  font-size: 42px;
  line-height: 1.2em;
  display: block;
  position: relative;
  width: auto;
}
#page-header-banner .slider .swiper-slide .slide-link {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  cursor: pointer;
}
#page-header-banner .slider .swiper-pagination {
  display: flex;
  text-align: unset;
  justify-content: flex-end;
  padding: 0 15px;
}
#page-header-banner .slider .swiper-pagination .swiper-pagination-bullet {
  width: 50px;
  height: 8px;
  border-radius: 2px;
  background-color: #ffffff;
  opacity: 1;
}
#page-header-banner .slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #E31D75;
}
#page-header-banner .slider .swiper-button-prev, #page-header-banner .slider .swiper-button-next {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease-in-out;
  color: #ffffff;
}
#page-header-banner .slider .swiper-button-prev {
  left: 15px;
}
#page-header-banner .slider .swiper-button-next {
  right: 15px;
}
#page-header-banner .slider:hover .swiper-button-prev, #page-header-banner .slider:hover .swiper-button-next {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.2s ease-in-out;
}

#sub-nav {
  height: 60px;
  position: relative;
  z-index: 100;
}
#sub-nav .navicon {
  display: none;
  width: 40px;
  height: 30px;
  flex-direction: column;
  justify-content: space-between;
}
#sub-nav .navicon span {
  display: inline-block;
  height: 3px;
  width: 100%;
  background-color: #ffffff;
  border-radius: 3px;
}
#sub-nav .container-wrap {
  width: 100%;
}
#sub-nav .container-wrap .menu-label {
  display: none;
}
#sub-nav .container-wrap .menu {
  align-items: center;
  justify-content: flex-start;
  align-self: center;
  width: 100%;
  height: 100%;
}
#sub-nav .container-wrap a {
  display: inline-flex;
  align-items: center;
  margin: 0 8px;
  padding: 8px 16px;
  height: 60px;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}
#sub-nav .container-wrap .menu-item-has-children .sub-menu {
  background-color: transparent;
  border-radius: 3px;
  transition: none;
  padding: 15px 0 0;
}
#sub-nav .container-wrap .menu-item-has-children .sub-menu .menu-item a {
  padding: 10px 16px;
  margin: 0;
  height: auto;
  transition: none;
  font-size: 18px;
  display: block;
  text-transform: none;
}
#sub-nav .container-wrap .menu-item-has-children:hover .sub-menu {
  visibility: visible;
  transition: none;
}
#sub-nav .container-wrap .menu-item-has-children:hover .sub-menu .menu-item a {
  transition: none;
}
@media (max-width: 1024px) {
  #sub-nav .container-wrap {
    height: 60px;
  }
  #sub-nav .container-wrap .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
  }
  #sub-nav .container-wrap .container .menu-label {
    display: block;
  }
  #sub-nav .container-wrap .container #sub-navicon {
    display: flex;
    margin: 2px 0 0;
  }
  #sub-nav .menu-container {
    display: none;
  }
}

body.sticky-subnav #sub-nav .container-wrap {
  position: fixed;
  top: 0;
  left: 0;
}

@media (max-width: 1024px) {
  body.subnav__open #sub-nav {
    z-index: 2000;
  }
  body.subnav__open #sub-nav .container-wrap {
    position: fixed;
    top: 0;
    left: 0;
  }
  body.subnav__open #sub-nav .menu-container {
    display: block;
    position: fixed;
    top: 60px;
    left: 0;
    bottom: 0;
    width: 100%;
  }
  body.subnav__open #sub-nav .menu-container .menu {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100% !important;
  }
  body.subnav__open #sub-nav .menu-container .menu-item a {
    padding: 10px 16px;
    margin: 0;
    height: auto;
    box-shadow: none;
    transform: rotate(0);
    transition: none;
    font-size: 20px;
    display: block;
    background-color: transparent;
  }
  body.subnav__open #sub-nav .menu-container .menu-item .sub-menu {
    display: none;
  }
}
body.festival .site-header {
  transition: none;
}
body.festival.mobile-nav__open .site-header {
  background-color: #E31D75 !important;
  transition: none;
}

body.print-in-action main {
  margin: 0;
  background-color: #EDEDED;
  font-family: "Nunito Sans regular";
}
body.print-in-action main p a, body.print-in-action main ul a, body.print-in-action main ol a {
  color: #E5057D;
}
body.print-in-action main p a:hover, body.print-in-action main ul a:hover, body.print-in-action main ol a:hover {
  color: #282828;
  text-decoration: underline;
}
body.print-in-action main h1 {
  font-size: 50px;
  line-height: 1.2em;
  text-transform: uppercase;
  font-family: "Nunito Sans Bold";
}
body.print-in-action main h2 {
  font-size: 40px;
  line-height: 1.2em;
  font-family: "Nunito Sans Bold";
}
body.print-in-action main h3 {
  font-size: 28px;
  line-height: 1.2em;
  font-family: "Nunito Sans Bold";
}
body.print-in-action main h4 {
  font-size: 22px;
  line-height: 1.2em;
  font-family: "Nunito Sans Bold";
}
body.print-in-action #page-header-banner .slider .swiper-slide .content {
  font-family: "Nunito Sans Bold";
}
body.print-in-action #page-header-banner .slider .swiper-slide .content .title {
  font-size: 58px;
  line-height: 1.1em;
  text-transform: uppercase;
  font-weight: 700;
}
body.print-in-action #page-header-banner .slider .swiper-slide .content .subtext {
  font-size: 42px;
  line-height: 1.1em;
  text-transform: uppercase;
}
body.print-in-action #page-header-banner .slider .swiper-slide .content .btn {
  border-radius: 3px;
  background-color: #079FE1;
  border: 0;
  opacity: 1;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out;
  position: relative;
}
body.print-in-action #page-header-banner .slider .swiper-slide .content .btn:hover {
  background-color: #E5057D;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 1024px) {
  body.print-in-action #page-header-banner .slider .swiper-slide .content .title {
    font-size: 48px;
  }
  body.print-in-action #page-header-banner .slider .swiper-slide .content .subtext {
    font-size: 32px;
  }
}
@media (max-width: 580px) {
  body.print-in-action #page-header-banner .slider .swiper-slide .content .title {
    font-size: 38px;
  }
  body.print-in-action #page-header-banner .slider .swiper-slide .content .subtext {
    font-size: 24px;
  }
}
body.print-in-action #page-header-banner .slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #079FE1;
}
body.print-in-action #sub-nav {
  background-color: #E5057D;
}
body.print-in-action #sub-nav .container-wrap {
  background-color: #E5057D;
}
body.print-in-action #sub-nav .container-wrap .menu-label {
  color: #ffffff;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.2px;
}
body.print-in-action #sub-nav .container-wrap a {
  margin: 0 8px;
  padding: 8px 16px;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 21px;
  background-color: #079FE1;
  height: 60px;
  box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease-in-out;
  font-family: "Nunito Sans Bold";
}
body.print-in-action #sub-nav .container-wrap a:hover {
  background-color: #FBDC12;
  color: rgba(0, 0, 0, 0.8);
  transition: all 0.2s ease-in-out;
}
body.print-in-action #sub-nav .container-wrap .menu-item:nth-child(even) a {
  transform: rotate(3deg);
}
body.print-in-action #sub-nav .container-wrap .menu-item:nth-child(odd) a {
  transform: rotate(-3deg);
}
body.print-in-action #sub-nav .container-wrap .menu-item-has-children .sub-menu {
  background-color: transparent;
  border-radius: 3px;
  transition: none;
  padding: 15px 0 0;
}
body.print-in-action #sub-nav .container-wrap .menu-item-has-children .sub-menu .menu-item a {
  padding: 10px 16px;
  margin: 0;
  height: auto;
  box-shadow: none;
  transform: rotate(0);
  transition: none;
  font-size: 18px;
  display: block;
  text-transform: none;
}
body.print-in-action #sub-nav .container-wrap .menu-item-has-children:hover .sub-menu {
  visibility: visible;
  transition: none;
}
body.print-in-action #sub-nav .container-wrap .menu-item-has-children:hover .sub-menu .menu-item a {
  transition: none;
}
@media (max-width: 1024px) {
  body.print-in-action.subnav__open #sub-nav .menu-container {
    background-color: #E5057D;
  }
}
body.print-in-action .wp-block-button .wp-block-button__link {
  font-family: "Nunito Sans Bold";
  font-size: 20px;
  border-radius: 3px;
  text-transform: uppercase;
  padding: 8px 16px;
}
body.print-in-action .wp-block-button .has-pia-blue-background-color, body.print-in-action .wp-block-button .has-pia-pink-background-color {
  transition: all 0.2s ease-in-out;
}
body.print-in-action .wp-block-button .has-pia-blue-background-color:hover, body.print-in-action .wp-block-button .has-pia-pink-background-color:hover {
  background-color: #FBDC12;
  color: rgba(0, 0, 0, 0.8);
  transition: all 0.2s ease-in-out;
}
body.print-in-action .wp-block-button .has-pia-yellow-background-color {
  transition: all 0.2s ease-in-out;
}
body.print-in-action .wp-block-button .has-pia-yellow-background-color:hover {
  background-color: #E5057D;
  color: rgba(0, 0, 0, 0.8);
  transition: all 0.2s ease-in-out;
}
body.print-in-action .page-end {
  background-image: linear-gradient(to top, #FBDC12, transparent);
  width: 100%;
  height: 150px;
  margin-top: 60px;
}
body.print-in-action .page-end .inner {
  background-image: url("../../assets/images/realideas_pia_pattern_pink.png");
  background-size: 600px;
  width: 100%;
  height: 150px;
  border-bottom: solid 10px #E5057D;
}
body.print-in-action hr.custom {
  border: 0;
  height: 38px;
  width: 100% !important;
  background-image: url("../../assets/images/realideas_pia_pattern_pink.png");
  background-size: 170px;
  background-repeat: repeat-x;
  margin: 30px 0;
}

body.state-of-us main {
  margin: 0;
  background-color: #ffffff;
}
body.state-of-us main p a {
  color: #03E98E;
}
body.state-of-us main p a:hover {
  color: #282828;
  text-decoration: underline;
}
body.state-of-us main h1 {
  font-size: 50px;
  line-height: 1.2em;
  text-transform: uppercase;
}
body.state-of-us main h2 {
  font-size: 40px;
  line-height: 1.2em;
}
body.state-of-us main h3 {
  font-size: 28px;
  line-height: 1.2em;
}
body.state-of-us main h4 {
  font-size: 22px;
  line-height: 1.2em;
}
body.state-of-us #page-header-banner .slider .swiper-slide .content .title {
  font-size: 58px;
  line-height: 1.1em;
  text-transform: uppercase;
  font-weight: 700;
}
body.state-of-us #page-header-banner .slider .swiper-slide .content .subtext {
  font-size: 42px;
  line-height: 1.1em;
  text-transform: uppercase;
}
body.state-of-us #page-header-banner .slider .swiper-slide .content .btn {
  border-radius: 3px;
  background-color: #03E98E;
  border: 0;
  opacity: 1;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out;
  position: relative;
}
body.state-of-us #page-header-banner .slider .swiper-slide .content .btn:hover {
  background-color: #282828;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 1024px) {
  body.state-of-us #page-header-banner .slider .swiper-slide .content .title {
    font-size: 48px;
  }
  body.state-of-us #page-header-banner .slider .swiper-slide .content .subtext {
    font-size: 32px;
  }
}
@media (max-width: 580px) {
  body.state-of-us #page-header-banner .slider .swiper-slide .content .title {
    font-size: 38px;
  }
  body.state-of-us #page-header-banner .slider .swiper-slide .content .subtext {
    font-size: 24px;
  }
}
body.state-of-us #page-header-banner .slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #03E98E;
}
body.state-of-us #sub-nav {
  background-color: #03E98E;
}
body.state-of-us #sub-nav #sub-navicon span {
  background-color: #282828;
}
body.state-of-us #sub-nav .container-wrap {
  background-color: #03E98E;
}
body.state-of-us #sub-nav .container-wrap .menu {
  height: 60px;
}
body.state-of-us #sub-nav .container-wrap .menu-label {
  color: #282828;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 700;
}
body.state-of-us #sub-nav .container-wrap a {
  margin: 0;
  padding: 8px 16px;
  color: #282828;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 22px;
  height: 60px;
  transition: all 0.2s ease-in-out;
  position: relative;
}
body.state-of-us #sub-nav .container-wrap a::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 6px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #282828;
  opacity: 0;
}
body.state-of-us #sub-nav .container-wrap a:hover::after {
  opacity: 1;
  transition: all 0.2s ease-in-out;
}
body.state-of-us #sub-nav .container-wrap .menu-item.alternative a {
  background-color: #282828;
  color: #ffffff;
}
body.state-of-us #sub-nav .container-wrap .menu-item.alternative a::after {
  background-color: #ffffff;
  border-left: solid 2px #282828;
  border-right: solid 2px #282828;
  border-bottom: solid 2px #282828;
  box-sizing: border-box;
}
body.state-of-us #sub-nav .container-wrap .menu-item-has-children .sub-menu {
  background-color: #03E98E;
  border-radius: 0px;
  transition: none;
  padding: 0;
}
body.state-of-us #sub-nav .container-wrap .menu-item-has-children .sub-menu .menu-item a {
  padding: 10px 16px;
  margin: 0;
  height: auto;
  box-shadow: none;
  transform: rotate(0);
  transition: none;
  font-size: 18px;
  display: block;
  text-transform: none;
}
body.state-of-us #sub-nav .container-wrap .menu-item-has-children:hover .sub-menu {
  visibility: visible;
  transition: none;
}
body.state-of-us #sub-nav .container-wrap .menu-item-has-children:hover .sub-menu .menu-item a {
  transition: none;
}
@media (max-width: 1024px) {
  body.state-of-us.subnav__open #sub-nav .menu-container {
    background-color: #03E98E;
  }
}
body.state-of-us .wp-block-button .wp-block-button__link {
  font-size: 20px;
  text-transform: uppercase;
}
body.state-of-us .wp-block-button .has-sou-green-background-color {
  transition: all 0.2s ease-in-out;
}
body.state-of-us .wp-block-button .has-sou-green-background-color:hover {
  background-color: #282828;
  color: #ffffff;
  transition: all 0.2s ease-in-out;
}
body.state-of-us hr.custom {
  border: 0;
  border-bottom: solid 2px #282828;
  height: 5px;
  width: 100% !important;
  background-color: #03E98E;
  margin: 30px 0;
}

body.immerse-fulldome main {
  margin: 0;
  background-color: #ffffff;
}
body.immerse-fulldome main p a:hover {
  color: #282828;
  text-decoration: underline;
}
body.immerse-fulldome main h1 {
  font-size: 50px;
  line-height: 1.2em;
  text-transform: uppercase;
}
body.immerse-fulldome main h2 {
  font-size: 40px;
  line-height: 1.2em;
}
body.immerse-fulldome main h3 {
  font-size: 28px;
  line-height: 1.2em;
}
body.immerse-fulldome main h4 {
  font-size: 22px;
  line-height: 1.2em;
}
body.immerse-fulldome #page-header-banner .slider .swiper-slide .content .title {
  font-size: 58px;
  line-height: 1.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.8);
}
body.immerse-fulldome #page-header-banner .slider .swiper-slide .content .subtext {
  font-size: 42px;
  line-height: 1.1em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.8);
}
body.immerse-fulldome #page-header-banner .slider .swiper-slide .content .btn {
  border-radius: 3px;
  background-color: rgba(0, 0, 0, 0.8);
  border: 0;
  opacity: 1;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out;
  position: relative;
}
body.immerse-fulldome #page-header-banner .slider .swiper-slide .content .btn:hover {
  background-color: #282828;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 1024px) {
  body.immerse-fulldome #page-header-banner .slider .swiper-slide .content .title {
    font-size: 48px;
  }
  body.immerse-fulldome #page-header-banner .slider .swiper-slide .content .subtext {
    font-size: 32px;
  }
}
@media (max-width: 580px) {
  body.immerse-fulldome #page-header-banner .slider .swiper-slide .content .title {
    font-size: 38px;
  }
  body.immerse-fulldome #page-header-banner .slider .swiper-slide .content .subtext {
    font-size: 24px;
  }
}
body.immerse-fulldome #page-header-banner .slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #282828;
}
body.immerse-fulldome #sub-nav {
  background-color: #282828;
}
body.immerse-fulldome #sub-nav #sub-navicon span {
  background-color: #ffffff;
}
body.immerse-fulldome #sub-nav .container-wrap {
  background-color: #282828;
}
body.immerse-fulldome #sub-nav .container-wrap .menu {
  height: 60px;
}
body.immerse-fulldome #sub-nav .container-wrap .menu-label {
  color: #ffffff;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 700;
}
body.immerse-fulldome #sub-nav .container-wrap a {
  margin: 0 10px 0 0;
  padding: 8px 16px;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 20px;
  height: 40px;
  transition: all 0.2s ease-in-out;
  position: relative;
}
@media (min-width: 1024px) {
  body.immerse-fulldome #sub-nav .container-wrap a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 14px;
    border: 3px solid transparent;
    background: linear-gradient(45deg, #0A4ADB, #E31D75) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
  }
  body.immerse-fulldome #sub-nav .container-wrap a:hover {
    border-radius: 14px;
    background-image: linear-gradient(45deg, #0A4ADB, #E31D75);
    transition: none;
  }
  body.immerse-fulldome #sub-nav .container-wrap a:hover::before {
    opacity: 0;
  }
}
body.immerse-fulldome #sub-nav .container-wrap .menu-item-has-children .sub-menu {
  background-color: #282828;
  border-radius: 0px;
  transition: none;
  padding: 15px;
}
body.immerse-fulldome #sub-nav .container-wrap .menu-item-has-children .sub-menu .menu-item a {
  padding: 10px 16px;
  margin: 0;
  height: auto;
  box-shadow: none;
  transform: rotate(0);
  transition: none;
  font-size: 18px;
  display: block;
  text-transform: none;
}
body.immerse-fulldome #sub-nav .container-wrap .menu-item-has-children .sub-menu .menu-item a::before {
  display: none;
}
body.immerse-fulldome #sub-nav .container-wrap .menu-item-has-children:hover .sub-menu {
  visibility: visible;
  transition: none;
}
body.immerse-fulldome #sub-nav .container-wrap .menu-item-has-children:hover .sub-menu .menu-item a {
  transition: none;
}
@media (max-width: 1024px) {
  body.immerse-fulldome.subnav__open #sub-nav .menu-container {
    background-color: #282828;
  }
}
body.immerse-fulldome .wp-block-button .wp-block-button__link {
  border-radius: 14px;
  font-weight: 700;
}
body.immerse-fulldome .wp-block-button.is-style-outline .wp-block-button__link {
  position: relative;
  border: none;
}
body.immerse-fulldome .wp-block-button.is-style-outline .wp-block-button__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 14px;
  border: 3px solid transparent;
  background: linear-gradient(45deg, #0A4ADB, #E31D75) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}
body.immerse-fulldome .wp-block-button.is-style-outline .wp-block-button__link:hover {
  border-radius: 14px;
  background-image: linear-gradient(45deg, #0A4ADB, #E31D75);
  transition: none;
  color: #ffffff;
}
body.immerse-fulldome .wp-block-button.is-style-outline .wp-block-button__link:hover::before {
  opacity: 0;
}
body.immerse-fulldome.sticky-subnav #sub-nav .container-wrap {
  border-bottom: solid 2px #ffffff;
}
body.immerse-fulldome hr {
  border: 0;
  border-radius: 6px;
  height: 3px;
  width: 100% !important;
  background-image: linear-gradient(20deg, #0A4ADB, #E31D75);
  margin: 30px 0;
}

.org-enquire {
  max-width: 1024px;
}

.organisation__container h2 {
  margin: 0 0 15px;
}
.organisation__container .organisation {
  border-radius: 25px;
  background-color: #ffffff;
  padding: 20px;
}
.organisation__container .organisation h3 {
  font-size: 20px;
  line-height: 22px;
  margin: 0 0 15px;
}
.organisation__container .organisation p {
  margin: 0 0 20px;
}

.member-list {
  background-color: #ffffff;
  border-radius: 25px;
  padding: 15px;
}
.member-list table {
  text-align: left;
  position: relative;
  border-collapse: collapse;
  width: 100%;
}
.member-list table tr:nth-of-type(odd) {
  background-color: #EDEDED;
}
.member-list table tr:nth-of-type(1) {
  background-color: #ffffff;
}
.member-list table th, .member-list table td {
  padding: 8px 3px;
}
.member-list table th {
  position: sticky;
  top: 0; /* Don't forget this, required for the stickiness */
  box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.4);
}

.educator-list {
  padding: 60px 60px 180px;
}
.educator-list .inner {
  display: grid;
  grid: auto/repeat(auto-fill, minmax(400px, 1fr));
  grid-gap: 15px;
}
.educator-list .edu-card {
  border: solid 1px #cccccc;
  border-radius: 20px;
  padding: 20px;
}
.educator-list .edu-card .title {
  font-size: 22px;
  line-height: 26px;
  margin: 0 0 10px;
}

.blog-article .featured-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.blog-article .wp-block-embed__wrapper {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}
.blog-article .wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.card-grid {
  display: grid;
  grid: auto/repeat(auto-fill, minmax(420px, 1fr));
  grid-gap: 30px;
  margin-bottom: 100px;
  padding-top: 30px;
}
@media (max-width: 480px) {
  .card-grid {
    grid: auto/1fr;
  }
}

.object-card {
  border-radius: 30px;
  background-color: #EDEDED;
  position: relative;
}
.object-card .content-container {
  padding: 30px;
}
.object-card .content-container .title,
.object-card .content-container h2 {
  font-size: 24px;
  line-height: 1.4em;
  margin: 0 0 15px 0;
}
.object-card .btn {
  margin: 0 30px 30px;
}
.object-card .year-badge {
  background-color: #131439;
  border: solid 3px #fff;
  position: absolute;
  top: -8px;
  left: -8px;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}
.object-card .year-badge .year {
  color: #fff;
  font-size: 50px;
  line-height: 50px;
}

@media (max-width: 580px) {
  .fi-header-banner .hero.block {
    min-height: 50vh !important;
  }
}
.fi-header-banner .hero.block:before {
  display: none;
}

.featured-img-container {
  background-color: #131439;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  height: 400px;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.featured-img-container .featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-img-container .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(19, 20, 57, 0.3);
}
.featured-img-container .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 100px;
  cursor: pointer;
  padding: 10px;
  transition: color 0.3s ease-in-out;
}
.featured-img-container .play-btn:hover {
  color: #FF0A58;
  transition: color 0.3s ease-in-out;
}

.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #131439;
  z-index: 1000;
}
.popup-overlay .close {
  position: fixed;
  top: 30px;
  right: 30px;
  color: #fff;
  cursor: pointer;
  font-size: 40px;
  opacity: 0.7;
  transition: opacity 0.3s ease-in-out;
}
.popup-overlay .close:hover {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

.video-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2000;
  width: 60%;
}
.video-popup .vid-border {
  position: absolute;
  border: solid 4px #fff;
  height: 40px;
  width: 40px;
}
.video-popup .vid-border.top-left {
  top: -15px;
  left: -15px;
  border-bottom: none;
  border-right: none;
}
.video-popup .vid-border.top-right {
  top: -15px;
  right: -15px;
  border-bottom: none;
  border-left: none;
}
.video-popup .vid-border.bot-right {
  bottom: -15px;
  right: -15px;
  border-top: none;
  border-left: none;
}
.video-popup .vid-border.bot-left {
  bottom: -15px;
  left: -15px;
  border-top: none;
  border-right: none;
}
.video-popup .embed-container {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}
.video-popup .embed-container iframe,
.video-popup .embed-container object,
.video-popup .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.fi-page-intro .container {
  display: grid;
  grid: auto/1fr 1fr;
  grid-gap: 30px;
  padding-bottom: 15px;
}
@media (max-width: 870px) {
  .fi-page-intro .container {
    grid: auto/1fr;
  }
}

.logo-gallery {
  display: grid;
  grid: auto/repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
  width: 100%;
}
.logo-gallery img {
  width: 100%;
}

@media (max-width: 768px) {
  .section-job .wrapper {
    flex-direction: column;
  }
}