.modal-profile {
    color: #666666;
}
.img-container {
    background-color: rgba(210, 210, 210, 0.5);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.img-profile {
    position: relative;
    width: 100%;
    max-width: 310px;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    z-index: 0;
}
.box-edit-img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1;
}
.box-edit-img button {
    background-color: rgba(210, 210, 210, 0.5);
    height: 50%;
    border: 0;
    transition: all 0.2s ease;
}
.box-edit-img button:hover {
    background-color: rgba(210, 210, 210, 0.8);
    font-weight: bold;
    letter-spacing: 1px;
}
.change:hover {
    color: #006d24 !important;
}
.delete:hover {
    color: rgb(209, 0, 0) !important;
}
.delete-form,
.delete {
    height: 100%;
}
.info_item {
    margin-bottom: 5px;
    background-color: rgba(210, 210, 210, 0.3);
    height: 50px;
}
.info_item i {
    background-color: rgba(210, 210, 210, 0.5);
    width: 50px;
    height: 100%;
    text-align: center;
}
.info_item a {
    padding-left: 15px;
    width: auto;
    display: inline-block;
    text-decoration: none;
    color: #666666;
    transition: all 0.5s ease;
}
.info_item a:hover {
    color: #000;
}
.fa-info {
    color: #666666;
}

.fa-share-nodes {
    color: #bba800;
}

.fa-dollar-sign {
    color: #008a2e;
}

.fa-gear {
    color: #6b78ee;
}

.fa-arrow-right-from-bracket {
    color: #850000;
}

.div {
    height: 3px;
    width: 100%;
    background-color: #adadad;
}
.input-success {
    border-color: #008a2e !important;
    background: #008a2e10;
}
.input-error {
    border-color: #ff0101 !important;
    background: #ff010110;
}

.fade-out {
    -webkit-animation: fade-out 1s ease-out both;
    animation: fade-out 1s ease-out both;
}

.scale-in-ver-bottom {
    -webkit-animation: scale-in-ver-bottom 0.25s
        cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    animation: scale-in-ver-bottom 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94)
        both;
}

@-webkit-keyframes scale-in-ver-bottom {
    0% {
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
        -webkit-transform-origin: 0 100%;
        transform-origin: 0 100%;
        opacity: 1;
    }
    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
        -webkit-transform-origin: 0 100%;
        transform-origin: 0 100%;
        opacity: 1;
    }
}
@keyframes scale-in-ver-bottom {
    0% {
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
        -webkit-transform-origin: 0 100%;
        transform-origin: 0 100%;
        opacity: 1;
    }
    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
        -webkit-transform-origin: 0 100%;
        transform-origin: 0 100%;
        opacity: 1;
    }
}

@-webkit-keyframes fade-out {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@keyframes fade-out {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
