/* region */
.cookies-agreement{
    --notify-background: #F3F7F9;
    --notify-border-radius: 0;
    --text-font-family: "Open Sans";
    --text-color: #4D4D4D;
    --text-color-second: #fff;
    --url-color: #009DDB;
    --url-color-hover: #009DDB;
    --button-color: #fff;
    --button-color-hover: #fff;
    --button-border-radius: 999px;
    --button-background: #009DDB;
    --button-background-hover: #009DDB;
    --button-background-active: #009DDB;
}
.cookies-agreement{
    display: none;
    z-index: 500;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: var(--text-font-family);
}
.cookies-agreement.show{
    display: flex;
}
.cookies-agreement form{
    width: 100%;
    height: 100%;
}
.cookies-agreement label{
    z-index: 9;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    bottom: 70px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 30px;
    background: var(--notify-background);
    border-radius: var(--notify-border-radius);
    flex-wrap: wrap;
}
.cookies-agreement a{
    color: var(--url-color);
}
.cookies-agreement a:hover{
    color: var(--url-color-hover);
}
.cookies-agreement input{
    display: none;
}
.cookies-agreement span{
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: var(--text-color);
}
.cookies-agreement .button-group{
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.cookies-agreement .disagreement-button{
    padding: 10px 45px;
    cursor: pointer;
    background-color: transparent;
    color: var(--url-color);
    line-height: 21px;
    white-space: nowrap;
    border: 1px solid var(--button-background);
    border-radius: var(--button-border-radius);
    outline: none;
    transition: box-shadow 240ms linear;
    width: 100%;
    z-index: 2;
    display: flex;
    max-width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-style: normal;
    font-size: 16px;
    text-transform: initial;
}
.cookies-agreement .disagreement-button:hover{
    box-shadow: 0 0 4px 0 currentColor;
}
.cookies-agreement .consent-button{
    padding: 10px 45px;
    cursor: pointer;
    background-color: transparent;
    color: var(--text-color-second);
    line-height: 21px;
    white-space: nowrap;
    border: 1px solid var(--button-background);
    border-radius: 30px;
    outline: none;
    transition: box-shadow 240ms linear;
    width: 100%;
    z-index: 2;
    display: flex;
    max-width: 100%;
    justify-content: center;
    align-items: center;
    background: var(--button-background);
    text-align: center;
    font-style: normal;
    font-size: 16px;
    text-transform: initial;
}
.cookies-agreement .consent-button:hover{
    background-color: var(--button-background-hover) !important;
    color: var(--button-color-hover);
}
.cookies-agreement .consent-button:active{
    background-color: var(--button-background-active) !important;
}
/* endregion */
@media (min-width: 1024px){
    .cookies-agreement label {
        flex-wrap: nowrap;
    }
}
@media (min-width: 456px){
    .cookies-agreement .button-group {
        flex-wrap: nowrap;
    }
}