/* alerts */
.alert-block-site {
    width: 100vw;
    height: 100vh;
    position: absolute;
    z-index: 1;
    display: none;
}

.alert {
    /* width: 25rem; */
    /* height: 10rem; */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    padding: 1em;
    border-radius: 1.5rem;
    border: 3px solid var(--accent-400);
    background-color: var(--gray-600);
    display: flex; /* flex po uruchomieniu*/ 
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.alert-message {
    text-align: center;
    color: var(--font-white-200);
    font-weight: 600;
    font-size: 2rem;
}

.confirm-btns, .info-btns {
    display: none !important;
}

.btns-visible {
    display: flex !important;
    gap: 1rem;
}

.alert-btn {
    width: 8rem;
    height: 3.5rem;
    font-size: 1.75rem;
    font-weight: bold;
    border-radius: 2rem;
    border: 2px solid var(--gray-200);
    background-color: var(--accent-400);
    color: var(--font-white-200);
}

.alert-btn:hover,
.alert-btn:focus {
    background-color: var(--accent-600);
    transition: background-color 150ms;
    cursor: pointer;  
}

.blur {
    filter: blur(1px);
    transition: filter .5s;
}

@media screen and (max-width: 700px) 
{
    .alert {
        width: 70%;
    }
}

@media screen and (max-width: 410px)
{
    .alert-btn {
        width: 6rem;
        height: 3rem;
    }
    
    .btns-visible {
        gap: .5rem;
    }
}