.profile-out {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 3rem;
}

.profile-out h1 {
    text-align: center;
}

/*section that appear when non logged in*/

#notAccessed {
    display: flex;
    flex-direction: column;
    align-items: center;
    /*display: none; /*DA TOGLIERE*/
}

/*profile section*/

#profile {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
}

#profile strong {
    color: #00667C;
}

.dismissDefault {
    display: none;
}

#deleteProfile {
    background-color: #a4222f;
    border-color: #a4222f;
}

/*#autocomplete-list {
    width: calc(100% - 6rem);
    max-width: 15.8rem;
}*/

/*psw requirements*/

#pswRequirements {
    position: relative;
}

#requirements {
    position: absolute;
    z-index: 2;
    padding: 0.2rem 0.5rem 0;
    left: 50%;
    transform: translate(-50%);
    top: calc(100% + 15px);
    display: none;
    opacity: 0;
}

.triangle-up {
    width: 0; 
    height: 0; 
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    
    border-bottom: 15px solid white;

    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translate(-50%);
}

.showing {
    animation: showing .5s;
}

@keyframes showing {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.dismissed {
    animation: dismissed .5s;
}

@keyframes dismissed {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/*visual mode change section*/

.visual-mode {
    margin: 1.5rem;
    padding: 1.5rem;
    border-top: 2px solid gainsboro;
    margin-bottom: 0;
    padding-bottom: 0;
}

.visual-out {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.visual-out p {
    margin: 0;
    font-size: x-large;
    font-weight: bold;
}

#deleteProfile {
    background-color: #a4222f;
    border-color: #a4222f;
}

#deleteProfile:hover {
    background-color: #8a1c27;
    border-color: #8a1c27;
}

/*other*/

.input-group-text .fa-check {
    color: green;
}

.input-group-text .fa-xmark {
    color: red;
}

.btn-outline-primary {
    border-color: #006b83;
    color: #006b83;
}

.btn-outline-primary:hover {
    background-color: #006b83;
    border-color: #006b83;
}