i {
    cursor: pointer;
}

.community-card {
    max-width: 600px;
    background: white;
    border-radius: 10px;
    margin: auto;
    margin-bottom: 25px;
    padding-bottom: 5px;
    height: auto;
    position: relative;
}

.community-card .classboard-swiper-pagination {
    padding: 10px;
    width: 100% !important;
    bottom: unset !important;
    top: unset !important;
}

.community-card > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: 200ms transform, 200ms left;
}

.community-card > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 1.5px;
}

.community-image-container {
    width: 100%;
    background: black;
    height: auto;
    position: relative;
    overflow: hidden;
    max-height: 600px;
}

.community-image {
    max-width: 100%;
    max-height: 600px;
    /*max-height: 70vh;*/
    height: auto;
    position: relative;
}

.community-image-link {
    position: relative;
}

.community-image-backdrop {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    /* overflow: hidden; */
    width: 100%;
    height: 100%;
    position: absolute;
    filter: blur(20px) saturate(1.5);
    transform: scale(4);
    opacity: .5;
}

.community-project-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.community-poster-comment {
    /* transition: all 200ms ease-in-out;
     display: -webkit-box;
     -webkit-line-clamp: 3;
     -webkit-box-orient: vertical;
     overflow: hidden;*/
    font-size: .9rem;
    padding: 0 15px;
    height: auto;
    margin-bottom: 10px;
}

.community-date {
    font-weight: 400;
    font-size: .7rem;
    color: var(--main-grey-shadow);
    line-height: .7rem;
}

.community-like {
    text-align: center;
    width: 24px;
}

.community-like[data-like='0']::after {
    content: 'favorite_border';
}

.community-like[data-like='1']::after {
    content: 'favorite';
    color: red;
}

.community-like-count {
    font-size: .7rem;
    text-align: center;
}

[contentEditable]:empty:not(:focus):before {
    content: attr(data-text);
    pointer-events: none;
}

.community-more-options {
    cursor: pointer;
}

.community-option-item {
    cursor: pointer;
}

.community-removed-post {
    background-color: var(--main-grey);
    height: 50px;
    text-align: center;
    font-size: 2rem;
    font-weight: 900;
}

.community-removed-post:after {
    content: "Post Removed";
}

.community-post-header {
    width: 100%;
    height: 70px;
    padding: 0 15px;
    position: relative;
}

.community-poster {
    font-weight: 900;
    font-size: 1rem;
}

.community-poster-icon {
    border-radius: 50px;
    min-width: 40px;
    min-height: 40px;
    background: var(--main-blue);
    font-weight: 700;
    color: white;
    -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.3);
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.3);
}

.community-more-options-dropdown {
    position: absolute;
    top: 25px;
    right: 10px;
}

/*Comment section*/
.community-post-single-comment {
    width: 80%;
    margin-bottom: 10px;
    transition: all 200ms ease-in-out;
}

.community-single-comment-container {
    padding: 5px;
    border-radius: 25px;
    background: white;
    width: 100%;
    position: relative;
}

.community-single-comment-options-dropdown {
    width: 10%;
}

.community-single-comment-options {
    /*width: 10%;*/
    opacity: 0;
    color: var(--main-charcoal);
    cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
    .community-post-single-comment:hover .community-single-comment-container {
        background: var(--main-grey);
    }

    .community-post-single-comment:hover .community-single-comment-options {
        opacity: 1 !important;
    }
}


.community-single-comment-action-container {
    right: 0px;
    top: 0px;
    height: 100%;
    width: 0%;
    opacity: 0;
    background: var(--main-blue-shadow);
    position: absolute;
    border-radius: 15px;
    color: white;
    font-weight: 900;
    transition: all 200ms ease-in-out 0s;
    pointer-events: none;
    overflow: hidden;
}

.community-single-comment-report {
    /*right: 0px;*/
    /*top: 0px;*/
    height: 100%;
    width: 100%;
    /*opacity: 0;*/
    background: var(--main-blue-shadow);
    /*position: absolute;*/
    /*border-radius: 15px 50px 50px 15px;*/
    color: white;
    font-weight: 900;
    transition: all 200ms ease-in-out 0s;
    /*pointer-events: none;*/
}

.community-single-comment-delete {
    /*right: 0px;*/
    /*top: 0px;*/
    height: 100%;
    width: 100%;
    /*opacity: 0;*/
    background: red;
    /*position: absolute;*/
    /*border-radius: 15px 50px 50px 15px;*/
    color: white;
    font-weight: 900;
    transition: all 200ms ease-in-out 0s;
    /*pointer-events: none;*/
}

.community-post-view-all-comments {
    font-size: 0.8rem;
    color: var(--main-grey-shadow);
    margin-left: 10%;
    cursor: pointer;
}

.community-single-comment-icon {
    border-radius: 50px;
    min-width: 35px;
    min-height: 35px;
    background: var(--main-blue);
    margin-right: 10px;
    font-weight: 700;
    color: white;
    -webkit-box-shadow: 1px 1px 4px 1px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 1px 1px 4px 1px rgba(0, 0, 0, 0.3);
    box-shadow: 1px 1px 4px 1px rgba(0, 0, 0, 0.3);
    transition: all 200ms ease-in-out 0s;
}

.community-single-comment-text {
    transition: all 200ms ease-in-out 0s;
}

.community-post-new-single-comment-textbox {
    border: 0px;
    font-size: 0.8rem;
    color: var(--main-grey-shadow);
    width: 100%;
    outline: none;
    margin-top: 0px;
    margin-bottom: 0px;
    height: 44px;
    resize: none;
}

.community-post-submit-comment {
    margin-left: 5px;
    margin-right: 5px;
    cursor: pointer;
}

.sl-overlay {
    background: black !important;
}

.sl-close {
    color: white !important;
}


/*New V3 Community*/
.community-new-image-container {
    /*height:500px;*/
}


/*Loading Bar*/
.loading {
    display: none;
}

.no-content .loading {
    display: block;
    margin: auto;
}

.loading {
    margin: auto;
    width: fit-content;
}

.loading-bar {
    display: inline-block;
    width: 4px;
    height: 18px;
    border-radius: 4px;
    animation: loading 1s ease-in-out infinite;
}

.loading-bar:nth-child(1) {
    background-color: #3498db;
    animation-delay: 0;
}

.loading-bar:nth-child(2) {
    background-color: #c0392b;
    animation-delay: 0.09s;
}

.loading-bar:nth-child(3) {
    background-color: #f1c40f;
    animation-delay: .18s;
}

.loading-bar:nth-child(4) {
    background-color: #27ae60;
    animation-delay: .27s;
}

@keyframes loading {
    0% {
        transform: scale(1);
    }
    20% {
        transform: scale(1, 2.2);
    }
    40% {
        transform: scale(1);
    }
}