/* * * * * * * * * * * * * * * * * * * */
/*             SEPARATORS              */
/* * * * * * * * * * * * * * * * * * * */

.is-style-mbb-separator-regular{
	border: none;
    border-bottom: 1px solid var(--gray-200);
}


/* * * * * * * * * * * * * * * * * * * */
/*              BULLETS                */
/* * * * * * * * * * * * * * * * * * * */

/* Space between bullets */
.is-style-mbb-bullets-spaced > li{
    margin-bottom: 1rem;
}

/* Numbered circles */
.is-style-mbb-bullets-number-circle{
    counter-reset: list-counter var(--list-start, 0);
    padding-inline-start: 40px;
}
.is-style-mbb-bullets-number-circle > li{
    margin-bottom: 1rem;
}
.is-style-mbb-bullets-number-circle > li{
    counter-increment: list-counter;
}
html.js .is-style-mbb-bullets-number-circle {
    list-style: none;
    padding-inline-start: 4.5rem;
    position: relative;
}
html.js .is-style-mbb-bullets-number-circle > li{
    position: relative;
}
html.js .is-style-mbb-bullets-number-circle > li:before{
    content: counter(list-counter);
    display: flex;
    height: 2.25rem;
    width: 2.25rem;
    align-items: center;
    justify-content: center;
    border-radius: 500px;
    position: absolute;
    font-size: 0.8em;
    font-weight: bold;
    top: 0;
    left: -3.375rem;
    font-family: 'Greycliff CF';
    padding-top: 0.075rem;
    padding-left: 0.05rem;
    background-color: var(--gray-75, #f3f4f5);
}
@media (max-width: 991px) {
    html.js .is-style-mbb-bullets-number-circle {
        padding-inline-start: 3.75rem;
    }
    html.js .is-style-mbb-bullets-number-circle > li:before{
        height: 2rem;
        width: 2rem;
        top: -0.125rem;
        left: -3rem;
    }
}

/* Tick bullets */
.is-style-mbb-bullets-ticks{
    list-style: none;
    padding-left: 2.5rem;
}
.is-style-mbb-bullets-ticks > li{
    margin-bottom: 1rem;
}
.is-style-mbb-bullets-ticks > li:before{
    content: "\f00c";
    font-family: FontAwesome, Arial;
    display: inline-flex;
    width: 2.5rem;
    margin-left: -2.5rem;
    justify-content: center;
    align-items: center;
}


/* * * * * * * * * * * * * * * * * * * */
/*                SEARCH               */
/* * * * * * * * * * * * * * * * * * * */

.is-style-mbb-search-primary .wp-block-search__button{
    margin-left: 0;
    border: 2px solid transparent;
    padding: 0.75rem 1.65rem;
    font-size: 1rem;
    line-height: 1.4;
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    font-family: var(--font-sans);
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
    background-color: #29e0cb;
    color: #062221;
    transition: 0.2s ease all;
}
.is-style-mbb-search-primary .wp-block-search__button:hover{
    background-color: #29e0cb;
    color: #062221;
}
.is-style-mbb-search-primary .wp-block-search__button:active{
    background-color: #1ed1bd;
    color: #062221;
}
.is-style-mbb-search-primary .wp-block-search__button:focus{
    background-color: #29e0cb;
    color: #062221;
    box-shadow: 0 0 0 0.2rem rgba(35,191,173,.5);
}
.is-style-mbb-search-primary .wp-block-search__input{
    height: calc(1.4em + 1.5rem + 4px);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4;
    color: #111;
    background-color: white;
    background-clip: padding-box;
    border: 2px solid #bdc3ca;
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.is-style-mbb-search-primary .wp-block-search__input:hover{
    border-color: var(--teal-800, #444444);
}
.is-style-mbb-search-primary .wp-block-search__input:focus{
    color: #111;
    border-color: #98f0e6;
    outline: 0;
    box-shadow: none;
}
.is-style-mbb-search-primary .wp-block-search__input::-webkit-search-cancel-button{
    -webkit-appearance: none;
}
.is-style-mbb-search-primary.wp-block-search__button-inside .wp-block-search__inside-wrapper{
    background-color: var(--teal-50);
    border-radius: 1rem;
    border: none;
    padding: 0.5rem;
}


/* * * * * * * * * * * * * * * * * * * */
/*                IMAGE                */
/* * * * * * * * * * * * * * * * * * * */

.is-style-mbb-image-rounded-1,
.is-style-mbb-image-rounded-2,
.is-style-mbb-image-rounded-3{
    margin: 2rem 0 2rem;
}
.is-style-mbb-image-rounded-1 img{
    border-radius: var(--border-radius-1, 0.25rem);
}
.is-style-mbb-image-rounded-2 img{
    border-radius: var(--border-radius-2, 0.5rem);
}
.is-style-mbb-image-rounded-3 img{
    border-radius: var(--border-radius-3, 1rem);
}
.is-style-mbb-image-rounded-1 .wp-element-caption,
.is-style-mbb-image-rounded-2 .wp-element-caption,
.is-style-mbb-image-rounded-3 .wp-element-caption{
    color: var(--gray-600, #81888F);
    font-size: 0.875rem;
    line-height: 1.8;
}


