.overlaylog {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgb(0, 0, 0);
    z-index: 49;
    opacity: 0.5;

    display: none;
}

.overlaylog.visible {
    display: flex;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 50;

    background-image: url('/img/homepage.aaad0ca3.jpg');
    background-size: cover;
    max-width: 600px;
    width: 100%;
    min-height: 300px;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 25px;

    display: none;

    animation: fadeIn .3s forwards;
}

.modal.visible {
    display: flex;
}

.modal::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0);
    opacity: 0.5;
    position: absolute;
    left: 0;
    top: 0;
}

.modal__image {
    max-width: 200px;
    position: relative;
    z-index: 52;
}

.modal__title {
    font-family: Soleil, sans-serif;
    position: relative;
    z-index: 55;
    color: #fff;
    font-size: 24px;
}

.modal__button {
    z-index: 52;
    font-family: Soleil, sans-serif;
    font-weight: 600;
}

.rounded-0.font-weight-bold.text-unset.v-btn.v-btn--has-bg.theme--dark.v-size--default.primary700.modal__button {
    background-color: #7b271a;
}

.modal__icon {
    margin-right: 10px;
}

.modal__button .v-btn__content {
    color: #ebb3aa
}

.close__modal {
    color: #fff;
    font-size: 44px;
    position: absolute;
    right: 15px;
    top: 0;
    z-index: 52;
    cursor: pointer;
}

.overlaylog {
    animation: fadeIn .3s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
}