@font-face {
    font-family: 'Attentica';
    src: url(fonts/Attentica_4F_UltraLight.otf);
}

.unactive {
    display: none!important;
}

.warning {
    position: fixed;
    bottom: 0;
    z-index: 999;
    width: 100%;
    background-color: white;
    font-size: 56px;
    line-height: 0.8;
    font-family: 'Attentica', Arial, Helvetica, sans-serif;
    text-align: center;
    padding: 5px 70px;
    color: #d2d2d2;
    box-shadow: 0 -1px 9px 0 rgb(0 0 0 / 10%);
    text-transform: uppercase;
}

footer {
    display: flex;
    flex-direction: column;
}

footer .warning {
    position: static;
}

.wraning-eye {
    position: absolute;
    box-sizing: content-box;
    right: 0px;
    padding-right: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    background-image: url(img/active.png);
    background-repeat: no-repeat;
    background-position: right 20px center;
    width: 52px;
    position: absolute;
    transition: all 0.3s;
    opacity: 0.3;
    height: 100%;
}

.wraning-eye:hover {
    opacity: 1;
    width: 296px;
    background-color: #f1f1f1;
}

.wraning-eye:hover .confirmation {
    display: block;
}

.confirmation {
    font-size: 12px;
    text-transform: none;
    display: none;
    font-family: Arial, Helvetica, sans-serif;
    position: absolute;
    top: 50%;
    margin: 0 10px 0 10px;
    padding: 0;
    line-height: 0;
    text-align: left;
    color: black;
}

@media (max-width: 1100px) {
    .warning {
        font-size: 40px;
    }
    .warning__text {
        font-size: 40px;
    }
}

@media (max-width: 900px) {
    .warning {
        font-size: 30px;
    }
}

@media (max-width: 450px) {
    .warning {
        font-size: 18px;
        line-height: 100%;
    }
}

.bottom-warning {
    position: static;
}