.italic {
  font-style: italic;
}

.red {
  color: #e61732;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", sans-serif;
  font-style: italic;
}

h2 {
  font-size: 50px;
}
@media screen and (max-width: 820px) {
  h2 {
    font-size: 35px;
  }
}

h3 {
  font-size: 40px;
}
@media screen and (max-width: 820px) {
  h3 {
    font-size: 25px;
  }
}

p {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
}
@media screen and (max-width: 820px) {
  p {
    font-size: 20px;
  }
}

li {
  font-family: "Roboto", sans-serif;
}

a {
  color: #ffffff;
  list-style: none;
  font-size: 25px;
}

body {
  margin: 0;
  padding: 0;
  max-width: 100vw;
  min-height: 100vh;
  background-color: #000000;
  overflow-x: hidden;
  position: relative;
}

.header {
  max-width: 100vw;
  height: 15vh;
  background-color: rgba(48, 48, 48, 0.95);
  display: flex;
  align-items: center;
  flex-direction: row;
  padding: 10px;
  position: relative;
  z-index: 20;
}
@media screen and (max-width: 820px) {
  .header {
    width: 100vw;
    height: 10vh;
    flex-direction: column;
    margin: 0;
    padding: 0;
    transition: height 0.25s;
  }
}
.header.expanded {
  height: 52vh;
}
.header-logo img {
  width: 30vw;
}
@media screen and (max-width: 820px) {
  .header-logo img {
    width: 50vw;
    margin-top: 15px;
    padding: 0;
  }
}
.header-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  margin-left: 10vw;
  width: 60vw;
  background-color: rgba(48, 48, 48, 0.95);
}
@media screen and (max-width: 820px) {
  .header-navigation {
    width: 100vw;
  }
}
.header-navigation-hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  position: absolute;
  top: 28px;
  left: 25px;
}
@media screen and (max-width: 820px) {
  .header-navigation-hamburger {
    display: flex;
  }
}
.header-navigation-hamburger-bar {
  width: 30px;
  height: 3px;
  background-color: #ffffff;
  margin: 3px 0;
  color: #ffffff;
  transition: all 0.3s;
}
.header-navigation-hamburger-bar #bar1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.header-navigation-hamburger-bar #bar2 {
  opacity: 0;
}
.header-navigation-hamburger-bar #bar3 {
  transform: rotate(45deg) translate(-5px, -6px);
}
.header-navigation-hamburger.active #bar1 {
  transform: rotate(-45deg) translate(-8px, 6px);
}
.header-navigation-hamburger.active #bar2 {
  opacity: 0;
}
.header-navigation-hamburger.active #bar3 {
  transform: rotate(45deg) translate(-7px, -5px);
}
.header-navigation-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  padding: 0;
}
@media screen and (max-width: 820px) {
  .header-navigation-menu {
    display: none;
    max-height: 0;
    flex-direction: column;
    position: absolute;
    top: 9vh;
    left: 0;
    text-align: center;
    margin: 0;
    padding-top: 50px;
    flex-direction: column;
  }
}
.header-navigation-menu.active {
  display: flex;
  max-height: 100vh;
  width: 100vw;
}
.header-navigation-menu-item {
  width: 10vw;
  height: 3vw;
  list-style: none;
  margin: 0 10px;
  /*background-color: $color-black;
  border: 3px solid $color-primary;*/
  padding: 5px 0;
  /*border-radius: 3vw;*/
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 820px) {
  .header-navigation-menu-item {
    width: 100vw;
    margin-bottom: 40px;
    opacity: 0;
  }
  .header-navigation-menu-item.active {
    opacity: 1;
  }
}
.header-navigation-menu-link {
  font-family: "Roboto", sans-serif;
  font-display: swap;
  font-style: italic;
  font-size: 25px;
  font-weight: 700;
  text-decoration: none;
  color: #ffffff;
  padding: 10px;
}
@media screen and (max-width: 820px) {
  .header-navigation-menu-link {
    font-size: 30px;
  }
}

.content {
  display: block;
  width: 100vw;
  min-height: 75vh;
  position: relative;
  left: 0;
  overflow: hidden;
}
.content-index {
  width: 100vw;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}
@media screen and (max-width: 820px) {
  .content-index {
    flex-direction: column;
  }
}
.content-index-image {
  width: 50vw;
  min-height: 100%;
  background-image: url(../images/landingpage2.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 40%;
  overflow: hidden;
}
@media screen and (max-width: 820px) {
  .content-index-image {
    width: 100vw;
    height: 40vh;
  }
}
.content-index-repadel {
  display: flex;
  flex-direction: column;
  margin-left: 5vw;
  font-family: "Roboto", sans-serif;
  font-display: swap;
  width: 40vw;
  height: 100%;
  color: #ffffff;
  z-index: 20;
  text-align: center;
}
@media screen and (max-width: 820px) {
  .content-index-repadel {
    width: 80vw;
    margin: 5vh;
  }
}
.content-team {
  min-height: 100vh;
  overflow: hidden;
}
.content-team-image {
  width: 100vw;
  height: 50vh;
  background-image: url(../images/image00015.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 25%;
  overflow: hidden;
  margin-bottom: 10vh;
}
@media screen and (max-width: 820px) {
  .content-team-image {
    height: 30vh;
    margin-bottom: 3vh;
  }
}
.content-team-info {
  color: #ffffff;
  text-align: center;
  width: 100vw;
  display: flex;
  flex-flow: column;
}
.content-team-info-header {
  width: 100vw;
  margin-bottom: 5vh;
}
.content-team-info-one {
  display: flex;
  flex-flow: row;
  margin-bottom: 10vh;
}
@media screen and (max-width: 820px) {
  .content-team-info-one {
    margin-bottom: 3vh;
    flex-flow: column;
  }
}
.content-team-info-one-image {
  width: 60vw;
  height: 70vh;
  background-image: url(../images/miehet1.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
@media screen and (max-width: 820px) {
  .content-team-info-one-image {
    width: 100vw;
    height: 30vh;
  }
}
.content-team-info-one-text {
  width: 30vw;
  margin: 0 5vw;
}
@media screen and (max-width: 820px) {
  .content-team-info-one-text {
    width: 80vw;
    margin-left: 10vw;
  }
}
.content-team-info-wone {
  display: flex;
  flex-flow: row;
  margin-bottom: 10vh;
}
@media screen and (max-width: 820px) {
  .content-team-info-wone {
    margin-bottom: 3vh;
    flex-flow: column-reverse;
  }
}
.content-team-info-wone-image {
  width: 60vw;
  height: 70vh;
  background-image: url(../images/naiset.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
@media screen and (max-width: 820px) {
  .content-team-info-wone-image {
    width: 100vw;
    height: 30vh;
  }
}
.content-team-info-wone-text {
  width: 30vw;
  margin: 0 5vw;
}
@media screen and (max-width: 820px) {
  .content-team-info-wone-text {
    width: 80vw;
    margin-left: 10vw;
  }
}
.content-team-info-two {
  display: flex;
  flex-flow: row;
  margin-bottom: 10vh;
}
@media screen and (max-width: 820px) {
  .content-team-info-two {
    margin-bottom: 3vh;
    flex-flow: column;
  }
}
.content-team-info-two-image {
  width: 60vw;
  height: 70vh;
  background-image: url(../images/image00006.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
@media screen and (max-width: 820px) {
  .content-team-info-two-image {
    width: 100vw;
    height: 30vh;
  }
}
.content-team-info-two-text {
  width: 30vw;
  margin: 0 5vw;
}
@media screen and (max-width: 820px) {
  .content-team-info-two-text {
    width: 80vw;
    margin-left: 10vw;
  }
}
.content-team-info-three {
  display: flex;
  flex-flow: row;
  margin-bottom: 10vh;
}
@media screen and (max-width: 820px) {
  .content-team-info-three {
    margin-bottom: 3vh;
    flex-flow: column-reverse;
  }
}
.content-team-info-three-image {
  width: 60vw;
  height: 70vh;
  background-image: url(../images/image00003.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
@media screen and (max-width: 820px) {
  .content-team-info-three-image {
    width: 100vw;
    height: 30vh;
  }
}
.content-team-info-three-text {
  width: 30vw;
  margin: 0 5vw;
}
@media screen and (max-width: 820px) {
  .content-team-info-three-text {
    width: 80vw;
    margin-left: 10vw;
  }
}
.content-news {
  width: 100vw;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-news-image {
  width: 100vw;
  height: 50vh;
  background-image: url(../images/image00005.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 40%;
  overflow: hidden;
}
@media screen and (max-width: 820px) {
  .content-news-image {
    height: 30vh;
  }
}
.content-news-posts {
  display: flex;
  flex-direction: column;
  margin-left: 5vw;
  width: 40vw;
  margin-left: 30vw;
  height: 100%;
  color: #ffffff;
  z-index: 20;
  text-align: center;
}
.content-news-posts img {
  max-width: 400px; 
}
.content-news-posts ul {
  list-style: none;
}
.content-news-posts .separator {
  width: 40vw;
  height: 1px;
  background-color: #e61732;
  margin-top: 50px;
}
.content-news-posts h3 {
  margin-top: 50px;
  margin-bottom: 0px;
}
.content-news-posts a {
  color: #ffffff;
  text-decoration: underline;
}
.content-news-posts ul {
  padding: 0; 
}
@media screen and (max-width: 820px) {
  .content-news-posts {
    width: 80vw;
    margin-left: 10vw;
  }
  .content-news-posts .separator{
    width: 80vw;
  }
  .content-news-posts img {
    max-width: 80vw; 
  }

}
.content-partners {
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-decoration: none;
}
.content-partners-padel247 {
  display: flex;
  flex-direction: row;
  height: 60vh;
  width: 100vw;
  margin-bottom: 10vh;
}
@media screen and (max-width: 820px) {
  .content-partners-padel247 {
    flex-direction: column;
    height: auto;
    margin-bottom: 5vh;
  }
}
.content-partners-padel247-image {
  width: 60vw;
  height: 100%;
  background-image: url(../images/padel247.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 820px) {
  .content-partners-padel247-image {
    width: 100vw;
    height: 50vh;
    background-position: center;
  }
}
.content-partners-padel247-text {
  width: 40vw;
  color: #ffffff;
  padding: 2vw 5vw;
}
.content-partners-padel247-text a {
  text-decoration: underline;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 20px;
  font-style: italic;
  color: #ffffff;
}
@media screen and (max-width: 820px) {
  .content-partners-padel247-text {
    width: 80vw;
    margin: 0 5vw;
  }
  .content-partners-padel247-text a {
    font-size: 20px;
  }
}
.content-partners-padelwest {
  display: flex;
  flex-direction: row;
  height: 60vh;
  width: 100vw;
  margin-bottom: 10vh;
}
@media screen and (max-width: 820px) {
  .content-partners-padelwest {
    flex-direction: column-reverse;
    height: auto;
    margin-bottom: 5vh;
  }
}
.content-partners-padelwest-image {
  width: 60vw;
  height: 100%;
  background-image: url(../images/padelwest.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 820px) {
  .content-partners-padelwest-image {
    width: 100vw;
    height: 50vh;
    background-position: left;
  }
}
.content-partners-padelwest-text {
  width: 40vw;
  color: #ffffff;
  padding: 2vw 5vw;
}
.content-partners-padelwest-text a {
  text-decoration: underline;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 20px;
  font-style: italic;
  color: #ffffff;
}
@media screen and (max-width: 820px) {
  .content-partners-padelwest-text {
    width: 80vw;
    margin: 0 5vw;
  }
  .content-partners-padelwest-text a {
    font-size: 20px;
  }
}
.content-partners-elpadel {
  display: flex;
  flex-direction: row;
  height: 70vh;
  width: 100vw;
  margin-bottom: 10vh;
}
@media screen and (max-width: 820px) {
  .content-partners-elpadel {
    flex-direction: column;
    height: auto;
    margin-bottom: 5vh;
  }
}
.content-partners-elpadel-image {
  width: 60vw;
  height: 100%;
  background-image: url(../images/elpadel.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 820px) {
  .content-partners-elpadel-image {
    width: 100vw;
    height: 50vh;
    background-position: center;
  }
}
.content-partners-elpadel-text {
  width: 40vw;
  color: #ffffff;
  padding: 2vw 5vw;
}
.content-partners-elpadel-text a {
  text-decoration: underline;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 20px;
  font-style: italic;
  color: #ffffff;
}
@media screen and (max-width: 820px) {
  .content-partners-elpadel-text {
    width: 80vw;
    margin: 0 5vw;
  }
  .content-partners-elpadel-text a {
    font-size: 20px;
  }
}
.content-partners-padel9 {
  display: flex;
  flex-direction: row;
  height: 60vh;
  width: 100vw;
  margin-bottom: 10vh;
}
@media screen and (max-width: 820px) {
  .content-partners-padel9 {
    flex-direction: column-reverse;
    height: auto;
    margin-bottom: 5vh;
  }
}
.content-partners-padel9-image {
  width: 60vw;
  height: 100%;
  background-image: url(../images/padel9.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 820px) {
  .content-partners-padel9-image {
    width: 100vw;
    height: 50vh;
    background-position: center;
  }
}
.content-partners-padel9-text {
  width: 40vw;
  color: #ffffff;
  padding: 2vw 5vw;
}
.content-partners-padel9-text a {
  text-decoration: underline;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 20px;
  font-style: italic;
  color: #ffffff;
}
@media screen and (max-width: 820px) {
  .content-partners-padel9-text {
    width: 80vw;
    margin: 0 5vw;
  }
  .content-partners-padel9-text a {
    font-size: 20px;
  }
}
.content-partners-popup {
  display: flex;
  flex-direction: row;
  height: 60vh;
  width: 100vw;
  margin-bottom: 10vh;
}
@media screen and (max-width: 820px) {
  .content-partners-popup {
    flex-direction: column;
    height: auto;
    margin-bottom: 5vh;
  }
}
.content-partners-popup-image {
  width: 60vw;
  height: 100%;
  background-image: url(../images/popup.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 820px) {
  .content-partners-popup-image {
    width: 100vw;
    height: 50vh;
    background-position: center;
  }
}
.content-partners-popup-text {
  width: 40vw;
  color: #ffffff;
  padding: 2vw 5vw;
}
.content-partners-popup-text a {
  text-decoration: underline;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 20px;
  font-style: italic;
  color: #ffffff;
}
@media screen and (max-width: 820px) {
  .content-partners-popup-text {
    width: 80vw;
    margin: 0 5vw;
  }
  .content-partners-popup-text a {
    font-size: 20px;
  }
}
.content-partners-lentolanliikunta {
  display: flex;
  flex-direction: row;
  height: 60vh;
  width: 100vw;
  margin-bottom: 10vh;
}
@media screen and (max-width: 820px) {
  .content-partners-lentolanliikunta {
    flex-direction: column-reverse;
    height: auto;
    margin-bottom: 5vh;
  }
}
.content-partners-lentolanliikunta-image {
  width: 60vw;
  height: 100%;
  background-image: url(../images/lentolanliikunta.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 820px) {
  .content-partners-lentolanliikunta-image {
    width: 100vw;
    height: 50vh;
    background-position: center;
  }
}
.content-partners-lentolanliikunta-text {
  width: 40vw;
  color: #ffffff;
  padding: 2vw 5vw;
}
.content-partners-lentolanliikunta-text a {
  text-decoration: underline;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 20px;
  font-style: italic;
  color: #ffffff;
}
@media screen and (max-width: 820px) {
  .content-partners-lentolanliikunta-text {
    width: 80vw;
    margin: 0 5vw;
  }
  .content-partners-lentolanliikunta-text a {
    font-size: 20px;
  }
}
.content-partners-oxdog {
  display: flex;
  flex-direction: row;
  height: 60vh;
  width: 100vw;
  margin-bottom: 10vh;
}
@media screen and (max-width: 820px) {
  .content-partners-oxdog {
    flex-direction: column;
    height: auto;
    margin-bottom: 5vh;
  }
}
.content-partners-oxdog-image {
  width: 60vw;
  height: 100%;
  background-image: url(../images/oxdog.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 820px) {
  .content-partners-oxdog-image {
    width: 100vw;
    height: 50vh;
    background-position: center;
  }
}
.content-partners-oxdog-text {
  width: 40vw;
  color: #ffffff;
  padding: 2vw 5vw;
}
.content-partners-oxdog-text a {
  text-decoration: underline;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 20px;
  font-style: italic;
  color: #ffffff;
}
@media screen and (max-width: 820px) {
  .content-partners-oxdog-text {
    width: 80vw;
    margin: 0 5vw;
  }
  .content-partners-oxdog-text a {
    font-size: 20px;
  }
}
.content-partners-padelonline {
  display: flex;
  flex-direction: row;
  height: 60vh;
  width: 100vw;
  margin-bottom: 10vh;
}
@media screen and (max-width: 820px) {
  .content-partners-padelonline {
    flex-direction: column-reverse;
    height: auto;
    margin-bottom: 5vh;
  }
}
.content-partners-padelonline-image {
  width: 60vw;
  height: 100%;
  background-image: url(../images/nuestro.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 820px) {
  .content-partners-padelonline-image {
    width: 100vw;
    height: 50vh;
    background-position: center;
  }
}
.content-partners-padelonline-text {
  width: 40vw;
  color: #ffffff;
  padding: 2vw 5vw;
}
.content-partners-padelonline-text a {
  text-decoration: underline;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 20px;
  font-style: italic;
  color: #ffffff;
}
@media screen and (max-width: 820px) {
  .content-partners-padelonline-text {
    width: 80vw;
    margin: 0 5vw;
  }
  .content-partners-padelonline-text a {
    font-size: 20px;
  }
}
.content-partners-palafys {
  display: flex;
  flex-direction: row;
  height: 60vh;
  width: 100vw;
  margin-bottom: 10vh;
}
@media screen and (max-width: 820px) {
  .content-partners-palafys {
    flex-direction: column;
    height: auto;
    margin-bottom: 5vh;
  }
}
.content-partners-palafys-image {
  width: 60vw;
  height: 100%;
  background-image: url(../images/palafys.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 820px) {
  .content-partners-palafys-image {
    width: 100vw;
    height: 50vh;
    background-position: center;
  }
}
.content-partners-palafys-text {
  width: 40vw;
  color: #ffffff;
  padding: 2vw 5vw;
}
.content-partners-palafys-text a {
  text-decoration: underline;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 20px;
  font-style: italic;
  color: #ffffff;
}
@media screen and (max-width: 820px) {
  .content-partners-palafys-text {
    width: 80vw;
    margin: 0 5vw;
  }
  .content-partners-palafys-text a {
    font-size: 20px;
  }
}
.content-contact {
  width: 100vw;
  /*height: 75vh;*/
  display: flex;
  flex-direction: row;
}
@media screen and (max-width: 820px) {
  .content-contact {
    height: auto;
    flex-direction: column;
  }
}
.content-contact-image {
  width: 60vw;
  height: 80vh;
  background-image: url(../images/image00012.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left;
  overflow: hidden;
}
@media screen and (max-width: 820px) {
  .content-contact-image {
    width: 100vw;
    height: 30vh;
    margin-bottom: 10vh;
  }
}
.content-contact-text {
  width: 40vw;
  text-align: center;
  justify-content: center;
  color: #ffffff;
  padding: 20vh 5vw;
  /*text-decoration: underline;*/
}
.content-contact-text ul {
  list-style: none;
  row-gap: 2vh;
}
.content-contact-text a {
  color: #ffffff;
  font-size: 30px;
}
@media screen and (max-width: 820px) {
  .content-contact-text {
    /*display: flex;*/
    width: 90vw;
    padding: 0;
    margin: 0 5vw;
  }
  .content-contact-text ul {
    padding: 0;
    text-align: center;
    margin-bottom: 5vh;
  }
  .content-contact-text li {
    margin-bottom: 2vh;
    font-size: 20px;
  }
}

.footer {
  display: block;
  position: relative;
  bottom: 0;
  left: 0;
  width: 80vw;
  padding: 5px;
  background-color: #000000;
}
.footer p {
  color: #bcbcbc;
  font-size: 20px;
}
@media screen and (max-width: 820px) {
  .footer p {
    font-size: 15px;
  }
}
.footer-social-media {
  width: 100%;
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.footer-social-media-link-instagram {
  color: #bcbcbc;
  font-size: 30px;
  margin-right: 25px;
}
.footer-social-media-link-whatsapp {
  color: #bcbcbc;
  font-size: 30px;
  margin-right: 25px;
}/*# sourceMappingURL=styles.css.map */

/* 
DEVELOPMENT
HAPPENING
HERE
 */
.content-freecourts {
  width: 100vw;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}
@media screen and (max-width: 1365px) {
  .content-freecourts {
    flex-direction: column;
  }
}
.content-freecourts-image {
  width: 50vw;
  height: 70vh;
  min-height: 100%;
  background-image: url(../images/emptycourt.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 40%;
  overflow: hidden;
}
@media screen and (max-width: 1365px) {
  .content-freecourts-image {
    width: 100vw;
    height: 40vh;
  }
}
.content-freecourts-repadel {
  display: flex;
  flex-direction: column;
  margin-left: 5vw;
  font-family: "Roboto", sans-serif;
  font-display: swap;
  width: 40vw;
  height: 100%;
  color: #ffffff;
  z-index: 20;
  text-align: center;
}
@media screen and (max-width: 1365px) {
  .content-freecourts-repadel {
    width: 80vw;
    margin: 5vh;
  }
}

.date-selector {
  height: 50px;
  margin-top: 30px;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media screen and (max-width: 1365px) {
  .date-selector {
    height: 24vh;
    flex-direction: column;
    margin-top: 0;
    margin-bottom: 5vh;
    justify-content: space-between;
  }
}

.date-selector select {
  height: 30px;
  padding: 0 5px;
  margin-right: 10px;
  background-color: rgba(48, 48, 48, 0.95);
  color: #ffffff;
  border-radius: 5px;
  font-size: 15px;
  font-family: "Roboto", sans-serif;
}

.date-selector-date {
  display: flex;
  align-items: center;
}

.date-selector-duration {
  display: flex;
  align-items: center;
}

.date-selector-button {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 1365px) {
  .date-selector-date {
    margin-bottom: 2vh;
  }
}


@media screen and (max-width: 1365px) {
  .date-selector-duration {
    margin-bottom: 2vh;
    display: flex;
    align-items: center;
  }
}

.date-selector label {
  margin-right: 15px;
  margin-left: 10px;
}

.date-selector button {
  height: 28px;
  background-color: #e61732;
  border: none;
  color: #ffffff;
  width: 100px;
  border-radius: 5px;
  margin-left: 10px;
  font-size: 20px;
}

@media screen and (max-width: 1365px) {
  .date-selector button {
    height: 5vh;
  }
}

.content-freecourts-repadel-247 {
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 1365px) {
  .content-freecourts-repadel-247 {
    width: 100vw;
    margin: 2vh 0 0 0;
  }
}

.content-freecourts-repadel-247-club {
  width: 100%;
  height: 50px;
  padding: 10px;
  font-size: 30px;
  margin-top: 30px;
}

@media screen and (max-width: 1365px) {
  .content-freecourts-repadel-247-club {
    width: 80vw;
    padding: 0;
    margin: 0;
    align-items: center;
    text-align: center;
  }
}

.content-freecourts-repadel-247-free {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

@media screen and (max-width: 1365px) {
  .content-freecourts-repadel-247-free {
    width: 80vw;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.content-freecourts-repadel-247-free-time {
  height: 64px;
  width: 100px;
  border-radius: 10px;
  margin: 10px;
}

@media screen and (max-width: 1365px) {
  .content-freecourts-repadel-247-free-time {
    width: 70vw;
    margin: 2vw;
  }
}

#time1700247.content-freecourts-repadel-247-free-time {
  background-color: rgba(48, 48, 48, 0.95);
}

#time1730247.content-freecourts-repadel-247-free-time {
  background-color: rgba(48, 48, 48, 0.95);
}

#time1800247.content-freecourts-repadel-247-free-time {
  background-color: rgba(48, 48, 48, 0.95);
}

#time1830247.content-freecourts-repadel-247-free-time {
  background-color: rgba(48, 48, 48, 0.95);
}

#time1900247.content-freecourts-repadel-247-free-time {
  background-color: rgba(48, 48, 48, 0.95);
}

#time1930247.content-freecourts-repadel-247-free-time {
  background-color: rgba(48, 48, 48, 0.95);
}

#time2000247.content-freecourts-repadel-247-free-time {
  background-color: rgba(48, 48, 48, 0.95);
}

.content-freecourts-repadel-west {
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 1365px) {
  .content-freecourts-repadel-west {
    width: 100vw;
    margin: 2vh 0 0 0;
  }
}

.content-freecourts-repadel-west-club {
  width: 100%;
  height: 50px;
  padding: 10px;
  font-size: 30px;
  margin-top: 30px;
}

@media screen and (max-width: 1365px) {
  .content-freecourts-repadel-west-club {
    width: 80vw;
    padding: 0;
    margin: 0;
    align-items: center;
    text-align: center;
  }
}

.content-freecourts-repadel-west-free {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

@media screen and (max-width: 1365px) {
  .content-freecourts-repadel-west-free {
    width: 80vw;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.content-freecourts-repadel-west-free-time {
  height: 64px;
  width: 100px;
  border-radius: 10px;
  margin: 10px;
}

@media screen and (max-width: 1365px) {
  .content-freecourts-repadel-west-free-time {
    width: 70vw;
    margin: 2vw;
  }
}

#time1700west.content-freecourts-repadel-west-free-time {
  background-color: rgba(48, 48, 48, 0.95);
}

#time1730west.content-freecourts-repadel-west-free-time {
  background-color: rgba(48, 48, 48, 0.95);
}

#time1800west.content-freecourts-repadel-west-free-time {
  background-color: rgba(48, 48, 48, 0.95);
}

#time1830west.content-freecourts-repadel-west-free-time {
  background-color: rgba(48, 48, 48, 0.95);
}

#time1900west.content-freecourts-repadel-west-free-time {
  background-color: rgba(48, 48, 48, 0.95);
}

#time1930west.content-freecourts-repadel-west-free-time {
  background-color: rgba(48, 48, 48, 0.95);
}

#time2000west.content-freecourts-repadel-west-free-time {
  background-color: rgba(48, 48, 48, 0.95);
}

.content-freecourts-repadel-elpadel {
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 1365px) {
  .content-freecourts-repadel-elpadel {
    width: 100vw;
    margin: 2vh 0 0 0;
  }
}

.content-freecourts-repadel-elpadel-club {
  width: 100%;
  height: 50px;
  padding: 10px;
  font-size: 30px;
  margin-top: 30px;
}

@media screen and (max-width: 1365px) {
  .content-freecourts-repadel-elpadel-club {
    width: 80vw;
    padding: 0;
    margin: 0;
    align-items: center;
    text-align: center;
  }
}

.content-freecourts-repadel-elpadel-free {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

@media screen and (max-width: 1365px) {
  .content-freecourts-repadel-elpadel-free {
    width: 80vw;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.content-freecourts-repadel-elpadel-free-time {
  height: 64px;
  width: 100px;
  border-radius: 10px;
  margin: 10px;
}

@media screen and (max-width: 1365px) {
  .content-freecourts-repadel-elpadel-free-time {
    width: 70vw;
    margin: 2vw;
  }
}

#time1700elpadel.content-freecourts-repadel-elpadel-free-time {
  background-color: rgba(48, 48, 48, 0.95);
}

#time1730elpadel.content-freecourts-repadel-elpadel-free-time {
  background-color: rgba(48, 48, 48, 0.95);
}

#time1800elpadel.content-freecourts-repadel-elpadel-free-time {
  background-color: rgba(48, 48, 48, 0.95);
}

#time1830elpadel.content-freecourts-repadel-elpadel-free-time {
  background-color: rgba(48, 48, 48, 0.95);
}

#time1900elpadel.content-freecourts-repadel-elpadel-free-time {
  background-color: rgba(48, 48, 48, 0.95);
}

#time1930elpadel.content-freecourts-repadel-elpadel-free-time {
  background-color: rgba(48, 48, 48, 0.95);
}

#time2000elpadel.content-freecourts-repadel-elpadel-free-time {
  background-color: rgba(48, 48, 48, 0.95);
}

.content-freecourts-repadel-popup {
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 1365px) {
  .content-freecourts-repadel-popup {
    width: 100vw;
    margin: 2vh 0 0 0;
  }
}

.content-freecourts-repadel-popup-club {
  width: 100%;
  height: 50px;
  padding: 10px;
  font-size: 30px;
  margin-top: 30px;
}

@media screen and (max-width: 1365px) {
  .content-freecourts-repadel-popup-club {
    width: 80vw;
    padding: 0;
    margin: 0;
    align-items: center;
    text-align: center;
  }
}

.content-freecourts-repadel-popup-free {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

@media screen and (max-width: 1365px) {
  .content-freecourts-repadel-popup-free {
    width: 80vw;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.content-freecourts-repadel-popup-free-time {
  height: 64px;
  width: 100px;
  border-radius: 10px;
  margin: 10px;
}

@media screen and (max-width: 1365px) {
  .content-freecourts-repadel-popup-free-time {
    width: 70vw;
    margin: 2vw;
  }
}

#time1700popup.content-freecourts-repadel-popup-free-time {
  background-color: rgba(48, 48, 48, 0.95);
}

#time1730popup.content-freecourts-repadel-popup-free-time {
  background-color: rgba(48, 48, 48, 0.95);
}

#time1800popup.content-freecourts-repadel-popup-free-time {
  background-color: rgba(48, 48, 48, 0.95);
}

#time1830popup.content-freecourts-repadel-popup-free-time {
  background-color: rgba(48, 48, 48, 0.95);
}

#time1900popup.content-freecourts-repadel-popup-free-time {
  background-color: rgba(48, 48, 48, 0.95);
}

#time1930popup.content-freecourts-repadel-popup-free-time {
  background-color: rgba(48, 48, 48, 0.95);
}

#time2000popup.content-freecourts-repadel-popup-free-time {
  background-color: rgba(48, 48, 48, 0.95);
}