/**
 * Fichier  : /features/planity/assets/css/style.css
 * Fonction : style du bouton de reservation Planity
 */


/* ==================================================
   BOUTON PLANITY
================================================== */

a.planity {
    height: var(--button-height);
}

a.planity {
    display: grid;
    grid-template-columns: auto 6em;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

a.planity {
    background-color: #111;
    border: 1px solid #333;
    border-radius: var(--button-borderRadius);
}

a.planity {
    padding: 0 20px;
    box-sizing: border-box;
}


/* ==================================================
   CONTENU
================================================== */

a.planity div {
    background-color: transparent;
    border: none;
    border-radius: 0;
}

a.planity div {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

a.planity div svg {
    width: auto;
    height: 20px;
}

a.planity div svg {
    margin-top: -1px;
}

a.planity div span {
    font-family: 'content-font';
    font-size: 14px;
}

a.planity svg,
a.planity div span {
    color: #fff;
}


/* ==================================================
   RESPONSIVE
================================================== */

@media screen and (max-width: 1024px) {

    a.planity {
        grid-template-columns: auto 5.5em;
    }

    a.planity div svg {
        margin-top: -2.5px;
    }

    a.planity div span {
        display: none;
    }

}