* {
    box-sizing: border-box;
}
body {
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    display: inline-block;
    font-family: 'Roboto', sans-serif;
}
.login-box-panel {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(77,110,147,1);
    background: -moz-linear-gradient(top, rgba(77,110,147,1) 0%, rgba(144,172,200,1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(77,110,147,1)), color-stop(100%, rgba(144,172,200,1)));
    background: -webkit-linear-gradient(top, rgba(77,110,147,1) 0%, rgba(144,172,200,1) 100%);
    background: -o-linear-gradient(top, rgba(77,110,147,1) 0%, rgba(144,172,200,1) 100%);
    background: -ms-linear-gradient(top, rgba(77,110,147,1) 0%, rgba(144,172,200,1) 100%);
    background: linear-gradient(to bottom, #FFF5EC 0%, #EDE1D5 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4d6e93', endColorstr='#90acc8', GradientType=0 );
}
.login-box {
    width: 100%;
    max-width: 460px;
    max-height: 640px;
    display: flex;
    background: #ffffff;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    box-shadow: 0 2px 3px 1px rgba(63,63,68,0.05), 0 2px 6px 0 rgba(63,63,68,0.15);
}
.login-box__left {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 30px 40px 30px;
}

.login-box__right {
    width: 50%;
    height: 100%;
    position: relative;
    display: flex;
    max-height: 640px;
}
.full-image {
    width: 100%;
}
.image-over-text {
    bottom: 0;
    left: 0px;
    position: absolute;
    margin: 0;
    font-size: 16px;
    letter-spacing: -0.06px;
    line-height: 25px;
    padding: 25px;
    color: #ffffff;
}
.form-head {
    color: #061826;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -0.08px;
    line-height: 36px;
    text-align: center;
    width: 100%;
    max-width: 250px;
    margin: 30px auto;
    font-family: 'Playfair Display';
}
.login-form {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
}
.form-items__each {
    width: 100%;
    display: inline-block;
    margin: 8px 0px;
}
.input-holder {
    width: 100%;
    position: relative;
}
.labeled-input {
    width: 100%;
    height: 50px;
    border: 1px solid rgba(0,0,0,0.32);
    border-radius: 4px;
    background: transparent;
    position: relative;
    z-index: 2;
    padding: 5px 20px;
    color: rgba(0,0,0,0.6);
    font-family: Roboto;
    font-size: 16px;
    letter-spacing: 0.15px;
    line-height: 24px;
    font-family: 'Playfair Display';
}
.labeled-input:focus {
    outline: 0;
}
.input-holder.focused .labeled-input {
    border: 2px solid #6B6B6B;
}

.input-holder.errorcls .labeled-input {
    border: 2px solid #f31919;
}

.validdataerrors{

    color: #f31919;
}
.modal-input-block .errorclsuser {
    border: 1px solid #E91E63;
}


.input-label {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 20px;
    z-index: 1;
    color: rgba(0,0,0,0.6);
    font-size: 16px;
    letter-spacing: 0.15px;
    line-height: 24px;
    transition: font-size 0.3s linear;
}
.input-holder.focused .input-label {
    color: #4A4A4A;
    font-size: 12px;
    width: auto;
    height: auto;
    line-height: normal;
    padding: 0px 5px;
    background: #fff;
    top: -6px;
    z-index: 3;
    left: 20px;
    transition: font-size 0.3s linear;
    font-family: 'Playfair Display';
}
.submit-btn {
    width: 100%;
    height: 50px;
    background: #6B6B6B;
    border: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.25px;
    line-height: 16px;
    border-radius: 4px;
    box-shadow: 0 1px 1px 0 rgba(0,0,0,0.14), 0 2px 1px -1px rgba(0,0,0,0.12), 0 1px 3px 0 rgba(0,0,0,0.2);
    margin: 8px 0px;
    font-family: 'Playfair Display';
    cursor: pointer;
}
.cs-checkbox {
    width: auto;
    height: auto;
    position: relative;
    padding-left: 25px;
}
.cs-checkbox-in {
    padding: 0;
    width: 100%;
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    margin: 0;
    opacity: 0;
}
.cs-checkbox-in:checked + .cs-placeholder {
    background: #6B6B6B;
    transition: 0.3s linear;
}
.cs-placeholder {
    width: 18px;
    height: 18px;
    border: 1px solid #425A70;
    border-radius: 2px;
    position: absolute;
    left: 0px;
    transition: 0.3s linear;
}
.cs-checkbox-label {
    color: #9EA0A5;
    font-size: 14px;
    letter-spacing: -0.05px;
    line-height: 20px;
    font-family: 'Playfair Display';
}
.form-items__each p {
    margin: 0;
    color: #9EA0A5;
    font-size: 14px;
    letter-spacing: -0.05px;
    line-height: 16px;
    text-align: center;
}
.form-items__each .primary-link {
    color: #1665D8;
    font-weight: bold;
    cursor: pointer;
}




/* MANAGE USER PAGE */

.page-nav {
    width: 100%;
    height: 64px;
    background: #6B6B6B;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo-area h1 {
    margin: 0;
    padding: 5px 30px;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.06px;
    line-height: 24px;
    color: #ffffff;
    font-family: 'Playfair Display';
}
.nav-option-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
    height: 100%;
}
.nav-options-list__items {
    width: 70px;
    height: 100%;
    display: inline-block;
    float: left;
}
.nav-options {
    height: 100%;
}
.nav-option-button {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: transparent;
    transition: 0.3s linear;
}
.nav-option-button:hover, .nav-option-button.active-in {
    background: #4A4A4A;
    transition: 0.3s linear;
}
.sprite-in {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../images/sprite.svg) no-repeat;
}
.sprite-in.icon--notification {
    width: 16px;
    height: 20px;
    background-position: -9px -4px;
}
.sprite-in.icon--logout {
    width: 19px;
    height: 19px;
    background-position: -34px -5px;
}
.sprite-in.icon--search {
    width: 17px;
    height: 17px;
    background-position: -160px -6px;
}
.page-content-holder {
    width: 100%;
    display: inline-block;
    float: left;
}
.side-bar {
    width: 100%;
    max-width: 220px;
    float: left;
    padding: 8px 16px;
    height: calc(100vh - 65px);
    overflow: auto;
    background: #EDE1D5;
    box-shadow: 0 0 0 1px rgba(63,63,68,0.05), 0 1px 3px 0 rgba(63,63,68,0.15);
}
.tab-switching-panel-holder {
    width: calc(100% - 220px);
    float: left;
    padding: 24px 24px 24px 24px;
    background: #FFF5EC;
    height: calc(100vh - 65px);
    position: relative;
}
.user-image-holder {
    width: 100px;
    height: 100px;
    margin: 0px auto;
}
.user-image-in {
    width: 100%;
    border-radius: 100px;
}
.user-details-holder {
    width: 100%;
    text-align: center;
}
.user-area {
    padding: 16px 0px;
    border-bottom: 1px solid #6B6B6B;
}
.user-role-in {
    color: #9EA0A5;
    font-size: 12px;
    line-height: 16px;
    margin: 0;
    margin-bottom: 8px;
    font-family: 'Playfair Display';
    letter-spacing: 0.3px;
}
.user-name-in {
    color: #3A3B3F;
    font-size: 16px;
    letter-spacing: -0.05px;
    line-height: 20px;
    margin: 16px 0px 4px 0px;
    font-family: 'Fjalla One';
    letter-spacing: 0.3px;
}
.tab-switching-area {
    width: 100%;
    padding: 24px 0px;
}
.tab-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.tab-list__item__content {
    width: 100%;
    height: 46px;
    color: #6B6B6B;
    padding: 5px 10px 5px 50px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: 0.3s linear;
    position: relative;
}
.tab-list__item__content label {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.05px;
    line-height: normal;
    font-family: 'Fjalla One';
    letter-spacing: 0.3px;
}
.tab-list__item.active .tab-list__item__content {
    background: #6B6B6B !important;
    color: #fff;
    transition: 0.3s linear;
}
.tab-list__item:hover .tab-list__item__content {
    background: rgba(63, 81, 181, 0.15);
    transition: 0.3s linear;
}


.tab-list__item__content:after {
    content:'';
    background: url(../images/sprite.svg) no-repeat;
    position: absolute;
    left: 25px;
}

.tab-list__item__content.tab-list__item__content--users:after {
    width: 19px;
    height: 13px;
    background-position: -61px -7px;
    top: calc(50% - 6.5px);
}
.tab-list__item__content.tab-list__item__content--register:after {
    width: 15px;
    height: 20px;
    background-position: -87px -4px;
    top: calc(50% - 10px);
}
.tab-list__item__content.tab-list__item__content--story:after {
    width: 18px;
    height: 14px;
    background-position: -108px -7px;
    top: calc(50% - 7px);
}
.tab-list__item__content.tab-list__item__content--evaluation:after {
    width: 19px;
    height: 19px;
    background-position: -132px -5px;
    top: calc(50% - 9.5px);
}
.tab-list__item.active .tab-list__item__content.tab-list__item__content--users:after {
    background-position: -61px -33px;
}
.tab-list__item.active .tab-list__item__content.tab-list__item__content--register:after {
    background-position: -87px -30px;
}
.tab-list__item.active .tab-list__item__content.tab-list__item__content--story:after {
    background-position: -108px -33px;
}
.tab-list__item.active .tab-list__item__content.tab-list__item__content--evaluation:after {
    background-position: -132px -31px;
}

.panel-options-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.panel-options-head h5 {
    color: #061826;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.06px;
    line-height: 24px;
    margin: 0px;
    font-family: 'Fjalla One';
}
.scrollable.table-wrapper {
    margin: 24px 0px;
    width: 100%;
    overflow: auto;
}
.search-option-block {
    width: 100%;
    max-width: 620px;
    position: relative;
}
.search-option-block {
    display: flex;
}
.btn.icon-out {
    border: 0;
    width: auto;
    min-width: 140px;
    margin-left: 20px;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    letter-spacing: 1.25px;
    line-height: 16px;
    box-shadow: 0 1px 1px 0 rgba(0,0,0,0.14), 0 2px 1px -1px rgba(0,0,0,0.12), 0 1px 3px 0 rgba(0,0,0,0.2);
}
.search-input-in {
    width: 100%;
    height: 36px;
    border-radius: 4px;
    border: 0;
    box-shadow: 0 0 0 1px #E4E7EB;
    color: #9EA0A5;
    font-family: Roboto;
    font-size: 14px;
    letter-spacing: -0.05px;
    line-height: 16px;
    padding: 2px 20px 2px 45px;
}
.search-input-in:focus {
    outline: 0;
}
.icon--search.in-search-box {
    position: absolute;
    left: 13px;
    top: calc(50% - 8.5px);
}
.btn.icon-btn {
    cursor: pointer;
    display: flex;
    width: auto;
    height: 36px;
    position: relative;
    padding: 0px 18px 0px 40px;
    color: #FFFFFF;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1.25px;
    align-items: center;
    margin-left: 20px;
    border: 0;
    border-radius: 4px;
    box-shadow: 0 1px 1px 0 rgba(0,0,0,0.14), 0 2px 1px -1px rgba(0,0,0,0.12), 0 1px 3px 0 rgba(0,0,0,0.2);
    font-family: 'Fjalla One';
}
.user-options-block {
    display: flex;
    justify-content: flex-end;
    float: left;
    margin-top: 5px;
}
.btn.btn-red {
    background: #BE4D32;
}
.btn.btn-blue {
    background: #6B6B6B;
}
.tab-switching-panel {
    height: 100%;
    overflow: auto;
}
.tab-switching-panel {
    overflow: auto;
    float: left;
    width: 100%;
}
.btn:focus {
    outline: 0;
}
.icon-btn:after {
    content: '';
    background: url(../images/sprite.svg) no-repeat;
    position: absolute;
    left: 20px;
}
.icon-btn.icon-btn--delete:after {
    width: 12px;
    height: 14px;
    background-position: -10px -32px;
    top: calc(50% - 7px);
}
.icon-btn.icon-btn--add:after {
    width: 14px;
    height: 14px;
    background-position: -35px -33px;
    top: calc(50% - 7px);
}
.icon-btn.icon-btn--print:after {
    width: 17px;
    height: 17px;
    background-position: -11px -58px;
    top: calc(50% - 8.5px);
}
.table-in.table-in {
    width: 100%;
    min-width: 945px;
    border-collapse: collapse;
    border: 1px solid #E4E7EB;
    border-radius: 4px;
}
.table-in tr th, .table-in tr td {
    text-align: left;
    padding: 16px 26px;
    font-weight: 400;
    background: #fff;
    color: #3A3B3F;
    font-family: Roboto;
    font-size: 14px;
    letter-spacing: -0.05px;
    line-height: 20px;
    font-family: 'Fjalla One';
}
.table-in tr th:first-child {
    min-width: 250px;
}
tr.selected td {
    background: #F6F9FD;
}
.table-in tr td {
    border-top: 1px solid #E4E7EB;
}
.sl-no {
    width: 20px;
    height: 20px;
    display: inline-block;
}
.inline-text {
    margin-left: 5px;
    font-weight: 500;
}
.table-in .cs-checkbox {
    margin-right: 5px;
}
.user-count {
    margin: 0px 2px;
}
.table-in tr td.date-text {
    color: #9EA0A5;
}
thead .inline-text {
    font-weight: 400;
}
.footer-block h6, .footer-block p {
    margin: 0;
}
.footer-block.absolute-box {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 24px;
}
.footer-block h6 {
    color: #616161;
    font-size: 14px;
    line-height: 22px;
}
.footer-block p {
    opacity: 0.5;
    color: #6B6C6F;
    font-size: 12px;
    line-height: 18px;
}
.table-in tr td.text-g {
    color: #47B881;
}
.table-in tr td.text-r {
    color: #BE4D32;
}
.select-out.table-in tr.selected td {
    color: #3F51B5;
}

.btn:hover {
    animation: .5s pulsing infinite;
}

@keyframes pulsing {
    from {
        box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1);
    }
    to {
        box-shadow: 0px 0px 0px 2px rgba(0, 0, 0, 0.2);
    }
}



.two-side-block__right {
    width: 100%;
    max-width: 285px;
    height: 100%;
    overflow: auto;
    float: left;
    padding: 0;
    position: absolute;
    top: 0;
    right: 0;
    background: #f9fafb;
    border: 1px solid #E4E7EB;
}
.two-side-block__left {
    width: calc(100% - 285px);
    overflow: auto;
    float: left;
    padding: 20px;
    border: 1px solid #E4E7EB;
    border-right: 0;
    background: #ffffff;
}
.two-side-block {
    width: 100%;
    display: inline-block;
    position: relative;
}
.attachments-in-block {
    width: 100%;
    display: inline-block;
    padding: 15px 0px 5px 0px;
}
.story-detail .panel-options-head h5 {
    width: 100%;
    color: #061826;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.07px;
    line-height: 32px;
}
.story-detail .panel-options-head {
    align-items: flex-start;
}
.btn.print-btn {
    background: #6B6B6B;
    min-width: 170px;
    padding-left: 50px;
}
.story-about-panel {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}
.story-about-panel .inline-text {
    color: #979FA0;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: -0.04px;
    line-height: 20px;
    margin: 0;
    font-family: 'Fjalla One';
}
.story-about-panel .answer-in {
    font-weight: 500;
    font-family: 'Fjalla One';
}
.in-block {
    display: block;
    text-align: center;
}
.story-panel p {
    color: #3A3B3F;
    font-size: 14px;
    letter-spacing: -0.05px;
    line-height: 20px;
}
.two-side-block__right__head h5 {
    padding: 20px;
    margin: 0;
    color: #3F51B5;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.05px;
    line-height: 20px;
}
.two-side-block__right__head {
    width: 100%;
    border-bottom: 1px solid #E4E7EB;
}
.two-side-block__right__body {
    padding: 8px 20px;
}
.two-side-block__right__head h5 {
    padding: 20px;
    margin: 0;
    color: #3F51B5;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.05px;
    line-height: 20px;
    font-family: 'Fjalla One';
}
.two-side-block__right__head {
    width: 100%;
    border-bottom: 1px solid #E4E7EB;
}
.two-side-block__right__body {
    padding: 8px 20px;
}
.input-all-holder {
    width: 100%;
    margin: 9px 0px;
    display: inline-block;
    height: 65px;
    position: relative;
    border: 1px solid #E4E7EB;
}
.crossover-input {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: transparent;
    border: 0;
    padding: 0px 20px;
    color: #3A3B3F;
    font-family: Roboto;
    font-size: 14px;
    line-height: 16px;
    font-family: 'Fjalla One';
}
.entries {
    margin-top: 50px;
}
.cross-over-label {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 20px;
    color: #6B6B6B;
    font-size: 14px;
    line-height: 16px;
}
.input-all-holder.texted .cross-over-label {
    position: relative;
    width: 100%;
    height: auto;
    font-size: 12px;
    line-height: normal;
    display: inline-block;
    top: 10px;
    font-family: 'Fjalla One';
    letter-spacing: 0.3px;
}
.input-all-holder.texted .crossover-input {
    position: relative;
    height: 20px;
    top: 10px;
}
.crossover-input:focus {
    outline: 0;
}
.input-textarea-holder {
    width: 100%;
    display: inline-block;
    margin: 9px 0px;
}
.cs-textarea {
    width: 100%;
    padding: 24px 20px;
    resize: none;
    border: 1px solid #E4E7EB;
    color: #9EA0A5;
    font-family: Roboto;
    font-size: 14px;
    line-height: 16px;
    background: #f9fafb;
    font-family: 'Fjalla One';
}
.form-action-area {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 9px 0px;
}
.score-head {
    display: block;
    color: #9EA0A5;
    font-size: 12px;
    line-height: 14px;
    font-family: 'Fjalla One';
}
.score-in {
    color: #3A3B3F;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.07px;
    line-height: 20px;
    display: block;
    margin: 9px 0px;
    font-family: 'Fjalla One';
}
.btn-cs-blue {
    border-radius: 4px;
    background: #6B6B6B;
    padding: 14px 40px;
    border: none;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.25px;
    line-height: 16px;
    cursor: pointer;
    font-family: 'Fjalla One';
}
.attachments-in-block h5 {
    margin: 0;
    font-family: 'Fjalla One';
}
.video-holder {
    width: auto;
    display: inline-block;
    float: left;
}
.audio-holder {
    width: 260px;
    display: inline-block;
    float: left;
}
.video-in-each {
    display: flex;
    align-items: center;
    margin: 20px 0px;
    margin-right: 120px;
}
.video-icon-in {
    width: 65px;
    height: 65px;
    float: left;
    border-radius: 4px;
    background: linear-gradient(134.72deg, #3F51B5 0%, #1665D8 100%);
    box-shadow: 0 1px 3px 0 rgba(0,0,0,0.2);
    position: relative;
}
.video-description-area {
    width: calc(100% - 65px);
    float: left;
    padding-left: 15px;
}
.video-description-area h6 {
    margin: 0;
    color: #616161;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.04px;
    line-height: 20px;
    transition: 0.3s linear;
    font-family: 'Fjalla One';
}
.video-description-area:hover h6 {
    text-decoration: underline;
    color: #3F51B5;
    transition: 0.3s linear;
}
.video-description-area {
    cursor: pointer;
}
.video-description-area p {
    margin: 0;
    color: #8F9CA0;
    font-size: 14px;
    letter-spacing: -0.04px;
    line-height: 20px;
}
.video-icon-in:after {
    content: '';
    background: url('../images/sprite.svg') no-repeat -39px -55px;
    width: 20px;
    height: 22px;
    position: absolute;
    left: calc(50% - 10px);
    top: calc(50% - 11px);
}
.audio-description-area h6 {
    margin: 0;
    color: #616161;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.04px;
    line-height: 20px;
    font-family: 'Fjalla One';
}
.audio-in-each {
    padding: 14px;
    border-radius: 4px;
    background-color: #FFFFFF;
    box-shadow: 0 1px 3px 0 rgba(0,0,0,0.2);
    margin: 20px 0px;
}
.audio-icon-in {
    width: 13px;
    height: 20px;
    margin-right: 15px;
    background: url('../images/sprite.svg') no-repeat -116px -56px;
    float: left;
}
.audio-description-area {
    width: calc(100% - 30px);
    float: left;
}
.audio-in-each:after {
    content: '';
    display: table;
    clear: both;
}
.audio-play-pause {
    margin-right: 13px;
}
.audio-play-pause--pause-in {
    background: url('../images/sprite.svg') no-repeat -71px -59px;
    width: 14px;
    height: 14px;
}
.audio-play-pause--play-in {
    background: url('../images/sprite.svg') no-repeat -94px -59px;
    width: 13px;
    height: 14px;
}
.audio-options-in {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}
.audio-seeker {
    width: calc(100% - 63px);
}
.play-time-indicators {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #979797;
    font-size: 8px;
    font-weight: 500;
    line-height: 9px;
}
.play-progress-bar {
    width: 100%;
    background: #EBF1F1;
    height: 3px;
    margin-top: 4px;
    position: relative;
    border-radius: 4px;
}
.play-completed {
    position: absolute;
    width: 40%;
    height: 3px;
    border-radius: 4px;
    background: #3F51B5;
    top: 0;
    left: 0;
}


/* MANAGE USER PAGE END */



/*Add New User Pop Up Starts*/


.modal-login-form {
    padding: 5px 0px;
    display: inline-block;
}
.modal-form-row {
    display: flex;
    width: 100%;
    align-items: center;
    float: left;
}
.modal-label-block {
    width: 209px;
    float: left;
    margin-left: 31px;
}
.modal-input-block {
    width: calc(100%);
    float: left;
    margin: 7px 68px 7px 4px;
}
.modal-login-form-input {
    width: 100%;
    background: #fff;
    border: 1px solid #231F20;
    height: 30px;
    padding: 2px 10px;
    font-family: 'Fjalla One';
}
.modal-submit-block {
    margin: 30px 0px;
    display: inline-block;
    width: 100%;
    text-align: center;
}
.modal-submit-block .btn {
    float: none;
    border: none;
    cursor: pointer;
}

.btn {
    width: auto;
    min-width: 90px;
    padding: 5px 10px;
    line-height: 30px;
    text-decoration: none;
    font-size: 18px;
    color: #231F20;
    background: #EDE1D5;
    text-transform: uppercase;
    margin: 0px 10px;
    float: left;
    transition: 0.3s linear;
}

.btn.primary-btn {
    background: #6B6B6B;
    color: #ffffff;
    margin: 0px 30px;
    font-family: 'Fjalla One';
    font-size: 19.03px;
    text-align: center;
}

.btn.normal-btn:hover {
    background: #cabaaa;
    transition: 0.3s linear;
}

.form-user-select {
    display: inline-block;
    margin: 9px 0px;
    margin-top: 0;
    height: 35px;
    -webkit-appearance: none;
    width: 150px;
    padding: 2px 30px 2px 15px;
    cursor: pointer;
    border: 1px solid #807d7c;
    font-family: 'Fjalla One';
}

.cs-select {
    background: url(../images/select-bg.png) no-repeat;
    background-position: 90%;
    background-color: #ffffff;
}

/*Add New User Pop Up Ends*/

/*------------------------*/




.cs-radio-in {
    width: 100%;
    display: inline-block;
    margin: 5px 0px;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Fjalla One';
}
.cs-radio-in input[type="radio"] {
    margin: 0;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    z-index: 2;
    cursor: pointer;
}

.hide-click {
    pointer-events: none;
}
.cs-radio-placeholder {
    width: 20px;
    height: 20px;
    background: #ffffff;
    border: 1px solid #6b6b6b;
    position: absolute;
    left: 0;
    top: 0;
    transition: 0.3s linear;
}
.inline-definition {
    font-size: 12px;
    width: 100%;
    display: inline-block;
    color: #888;
}
.cs-radio-in input[type="radio"]:checked + .cs-radio-placeholder {
    background: #3f51bb;
    border: 1px solid #3f51bb;
    transition: 0.3s linear;
}


/*------------------------*/


/* POP OVER BOX */

.pop-over-holder {
    width: 330px;
    position: fixed;
    background: #ffff;
    right: 30px;
    top: 64px;
    box-shadow: 0 2px 6px 0 rgba(67,90,111,0.3);
    z-index: 5;
}
.pop-over-head h5, .pop-over-head p {
    margin: 0;
}
.content-abstract h6, .content-abstract p {
    margin: 0;
}
.pop-over-head {
    padding: 25px;
    background: #F9FAFB;
}
.pop-over-head h5 {
    color: #3A3B3F;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.05px;
    line-height: 20px;
}
.pop-over-head p {
    color: #9EA0A5;
    font-family: Roboto;
    font-size: 12px;
    line-height: 14px;
}
.pop-over-content-each {
    padding: 15px;
    display: flex;
    align-items: center;
    border-top: 1px solid #E4E7EB;
}
.content-type-indicator {
    width: 36px;
    height: 36px;
    background: #FAFAFA;
    border-radius: 30px;
    position: relative;
}
.content-abstract {
    width: calc(100% - 36px);
    float: left;
    padding: 0px 15px 0px 8px;
    position: relative;
}
.content-abstract:after {
    content: '';
    width: 7px;
    height: 12px;
    background: url(../images/sprite.svg) no-repeat;
    background-position: -205px -34px;
    position: absolute;
    right: 0px;
    top: calc(50% - 6px);
}
.pop-over-content-each:first-child {
    border-top: 1px solid transparent;
}
.content-abstract h6 {
    color: #3A3B3F;
    font-size: 14px;
    line-height: 16px;
}
.content-abstract p {
    color: #9EA0A5;
    font-size: 12px;
    line-height: 14px;
}
.pop-over-body {
    height: auto;
    max-height: 300px;
    overflow: auto;
}
.content-type-indicator:after {
    content: '';
    width: 13px;
    height: 10px;
    background: url(../images/sprite.svg) no-repeat;
    position: absolute;
    left: calc(50% - 6.5px);
    top: calc(50% - 5px);
}
.content-type-indicator--story:after {
    background-position: -188px -10px;
}
.content-type-indicator--account:after {
    width: 14px;
    height: 11px;
    background-position: -208px -10px;
    left: calc(50% - 7px);
    top: calc(50% - 5.5px);
}

/* POP OVER BOX END */

.story-panel img {
    width: 100%;
}

/* MODAL ITEMS */

body.modal-in {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.cs-modal-in {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.70);
    padding: 50px;
    align-items: center;
    justify-content: center;
    display: none;
}
.cs-modal-in.show {
    display: inline-block;
    /* animation: 0.5s modalIn forwards; */
}
/* @keyframes modalIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
} */
.modal-content {
    width: 100%;
    background: #fff;
    height: auto;
    max-height: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    position: relative;
    left: -100%;
}
.cs-modal-in.show .modal-content  {
    animation: 1s modalContentIn forwards;
}
@keyframes modalContentIn {
    from {
        left: -100%;
    }
    to {
        left: 0;
    }
}
.cs-modal--lg .modal-content {
    max-width: 900px;
}
.cs-modal-head {
    background: #6B6B6B;
    color: #fff;
    position: relative;
}
.cs-modal-header-in {
    font-size: 20px;
    font-weight: 400;
    padding: 15px;
    margin: 0;
    padding-right: 55px;
    font-family: 'Playfair Display';
}
.modal-out {
    width: 25px;
    height: 25px;
    position: absolute;
    right: 15px;
    top: calc(50% - 12.5px);
    cursor: pointer;
}
.modal-out:before {
    content: '';
    width: 25px;
    height: 2px;
    position: absolute;
    background: #fff;
    transform: rotate(45deg);
    top: 12.5px;
    left: 0px;
}
.modal-out:after {
    content: '';
    width: 25px;
    height: 2px;
    position: absolute;
    background: #fff;
    transform: rotate(-45deg);
    top: 12.5px;
    right: 0px;
}
.cs-modal-body {
    padding: 15px;
    height: calc(100% - 54px);
    width: 100%;
    display: inline-block;
    overflow: auto;
}

/* MODAL ITEMS END */

td .inline-text {
    cursor: pointer;
}

.user-table tr:hover td {
    background: #F6F9FD;
    cursor: pointer ;
}

/* Accordion items starts */

/* Accordion items ends */


.two-side-block__right.accordion-in {
    position: relative;
    float: right;
}
.accordion-head {
    cursor: pointer;
    position: relative;
}
.accordion-toggling-panel {
    display: none;
}
.accordion-open + .accordion-toggling-panel {
    display: block;
    border-bottom: 1px solid #E4E7EB;
    background: #f5f5f5;
}
.accordion-head.accordion-open {
    background: #eee;
    position: relative;
    padding-right: 20px;
}
.accordion-head:after {
    content: '';
    width: 10px;
    height: 5px;
    background: url(../images/sprite.svg) no-repeat;
    background-position: -166px -38px;
    position: absolute;
    right: 20px;
    top: calc(50% - 2.5px);
    transform: rotate(0);
    transition: 0.3s linear;
}
.accordion-head.accordion-open:after {
    transform: rotate(180deg);
    transition: 0.3s linear;
}

.avg-score{

    position: absolute;

    top: 12px;

    right: 60px;

    max-width: 300px;
}

.btn-all-holder .btn {
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 0.8px;
    float: none;
    display: inline-block;
    border-radius: 5px;
    cursor: pointer;
}
.btn-all-holder {
    width: 100%;
    display: inline-block;
    text-align: center;
}
.btn.btn-green {
    background: #5f9822;
}

h3.cs-modal-header-in {
    text-align: center;
}

.delmodal {
    width: 600px;
}


/*  Assets Modal CSS Starts*/






.modal-header {
    font-size: 48px;
    font-weight: 100;
    text-align: center;
    margin: 15px 0px;
    display: inline-block;
    width: 100%;
}
.curly {
    font-family: 'Garamond';
    font-style: italic;
    font-size: 30px;
    line-height: 50px;
}

.preview-block .list-audio ul li, .preview-block .list-video ul li {
    width: 95%;
    margin-top: 0;
}
.list-audio ul li, .list-video ul li {
    float: left;
    width: auto;
    display: flex;
    align-items: center;
    background: #ede1d5;
    padding-right: 15px;
    border: 1px solid #ccc;
    position: relative;
    margin-right: 15px;
    margin-bottom: 10px;
    font-family: 'Fjalla One';
}

.list-audio ul li img, .list-video ul li img {
    float: left;
    margin-right: 15px;
    height: 50px;
}

.list-audio ul, .list-video ul {
    float: left;
    width: 100%;
    padding: 0;
    list-style-type: none;
    margin-bottom: 0;
}

.preview-holder{

    width:100%;
}

.list-assets {
    float: left;
    width: 100%;
    margin-bottom: 20px;
}

.popup-listarea {
    float: left;
    width: calc(100% - 350px);
    max-height: 350px;
    overflow-y: auto;
    padding-left: 30px;
}

.popup-playarea {
    width: 350px;
    min-height: 250px;
    float: left;
    padding-left: 30px;

}

.popup-contentarea {
    display: flex;
    align-items: center;
    padding: 0px 0px 50px 0px;
}

/*  Assets Modal CSS Ends*/


.intro-text h4, .intro-text h3, .intro-text p {
    font-family: 'Fjalla One';
}
.intro-text p {
    font-size: 13px;
    color: #6b6b6b;
    letter-spacing: 0.3px;
    margin: 3px 0px;
    line-height: 24px;
}
.column-flex {
    flex-direction: column;
}
.hover-indic-message {
    font-size: 9px;
    color: #ffffff;
    height: 0;
    opacity: 0;
    text-align: center;
    transition: all 0.3s linear;
}
.nav-option-button:hover .hover-indic-message {
    height: 15px;
    margin-top: 5px;
    opacity: 1;
    transition: all 0.3s linear;
}


.eq-padding {
    padding: 14px;
}
.form-action-area.column-flex {
    flex-direction: column;
}
.form-action-area.column-flex .btn-cs-blue {
    margin: 5px 0px;
    width: 100%;
}

.assigned-mark-block {
    float: left;
    width: 100%;
    margin-top: 20px;
}
.assigned-mark-header  {
    float: left;
    width: 100%;
}
.assigned-mark-header h5 {
    float: left;
    width: 100%;
    font-size: 16px;
    font-family: 'Fjalla One';
    font-weight: 400;
    margin: 0 0 15px 0;
}
.input-block {
    float: left;
    width: 100%;
    margin-bottom: 15px;
}
.input-block > input {
    float: left;
    width: 100%;
    background: #fff;
    border: 1px solid #231F20;
    height: 30px;
    padding: 2px 10px;
    font-family: 'Fjalla One';
}
.input-block input[type=number]::-webkit-inner-spin-button,
.input-block input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}
.assigned-button {
    float: left;
    width: 100%;
}
.general-btn {
    background: #6B6B6B;
    color: #ffffff;
    border: 0;
    font-family: 'Fjalla One';
    font-size: 16.03px;
    line-height: 30px;
    padding: 0 20px;
    text-align: center;
}

.intro-text ul {
    float: left;
    width: 100%;
    margin: 0px;
    margin-bottom: 10px;
    font-family: 'Fjalla One';
}
.intro-text ul li {
	font-size: 13px;
    color: #6b6b6b;
    letter-spacing: 0.3px;
    margin: 3px 0px;
    line-height: 24px;
}
/* MEDIA QUERIES */

@media (max-width: 1440px) {

    .search-option-block {
        max-width: 450px;
        margin-left: 20px;
    }
    .story-about-panel {
        display: inline-block;
    }
    .in-block {
        text-align: left;
        display: inline;
    }
    .two-side-block__left.story-detail {
        width: calc(100% - 350px);
    }
    .two-side-block__right {
        max-width: 350px;
    }

}
@media (min-width: 1251px) {
    .two-side-block.innerpages {
        height: 100%;
        float: left;
    }
    .innerpages .two-side-block__left {
        height: 100%;
        overflow: auto;
    }
    .innerpages .tab-switching-panel {
        overflow: initial;
    }
    .innerpages .two-side-block__right__head h5 {
        padding: 10px 20px;
    }
    .innerpages .input-all-holder.texted .cross-over-label {
        top: 5px;
    }
    .innerpages .input-all-holder.texted .crossover-input {
        height: 35px;
        top: 0px;
    }
    .innerpages .input-all-holder {
        height: 55px;
    }
    .innerpages .cs-textarea {
        padding: 10px 20px;
    }
    .innerpages .panel-options-content {
        height: calc(100% - 182px);
        overflow: auto;
        padding-right: 24px;
    }
    .innerpages .panel-options-content.no-media {
        height: 100%;
    }
    .innerpages .panel-options-head {
        padding-bottom: 20px;
    }
}
@media (max-width: 1250px) {
    .btn.icon-btn {
        font-size: 11px;
    }
    .panel-options-head h5 {
        font-size: 16px;
        line-height: 20px;
        width: 40%;
    }
    .two-side-block__right {
        max-width: none;
        position: relative;
    }
    .two-side-block__left.story-detail {
        width: 100%;
    }
}

@media (max-width:1024px) {

    .form-items__each p {
        margin: 0;
        text-align: center;
        color: #9EA0A5;
        font-size: 14px;
        letter-spacing: -0.05px;
        line-height: 16px;
        text-align: center;
    }
    .form-items__each .primary-link {
        color: #1665D8;
        font-weight: bold;
        cursor: pointer;
    }
    .login-box {
        max-width: 600px;
        display: flex;
        height: 100%;
        max-height: none;
        margin: 30px auto;
        padding: 30px 0px;
    }
    .login-form {
        max-width: 260px;
    }
    .login-box-panel {
        display: inline-block;
        height: auto;
    }
    .panel-options-head {
        display: inline-block;
        width: 100%;
    }
    .search-option-block {
        margin: 12px 0px;
        max-width: none !important;
    }
    .btn.icon-btn:first-child {
        margin-left: 0;
    }
    .user-options-block {
        float: left;
        margin-top: 5px;
        justify-content: flex-start;
    }

}

@media (max-width:767px) {
    .login-box {
        margin: 20px 0px;
        display: inline-block;
        max-width: none;
        padding: 0;
    }
    .login-box-panel {
        padding: 0px 20px;
    }
    .login-box__left {
        width: 100%;
    }
    .login-form {
        max-width: none;
        padding: 0px 30px;
    }
    .login-box__right {
        width: 100%;
        max-height: none;
    }
    .form-head {
        margin: 30px auto;
    }
    .side-bar {
        max-width: none;
        display: flex;
        flex-direction: column;
        height: auto;
        margin-bottom: 0;
    }
    .tab-list__item {
        display: inline-block;
        float: left;
    }
    .tab-list {
        padding: 0px 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .user-area {
        border: 0;
        padding-bottom: 0;
    }
    .tab-list__item__content {
        padding-left: 35px;
        height: 30px;
    }
    .tab-list__item__content:after {
        left: 10px;
    }
    .tab-switching-area {
        padding-top: 10px;
    }
    .logo-area {
        float: left;
        width: calc(100% - 100px);
    }
    .logo-area h1 {
        font-size: 14px;
        padding-right: 0;
        line-height: 16px;
    }
    .page-nav {
        height: 50px;
    }
    .tab-switching-panel-holder {
        width: 100%;
        height: auto;
        padding-bottom: 24px;
    }
    .footer-block.absolute-box {
        position: relative;
        padding: 0;
    }
    .nav-options-list__items {
        width: 50px;
    }
    .cs-modal-in {
        padding: 10px;
        overflow: auto;
    }
    .modal-content {
        max-height: none;
        display: inline-block;
    }

    .popup-contentarea {
        flex-direction: column;
    }
    .popup-listarea {
        width: 100%;
    }
    .popup-playarea {
        width: 100%;
    }

}

@media (max-width: 400px) {
    .tab-list {
        padding: 0px;
        display: inline-block;
    }
    .tab-list__item {
        width: 100%;
    }
    .tab-list__item__content {
        padding-left: 35px;
        height: 46px;
    }
}

@media print
{
    @page {
        size: A4; /* DIN A4 standard, Europe */
        margin:20px;
    }
    html, body {
        /* height: 297mm; */
        font-size: 16px;
        background: #FFF;
        overflow:visible;
    }
    body {
        padding-top:15mm;
    }
}

/* MEDIA QUERIES END */