/* ImageCrop ================================================================================ */

.crop-img {
    display: inline;
    width: 100%;
    height: 100%;
}

.crop-img-cont {
    width: 100%;
    max-height: 600px;
}

.crop-preview {
    overflow: hidden;
    width: 200px;
    height: 200px;
    border-radius: 50%;
}

#coverModal .crop-preview {
    border-radius: 0 !important;
}

#avatarModal .modal-dialog,
#coverModal .modal-dialog {
    max-width: 1000px !important;
    max-height: 600px !important;
}

.logo-img {
    width: 215px;
}

.h-fit {
    height: fit-content;
}

.favorite-btn-container {
    z-index: 200;
    position: absolute;
    background-color: var(--secondary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    cursor: pointer;
}

.favorite-btn-container:hover {
    background-color: var(--secondary-hover);
}

.favorite-btn-container i {
    color: var(--white);
    font-size: 1.5rem;
    pointer-events: none;
    line-height: 1;
}

.favorite-btn-container i.favorite {
    color: #ff0000;
}

.favorite-btn-left {
    top: 1rem;
    left: 1rem;
}

.favorite-btn-right {
    top: 1rem;
    right: 1rem;
}

@media (max-width: 768px) {
    .crop-img-cont {
        max-height: 350px;
        margin-bottom: 20px;
    }

    .logo-img {
        width: 180px;
    }
}

.profile-card-container {
    border-radius: 20px;
    width: 75%;
    margin: 3rem auto;
}

.profile-data-container {
    margin-top: 6rem;
}

@media (max-width: 565px) {
    .profile-card-container {
        /* border-radius: 20px; */
        width: 100%;
        /* margin: 3rem auto; */
    }
}
