.publish-progress-bar {
    width: 50%;
    border-radius: 19px;
    background: linear-gradient(to right, #ff902e 70%, #eaeaea 0%);
    display: block;
    height: 12px;
}

.publish-search-bar {
    margin: auto;
    width: 70%;
    position: relative;
}

.publish-search-bar input {
    border-radius: 20px;
}

.publish-search-bar i {
    position: absolute;
    right: 15px;
    top: 8px;
}

/* BANNER */

.main-banner {
    align-items: center;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    margin-top: 5%;
}

.main-banner .banner-header {
    width: 25rem;
    z-index: 9;
}

.main-banner h2 {
    line-height: 3rem;
    color: #03314b;
    font-size: 2.2rem;
    font-weight: bold;
}

.banner-thumbnail {
    width: 100%;
    height: 240px;
    background-position: 20% 80%;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url("/static/assets/img/default/mydashboard.png");
}

.publish-notfound {
    width: 100%;
}

.publish-notfound img {
    width: 200px;
}

/* FILTER */
.grid-view {
    margin-right: 4%;
    text-align: right;
}

.grid-view i {
    font-size: 1.6em;
    padding: 8px;
    cursor: pointer;
}

.grid-view i:hover,
.grid-view i.active {
    background: #15cdff;
    color: white;
}

.checkbox {
    font-weight: normal;
    color: #000;
}

.filter {
    float: left;
    width: 20%;
}

.filter > i {
    color: white;
    font-size: 1em !important;
    border-radius: 50%;
    background: #15cdff;
    padding: 8px;
}

.filter .title {
    font-weight: bold;
    font-size: 16px;
    margin-left: 5px;
}

.filter-group {
    margin-top: 10px;
}

.filter-group ul {
    padding-left: 20px;
}

.publish-loader {
    margin-left: 50%;
}

/* LIST VERTICAL*/

.publish-container {
    margin-right: auto;
    margin-left: auto;
    margin: 0 5% 5%;
}

.publish-row {
    display: flex;
}

.publish-section-title {
    text-transform: uppercase;
}

.publish-card-grid {
    text-align: left;
    display: flex;
    flex-wrap: wrap;
}

.publish-card {
    padding: 0 1rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    /* width: 100%; */
}

.publish-card button {
    z-index: 3;
    margin-top: auto;
    color: #2ce080;
}

.publish-card button:hover {
    margin-top: auto;
    background: #2ce080;
    border-color: #2ce080;
    color: white;
}

.publish-card .publish-card-media {
    min-height: 12rem;
    position: relative;
    /* border: 1px solid #BAC8CE; */
    border-bottom: 0;
}

.publish-card .publish-card-media img {
    z-index: -9;
    position: relative;
    height: 15rem;
    width: 100%;
    object-fit: cover;
}

.publish-card .publish-card-media .background-default {
    z-index: -9;
    position: relative;
    height: 15rem;
    width: 100%;
    color: white;
    padding: 4rem 1rem;
    text-align: center;
    font-weight: bold;
    font-size: 1.5em;
}

.publish-card .publish-card-media .author {
    font-weight: bold;
    font-size: 1.1em;
    position: absolute;
    background: #e6fc88;
    padding: 0.5rem;
    bottom: 0;
    left: 0;
}

.publish-card .publish-card-body {
    background: white;
    display: flex;
    flex-direction: column;
    flex: auto;
    padding: 1.5rem 1rem 0rem 1rem;
    border: 1px solid #bac8ce;
    border-bottom: 0;
    border-top: 0;
}

.publish-card .publish-card-body .title {
    font-weight: bold;
    font-size: 1em;
}

.publish-card .publish-card-body .desc {
    line-height: 1.5;
    position: relative;
    max-height: 2.5rem;
    overflow: hidden;
    color: #838f93;
}

.dv-star-rating-star {
    cursor: pointer !important;
}

.publish-card .publish-card-body .stats {
    display: flex;
    /* cursor: pointer; */
    margin-top: auto;
    line-height: 0;
}

.publish-card .publish-card-body .stats:hover {
    color: #9e9e9e;
}

.publish-card .publish-card-body .stats small {
    font-size: 15px;
    color: #9e9e9e;
}

.publish-card .publish-card-body .desc::before {
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #fff 50%);
    content: "\200C";
    display: block;
    position: absolute;
    right: 0;
    text-align: center;
    top: 1.25125rem;
    width: 30%;
}

.publish-card .publish-card-body p {
    margin-top: auto;
}

.publish-card .publish-card-body .main-link {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    height: calc(100% - 85px);
}

.publish-card.loading .btn {
    background: #f1f1f1;
    height: 47px;
}

.loading {
    position: relative;
}

.loading::after {
    display: block;
    content: "";
    position: absolute;
    width: 20%;
    height: 100%;
    transform: translateX(0%);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: loading 0.7s infinite;
}

@keyframes loading {
    100% {
        transform: translateX(350%);
    }
}

@media (max-width: 1024px) {
    .publish-card {
        width: 50%;
        padding: 0 0.5rem;
    }
}

@media (max-width: 768px) {
    /* LIST HORIZONTAL */
    .publish-card-grid-horizontal {
        display: block !important;
    }
    .publish-card {
        width: 100%;
        padding: 0;
    }
    .publish-card-horizontal {
        margin-bottom: 20px;
    }
}

/* LIST HORIZONTAL */
.publish-card-grid-horizontal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 25px;
    column-gap: 25px;
}

.publish-card-horizontal {
    position: relative;
    border: 1px solid #f3f3f3;
    border-right: 0px;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15);
}

.publish-card-horizontal:hover {
    box-shadow: 0 0 0 1px #15cbff;
}

.publish-card-horizontal .card-body {
}

.publish-card-horizontal .card-img {
    height: 152px;
    background-size: cover;
}

.publish-card-horizontal .publish-card-body .title .dv-star-rating-star {
    font-size: 1.8em;
}

/* PAGING */

.page-nav {
    display: flex;
    justify-content: center;
}

.page-nav i {
    padding: 3px 10px;
    border-radius: 5px;
    color: #15cdff !important;
}

.page-nav i:hover {
    background: rgba(204, 204, 204, 0.3);
}

.page-nav .is-first-page {
    color: #ccc !important;
}

.page-nav .is-all-loaded {
    color: #ccc !important;
}
