/* USED ON BOTH EDITOR AND APP NAV */

.profile-edit-box {
    padding: 1.8rem 2rem;
    z-index: 3;
    border-radius: 5px;
    background-color: white;
    position: relative;
}
.profile-edit-header {
    font-weight: bold;
    font-size: 20px;
    color: var(--cool-black);
}
.profile-edit-sub-text {
    color: #4a5568;
    margin-top: 10px;
    font-size: 13.5px;
    padding-bottom: .5rem;
    margin-bottom: 2rem;
}
.profile-edit-section-header {
    font-size: 16px;
    color: var(--cool-black);
    margin-bottom: 10px;
}
.profile-edit-input {
    background-color: white;
    padding: 0 1rem;
    height: 40px;
    outline: none;
    font-size: 14.7px;
    border: 2px solid transparent;
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.2);
    transition: .5s ease border-color;
    width: 100%;
    border-radius: 10px;
}
.profile-edit-section {
    position: relative;
}
.profile-edit-section.error-msg::after {
    content: attr(errortext);
    color: red;
    font-size: 13px;
    position: absolute;
    bottom: -23px;
    width: 100%;
    left: 0;
}
.profile-edit-input::placeholder{
    color: #94a3b8;
}
.profile-edit-input:hover, .profile-edit-input:focus {
    outline: none;
    border-color: #1E90FF;
}
.profile-editing-sections {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}
.profile-picture-box {
    width: 120px;
    height: 120px;
    background-color: white;
    border-radius: 5px;
    cursor: pointer;
    overflow: hidden;
    object-fit: cover;
    position: relative;
    border: 2px solid transparent;
    transition: .4s ease border-color;
}
.profile-picture-box:hover {
    border-color: #1E90FF;
}
.profile-picture-box img {
    width: 100%;
    height: 100%;
}
.profile-picture-list {
    display: flex;
    gap: 1rem;
}
.profile-picture-box.selected {
    border: 2px solid #1E90FF;
}
.profile-picture-box::before {
    content: '\2713';
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: 900;
    font-size: 11px;
    border-radius: 2px;
    top: 5px;
    left: 5px;
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #1E90FF;
    opacity: 0;
    transition: .4s ease opacity;
    z-index: 10;
}

.profile-picture-box.selected::before {
    opacity: 1;
}

.profile-picture-custom {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #1E90FF;
    gap: 1rem;
    font-size: 13px;
    position: relative;
}
#custom-profile-pic {
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
    opacity: 0;
    z-index: 5;
}
.app-nav-account-profile-img-wrapper {
    object-fit: contain;
    overflow: hidden;
}
.app-nav-account-profile-img-wrapper img {
    width: 100%;
    height: 100%;
}
#profile-custom-profile-pic-display {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 9;

}
.op-0 {
    opacity: 0;
    z-index: 1 !important;
}
.profile-picture-custom.selected:hover .profile-custom-delete-box {
    bottom: -2px;
    opacity: 1;
    pointer-events: all;
}
.profile-custom-delete-box {
    position: absolute;
    z-index: 10;
    bottom: -10px;
    left: -0px;
    transition: bottom .4s ease, opacity .4s ease, background-color .4s ease, color .4s ease;
    cursor: pointer;
    width: 100%;
    display: flex;
    font-size: 13px;
    font-weight: bold;
    opacity: 0;
    pointer-events: none;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    background-color: #1E90FF;
    color: white;
    padding: .2rem;
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.2);
}
.profile-custom-delete-box:hover {
    background-color: #1E90FF;
    color: white;
}