/* Container Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.modal-overlay .modal-content {
  background: #fff;
  max-width: 600px;
  border-radius: 12px;
  position: relative;
  box-shadow: 0px 24px 38px 3px rgba(90, 93, 101, 0.1411764706);
}
@media screen and (max-width: 768px) {
  .modal-overlay .modal-content {
    max-width: calc(100% - 16px);
  }
}
.modal-overlay .modal_header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid #E2E5E9;
}
.modal-overlay .modal_header .progress-container {
  margin-right: 12px;
  display: flex;
  justify-content: flex-start;
}
.modal-overlay .modal_header .progress-container .progress-step {
  height: 8px;
  width: 8px;
  background: rgba(18, 18, 18, 0.12);
  margin-right: 8px;
  border-radius: 50%;
}
.modal-overlay .modal_header .progress-container .progress-step.active {
  width: 36px;
  background: #317ADE;
  border-radius: 99px;
}
.modal-overlay .modal_header .progress-container .progress-step.past {
  background: #049541;
}
.modal-overlay .modal_header .steps_number {
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: #A2A2A9;
}
.modal-overlay .modal_body {
  padding: 20px;
  overflow-y: auto;
  max-height: calc(100vh - 100px);
  top: 30px;
}
.modal-overlay .modal_body .back {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 24px;
}
.modal-overlay .modal_body h3 {
  font-weight: 700;
  font-size: 23px;
  line-height: 120%;
  color: #121212;
  margin-bottom: 4px;
}
.modal-overlay .modal_body p {
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: #A2A2A9;
}
.modal-overlay .modal_body span {
  font-weight: 700;
  font-size: 16px;
  line-height: 125%;
  color: rgba(0, 0, 0, 0.48);
  margin-bottom: 12px;
  display: block;
}
.modal-overlay .modal_body .managers-list {
  margin-top: 24px;
  margin-bottom: 24px;
}
.modal-overlay .modal_body .managers-list .booking-option {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 12px;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid #A2A2A9;
  margin-bottom: 12px;
  border-radius: 12px;
  position: relative;
}
.modal-overlay .modal_body .managers-list .booking-option.selected {
  border: 1px solid #317ADE;
}
.modal-overlay .modal_body .managers-list .booking-option.selected:before {
  border: 1px solid #317ADE;
}
.modal-overlay .modal_body .managers-list .booking-option.selected:after {
  display: block;
}
.modal-overlay .modal_body .managers-list .booking-option.selected .manager-details strong, .modal-overlay .modal_body .managers-list .booking-option.selected .manager-details small {
  color: #317ADE;
}
.modal-overlay .modal_body .managers-list .booking-option:before {
  position: absolute;
  content: "";
  right: 12px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: block;
  border: 1px solid #A2A2A9;
  top: 26px;
}
.modal-overlay .modal_body .managers-list .booking-option:after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #317ADE;
  right: 16px;
  top: 30px;
  display: none;
}
.modal-overlay .modal_body .managers-list .booking-option .manager-avatar {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 8px;
  background: rgba(162, 162, 169, 0.2392156863);
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: #121212;
}
.modal-overlay .modal_body .managers-list .booking-option .manager-details strong {
  font-weight: 700;
  font-size: 16px;
  line-height: 125%;
  color: #121212;
  margin-bottom: 4px;
}
.modal-overlay .modal_body .managers-list .booking-option .manager-details small {
  font-weight: 400;
  font-size: 11px;
  line-height: 125%;
  color: #A2A2A9;
}
.modal-overlay .modal_body .date-grid {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.modal-overlay .modal_body .date-grid .grid-item {
  width: calc(20% - 6px);
  margin-bottom: 12px;
  margin-right: 7px;
  border: 1px solid #A2A2A9;
  border-radius: 8px;
  padding: 8px 12px;
}
.modal-overlay .modal_body .date-grid .grid-item:nth-of-type(5n) {
  margin-right: 0;
}
.modal-overlay .modal_body .date-grid .grid-item.selected {
  border: 1px solid #317ADE;
  transition: all 0.3s;
}
.modal-overlay .modal_body .date-grid .grid-item.selected div, .modal-overlay .modal_body .date-grid .grid-item.selected strong {
  color: #317ADE;
  transition: all 0.3s;
}
.modal-overlay .modal_body .date-grid .grid-item div {
  font-weight: 400;
  font-size: 11px;
  line-height: 125%;
  color: #A2A2A9;
  margin-bottom: 4px;
  transition: all 0.3s;
}
.modal-overlay .modal_body .date-grid .grid-item strong {
  color: #121212;
  font-weight: 700;
  font-size: 16px;
  line-height: 125%;
  transition: all 0.3s;
}
.modal-overlay .modal_body .buttons {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
.modal-overlay .modal_body .buttons .close-modal {
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: #6C7077;
  background: #E2E5E9;
  padding: 8px 30px;
  border-radius: 2px;
  position: initial;
}
.modal-overlay .modal_body .buttons button {
  border: 1px solid #3278FF;
  background: #3278FF;
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: #FFFFFF;
  padding: 8px 30px;
  border-radius: 2px;
  margin-left: 10px;
}
.modal-overlay .modal_body .time-grid {
  margin-top: 24px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.modal-overlay .modal_body .time-grid .grid-item {
  width: calc(20% - 6px);
  margin-right: 7px;
  margin-bottom: 12px;
  padding: 12px;
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
}
@media screen and (max-width: 768px) {
  .modal-overlay .modal_body .time-grid .grid-item {
    padding: 8px 5px;
  }
}
.modal-overlay .modal_body .time-grid .grid-item:nth-of-type(5n) {
  margin-right: 0;
}
.modal-overlay .modal_body .summary-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 12px;
  margin: 24px 0;
  border: 1px solid #317ADE;
  background: rgba(49, 122, 222, 0.1019607843);
  border-radius: 12px;
}
@media screen and (max-width: 768px) {
  .modal-overlay .modal_body .summary-item {
    flex-wrap: wrap;
  }
}
.modal-overlay .modal_body .summary-item .manager {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .modal-overlay .modal_body .summary-item .manager {
    width: 100%;
    margin-bottom: 10px;
  }
}
.modal-overlay .modal_body .summary-item .manager .manager_avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-right: 8px;
  background: #317ADE;
  font-weight: 400;
  font-size: 12px;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-overlay .modal_body .summary-item .manager h4 {
  font-weight: 700;
  font-size: 16px;
  line-height: 125%;
  color: #317ADE;
}
.modal-overlay .modal_body .summary-item span {
  margin: 0 12px;
  color: #317ADE;
  font-weight: 700;
  font-size: 16px;
  line-height: 125%;
}
@media screen and (max-width: 768px) {
  .modal-overlay .modal_body .summary-item span {
    display: none;
  }
}
.modal-overlay .modal_body .summary-item .date {
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: #121212;
}
.modal-overlay .modal_body .summary-item .hour {
  font-weight: 700;
  font-size: 16px;
  line-height: 125%;
  color: #317ADE;
}
@media screen and (max-width: 768px) {
  .modal-overlay .modal_body .summary-item .hour {
    margin-left: 12px;
  }
}
.modal-overlay .modal_body form {
  margin-top: 24px;
}
.modal-overlay .modal_body form .form_row {
  display: flex;
  justify-content: space-between;
}
.modal-overlay .modal_body form .form_row .form-group {
  width: calc(50% - 6px);
  margin-bottom: 20px;
  position: relative;
}
.modal-overlay .modal_body form .form_row .form-group .label {
  font-weight: 700;
  font-size: 16px;
  line-height: 125%;
  color: rgba(18, 18, 18, 0.48);
  margin-bottom: 4px;
}
.modal-overlay .modal_body form .form_row .form-group input {
  border: 1px solid #A2A2A9;
  border-radius: 8px;
  padding: 12px;
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
}
.modal-overlay .modal_body form .form_row .form-group input::placeholder {
  color: rgba(18, 18, 18, 0.48);
}
.modal-overlay .modal_body form .form_row .form-group input.input-error {
  border: 1px solid #FF0000;
}
.modal-overlay .modal_body form .form_row .form-group input.input-error::placeholder {
  color: rgba(255, 0, 0, 0.48);
}
.modal-overlay .modal_body form .form_row .form-group input.input-error + span.erorr {
  opacity: 1;
  transition: all 0.4s;
}
.modal-overlay .modal_body form .form_row .form-group span.erorr {
  position: absolute;
  top: 100%;
  left: 0;
  font-weight: 400;
  font-size: 11px;
  line-height: 125%;
  color: #FF0000;
  opacity: 0;
  transition: all 0.4s;
}
.modal-overlay .modal_body .thank_you_screen {
  text-align: center;
}
.modal-overlay .modal_body .thank_you_screen .icon {
  margin-bottom: 12px;
}
.modal-overlay .modal_body .thank_you_screen span {
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  text-align: center;
  color: #A2A2A9;
}
.modal-overlay .modal_body .thank_you_screen span strong {
  color: #121212;
  font-weight: 700;
}
.modal-overlay .modal_body .thank_you_screen .email_section {
  background: rgba(49, 122, 222, 0.1019607843);
  padding: 8px 12px;
  border-radius: 12px;
  width: fit-content;
  margin: 24px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  font-size: 11px;
  line-height: 125%;
  color: #121212;
}
.modal-overlay .modal_body .thank_you_screen .email_section svg {
  margin-right: 10px;
}
.modal-overlay .modal_body .thank_you_screen .email_section strong {
  font-weight: 700;
}

.loader {
  padding: 12px;
  text-align: center;
}
.loader img {
  max-width: 60px;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  cursor: pointer;
  font-size: 24px;
  color: #999;
}

.booking-option input[type=radio] {
  display: none;
}

/* Grid pentru Zile/Ore */
.date-grid, .time-grid {
  margin-top: 15px;
}

.grid-item {
  padding: 10px;
  border: 1px solid #A2A2A9;
  text-align: center;
  border-radius: 6px;
  cursor: pointer;
  color: #121212;
}

.grid-item.disabled {
  background: #f3f4f6;
  color: rgba(162, 162, 169, 0.24);
  border: 1px solid rgba(162, 162, 169, 0.24);
  cursor: not-allowed;
}

.grid-item.selected {
  border-color: #2563eb;
  background: #eff6ff;
  color: #2563eb;
  font-weight: bold;
}

.form-group {
  margin-bottom: 15px;
}

.form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-sizing: border-box; /* Foarte important pentru padding */
}

.btn-primary {
  background: #2563eb;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.btn-primary:hover {
  background: #1d4ed8;
}

/*# sourceMappingURL=style.css.map */
