.duration { 
  display: flex;
  font-weight: 400;
}

.schedule .duration {
  margin-top: initial;
  margin-bottom: initial; 
}

.resource-person {
  font-weight: 600;
  margin-bottom: 5px;
}

.duration, .duration-time, .meeting-details,
.timezone-details {
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 1.2em;
    font-weight: 400;
    color: #616161;
	font-size: 16px;
}

.duration i, .duration-time i {
  font-size: 20px;
}

.meeting-details svg, .timezone-details svg {
  height: 20px;
}

#booking-description a {
  color: #0085ff;
}

#booking-description p {
   margin: 10px 0 !important;
}

#booking-description ul {
  margin: 0;
  padding-left: 1.2em; 
  list-style-position: outside; 
}

.booking [class^="step"] {
  display: none;
}

.booking > p {
    font-family: Lato, sans-serif;
    font-size: 18px;
    font-weight: 400;  
    color: var(--e-global-color-text);
}

.booking [class^="step"].show {
  display: block;
}

.booking h2 {
  font-family: "Bebas Neue", Sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 25px;
}

.booking h2::after {
 content: "";
 display: block;
 height: 4px;
 width: 100px;
 background: #0085ff;
}

.booking .action {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-direction: column-reverse;
    max-width: 400px;
}

.booking .action [type="button"] {
    font-family: "Bebas Neue", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    text-transform: initial;
    cursor: pointer;
    transition: background 0.3s ease;
}

.booking .action .btn-reschedule {
    background: var(--e-global-color-accent);
    border: none;
    color: #fff;
}

.booking .action .btn-cancel:hover {
    background: rgb(240 240 240 / 0%);
}

.booking .action .btn-reschedule:hover {
    background: var(--e-global-color-db2c88f);
}

.booking .cancel-wrap,
.booking .cancel-wrap * {
    font-family: 'Lato';
    font-size: 18px;
}

.booking .action .btn-cancel {
    display: inline;
    padding: 0;
    background: none;
    border: none;
    text-transform: initial;
    color: var(--e-global-color-accent);
    font-weight: 400;
    cursor: pointer;
}

.booking .booking .step0 {
    font-weight: 400;
    color: #616161;
}

.booking .step0 .name {
    font-weight: 600;
}

.booking .step0 .status {
    margin-top: 20px !important;
    color: #187e1c;
    font-size: 16px !important;
    font-weight: 400;    
}

.booking .hours {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.booking .hours:has(.no-sched) {
  grid-template-columns: 1fr;  
}

.booking .hours span {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  padding: 3px 10px;
  color: #0085ff;
  border: 1px solid #0085ff;
  border-radius: 5px;
  cursor: pointer;
  display: block;
}

.booking .hours > p.no-sched:first-of-type {
    margin-top: -15px !important;
}

.booking .time-next {
  display: grid;
  gap: 5px;
  grid-template-columns: 1fr;
}

.booking .time-next:has(:nth-child(2)) {
  grid-template-columns: repeat(2, 1fr);
}

.booking .time-next button {
  font-size: 16px !important;
  font-weight: 400 !important;
  background: #0085ff;
  padding: 0;
  color: #fff;
  border: none;
  font-family: Lato;
  font-size: 18px;
  font-weight: 300;
  text-transform: initial;
  border-radius: 5px;
  cursor: pointer;
}

.booking .date,
.booking .title {
  position: relative;
  text-align: center;
}

.booking.mobile .date {
  margin-bottom: 25px;
}

.booking .title {
  margin-bottom: 0;
}


.booking .back {
  position: absolute;
  left: 0;
  cursor: pointer;
  top: -25px;
}

.booking .date h3,
.booking .title h3 {
  font-family: "Bebas Neue", Sans-serif;
  font-size: 30px;
  font-weight: 400;
}

.booking .step1 .timezone,
.booking .step2 .timezone {
  margin: 15px 0 10px;
  font-size: 16px;
}

.booking .step1 #timezone-selector,
.booking .step2 #timezone-selector {
  outline: none;
  border: none;
}

.booking .step2 .date span {
  font-family: Lato;
  font-size: 16px;
  font-weight: 400;
  display: block;
}

.booking .step2 .date span:nth-of-type(2) {
  display: none;
}

.booking .schedule {
  font-family: Lato;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;  
  margin-top: 10px;
  margin-bottom: 30px;  
  display: none;
}

.booking .status {
  display: flex;
}

.booking .status.hide {
  display: none;
}

.booking .status.spinner::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 5px solid rgba(0, 0, 0, 0.1);
  border-top: 5px solid black;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-right: 5px;
}

.booking .form-details form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.booking .form-details form > * {
  grid-column: span 2;
  font-family: var(--e-global-typography-text-font-family), Sans-serif;
  line-height: 1.2;
}

.booking .form-details input,
.booking .form-details textarea {
  font-size: 16px;
  line-height: 30px;
  padding-left: 10px;
  padding-right: 10px;
  border: 1px solid #00000021;
  font-weight: 400;
}

.booking .form-details input[name="FirstName"],
.booking .form-details input[name="LastName"] {
  grid-column: span 1;
  width: 100%;
}

.booking .form-details textarea {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 1.2;
  height: 80px;
}

.booking .form-details input[type="submit"] {
  background: var(--e-global-color-accent);
  color: #fff;
  font-family: "Bebas Neue", Sans-serif;
  font-size: 18px;  
  font-weight: 400;  
  line-height: 1;
  text-transform:initial;
  cursor: pointer;
  transition: background 0.3s ease;
}

.booking .form-details input[type="submit"]:hover {
  background: var(--e-global-color-db2c88f);
}

.booking .form-details form > div > label {
  font-size: 16px;
  font-weight: 600;
  display: block;
  line-height: 1.5;
}

.booking .form-details form > div > label > span {
  font-weight: 300;
}

.booking .form-details form input.other {
  line-height: 1.5;
}

.booking .form-details form > p,
.booking .form-details form > .accept {
  font-size: 16px !important;
}

.booking .form-details form > p > a,
.booking .form-details form > .accept a {
    text-decoration: underline !important;
	text-underline-offset: 2px;
}

.booking .form-details .radio-input {
	font-size: 16px;
	font-weight: 300;
}

.booking .form-details .status {
  font-size: 16px !important;
  font-weight: 400;
  align-items: center;
}

.booking .form-details .status.spinner {
  color: #187e1c;
}

.booking .form-details .status.error {
  color: var(--e-global-color-accent);
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media (max-width: 767px) {
  .booking .action input {
    flex: 1;
      padding15px 95px 15px 95px: ;
      padding: 15px 0 15px 0;
  }
}

@media (min-width: 768px) {
  .booking h2 {
    font-size: 45px;
	margin-bottom: 30px;
  }
  
  .booking .step2 h2 {
    margin-top: 30px;
	margin-bottom: 20px;
    font-size: 24px;
  }
  
  .booking .step2 h2::after {
    display: none;
  }
  
  .booking .hours {
    grid-template-columns: repeat(4, 1fr);
  }  
}