@import url('https://fonts.googleapis.com/css2?family=Unica+One&display=swap');

.ctrl_appointments-heading {
    font-family: 'Unica One', cursive;
}

.case-block h2{
    font-size: 1.3rem;
}

.operating-unit-case-with-appointment {
    box-shadow: 0px 6px 14px -6px rgba(56, 61, 81, 0.12), 0px 10px 32px -4px rgba(56, 61, 81, 0.1);
    border: 1px solid rgba(0,0,0,.125);
    margin: 1rem 0;
}

.operating-unit-case-with-appointment .operating-unit-header{
    background: #383D51;
    line-height: 1.3rem;
    padding: 0.5rem 1rem;
    color: #FFFFFF;
}

.operating-unit-case-with-appointment .case-name{
    font-family: 'Unica One';
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
    margin: 0;
    color: #383D51;
    text-transform: uppercase;
}

.operating-unit-case-with-appointment .appointment{
    font-size: 1.15rem;
    padding: 0.5rem 1rem;
    margin: 0;
}

.primary-action-button {
    font-weight: normal;
    font-size: 1.25rem;
    line-height: 1.5rem;
    text-align: center;
    border-radius: 0;
    box-shadow: 0px 0.5rem 1rem rgba(0, 0, 0, 0.15);
    color: #fff;
    font-weight: 600;
    background: #8A2866;
    border-color: #8A2866;
    padding: 0.5rem 1.5rem;
}

.primary-action-button:hover,
.primary-action-button:focus {
    background: #9C4E80;
    color: #fff;
    border-color: #8A2866;
}



/* Home.php section --------->*/

#home-title,
.home .badge {
  font-family: 'Unica One';
  font-size: 1rem;
}

.home .case-block {
  box-shadow: -4px -5px 22px -8px rgba(0, 0, 0, 0.29);
}

.home .choose-btn {
  color: #8A2866;
  border: 1px solid;
  transition: all 0.2s ease-in-out;
}



.home .choose-btn:hover {
  background-color: #621c49;
  color: white;
  transform: scale(1.01);
}

/* Appointments Section --->*/

.appointments-container #appointments-title {
  font-family: 'Unica One';
}

#appointments-header-container {
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
}

#appointments-header {
  background-color: #383D51;
}

.appointments-container .dates-btn {
  color: #383D51;
  font-weight: bolder;
  font-size: 1rem;
  text-decoration: underline !important;
}


@media (min-width: 768px) {
  .appointments-container .date-times .dates-btn {
    text-align: center;
    padding: 1rem;
  }
}

.date-time-btn-container {
  min-height: 150px;
}

.appointments-container .date-times-btn {
  background-color: white;
  transition: all 0.2s ease-in-out;
}

.date-time-btn-header {
  text-align: left !important;
}



.date-time-list-container .date-title,
.date-time-list-container .date-range {
  font-family: 'Unica One';
}

.appointment-btn {
  background-color: #621c49;
  font-size: 1.2rem;
}

.appointment-btn:hover {
  background-color: #902b6d;

}



/* Base Styles ----------->*/

.operation-unit {
  font-size: 1rem !important;
}

.btn {
  border-radius: 0 !important;
}

input,
select,
textarea {
  border-radius: 0px !important;
  padding: .3rem
}


input, select, textarea {
  border: 2px solid !important;
}

input:focus {
  outline-offset: 3px;
  outline: 2px solid;
  box-shadow: none !important;
}
select:focus {
  outline-offset: 3px;
  outline: 2px solid;
  box-shadow: none !important;
}

textarea:focus {
  outline-offset: 3px;
  outline: 2px solid !important;
  box-shadow: none !important;
}

.counter-container {
  position: relative;
  margin-top: 7px;
}




.color-pr {
  background-color: #621c49
}



.color-sc {
  background-color: #383D51;
}


.color-tr {
  background-color: rgb(136, 68, 136);
}


i {
  font-size: 1.3rem;
  margin-right: 5px;
}

.full-rounded {
  border-radius: 100%;
}


/*Header section */

#header-container {
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}


/*Form section ----------->*/

.form-header {
  box-shadow: -4px 0px 30px -10px rgba(0, 0, 0, 0.29);
}

.form-header-title {
  background-color: #383D51;
}

.form-title {
  font-family: 'Unica One';
}

#send-form-btn {
  background-color: rgb(136, 68, 136);
  padding: .8rem;
}

#send-form-btn:hover {
  background-color: rgb(176, 90, 176);

}


/* Home Section*/



#home-header {
  background-color: rgb(139, 190, 159);
  color: rgb(56, 61, 81);
}

.case-block-header {
  background-color: #383D51;
}




/*-----> STATE  SECTION -------------------------------> */

.state-container {
  animation: fadeInStateContainer;
  animation-fill-mode: forwards;
  animation-duration: .7s;
  position: relative;
}

.state-container h1 {
  font-family: 'Unica One';
}

@media(min-width: 768px) {
  .state-container {
    width: 65%;
    margin: 0 auto;
  }
}

@media(min-width: 1023px) {
  .state-container {
    width: 55%;
    margin: 0 auto;
  }
}



.status-icon {
  animation: fadeIn;
  animation-fill-mode: forwards;
  animation-duration: .7s;
  animation-delay: .5s;
  position: relative;
  opacity: 0;
  transform: scale(0);
  bottom: -100px;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0);
    bottom: -100px;
  }

  100% {
    opacity: 1;
    transform: scale(1);
    bottom: 0;
  }
}

@keyframes fadeInStateContainer {
  0% {
    opacity: 0;
    transform: scale(0);
    bottom: -100px;
  }

  100% {
    opacity: 1;
    transform: scale(1);
    bottom: 0;
  }
}


/*----------------------- SURVEY SECTION ----------------------->*/

#survey {
  box-shadow: -4px 0px 30px -10px rgba(0, 0, 0, 0.29);
}

.unica {
  font-family: 'Unica One';
}

@media(max-width: 1800px) {
  .emoji-radio {
    margin-right: .5rem !important;
  }

  .emoji-btn-content {
    position: relative;
    top: 2px;
  }
}

@media(min-width: 1200px) {
  .emoji-form-check {
    margin-right: 2rem !important;
  }
}

.emoji-btn-content {
  position: relative;
  bottom: 15px;
}



/* MODIFY RESERVATION SECTION */

.modify-reservation-header {
  background-color: #383D51;
}

.modify-reservation-header span {
  font-size: .8rem;
}