.prices-table-popup .close-popup {
  position: absolute;
  top: 60px;
  right: 85px;
  cursor: pointer;
}
.prices-table-popup .inner {
  display: flex;
}
.prices-table-popup .inner .col1 {
  width: 24%;
  margin-right: 10%;
}
.prices-table-popup .inner .col1 .subtitle {
  color: #19326A;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding-bottom: 10px;
}
.prices-table-popup .inner .col1 .title {
  color: #19326A;
  font-size: clamp(20px, 5vw, 32px);
  font-style: normal;
  font-weight: 400;
  line-height: 38.4px;
}
.prices-table-popup .inner .col2 {
  width: 66%;
}
.prices-table-popup .inner .col2 table {
  border-collapse: collapse;
  width: 100%;
  text-align: center;
}
.prices-table-popup .inner .col2 thead {
  background-color: #1e3163;
  color: white;
}
.prices-table-popup .inner .col2 table,
.prices-table-popup .inner .col2 th,
.prices-table-popup .inner .col2 td {
  border: none;
  border-right: 1.353px solid #D8D8D8;
  border-bottom: 1.353px solid #D8D8D8;
}
.prices-table-popup .inner .col2 table.border-right-none,
.prices-table-popup .inner .col2 th.border-right-none,
.prices-table-popup .inner .col2 td.border-right-none {
  border-right: 1.353px solid transparent;
}
.prices-table-popup .inner .col2 th {
  color: #FFF;
  font-size: clamp(16px, 2vw, 20px);
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  padding: 10px;
}
.prices-table-popup .inner .col2 td {
  color: #0D1031;
  font-size: clamp(16px, 2vw, 20px);
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  padding: 16px 0;
}
.prices-table-popup .inner .col2 tr.border-bottom-none td {
  border-bottom: 1.353px solid transparent;
}

.popup-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  pointer-events: none;
  transition: height 0.3s ease;
  opacity: 0;
}
.popup-overlay.active {
  height: 100%;
  pointer-events: auto;
  padding-top: clamp(80px, 10vw, 178px);
  padding-bottom: clamp(70px, 8vw, 145px);
  padding-left: clamp(20px, 5vw, 90px);
  padding-right: clamp(20px, 5vw, 90px);
  opacity: 1;
}
.popup-overlay.active .popup-content {
  transform: translateY(0);
}
.popup-overlay .popup-content {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding-top: clamp(70px, 10vw, 178px);
  padding-bottom: clamp(80px, 8vw, 145px);
  padding-right: 90px;
  padding-left: 90px;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index: 1000;
}

@media only screen and (max-width: 991px) {
  .prices-table-popup .inner {
    display: block;
  }
  .prices-table-popup .inner .col1 {
    width: 100%;
    margin-right: 0;
  }
  .prices-table-popup .inner .col1 .title {
    margin-bottom: 20px;
  }
  .prices-table-popup .inner .col2 {
    width: 100%;
  }
  .prices-table-popup .close-popup {
    top: 30px;
  }
}
@media only screen and (max-width: 600px) {
  .prices-table-popup .close-popup {
    right: 16px;
  }
  .prices-table-popup .inner .col1 .title {
    line-height: 24.4px;
  }
  .popup-overlay .popup-content {
    padding-right: 20px;
    padding-left: 20px;
  }
}/*# sourceMappingURL=prices-table-popup.css.map */