.popup {
    height: 100vh;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.7);
    position: fixed;
    z-index: 2000;
    pointer-events: none;
    transition: opacity 1s;
}

.popup__img {
    position: absolute;
    height: 70%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 5px;
    object-fit: contain;
}

@media (max-width: 800px) {
    .popup__img {
        width: 95%;
    }
}

.popup__hidden {
    opacity: 0;
    transform: scale(0);
}

.owl-controls .owl-buttons{
  text-align:center;
  margin-top:20px;
}
.owl-controls .owl-buttons .owl-prev{
  background: #fff;
  position: absolute;
  top:50%;
  left:-15px;
  padding: 0 18px 0 15px;
  border-radius: 50px;
  box-shadow: 3px 14px 25px -10px #92b4d0;
  transition: background 0.5s ease 0s;
}
.owl-controls .owl-buttons .owl-next{
  background: #fff;
  position: absolute;
  top:50%;
  right: -15px;
  padding: 0 15px 0 18px;
  border-radius: 50px;
  box-shadow: -3px 14px 25px -10px #92b4d0;
  transition: background 0.5s ease 0s;
}
.owl-controls .owl-buttons .owl-prev:after,
.owl-controls .owl-buttons .owl-next:after{
  content:"\f104";
  font-family: FontAwesome;
  color: #333;
  font-size:30px;
}
.owl-controls .owl-buttons .owl-next:after{
  content:"\f105";
}

.popup__carousel {
    position: fixed;
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #00000070;
  }

  .popup__carousel .owl-controls .owl-buttons .owl-prev {
    left: 20px;
  }

  .popup__carousel .owl-controls .owl-buttons .owl-next {
    right: 20px;
  }
  
  .popup__carousel__dismiss {
    outline: none !important;
    border: none;
    position: absolute;
    font-size: 24px;
    right: 20px;
    top: 20px;
    background-color: #ef4444;
    color: #fff;
    padding: 8px;
    height: 48px;
    width: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 99999999px;
    cursor: pointer;
  }
  
  .popup__carousel__prev,
  .popup__carousel__next {
    position: absolute;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    height: 48px;
    width: 48px;
    border-radius: 9999999px;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 50%;
    translate: 0 -50%;
  }
  
  .popup__carousel__prev {
    left: 20px;
  }
  
  .popup__carousel__next {
    right: 20px;
  }
  
  .popup__carousel__img {
    display: block;
    width: fit-content;
    margin: 0 auto;
    height: 70vh;
    border-radius: 5px;
    object-fit: contain;
  }
  
  .popup__carousel__img--link {
    position: relative;
    width: fit-content;
    display: block;
    margin: 0 auto;
  }
  
  .popup__carousel__img--link i {
    font-size: 32px;
    color: #fff;
    position: absolute;
    right: 12px;
    top: 12px;
    opacity: .6;
    transition: opacity .2s ease;
  }
  
  .popup__carousel__img--link span {
    position: absolute;
    top: 100%;
    width: 100%;
    text-align: center;
    color: #adadad;
  }
  
  .popup__carousel__img--link:hover i {
    opacity: 1;
  }
  
  .popup__carousel__dots {
    display: flex;
    align-items: center;
    gap: 8px;
    position: absolute;
    left: 50%;
    translate: -50% 0;
    bottom: 40px;
  }
  
  .popup__carousel__dots span {
    height: 8px;
    width: 8px;
    border-radius: 99999999px;
    background-color: #ffffff30;
    cursor: pointer;
  }
  
  .popup__carousel__dots span.active {
    background-color: #fff;
    cursor: auto;
  }
  
  .popup__carousel__hidden {
    opacity: 0;
    transform: scale(0);
  }