/**
 * Fichier  : /features/prices/assets/css/booknow.css
 * Fonction : style du bloc 'réserver votre séaance en 30 secondes'
 */


/* ==================================================
   CONTENEUR PRINCIPAL
================================================== */

#booknow {
    background: var(--gradient__2);
    border: 1px solid var(--color__1);
    border-radius: var(--block-borderRadius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

#booknow {
    box-sizing: border-box;
    padding: 2em 1.5em;
}

#booknow {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.2em;
}


/* ==================================================
   HEADER
================================================== */

#booknow header {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 1em;
}

/*** ICÔNE ***/

#booknow header svg {
    background-color: var(--color__3);
    border: 3px solid var(--color__1);
    border-radius: 50%;
    box-shadow: 0 0 10px #000;
}

#booknow header svg {
    padding: 15px;
}

#booknow header svg {
    width: 28px;
    height: auto;
}

#booknow header svg {
    color: #fff;
}

/*** CONTENU ***/

#booknow header div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

#booknow header div h5 {
    font-family: 'bold-font';
    font-size: 1.1em;
    color: var(--color__3);
}

#booknow header div h5 span {
    margin: 0 2px;
}

#booknow header div h5 span {
    font-family: 'aesthetic-font';
    font-size: 1.5em;
    letter-spacing: 1px;
    color: #fff;
}

#booknow header div p {
    background-color: #fff;
    border-radius: 50px;
    padding: 3px 20px;
}

#booknow header div p {
    font-family: 'bold-font';
    font-size: .75em;
    text-transform: uppercase;
}

#booknow header div p {
    color: var(--color__1);
}


/* ==================================================
   TEXTE
================================================== */

.paragraph {
    font-family: 'content-font';
    font-size: .85em;
    line-height: 1.5em;
    color: #fff;
}


/* ==================================================
   ICÔNES
================================================== */

#booknow .icons {
    height: 3.5em;
}

#booknow .icons {
    border: 1px dashed #fff;
    border-radius: 2px;
}

#booknow .icons {
    display: grid;
    grid-template-columns: auto auto auto;
    justify-content: space-evenly;
}

#booknow .icons div {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: .6em;
}

#booknow .icons div img {
    width: 32px;
    height: auto;
}

#booknow .icons div img {
    filter: invert(1);
}

#booknow .icons div span {
    font-family: 'content-font';
    font-size: 12px;
    color: #fff;
}


/* ==================================================
   SÉCURITÉ
================================================== */

#booknow .security {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 3px;
}

#booknow .security {
    mix-blend-mode: overlay;
}

#booknow .security svg {
    width: 16px;
    height: auto;
}

#booknow .security span {
    font-family: 'content-font';
    font-size: 11px;
}

#booknow .security svg,
#booknow .security span {
    color: #fff;
}