@charset "UTF-8";

html{
    scroll-behavior: smooth;
}

.button{
    cursor : pointer;
}

.consent_mgs{
    width: fit-content;
    margin: auto;
}

.responce_flex{
    display: flex;
}

.error_msg {
    position: relative;
    background: #dc3232;
    padding: 0 8px;
    color: #fff;
    font-size: 1em;
    font-weight: normal;
    display: none;
}.error_msg:before {
    content: '';
    display: block;
    position: absolute;
    bottom: 100%;
    left: 8px;
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-bottom-color: #dc3232;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover, a:focus, a:active {
    text-decoration: none;
    color: inherit;
}