
html input[type="button"],
input[type="reset"],
input[type="submit"],
.button,
.wp-block-button__link,
.show_as_button > * {
    display: inline-block;
    background-color: var(--primary, #003a65);
    color: #fff;
    border: none;
    font-size: 2rem;
    font-weight: 400;
    padding: .75rem 4.5rem .85rem 1.5rem;
    line-height: 1;
    background-image: url(../img/arrow-next-white.svg);
    background-repeat: no-repeat;
    background-size: .75em;
    background-position: calc(100% - 1rem) 50%;
    box-shadow: -0.33rem 0.5rem .33rem rgba(0,0,0,.12);
    width: fit-content;
    transition: all .3s ease;
    border-radius: 0;
}

.button[download] {
    background-image: url(../img/download.svg);
    background-size: 1em;
}

html input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
.button:hover,
.wp-block-button__link:hover,
.show_as_button > *:hover {
    background-position: calc(100% - 0.5rem) 50%;
    color: #fff;
}

.button[download]:hover {
    background-position: calc(100% - 1rem) 50%;
}


/* html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    border: solid 0.1rem var(--secondary);
    color: var(--primary, #003a65);
    background: var(--secondary);
    padding: 0.5rem 2rem;
}

html input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    background: var(--primary, #003a65);
    color: var(--secondary);
}


.button {
    background-color: var(--secondary);
    background-color: var(--secondary);
    color: #fff;
    display: inline-block;
    padding: 1rem 2rem;
    margin: 0.8rem 0;
    cursor: pointer;
    border-radius: 0;
}

.wp-block-button__link {
    padding: 1rem 2rem !important;
    display: inline-block;
    padding: 1rem 2rem;
    margin: 0.8rem 0;
    cursor: pointer;
    border-radius: 0;
    box-sizing: border-box;
    font-size: inherit !important;
}

.wp-block-button__link:not(.has-background) {
    background-color: var(--secondary);
}

.wp-block-button__link:not(.has-text-color) {
    color: #fff;
}

.button:hover {
    color: #fff;
    background-color: var(--secondary);
    -webkit-box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.3);
    outline: none;
}

.wp-block-button__link:hover {
    -webkit-box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.3);
    outline: none;
}

.wp-block-buttons {
    width: 100%;
    gap: 2rem;
}

.wp-block-button.is-style-outline>.wp-block-button__link {
    border: 1px solid;
    text-align: center;
    padding: calc(1rem - 1px) calc(2rem - 1px) !important;
}

.button.outline {
    background-color: transparent;
    border: 1px solid;
    text-align: center;
}

.button:not(.outline).blue {
    background-color: var(--primary, #003a65);
    color: var(--white);
}

.button.blue.outline {
    background-color: transparent;
    border: 1px solid var(--primary, #003a65);
    color: var(--primary, #003a65);
}

.button.orange.outline {
    background-color: transparent;
    border: 1px solid var(--secondary);
    color: var(--secondary);
}

.button.blue.outline:hover {
    background-color: transparent;
}

.button.white.outline {
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--white);
} */

/* BUTTONS */

.button-controll-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin: 0 0 2rem 0;
    width: 100%;
    gap: 3rem;
}

.button-controll-wrapper:last-child {
    margin-bottom: 0;
}

.button-controll-wrapper.wassermann_block:not(:first-child) {
    margin-top: 2rem;
}

.button-controll-wrapper.center .button {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: auto;
}

.button-controll-wrapper.left .button {
    margin-right: auto;
    margin-left: 0;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}

.button-controll-wrapper.left .desc {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}

.button-controll-wrapper.center .desc {
    width: 100%;
}

.button-controll-wrapper.center {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}

.button-controll-wrapper .desc {
    padding-right: 3rem;
    margin-top: auto;
    margin-bottom: auto;
}

/* .button-controll-wrapper .button {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: -webkit-fit-content;
    width: fit-content;
    width: -moz-fit-content;
    margin-left: auto;
    max-width: 40rem;
    width: max-content;
} */

.button-controll-wrapper .button-wrapper:only-child .button.has_image {
    max-width: 60rem;
}

.button-controll-wrapper .icon {
    width: 1.2em;
    height: 1.2em;
    margin-left: 2rem;
}

.button-controll-wrapper .icon img {
    max-height: 100%;
}

.button-controll-wrapper .button.has_image {
    padding: 0;
    background: none;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    display: block;
    width: 100%;
}

.button-controll-wrapper .button.has_image:hover {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.button-controll-wrapper .button-wrapper {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.button-controll-wrapper.blue_bg_white_text .button {
    background-color: #003a65;
}

/* .button-controll-wrapper.white_bg_orange_text .button {
    border: 1px solid var(--secondary);
    color: var(--secondary);
    background-color: transparent;
}

.button-controll-wrapper.white_bg_orange_text .button img {
    filter: brightness(0) saturate(100%) invert(77%) sepia(61%) saturate(5802%) hue-rotate(1deg) brightness(94%) contrast(103%);
    -webkit-filter: brightness(0) saturate(100%) invert(77%) sepia(61%) saturate(5802%) hue-rotate(1deg) brightness(94%) contrast(103%);
} */

.slide-maintainable .button-controll-wrapper .icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.button-wrapper .button {
    min-height: calc(1em + 1.5rem);
}

.btn-wrapper-prod {
    display: flex;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    align-items: baseline;
    justify-content: flex-end;
    gap: 2rem;
}

.filter-block .btn-wrapper-prod .button-controll-wrapper {
    width: auto;
}

@media only screen and (max-width: 480px) {
    .button-controll-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        margin: 5rem 0 2rem;
    }

    .button-controll-wrapper .desc {
        padding: 0;
        margin-bottom: 1rem;
    }

    .button-controll-wrapper .button.has_image {
        width: 90%;
        margin: auto;
    }
}

button.forminator-button.forminator-button-submit:after {
    content: '';
    padding-left: 10px;
}