* {
    direction: rtl;
}



:root {
    --transalteBgColor: rgba(255, 255, 255, 0.1);
    --MainColor: rgba(220, 165, 35, 1);
    --WhiteColor: #fff;
    --BodyBgColor: rgba(15, 10, 5, 1);
}

main {

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}



.message {
    font-size: 48px;
    font-weight: 400;
    color: var(--WhiteColor);
    font-family: "kaff-regular";
}

.button {

    padding: 12px 32px;
    background-color: #DCA523;
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    width: 228px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "kaff-regular";
}

@font-face {
    font-family: "Kaff";
    src: url(https://www.watchit.com/watch-assets/assets/Fonts/29LTKaff-Bold.ttf)
}

@font-face {
    font-family: "Kaff-Regular";
    src: url(https://www.watchit.com/watch-assets/assets/Fonts/29LTKaff-Regular.ttf)
}

@font-face {
    font-family: "Nano";
    src: url(https://www.watchit.com/watch-assets/assets/Fonts/NotoSans-Regular.ttf)
}

@font-face {
    font-family: "NanoBold";
    src: url(https://www.watchit.com/watch-assets/assets/Fonts/NotoSans-Bold.ttf)
}

body {
    background-color: var(--BodyBgColor);
}

.smartbanner__info {
    flex-direction: row-reverse;
    text-align: left;
}

.spalsh-screen-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    right: 0;

}

.loader {
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}



.navb {
    display: flex;
    justify-content: space-between;
    padding: 36px 80px;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 5;
}

.navb .btn {
    border: none;
    padding: 13px 24px;
    font-size: 20px;
    text-decoration: none;

}

.navb .loginBtn {
    background-color: var(--MainColor);
    border-radius: 8px;
    color: black;
    font-family: "Kaff";
}

.navb .translateBtn {
    background-color: var(--transalteBgColor);
    border-radius: 8px;
    font-weight: 600;
    color: var(--WhiteColor);
    font-family: "kaff-regular";
}

.actions {

    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.contentDeatils {
    position: relative;
}

.playerInfo {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15, 10, 5, 0) 0%, rgba(15, 10, 5, .793519) 61.79%, #0f0a05 89.45%), linear-gradient(180deg, transparent, #0f0a05);
    z-index: 1;
    top: 0;


}

.playerData {
    width: 60%;
    position: absolute;
    top: 0;
    color: var(--WhiteColor);
    font-family: Kaff-Regular;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 0 82px;

}

.playerTitle {
    width: 290px;
}

.playerTitle img {
    object-fit: cover;
}

.playerMetaData {
    font-size: 24px;
}

.playerMetaData .metainfo {
    margin-top: 20px;
    font-size: 20px;
}

.playerMetaData .metainfo .info {
    display: flex;
    gap: 10px;
}

.playerMetaData .metainfo .genre {
    display: flex;
}


.playerMetaData .metainfo .genre p:not(:last-child):after {
    content: ".";
    margin: 0 5px;
}

.playerMetaData .metadescripton {
    width: 782px;
    line-height: 40px;
}

.playerBtn {
    padding: 16px 28px;
    border: none;
    border-radius: 8px;
    font-family: kaff;
    font-size: 20px;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    margin-top: 32px;

}

.playerBtn .btnIcon {
    margin-inline-end: 15px;
    margin-bottom: 6px;
}

.btnPlay {
    background-color: var(--WhiteColor);
    color: black;
    padding: 17px 39px;
}

.btnEpi {
    background-color: var(--transalteBgColor);
    color: var(--WhiteColor);
    margin-inline-start: 11px;
    padding: 17px 14px;
}

.coworker-wrapper {
    width: 100%;
    font-family: kaff-regular;
    padding: 0 82px;

}


.coworker {
    position: relative;
}

.coworker::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--MainColor);
    top: 159%;
    left: 2%
}

.active {
    color: var(--WhiteColor);
    font-family: Kaff;
}

.coWorkerContainer {
    position: relative;
    font-size: 24px;
    font-family: kaff;
    color: var(--WhiteColor);
    display: block;
}

.workerName {
    position: absolute;
    bottom: 5px;
    right: 20px;
}

.nav-pills {
    border-bottom: 2px solid rgba(172, 172, 172, 0.1);
    color: var(--WhiteColor);
    padding-inline-start: 20px;
}

.nav-pills .nav-link {
    display: flex;
    padding: 8px 4px;
    color: rgba(172, 172, 172, 1);
    border-radius: 0;
    font-size: 28px;
    font-family: Kaff-regular;
    margin-inline-end: 34px;

}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: var(--WhiteColor);
    background-color: transparent;
    border-top: none;
    border-bottom: none;
    position: relative;
    font-family: Kaff;
}

.nav-pills .nav-link.active::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: var(--MainColor);
    left: 0;
    bottom: -2px;
}

.details {
    font-size: 12px;
    color: #c1bdb9;
    font-weight: bold;
    font-family: "Kaff"
}

.detailhead {
    color: var(--WhiteColor);
    font-weight: bold;
}

.details .title {
    color: var(--WhiteColor);
    font-size: 14px;
}

.tab-content {
    margin-top: 48px;
}

@media screen and (max-width:1200px) {
    .navb {
        padding: 20px 40px;
    }

    .navb .btn {
        padding: 10px 18px;
        font-size: 14px;
    }

    .playerData {
        width: 70%;
    }

    .playerTitle {
        width: 200px;
    }

    .playerMetaData {
        font-size: 16px;
    }

    .playerMetaData .metainfo {
        font-size: 13px;
    }

    .playerMetaData .metadescripton {
        width: auto;
        line-height: 22px;
    }

    .coWorkerContainer {
        font-size: 14px;
    }

    .workerName {
        position: absolute;
        bottom: 1px;
        right: 10px;
    }

}




@media screen and (max-width:768px) {
    .nav-pills {
        padding-inline-start: 0px;
    }

    .nav-pills .nav-link {
        font-size: 16px;
    }

    .navb {
        padding: 15px 30px;
        background: linear-gradient(180deg, #000000 -8.18%, rgba(0, 0, 0, 0.802881) 54.36%, rgba(0, 0, 0, 0.52) 74.14%, rgba(0, 0, 0, 0) 100%);

    }

    .navb .btn {
        font-size: 14px;
        font-weight: 300;
    }

    .playerData {
        width: 100%;
        padding: 0px 17px;
        justify-content: end;
        align-items: center;
    }


    .playerMetaData {
        font-size: 14px;
    }

    .playerMetaData .metainfo {
        font-size: 14px;
        justify-content: center;
    }

    .playerMetaData .metadescripton {
        line-height: 20px;
    }

    .playerButtons {
        display: flex;
        flex-direction: row;
        gap: 16px;
        font-size: 12px;
    }

    .playerBtn {
        padding: 0;
        margin-top: 0px;
        width: 190px;
        height: 48px;
    }

    .btnEpi {
        margin-inline-start: 0px;
    }

    .coWorkerContainer {
        font-size: 18px;
    }

    .workerName {
        position: absolute;
        top: 70%;
        right: 1px;
        font-size: 14px;
    }

    .colxs {
        width: 33%;
    }

    .playerBtn {
        font-size: 16px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .coworker-wrapper {

        padding: 0px 20px;
    }

    .tab-content {
        margin-top: 20px;
    }
}

@media screen and (max-width:450px) {
    .playerInfo {
        background: linear-gradient(180deg, rgba(15, 10, 5, 0) 35.66%, rgba(15, 10, 5, 0.755208) 55.15%, #0F0A05 84.44%);
    }

    .nav-pills {
        border-top: 2px solid rgba(172, 172, 172, 1);
        border-bottom: none;
        color: var(--WhiteColor);
        padding-inline-start: 0;
    }

    .nav-pills .nav-link {
        display: flex;
        padding: 8px 4px;
    }

    .nav-pills .nav-link.active,
    .nav-pills .show>.nav-link {
        color: var(--WhiteColor);
        background-color: transparent;
        border-top: none;
        border-bottom: none;
        position: relative;
    }

    .nav-pills .nav-link.active::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 3px;
        background-color: var(--MainColor);
        top: -3px;
        left: 0px;
    }

    .coworker-wrapper {
        width: 100%;
        height: auto;
        padding: 0px 10px;

    }



    .metadescripton {
        font-size: 14px;
    }

    .navb .btn {
        padding: 6px 14px;

    }

    /* .smartbanner__info {
        left: 65px;
       } */

}

@media screen and (max-width:400px) {

    .coworker-wrapper {
        width: 100%;
        height: auto;
        padding: 0px 10px;

    }

    .playerBtn {
        width: 160px;
    }

    /* .smartbanner__info {
        left: 70px;
       } */
}