body {
  background-color: ghostwhite;
  font-family: Lato;
}

h3 {
  color: #1147cd;
  margin-top: 0;
}

h4 {
  color: #1147cd;
  font-weight: 300;
  margin-top: 0;
}

p {
  font-weight: 300;
}

button {
  height: 50px;
  background-color: dodgerblue;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 5px;
  border: none;
}

.back-btn {
  margin-bottom: 30px;
  border-radius: 50%;
  border: 2px solid ghostwhite;
  background-color: white;
  height: 40px;
  width: 40px;
}

.back-btn:hover {
  background-color: lightblue;
}

.back-btn:focus {
  outline: 0;
}

.back-btn .arrow-icon {
  width: 20px;
  margin-top: 3px;
}

label {
  font-size: 0.85rem;
  font-family: Lato;
  font-weight: 600;
  color: #1147cd;
}

input {
  display: block;
  height: 40px;
  border: 1px solid lightgray;
  border-radius: 0;
  margin: 10px 0 20px 0;
  padding: 0 15px;
  font-family: Lato;
  color: #1147cd;
  font-size: 1rem;
}

input:focus {
  outline: 0;
  border: 1.5px solid dodgerblue;
  border-radius: 0;
}

.divider {
  height: 100%;
  border-left: solid 0.5px whitesmoke;
}

.container {
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 100px auto;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 10px;
  height: 525px;
  max-width: 800px;
}

.description-section {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin: 30px;
}

.body-section {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin: 30px;
}

hgroup {
  line-height: 0.8rem;
  margin-bottom: 30px;
}

#event {
  font-weight: 700;
  color: #1147cd;
}

#scheduler,
#duration {
  font-weight: 400;
  color: darkgray;
}

#event-time-stamp {
  margin: 0;
  margin-left: 5px;
  font-weight: 400;
  color: mediumseagreen;
  line-height: 1.3;
}

.icon-text-div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 0.5rem;
}

.icon-text-div img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

.icon-text-div #duration {
  margin: 0;
}

@media (max-width: 1250px) {
  .container {
    display: block;
    height: 85vh;
    text-align: center;
    width: 645px;
    margin: 50px auto;
    overflow-y: scroll;
  }
  .description-section {
    padding-top: 30px;
    margin: 30px 100px;
  }
  .body-section {
    margin: 30px 50px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .icon-text-div {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .divider {
    height: auto;
    border-top: solid 0.5px whitesmoke;
  }
}

@media (max-width: 645px) {
  body {
    background-color: white;
  }
  .container {
    background-color: none;
    width: auto;
    margin: 50px 0;
    overflow: auto;
  }
  .description-section {
    padding: 0;
    margin: 30px 5%;
  }
  .body-section {
    padding: 0;
    margin: 30px 2%;
  }
}

.time-div-active {
  max-width: 900px;
}

#calendar-section #calendar {
  font-family: Lato;
  font-weight: 300;
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
}

#calendar-section table {
  border: none;
}

#calendar-section .fc-theme-standard td,
#calendar-section .fc-theme-standard th {
  border: none;
}

#calendar-section .fc-toolbar-title {
  font-size: 1rem;
  font-weight: 300;
}

#calendar-section .fc-today-button {
  display: none;
}

#calendar-section .fc-prev-button,
#calendar-section .fc-next-button {
  color: dodgerblue;
  background-color: white;
  border-color: white;
  outline: none;
}

#calendar-section .fc .fc-button-primary:focus {
  -webkit-box-shadow: 0;
  box-shadow: 0;
}

#calendar-section .fc-col-header-cell {
  font-weight: 300;
  font-size: 0.8rem;
}

#calendar-section .fc-daygrid-day {
  font-weight: 400;
  color: lightgray;
}

#calendar-section .fc-daygrid-day-events {
  margin: 0;
}

#calendar-section .fc-daygrid-day-number {
  margin: auto;
}
#calendar-section .fc-day-past {
  pointer-events: none;
  opacity: 0.8;
}
#calendar-section .fc-day-today {
  /* background-color: ghostwhite; */
}

#calendar-section .fc-day-disabled {
  background-color: white;
}

#schedule-div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#available-times-div {
  display: none;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  margin-left: 10px;
}

.time-slot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.time-btn {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border: 1px solid lightblue;
  color: dodgerblue;
  background-color: white;
  width: 100%;
  font-weight: 600;
  margin-bottom: 10px;
}

.time-btn:hover {
  border-width: 2px;
  border-color: dodgerblue;
}

.time-btn:focus {
  background-color: gray;
  font-weight: 500;
  color: white;
  outline: none;
  border: none;
}

.time-btn:focus:hover {
  border: none;
}

.confirm-btn {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 100%;
  margin-left: 5px;
}

.confirm-btn:hover {
  opacity: 0.5;
}

.confirm-btn:focus {
  outline: 0;
  opacity: 0.5;
}

@media (max-width: 1250px) {
  #calendar {
    max-width: 375px;
    margin: auto;
  }
}

@media (max-width: 645px) {
  #schedule-div {
    display: block;
  }
  #calendar {
    width: auto;
    margin-top: 20px;
  }
}
/*# sourceMappingURL=schedule.css.map */

div#available-times-div.avil-slots {
  display: block;
}

.has-available-times {
  position: relative;
}

.availability-dot {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background-color: green; /* Change color as needed */
  border-radius: 50%;
}

.ntb-container .icon-text-div svg path {
  stroke: #1a1a1a9c;
}
.ntb-container .icon-text-div svg {
  width: 20px;
  height: 20px;
}
.ntb-container .icon-text-div {
  gap: 10px;
  font-size: 14px;
}
.ntb-container p#description {
  text-align: left;
  font-family: "Poppins", Sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  padding: 0 30px;
  margin-bottom: 30px;
}
.ntb-container .icon-text-div {
  text-align: left;
  font-family: "Poppins", Sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 0 !important;
  padding: 0 30px;
}
.ntb-container h2#event {
  font-weight: 400;
  text-transform: uppercase;
  font-family: "Poppins";
  margin-top: 30px;
  margin-bottom: 20px;
  padding: 0 30px;
}
.ntb-container hgroup {
  margin-bottom: 0px;
}
.ntb-container .container {
  max-width: fit-content !important;
  box-shadow: 0 1px 8px 0 rgb(0 0 0 / 8%);
  height: auto;
}
.ntb-container .ntb-logo {
  border-bottom: 1px solid #1a1a1a1a;
}
.ntb-container section.description-section {
  margin: 0px;
  border-right: 1px solid #1a1a1a1a;
}
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

.ntb-container {
  /* max-width: 940px; */
  width: 100%;
}
.ntb-container #calendar-section > h3 {
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 20px;
  color: #1147cd;
  text-transform: uppercase;
  font-family: "Poppins";
  line-height: 1.5;
}
.ntb-container .fc-button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
}
.ntb-container .fc-prev-button.fc-button svg {
  width: 7px;
  height: 12px;
}
.ntb-container .fc-header-toolbar {
  font-weight: normal;
  font-size: 16px;
  font-family: "Poppins";
}
.ntb-container .fc-header-toolbar .fc-toolbar-title {
  font-size: 16px;
  font-family: "Poppins";
  font-weight: normal;
}
.ntb-container .fc-col-header-cell .fc-scrollgrid-sync-inner {
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  font-family: "Poppins";
  text-transform: uppercase;
}
.ntb-container .fc-col-header-cell .fc-scrollgrid-sync-inner a {
  text-decoration: none;
}
.ntb-container .fc-daygrid-day-frame {
  border-radius: 50px;
  overflow: hidden;
  max-width: 44px;
}
.ntb-container .fc-daygrid-day-number {
  position: relative;
  display: block;
  width: 44px;
  height: 44px;
  font-family: "Poppins";
  margin-right: auto;
  margin-left: auto;
  padding: 1px 0 0;
  border: 1px solid transparent;
  border-radius: 50%;
  color: var(--text-color-level2, rgba(26, 26, 26, 0.61));
  font-size: 16px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.ntb-container .fc-day-future .fc-daygrid-day-number,
.ntb-container .fc-day-today .fc-daygrid-day-number {
  background-color: var(--primary-color-level4, rgba(0, 105, 255, 0.065));
  color: #0060e6;
  font-weight: bold;
  cursor: pointer;
}
.ntb-container .avil-slots h4 {
  font-size: 16px !important;
  font-family: "Poppins";
  font-weight: normal !important;
  margin-bottom: 20px;
}
.ntb-container #calendar {
  min-width: calc(44px * 7);
}
.ntb-container .fc-daygrid-day-events {
  display: none;
}
.ntb-container div#available-times-div.avil-slots,
.ntb-container .time-slot {
  min-width: 220px;
}
.ntb-container .time-slot .time-btn:focus {
  color: #fff !important;
}
.ntb-container .time-slot .time-btn:hover {
  background-color: #fff !important;
  /* color: #fff; */
  color: #0060e6 !important;
  outline: 2px solid var(--primary-color-level2, rgba(0, 105, 255, 1));
  border: 1px solid var(--primary-color-level2, rgba(0, 105, 255, 1));
  outline-offset: -1px;
}
.ntb-container .time-slot .time-btn {
  padding: 13px 10px;
  font-family: "Poppins";
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--primary-color-level2, rgba(0, 105, 255, 0.5));
  color: var(--primary-color, rgb(0, 105, 255)) !important;
}

.ntb-container .time-slot .time-btn:focus,
.ntb-container .time-slot .confirm-btn {
  padding: 13px 10px;
  font-family: "Poppins";
  cursor: pointer;
  border-radius: 4px;
  font-weight: bold;
  height: 52px;
  background-color: var(--primary-color, rgb(0, 105, 255));
  border: 1px solid var(--primary-color-level2, rgba(0, 105, 255, 0.5));
  color: #fff;
}

.ntb-container .time-slot .time-btn::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #40d794;
  margin-right: 10px;
  display: flex;
}

.ntb-container div#available-times-div.avil-slots {
  max-height: 400px;
  overflow: hidden;
  overflow-y: auto;
}

.ntb-container .avil-slots h4 {
  position: sticky;
  top: 0;
  left: 0;
  background-color: #fff;
}
#appointment-form-section > h3 {
  text-transform: uppercase;
  font-family: "Poppins";
  margin-bottom: 20px;
  font-weight: 400;
  color: #1147cd;
  margin-top: 0px;
}

#appointment-form-section .ntb-form-column {
  width: 100%;
}
#appointment-form-section .ntb-form-column label {
  text-align: left;
  color: #2c3345ff;
  line-height: 24px;
  font-family: "Ubuntu";
  font-size: 16px;
  font-weight: 500;
}
#appointment-form-section .ntb-form-row {
  display: flex;
  gap: 15px;
}
#appointment-form-section .ntb-form-column input {
  width: 100%;
  font-family: Ubuntu;
}
#appointment-form-section button:hover {
  opacity: 0.8;
}
#appointment-form-section button {
  cursor: pointer;
  background-color: #ee4212ff;
  border: 0px none #ffffff;
  border-radius: 5px;
  padding: 9px 50px 9px 50px;
  white-space: normal;
  width: 100%;

  color: #fff;
  box-shadow: 0px 0px 0px 0px #ffffff;
  font-size: 15px;
  font-weight: 700;
  font-family: "Ubuntu";
  text-transform: uppercase;
}
#appointment-form-section .confirm-text {
  line-height: 1.25rem;
  word-break: break-word;
  font-size: 0.875rem;
  font-weight: 400;
  font-family: Ubuntu;
}

* {
  box-sizing: border-box;
}
#appointment-form-section .ntb-form-column input {
  margin-top: 0;
  margin-bottom: 0;
}
#appointment-form-section .ntb-form-row {
  margin-bottom: 16px;
}
#appointment-form-section .confirm-text a {
  color: #0060e6;
}
#appointment-form-section .ntb-form-column label {
  margin-bottom: 6px;
  display: block;
}

#available-times-div .error {
  border: 1px solid red;
  background-color: #f001;
  border-radius: 4px;
  padding: 6px 9px;
  font-size: 12px;
  font-family: Ubuntu;
  color: red;
  display: flex;
}
#appointment-form-section .success {
  border: 1px solid green;
  background-color: #00800020;
  border-radius: 4px;
  padding: 6px 9px;
  font-size: 16px;
  font-family: Ubuntu;
  color: green;
  display: flex;
}

.ntb-container .fc .fc-bg-event {
  position: absolute;
  width: 6px;
  height: 6px;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50px !important;
  background: #25e791 !important;
  opacity: 1;
}

.ntb-container .fc .fc-bg-event .fc-event-title {
  display: none;
}
/* .ntb-container .fc .fc-daygrid-body-natural {
  max-width: 308px !important;
  min-width: 308px !important;
} 
.ntb-container .fc .fc-scrollgrid-sync-table {
  max-width: 308px !important;
  min-width: 308px !important;
} */
.ntb-container #calendar-section #calendar {
  max-width: 368px !important;
  min-width: 368px !important;
}



#appointment-form-section .ntb-form-column input[type="radio"] {
    width: auto;
    vertical-align: middle;
    display: inline-block;
}
#appointment-form-section .ntb-form-column input[type="radio"] + label {
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 0;
    margin-right: 10px;
}


#promoForm.ntb-appointment-form {
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
#promoForm .ntb-form-row {
  text-align:left;
}
#promoForm .ntb-form-row label {
  font-family: var(--font-family);
  font-size: 14px !important;
  line-height: 20px !important;
  display: inline-block;
  margin-bottom: 5px;
}
#promoForm .ntb-form-row button {
  font-family: var(--font-family);
}
#promoForm .ntb-form-row select {
  width: 100%;
}


/*  */

.ntb-container .ntb-logo {
  border-bottom: 1px solid #1a1a1a1a;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px 20px;
}

.ntb-container .ntb-logo img {
  width: 100%;
  max-height: 120px !important;
  max-width: 220px;
}

.ntb-container .container {
  min-width: 800px !important;
}

#calendar-section h3 {
  margin-bottom: 20px !important;
  font-weight: bold !important;
  font-size: 20px !important;
  text-transform: unset !important;
}

#event{
  font-weight: bold !important;
    font-size: 28px !important;
    line-height: 32px !important;
  text-transform: unset !important;
}

#duration{
  font-size: 16px !important;
  color: #1a1a1a9c !important;
    font-weight: bold !important;
}

.ntb-container .icon-text-div {
  margin-bottom: 20px !important;
}

.ntb-container p#description{
  text-align: left;
  font-family: "Poppins", Sans-serif;
  font-size: 14px;
  line-height: 24px;
  margin: 0px !important;
  font-weight: bold;
}

section#calendar-section {
  flex: unset !important;
}


/*  */


@media (max-width: 767px) {
  .ntb-container .container {
    min-width: 100% !important;
  }
.ntb-container #calendar-section #calendar {
  max-width: 100% !important;
  min-width: 100% !important;
}
.body-section {
  padding: 0 10px;
}
.ntb-container .fc-daygrid-day-number {
  width: 35px;
  height: 35px;
  font-size: 14px;
}
}

.ntb-form-column label {
  color: #2c3345ff;
  line-height: normal;
  text-align: center;
}
.ntb-form-column {
  margin-bottom: 2px;
}
.ntb-form-column select option {
  line-height: 16px;
  font-size: 14px;
  padding: 7px 0;
}

#promoForm .ntb-form-column {
text-align: center;
}