:root {
  --padding-header-mobile: 0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.fc-toolbar-title {
  text-transform: uppercase;
}

.fc-day {
  cursor: pointer;
}

.fc-day.fc-day-today {
  background-color: rgba(14, 73, 181, .5) !important;
}

.fc .fc-bg-event {
  background-color: red;
}

.bi-eye-fill,
.bi-eye-slash-fill {
  top: 62%;
  right: 3%;
  z-index: 1;
}

.bi-eye-fill:hover,
.bi-eye-slash-fill:hover {
  cursor: pointer;
}

.tab-bar-mobile,
.tab-bar-portrait {
  display: none;
}

.card:hover {
  cursor: pointer;
}

.courts .card,
.hours .card,
.data .card,
.days .card {
  justify-content: center;
  align-items: center;
}

.courts .card {
  background-color: rgba(117, 117, 117, 1);
  color: rgba(255, 255, 255, 1);
}

.hours .card .card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#hours .col-12:not(:last-child) {
  margin-bottom: 1rem;
}

footer {
  text-align: center;
  border-top: 1px solid #e1e4e6;
  padding: 20px;
}

/* MOVIL SOLO */
@media (max-width: 599px) {
  body {
    padding-bottom: var(--padding-header-mobile);
  }

  .tab-bar-mobile {
    position: fixed;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    background: rgba(232, 232, 232, 1);
    border-radius: 40px 40px 0 0;
    padding: 0 15px;
    z-index: 30;
    -webkit-border-radius: 40px 40px 0 0;
    -moz-border-radius: 40px 40px 0 0;
    -ms-border-radius: 40px 40px 0 0;
    -o-border-radius: 40px 40px 0 0;
  }

  .tab-bar-mobile > button > img,
  .profile-drop > button > img {
    stroke: #bbc5cc;
    fill: #bbc5cc;
    height: 22px;
    transition: all 0.25s ease;
    pointer-events: none;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
  }

  .tab-bar-mobile button {
    border: none;
    background: transparent;
    padding: 22px 0;
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.25s ease;
    outline: none;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
  }

  .tab-bar-mobile button:active > img {
    transform: scale(0.8);
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
  }

  .tab-bar-mobile.active > img {
    stroke: #000;
    fill: #000;
  }

  .profile-drop {
    display: none;
    /* width: 75%; */
    position: absolute;
    /* top: -90%; */
    top: -170%;
    /* right: 0; */
    right: 2%;
    /* flex-direction: row; */
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    background: rgba(232, 232, 232, 1);
    margin: 0 auto;
    padding: 0 15px;
    border-radius: 50px;
    z-index: 30;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
  }

  .profile-drop > button {
    padding: 15px 0;
  }

  .registro {
    border-left: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.25);
  }

  .fc-header-toolbar {
    flex-direction: column;
  }

  .fc-header-toolbar .fc-toolbar-chunk:nth-child(1) {
    margin-bottom: 1rem;
  }
}

/* TABLET DE PIE */
@media (min-width: 600px) {
  .registro {
    border-left: 1px solid rgba(0, 0, 0, 0.25);
  }

  .tab-bar-portrait {
    padding: 25px;
    position: sticky;
    top: 0;
    background-color: #0c0f16;
    display: grid;
    grid-template-columns: 25% auto;
    gap: 30%;
    z-index: 1;
  }

  .tab-bar-portrait > ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 0;
  }

  .tab-bar-portrait ul li a {
    text-decoration: none;
    color: #fff;
    transition: opacity 200ms ease-in-out;
    overflow: hidden;
  }

  .tab-bar-portrait ul li a {
    width: 100%;
  }

  .tab-bar-portrait > ul > li > a::after {
    content: "";
    display: block;
    width: 0%;
    height: 3px;
    margin-top: 3px;
    border-radius: 3px;
    background-color: #fcb934;
    transition: width 0.2s ease-in-out;
  }

  .tab-bar-portrait ul li a:hover::after {
    width: 100%;
  }

  .heading {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .heading a {
    font-weight: 500;
    font-size: 25px;
    color: #fff;
  }

  .heading a:hover {
    text-decoration: none;
  }

  .profile-dropdown {
    list-style: none;
    padding: 0;
    position: absolute;
    width: 5rem;
    top: 100%;
    right: -100%;
    background-color: #000;
    border: 1px solid #c8c8c8;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
  }

  .profile-dropdown li {
    cursor: pointer;
    color: #303030;
    padding: 15px 10px;
    border-radius: 4px;
    text-align: center;
  }

  .profile-dropdown li span {
    color: #fff;
  }

  .profile-dropdown.opened {
    top: 120%;
    opacity: 1;
    visibility: visible;
    display: block;
  }
}

/* TABLET TUMBADA */
@media (min-width: 900px) {
}

/* PANTALLA */
@media (min-width: 1200px) {
}

/* PANTALLA GRANDE */
@media (min-width: 1800px) {
}
