/*
  Theme Name:   Azur Child Theme
  Theme URI:    https://webazur.fr
  Description:  Multipurpose child theme for GeneratePress.
  Author:       WebAzur - Digital Agency
  Author URI:   https://webazur.com
  Template:     generatepress
  Version:      2.0.1
*/

/* Standard Gutenberg List */
.wp-block-list {
	margin-left: 2em !important;
}

/* Standard Gutenberg Button*/
.wp-block-button {
    margin-bottom: 40px !important;
}

.wp-block-button .wp-block-button__link {
    display: flex;
    align-items: center;
    column-gap: 0.5em;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    padding: 10px 15px;
}

.wp-block-button .wp-block-button__link::after {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: currentColor;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 512'%3E%3Cpath d='M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 512'%3E%3Cpath d='M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
}

/* Gravity Forms */
#gform_submit_button_1,
.gform_wrapper .gform_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    column-gap: 0.5em;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 9999px;
    background-color: var(--accent-3, #B7D8DB);
    color: var(--contrast, #424c31);
    font-family: var(--gp-font--marcellus), serif;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0px 4px 6px -1px rgba(44, 46, 66, 0.1);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

#gform_submit_button_1:hover,
.gform_wrapper .gform_button:hover {
    background-color: var(--contrast, #424c31);
    color: var(--base-5, #ffffff);
}

/*  Desktop Only*/
@media (min-width: 1025px) {

}

/* Tablet Only */
@media (min-width: 769px) and (max-width:1024px) {

}

/* Mobile Only */
@media (max-width: 768px) {

    /* Button standard */
    .wp-block-button {
        width: 100%;
        display: block;
    }

    .wp-block-button .wp-block-button__link {
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }

}