* {
    margin: 0;
    padding: 0;
    list-style: none;
    font-style: normal;
    font-variant-ligatures: none;
}

.hide {
    display: none;
}

input[type=submit],
button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


@font-face {
    font-family: 'Berlingske-web';
    src: url('fonts/BerlingskeSerif-Regular.woff2') format('woff2'),
        url('fonts/BerlingskeSerif-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Berlingske-web';
    src: url('fonts/BerlingskeSerif-Italic.woff2') format('woff2'),
        url('fonts/BerlingskeSerif-Italic.woff') format('woff');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Berlingske-web';
    src: url('fonts/BerlingskeSerif-Bold.woff2') format('woff2'),
        url('fonts/BerlingskeSerif-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Berlingske-web';
    src: url('fonts/BerlingskeSerif-BoldItalic.woff2') format('woff2'),
        url('fonts/BerlingskeSerif-BoldItalic.woff') format('woff');
    font-weight: 700;
    font-style: italic;
}


.button {
    display: inline-flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 15px 0;
    background: #4cb571;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    outline: none;
    box-sizing: padding-box;
    cursor: pointer;
    border: none;
    position: relative;
    /* background-image: linear-gradient(to top, #2c9a58 0%, #75d17b 100%); */
    border-bottom: 4px solid #1b8140;
    height: 76px;
    box-shadow: inset 5px 5px 20px rgb(255 255 255 / 35%);
    width: 272px;
    border-radius: 10px;
}

.button:hover {
    background-image: linear-gradient(to top, #2c9a58 0%, #8ee693 100%);
}

.button:active {
    top: 1px;
}

.button:disabled {
    box-shadow: none;
    background: #ddd;
    border-color: #d5d5d5;
    color: #fff;
}

.flexi {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    justify-content: flex-start;
}

.abs-bf {
    position: relative;
}

.abs-bf:before {
    content: "";
    display: block;
    position: absolute;
    z-index: 2;
}

.anim {
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.anim.active {
    transform: translateX(0) translateY(0);
    opacity: 1;
}

.form__loader {
    height: 15px;
    margin-bottom: -15px;
    background: url(../img/loader.svg) center center no-repeat;
    -webkit-background-size: 20px;
    background-size: 20px;
    opacity: 0;
}

.form__loader.active {
    opacity: 1;
}