@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,600");
* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}
html,
body {
  margin: 0px;
  height: 100%;
}
/* a blue color as a generic focus style */
button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}
a {
  text-decoration: none;
}

/* Loading Spinner Animation */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.loading-spinner {
  animation: spin 1s linear infinite;
}


/* Header Styles - Global for all pages */
.header {
  display: flex;
  height: 51px;
  align-items: center;
  justify-content: space-between;
  padding: 5px 25px;
  position: relative;
  align-self: stretch;
  width: 100%;
  background-color: #ffffff;
  border-radius: 61px;
  box-shadow: 0px 0px 6px #00000040;
}

.header .img {
  position: relative;
  width: 22px;
  height: 22px;
}

.header .new-logo {
  position: relative;
  width: 82px;
  height: 31.77px;
  object-fit: cover;
}


/* Bottom Menu Styles - Global for all pages */
.menu_btns {
  display: flex;
  height: 65px;
  align-items: center;
  justify-content: center;
  gap: 42px;
  padding: 5px 0px 7px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #1a1a1a;
  z-index: 1000;
}

.menu_btns a {
  text-decoration: none;
}

.home_btn,
.tablon_btn,
.plazas_btn,
.atajos_btn {
  position: relative;
  width: 44px;
  height: 51px;
  cursor: pointer;
}

.tablon_btn {
  width: 49px;
  height: 49px;
}

.home_btn .menu-icon,
.tablon_btn .menu-icon,
.plazas_btn .menu-icon,
.atajos_btn .menu-icon {
  position: absolute;
  width: 81.82%;
  top: 0;
  left: 11.36%;
  height: 37px;
}



.home_btn .menu-label,
.tablon_btn .menu-label,
.plazas_btn .menu-label,
.atajos_btn .menu-label {
  position: absolute;
  width: 100%;
  height: 27.45%;
  top: 72.55%;
  left: 0;
  font-family: "Open Sans", Helvetica;
  font-weight: 400;
  color: #7e7e7e;
  font-size: 10px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
}


.home_btn .menu-label-active,
.tablon_btn .menu-label-active,
.plazas_btn .menu-label-active,
.atajos_btn .menu-label-active {
  position: absolute;
  width: 100%;
  height: 27.45%;
  top: 72.55%;
  left: 0;
  font-family: "Open Sans", Helvetica;
  font-weight: 400;
  color: #de3b4b;
  font-size: 10px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
}

