@import url('header.css');
@import url('dropdowns.css');

:root {
    --black: #101820;
    --black-op: #1018208e;
    --dark-grey: #212322;
    --brown: #5f6252;
    --green: #9ec400;
    --green-op: #7a9a01;
    --white: rgb(234 236 233);
    --grey: #d8d9d9;
    --danger: #fc5050;
  }
  * {
    padding: 0;
    margin: 0;
    font-family: "Poppins", sans-serif;
  }
  img {
    width: 100%;
  }
  .btn {
    border: none;
    outline: none;
    border-radius: 50px;
    background-color: var(--green-op);
    color: var(--white);
    font-weight: bold;
    padding: 0.4rem;
    cursor: pointer;
  }
  html,
  body {
    height: 100%;
  }
  body {
    margin: 0;
    font-family: Roboto, "Helvetica Neue", sans-serif;
  }
  
  
  section{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    top: 20vh;
}
section .img{
    width: 15%;
}
img{
    width: 100%;
    z-index: -1;
}
.title{
    color: #fff;
    font-size: 2.2em;
}
.apmt {
  position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    background: #fff;
    width: 65%;
    border-top: 4px solid var(--green);
    padding: 1rem;
}
.apmt .title{
    color: var(--green);
    font-size: 1.5em;
    font-weight: 500;
    padding: .8rem;
}
.apmt .calendario{
    width: 35%;
}
.turnos{
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
}
.title-month{
    font-size: 1em;
    font-weight: 100;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--black);
    margin-bottom: 1rem;
    padding-bottom: .2rem;
}
.lineasemana{
    display: flex;
    justify-content: space-around;
}
.day-title{
    font-weight: 1;
    font-size: 1.2em;
    margin-bottom: .4rem;
}

.apmt-details{
  color: var(--green-op);
  text-align: center;
}
.done-apmt{
  outline: none;
  border: none;
  color: var(--green-op);
  border: 2px solid var(--green-op);
  border-radius:100px;
  padding: 1rem;
  margin-top: 1rem;
  background: #fff;
  cursor: pointer;
  width: 70px;
  height: 70px;
}
.diasemana{
  width: 40px;
  margin-bottom: .8rem;
  text-align: center;
}
.diasemana a{
  color: var(--black);
  text-decoration: none;
}
.horarios{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 25%;
  flex-direction: column;
  margin: 0 1rem;
}
.fecha{
  font-size: 1em;
  font-weight: 100;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid var(--black);
  margin-bottom: 1rem;
  padding-bottom: .2rem
}
.horarios .horas{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}
.horarios .horas .horarioturno{
  width: 25%;
  font-size: .8em;
  margin: .2rem;
  background: var(--green);
  text-align: center;
}
.horarios .horas .horarioturno a{
  text-decoration: none;
  color: var(--black);
}
.turno_seleccionado{
  width: 35%;
}
.view{
  width: 40%;
  margin-left: 10rem;
  position: relative;
  height: 41vh;
}
.turno_seleccionado .sections{
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.turno_seleccionado .view_section{
  height: 75%;
  width: 100%;
  flex-direction: column;
}
.turno_seleccionado p{
  font-size: .8em;
}
.title_appointment{
  font-size: 1em;
  font-weight: 100;
  width: 100%;
  text-align: left;
  padding-left: 1rem;
  border-bottom: 1px solid var(--black);
  margin-bottom: 1rem;
  padding-bottom: .2rem
}
.title_appointment1{
  font-size: 1em;
  font-weight: 100;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid var(--black);
  margin-bottom: 1rem;
  padding-bottom: .2rem;
}
.prev, .next{
  position: absolute;
  background-color: var(--grey);
  color: white;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  width:10%;
  text-decoration:none;
  font-size: 1.4em;
}
.prev{
  right:100%
}
.next{
  left:100%
}
.close{
  position: absolute;
  right:1rem;
  top:1rem;
  color: var(--black);
  text-decoration: none;
  font-size:1.5em
}
.back{
  position: absolute;
  right:1rem;
  top:1rem;
  color: var(--black);
  text-decoration: none;
  font-size:1.5em
}
.btn-cancel-apmt{
  outline: none;
  border: none;
  color: var(--green-op);
  border: 2px solid var(--green-op);
  border-radius:100px;
  padding: .4rem;
  margin-top: 1rem;
  background: #fff;
  cursor: pointer;
}

