.services_container {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 10px;
}
.services_container .service {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 48px;
  border: 1px solid #BEBEBE;
  border-radius: 8px;
  align-items: center;
  font-family: "Golos Text", Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  padding: 15px 16px;
  transition: all 0.2s ease;
}
.services_container .service .green-checkbox {
  flex-shrink: 0;
  align-self: center;
  margin: 0 !important;
  width: 16px;
  height: 16px;
}
.services_container .service .green-checkbox > span::before {
  margin: 0;
}
.services_container .service_info {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  align-items: baseline;
  gap: 6px;
  margin: 0 10px !important;
}
.services_container .service_name {
  white-space: nowrap;
  color: #000000;
}
.services_container .service_dots {
  flex-grow: 1;
  height: 1px;
  background: repeating-linear-gradient(to right, #000000, #000000 1px, transparent 1px, transparent 5px);
}
.services_container .service_price {
  font-weight: 600;
}

.info-icon {
  cursor: pointer;
  color: #aaa;
  transition: color 0.2s;
}

.info-icon:hover {
  color: #008C3A;
}

.service-tooltip {
  position: fixed;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 12px 16px;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 10000;
  font-size: 14px;
  color: #333;
  pointer-events: auto;
  border: 1px solid #e0e0e0;
  transition: opacity 0.2s;
  background-color: #ffffff;
  border-radius: 10px;
  border: 1px solid #008c3a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.service-tooltip .tooltip-text {
  font-family: "Golos Text", sans-serif;
  font-weight: 400;
  margin-bottom: 0px;
  font-size: 14px;
  word-break: break-word;
}

.service-tooltip .tooltip-more {
  background: none;
  border: none;
  color: #000000;
  cursor: pointer;
  font-size: 16px;
  padding: 0;
  margin-top: 5px;
  font-weight: 600;
  font-family: "Golos Text", sans-serif;
  text-align: center;
}

.service-tooltip .tooltip-more:hover {
  color: #00642a;
}

.service-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-modal {
  background: #fff;
  border-radius: 20px;
  max-width: 90%;
  width: -moz-fit-content;
  width: fit-content;
  max-height: 80vh;
  overflow-y: auto;
  padding: 24px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 28px;
  height: 28px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E") center no-repeat;
  background-size: 18px;
  cursor: pointer;
  border: none;
  background-color: transparent;
  transition: all 0.3s;
}

.service-modal-close:hover {
  opacity: 0.7;
  background: none;
  background-size: 18px !important;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E") center no-repeat;
  transition: all 0.3s;
}

.service-modal-content {
  font-size: 14px;
  line-height: 1.5;
}

.service-modal-content-title {
  font-weight: 600;
  font-family: "Golos Text", sans-serif;
  font-size: 20px;
  margin-bottom: 10px;
  margin-right: 20px;
}/*# sourceMappingURL=services.css.map */