.modal-date-calendar-success{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  /* Fondo semi-transparente */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  /* Asegura que el modal esté por encima de otros elementos */
}

.modal-date-calendar-success .form{
  width: 90%;
  height: fit-content;
  max-width: 700px;
  display: flex;
  border-radius: 0;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  gap: 1rem;
  position: relative;
  background-color: white;
}

.modal-date-calendar-success .form span{
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: #086AA2;
  font-size: 16px;
  cursor: pointer;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-weight: 700;
  height: 53px;
}
.modal-date-calendar-success .form .info{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin:4rem 0;
}

.modal-date-calendar-success .form .info h2{
  color: #086AA2;
  text-transform: uppercase;
  font-weight: 900;
  margin: 1rem 0 0 0;
  font-size: 36px;
}

.modal-date-calendar-success .form .info p{
  font-weight: 300;
  font-size: 12px;
}

.modal-date-calendar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  background-color: rgba(0, 0, 0, 0.631);
  /* Fondo semi-transparente */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  /* Asegura que el modal esté por encima de otros elementos */
}

.modal-date-calendar form {
  width: 90%;
  height: fit-content;
  border-radius: 20px;
  max-width: 1000px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: white;
}

.modal-date-calendar form .header-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.modal-date-calendar form .header-form legend {
  color: #086AA2;
  font-size: 36px;
  font-weight: 900;
}

.modal-date-calendar form .header-form span {
  font-size: 30px;
  cursor: pointer;
  color: #086AA2;
}

.modal-date-calendar form .camp-calendar {
  display: flex;
  flex-direction: column;
  gap: .1rem;
  width: 100%;
}

.modal-date-calendar form .camp-calendar label {
  color: #086AA2;
  font-size: 20px;
  font-weight: 700;
}

.modal-date-calendar form .camp-calendar input {
  height: 46px;
  width: 100%;
  padding: 0 1rem;
  border-radius: 8px;
  border: 1px solid #D9D9D9;
  font-size: 12px;
  font-weight: 300;
}

.modal-date-calendar form .camp-double-calendar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.modal-date-calendar form .camp-double-calendar div {
  display: flex;
  flex-direction: column;
  gap: .1rem;
  width: 49%;
}

.modal-date-calendar form .camp-double-calendar div label {
  color: #086AA2;
  font-size: 20px;
  font-weight: 700;
}

.modal-date-calendar form .camp-double-calendar div p{
  font-size: 8px;
  font-weight: 300;
}

.modal-date-calendar form .camp-double-calendar div input {
  height: 46px;
  width: 100%;
  padding: 0 1rem;
  border-radius: 8px;
  border: 1px solid #D9D9D9;
  font-size: 12px;
  font-weight: 300;
}

.modal-date-calendar form button{
  color: white;
  background-color: #086AA2;
  border-radius: 8px;
  text-align: center;
  height: 46px;
  border: none;
  font-size: 20px;
  font-weight: 700;
}

.content-specialist-new {
  max-width: 1220px;
  width: 90%;
  margin: 3rem auto;
  display: flex;
  justify-content: space-between;
}

.content-specialist-new article {
  width: 65%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}


.content-specialist-new article .profile-doc {
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background-color: #FCFCFC;
}

.content-specialist-new article .profile-doc .content-info {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  gap: 1rem;
}

.content-specialist-new article .profile-doc .content-info .content-img {
  width: fit-content;
  border-radius: 5px;
}

.content-specialist-new article .profile-doc .content-info .content-img img {
  width: 100%;
  border-radius: 5px;
  height: 100%;
  max-height: 250px;
  object-fit: cover;
  object-position: top;
}

.content-specialist-new article .profile-doc .content-info .info {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}

.content-specialist-new article .profile-doc .content-info .info .content-btns {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.content-specialist-new article .profile-doc .content-info .info .content-btns img {
  width: 22px;
  height: 22px;
}

.content-specialist-new article .profile-doc .content-info .info h2 {
  color: #086AA2;
  font-size: 24px;
  font-weight: 900;
  margin: 0;
  text-transform: uppercase;
}

.content-specialist-new article .profile-doc .content-info .info button {
  border: none;
  border-radius: 8px;
  padding: .5rem;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: .5 ease;
}

.content-specialist-new article .profile-doc .content-info .info button:hover {
  text-decoration: underline;
}

.content-specialist-new article .profile-doc .content-info .info .agendar {
  background-color: #086AA2;
  color: white;
}

.content-specialist-new article .profile-doc .content-info .info .messages {
  color: #086AA2;
  border: 1px solid #D9D9D9;
  background-color: white;
}


.content-specialist-new article .profile-doc .content-info .info .especialty {
  font-size: 12px;
  text-transform: capitalize;
  max-height: 17px;
  margin: 0;
  overflow: hidden;
}

.content-specialist-new article .profile-doc .content-info .info p img {
  height: 20px;
  width: 20px;
}

.content-specialist-new article .profile-doc .menu {
  width: 100%;
  padding: 1rem .5rem .5rem 0;
  border-top: solid 1px #086AA2;
}

.content-specialist-new article .profile-doc .menu ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  padding: 0 1rem;
  align-items: center;
}

.content-specialist-new article .profile-doc .menu ul li {
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  transition: .5s ease;
}

.content-specialist-new article .profile-doc .menu ul li:hover {
  text-decoration: underline;
  font-weight: 600;
}

.content-specialist-new article .content-consultories {
  width: 100%;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background-color: #FCFCFC;
}

.content-specialist-new article .content-consultories h2 {
  background-color: #086AA2;
  margin: 0;
  padding: .5rem 1.5rem;
  color: white;
  font-size: 24px;
  font-weight: 900;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  text-transform: uppercase;
}

.content-specialist-new article .content-consultories .c-btns {
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  gap: 1rem;
}

.content-specialist-new article .content-consultories .c-btns button {
  border-radius: 8px;
  border: 1px solid #D9D9D9;
  cursor: pointer;
  font-size: 12px;
  display: flex;
  gap: 8px;
  align-items: center;
  font-weight: 700;
  padding: .4rem;
}

.content-specialist-new article .content-consultories .c-btns button img {
  width: 20px;
  height: 20px;
}

.content-specialist-new article .content-consultories .c-btns .online {
  color: white;
  background-color: #086AA2;
}

.content-specialist-new article .content-consultories .c-btns .map {
  color: #086AA2;
  background-color: white;
}

.content-specialist-new article .content-consultories .info {
  padding: 0 1.5rem 2rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.content-specialist-new article .content-consultories .info span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.content-specialist-new article .content-procedures {
  width: 100%;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background-color: #FCFCFC;
}

.content-specialist-new article .content-procedures h2 {
  background-color: #086AA2;
  margin: 0;
  padding: .5rem 1.5rem;
  color: white;
  font-size: 24px;
  font-weight: 900;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  text-transform: uppercase;
}

.content-specialist-new article .content-procedures #list-specialtist {
  display: flex;
  justify-content: space-between;
  gap: .6rem;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 1.5rem 1rem;
}

.content-specialist-new article .content-procedures #list-specialtist li {
  font-size: 12px;
  width: 31%;
  align-items: center;
  display: flex;
  text-transform: capitalize;
  gap: 8px;
  min-width: 150px;
}

.content-specialist-new article .content-procedures #list-specialtist li img {
  width: 13px;
  height: 13px;
}

.content-specialist-new article .content-procedures #list-specialtist li .negative {
  width: 25px;
  height: 25px;
}


.content-specialist-new article .about-me {
  width: 100%;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: #FCFCFC;
}

.content-specialist-new article .about-me h2 {
  background-color: #086AA2;
  margin: 0;
  padding: .5rem 1.5rem;
  color: white;
  font-size: 24px;
  font-weight: 900;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  text-transform: uppercase;
}

.content-specialist-new article .about-me #description {
  padding: .8rem;
  font-size: 12px;
}

.content-specialist-new article .about-me span {
  font-size: 12px;
  display: flex;
  margin: 1rem auto;
  align-items: center;
  font-weight: 300;
  gap: 8px;
}


.content-specialist-new article .about-me .especial-info {
  margin: 0rem .8rem 0;
  padding-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.content-specialist-new article .about-me .especial-info h3 {
  font-size: 20px;
  font-weight: 700;
  color: #086AA2;
}

.content-specialist-new article .about-me .especial-info p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.content-specialist-new article .about-me .especial-info p img {
  width: 25px;
  height: 25px;
}


.content-specialist-new .contenedor-aside{
  width: 33%;
  height: fit-content;
}

.content-specialist-new .contenedor-aside .max-container{
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
}
.content-specialist-new aside {
  
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: #FCFCFC;
  height: fit-content;
}


.content-specialist-new aside h2 {
  background-color: #086AA2;
  margin: 0;
  padding: .5rem .8rem;
  color: white;
  font-size: 24px;
  font-weight: 900;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  text-transform: uppercase;
}

.content-specialist-new aside .menu {
  padding: .4rem .8rem 0 .8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: #086AA2 solid 1px;
}

.content-specialist-new aside .menu span {
  font-size: 12px;
  display: flex;
  padding-bottom: .4rem;
  align-items: center;
  cursor: pointer;
  gap: 3px;
  transition: all .2s ease;
}

.content-specialist-new aside .menu img {
  width: 15px;
  height: 15px;
}


.content-specialist-new aside .motived {
  padding: .8rem;
  border-bottom: 1px solid #D9D9D9;
}

.content-specialist-new aside .motived label {
  color: #086AA2;
  font-size: 12px;
  font-weight: 700;
}

.content-specialist-new aside .motived .content-select {
  width: 100%;
  position: relative;
}

.content-specialist-new aside .motived .content-select select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: inline-block;
  width: 100%;
  cursor: pointer;
  padding: 7px 10px;
  height: 35px;
  outline: 0;
  border: none;
  border-radius: 5px;
  background: #F4F4F4;
  font-size: 12px;
  position: relative;
  transition: all 0.25s ease;
}

/* .content-specialist-new aside .motived.content-select select:hover {
  background: #0869a25a;
} */

.content-specialist-new aside .motived .content-select img {
  position: absolute;
  right: 20px;
  top: calc(50% - 8px);
  width: 13px;
  height: 13px;
}

.content-specialist-new aside .motived .content-select:hover img {
  margin-top: 3px;
}


.content-specialist-new aside .motived-visit {
  padding: .8rem;
  border-bottom: 1px solid #D9D9D9;
}

.content-specialist-new aside .motived-visit label {
  color: #086AA2;
  font-size: 12px;
  font-weight: 700;
}

.content-specialist-new aside .motived-visit .content-arr-weeks {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px;
}

.content-specialist-new aside .motived-visit .content-arr-weeks .left {
  transform: rotate(90deg);
}

.content-specialist-new aside .motived-visit .content-arr-weeks .right {
  transform: rotate(-90deg);
}



.content-specialist-new aside .motived-visit .content-week-days {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  transition: all .5s ease;
  width: 90%;
}

.content-specialist-new aside .motived-visit .content-week-days .day {
  width: 16%;
  min-width: fit-content;
}

.content-specialist-new aside .motived-visit .content-week-days .day h3 {
  font-size: 12px;
  color: #086aa2;
  font-weight: 700;
  width: 100%;
  margin: 0;
  overflow: hidden;
}

.content-specialist-new aside .motived-visit .content-week-days .day p {
  font-size: 9px;
  text-wrap: nowrap;
  overflow: hidden;
}

.content-specialist-new aside .motived-visit .content-week-days .day ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
}

.content-specialist-new aside .motived-visit .content-week-days .day ul li {
  padding: .1rem .3rem;
  border-radius: 5px;
  background-color: #ededed;
  text-align: center;
  font-size: 12px;
  transition: 0.5s ease;
}

.content-specialist-new aside .motived-visit .content-week-days .day ul li:hover {
  background-color: #cfcfcf;
  cursor: pointer;
}

.content-specialist-new aside .motived-visit .content-scroll {
  width: 100%;
  transition: all 2s ease;
  overflow: hidden;
  height: 190px;
}

.content-specialist-new aside .more-hours {
  padding: .4rem .4rem .8rem .4rem;
  text-align: center;
}

.content-specialist-new aside .more-hours span {
  font-size: 12px;
  cursor: pointer;
  transition: all 1s ease;
}

@media screen and (max-width:950px) {
  .content-specialist-new {
    flex-direction: column;
    gap: 2rem;
  }

  .content-specialist-new article {
    width: 100%;
  }

  .content-specialist-new .contenedor-aside{
    width: 100%;
  }
  .content-specialist-new aside {
    width: 100%;
  }
}

@media screen and (max-width:700px){
  .modal-date-calendar form .header-form legend {
    font-size: 20px;
  }
  
  .modal-date-calendar form .header-form span {
    font-size: 25px;
    cursor: pointer;
    color: #086AA2;
  }
  
  .modal-date-calendar form .camp-calendar label {
    color: #086AA2;
    font-size: 16px;
    font-weight: 700;
  }
  
  .modal-date-calendar form .camp-calendar input {
    height: 36px;
  }
  
  .modal-date-calendar form .camp-double-calendar {
    flex-direction: column;
  }
  
  .modal-date-calendar form .camp-double-calendar div {
    display: flex;
    flex-direction: column;
    gap: .1rem;
    width: 100%;
  }
  
  .modal-date-calendar form .camp-double-calendar div label {
    font-size: 16px;
  }
  
  .modal-date-calendar form .camp-double-calendar div input {
    height: 36px;
  }
  
}

@media screen and (max-width:610px) {
  .content-specialist-new article .profile-doc .content-info .info button {
    font-size: 13px;
  }

  .content-specialist-new article .profile-doc .content-info .info img {
    width: 20px;
  }

  .content-specialist-new article .profile-doc .content-info {
    flex-direction: column;
    gap: 1rem;
  }

  .content-specialist-new article .profile-doc .content-info .content-img {
    margin: 0 auto;
    width: 50%;
  }

  .content-specialist-new article .profile-doc .content-info .info {
    width: 100%;
  }

  .content-specialist-new article .profile-doc .content-info h2 {
    text-align: center;
  }

  .content-specialist-new article .profile-doc .menu ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .content-specialist-new article .profile-doc .menu ul li {
    font-size: 14px;
    display: flex;
    align-items: center;
  }
}


/* ESTILOS DEL DISEÑO VIEJO */

.banner-especialistas {
  background-image: url("../img/bannerDoc.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 80vh;
}

.content-info-main {
  width: 90%;
  max-width: 1220px;
  margin: -10rem auto 2rem auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.content-info-main img {
  width: 30%;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
  -webkit-box-shadow: 0px 0px 8px -7px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 8px -7px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 8px -7px rgba(0, 0, 0, 0.75);
}

.content-info-main .info-main {
  width: 68%;
  display: flex;
  margin-top: 10rem;
  flex-direction: column;
  gap: 1rem;
}

.content-select .content-info-main .info-main .content-btn {
  display: flex;
  gap: 6px;
  align-items: center;
  width: 100%;
}

.content-info-main .info-main .title {
  display: flex;
  flex-direction: column;
}

.content-info-main .info-main .title h2 {
  color: #086aa2;
  font-weight: 800;
  font-size: 40px;
  margin-bottom: 0;
}

.content-info-main .info-main .title p {
  color: #086aa2;
  font-size: 20px;
  font-weight: 300;
  height: 60px;
  overflow: scroll;
  text-transform: capitalize;
}

.content-info-main .info-main .content-btn button {
  width: max-content;
  border-radius: 8px;
  padding: 0.8rem 1rem;
  background-color: #086aa2;
  color: white;
  font-size: 16px;
  text-transform: capitalize;
  border: none;
  font-weight: 700;
  cursor: pointer;
}

.content-sedes {
  width: 90%;
  max-width: 1220px;
  margin: 4rem auto;
  display: flex;
  justify-content: space-between;
}

.content-sedes .info-doc ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0;
}

.content-sedes .info-doc ul li {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  max-width: 300px;
  overflow: hidden;
}

.content-sedes .info-doc ul li img {
  width: 20px;
}

.content-sedes .info-doc ul li #sedes {
  color: black;
}

.content-sedes .info-doc ul li span {
  color: #086aa2;
  cursor: pointer;
}

.content-sedes .calification {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.content-sedes .calification img {
  width: 20px;
}

.content-sedes .calification .score {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.content-sedes .calification .score span {
  padding: 0.4rem;
  border-radius: 5px;
  color: white;
  font-size: 25px;
  font-weight: 700;
  background-color: #4ca391;
}

.content-sedes .calification .score p {
  margin: 0;
}

.content-sedes .calification .score .letter-color {
  color: #4ca391;
  font-weight: 600;
}

.content-sedes .calification .score .text-content {
  display: flex;
  flex-direction: column;
}

.content-description-doctor-main {
  display: flex;
  justify-content: space-between;
  width: 90%;
  max-width: 1220px;
  margin: 3rem auto;
}

.content-description-doctor-main h3 {
  font-size: 20px;
  font-weight: 700;
  color: #086aa2;
}

.content-description-doctor-main p {
  font-size: 12px;
  text-align: justify;
}

.content-description-doctor-main .description-doctor {
  width: 48%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
}

.content-description-doctor-main .procedures-doctor {
  width: 48%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
}

.content-description-doctor-main button {
  width: 100%;
  padding: 0.5rem;
  background-color: #086aa2;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
}

.content-description-doctor-main .procedures-doctor ul {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
}

.content-description-doctor-main .procedures-doctor ul li {
  font-size: 12px;
  width: 48%;
  align-items: center;
  gap: 5px;
  text-wrap: nowrap;
}

.pedir-cita {
  width: 90%;
  margin: 4rem auto;
  display: flex;
  max-width: 1220px;
  flex-direction: column;
  gap: 0.5rem;
}

.pedir-cita h3 {
  font-size: 20px;
  color: #086aa2;
  font-weight: 700;
}

.pedir-cita p {
  font-size: 12px;
}

.last-info {
  background-color: #ededed;
  width: 100%;
  padding: 3rem;
  max-width: 1220px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  margin: 4rem auto;
}

.last-info p {
  font-size: 12px;
  text-align: center;
}

.last-info button {
  padding: 0.5rem 5rem;
  background-color: #086aa2;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
  width: fit-content;
}

.select-calendar-citas {
  width: 90%;
  max-width: 1220px;
  margin: 4rem auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.select-calendar-citas .title {
  width: fit-content;
}

.select-calendar-citas .title h2 {
  font-size: 20px;
  color: #086aa2;
  font-weight: 700;
  width: 100%;
}

.select-calendar-citas .content-select-clinic {
  width: 33%;
}

.select-calendar-citas select {
  border-radius: 5px;
  padding: 1rem;
  border: solid 1px #d9d9d9;
  width: 100%;
}

.content-select {
  width: 100%;
  position: relative;
}

.content-select select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: inline-block;
  width: 100%;
  cursor: pointer;
  padding: 7px 10px;
  height: 42px;
  outline: 0;
  border: 0;
  border-radius: 0;
  background: white;
  color: #7b7b7b;
  font-size: 1em;
  border: 1px solid rgb(172, 172, 172);
  border-radius: 5px;
  position: relative;
  transition: all 0.25s ease;
}

.content-select select:hover {
  background: #0869a25a;
}

/* 
Creamos la fecha que aparece a la izquierda del select.
Realmente este elemento es un cuadrado que sólo tienen
dos bordes con color y que giramos con transform: rotate(-45deg);
*/
.content-select i {
  position: absolute;
  right: 20px;
  top: calc(50% - 13px);
  width: 16px;
  height: 16px;
  display: block;
  border-left: 4px solid #086aa2;
  border-bottom: 4px solid #086aa2;
  transform: rotate(-45deg);
  /* Giramos el cuadrado */
  transition: all 0.25s ease;
}

.content-select:hover i {
  margin-top: 3px;
}

.select-calendar-citas button {
  width: 33%;
  padding: 0.5rem;
  background-color: #086aa2;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
}

.calendar-clinics {
  max-width: 1220px;
  width: 90%;
  margin: 4rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.calendar-clinics button {
  max-width: 400px;
  width: 100%;
  padding: 0.5rem;
  background-color: #086aa2;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
}

.calendar-clinics .content-week-days {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.calendar-clinics .content-week-days .day {
  width: 16%;
}

.calendar-clinics .content-week-days .day h3 {
  font-size: 20px;
  color: #086aa2;
  font-weight: 700;
  width: 100%;
  margin: 0;
}

.calendar-clinics .content-week-days .day p {
  font-size: 12px;
}

.calendar-clinics .content-week-days .day ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
}

.calendar-clinics .content-week-days .day ul li {
  padding: 1rem;
  border-radius: 5px;
  background-color: #ededed;
  text-align: center;
  font-size: 12px;
  transition: 0.5s ease;
}

.calendar-clinics .content-week-days .day ul li:hover {
  background-color: #cfcfcf;
  cursor: pointer;
}

.calendar-clinics .content-scroll {
  width: 100%;
  overflow: scroll;
}

.form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid #d9d9d9;
  background-color: white;
  border-radius: 6px;
  padding: 1rem;
  z-index: 999;
}

.form legend {
  color: #086aa2;
  font-size: 20px;
  font-weight: 900;
  text-align: center;
}

.form .warning {
  width: 100%;
  padding: 0.5rem;
  background-color: rgb(147, 20, 20);
  border-radius: 5px;
  position: absolute;
  opacity: 0;
  transition: 0.5s ease;
}

.form .warning p {
  font-size: 12px;
  font-weight: 600;
  color: white;
  text-align: center;
}

.form .content-body-form {
  display: flex;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-height: 441px;
  overflow: scroll;
}

.form .camp {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.form label {
  font-size: 12px;
  color: #515151;
  font-weight: 600;
}

.form .camp label {
  margin: 0;
  font-size: 12px;
}

.form .camp input {
  border: 1px #d9d9d9 solid;
  border-radius: 6px;
  padding: 0.3rem;
  font-size: 12px;
}

.form .camp-tel {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.form .camp-tel .content-select {
  width: 30%;
  position: relative;
}

.form .camp-tel .content-select select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: inline-block;
  width: 100%;
  cursor: pointer;
  padding: 7px 10px;
  outline: 0;
  border: 0;
  font-weight: 600;
  border: 1px #d9d9d9 solid;
  border-radius: 0;
  background: white;
  color: #086aa2;
  font-size: 11px;
  border-radius: 6px;
  position: relative;
  transition: all 0.25s ease;
}

.form .camp-tel .content-select select:hover {
  background: #146492;
  color: white;
}

/* 
Creamos la fecha que aparece a la izquierda del select.
Realmente este elemento es un cuadrado que sólo tienen
dos bordes con color y que giramos con transform: rotate(-45deg);
*/
.form .camp-tel .content-select i {
  position: absolute;
  right: 11px;
  top: calc(50% - 4px);
  width: 5px;
  height: 5px;
  display: block;
  border-left: 2px solid #086aa2;
  border-bottom: 2px solid #086aa2;
  transform: rotate(-45deg);
  /* Giramos el cuadrado */
  transition: all 0.25s ease;
}

.form .camp-tel .content-select:hover i {
  border-left: 2px solid #ffffff !important;
  border-bottom: 2px solid #ffffff !important;
}

.form .camp-tel .content-select:hover i {
  margin-top: 3px;
}

.form .camp-tel .tel {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  width: 68%;
}

.form .camp-tel .tel label {
  margin: 0;
  font-size: 12px;
}

.form .camp-tel .tel input {
  border: 1px #d9d9d9 solid;
  border-radius: 6px;
  padding: 0.3rem;
  font-size: 12px;
}

.form .camp-input {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.form .camp-input select {
  border-radius: 6px;
  padding: 0.3rem;
  font-size: 12px;
  border: 1px #d9d9d9 solid;
  cursor: pointer;
}

.form #input-date {
  position: absolute;
  opacity: 0;
  z-index: 1;
  transition: 0.5s ease;
}

.form .camp-input input {
  border: 1px #d9d9d9 solid;
  border-radius: 6px;
  padding: 0.3rem;
  width: 100%;
  font-size: 12px;
}

.form .camp-input textarea {
  width: 100%;
  height: 100px;
  border: 1px #d9d9d9 solid;
  border-radius: 6px;
  font-size: 12px;
}

.form .camp-check {
  display: flex;
  gap: 10px;
}

.form .camp-check label {
  font-size: 12px;
}

.form button {
  background-color: #086aa2;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  width: 100%;
  padding: 1rem;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
}

@media screen and (max-width: 1200px) {
  .content-info-main .info-main .content-btn button {
    font-size: 16px;
  }

  .content-info-main {
    margin: -10rem auto 2rem auto;
  }
}

@media screen and (max-width: 1000px) {
  .content-info-main {
    flex-direction: column;
    align-items: center;
  }

  .content-info-main .info-main {
    margin-top: 0;
    width: 100%;
    align-items: center;
  }

  .content-info-main .info-main .title h2 {
    text-align: center;
  }

  .content-info-main .info-main .title p {
    text-align: center;
  }

  .content-info-main .info-main .content-btn {
    justify-content: center;
  }

  .content-info-main img {
    width: 250px;
    height: 250px;
  }
}

@media screen and (max-width: 800px) {
  .content-description-doctor-main {
    flex-direction: column;
    gap: 4rem;
  }

  .content-description-doctor-main .description-doctor {
    width: 100%;
  }

  .content-description-doctor-main .procedures-doctor {
    width: 100%;
  }

  .select-calendar-citas {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .select-calendar-citas .title {
    width: 100%;
  }

  .select-calendar-citas button {
    width: 48%;
  }

  .select-calendar-citas .content-select-clinic {
    width: 48%;
  }

  .calendar-clinics .content-week-days {
    width: 720px;
  }
}

@media screen and (max-width: 700px) {
  .content-info-main {
    margin: -6rem auto 2rem auto;
  }

  .content-info-main .info-main .content-btn {
    flex-direction: column;
  }

  .content-info-main .info-main .content-btn button {
    width: 100%;
  }

  .content-info-main img {
    width: 230px;
    height: 230px;
  }

  .content-sedes {
    flex-direction: column;
  }
}

@media screen and (max-width: 480px) {
  .content-info-main .info-main .title h2 {
    font-size: 25px;
  }

  .content-info-main .info-main .title p {
    font-size: 16px;
  }

  .last-info button {
    padding: 0.5rem 2rem;
    font-size: 16px;
  }

  .select-calendar-citas button {
    width: 100%;
    font-size: 15px;
  }

  .select-calendar-citas .content-select-clinic {
    width: 100%;
  }

  .content-select select {
    font-size: 14px;
  }

  .content-select i {
    width: 14px;
    height: 14px;
  }

  .calendar-clinics .content-week-days .day h3 {
    font-size: 16px;
  }

  .calendar-clinics .content-week-days .day ul li {
    padding: 0.5rem;
  }

  .calendar-clinics button {
    font-size: 16px;
  }
}