.cd-story {
    height: auto;
    margin: 30px auto;
}
.cd-story .cd-story-row {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
}
.cd-story .cd-story-row .cd-story-card {
    text-align: center;
}
.cd-story .cd-story-row .cd-story-card p {
    font-size: 12px;
    margin-top: 12px;
}
.cd-story .cd-story-row .cd-story-card .cd-story-card-circle {
    width: 75px;
    position: relative;
    height: 75px;
    margin: auto;
    background-size: cover;
    border-radius: 100%;
    cursor: pointer;
}
.cd-story .cd-story-row .cd-story-card .cd-story-card-circle:before {
    position: absolute;
    z-index: -1;
    content: '';
    top: -3px;
    left: -3px;
    width: 81px;
    height: 81px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 100px;
}
.cd-story .cd-story-row .cd-story-card .cd-story-card-circle.viewed:before {
    background: gray;
}
.cd-story .cd-story-content-box {
    position: fixed;
    z-index: 3;
    backdrop-filter: blur(7px);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000021;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
}
.cd-story .cd-story-content-box.active {
    opacity: 1;
    visibility: visible;
}
.cd-story .cd-story-content-box .cd-story-content {
    width: 395px;
    height: 700px;
    border-radius: 20px;
    position: relative;
}
.cd-story .cd-story-content-box .cd-story-content .cd-story-slides-container img {
    border: 0 0 15px 15px;
}
.cd-story .cd-story-content-box .cd-story-content .cd-story-content-header {
    width: 91%;
    height: auto;
    box-shadow: 0 0 10px black;
    padding: 10px;
    background: #00000073;
    border-radius: 15px 15px 0 0 ;
    backdrop-filter: blur(7px);
    display: flex;
    align-items: center;
    justify-content: start;
}
.cd-story .cd-story-content-box .cd-story-content .cd-story-content-header p {
    color: white;
}
.cd-story .cd-story-content-box .cd-story-content .cd-story-content-header .cd-story-content-header-avatar {
    width: 50px;
    background-size: cover;
    height: 50px;
    border-radius: 100px;
    margin-right: 13px;
}
.cd-story .cd-story-content-box .cd-story-content a.cd-story-btn {
    background: #ffffff59;
    border-radius: 12px;
    padding: 10px 20px;
    color: #ffffff;
    position: absolute;
    bottom: 3%;
    left: 38%;
}
.cd-story .cd-story-content-box .cd-story-content .cd-story-slides-container .slide-item video {
	width: 91%;
    height: 638px;
    background: rgb(0, 0, 0);
    box-shadow: black 0px 0px 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}
@media screen and (max-width: 525px) {
    .cd-story .cd-story-content-box .cd-story-content .cd-story-content-header {
        width: 85%;
        margin: 20px auto 0 auto;
    }
    .cd-story .cd-story-content-box .cd-story-content .cd-story-slides-container .slide-item {
        text-align: center;
    }
    .cd-story .cd-story-content-box .cd-story-content .cd-story-slides-container .slide-item video {
        width: 84%;
        height: 582px;
        margin: auto;
        background: rgb(0, 0, 0);
        box-shadow: black 0px 0px 10px;
        border-bottom-right-radius: 10px;
        border-bottom-left-radius: 10px;
    }
}