.cvre-site-selector {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0b1a2a;
}
.cvre-site-selector__modal {
  position: relative;
  z-index: 1;
  padding: 20px;
  max-width: calc(100vw - 40px);
  border-radius: 20px;
  overflow: hidden;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  .cvre-site-selector__modal {
    padding: 80px;
  }
}
.cvre-site-selector__bg {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  opacity: 0.4;
  background-size: cover;
  background-position: center;
  pointer-events: none;
  pointer-events: none;
}
.cvre-site-selector__bg--left {
  left: 0;
  background-image: var(--cvre-bg-north, none);
}
.cvre-site-selector__bg--right {
  right: 0;
  background-image: var(--cvre-bg-south, none);
}
@media (max-width: 600px) {
  .cvre-site-selector__bg {
    width: 100%;
    height: 50%;
  }
  .cvre-site-selector__bg--left {
    top: 0;
    left: 0;
  }
  .cvre-site-selector__bg--right {
    top: 50%;
    left: 0;
    right: auto;
  }
}
.cvre-site-selector__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, transparent 0%, #112335 50%, transparent 100%);
  pointer-events: none;
}
@media (max-width: 600px) {
  .cvre-site-selector__gradient {
    background: linear-gradient(to bottom, transparent 0%, #112335 50%, transparent 100%);
  }
}
.cvre-site-selector__close {
  position: absolute;
  top: 21px;
  right: 21px;
  width: 26px;
  height: 26px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.cvre-site-selector__close svg {
  width: 16px;
  height: 16px;
}
.cvre-site-selector__panels {
  position: relative;
  display: flex;
  gap: 25px;
  align-items: stretch;
  width: 100%;
}
@media (max-width: 600px) {
  .cvre-site-selector__panels {
    flex-direction: column;
    gap: 20px;
  }
}
.cvre-site-selector__panel {
  flex: 1;
  min-width: 0;
  background: rgba(11, 26, 42, 0.6);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0 28px 28px;
  gap: 40px;
  cursor: pointer;
}
.cvre-site-selector__panel:hover .cvre-site-selector__btn, .cvre-site-selector__panel:focus-within .cvre-site-selector__btn {
  background: #c5a059;
  color: #fff;
}
.cvre-site-selector__logo {
  max-width: 292px;
  width: 80%;
  height: auto;
  display: block;
  margin-top: auto;
  padding-top: 40px;
  color: #fff;
}
.cvre-site-selector__logo path {
  stroke: currentColor;
  stroke-width: 0.5;
  paint-order: stroke fill;
}
.cvre-site-selector__btn {
  width: 331px;
  max-width: 100%;
  height: 38px;
  background: #fff;
  border-radius: 40px;
  color: #0b1a2a;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.cvre-site-selector__btn:focus {
  outline: none;
}
