/*
  Aquarius - surcharge (par rapport à Claro) des buttons
  CBE - V1.0    - 30.12.2024
*/

.button a, .button a:hover, .button a:focus, .button a:visited, .button a:active,
.more-link a, .more-link a:hover, .more-link a:focus, .more-link a:visited, .more-link a:active  {
    color: black;
}


.button, .button:first-child, .more-link {    /* attention ID à changer selon le nom du bloc ! */
    display: inline-block;
    padding: 0.3em 0.7em;
    margin: 0.2em 1em 1em 1em;
    text-align: center;
    color: black;
    font-family: inherit;
    font-size: 0.9em;
    line-height: 1rem;
    text-decoration: none;
    border: 1px solid #a6a6a6;
    border-radius: 20em;
    background-color: #f2f1eb;
    background-image: -webkit-linear-gradient(top, #f6f6f3, #e7e7df);
    background-image: linear-gradient(to bottom, #f6f6f3, #e7e7df);
    text-decoration: none;
    text-shadow: 0 1px hsla(0, 0%, 100%, 0.6);
    font-weight: 600;
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
    -webkit-font-smoothing: antialiased;
    width: auto !important;
}

.intable-button {
  /* display: inline-flex!important; */
  display: inline-block;
  min-height: 0em!important;
  margin: 0;
  padding: calc(var(--dropbutton-extrasmall-spacing-size) - var(--dropbutton-border-size)) calc(var(--space-l) - var(--dropbutton-border-size));
  cursor: pointer;
  text-align: center;
  -webkit-text-decoration: none;
  text-decoration: none;
  color: var(--button-fg-color);
  border: var(--dropbutton-border-size) solid transparent !important; /* 1 */
  border-radius: var(--button-border-radius-size);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  background-color: var(--button-bg-color);
  font-size: var(--dropbutton-extrasmall-font-size);
  font-weight: 700;
  line-height: var(--dropbutton-extrasmall-line-height);
  appearance: none;
  -webkit-font-smoothing: antialiased;
}