/* MODAL */

.modal-background {
    width: 100%;
    height: 100%;
    
    position: fixed;
    
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    
    z-index: -1;
    display: none;
}

.modal-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: -200%;

    max-width: 400px;
    height: fit-content;

    margin: auto auto;
    
    background-color: rgb(25, 25, 25, 0.8);

    border: 1px solid var(--tertiary-colour);
    
    border-radius: 20px;
    
    z-index: -1;
    transition: all .5s ease;
}

.modal-wrapper {
    padding: 20px;
}

.modal-title-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgb(233, 170, 53);
}

.modal-title-wrapper span {
    font-size: 30px;
}

.modal-title {
    font-size: 30px;
    font-weight: 600;
}

.modal-desc {
    color: var(--text-colour);
    font-size: 20px;
    font-weight: 300;

    text-align: center;
}

.modal-button {
    padding: 15px 25px;

    border-radius: 10px;
    border: 2px solid var(--secondary-accent-colour);
    
    background: var(--primary-accent-colour);

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 150px;
    height: 100%;
    
    color: var(--text-colour);
    
    text-decoration: none;
    text-align: center;

    font-weight: 500;

    position: relative;
    z-index: 2;

    transition: all .2s ease;

    cursor: pointer;
}

.modal-button:hover {

    background: #00ba3638;

    border: 2px solid #00ba3638;
}

.background-display {
    display: block !important;
    z-index: 10000 !important;
}

.container-display {
    display: block !important;
}

.z-10 {
    backdrop-filter: blur(10px);
    background: rgb(0, 0, 0, 0.3);
    transition: all .5s ease;
}

.z-11 {
    transition: all 1s ease;
    bottom: 0;
}