/*
Theme Name: BreakDance enhance
Theme URI: 
Author: Kevin Flabat
Author URI: 
Description: 
Version: 1.8
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: breakdance
*/
body {
    margin: 0;
    padding: 0;
}
/* Pill Indicator Styles */
.js-tablist {
    position: relative; /* establish positioning context */
    /* define defaults for our pill variables */
    --pill-offset: 0px;
    --pill-width: 0px;
  }
  
  /* the pill itself */
  .js-tablist::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: var(--pill-width);
    height: var(--activeUnderlineSize); /* e.g. 2px */
    background-color: var(--activeUnderlineColor);
    border-radius: var(--activeUnderlineRadius);
    transform: translateX(var(--pill-offset));
    transition:
      transform var(--bde-transition-duration) ease,
      width     var(--bde-transition-duration) ease;
    pointer-events: none;
    z-index: 0;
    padding: 5px;
  }


  .marques-content .section-container {
    padding: 0 !important;
}
  
  .activities-pill {
    height: 50px !important;
    top: 21px;
  }
  /* make sure your tabs sit above it */
  .js-tab {
    position: relative;
    z-index: 1;
  }
  
  .bde-tabs__tabslist {
    border-radius: 64px;
    border: 1px solid rgba(58, 116, 152, 0);
    background: rgb(255, 255, 255);
    box-shadow: rgba(58, 116, 152, 0.38) 0px 3px 10px 0px;
    display: inline-block;
    width: 575px !important;
    overflow: hidden;
    height: 90px;
  }


  


  .breakdance .bde-advanced-tabs-103-211 .bde-tabs__tab.is-active, .breakdance .bde-advanced-tabs-103-211 .bde-tabs__tab.is-active:hover {
    background: none !important;
  }
  /* 1. On the tabs-list container, zero-out the underline sizes & colours */
  .js-tablist {
    position: relative;
    --pill-offset: 0px;
    --pill-width : 0px;
  }
  
  .js-tablist::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width     : var(--pill-width);
    height    : var(--activeUnderlineSize);
    background: var(--activeUnderlineColor);
    transform : translateX(var(--pill-offset));
    transition: transform var(--bde-transition-duration) ease,
                width     var(--bde-transition-duration) ease;
    pointer-events: none;
    z-index: 0;
  }
  