/* *******************videos******************* */
.video-slides {
    width: 100%;
    position: relative;
    border-radius: 10px;
}
.largeSwiper {
    width: 100%;
}

.video-slides .largeSwiper .play-video-icon,
.video-slides .largeSwiper .pause-video-icon {
    background-color: rgb(255, 255, 255, 0.6);
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    box-shadow: rgba(255, 255, 255, 0.2) 0px 0px 2px 7px;
    z-index: 100;
}

.video-slides .largeSwiper .pause-video-icon .fa-pause,
.video-slides .largeSwiper .play-video-icon .fa-play {
    margin-left: 3px;
    color: var(--third-color);
    font-size: 20px;
}

.video-slides .largeSwiper .pause-video-icon .fa-pause {
    margin-left: 0 !important;
}

.video-slides .largeSwiper .play-video-icon.hide,
.video-slides .largeSwiper .pause-video-icon.hide {
    display: none;
    visibility: hidden;
    opacity: 0;
}
.thumbSwiper .swiper-slide,
.largeSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.thumbSwiper .swiper-slide video,
.largeSwiper .swiper-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.largeSwiper .swiper-slide.hideBeforeElement:before {
    opacity: 0;
    visibility: hidden;
}

.thumbSwiper {
    position: absolute;
    width: 55%;
    bottom: -48px;
    left: 50%;
    transform: translateX(-50%);
}
.thumbSwiper .swiper-slide {
    aspect-ratio: 11/6;
}
.thumbSwiper .swiper-slide .play-video-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(255, 255, 255, 0.6);
    backdrop-filter: blur(35px);
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 0.8px solid var(--near-white-color);
}
.thumbSwiper .swiper-slide .play-video-icon .fa-play {
    color: var(--near-white-color);
    font-size: 16px;
}

.thumbSwiper .swiper-slide .swiper-slide .video video {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.video-description .progress {
    width: 60%;
    margin: 0 auto;
    height: 2px;
    overflow: visible;
    position: relative;
}
.video-description .progress .progress-bar {
    background-color: var(--third-color);
    width: unset;
}
.progress-number {
    position: absolute;
    left: -47px;
    top: -13px;
    font-size: 16px;
    font-family: ERPxfaNum;
}
/* *******************podcast******************* */

.player-wrapper {
    position: absolute;
    right: -10px;
    z-index: 200;
    background: #f9f3e7;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 25px 3px;
    width: 150px;
    margin: 0 auto;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}
.controls button {
    color: var(--podcast-btn);
    border: none;
    background: transparent;
    cursor: pointer;
}
.playlist-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.playlist-modal.active {
    display: flex;
}
.playlist-content {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    max-height: 80%;
    width: 96%;
    overflow-y: auto;
}
.playlist-content .microphone{
    width: 22px;
    height: 45px;
    margin-left: 20px;
}
.playList-items{
    height: 250px;
    overflow-y: auto;
    padding-left: 10px;
}
.playList-items::-webkit-scrollbar{
    width: 3px;
}
.playList-items::-webkit-scrollbar-thumb{
    color: var(--img-border-color);
}
.playlist-item {
    display: flex;
    gap: 15px;
    align-items: center;
    cursor: pointer;
    padding: 9px 0;
}
.playlist-item .playlist-item-name{
    margin-left: auto;
}
.playlist-item button{
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50% !important;
    border: 0.7px solid #4b4b4b;
    font-size: 12px;
}
.playlist-item button .fa-pause{
    background-color: var(--podcast-btn);
    border: 0.7px solid transparent;
    color: #fff;
    width: 100%;
    height: 100%;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
.playlist-item .download-btn{
    border-radius: 50% !important;
    border: 1px solid #4b4b4b;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.playlist-item .download-btn .fa-download{
    font-size: 13px;
}
.playList-item button:has(.fa-pause-circle) {
    background-color: var(--podcast-btn) !important;
}
.playlist-item:not(:last-child) {
    border-bottom: 1px solid #b4b2b2;
}

.playlist-content .podcast-list-title{
    color:var(--gray-4);
    font-size: 20px;
    margin-left: auto;
}
.close-modal {
    font-size: 22px;
    color: #47C7EB;
    cursor: pointer;
}
/* *******************comments******************* */

.comments {
    width: 100%;
}

.comments .title-underline {
    background: var(--title-underline-gradient);
}

.comments .title-underline::after,
.comments .title-underline::before {
    background-color: var(--title-underline);
}
.comments-content{
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #fff;
}
.send-comment-form {
    width: 100%;
    background-color: #fff;
}

.send-comment-form form {
    width: 85%;
}

form label {
    font-size: 15px;
    color: #3c3b3b;
}

form label#name {
    color: #7c7c7c;
}

form input,
form textarea {
    outline: none;
    border: 0.4px solid #828282;
    border-radius: 9px;
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    -ms-border-radius: 9px;
    -o-border-radius: 9px;
    background-color: #fdfdfd;
    padding: 8px;
}

form textarea {
    resize: none;
    padding: 10px;
    height: 140px;
}

form > button {
    background-color: var(--podcast-btn);
    color: #fff;
    align-self: flex-start;
    padding: 8px 20px;
    width: 150px;
    text-align: center;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.checkCaptcha {
    position: relative;
}

.checkCaptcha .reload-btn {
    position: absolute;
    right: 206px;
    top: 15px;
    background-color: transparent;
}

.checkCaptcha .reload-btn .fa-arrow-rotate-right {
    font-size: 20px;
}

.captcha-text-div {
    position: absolute;
    top: 10px;
    right: 134px;
}
.captcha-text-div p {
    padding-top: 3px;
}
.people-comments {
    width: 100%;
    height: 100%;
    background-color: var(--comments-fill);

}

.people-comments .comments-parent{
    overflow-y: auto;
    height: 100%;
    padding-left: 20px;
    padding-right: 20px;
    height: 500px;
    gap: 42px;
}
.people-comments .comments-parent::-webkit-scrollbar{
    width: 3px;
}
.people-comments .comments-parent::-webkit-scrollbar-thumb{
    color: var(--img-border-color);
}

.comment-info .person-info {
    margin-left: auto;
}

.comment-info .person-info span,
.comment-info .person-info .fa-user {
    color: #616161;
}

.comment-info .person-info .fa-user {
    font-size: 12px;
}

.comment-info .comment-date span,
.comment-info .comment-date .icon-calender::before {
    color: #656565;
}

.comment-info .comment-date span:not(:last-child) {
    font-family: ERPxfaNum;
}

.comment-info .comment-unlikes,
.comment-info .comment-likes {
    position: relative;
}

.comment-info .comment-unlikes span,
.comment-info .comment-likes span {
    font-family: ERPxfaNum;
    font-size: 15px;
}

.comment-info .comment-unlikes span,
.comment-info .comment-unlikes .fa-heart-crack {
    color: var(--comment-unlike);
}

.comment-info .comment-likes span,
.comment-info .comment-likes .fa-heart {
    color: var(--podcast-btn);
}

.comment .comment-text {
    padding: 8px;
    border-right: 1px solid var(--podcast-btn);
}

.comment .comment-text p {
    color: #3c3b3b;
    font-size: 15px;
    font-family: ERPxfaNum;
    text-align: justify;
}

.comment button {
    background-color: var(--podcast-btn);
    color: #fff;
    padding: 8px 20px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}
/*--------------------------------------------*/
.img-comment-not-exist,.img-comment,.login-message{
    width: 100%;
    position: relative;
}
.img-comment-not-exist:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(255,255,255,0.4);
    backdrop-filter: blur(3px);
    /*filter:blur(3px);*/
    width: 100%;
    height: 100%;
}
.message-no-comment{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 10;
    font-size: 22px;
    text-align: center;
}
.message-no-comment .be-first-comment{
    color: var(--podcast-btn);

}
.img-comment-not-exist img,.img-comment img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.login-message{
    background-color: var(--comments-fill);
    padding: 100px 0;
}
.login-message .login-button{
    background-color: var(--podcast-btn);
    color: #FFFFFF;
    width: 250px;
    height: 40px;
    text-align:center;
    border-radius: 12px;
}
.login-message .login-profile-message{
    color: var(--section-subtitle);
    font-size: 19px;
}
.login-message .signIn-button{
    color: var(--section-subtitle);
    font-size: 17px;
}
/*--------------------------------------------*/
@media screen and (min-width: 449.5px){
    .comment-info {
        flex-direction: row !important;
    }

}
@media screen and (min-width: 499.5px) {
    .thumbSwiper {
        width: 66%;
    }
}
@media screen and (min-width: 575.5px) {
    .comment-info .comment-likes::before {
        content: "";
        position: absolute;
        top: 2px;
        right: -5px;
        width: 1px;
        height: 15px;
        background-color: #616161;
    }
    .comment-info .comment-unlikes::before {
        content: "";
        position: absolute;
        top: 2px;
        right: -5px;
        width: 1px;
        height: 15px;
        background-color: #616161;
    }
    .playlist-content {
        width: 60%;
    }
    /*.thumbSwiper .swiper-slide {*/
    /*  height: 100%;*/
    /*}*/
}

@media screen and (min-width: 859.5px) {
    .people-comments,.img-comment-not-exist ,.img-comment,.login-message{
        width: 50%;
    }
    .send-comment-form {
        width: 50%;
    }
    .comments-content {
        flex-direction: row !important;
    }
    .playlist-content {
        width: 40%;
    }
    .thumbSwiper .swiper-slide {
        aspect-ratio: 11/7;
    }
}

@media screen and (min-width: 1199.5px) {
    .playlist-content {
        width: 30%;
    }
    .thumbSwiper .swiper-slide {
        aspect-ratio: 11/6;
    }
}


.comment-input{
    height: 35rem;
}