/*-----------------------------------*\ 
    #GUIA D'ESTILS
\*-----------------------------------*/

:root {
    --color-principal: #006E93;
    --color-secundari: #2599c0;
    --background: #eff7f1;
    --blanc:#FBFBFB;
    --gris: #EEEEEE;
    --gris-fosc: #676767;
    --negre:#000000;

    --sombra: 0px 2px var(--color-principal);
    --vora: var(--color-principal) 1px solid;

    --Montserrat: 'Montserrat';
    --Romanica: 'Romanica';
    --Youth: 'Youth';
}

/*-----------------------------------*\ 
    #APP
\*-----------------------------------*/

::-webkit-scrollbar { width:0; height:0 }
::-webkit-scrollbar-thumb { background: transparent}
::-webkit-scrollbar-track { background-color: transparent}

*{
    margin: 0;
    padding: 0;
}

body{
    font-family: var(--Montserrat);
    background-color: var(--background);
}

body > header, main{
    padding-left: 20px;
    padding-right: 20px;
}

/*-----------------------------------*\ 
    #TOOLTIP
\*-----------------------------------*/

.tooltip, .tooltip2 {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  font-size: 12px;
  font-weight: normal;
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #D5B939;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 150%;
  left: 50%;
  margin-left: -60px;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}

.tooltip:hover .tooltiptext, .tooltip2:hover .tooltiptext2  {
  visibility: visible;
}

.tooltip2 .tooltiptext2 {
  font-size: 12px;
  font-weight: normal;
  visibility: hidden;
  width: 200px;
  background-color: black;
  color: #D5B939;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  top: 150%;
  left: 50%;
  margin-left: -60px;
}

.tooltip2 .tooltiptext2::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent black transparent;
}