/* import font */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
#scr01, #scr02, #scr03, #scr04, #scr05, #scr06, #scr07, #scr08, #scr09, #scr10, #scr11 {
  display: flex; }

/* Define theme colors */
:root {
  --text-color: #000000;
  --text-color-rgb: 0, 0, 0;
  --white: #ffffff;
  --white-rgb: 255, 255, 255;
  --light-blue: #35B5F2;
  --light-blue-hover: #35CFF2;
  --blue: #117CC8;
  --blue-hover: #1495D3;
  --green: #25D366;
  --green-hover: #38E999;
  --red: #F8374E;
  --red-hover: #FD5D84;
  --bg-color: #E9F4FA;
  --stroke-color: #C3DCEA;
  --yellow: #FFBA34;
  --backdrop-rgb: 15, 63, 86; }

html {
  direction: rtl; }

a {
  color: var(--light-blue);
  text-decoration: none; }
  a:hover {
    color: var(--light-blue-hover);
    text-decoration: underline; }
  a:visited, a:focus {
    color: var(--blue); }

.btn {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border: 0 solid transparent;
  transition: .15s ease-in-out;
  height: 2.5rem;
  border-radius: 1.25rem;
  color: var(--white); }
  @media (min-width: 768px) {
    .btn {
      height: 3.75rem;
      border-radius: 1.875rem;
      font-size: 1.25rem; } }
  .btn.disabled, .btn:disabled {
    background-color: var(--stroke-color);
    pointer-events: none; }

.btn-l-blue {
  background-color: var(--light-blue); }
  .btn-l-blue:hover {
    background-color: var(--light-blue-hover); }

.btn-blue {
  background-color: var(--blue); }
  .btn-blue:hover {
    background-color: var(--blue-hover); }

.btn-green {
  background-color: var(--green); }
  .btn-green:hover {
    background-color: var(--green-hover); }

.btn-s {
  padding: 0.25rem 1rem;
  height: 2rem;
  font-size: 1rem; }

.w-100 {
  width: 100%; }

.text-center {
  text-align: center; }

.text-small {
  font-size: 1rem; }

.text-yellow {
  color: var(--yellow); }

.text-red {
  color: var(--red); }

a.text-red {
  color: var(--red); }
  a.text-red:hover {
    color: var(--red-hover); }

.text-l-blue {
  color: var(--light-blue); }

a.text-l-blue {
  color: var(--light-blue); }
  a.text-l-blue:hover {
    color: var(--light-blue-hover); }

.text-blue {
  color: var(--blue); }

a.text-blue {
  color: var(--blue); }
  a.text-blue:hover {
    color: var(--blue-hover); }

.text-bold {
  font-weight: 700; }

.text-normal {
    font-weight: 400;
    font-size: 1rem;
    font-style: normal;
}
.text-mute {
  font-size: 0.875rem;
  color: rgba(var(--text-color-rgb), 0.5); }
  @media (min-width: 768px) {
    .text-mute {
      font-size: 1rem; } }

.d-none {
  display: none; }

.warp-input {
    border:solid 1px #d5dfef;
    border-radius:5px;
    width:100%;
}
/* Skin ||||||||||||||||||||||||||||||||||||| */
body {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    /*700 = bold*/
    font-style: normal;
    /*italic*/
    font-variation-settings: "wdth" 100;
    font-size: 1rem;
    color: var(--text-color);
    background-color: var(--bg-color);
    background-image: url("../img/bg-mobile.png");
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: top center;
    margin: 0;
    padding: 0;
}
  @media (min-width: 768px) {
    body {
      font-size: 1.25rem;
      background-image: url("../img/bg-desktop.png");
      background-repeat: repeat; } }

/* Header ||||||||||||||||||||||||||||||||||||| */
.header {
    /*width: 100%;*/
    /*box-sizing: border-box;*/
    /*min-height: calc(100vh - 82px);*/
    background-color: var(--white);
    border-radius: 1rem;
    border: solid 2px #10618a;
    /*flex-direction: column;
    justify-content: space-between;*/
    /*==================*/
    width: auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
  @media (min-width: 768px) {
    .header {
      width: 720px;
      margin: auto; } }

.btn-menu {
  height: 2.25rem;
  width: 2.25rem;
  border-radius: 0.5rem;
  background-color: var(--white);
  box-shadow: 0 0.25rem 0.5rem rgba(var(--text-color-rgb), 0.15);
  display: inline-block;
  line-height: 2.25rem;
  text-align: center;
  color: var(--light-blue); }
  .btn-menu:hover {
    background-color: var(--bg-color);
    text-decoration: none; }

.dropdown {
  position: relative; }

.dropdown-menu {
  position: absolute;
  border-radius: 0.5rem;
  background-color: var(--white);
  box-shadow: 0 0.25rem 0.5rem rgba(var(--text-color-rgb), 0.15);
  margin: 0.125rem 0;
  z-index: 1;
  left: 0;
  padding: 0.5rem 0; }

.dropdown-item {
  display: block;
  padding: 0.5rem 1rem;
  white-space: nowrap; }
  .dropdown-item:hover {
    background-color: var(--bg-color);
    text-decoration: none; }

/* content ||||||||||||||||||||||||||||||||||||| */
.content {
  width: 100%;
  box-sizing: border-box;
  min-height: calc(100vh - 82px);
  background-color: var(--white);
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between; }
  @media (min-width: 768px) {
    .content {
      width: 720px;
      min-height: calc(100vh - 114px);
      margin: 0 auto 2rem;
      border-radius: 1rem; } }

.content-header {
  width: 100%;
  box-sizing: border-box;
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center; }
  @media (min-width: 768px) {
    .content-header {
      width: 720px;
      margin: auto; } }
  .content-header h1 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0; }
  .content-header a {
    color: var(--text-color);
    font-size: 1rem; }

.content-body {
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem; }
  @media (min-width: 768px) {
    .content-body {
      padding: 2rem; } }
  .content-body.align-top {
    justify-content: flex-start; }
  .content-body.align-center {
    justify-content: center; }
  .content-body.align-between {
    justify-content: space-between; }
  .content-body p {
    margin: 0; }

.flex-fill {
  flex: 1 1 auto !important; }

.gap {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem; }
  @media (min-width: 768px) {
    .gap {
      gap: 1rem;/*2rem*/
      width: 500px;
      margin: 2rem auto; } }

.text-welcome {
    margin-top: -20px
}
 @media (min-width: 768px){
    .text-welcome {
        margin-top: -40px
    }
}

.gap-50 {
    padding: 0.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.gifts-box {
    padding: 0.75rem 0.75rem;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    border: 2px solid var(--blue); /*--red*/
    border-radius: 1.25rem;
    color: var(--blue); /*--red*/
    background-color: var(--bg-color);
}
  @media (min-width: 768px) {
    .gifts-box {
      border-radius: 1.875rem;
      font-size: 1.25rem; } }
  .gifts-box img {
    display: block;
    margin: auto;
    height: 96px; }
    @media (min-width: 768px) {
      .gifts-box img {
        height: 160px; } }
.gifts-box a {
    color: var(--blue); /*--red*/
}

.ok-box {
  padding: 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  border: 2px solid var(--light-blue);
  border-radius: 1.25rem;
  color: var(--text-color);
  background-color: var(--bg-color); }
  @media (min-width: 768px) {
    .ok-box {
      border-radius: 1.875rem;
      font-size: 1.25rem; } }

.svg-img {
  display: block;
  margin: auto;
  height: 96px; }
  @media (min-width: 768px) {
    .svg-img {
      height: 160px; } }

.change-group {
  padding: 0.75rem 0;
  font-size: 1rem;
  line-height: 1.5;
  border-bottom: 1px solid var(--stroke-color);
  display: flex;
  justify-content: space-between;
  align-items: center; }
  @media (min-width: 768px) {
    .change-group {
      font-size: 1.25rem; } }

.change-group-action {
  display: flex;
  justify-content: flex-end;
  align-items: center; }
  .change-group-action a {
    color: var(--text-color);
    text-align: center;
    margin-right: 1rem;
    font-size: 0.875rem; }
    @media (min-width: 768px) {
      .change-group-action a {
        font-size: 1rem;
        margin-right: 2rem; } }
    .change-group-action a:hover {
      text-decoration: none; }
    .change-group-action a i {
      display: block;
      font-size: 1.25rem; }
      @media (min-width: 768px) {
        .change-group-action a i {
          font-size: 1.5rem; } }

/* Form ||||||||||||||||||||||||||||||||||||| */
label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  white-space: nowrap; }

.form-control {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--white);
  background-clip: padding-box;
  border: 1px solid var(--stroke-color);
  border-radius: 0.5rem;
  transition: .15s ease-in-out; }

.form-control:focus {
  color: var(--text-color);
  background-color: var(--white);
  border-color: var(--light-blue);
  outline: 0;
  box-shadow: 0 0 0 0.15rem rgba(53, 181, 242, 0.25); }

.form-control.no-border {
  border: none;
  padding: 0; }

.form-select {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: .375rem .75rem .375rem 2.25rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--white);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23000000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: left .75rem center;
  background-size: 16px 12px;
  border: 1px solid var(--stroke-color);
  border-radius: 0.5rem;
  z-index: 1000;
  transition: .15s ease-in-out; }


.form-select:focus {
  border-color: var(--light-blue);
  outline: 0;
  box-shadow: 0 0 0 0.15rem rgba(53, 181, 242, 0.25); }

.error-text {
  display: none;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--red); }

.form-error .form-control {
  border: 1px solid var(--red); }
.form-error .form-select {
  border: 1px solid var(--red); }
.form-error .error-text {
  display: block; }

.form-group {
  display: flex;
  align-items: center;
  padding-right: .75rem;
  border: 1px solid var(--stroke-color);
  border-radius: 1rem;
  justify-content: space-between; }

.form-check-box {
  display: flex;
  align-items: center;
  padding: .375rem .75rem;
  border: 1px solid var(--stroke-color);
  border-radius: 0.5rem; }

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-right: 1.5em;
  margin-bottom: .125rem;
  line-height: 1.5rem; }
  .form-check label {
    margin: 0;
    font-size: 1rem; }

.form-check-input {
  flex-shrink: 0;
  width: 1.25em;
  height: 1.25em;
  margin-top: .25em;
  vertical-align: top;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--white);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid var(--stroke-color);
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
  print-color-adjust: exact; }
  .form-check-input:checked[type=radio] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e"); }
  .form-check-input:checked[type=checkbox] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e"); }

.form-check-input:checked {
  background-color: var(--light-blue);
  border-color: var(--light-blue); }

.form-check-input[type=radio] {
  border-radius: 50%; }

.form-check-input[type=checkbox] {
  border-radius: .25em; }

.form-check .form-check-input {
  float: right;
  margin-right: -1.5rem; }

/* Footer ||||||||||||||||||||||||||||||||||||| */
.footer {
  background-color: var(--bg-color);
  width: auto;
  box-sizing: border-box;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem; }
  @media (min-width: 768px) {
    .footer {
      width: 720px;
      margin: auto;
      border-bottom-left-radius: 1rem;
      border-bottom-right-radius: 1rem;
      font-size: 1rem; } }
  .footer p {
    margin: 0; }

.social-box {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0.5rem;
  background-color: var(--white);
  box-shadow: 0 0.25rem 0.5rem rgba(var(--text-color-rgb), 0.15);
  line-height: 2.25rem;
  color: var(--light-blue);
  padding: 0.5rem 2rem;
  font-size: 1.25rem; }
  .social-box:hover {
    text-decoration: none; }
  @media (min-width: 768px) {
    .social-box {
      font-size: 1.75rem; } }

.copyright {
  display: flex;
  align-items: center;
  color: rgba(var(--text-color-rgb), 0.5); }
  .copyright.align-center {
    justify-content: center; }
  .copyright.align-between {
    justify-content: space-between; }


    .close-menu {
      display: block;
      text-align: center;
      font-size: 24px;
      cursor: pointer;
      padding: 5px;
      color: red;
  }
  .close-menu:hover {
      color: darkred;
  }
  


    #dateDisplay {
      direction: ltr;
      text-align: center;
      font-size: 16px;
      padding: 8px;
      border: 1px solid #ccc;
      border-radius: 5px;
      width: 150px;
      cursor: pointer;
      background-color: #fff;
      margin-left: 0px;
  }
  
  #dateDisplay:focus {
      outline: none;
      border-color: #007bff;
      box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
  }

  

/* Popup ||||||||||||||||||||||||||||||||||||| */
.popup-backdrop {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(var(--backdrop-rgb), 0.7);
  padding: 2rem 0;
  height: fit-content;
  box-sizing: border-box; }
  @media (min-width: 768px) {
    .popup-backdrop {
      align-items: center; } }

.popup {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  background-color: var(--white);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 0.25rem 0.5rem rgba(var(--text-color-rgb), 0.15); }
  @media (min-width: 768px) {
    .popup {
      width: 720px;
      min-height: 60vh;
      margin: 0 auto; } }

.popup-header {
  position: relative;
  min-height: 3.5rem;
  box-sizing: border-box;
  padding: 1.5rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem; }
  @media (min-width: 768px) {
    .popup-header {
      width: 720px;
      margin: auto; } }
  .popup-header a.close-popup {
    position: absolute;
    right: 1rem;
    top: 0.5rem;
    color: var(--text-color);
    font-size: 2rem;
    opacity: 0.5; }
    .popup-header a.close-popup:hover {
      opacity: 1; }
  .popup-header.bg-color {
    background-color: var(--bg-color); }

.popup-body {
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem; }
  @media (min-width: 768px) {
    .popup-body {
      padding: 2rem; } }
  .popup-body.align-top {
    justify-content: flex-start; }
  .popup-body.align-center {
    justify-content: center;
    padding-bottom: 5rem; }
  .popup-body.align-between {
    justify-content: space-between; }
  .popup-body p, .popup-body h3 {
    margin: 0; }

.flex-fill {
  flex: 1 1 auto !important; }

.popup-gap {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem; }
  @media (min-width: 768px) {
    .popup-gap {
      gap: 2rem;
      width: 500px;
      margin: 2rem auto; } }


      .popup-content {
        background: var(--white);
        padding: 2rem;
        border-radius: 1rem;
        text-align: center;
        box-shadow: 0 0.25rem 0.5rem rgba(var(--text-color-rgb), 0.15);
      }
      .otp-input-container {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin: 1rem 0;
      }
      .otp-input {
        width: 3rem;
        height: 3rem;
        text-align: center;
        font-size: 1.5rem;
        border: 1px solid var(--stroke-color);
        border-radius: 0.5rem;
      }
      .resend-text {
        margin-top: 1rem;
      }

      .otp-input-container {
        display: flex;
        justify-content: center;
        gap: 10px;
      }
      
      .otp-input {
        width: 40px;
        height: 40px;
        text-align: center;
        font-size: 24px;
        border: 1px solid #ccc;
        border-radius: 5px;
      }
      
      .otp-input:focus {
        outline: none;
        border: 1px solid #007bff;
      }
      
      .otp-form {
        text-align: center;
      }
      
      .modal, #privacyModal {
        display: none;
        position: fixed; 
        z-index: 1000;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5); 
        display: flex;
        justify-content: center;
        align-items: center;
      }
      
      .modal-content, #privacyModal .modal-content {
        position: relative; 
        background: white;
        padding: 40px 20px 20px; 
        border-radius: 8px;
        width: 90%;
        max-width: 400px;
        text-align: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        display: flex;
        flex-direction: column;
        align-items: center;
      }
      
      .close-btn {
        position: absolute;
        top: 10px;
        left: 50%;
        transform: translateX(-50%); 
        font-size: 24px;
        cursor: pointer;
        background: none;
        border: none;
        color: black;
        font-weight: bold;
      }
      
      .close-btn:hover {
        color: red;
      }
      


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

/* Appointment styles for SCR09 */
#scr09 .date-header {
    margin-top: 10px; /*20px*/
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--stroke-color);
}

#scr09 .date-header h3 {
    margin: 0;
    font-size: 1.0rem;/*1.1rem*/
    color: var(--text-color);
}
/*#scr09 .text-service {
    font-weight: 400;
}*/

#scr09 .appointment-details {
    display: flex;
    align-items: center;
    gap: 5px; /*15px*/
}

#scr09 .appointment-time {
    min-width: 60px;
    font-weight: bold;
    color: var(--primary-color);
}

#scr09 .appointment-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

#scr09 .appointment-location {
    font-size: 0.9rem;
    color: var(--text-color-light);
}

#scr09 .change-group {
    margin-bottom: 1px; /*10px*/
    border-radius: 8px;
    transition: background-color 0.2s;
}

#scr09 .change-group:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

#scr09 .change-group-action a {
    padding: 4px; /*8px*/
    border-radius: 50%;
    transition: background-color 0.2s;
}

#scr09 .change-group-action a:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

#scr09 .change-group-action a:hover {
  opacity: 0.8; }

/* Remove all custom styling for scr10 */
