@charset "UTF-8";
/*!
 * Accura
 */
:root {
  --accura-red: #d1271b;
}

.bebas {
	font-family: 'Bebas Neue', sans-serif;
}
.mont {
	font-family: 'Montserrat', sans-serif;
}

body {
	font-family: 'Montserrat', sans-serif;;
}

[data-bs-theme=dark] {
  color-scheme: dark;
  --bs-body-color: #fff;
  --bs-body-color-rgb: 255, 255, 255;
  --bs-body-bg: #0a0a0a;
  --bs-body-bg-rgb: 10, 10, 10;
  --bs-emphasis-color: #FDBE56;
  --bs-emphasis-color-rgb: 253, 190, 86;
  --bs-secondary-bg: #333333;
  --bs-secondary-bg-rgb: 51, 51, 51;
  --bs-link-color: #FDBE56;
  --bs-link-hover-color: #FD9D00;
  --bs-link-color-rgb: 253, 190, 86;
  --bs-link-hover-color-rgb: 253, 157, 0;
  --bs-border-color: #696969;
  
  --bs-moving: 227, 9, 126;
  --bs-cycling: 237, 126, 3;
  --bs-mind: 187, 208, 68;
  --bs-fitness: 236, 203, 12;
  --bs-swimming: 40, 180, 195;
  --bs-tennis: 61, 164, 53;
  --bs-running:175, 26, 58; 
}


/* COLORS*/

.yellow {color: var(--bs-emphasis-color);}
.bg-secondary-700 {background-color: var(--bs-secondary-bg);}

.bg-cycling-opacity {background-color: #ed7e0399;}
.bg-moving-opacity {background-color: #e3097ea8;}
.bg-mind-opacity {background-color: #bbd04499;}
.bg-swimming-opacity {background-color: #28b4c399;}
.bg-fitness-opacity {background-color: #eccb0c99;}
.bg-tennis-opacity {background-color: #3da43599;}
.bg-running-opacity {background-color: #af1a3a99;}


.cycling {color: rgba(237, 126, 3, 1);}
.moving {color: rgba(227, 9, 126, 1);}
.mind {color: rgba(187, 208, 68, 1);}
.swimming {color: rgba(40, 180, 195, 1);}
.fitness {color: rgba(236, 203, 12, 1);}
.tennis {background-color: rgba(61, 164, 53, 1);}
.running {background-color: rgba(175, 26, 58, 1);}

.border-cycling {border-color: rgba(237, 126, 3, 1);}
.border-moving {border-color: rgba(227, 9, 126, 1);}
.border-mind {border-color: rgba(187, 208, 68, 1);}
.border-swimming {border-color: rgba(40, 180, 195, 1);}
.border-fitness {border-color: rgba(236, 203, 12, 1);}
.border-tennis {background-color: rgba(61, 164, 53, 1);}
.border-running {background-color: rgba(175, 26, 58, 1);}

.image-courtesy {
  width: 32px;
  height: 32px;
}

.item-cortesias-div {
  width: 100%;
  margin: 0 auto;
}

.item-cortesias-div img, .item-cortesias-div span {
  margin: 0 auto;
}

.item-cortesias-text {
  text-align:center;
  line-height: 20px;
  margin: 10px 5px 40px 5px;
}

.club_banner_view {
  z-index: 999;
  position: relative;
}

.club_info_view {
  z-index: 1000;
  position: relative;
}


/*FONT*/

h1, .h1 {
  font-size: 3.25rem;
  line-height: 100%;
}

.padding-right-left-extra {
  padding-right: 8px !important;
  padding-left: 8px !important;
}
.text-justify {
  text-align: justify;
}

@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 4.1rem;
  }
}

h2, .h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h2, .h2 {
    font-size: 2rem;
  }
}

h3, .h3 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h3, .h3 {
    font-size: 1.75rem;
  }
}

h4, .h4 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h4, .h4 {
    font-size: 1.5rem;
  }
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

/**************** TITLES */
.titles {
    margin: 72px 0 40px;
  }
@media (min-width: 576px) { 
  .titles {
    margin: 96px 0 64px;
  }
}

/**************** IMAGES / ANIMATIONS */
img {
  max-width: 100%;
  display: block;
  height: auto;
}
.image{
  overflow: hidden;
  height: 100%;
  text-align: -webkit-center;
}
.image img{
    opacity: 0;
    transform: scale(1.2) translateY(-40px);
    transition: opacity 0.5s ease-out, transform 1s ease-out;
    height: 100%;
    object-fit: cover;
}
.image.visible img{
    opacity: 1;
    transform: scale(1) translateY(0px);
}
.clubEventItem .image.visible img {
  width: 100%;
}
.txtFade {
  transition: all 0.3s ease-out 0.3s, transform 0.3s ease-out 0.3s;
  opacity: 0;
  transform: translateY(10px);
}
.txtFade.visible {
  opacity: 1;
  transform: translateY(0px);
}

.txtFade-2 {
  transition: all 0.3s ease-out 0.6s, transform 0.3s ease-out 0.6s;
  opacity: 0;
  transform: translateY(10px);
}
.txtFade-2.visible {
  opacity: 1;
  transform: translateY(0px);
}

.from-left {
  transition: all 0.3s ease-out 0.3s, transform 0.3s ease-out 0.3s;
  opacity: 0;
  transform: translateX(10px);
}
.from-left.visible {
  opacity: 1;
  transform: translateX(0px);
}

.from-right {
  transition: all 0.3s ease-out 0.3s, transform 0.3s ease-out 0.3s;
  opacity: 0;
  transform: translateX(-10px);
}
.from-right.visible {
  opacity: 1;
  transform: translateX(0px);
}



/**************** LINKS */
a {
  color: inherit;
  text-decoration: none;
}
.link {
  font-size: 1.25rem;
}
.link span {
  padding-left: 0.5rem;
    top: 2px;
    position: relative;
}
.link:hover {
  color: var(--bs-white);
}
.external_link {
  color: var(--bs-emphasis-color);
}
.external_link:hover {
  color: var(--bs-white);
}
a.button, .btn {
  padding: 15px 24px;
  color: var(--bs-body-bg);
  font-size: 1rem;
  border: 0;
}
.btn-outlined {
  padding: 15px 24px;  
  font-size: 1rem;
  color: var(--bs-body-bg);  
  border: 1px solid var(--bs-body-bg);
  background-color: var(--bs-body-color);
  border-radius: 0;  
  transition: all ease-out 0.3s;
}
.btn-outlined:hover {
  padding: 15px 24px;  
  font-size: 1rem;
  color: var(--bs-body-bg);  
  border: 1px solid var(--bs-emphasis-color);
  background-color: var(--bs-emphasis-color);
  border-radius: 0;  
  transition: all ease-out 0.3s;
}
a.button.yellow {
  background-color: var(--bs-emphasis-color);
  transition: all ease-out 0.3s;
}
a.button.yellow:hover {
  background-color: var(--bs-body-color);
}
a.button.yellow-line {
  background-color: transparent;
  border: 1px solid var(--bs-emphasis-color);
  color: var(--bs-emphasis-color);
  transition: all ease-out 0.3s;
}
a.button.yellow-line:hover {
  background-color: var(--bs-emphasis-color);
  border: 1px solid var(--bs-emphasis-color);
  color: var(--bs-body-bg);
  transition: all ease-out 0.3s;
}
a.button.yellow-line span, a.button.yellow span, a.button.white span{
  font-size: 1.2rem;
  position: relative;
  top: 4px;
}
a.button.white {
  background-color: var(--bs-body-color);
  transition: all ease-out 0.3s;
}
a.button.white:hover {
  background-color: var(--bs-emphasis-color);
}

a.button.white {
  background-color: var(--bs-body-color);
  transition: all ease-out 0.3s;
}
a.button.white:hover {
  background-color: var(--bs-emphasis-color);
}
.btn-primary {
    --bs-btn-color: var(--bs-body-bg);
    --bs-btn-bg: var(--bs-emphasis-color);
    --bs-btn-border-color: var(--bs-emphasis-color);
    --bs-btn-hover-color: var(--bs-body-bg);
    --bs-btn-hover-bg: var(--bs-body-color);
    --bs-btn-hover-border-color: var(--bs-emphasis-color);
    --bs-btn-active-color: transparent;
    --bs-btn-active-bg: transparent;
    --bs-btn-active-border-color: transparent;
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-color:transparent;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: transparent;
    border-radius: 0;
}

.btn-light {
  border-radius: 0;
}

.radio-btn:checked {
  
    appearance: none;
  background-color: var(--bs-emphasis-color);
  margin: 1px;
  font: inherit;
  color: currentColor;
  width: 1em;
  height: 1em;
  border: 0.15em solid currentColor;
  border-radius: 50%;
  border-color: var(--bs-emphasis-color);
  transform: translateY(0.15em);
}

.radio-btn {  
    appearance: none;
  background-color: var(--bs-body-bg);
  margin: 1px;
  font: inherit;
  color: currentColor;
  width: 1em;
  height: 1em;
  border: 0.15em solid currentColor;
  border-radius: 50%;
  border-color: var(--bs-emphasis-color);
  transform: translateY(0.15em);
}
/******************* CORTESIAS */
.cortesias{

}
.item-cortesias {
  color: var(--bs-body-color);
  width: 170px;
}

.item-cortesias span {
  color: var(--bs-emphasis-color);
}

/******************* EVENTOS */
.evento{
  cursor: pointer;
}

/**************** LISTS */
ul, li{
  list-style: none;
  padding: 0;
  margin: 0;
}

/**************** CONTAINER */

.container-fluid {
  --bs-gutter-x: 0rem;
}
.row {
  --bs-gutter-x: .5rem;
}



/* NAVBAR*/

.navbar {
  background-color: var(--bs-secondary-bg) ;
}
.navbar-toggler {
  border: none;
  color: var(--bs-body-color);
} 
.offcanvas, .offcanvas a{
  font-size: 18px;
  color: #fff;
}
.offcanvas a.active {
  color:var(--bs-emphasis-color);
}
.offcanvas a, .offcanvas .dropdown-menu a{
  line-height: 38px;
  text-transform: uppercase;
}
.offcanvas .dropdown-menu a {
  border-bottom: 1px solid var(--bs-border-color);
}
.offcanvas .dropdown-menu {
  border: none;
  background-color: var(--bs-secondary-bg);
  padding: 0;
  text-transform: uppercase;
} 

.dropdown-toggle::after {
  display: none;
}
.dropdown-item span, .nav-link span {
  font-size: 16px;
  line-height: inherit;
}
.nav-link.dropdown-toggle span {
  font-size: 23px;
  line-height: inherit;
}
.dropdown-item {
  padding-right: 2px;
  padding-top: 7px;
  padding-bottom: 8px;
}
.nav-link {
  padding-right: 2px;
}
.dropdown-item.active, .dropdown-item:active {
  background-color: transparent;
}
.nav-item.button {
  display: block;
  height: 70px;
  text-align: center;
}
.nav-item.button a {
  line-height: 54px;
  color: var(--bs-body-bg);
}
.nav-item.button.yellow {
  background-color: var(--bs-emphasis-color);
}
.nav-item.button.white {
  background-color: var(--bs-body-color);
}
.btn-close {
      position: relative;
    right: 10px;
    color: var(--bs-body-color);
    opacity: 1;
}
/* @media (min-width: 576px) {
  .navbar-brand img {
    height: 38px;
    width: 98px;
  }
} */

@media (min-width:992px){
  .offcanvas a {
    font-size: 15px;
    line-height: 54px;
  }
  .nav-item.button a{
    font-size: 15px;
  }
  .nav-link.dropdown-toggle span {
    font-size: 17px;
  }
  .navbar {
    padding-top: 0;
    padding-bottom: 0;
  }
  .navbar-brand {
    padding-top: 10px;
    padding-left: 0px;
  }
  .navbar-button {
    font-size: 18px !important;
  }
}


/**************** LANDING BOXES */

.club-landing-link:hover img{
  opacity: .4;
}
.club-landing {
  height: 220px;
  overflow: hidden;
}
.club-landing-title {
  background-color: rgba(0, 0, 0, .6);
}
@media (min-width:576px) {
  .club-landing {
    height: 320px;
    overflow: hidden;
  }
}

@media (min-width:768px) {
  
  .club-list a {
    width: calc(50% - 0.5rem);
    max-height: 320px;
  }
}


/**************** HERO */
@media (min-width:768px) {
  .hero-main {
    height: 700px;
  } 
  .video{
        object-fit: cover ;
    overflow: hiddent;
    height: 700px ;
  }
}
@media (max-width:768px) {
  .hero {
    height: 550px;
  } 
  .video{
        object-fit: cover;
    overflow: hidden;
    height: 550px;
  }
}
.hero-main img {
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  width: 100%;;
}


@media (min-width:768px) {
  .hero {
    height: 700px;
  } 
}
.hero img {
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  width: 100%;;
}


.hero-text {
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (min-width:576px) {
  .hero.mini .hero-text{
    top: 50%;
    left: 50%;
    -ms-transform: translateY(-50%);
    transform: translate(-50%, -50%);
  }
}

.hero.mini {
  height: 440px
}

@media (min-width:574px) {
  .hero.mini {
    height: 330px;
  }
  .hero.mini .hero-text{
    text-align: center;
  }
} 

@media only screen and (max-width: 600px) {
  .hero.mini {
    height: 220px
  }
}

/**************** ACCORDION */
.accordion {
  background-color: transparent;
  --bs-accordion-color: var(--bs-body-color);
    --bs-accordion-bg: transparent;
    --bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
    --bs-accordion-border-color: var(--bs-border-color);
    --bs-accordion-border-width: 0;
    --bs-accordion-border-radius: var(--bs-border-radius);
    --bs-accordion-inner-border-radius: 0;
    --bs-accordion-btn-padding-x: 1.25rem;
    --bs-accordion-btn-padding-y: 1rem;
    --bs-accordion-btn-color: var(--bs-body-color);
    --bs-accordion-btn-bg: var(--bs-accordion-bg);
    --bs-accordion-btn-icon-width: 1rem;
    --bs-accordion-btn-icon-transform: rotate(-180deg);
    --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
    --bs-accordion-btn-active-icon: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23052c65'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e);
    --bs-accordion-btn-focus-border-color: #fff;
    --bs-accordion-btn-focus-box-shadow: none;
    --bs-accordion-body-padding-x: 1.25rem;
    --bs-accordion-body-padding-y: 1rem;
    --bs-accordion-active-color: var(--bs-primary-text-emphasis);
    --bs-accordion-active-bg: var(--bs-primary-bg-subtle);
}
.accordion-button:not(.collapsed) {
    color: var(--bs-body-color);
    background-color: transparent;
    box-shadow: none;
}
.accordion-button {
  padding: 1rem 0;
}
.accordion-button:hover {
  color: var(--bs-emphasis-color);
} 
.accordion-button span {
  position: absolute;
  transform: rotate(0);
  transition: all ease-out 0.3s;
  right: 3px;
}
.accordion-item:hover span {
  transform: rotate(45deg);
  transition: all ease-out 0.3s;
}
.accordion-item {
  border-bottom: 1px solid var(--bs-border-color);
}
.accordion-item:first-of-type {
  border-radius: 0;
  border-top: 1px solid var(--bs-border-color);
}
.accordion-item:last-of-type {
  border-radius: 0;
}
.accordion-body {
  padding: .5rem 0;
}
.accordion-button::after {
  display: none;
}

/**************** SECTIONS */

.section {
  min-height: 750px;
}
.section-info {
  min-height: auto;
}
.right, .left {
  min-height: 375px;
}
.right.image, .left.image {
  height: 375px;
}
.section-text {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.no-padding-top {
  padding-top: 0rem!important;
}

@media (max-width: 576px) {
    .hidden-mobile{
    display: none !important ;
  }
}
@media (min-width: 576px) {
  .section {
    min-height:auto;
  }
  .section > div {
    width: 50%;
    min-height: 690px;
  }
 
  .section.activity > div {
    min-height: 480px;
  } 
  .section.mini > div {
    min-height: 400px;
  }
  .right.image, .left.image {
    height: 690px;
  }
  .section.mini .right.image, .section.mini .left.image {
    height: 400px;
  }
  section.mini .right.image, .section.mini .left.image {
    height: 400px;
  }
  .section-text {
    padding-left: calc(25% - 15%);
    padding-right: calc(25% - 15%);
  }
  .section.activity .section-text {
    padding: 2rem;
  }
}

/**************** SLIDER PHOTOS / CAROUSEL */
[data-bs-theme=dark] .carousel .carousel-control-prev-icon, [data-bs-theme=dark] .carousel .carousel-control-next-icon, [data-bs-theme=dark].carousel .carousel-control-prev-icon, [data-bs-theme=dark].carousel .carousel-control-next-icon {
  filter:none;
}
.carousel-control-prev-icon, .carousel-control-next-icon {
  background-image: none;
}
.carousel-control-prev, .carousel-control-next {
  opacity: 1;
}
.carousel h5 {
  color: var(--bs-body-color);
}
.carousel .carousel-item img {
  max-height: 690px;
  object-fit: cover;
}
.carousel.carousel-hero .carousel-caption {
    position: absolute;
    right: 15%;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 15%;
    color: #fff;
    bottom: 0;
    text-align: center;
    padding: 0;
    height: fit-content;
}
.carousel.carousel-hero .carousel-caption h5 {
}
.carousel.side .carousel-item-side{
  width: 100%;
}
@media (min-width: 576px) {
  .carousel.side .carousel-item-side{
    width: 100%;
  }
}
.carousel.side .carousel-item-side .carousel-caption {
    right: 0;
    bottom: 0;
    left: 0;
    padding-left: calc(25% - 15%);
    padding-right: calc(25% - 5%);
    color: #fff;
    height: 100%;
    text-align: left;
}

/***************** CARDS */
.card {
  background-color: var(--bs-secondary-bg);
  border-radius: 4px;
  border: none;
}
.card:hover {
  cursor: pointer;
}
.card:hover .image img {
  transform: scale(1.2);
}
.card .image img {
  transform: scale(1);
}
.card .image img{
  max-height: 260px;
}
.card h5 {
  font-size: 1.12rem;
  font-weight: 600;
}
.card p, .card div {
  font-size: .85rem;
}

.card-body {
  padding: 24px;
  border-top: 5px solid var(--bs-link-color);
  height: 9rem;
} 



@media (max-width:736px) {
  .card p, .card div {
  font-size: .7rem;
  line-height: .9rem;
  }
  .card h5 {
    font-size: .8rem;  
  }
  
}

@media (max-width:576px) {
  .card p, .card div {
  font-size: .85rem;
  }
  .card h5 {
    font-size: 1.12rem;  
  }
  .card-body {    
    height: 7rem;
  } 

}



/***************** CARDS COMMUNITY */

.cards-community .card {
  position: relative;
  height: 320px;
  border-radius: 0;
}
.cards-community .card .image {
  height: 320px;
}
.cards-community a .card .card-body {
  position: absolute!important;
  padding: 20px 12px 12px 12px;
  width: 100%;
  bottom: 0;
  border: 0;
  height: 73px;
  transition: height .5s ease; 
  overflow: hidden;
  position:absolute;
}
.cards-community a:hover .card .card-body{
  height: 140px;
}
.cards-community a .card .card-body .card-text{
  opacity:0;
  transition: opacity .5s ease; 
  z-index:1000 !important;
  position:relative;
}
.card-title{
  z-index:1000 !important;
  position:relative;
}


.cards-community a:hover .card .card-body .card-text{
  /*display: block !important;*/
  transition: height .5s ease; 
  opacity: 1;
}

.cards-community a:hover .card .card-body .custom-diagonal-view {
  margin: 26px 0 0 -30px;
}

.custom-diagonal-view {
  width: 1000px;
  height: 200px;
  position:absolute;
  top: 0px;
  margin: 26px 0 0 -30px;
  transform: rotate(3deg);
  transition: margin .5s ease;
  z-index:999!important;
}



@media (min-width:574px) {
  .row.cards-community .col{
    padding: 0;
  } 
}
.cards-community .card .image img{
  max-height: 100%;
}

/**************** MODALS */

.modal-fullscreen {
  width: 100%;
}
.modal {
  right: 0;
  width: 80%;
  left: auto;
  --bs-modal-bg: var(--bs-secondary-bg);
}
.modal-backdrop {
  --bs-backdrop-opacity: 0.9;
}
.modal-header {
  border-bottom: none;
}
.modal-title {
  line-height: 110%;
} 

/**************** MENU ACTIVITIES */
.menu-activities a{
  opacity: .5;
  border-radius: 0;
  transition: all 0.3s ease-out;
}

.menu-activities a:hover {
  opacity: 1;

}
.menu-activities .all  {
  background-color: var(--bs-emphasis-color);
  color: var(--bs-body-bg);
  white-space: nowrap;
  
}
.menu-activities .cycling {
  background-color: #ED7E03;
}

.menu-activities .mind {
  background-color: #98CC5D;
}

.menu-activities .swimming {
  background-color: #28B4C3;
}

.menu-activities .fitness {
  background-color: #ECCB0C;
}

.menu-activities .moving {
  background-color: #E3097E;
}
.menu-activities .tennis {
  background-color: #3DA435;
}
.menu-activities .running {
  background-color: #AF1A3A;
}
.menu-activities a.active {
  opacity: 1;
}
/**************** TABS CALENDAR */

.table, .table > :not(caption) > * > * {
  border: none;
}
.calendar.nav-tabs {
    --bs-nav-tabs-border-width: 0;
    --bs-nav-tabs-border-color: transparent;
    --bs-nav-tabs-border-radius: 0;
    --bs-nav-tabs-link-hover-border-color: transparent;
    --bs-nav-tabs-link-active-color: transparent;
    --bs-nav-tabs-link-active-bg: transparent;
    --bs-nav-tabs-link-active-border-color: transparent;
    border-bottom: none;
    gap: 1px;
    margin-bottom: 1px;
}
.calendar.nav-tabs .nav-link {
  margin:0;
  padding: 0;
  
} 
.table > :not(caption) > * > * {
    padding: 0
}
.calendar .nav-item .nav-link {
  width: 48px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-body-color);
  background-color: var(--bs-border-color);
}
.calendar .nav-item .nav-link.active {
  background-color: var(--bs-secondary-bg);
  color: var(--bs-emphasis-color);
}
table, tr {
  border-collapse: separate;
  border-spacing: 2px;
}
th, tr {
  padding: 2px;
}

td, th {
  text-align: center;
  height: 80px;
   vertical-align: middle;
   line-height: 20px;
   font-weight: 700;
   width: 50%;
   font-size: 15px;
}

.info_club td, th {
    text-align: left;
    height: 50px;
    vertical-align: top;
    line-height: 20px;
    font-weight: 500;
    font-size: 14px;
}
td.white-tab {
  background-color: var(--bs-body-color);
  color: var(--bs-body-bg);
}
td.grey-tab {
  background-color: rgba(237, 237, 237, 1);
  color: var(--bs-body-bg);
}
th.dark-grey-tab {
  background-color: rgba(105, 105, 105, 1);
  color: var(--bs-body-color);
  text-align: center;
  vertical-align: middle;
}


td.cycling-tab {
  background-color: #ED7E031A;
  color: #ED7E03;
  border: 1px solid #ED7E03; 
  transition: all 0.3s ease-out;
}
td.cycling-tab:hover {
  background-color: #ec420c4d;
  color: #ED7E03;
  border: 3px solid #ED7E03; 
  transition: all 0.3s ease-out;
}
td.moving-tab {
  background-color: rgba(231, 12, 236, 0.1);
  color: #E3097E;
  border: 1px solid #E3097E; 
  transition: all 0.3s ease-out;
}
td.moving-tab:hover {
  background-color: rgba(231, 12, 236, 0.3);
  color: #E3097E;
  border: 3px solid #E3097E; 
  transition: all 0.3s ease-out ;
}
td.swimming-tab {
  background-color: rgba(12, 128, 236, 0.1);
  color: #28B4C3;
  border: 1px solid #28B4C3; 
  transition: all 0.3s ease-out;
}
td.swimming-tab:hover {
  background-color: rgba(12, 128, 236, 0.3);
  color: #28B4C3;
  border: 3px solid #28B4C3; 
  transition: all 0.3s ease-out;
}
td.mind-tab {
  background-color: rgba(43, 236, 12, 0.1);
  color: #98CC5D;
  border: 1px solid #98CC5D; 
  transition: all 0.3s ease-out ;
}
td.mind-tab:hover {
  background-color: rgba(43, 236, 12, 0.3);
  color: #98CC5D;
  border: 3px solid #98CC5D; 
  transition: all 0.3s ease-out ;
}
td.fitness-tab {
  background-color: rgba(236, 203, 12, 0.1);
  color: #ECCB0C;
  border: 1px solid #ECCB0C; 
  transition: all 0.3s ease-out ;
}
td.fitness-tab:hover {
  background-color: rgba(236, 203, 12, 0.3);
  color: #ECCB0C;
  border: 3px solid #ECCB0C; 
  transition: all 0.3s ease-out ;
}
td.tennis-tab {
  background-color: rgba(61, 164, 53, 0.1);
  color: #ECCB0C;
  border: 1px solid #ECCB0C; 
  transition: all 0.3s ease-out ;
}
td.tennis-tab:hover {
  background-color: rgba(61, 164, 53, 0.3);
  color: #ECCB0C;
  border: 3px solid #ECCB0C; 
  transition: all 0.3s ease-out ;
}
td.running-tab {
  background-color: rgba(175, 26, 58, 0.1);
  color: #ECCB0C;
  border: 1px solid #ECCB0C; 
  transition: all 0.3s ease-out ;
}
td.running-tab:hover {
  background-color: rgba(175, 26, 58, 0.3);
  color: #ECCB0C;
  border: 3px solid #ECCB0C; 
  transition: all 0.3s ease-out ;
}

@media (min-width:574px) {
  td, th {
    width: 167px;
  }
}

/*************** WORK OFFERS */
.table_lines{
  border-collapse:collapse;
  border-spacing: 0px;
}

.table_lines th{
  font-size: large;
  background-color: var(--bs-emphasis-color);
  color: var(--bs-body-bg);
  border-bottom: none;
  height: 60px;
  text-align: start;
  padding-left: 15px;
  vertical-align: middle;
}

.table_lines td{
  background-color: var(--bs-body-bg);
  color: var(--bs-body-color);  
  height: 50px;
  text-align: start;
  padding-left: 15px;
  border-bottom: 1px solid var(--bs-body-color);
}

.work-offer{
  background-color: var(--bs-secondary-bg);
}
.text-small{
  font-size: small;
}

.add-file-btn{
  float: left;
}
.changeFile{
    overflow: hidden;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: 1px solid #EDEDED;
    border-radius:0 ;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
      padding: 15px 24px;  
}

/**************** FORMS */
.form-control {
    display: block;
    width: 100%;
    padding: 0.9rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: 1px solid #EDEDED;
    border-radius:0 ;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-select {
    --bs-form-select-bg-img: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e);
    display: block;
    width: 100%;
    padding: 0.9rem 2.25rem 0.9rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    border: 1px solid #EDEDED;
    border-radius: 0;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-control:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: var(--bs-emphasis-color);
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(253, 190, 86, 0.25);
}
.form-check-label {
  font-size: 14px;
}
.form-check-label a {
  text-decoration: underline;
}
.form-check-input:checked {
    background-color: var(--bs-emphasis-color);
    border-color: var(--bs-emphasis-color);
}
.form-check-input{
      border: 1px solid var(--bs-emphasis-color);
}
@media (min-width: 576px) {
  .form button{
    width: 100%;
  }
}

 /**************** ACTIVITY */
 .ico-actividad {
  width: 120px;
 }
 .features {
  color: var(--bs-body-color);
 }
 .features .item{
  
  padding: 24px 12px;
  background-color: var(--bs-secondary-bg);
 }

  .features.moving .item{
  border-top: 3px solid rgb(var(--bs-moving));
  padding: 24px 12px;
  background-color: var(--bs-secondary-bg);
 }
 .features.fitness .item{
  border-top: 3px solid rgb(var(--bs-fitness));
  padding: 24px 12px;
  background-color: var(--bs-secondary-bg);
 }
.features.tennis .item{
  border-top: 3px solid rgb(var(--bs-tennis));
  padding: 24px 12px;
  background-color: var(--bs-secondary-bg);
 }
.features.running .item{
  border-top: 3px solid rgb(var(--bs-running));
  padding: 24px 12px;
  background-color: var(--bs-secondary-bg);
 }
.features.swimming .item{
  border-top: 3px solid rgb(var(--bs-swimming));
  padding: 24px 12px;
  background-color: var(--bs-secondary-bg);
 }
.features.mind .item{
  border-top: 3px solid rgb(var(--bs-mind));
  padding: 24px 12px;
  background-color: var(--bs-secondary-bg);
 }
.features.cycling .item{
  border-top: 3px solid rgb(var(--bs-cycling));
  padding: 24px 12px;
  background-color: var(--bs-secondary-bg);
 }
 .features .icon {
  width: 40px;
  height: 40px;
  margin-right: 8px;
 }
 .features p {
  margin-bottom: 0;
  font-size: 14px;
 }
.features h5 {
  font-size: 18px;
  margin-bottom: 8px;
}
/**************** EVENT CAROUSEL */
.swiper {
  width: 95%;
}
.swiper-pagination-bullet-active{
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: #ffffff !important;
}

.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: var(--swiper-navigation-top-offset, 50%);
    width: calc(var(--swiper-navigation-size) / 44* 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px -(var(--swiper-navigation-size) / 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-center {
      justify-content: center;    
}
   
/**************** FOOTER*/
.info_club {  
  color: #b5b5b5;
  font-size: 14px;
  line-height: 1.5em;
  margin-bottom: auto;
}

.info_club.club_name a {  
  color: #fff;
  font-size: 14px; 
}

.info_club.featured_form a {    
  font-size: 16px; 
  font-weight: bold;
  text-transform: uppercase;
}

.privacy li{
  margin-left: 8px;
}
.privacy li a {
  font-size: 12px;
}
.privacy li a:hover {
  text-decoration: underline;
}
.social li {
  margin-left: 1rem;
} 
.social li a:hover {
  opacity: .5;
}
footer {
  background-color: var(--bs-secondary-bg);
  background-image: url(../../images/website/bg-footer.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
footer .image {
  /*height: 38px;
  width: auto;*/
  max-width: 125px;
}
@media (min-width: 576px) {
  footer{
    margin-top: 100px;
    border-top: 1px solid var(--bs-secondary-bg);
  }
}

.form-control.error, .form-control.error:focus
, .form-select.error, .form-select.error:focus
, .changeFile.error, .changeFile.error:focus{
  color:var(--accura-red);
  border-bottom: 1px solid var(--accura-red);
  outline: none;
  box-shadow: inset 0 -1px 0 var(--accura-red);
}

.form-check.error, .form-check.error:focus {
  color:var(--accura-red);
}

.rounded-checked {
  background: var(--bs-emphasis-color);
  color: var(--bs-body-bg);
  text-align: center;
  width: 35px;
  border-radius: 50%;
  height: 35px;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -18px;
}

#dynamic-container .row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: .5rem;
}

@media (max-width: 768px) {
  #dynamic-container .row {
    gap: 1.5rem !important;
    --bs-gutter-x: -1rem !important;
  }
}

.container-fee {
  display: block;
  padding: 0 10px;
}

.container-fee .row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch !important;
}

.container-fee .col-12, .container-fee [class*="col-md-"] {
  display: flex;
}

.content-fee {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  padding: 15px;
  margin: auto;
  background: #c6c6c6;
}

.content-fee.selected {
  box-shadow: 0 0 1px 4px rgb(253 190 86);
}

.header-fee {
  font-size: 33px;
  color: var(--bs-body-bg);
  text-align: center;
  font-weight: bold;
  padding: 15px 10px 0px 10px;
  font-family: 'Bebas Neue', sans-serif;
}

.body-fee {
  color: var(--bs-body-bg);
  text-align: center;
  padding-top: 2px;
  flex-grow: 1;
}

.body-fee p {
  font-size: 13px;
  min-height: 50px;
}
.body-fee-promotion {
   font-weight: 800;
   font-size: 15px;
   margin: -20px 0 0 0;
}

.body-fee ul {
  width: 95%;
  display: block;
  list-style: none;
  padding-left: 5px;
  text-align: left;
  margin: auto;
  padding-bottom: 30px;
}

.body-fee ul li {
  display: list-item !important;
  font-weight: normal;
  font-size: 14px;
  padding-top: 15px;
   position: relative;
  padding-left: 20px;
}
.body-fee ul li::before {
  content: "✔";
  color: #f5c400; /* amarillo */
  position: absolute;
  left: 0;
}

.body-fee .contract {
  font-size: 12px;
  margin-bottom: 15px;
}

.footer-fee {
  margin-top: auto;
  text-align: center;
}

.footer-fee button {
  cursor: pointer;
}

#summary .card-body {
  height: auto !important;
}