.popup-services {
  display: none;
}

.services-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6509803922);
  z-index: 10000;
}

.services-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10010;
  background-color: #FFFFFF;
  max-width: 1000px;
  width: 100%;
  max-height: 460px;
  height: 100%;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: row;
}
@media (max-width: 1000px) {
  .services-popup {
    flex-direction: column;
    max-width: 628px;
    max-height: 90vh;
    justify-content: flex-start;
    align-items: center;
    height: auto;
  }
}
@media (max-width: 600px) {
  .services-popup {
    top: auto;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 90vh;
    max-height: none;
    padding: 16px;
    border-radius: 20px 20px 0 0;
    justify-content: flex-start;
  }
}
.services-popup-main {
  display: flex;
  flex-direction: column;
  height: 100%;
  flex: 1;
  overflow: hidden;
  margin-left: 40px;
}
@media (max-width: 1000px) {
  .services-popup-main {
    margin-left: 0;
    margin-top: 30px;
    position: relative;
    width: 100%;
    height: auto;
    flex: 1;
  }
}
@media (max-width: 600px) {
  .services-popup-main {
    margin-top: 20px;
    flex: 1;
    min-height: 0;
    height: 100%;
    margin-bottom: 0;
  }
}
.services-popup-close {
  position: absolute;
  top: 31px;
  right: 30px;
  width: 20px;
  height: 20px;
  padding: 4px;
  background-image: url(/images/icons/black_cross.svg);
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  z-index: 10020;
}
@media (max-width: 600px) {
  .services-popup-close {
    display: none;
  }
}
.services-popup-img {
  width: 400px;
  height: 400px;
  background-color: #D9D9D9;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
  box-sizing: border-box;
}
@media (max-width: 1000px) {
  .services-popup-img {
    width: 300px;
    height: 300px;
    margin-top: 0;
  }
}
@media (max-width: 600px) {
  .services-popup-img {
    width: 250px;
    height: 250px;
    margin-top: 20px;
  }
}
.services-popup-container {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
}
@media (max-width: 1000px) {
  .services-popup-container {
    margin: 0;
    max-width: 100%;
    width: 100%;
    flex: 1;
    min-height: 0;
  }
}
@media (max-width: 600px) {
  .services-popup-container {
    margin-bottom: 0;
  }
}
.services-popup-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow-y: auto;
  min-height: 0;
}
@media (max-width: 1000px) {
  .services-popup-content {
    max-width: 100%;
    width: 100%;
    flex: 1;
  }
}
@media (max-width: 600px) {
  .services-popup-content {
    margin-bottom: 0;
  }
}
.services-popup-title {
  font-family: "Golos Text", Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  max-width: 480px;
  width: 100%;
  margin: 0 0 30px;
  flex-shrink: 0;
}
@media (max-width: 1000px) {
  .services-popup-title {
    text-align: center;
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .services-popup-title {
    margin: 0 0 20px;
  }
}
.services-popup-text {
  font-family: "Golos Text", Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  text-align: justify;
}
.services-popup-footer {
  background-color: #FFFFFF;
  padding-top: 15px;
  margin-top: auto;
  flex-shrink: 0;
  left: 40px;
}
@media (max-width: 1000px) {
  .services-popup-footer {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    margin-top: 20px;
  }
}
@media (max-width: 600px) {
  .services-popup-footer {
    margin-top: auto;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
.services-popup-footer-text {
  font-family: "Golos Text", Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
}
.services-popup-footer-phone {
  font-family: "Golos Text", Montserrat, sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 36px;
  margin: 10px 0;
}
.services-popup-footer-time {
  font-family: "Golos Text", Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: #999999;
}

body.no-scroll {
  overflow: hidden;
}

.services-popup-swipe-line {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 5px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  z-index: 10060;
  display: none;
}
.services-popup-swipe-line::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -10px;
  right: -10px;
  bottom: -15px;
  background: transparent;
}
.services-popup-swipe-line:active {
  cursor: grabbing;
}
@media (max-width: 600px) and (orientation: portrait) {
  .services-popup-swipe-line {
    display: block;
  }
}/*# sourceMappingURL=services_popup.css.map */