.exitModal__wrapper,
.exitModal__wrapper * {
  max-width: 100vw;
}

.exitModal__wrapper {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  height: 100%;
  padding: 20vh 4vw;
  background: rgba(50, 50, 50, 0.85);
  background-color: rgba(0, 0, 0, 0.5);
}

.exitModal__container {
  position: relative;
  border-radius: 12px;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  padding: 0;
  background: #fff;
  overflow: visible;
  display: flex;
  flex-direction: column;
}

.exitModal__inner {
  position: relative;
  overflow: hidden;
  flex: 1;
  border-radius: 12px;
}

.exitModal__content {
  line-height: 1.5;
}

.exitModal__close {
  position: absolute;
  width: 35px;
  height: 35px;
  top: -10px;
  right: -10px;
  z-index: 10001;
  background-color: #4a4a4a;
  border: none;
  color: rgb(255, 255, 255);
  text-align: center;
  font-weight: 700;
  line-height: 1.8em;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.exitModal__close:before, .exitModal__close:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: #fff;
  content: "";
}
.exitModal__close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.exitModal__close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.exitModal__body {
  background: url("../../img/exitModal_img.jpg") no-repeat center center;
  background-size: cover;
  aspect-ratio: 275/200;
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 214px;
  justify-content: center;
  align-items: flex-end;
}

.exitModal__buttonWrapper {
  display: flex;
  width: 80%;
  gap: clamp(10px, 5vw, 32px);
  margin-bottom: 4%;
}

.exitModal__button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: transparent;
  cursor: pointer;
  font-size: clamp(18px, 4.8vw, 28px);
  font-weight: 600;
  color: #fff;
  border: 3px solid;
  border-radius: 8px;
  padding: clamp(8px, 3.6vw, 20px) clamp(10px, 2vw, 20px);
}
.exitModal__button--active {
  background: #f27a03;
  border-color: #fff;
}
.exitModal__button--inactive {
  background: #bfbfbf;
  border-color: #bfbfbf;
}
.exitModal__button:hover {
  transform: translate(0, 3px);
}

@media (max-width: 600px) {
  .exitModal__wrapper {
    padding: 0;
  }
  .exitModal__container {
    margin: 0 4vw;
  }
  .exitModal__body {
    min-height: 210px;
  }
  .exitModal__button {
    border-width: 2px;
  }
}/*# sourceMappingURL=exit-modal.css.map */