/* Generic */
.fp-empty {
    display: none !important;
}

/* Modals */
.fp-modal {
    display: none;
    position: fixed;
    z-index: 20;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    font-size: 1rem;
}

.fp-modal .inner {
    position: relative;
}

.fp-modal .close {
    color: #aaaaaa;
    font-size: 64px;
    font-weight: bold;
    position: absolute;
    top: -20px;
    right: 0;
    transform: rotate(45deg);
}

.fp-modal .close:hover,
.fp-modal .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.fp-modal .flex {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 60px;
}

.fp-modal .inner {
    margin: 0 auto;
    padding: 40px;
    max-width: 1100px;
    background-color: #fefefe;
}

/* Modals: User + form */
.fp-modal .profile .user-img img {
    max-width: 200px;
    box-shadow: 0 1px 3px rgb(0 0 0 / 25%);
    border-radius: 6px;
}

.fp-modal .profile .user-data {
    text-align: center;
}

.fp-modal .profile .user-data h3 {
    margin: 25px 0 !important;
}

.fp-modal .profile .buttons {
    display: none;
    
    position: relative;
}

.fp-modal .profile .buttons button {
    width: 48px;
    height: 48px;
    margin: 0 10px 0 10px;
    padding: 0;
    border-radius: 50%;
    background: none;
    border: 2px solid #fff;
    cursor: pointer;
}

@media all and (max-width: 660px) {
    .fp-modal .flex {
        flex-wrap: wrap;
    }
}

@media (max-width: 365px) {
    .fp-modal .profile .buttons button {
        width: 48px;
        height: 48px;
        margin:0 10px 15px 10px;
    }
}

.fp-modal .registration-form {
    width: 100%;
    padding: 20px;
}

.fp-modal .registration-form .form-group {
    margin-bottom: 12px;
}

.fp-modal .registration-form .input-group-prepend {
    display: none;
}

.fp-modal .registration-form input,
.fp-modal .registration-form button {
    width: 100%;
}