html {
    position: relative;
    width: 100%;
    min-width: 360px;
    min-height: 100%;
    font-family: "Encode Sans", sans-serif;
    background-color: #e5e5e5
}

body {
    position: absolute;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%
}

.carousel--with-scroll,
.carousel--with-button {
    overflow-x: hidden
}

.carousel__button-area--hidden {
    display: none
}

* {
    box-sizing: border-box
}

a {
    text-decoration: none
}

.container--center {
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto
}

.text-center {
    text-align: center
}

.text-left {
    text-align: left
}

.text-right {
    text-align: right
}

.header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 40px;
    background-color: #fff
}

@media(min-width: 600px) {
    .header {
        flex-direction: row;
        justify-content: space-between
    }
}

.header-others {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 25px auto 0 auto;
    width: 360px;
    max-width: 100%
}

@media(min-width: 600px) {
    .header-others {
        justify-content: flex-end;
        margin: 0;
        width: auto
    }
}

.header__buttons {
    display: flex;
    width: 100%;
    background-color: transparent
}

@media(min-width: 800px) {
    .header__buttons {
        border-left-style: solid;
        border-left-width: 1px;
        border-left-color: #e5e5e5;
        padding: 0 0 0 30px;
        width: auto
    }
}

.header__button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
    width: 50px;
    height: 50px;
    font-size: 0;
    color: #fff
}

.header__button::before {
    content: " ";
    display: block
}

@media(min-width: 600px) {
    .header__button {
        margin: auto 0 auto 10px
    }
    .header__button:first-child {
        margin-left: 0
    }
}

.header__button::before {
    margin: auto;
    width: 60%;
    height: 60%;
    background-color: #454545;
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: 100%;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100%
}

.header__button--menu::before {
    mask-image: url("../images/svg/menu.svg");
    -webkit-mask-image: url("../images/svg/menu.svg")
}

.header__button--place::before {
    mask-image: url("../images/svg/place.svg");
    -webkit-mask-image: url("../images/svg/place.svg")
}

.header__button--profile::before {
    mask-image: url("../images/svg/user.svg");
    -webkit-mask-image: url("../images/svg/user.svg")
}

.header__button--whatsapp::before {
    mask-image: url("../images/svg/whatsapp.svg");
    -webkit-mask-image: url("../images/svg/whatsapp.svg")
}

.header__button--sac::before {
    width: 70%;
    height: 70%;
    mask-image: url("../images/svg/phone-ringing.svg");
    -webkit-mask-image: url("../images/svg/phone-ringing.svg")
}

.button--schedule::before {
    mask-image: url("../images/svg/calendar.svg");
    mask-size: contain;
    -webkit-mask-image: url("../images/svg/calendar.svg");
    -webkit-mask-size: contain
}

.button--contact::before {
    mask-image: url("../images/svg/speech-bubble.svg");
    mask-size: contain;
    -webkit-mask-image: url("../images/svg/speech-bubble.svg");
    -webkit-mask-size: contain
}

.button--account {
    order: 3
}

.button--account::before {
    mask-image: url("../images/svg/user.svg");
    mask-size: contain;
    -webkit-mask-image: url("../images/svg/user.svg");
    -webkit-mask-size: contain
}

.button--menu {
    order: 4
}

.button--menu::before {
    mask-image: url("../images/svg/menu.svg");
    mask-size: contain;
    -webkit-mask-image: url("../images/svg/menu.svg");
    -webkit-mask-size: contain
}

.logo {
    display: block;
    margin: 0 auto
}

@media(min-width: 600px) {
    .logo {
        margin: 0
    }
}

.logo__link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px
}

@media(min-width: 600px) {
    .logo__link {
        max-width: 120px
    }
}

@media(min-width: 1000px) {
    .logo__link {
        width: 100%;
        height: 100%;
        max-width: 200px
    }
}

.logo__image {
    display: block;
    margin: auto;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%
}

.menu-list {
    display: none;
    align-items: baseline;
    justify-content: flex-start;
    margin: 0 0 0 auto;
    padding: 0;
    list-style: none
}

@media(min-width: 800px) {
    .menu-list {
        display: flex
    }
}

.menu-list__item {
    margin: 0 50px 0 0
}

.menu-list__link {
    color: #454545
}

.menu-floating {
    z-index: 101;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    padding: 30px 40px 0 40px;
    width: 400px;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
    background-color: #fff;
    transition: .8s;
    transform: translateX(100%)
}

.menu-floating.active {
    margin: 0;
    transition: .8s;
    transform: none
}

.menu-floating__area.modal-box--opened {
    z-index: 100;
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .8)
}

.menu-floating-header {
    z-index: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 50px 0
}

.menu-floating-header__title {
    margin: 0;
    font-size: 1.8em;
    font-weight: normal;
    color: #454545
}

.menu-floating-header__button {
    display: flex;
    border: none;
    padding: 0;
    width: 44px;
    height: 44px;
    font-size: 0;
    background: transparent
}

.menu-floating-header__button::before {
    content: " ";
    display: block
}

.menu-floating-header__button::before {
    margin: auto;
    width: 18px;
    height: 18px;
    background-color: #454545;
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: 100%;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100%;
    mask-image: url("../images/svg/close.svg");
    -webkit-mask-image: url("../images/svg/close.svg")
}

.menu-floating-list {
    z-index: 1;
    position: relative;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
    list-style: none
}

.menu-floating-list__item {
    margin: 0 0 20px 0;
    font-size: 1.4em
}

.menu-floating-list__link {
    color: #454545
}

.footer {
    padding: 0 10px 10px 10px;
    color: #fff
}

@media(min-width: 600px) {
    .footer {
        padding: 0 20px 20px 20px
    }
}

@media(min-width: 800px) {
    .footer {
        padding: 0 25px 25px 25px
    }
}

.footer__container {
    padding: 20px;
    background-color: #454545;
    background-position: top right;
    background-repeat: no-repeat
}

.footer__description {
    margin: 0 0 30px 0;
    font-size: 1.2em
}

.footer__link {
    color: #fff
}

.footer-data {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    justify-content: center;
    margin: 0 auto;
    width: 1000px;
    max-width: 100%
}

@media(min-width: 800px) {
    .footer-data {
        flex-direction: row-reverse;
        justify-content: flex-end
    }
}

.footer-about {
    margin: 40px auto 0 auto;
    width: 235px;
    max-width: 100%;
    text-align: center
}

@media(min-width: 800px) {
    .footer-about {
        margin: 80px 0 0 80px;
        width: auto;
        text-align: left
    }
}

.footer-about__data {
    margin: 60px 0 0 0
}

@media(min-width: 1000px) {
    .footer-about__data {
        display: grid;
        grid-template-areas: "schedule social" "contact social";
        margin: 40px 0 0 0
    }
}

.footer-about__schedule {
    grid-area: schedule;
    margin: 0 0 40px 0
}

.footer-about__contact {
    grid-area: contact;
    margin: 0 0 60px 0
}

@media(min-width: 800px) {
    .footer-about__contact {
        margin: 0 0 40px 0
    }
}

@media(min-width: 1000px) {
    .footer-about__contact {
        margin: 0
    }
}

@media(min-width: 1000px) {
    .footer-about__social {
        grid-area: social;
        margin: 0 0 0 70px;
        border-left-style: solid;
        border-left-width: 1px;
        border-left-color: #fff;
        padding: 0 0 0 70px
    }
}

.footer-about__title {
    margin: 0 0 10px 0;
    font-size: 1.2em
}

.footer-about__subtitle {
    margin: 0 0 10px 0;
    font-size: 1em
}

.footer-about__description {
    margin: 0;
    font-size: 1em
}

.footer-about__description.number-whatsapp {
    display: flex;
    justify-content: center
}

.footer-about__description.number-whatsapp::after {
    content: ".";
    display: block
}

@media(min-width: 800px) {
    .footer-about__description.number-whatsapp {
        justify-content: flex-start
    }
}

.footer-about__description.number-whatsapp::after {
    margin: 0 0 0 5px;
    width: 18px;
    height: 18px;
    background-color: #fff;
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: 100%;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100%;
    mask-image: url("../images/svg/whatsapp.svg");
    -webkit-mask-image: url("../images/svg/whatsapp.svg")
}

.footer-about__link {
    color: #fff
}

.footer-accredited {
    margin: -50px auto 0 auto;
    padding: 30px;
    min-width: 230px;
    color: #454545;
    background-color: #fff
}

.footer-accredited::before {
    content: " ";
    display: block
}

@media(min-width: 800px) {
    .footer-accredited {
        margin: -50px 0 0 0
    }
}

.footer-accredited::before {
    margin: 0 auto 60px auto;
    width: 130px;
    height: 130px;
    background-image: url("../images/logotipo-vertical-v1.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain
}

.footer-accredited__title {
    margin: 0 0 30px 0;
    font-size: 1.1em;
    text-align: center
}

.footer-accredited__list {
    display: flex;
    align-items: center;
    justify-content: space-around
}

.footer-accredited__item {
    margin: 0 auto
}

.footer-others {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 120px auto 0 auto;
    width: 1200px;
    max-width: 100%
}

@media(min-width: 800px) {
    .footer-others {
        flex-direction: row;
        align-items: baseline;
        justify-content: space-between;
        margin: 50px auto 0 auto
    }
}

.footer__copyright {
    margin: 0;
    font-size: .8em;
    text-align: center
}

@media(min-width: 800px) {
    .footer__copyright {
        text-align: left
    }
}

.developer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: baseline;
    margin: 40px auto 0 auto;
    font-size: .8em
}

@media(min-width: 800px) {
    .developer {
        justify-content: flex-end;
        margin: 0
    }
}

.developer__ciebit {
    display: block;
    margin: 0 0 0 10px;
    width: 50px;
    height: 13px;
    font-size: 0
}

.developer__ciebit::before {
    content: " ";
    display: block
}

.developer__ciebit::before {
    width: 100%;
    height: 100%;
    background-color: #fff;
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: 100%;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100%;
    mask-image: url("../images/svg/ciebit.svg");
    -webkit-mask-image: url("../images/svg/ciebit.svg")
}

.social-networks {
    display: flex;
    align-items: center;
    justify-content: center
}

@media(min-width: 800px) {
    .footer .social-networks {
        justify-content: flex-start
    }
}

.social-networks__link {
    overflow: hidden;
    display: block;
    margin: 0 10px;
    width: 38px;
    height: 38px;
    font-size: 0
}

.social-networks__link::before {
    content: " ";
    display: block
}

@media(min-width: 600px) {
    .social-networks__link {
        width: 38px;
        height: 38px
    }
}

.social-networks__link::before {
    width: 100%;
    height: 100%;
    background-color: #fff;
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: 100%;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100%
}

@media(min-width: 800px) {
    .footer .social-networks__link {
        margin: 0 20px 0 0
    }
}

.social-networks .link--facebook::before {
    mask-image: url("../images/svg/facebook.svg");
    -webkit-mask-image: url("../images/svg/facebook.svg")
}

.social-networks .link--instagram::before {
    mask-image: url("../images/svg/instagram.svg");
    -webkit-mask-image: url("../images/svg/instagram.svg")
}

.modal-box--closed {
    display: none
}

.modal-box__button-close {
    cursor: pointer
}

.windows {
    position: fixed;
    z-index: 999;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: none
}

.windows.active,
.windows.modal-box--opened {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, .8)
}

.windows__title {
    margin: 0 0 20px 0;
    font-size: 2em;
    font-weight: normal;
    color: #454545;
    text-align: center
}

@media(min-width: 600px) {
    .windows__title {
        text-align: left
    }
}

.windows__area {
    position: relative;
    overflow: auto;
    display: flex;
    flex-direction: column;
    margin: auto;
    border-radius: 20px;
    padding: 100px 40px 40px 40px;
    width: max-content;
    max-width: 90%;
    height: max-content;
    max-height: 90%;
    background-color: #fff
}

@media(min-width: 600px) {
    .windows__area {
        padding: 40px
    }
}

.windows__button-close {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    display: flex;
    margin: 0 auto;
    border: none;
    padding: 0;
    width: 44px;
    height: 44px;
    font-size: 0;
    background-color: #fff
}

.windows__button-close::before {
    content: " ";
    display: block
}

@media(min-width: 600px) {
    .windows__button-close {
        right: 30px;
        left: auto;
        margin: 0
    }
}

.windows__button-close::before {
    margin: auto;
    width: 20px;
    height: 20px;
    background-color: #454545;
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: 100%;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100%;
    mask-image: url("../images/svg/close.svg");
    -webkit-mask-image: url("../images/svg/close.svg")
}

.address {
    width: 620px;
    text-align: center;
    color: #454545
}

@media(min-width: 600px) {
    .address {
        text-align: left
    }
}

.address__title {
    margin: 0 0 50px 0;
    font-size: 2em;
    font-weight: normal
}

.address__street {
    margin: 0 0 10px 0;
    font-size: 2em
}

.address__description {
    margin: 0 0 10px 0;
    max-width: 100%;
    font-size: 1.35em
}

.address__button {
    display: block;
    margin: 40px auto 0 auto;
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 1em;
    color: #fff;
    background: #454545
}

.windows--sac .windows__content {
    display: flex;
    flex-direction: column;
    text-align: center
}

.windows--sac .windows-header {
    display: flex;
    flex-direction: column-reverse
}

.windows--sac .windows__title {
    margin: 20px 0 0 0;
    text-transform: uppercase
}

@media(min-width: 600px) {
    .windows--sac .windows__title {
        text-align: center
    }
}

.windows--sac .windows__button-close {
    position: inherit;
    margin: 0 auto
}

.sac__description {
    margin: 0 auto;
    width: 275px;
    max-width: 100%;
    font-size: .95em;
    color: #454545
}

@media(min-width: 600px) {
    .sac__description {
        margin: 0
    }
}

.sac__email {
    margin: 55px 0 0 0;
    font-size: 1em;
    text-align: center;
    color: #454545
}

.sac__email::before {
    content: " ";
    display: block
}

.sac__email--user {
    display: block;
    font-size: 1.7em
}

.sac__email::before {
    margin: 0 auto 5px auto;
    width: 22px;
    height: 22px;
    background: #454545;
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: 100%;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100%;
    mask-image: url("../images/svg/email.svg");
    -webkit-mask-image: url("../images/svg/email.svg")
}

.sac__button {
    display: block;
    margin: 70px auto 0 auto;
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 1em;
    color: #fff;
    background: #454545
}

.whatsapp {
    text-align: center
}

@media(min-width: 600px) {
    .whatsapp {
        display: grid;
        grid-template-columns: 1fr 2fr;
        grid-template-rows: auto;
        grid-template-areas: "qrcode about" "button button";
        column-gap: 3%;
        row-gap: 30px;
        text-align: left
    }
}

.whatsapp__qr-code {
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    border: none;
    width: 220px;
    max-width: 100%;
    height: auto
}

@media(min-width: 600px) {
    .whatsapp__qr-code {
        grid-area: qrcode;
        margin-top: 0
    }
}

.whatsapp-data {
    flex-shrink: 0;
    text-align: center
}

@media(min-width: 600px) {
    .whatsapp-data {
        width: 220px;
        min-width: 220px
    }
}

.whatsapp-about {
    color: #454545
}

@media(min-width: 600px) {
    .whatsapp-about {
        grid-area: about
    }
}

.whatsapp-about__title {
    margin: 0 0 10px 0;
    font-size: 1.2em;
    font-weight: normal
}

.whatsapp-about__description {
    margin: 0 auto;
    width: 230px;
    max-width: 100%;
    font-size: .85em
}

@media(min-width: 600px) {
    .whatsapp-about__description {
        margin: 0
    }
}

.whatsapp-about__number {
    margin: 15px 0 0 0;
    font-size: 1.8em
}

.whatsapp__button {
    display: block;
    margin: 8vh auto 8vh auto;
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 1em;
    color: #fff;
    background: #454545
}

@media(min-width: 600px) {
    .whatsapp__button {
        margin-top: 0;
        margin-bottom: 0;
        grid-area: button
    }
}

.breadcrumbs {
    position: relative;
    height: 230px;
    background-image: url("../images/background-internal-header.jpg");
    background-color: #454545;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover
}

.breadcrumbs__path {
    z-index: 1;
    position: relative;
    margin: 0;
    padding: 15px 20px;
    font-size: .8em;
    color: #fff
}

.breadcrumbs__link {
    text-decoration: none;
    color: #fff
}

.breadcrumbs__icon {
    display: inline-block;
    font-size: 0
}

.breadcrumbs__icon::before {
    content: " ";
    display: block
}

.breadcrumbs__icon::before {
    margin: 0 10px;
    width: 8px;
    height: 8px;
    background-color: #fff;
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: 100%;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100%;
    mask-image: url("../images/svg/arrow-wide.svg");
    -webkit-mask-image: url("../images/svg/arrow-wide.svg")
}

.breadcrumbs__title {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    padding: 0 20px;
    width: 1300px;
    max-width: 100%;
    font-size: 2em;
    text-align: center;
    color: #fff
}

.pagination {
    padding: 80px 20px
}

.pagination__title {
    margin: 0 0 10px 0;
    font-weight: bold;
    font-size: 1.2em;
    text-align: center;
    color: #454545
}

.pagination__form {
    display: flex;
    align-items: stretch;
    justify-content: center;
    margin: 0 auto
}

.pagination__searchContainer {
    display: flex;
    align-items: center;
    margin: 0 30px;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: #454545;
    padding: 10px 10px 10px 0;
    color: #454545
}

.pagination__field {
    border: none;
    padding: 0;
    width: 40px;
    font-size: 1.4em;
    font-family: "Encode Sans", sans-serif;
    text-align: right;
    color: #454545;
    background-color: transparent;
    box-sizing: border-box
}

.pagination__pages {
    margin: 0 0 0 10px;
    font-size: 1.4em
}

.pagination__button {
    cursor: pointer;
    display: flex;
    flex-shrink: 0;
    border-style: none;
    border-radius: 4px;
    padding: 0;
    width: 50px;
    height: 50px;
    font-size: 0
}

.pagination__button::before {
    content: " ";
    display: block
}

.pagination__button::before {
    margin: auto;
    width: 50%;
    height: 50%;
    background-color: #454545;
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: 100%;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100%;
    mask-image: url("../images/svg/arrow-right.svg");
    -webkit-mask-image: url("../images/svg/arrow-right.svg")
}

.pagination__button.button--previous::before {
    transform: rotate(180deg)
}

.pagination__button.button--inactive::before,
.pagination__button:disabled::before {
    background-color: #454545
}

.form__area {
    display: block;
    margin: 0 0 20px 0;
    width: 100%
}

.form__area--medium {
    width: 60%;
    min-width: 300px
}

.form__name {
    display: none
}

.form__field {
    outline: none;
    border-style: none;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: #454545;
    padding: 8px 10px;
    width: 100%;
    max-width: 100%;
    font-size: 1.8em;
    font-family: "Encode Sans", sans-serif;
    color: #454545;
    background: #fff
}

.form__field:focus {
    border-color: #454545;
    color: #454545
}

.form-message {
    display: flex;
    margin: 0 0 30px 0;
    border-radius: 8px;
    width: 100%
}

.form-message::before {
    content: " ";
    display: block
}

.form-message::before {
    flex-shrink: 0;
    border-radius: 50%;
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: 100%;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100%
}

.form-message--error {
    align-items: flex-start;
    justify-content: flex-start;
    padding: 10px 15px 15px 20px;
    color: #fff;
    background-color: #a00
}

.form-message--error::before {
    margin: 0 10px 0 0;
    width: 36px;
    min-width: 36px;
    height: 36px;
    background-color: #fff;
    mask-image: url("../images/svg/error-alert.svg");
    -webkit-mask-image: url("../images/svg/error-alert.svg")
}

.form-message--success {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 50px auto 100px auto;
    padding: 80px 20px;
    width: 750px;
    max-width: 80%;
    text-align: center;
    color: #fff;
    background-color: #0e8900
}

.form-message--success::before {
    margin: 0 auto 30px auto;
    width: 70px;
    min-width: 70px;
    height: 70px;
    background-color: #fff;
    mask-image: url("../images/svg/success-alert.svg");
    -webkit-mask-image: url("../images/svg/success-alert.svg")
}

.form-message__data {
    padding: 2px 0 0 0
}

.form-message__title {
    margin: 0 0 5px 0;
    font-size: 1.2em;
    font-weight: normal
}

.form-message__description {
    margin: 0;
    font-size: .9em
}

.form .error {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    font-size: .8em;
    color: #b33e36
}

.form .error::before {
    content: " ";
    display: block
}

.form .error::before {
    margin: 0 4px 0 0;
    width: 12px;
    height: 12px;
    background-color: #b33e36;
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: 100%;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100%;
    mask-image: url("../images/svg/error-alert.svg");
    -webkit-mask-image: url("../images/svg/error-alert.svg")
}
