﻿.popTarifas__overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.popTarifas__card {
  position: fixed;
  top: calc(50% - 250px);
  left: calc(50% - 300px);
  width: 600px;
  height: 510px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  color: white;
  font-family: "Gotham Rounded";
  background: url("/SiteAssets/AssetsV2/img/modal/patron_mice.svg"), #d5494a;
  background-repeat: space;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  z-index: 2;
}

.popTarifas .popTarifas__overlay,
.popTarifas .popTarifas__card {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.popTarifas--active .popTarifas__overlay,
.popTarifas--active .popTarifas__card {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.popTarifas__icon {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  color: #000;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popTarifas__div {
  position: relative;
  height: 40%;
  padding: 20px 15px;
}

.popTarifas__text {
  padding: 0 20px;
}

.popTarifas__next {
  position: absolute;
  top: 50%;
  right: 5px;
  cursor: pointer;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.popTarifas__next:hover {
  transform: translateX(5px);
  -webkit-transform: translateX(5px);
  -moz-transform: translateX(5px);
  -ms-transform: translateX(5px);
  -o-transform: translateX(5px);
}

.popTarifas__prev {
  position: absolute;
  top: 50%;
  left: 5px;
  cursor: pointer;
  display: none;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.popTarifas__prev:hover {
  transform: translateX(-5px);
  -webkit-transform: translateX(-5px);
  -moz-transform: translateX(-5px);
  -ms-transform: translateX(-5px);
  -o-transform: translateX(-5px);
}

.popTarifas__img {
  width: 100%;
  height: 55%;
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
}

.popTarifas__hr {
  border: 1px solid white;
  width: 150px;
  margin: 0 auto;
}

.popTarifas__p {
  font-size: 14px;
  margin: 0;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.popTarifas__p b {
  color: yellow;
  font-size: inherit;
}

.popTarifas__h2 {
  color: #fff;
  font-size: 18px;
}

@media (max-width: 800px) {
  .popTarifas__card {
    top: calc(50% - 250px);
    left: calc(50% - 200px);
    width: 400px;
    height: max-content;
  }
}

@media (max-width: 390px) {
  .popTarifas__card {
    left: calc(50% - 155px);
    width: 310px;
  }
}
