﻿:root {
    --primary-color: #f4f4f4;
    --body-bgcolor: #282828;
    --body-color: #7c7e83;
    --white-color: #f1f1f1;
    --black-color: #000;
    --mild-gray: #b7b7b7;
    --light-grey: #b7b7b7;
    --theme-color: #5d5d5d;
    --theme-hrcolor: #737373;
    --box-grey: #f5f5f5;
    --footer-grey: #212121;
    --common-border: #EBEBEB;
    --common-padding: 110px 0;
    --player-back: #3a3a3a;
    --dark-grey: #161616;
    --spl-grey: #353535;
}

a:focus {
    outline: none;
}

video {
    outline: none;
}

textarea, select, input, button {
    outline: none;
}

input, textarea, select, a {
    outline: none !important;
}


body {
    color: var(--body-color);
    font-family: "Roboto", sans-serif;
    max-width: 100%;
    overflow-x: hidden;
    background-color: #252836;
    margin: 0px;
    padding: 0px;
}

.page-container {
    width: 100%;
    max-width: 1903px;
    margin: 0px auto;
    position: relative;
}

/*@media (min-width: 1200px) {
    .container {
        max-width: 1280px;
    }
}*/

/*video::-webkit-media-controls {
    visibility:hidden;
}*/

a {
    outline: 0;
    transition: all .4s;
}

    a:hover {
        text-decoration: none;
    }

.clr {
    clear: both;
}

button:focus,
input:focus {
    outline: 0;
}

input[type=text], textarea {
    -webkit-transition: all 0.30s ease-in-out;
    -moz-transition: all 0.30s ease-in-out;
    -ms-transition: all 0.30s ease-in-out;
    -o-transition: all 0.30s ease-in-out;
}

    input[type=text]:focus, textarea:focus {
        box-shadow: 0 0 5px rgba(90, 90, 90, .8);
    }

input[type=password] {
    -webkit-transition: all 0.30s ease-in-out;
    -moz-transition: all 0.30s ease-in-out;
    -ms-transition: all 0.30s ease-in-out;
    -o-transition: all 0.30s ease-in-out;
}

    input[type=password]:focus {
        box-shadow: 0 0 5px rgba(90, 90, 90, .8);
    }



.clip_ctrl input[type=checkbox] + label {
    margin: 10px 15px 10px;
    cursor: pointer;
    padding: 0.2em;
}

.clip_ctrl input[type=checkbox] {
    display: none;
}

    .clip_ctrl input[type=checkbox] + label:before {
        content: "\2714";
        border: 1px solid #9b9b9b;
        border-radius: 5px;
        display: inline-block;
        width: 18px;
        height: 18px;
        vertical-align: bottom;
        color: transparent;
        transition: .2s;
        padding: 0px 2px 3px 2px
    }

    .clip_ctrl input[type=checkbox] + label:active:before {
        transform: scale(0);
    }

    .clip_ctrl input[type=checkbox]:checked + label:before {
        background-color: #161616;
        border-color: var(--body-color);
        color: var(--light-grey);
        padding: 0px 2px 3px 2px;
    }

    .clip_ctrl input[type=checkbox]:disabled + label:before {
        transform: scale(1);
        border-color: #aaa;
    }

    .clip_ctrl input[type=checkbox]:checked:disabled + label:before {
        transform: scale(1);
        background-color: #bfb;
        border-color: #bfb;
    }



img {
    max-width: 100%;
}


h1 {
    font-size: 1.6em;
    font-weight: 600;
    color: var(--mild-gray);
}

h2 {
    font-size: 1.4em;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--light-grey);
    text-transform: uppercase;
    margin: 0px;
    padding: 0px;
}

h3 {
    font-size: 26px;
    font-weight: 400;
    color: var(--primary-color);
}

.h4 {
    font-size: 19px;
    font-weight: 600;
    color: var(--white-color);
}

.h5 {
    font-size: 18px;
    font-weight: 500;
}

.input-style {
    width: 100%;
    background-color: var(--dark-grey);
    border-radius: 5px;
    border: none;
    padding: 10px;
    color: var(--body-color);
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
}

.intro-text {
    color: #555;
}





/*GLOBAL BUTTON STYLES*/

.primary-btn {
    background: var(--theme-color);
    border-radius: 4px;
    font-size: 14px;
    color: var(--light-grey);
    padding: 0px 15px;
    height: 40px;
    border: none;
    cursor: pointer;
    transition: 0.7s;
    justify-content: center;
    display: flex;
    align-items: center;
    text-align: center;
    align-content: center;
}

    .primary-btn:hover {
        color: #fff;
        background: var(--theme-hrcolor);
    }


.secondary-btn {
    background: var(--secondary-color);
    border-radius: 0px;
    font-size: 13px;
    text-transform: uppercase;
    color: var(--white-color);
    padding: 7px 25px;
    display: flex;
    align-items: center;
}



.search-btn {
    background: var(--primary-color);
    border-radius: 0px;
    font-size: 13px;
    text-transform: uppercase;
    color: var(--white-color);
    padding: 8px 37px;
    display: flex;
    align-items: center;
    border-radius: 5px;
    font-family: "Roboto", sans-serif;
}

    .search-btn:hover {
        color: #fff;
        opacity: .9;
    }

.red-btn {
    background: var(--red-color);
    border-radius: 0px;
    font-size: 13px;
    text-transform: uppercase;
    color: var(--white-color);
    padding: 10px 25px;
    border-radius: 5px;
}
/*Page Settings*/


.main-header {
    margin: 0px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 90px;
}

    .main-header .primary-btn {
        margin-top: 10px;
    }

.eshare-row {
    margin: 32px 7%;
    position: relative;
    display: flex;
    flex-direction: row;
    padding-top: 10px;
}

.eshare-left {
    width: 50%;
    margin-right:auto;
}

.eshare-right {
    width: 40%;
    box-sizing: border-box;
    position: relative;
    overflow-x: hidden;
    max-height: 584px;
    overflow-y: auto;
}

#style-2::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 8px;
    background-color: #F5F5F5;
}

#style-2::-webkit-scrollbar {
    width: 8px;
    background-color: #F5F5F5;
    border-radius: 8px;
}

#style-2::-webkit-scrollbar-thumb {
    border-radius: 8px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: #D62929;
}

.video_container {
    box-sizing: border-box;
    border-radius: 5px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    overflow: hidden;
    position: relative;
}

    .video_container video {
        border-radius: 20px;
        z-index: 99;
        max-height: 600px;
        /*max-width: 100%;*/
        width: 100%;
    }

.audio_container {
    width: 100%;
    min-width: 100%;
}

    .audio_container audio {
        width: 100%;
        min-width: 100%;
    }

.image_container {
    width: 100%;
    min-width: 100%;
}

    .image_container img {
        max-height: 704px;
    }

.doc_container {
    width: 100%;
    min-width: 100%;
}

.video-controlls {
    position: absolute;
    background-color: #343434;
    width: 100%;
    bottom: 0px;
    /*height: 50px;*/
    z-index: 101;
}

.seekbar-container {
    background: rgba(196, 196, 196, 0.45);
    height: 14px;
    position: absolute;
    top: -14px;
    width: 100%;
}

.controll-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0px;
}

.c-a-l {
    width: 10%;
    text-align: center;
    color: #dbdbdb;
    font-size: 14px;
    white-space: nowrap;
}

.all-control {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.butn {
    padding: 2px 8px;
    box-sizing: border-box;
    border-radius: 3px;
    height: 28px;
    margin-right: 2px;
}

    .butn:hover {
        background-color: #454545;
        cursor: pointer;
    }

.seq_butn {
    padding: 2px 8px;
    box-sizing: border-box;
    border-radius: 3px;
    height: 28px;
    margin-right: 2px;
}

    .seq_butn:hover {
        background-color: #454545;
        cursor: pointer;
    }

/*.videocontrolls_container {
    background-color: #f5f0f0;
    height: 34px;
    border-bottom: 4px solid #dedede;
    position: relative;
}
.videocontrolls_seekbox {
    position: absolute;
    width: 100%;
    background-color: none;
    background-color:greenyellow;
    margin-top: -18px;
    height: 18px;
    opacity: 1;
    filter: alpha(opacity=50);
}

.time_mark {
    font-size: 12px;
    color: #fe0000;
}

    .time_mark span {
        line-height: 36px;
        margin: 0px 10px;
    }*/
.info-box {
    margin-top: 30px;
}

.titlebox01 {
    width: 70%;
    float: left;
}

    .titlebox01 h2 {
        margin-bottom: 12px;
        font-size: 26px;
        word-wrap: break-word;
        color: #FFFFFF;
    }

.titlebox02 {
    width: 30%;
    float: right;
    text-align: right;
}

    .titlebox02 .avgRate {
        font-size: 14px;
        color: var(--light-grey);
        margin-bottom: 8px;
    }

.admin-options {
    margin: 20px 60px;
}
/*.admin-options .tab{
	
	background-color: #fff;
	width: 70%;
}
*/

.tab-box {
    width: 70%;
}

.tab {
    overflow: hidden;
    border: 0px solid #ccc;
    position: relative;
}

    /* Style the buttons that are used to open the tab content */
    .tab button {
        background-color: inherit;
        float: left;
        border: none;
        outline: none;
        cursor: pointer;
        padding: 14px 0px;
        transition: 0.3s;
        border-bottom: 5px solid #5d5d5d;
        z-index: 100;
        position: relative;
        font-size: 16px;
        margin-right: 90px;
        color: var(--body-color);
    }

        /* Change background color of buttons on hover */
        .tab button:hover {
        }

        /* Create an active/current tablink class */
        .tab button.active {
            border-bottom: 5px solid #f1f1f1;
            color: var(--white-color);
        }

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 0px;
    border: 0px solid #ccc;
    border-top: none;
}

    .tabcontent h3 {
        margin: 30px 0px 20px 0px;
    }

.tabcontent {
    animation: fadeEffect 1s; /* Fading effect takes 1 second */
}

/* Go from zero to full opacity */
@keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}



.asset-options {
    position: absolute;
    width: 42px;
    right: 24px;
    top: 20px;
    z-index: 100;
}

.a1 {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    margin-bottom: 6px;
    height: 42px;
    width: 42px;
    border: 1px solid rgba(255, 255, 255, .2);
    padding: 1px;
    cursor: pointer;
    animation: fadeEffect 1s;
    transition: 0.7s;
    position: relative;
}

    .a1:hover {
        background-color: rgba(0, 0, 0, 0.4);
        border: 1px solid rgba(255, 255, 255, .4);
        transition: 0.7s
    }

.like {
    background-color: #0099d8;
    color: #fff;
    font-size: 10px;
    position: absolute;
    bottom: -5px;
    right: -5px;
    border-radius: 4px;
    padding: 2px;
    min-width: 12px;
    text-align: center
}
/* Asset List Container */
.asset-list-container {
    width: calc(100% - 48px);
    height: auto;
    position: absolute;
    padding-bottom: 30px;
}

.asset-list-box {
    display: flex;
    flex-direction: row;
    position: relative;
    cursor: pointer;
    margin-bottom: 22px;
    width:100%;
    
}

.thumb {
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    overflow: hidden;
}

.thumb img {
    border-radius: 8px;
    width:100%;
    max-height:99px;
    max-width:176px;
    /*max-height: 99px; uncomment for thumb aspect ratio*/
}




.asset-dtl {
    width: 64%;
    margin-left:auto;
    box-sizing: border-box;
}

    .asset-dtl h2 {
        margin: 0px;
        padding: 0px;
        line-height: 22px;
        font-size: 18px;
        width: 100%;
        font-weight: normal;
        color: #FFFFFF;
        white-space: pre-wrap; /* CSS3 */
        white-space: -moz-pre-wrap; /* Firefox */
        white-space: -pre-wrap; /* Opera <7 */
        white-space: -o-pre-wrap; /* Opera 7 */
        word-wrap: break-word; /* IE */
        transition: 0.7s;
        display: -webkit-box;
        max-height: 3.2rem;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: normal;
        -webkit-line-clamp: 2;
    }

    .asset-dtl ul {
        list-style: none;
        margin: 8px 0px 0px 0px;
        padding: 0px;
        display: inline-block;
    }

        .asset-dtl ul li {
            float: left;
            font-size: 14px;
        }

.splmargin {
    margin-left: 10px;
    margin-right: 10px;
}

.spl-info {
    font-size: 13px;
    padding-top: 5px;
    word-break: break-all;
    width: 98%;
    display: -webkit-box;
    max-height: 3.2rem;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
}

    .spl-info span {
        color: #DF0008;
    }




.asset-list-box:hover .asset-dtl h5 {
    color: var(--white-color);
    transition: 0.7s;
}

.asset-list-box:hover .thumb img {
    /*transform: scale(.98);*/
    transition: 0.7s;
    /*	filter: grayscale(100%);*/
    -webkit-filter: brightness(1.5);
    filter: brightness(1.7);
}

.asset-list-box:hover .unknown-box div {
    /*transform: scale(.98);*/
    transition: 0.7s;
    /*	filter: grayscale(100%);*/
    -webkit-filter: brightness(1);
    filter: brightness(1);
    background-color: var(--theme-hrcolor) !important;
    color: var(--player-back) !important;
}



.loadmore-btn-box {
    padding-top: 10px;
}

    .loadmore-btn-box .primary-btn {
        font-size: 16px;
        height: 40px;
    }

.full-btn {
    width: 100%;
}

/*condition for single asset*/
.single-asset {
    width: 70%;
    margin: 0px auto;
}

    .single-asset .eshare-row {
        flex-direction: column;
    }

    .single-asset .eshare-left {
        width: 100%;
    }

    .single-asset .eshare-right {
        display: none;
    }

    .single-asset .tab-box {
        width: 100%;
    }

/*Comment*/
.comment_submit {
    display: flex;
    flex-direction: row;
    position: relative;
}

.comment-txt {
    width: calc(100% - 196px);
    background-color: var(--dark-grey);
    border-radius: 5px;
    border: none;
    padding: 8px 10px;
    color: var(--body-color);
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    resize: none;
}

.post-button {
    height: 56px;
    margin-left: 20px;
    background: var(--theme-color);
    border-radius: 4px;
    font-size: 14px;
    color: var(--light-grey);
    padding: 7px 25px;
    align-items: center;
    border: none;
    cursor: pointer;
    transition: 0.7s;
    width: 170px;
}

.status-bar {
    background-color: #5d5d5d;
    height: 5px;
    bottom: 0px;
    position: absolute;
    width: 100%;
    z-index: 99
}

.comments-box {
    position: relative;
    padding-top: 28px;
}

.comment_item {
    margin-bottom: 32px;
}

    .comment_item img {
        position: absolute;
        right: 7px;
    }

    .comment_item h5 {
        font-size: 18px;
        color: var(--light-grey);
        font-weight: 400;
        margin: 0px 0px 8px 0px;
        padding: 0px;
    }

    .comment_item a {
        font-size: 14px;
        font-weight: 400;
        margin: 0px 0px 10px 0px;
        padding: 0px;
    }

    .comment_item p {
        font-size: 15px;
        color: var(--light-grey);
        font-weight: 400;
        margin: 10px 0px 0px 0px;
        padding: 0px;
    }

/*Subclip*/

.clipitem-box {
    display: flex;
    flex-direction: row;
    position: relative;
    color: var(--light-grey);
    padding: 10px 0px;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
}

    .clipitem-box span {
        font-size: 15px;
    }

.inputclass_marker_eshare {
    width: 50%;
    margin-bottom: 12px;
    /*margin-right: 20px;*/
}

.clip_timein {
    width: 50%;
    display: flex;
}

.clip_ctrl {
    text-align: center;
    width: 20%;
    padding-top: 34px;
}

    .clip_ctrl img {
        cursor: pointer;
    }

.semi-width {
    width: 40%;
    margin-left: 20px;
}

.clipitem-box .input-style {
    margin-top: 8px;
}

.bottom_ctrlbox {
    display: none;
    padding: 16px 0px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.ctrl_buttons {
    background: var(--theme-color);
    padding: 10px 28px;
    float: left;
    margin-right: 10px;
    font-size: 14px;
    border: none;
    color: var(--light-grey);
    text-align: center;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.7s;
    justify-content: center;
}

    .ctrl_buttons:hover {
        color: #fff;
        background: var(--theme-hrcolor);
    }


/*error popup*/

.popup-flex {
    margin: 30px;
}

.popup-container {
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    transform: scale(1.3);
    position: fixed;
    z-index: 110;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
}

.popup-content {
    background-color: var(--spl-grey);
    margin: auto;
    padding: 12px 16px 12px 16px;
    border: 0px solid #515151;
    border-radius: 4px;
    width: 32%;
    box-shadow: 0px 0px 5px #171717;
    line-height: 24px;
}

    .popup-content h4 {
        font-size: 18px;
        padding: 10px 0px 0px 0px;
        line-height: 20px;
        margin-bottom: 0px;
        margin-top: 0px;
        font-weight: normal;
        color: #d6d6d6;
        margin-bottom: 12px;
        text-transform: uppercase;
    }

    .popup-content p {
        font-size: 15px;
        padding: 5px 0px 5px 0px;
        line-height: 20px;
        margin-bottom: 0px;
        margin-top: 5px;
    }

    .popup-content span {
        color: #aaaaaa;
        float: right;
        font-weight: bold;
    }

        .popup-content span:hover,
        .popup-content span:focus {
            color: #000;
            text-decoration: none;
            cursor: pointer;
        }

.show {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}

.more-articles {
    margin: 30px 30px 50px;
    font-size: 20px;
}

    .more-articles a {
        margin: 0 10px;
        text-decoration: underline;
    }

/*Loader*/

svg {
    width: 100%;
    height: 84px;
    margin: 0px 10px;
    display: inline-block;
}


.made-with-love {
    margin-top: 20px;
    padding: 10px;
    font-size: 10px;
    font-family: arial;
    color: #fff;
}

    .made-with-love i {
        font-style: normal;
        color: #F50057;
        font-size: 14px;
        position: relative;
        top: 2px;
    }

    .made-with-love a {
        color: #fff;
        text-decoration: none;
    }

        .made-with-love a:hover {
            text-decoration: underline;
        }

.loader {
    display: block;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    text-align: center;
    position: fixed;
    background-color: var(--body-bgcolor);
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.settingsBox {
    position: absolute;
    display: none;
    float: left;
    background-color: rgba(52, 52, 52, 0.9);
    width: 222px;
    margin-top: -180px;
    height: 175px;
    z-index: 101;
    margin-left: -190px;
    padding: 12px;
    box-sizing: border-box;
    border-radius: 4px;
}

    .settingsBox h2 {
        text-align: left;
        font-size: 16px;
        float: left;
    }

.settingsDiv {
    display: none;
    text-align: left;
    margin-top: 10px;
    font-size: 11px;
    float: left;
    margin-right: 12px;
    width: 100%;
    box-sizing: border-box;
}

    .settingsDiv select {
        width: 100%;
    }

.anywheretext select {
    width: calc(100% - 10px);
    background-color: var(--dark-grey);
    border-radius: 5px;
    border: none;
    padding: 8px 10px;
    color: var(--body-color);
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    resize: none;
    height: 36px;
}

.anywheretext input {
    width: calc(100% - 0px);
    background-color: var(--dark-grey);
    border-radius: 5px;
    border: none;
    padding: 8px 10px;
    color: var(--body-color);
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    resize: none;
    height: 36px;
}

.br-widget {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
}


#divPlayerSeek .ui-slider-handle {
    z-index: 99;
    position: absolute;
    background-color: var(--theme-color);
    margin-top: -20px;
    height: 4px;
    opacity: 1;
    overflow: hidden;
    margin-top: 6px;
    filter: alpha(opacity=50)
}

#divPlayerSeek .ui-slider-range {
    z-index: 99;
    position: absolute;
    background-color: #b5b5b5;
    margin-top: -20px;
    height: 4px;
    opacity: 1;
    overflow: hidden;
    margin-top: 6px;
    width: 100%;
}

    #divPlayerSeek .ui-slider-range:hover {
        z-index: 99;
        cursor: pointer;
        position: absolute;
        background-color: #b5b5b5;
        margin-top: -20px;
        height: 4px;
        opacity: 1;
        overflow: hidden;
        margin-top: 6px;
        width: 100%;
    }

#divSequencePlayerSeek .ui-slider-handle {
    z-index: 99;
    position: absolute;
    background-color: #b5b5b5;
    margin-top: -20px;
    height: 4px;
    opacity: 1;
    overflow: hidden;
    margin-top: 6px;
    filter: alpha(opacity=50)
}

#divSequencePlayerSeek .ui-slider-range {
    z-index: 99;
    position: absolute;
    background-color: var(--theme-color);
    margin-top: -20px;
    height: 4px;
    opacity: 1;
    overflow: hidden;
    margin-top: 6px;
    width: 100%;
}

    #divSequencePlayerSeek .ui-slider-range:hover {
        z-index: 99;
        cursor: pointer;
        position: absolute;
        background-color: var(--theme-color);
        margin-top: -20px;
        height: 4px;
        opacity: 1;
        overflow: hidden;
        margin-top: 6px;
        width: 100%;
    }


input#seekslider {
    width: 100%;
    position: absolute;
    margin-top: -22px;
    opacity: 0.5;
    height: 8px;
    z-index: 99;
}

/*Chrome*/
input[type=range] {
    -webkit-appearance: none;
}

    input[type=range]::-webkit-slider-runnable-track {
        width: auto;
        height: 4px;
        background: #ddd;
        border: none;
        border-radius: 3px;
    }

    input[type=range]::-webkit-slider-thumb {
        -webkit-appearance: none;
        border: none;
        height: 10px;
        width: 10px;
        border-radius: 10%;
        background: red;
        margin-top: -5px;
    }

    input[type=range]:focus {
        outline: none;
    }

        input[type=range]:focus::-webkit-slider-runnable-track {
            background: #ccc;
        }

    /*Mozilla*/

    input[type=range]::-moz-range-track {
        width: 100%;
        height: 10px;
        background: #ddd;
        border: none;
        border-radius: 3px;
    }

    input[type=range]::-moz-range-thumb {
        border: none;
        height: 10px;
        width: 10px;
        border-radius: 50%;
        background: goldenrod;
    }

    /*hide the outline behind the border*/
    input[type=range]:-moz-focusring {
        outline: 1px solid white;
        outline-offset: -1px;
    }

    input[type=range]:focus::-moz-range-track {
        background: #ccc;
    }

    /*internet Explorer*/
    input[type=range]::-ms-track {
        width: 100%;
        height: 5px;
        /*remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead */
        background: transparent;
        /*leave room for the larger thumb to overflow with a transparent border */
        border-color: transparent;
        border-width: 6px 0;
        /*remove default tick marks*/
        color: transparent;
    }

    input[type=range]::-ms-fill-lower {
        background: #777;
        border-radius: 10px;
    }

    input[type=range]::-ms-fill-upper {
        background: #ddd;
        border-radius: 10px;
    }

    input[type=range]::-ms-thumb {
        border: none;
        height: 16px;
        width: 16px;
        border-radius: 50%;
        background: goldenrod;
    }

    input[type=range]:focus::-ms-fill-lower {
        background: #888;
    }

    input[type=range]:focus::-ms-fill-upper {
        background: #ccc;
    }

input#volumeslider {
    width: 80px;
    padding-bottom: 13px;
}




.mutedAudio {
    color: white;
    position: absolute;
    top: 10px;
    left: 10px;
    width: auto;
    text-align: center;
    cursor: pointer;
    display: none;
    z-index: 999;
    background: rgba(76,76,76,0.6);
    padding: 4px 5px 3px 5px;
    border-radius: 3px;
}

    .mutedAudio:hover {
        text-align: center;
        background: rgba(204,0,0,0.7);
    }

.mutedSequenceAudio {
    color: white;
    position: absolute;
    top: 20px;
    left: 30px;
    width: auto;
    text-align: center;
    cursor: pointer;
    display: none;
    z-index: 999999999;
    background: rgba(76,76,76,0.6);
    padding: 4px 7px 3px 5px;
    border-radius: 3px;
}

    .mutedSequenceAudio:hover {
        text-align: center;
        background: rgba(204,0,0,0.7);
    }

.taptomute {
    line-height: 22px;
    font-size: 13px;
}



.clipitem-box-select {
    border-top: 1px solid #5d5d5d;
    border-bottom: 1px solid #5d5d5d;
    padding: 10px 0px;
}

.sequence_but {
    width: 28px;
    height: 27px;
    margin: 0px;
    padding: 0px 2px;
    float: left;
}

    .sequence_but:hover {
        background-color: transparent;
        background: -moz-linear-gradient(top, transparent 0%, #dbdbdb 100%);
        background: -webkit-linear-gradient(top, transparent 0%,#dbdbdb 100%);
        background: linear-gradient(to bottom, transparent 0%,#dbdbdb 100%);
    }

#divDeliveryProfileList input {
    margin-right: 12px;
}


@media (max-width: 1440px) {
    .main-header {
        margin: 0px 24px;
    }

        .main-header img {
            max-width: 200px;
        }

    .eshare-row {
        margin: 32px 7%;
    }

    .admin-options {
        margin: 20px 24px;
    }

    .eshare-left {
        margin-right: auto;
        width: 50%;
    }

    .eshare-right {
        width: 40%;
        max-height: 428px;
        overflow-y: auto;
    }

    .tab-box {
        width: 60%;
    }

    .asset-list-container {
        width: calc(100% - 30px);
    }

    .clip_ctrl {
        width: 24%;
    }

        .clip_ctrl input[type=checkbox] + label {
            margin: 10px;
        }

    .c-a-l {
        width: 14%;
    }
}



@media (max-width: 1199.98px) {

    .asset-dtl h5 {
        display: -webkit-box;
        max-height: 3.2rem;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: normal;
        -webkit-line-clamp: 2;
    }

    .clipitem-box {
        flex-direction: column;
    }

    .inputclass_marker_eshare {
        width: 100%;
    }

    .clip_timein {
        width: 100%;
    }

    .semi-width {
        width: 40%;
        margin-left: 0px;
        margin-right: 20px;
    }

    .clipitem-box {
        margin-bottom: 18px;
        padding-bottom: 18px;
        border-bottom: 1px solid #333333;
    }

    .inputclass_marker_eshare .sm_title {
        font-size: 17px !important;
    }

    .c-a-l {
        width: 16%;
    }

    .popup-content {
        width: 50%;
    }
}

@media (max-width: 992px) {

    .eshare-row {
        flex-direction: column;
    }

    .eshare-left {
        width: 100%;
    }

    .eshare-right {
        width: 100%;
        padding-left: 0px;
        padding-top: 28px;
        height: auto;
        max-height: unset;
    }

    .asset-list-container {
        height: auto;
        position: inherit;
        padding-bottom: 30px;
    }

    .asset-list-container {
        width: calc(100% - 0px);
    }

    .tab-box {
        width: 100%;
    }

    .loadmore-btn-box {
        padding-top: 10px;
    }

    .single-asset {
        width: 100%;
        margin: 0px auto;
    }
}


@media (max-width: 768px) {

    .main-header {
        margin: 0px 15px;
    }

    .eshare-row {
        margin: 0px 15px;
    }

    .admin-options {
        margin: 20px 15px;
    }


    .comment_submit {
        flex-direction: column;
    }

    .comment-txt {
        width: calc(100% - 0px);
        height: 80px;
    }

    .post-button {
        height: 56px;
        margin-left: 0px;
        margin-top: 20px;
        align-items: center;
        cursor: pointer;
        width: 100%;
        font-size: 16px;
    }

    .main-header {
        min-height: 52px;
    }
}

@media (max-width: 575.98px) {

    .titlebox01 {
        width: 66%;
    }

    .titlebox02 {
        width: 34%;
    }

    .titlebox01 h2 {
        margin-bottom: 10px;
        font-size: .9em;
    }

    .tab button {
        margin-right: 40px;
    }

    .asset-dtl {
        padding: 0px 0px 0px 15px;
    }

    .clip_ctrl input[type=checkbox] + label {
        margin: 10px 5px 0px;
        padding: 0.2em;
    }

    .ctrl_buttons {
        padding: 10px 15px;
    }

    .asset-options {
        position: absolute;
        width: 32px;
        right: 20px;
        top: 10px;
        z-index: 100;
    }

    .controll-box {
        padding: 5px 0px;
    }

    .a1 {
        background: rgba(0, 0, 0, 0.2);
        border-radius: 5px;
        margin-bottom: 6px;
        height: 32px;
        width: 32px;
        border: 1px solid rgba(255, 255, 255, .2);
        padding: 1px;
        cursor: pointer;
        animation: fadeEffect 1s;
        transition: 0.7s;
        position: relative;
    }

        .a1:hover {
            background-color: rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(255, 255, 255, .4);
            transition: 0.7s
        }

    .butn {
        padding: 2px 0px;
        box-sizing: border-box;
        border-radius: 3px;
        height: 24px;
        margin-right: 2px;
    }

    .seq_butn {
        padding: 2px 0px;
        box-sizing: border-box;
        border-radius: 3px;
        height: 28px;
        margin-right: 2px;
    }

    .c-a-l {
        width: 20%;
        font-size: 8px;
    }

    .popup-content {
        width: 80%;
    }
}

@media (max-width: 375px) {

    .tab button {
        margin-right: 32px;
    }

    .titlebox01 {
        width: 60%;
    }

    .titlebox02 {
        width: 40%;
    }

    .ctrl_buttons {
        padding: 10px;
    }

    .splmargin {
        margin-left: 5px;
        margin-right: 5px;
    }

    .asset-dtl ul li {
        float: left;
        font-size: 13px;
    }

    .a1 {
        height: 28px;
        width: 28px;
    }
}

@media (max-width: 349.98px) {
    .main-header img {
        max-width: 120px;
    }

    .video_container {
        min-height: 156px;
    }
}


/*LOGIN*/
.login-box {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90vh;
}

.eshare-login-container {
    max-width: 375px;
    min-width: 375px;
    margin: 0px auto;
}

.login-head-items {
    text-align: center;
    margin-bottom: 20px;
}

    .login-head-items h3 {
        font-size: 24px;
        font-weight: 500;
        margin: 12px 0px;
        padding: 0px;
        color: var(--light-grey);
    }

    .login-head-items h4 {
        font-size: 16px;
        font-weight: normal;
        margin: 0px;
        padding: 0px;
    }

.input-eshare-login {
    width: 100%;
    margin-bottom: 12px;
    padding-top: 12px;
}

    .input-eshare-login input {
        margin-top: 0px;
    }

.eshare-sm-title {
    font-size: 15px;
    padding-bottom: 10px;
    display: inline-block;
}

.Login-button {
    height: 42px;
    margin-left: 0px;
    margin-top: 20px;
    align-items: center;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
}

@media (max-width: 575.98px) {

    .eshare-login-container {
        max-width: 85%;
        min-width: 85%;
        margin: 0px auto;
    }
}










.br-theme-css-stars .br-widget {
    height: 28px;
    white-space: nowrap;
}

    .br-theme-css-stars .br-widget a {
        text-decoration: none;
        height: 18px;
        width: 18px;
        float: left;
        font-size: 23px;
        margin-right: 5px;
    }

        .br-theme-css-stars .br-widget a:after {
            content: "\2605";
            color: var(--light-grey);
        }

        .br-theme-css-stars .br-widget a.br-active:after {
            color: var(--theme-color);
        }

        .br-theme-css-stars .br-widget a.br-selected:after {
            color: var(--theme-color);
        }

    .br-theme-css-stars .br-widget .br-current-rating {
        display: none;
    }

.br-theme-css-stars .br-readonly a {
    cursor: default;
}

.divOverlayMessage {
    position: absolute;
    z-index: 1;
    font-size: 20px;
    padding: 0px;
    left: auto;
    top: 0px;
    margin: 0px auto;
}

#divLogoContainer {
    width: 100px;
    height: 100px;
    background-repeat: no-repeat;
    background-size: contain;
    filter: grayscale(100%);
}

#lblWaterMarkMessage {
    width: 400px;
    font-size: 15px;
    color: black;
}

@media print {
    .br-theme-css-stars .br-widget a:after {
        content: "\2606";
        color: black;
    }

    .br-theme-css-stars .br-widget a.br-active:after,
    .br-theme-css-stars .br-widget a.br-selected:after {
        content: "\2605";
        color: black;
    }
}
