/* Place the CSS content here */
.circular-progress {
    --size: 34px;
    --half-size: calc(var(--size) / 2);
    --stroke-width: 2px;
    --radius: calc((var(--size) - var(--stroke-width)) / 2);
    --circumference: calc(var(--radius) * pi * 2);
    --dash: calc((var(--progress) * var(--circumference)) / 100);
    animation: progress-animation 0.5s linear 0s 1 forwards;
}

.circular-progress circle {
    cx: var(--half-size);
    cy: var(--half-size);
    r: var(--radius);
    stroke-width: var(--stroke-width);
    fill: none;
    stroke-linecap: round;
}

.circular-progress circle.bg {
    stroke: #ddd;
}

.circular-progress circle.fg {
    transform: rotate(-90deg);
    transform-origin: var(--half-size) var(--half-size);
    stroke-dasharray: var(--dash) calc(var(--circumference) - var(--dash));
    transition: stroke-dasharray 0.1s linear 0s;
    stroke: var(--color, #007bff);
}

@property --progress {
    syntax: "<number>";
    inherits: false;
    initial-value: 0;
}

@keyframes progress-animation {
    from {
        --progress: 0;
    }
    to {
        --progress: var(--percent);
    }
}

div.consensus.tight {
    width: 38px;
    height: 38px;
    box-sizing: border-box
}

.tmdb-slider {
    background-image: url("../image/trending-bg.svg");
    background-repeat: no-repeat;
    background-size: var(--global-content-width);
    background-position: bottom;
    padding: 0 20px;
}

.tmdb-slider .card.style_1 {
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    border: 1px solid #e3e3e3;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 30px;
    padding: 0 10px;
}

.tmdb-slider div.card.style_1 {
    background: 0 0;
    border: 0;
    box-shadow: none;
    margin-top: 0;
    overflow: visible
}

.tmdb-slider .card.style_1 .image {
    /*box-shadow: 0 2px 8px rgba(0,0,0,.1);*/
    border-radius: 8px;
    width: 100%;
    min-height: calc(150px*1.5);
    height: calc(150px*1.5);
    background: #dbdbdb;
    overflow: hidden
}

.tmdb-slider .card.style_1 .image .wrapper {
    width: 100%;
    height: 100%;
}

.tmdb-slider .card.style_1 .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.tmdb-slider .card.style_1 div.content {
    width: 100%;
    padding: 26px 10px 12px;
    position: relative;
    white-space: normal;
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    flex-wrap: wrap;
    font-size: 16px;
}

.tmdb-slider .card.style_1 div.content div.consensus {
    position: absolute;
    top: -19px;
    left: 10px
}
div.consensus div.outer_ring {
    display: inline-block;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    padding: 4px;
    background-color: #081c22
}

div.consensus .user_score_chart {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
    text-align: center
}

div.card div.consensus.tight div.outer_ring {
    width: 38px;
    height: 38px;
    padding: 2px
}

div.consensus .user_score_chart .percent {
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center
}

div.card div.consensus.tight .user_score_chart .percent .icon {
    padding-top: 1px;
    padding-left: 1px;
    font-size: .6em;
    font-weight: 700;
}

div.consensus .user_score_chart .percent .icon {
    color: #fff
}

div.consensus .user_score_chart svg {
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0
}

.tmdb-slider .card.style_1 div.content .title {
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 0;
}
.tmdb-slider .card.style_1 div.content .release {
    color: rgba(0,0,0,.5);
    font-size: 15px;
}

.tmdb-slider .slick-dots li {
    margin: 0;
}

.tmdb-slider .slick-dots li button:before {
    font-size: 10px;
    color: #21d07a;
}

.tmdb-slider .slick-dots li.slick-active button:before {
    color: #21d07a;
}

.trending .section-title {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.latest-movies .section-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}