/********************** Common Classes ********************** */
body {
    background: #efefef;
}
.tableViewScroll {
    overflow-x: auto;
}
.categoryWidth {
    min-width: 200px;
}
.mobileNav {
    .closebtn {
        display: none;
    }
}

.leftSideNav {
    font-size: 30px;
    cursor: pointer;
    display: none;
}
.noBorder {
    border: 0px !important;
}
.subSection {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 6px;
}
.subSection {
    .homeTitle {
        cursor: pointer;
        gap: 10px;
        display: flex;
        align-items: center;
        font-size: 15px;
        font-weight: bold;
        border-bottom: 1px dashed #000000;
        padding-bottom: 10px;
        margin-bottom: 10px;

        .homeTitleIcon {
            border-radius: 999px;
            background: #000000;
            height: 32px;
            width: 32px;
            color: #ffffff;
            line-height: 32px;
            text-align: center;
        }
    }

    .internalPageTitle {
        margin: 0;
        padding: 0 0px 20px 0px;
        display: flex;
        width: 100%;
        gap: 10px;
        align-items: center;
        border-bottom: 1px dashed #000000;

        .noBdrBottom {
            border-bottom: none !important;
        }
        .internalTitleIcon {
            margin-top: 3px;
            border-radius: 999px;
            background: #000000;
            height: 32px;
            width: 32px;
            line-height: 32px;
            color: #ffffff;
            text-align: center;

            i {
                font-size: 18px;
                color: #fff;
                font-weight: bold;
            }
            span {
                font-size: 30px;
                line-height: 30px;
            }
        }
    }
}
.commonPageTitle {
    font-size: 30px;
    margin: 0;
    padding: 0;
    display: inline-block;
    font-weight: bold;
}
.txtCenter {
    text-align: center;
}
.commonStripBanner {
    width: 100%;
    max-height: 100px;
    overflow: hidden;
    margin: 20px 0px;
    img {
        width: 100%;
    }
}
.outerSection {
    padding: 20px;
}
.linkPages {
    cursor: pointer;
    display: block;
    ul {
        margin: 0;
        padding: 0;

        li {
            margin: 0;
            padding: 0;
            list-style-type: none;
            display: block;

            a > i {
                min-width: 20px;
            }
        }
    }

    a {
        text-decoration: none;
        width: 100%;
        display: flex;
        color: #000000;
        font-size: 13px;
        padding: 10px 0;
        border-bottom: 1px solid #e3e3e3;
        &:hover {
            background: #e4e4e4;
            padding-left: 10px;
            transition: 0.4s all ease-in-out;
        }
    }
}
/* ************************ Pagination ************************ */
.pagination-container {
    cursor: pointer;
    display: flex;
    padding: 5px 15px;
    align-items: center;
    background: #ffffff;
    border: 1px solid #aaaaaa;
    border-radius: 6px;
    line-height: 0.5;
    a {
        text-decoration: none;
        display: block;
    }
    input {
        width: 50px;
    }
    select {
        width: 55px;
    }
    .pgCountText {
        color: #0000ff;
        margin-left: 10px;
    }
    .pagination-summary {
        font-weight: bold;
        margin-left: auto;
        margin-right: 10px;
    }
}

/********************** carousel ********************** */
.glyphicon-chevron-right {
    background: #545454;
    border-radius: 999px;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
}
.glyphicon-chevron-left {
    background: #545454;
    border-radius: 999px;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

/********************** Modal Pop Up ********************** */
.modal-body {
    padding: 20px;

    .formInput {
        display: flex;
        .formName {
            margin-right: 10px;
            padding-top: 5px;
        }
        .nameInput {
            flex-grow: 1;
        }
        input {
            border: 1px solid #000000;
            padding: 5px 10px;
            width: 100%;
        }
        .sharePopUpBtn {
            display: flex;
            gap: 10px;
            padding: 10px 0;
            i {
                margin-left: 5px;
            }
        }
    }
}
.modal-header {
    padding: 0 !important;
    border-bottom: none !important;
}
.modal-header .close {
    margin: 20px 20px 0 0;
}
.modal-title {
    font-size: 18px;
    font-weight: bold;
    padding: 10px 0px !important;
    margin: 5px 20px;
    border-bottom: 1px solid #ccc;

    span {
        background: #000000;
        height: 32px !important;
        width: 32px !important;
        min-width: 32px !important;
        min-height: 32px !important;
        border-radius: 999px;
        text-align: center;
        line-height: 32px;
        margin-right: 5px;
        display: inline-block;

        i {
            color: #ffffff;
            font-size: 18px;
        }
    }
}
.modal-content {
    .close {
        background: rgba(0, 0, 0, 1);
        height: 24px !important;
        width: 24px !important;
        line-height: 24px !important;
        color: #fff !important;
        border-radius: 999px !important;
        font-size: 15px;
        text-align: center;
        opacity: 1;
    }
}

/********************** Common Button ********************** */
.btnCommon {
    padding: 10px;
    color: #000;
    width: auto;
    cursor: pointer;
    border: 0px;
    display: flex;
    font-weight: bold;
    font-size: 15px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}
.btnGreen,
.btnGreen:hover {
    background: #30ea03;
    color: #000;
}
.btnPink,
.btnPink:hover {
    background: #ff93e9;
    color: #000;
}
.btnBlack,
.btnBlack:hover {
    background: #000;
    color: #fff;
}
.btnTeal,
.btnTeal:hover {
    background: #0399ea;
    color: #000;
}

/* ************************ Posts ************************ */
.postContent {
    .authorProfile {
        display: flex;
        align-items: center;
    }

    .authorIcon {
        /* i{
            cursor: pointer;
            border: 1px solid #000000;
            background: #000000;
            height: 32px;
            width: 32px;
            border-radius: 999px;
            display: block;
        } */

        img {
            border-radius: 999px;
            min-height: 32px;
            min-width: 32px;
            height: 32px;
            width: 32px;
        }
    }

    .authorName {
        margin-left: 10px;
        font-weight: bold;
        font-size: 15px;
        display: block;
    }

    .date {
        font-weight: normal;
        font-size: 11px;
        color: #a3a3a3;
        display: block;
    }

    .authorTitle {
        margin: 10px 0 10px 0;
        font-weight: bold;
        font-size: 18px;
        display: inline-block;
    }

    .authorDesc {
        font-size: 13px;
        font-weight: normal;
        padding-bottom: 10px;
    }

    .imageBx img {
        width: 100%;
        height: 500px;
    }

    .authorReadMore {
        margin: 14px 0 14px 0;
        font-size: 13px;
        display: inline-block;
        a {
            text-decoration: none;
            color: #000000;
        }
    }

    .keywords {
        color: #0000ff;
        cursor: pointer;
        display: block;
        margin: 5px 0;
        
        .comma {
            color: #000000;
        }
        a {
            text-decoration: none;
        }
    }

    .likeNshare {
        cursor: pointer;
        display: flex;
        align-items: center;
        margin: 0 0 10px 0;
        font-weight: bold;
        font-size: 13px;
        gap: 30px;
        i {
            font-size: 17px;
        }
        a {
            text-decoration: none;
        }

        .navBar {
            margin-left: auto;

            > ul {
                list-style-type: none;
                margin: 0;
                padding: 0;
                font-size: 15px;
                i {
                    color: #30ea03;
                }
            }
        }
    }

    .mainCharacters {
        font-weight: bold;
        font-size: 13px;
        display: inline-block;
        margin: 0;
        padding: 0;
    }

    .charactersName {
        list-style-type: none;
        display: flex;
        margin: 10px 0 10px 0;

        .sap {
            margin-right: 5px;
        }
    }

    .information {
        font-size: 13px;
        font-weight: normal;

        > div {
            margin-bottom: 20px;
        }

        .infoGrp {
            display: flex;
            gap: 10px;

            .icon {
                span {
                    border-radius: 999px;
                    background: #000000;
                    height: 32px;
                    width: 32px;
                    display: inline-block;
                    background: #000000;
                    text-align: center;
                    line-height: 32px;

                    i {
                        color: #ffffff;
                        font-size: 15px;
                    }
                }
            }

            .detail {
                .title {
                    font-weight: bold;
                }

                .problem {
                    font-weight: bold;
                }

                .problemAddressed {
                    font-weight: bold;
                }

                .Result {
                    font-weight: bold;
                }

                .Teach {
                    font-weight: bold;
                }

                .BU {
                    font-weight: bold;
                }
            }

            .region {
                padding-top: 10px;
                font-weight: bold;
            }
        }
    }

    .borderBottom {
        border-bottom: 1px solid #d0d0d0;
        margin-bottom: 20px;
        margin-top: 40px;
    }

    /* ************************ Comment Section ************************ */
    .commmentHead {
        font-weight: bold;
        font-size: 21px;
    }

    .commentSection,
    .viewComment {
        display: flex;
        margin: 10px 0 10px 0;
        gap: 10px;

        .visitorIcon {
            img {
                border-radius: 999px;
                min-height: 32px;
                min-width: 32px;
                height: 32px;
                width: 32px;
            }
        }
    }

    .commentBar {
        border-radius: 6px;
        padding: 10px 20px 10px 10px;
        background: #b9f6ff9a;
    }

    .comment {
        font-size: 11px;
        font-weight: normal;
        margin-left: 10px;
    }

    .commentBox {
        flex-grow: 1;
        display: block;

        textarea {
            display: block;
            width: 100%;
            border: 1px solid #000000;
            border-radius: 6px;
            height: 80px;
            padding: 7px 0 0 10px;
        }
    }

    .submitBtn {
        width: 100px;
        margin: 0 0 0 42px;
    }

    .hashTags {
        padding-top: 20px;
    }
}

/* ************************ Left Bar ************************ */
.leftBar {
    .commonLogo {
        cursor: pointer;
        font-size: 46px;
        margin: 0;
        font-weight: bold;
        a {
            text-decoration: none;
            color: #000;
        }
    }

    .logoTagline {
        font-size: 21px;
        font-weight: normal;
    }
}

/* ************************ Mid Bar ************************ */
.midBar {
    .midHead {
        display: flex;
        align-items: baseline;
        gap: 80px;
        .storyHead {
            font-size: 30px;
            font-weight: bold;
            flex-shrink: 0;
        }

        .searchBar {
            margin-left: auto;
            display: flex;
            gap: 10px;
            flex-grow: 1;

            input {
                padding: 5px 8px;
                border-radius: 6px;
                flex-grow: 1;
                border: 1px solid #000000;
                margin-bottom: 10px;
                height: 45px;
            }
        }

        .searchInputBtn {
            height: 45px;
            padding: 5px;
            i {
                font-size: 30px;
            }
        }
    }

    /* ************************ Slide ************************ */
    .slideSection {
        display: flex;
        flex-direction: column;

        h1 {
            font-size: 28px;
            font-weight: bold;
            padding-right: 200px;
        }

        .sliderDesc {
            font-size: 13px;
            font-weight: normal;
            margin: 20px 0;
            padding-right: 300px;
        }

        .sliderReadMore {
            border: 1px solid #000;
            width: 120px;
            border-radius: 0;
            font-weight: normal;
            a {
                text-decoration: none;
                color: #000000;
            }
        }

        .sliderReadMore:hover {
            background: #30ea03;
            transition: all 0.1s ease-in-out;
            color: #000;
        }
    }

    .carousel-img1 {
        background-image: url("https://www.w3schools.com/bootstrap/chicago.jp");
        background-position: bottom center;
        background-repeat: no-repeat;
        margin: 0;
    }

    .carousel {
        align-items: center;
        display: flex;
        justify-content: center;
    }

    .carousel-control {
        height: 48px;
        width: 48px;
        background: #555555 !important;
        border-radius: 999px;
        top: calc(60% - 48px);

        i {
            line-height: 48px;
        }
    }
}

/* ************************ Right Bar ************************ */
.rightBar {
    .videoBar {
        display: flex;
        align-items: center;
        margin-bottom: 10px;

        .videoIcon {
            margin-right: 15px;
            color: #ffffff;
            display: flex;
            align-items: center;
            border: 1px solid #000000;
            background: #000000;
            height: 32px;
            width: 32px;
            border-radius: 999px;
            justify-content: center;
        }

        .videoTitle {
            font-size: 25px;
            padding: 0;
            margin: 0;
            font-weight: bold;
            text-align: left;
            a {
                text-decoration: none;
                color: #000;
            }
            input {
                border: none !important;
            }
        }
    }

    .videoSection {
        padding: 0 !important;
        background: #000 !important;
        border: 1px dashed #000;

        a {
            display: block;
            width: 100%;
            color: #fff;
            text-decoration: none;
        }

        a img {
            width: 100%;
            height: auto;
        }

        b a div {
            padding: 10px 20px;
        }

        .videoText {
            font-size: 13px;
            background: #000000;
            color: #ffffff;
            margin: 10px 20px;
        }
    }

    .writingSection {
        border: 1px solid #000000;
        background: #30ea03;
        padding: 20px 20px 0 20px;
    }

    .categoryList {
        display: flex;

        ul {
            margin: 10px 0;
            padding: 0;
            list-style-type: none;

            li {
                margin: 0;
                padding: 0px;
                float: left;

                a {
                    font-size: 13px;
                    text-decoration: none;
                    border-radius: 999px;
                    margin: 0 5px 5px 0;
                    cursor: pointer;
                    background: #b9f6ff9a;
                    color: #000000;
                    font-weight: bold;
                    padding: 10px;
                    display: block;
                }
            }
        }

        a {
            &:hover {
                text-decoration: none;
                background: #50e1f79a;
            }
        }
    }

    .selectPlace {
        width: 100%;
        min-height: 42px;
        border: 1px solid #000;
        border-radius: 6px;
        padding: 5px 10px;
    }

    .ddlRegion {
        margin-bottom: 10px;

        select {
            padding: 5px;
        }
    }
    .filterBtn {
        width: 70px;
        padding: 8px;
    }
    .MessageBox {
        display: inline-block;
        font-size: 13px;
        text-align: center;
        i {
            color: #0080cf;
        }
    }

    .contactDesc {
        font-size: 13px;
        display: inline-block;
    }

    .email {
        font-size: 13px;
        font-weight: bold;
        padding: 0;
        margin-top: 10px;
        display: inline-block;
    }

    .mailId {
        font-size: 13px;
    }

    .messageImg i {
        display: flex;
        justify-content: center;
        justify-content: center;
        font-size: 100px;
    }
}

/* ************************ Add New Story Page ************************ */
.storyContainer {
    max-width: 1000px;
    margin: auto;

    .storyHead title {
        i {
            font-size: small;
        }
    }
    .storyFormTitle {
        font-size: 13px;
        font-weight: bold;
        text-align: right;

        input {
            border: 1px solid #000000;
            width: 100%;
            padding: 10px;
            font-weight: normal;
        }
        input[type="file"] {
            border: none;
            padding: 0;
        }
        select {
            border: 1px solid #000000;
            width: 100%;
            font-weight: normal;
        }
        .impMark {
            color: #ff0000;
        }
        .descBx {
            font-weight: normal;
            .textareaLarge {
                border: 1px solid #000000;
                height: 260px;
                width: 100%;
                padding: 10px;
            }
            /* .textareaSmall {
                    border: 1px solid #000000;
                    height: 80px;
                    width: 100%;
                    padding: 10px;
                } */
            .textareaMedium {
                border: 1px solid #000000;
                height: 130px;
                width: 100%;
                padding: 10px;
            }
        }
    }
    .newStoryBtn {
        display: flex;
        gap: 10px;
        i {
            margin-left: 5px;
        }
    }
}

/*.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
}

menu,
ol,
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pagination>li {
    display: inline;
}

.pagination>li:first-child>a,
.pagination>li:first-child>span {
    margin-left: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span,
.pagination>.active>span:focus,
.pagination>.active>span:hover {
    z-index: 3;
    color: #fff;
    cursor: default;
    background: #337ab7;
    border-color: #337ab7;
}

.pagination>li>a,
.pagination>li>span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #337ab7;
    text-decoration: none;
    background: #fff;
    border: 1px solid #ddd;
    background: red;
}

.form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color    ease-in-out .15s, -webkit-box-shadowease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-colorease-in-out .15s, box-shadowease-in-out .15s;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    font-size: 100%;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: inherit;
    margin: 0;
    padding: 0;
} */

/********************** Spotlight Videos /********************** */
.bgFilters {
    background: #e6ebff;
    border-top: 1px solid #000;
    padding: 20px;
    margin-bottom: 20px;

    .spotlightVideosFilterBtn {
        display: flex;
        margin: 15px 0;
        gap: 10px;
        i {
            margin-left: 10px;
        }
    }
}
.videos {
    padding-bottom: 20px;
    a {
        text-decoration: none;
        display: inline-block;
        font-weight: bold;
        margin: 0;
        padding-top: 5px;
        color: #000000;
    }
    .imgBox {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* ********************** My Submissions ********************** */
table.tblMySubmissions {
    tbody {
        td {
            vertical-align: middle;
        }
    }
    .tableHeader {
        background: #000000;
        color: #ffffff;
    }
}
.action {
    > div {
        min-width: 120px;
    }
    a {
        height: 32px;
        width: 32px;
        display: inline-block;
        line-height: 32px;
        text-align: center;
        border-radius: 6px;
        text-decoration: none;
    }

    .searchIcon {
        background: #ff93e9;
    }
    .editIcon {
        background: #30ea03;
    }
    .deleteIcon {
        background: #000000;
        i {
            color: #ffffff;
        }
    }
    .unActive {
        background: #bdccff;
        i {
            color: #000000;
        }
    }
}

/* ********************** My Badges ********************** */
.badgeSection {
    .badgeName {
        font-size: 21px;
        font-weight: bold;
        margin-bottom: 5px;
        display: inline-block;
    }
    .badges {
        display: flex;
        border: 1px solid #d3d3d3;
        border-bottom: 8px solid #000000;
        padding: 20px;
        margin-bottom: 20px;
        align-items: stretch;
        min-height: 300px;
        .badgeImg {
            flex: 1;
            padding-right: 20px;
            width: 500px;
            img {
                height: 100%;
            }
        }
        .badgeInfo {
            flex: 1;
            padding-left: 20px;
            border-left: 1px solid #d3d3d3;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            .badgeCount {
                border-radius: 999px;
                background: #30ea03;
                height: 60px;
                width: 60px;
                text-align: center;
                line-height: 60px;
                font-size: 30px;
                font-weight: bold;
            }
            .badgeDesc {
                margin-top: 10px;
                font-size: 13px;
                text-align: left;
            }
            .badgeCount.unActive {
                background: #bdccff;
                color: #ffffff;
            }

            .unActive {
                color: #bdccff;
            }
        }
    }
}

/* ********************** Dashboard - Tabular Container ********************** */
.dashboardFilterBtn {
    display: flex;
    gap: 10px;
    margin: 25px 0 0 0;
    .btnCommon {
        padding: 5px 15px;
    }
    i {
        margin-left: 5px;
    }
}
.tgContainer {
    border: 1px solid #30ea03;
    padding: 20px 20px;
    display: block;
}
.tvStoryNameTitle {
    min-width: 200px;
}
.tabsContainer {
    display: flex;
    width: 100%;
    padding: 20px 0px 11px 0px;
    flex-direction: row-reverse;
    position: relative;

    .tabsParent {
        position: absolute;
        left: 0;
        top: 1px;
    }
    ul.tabs li {
        float: left;
        margin: 0px;
    }

    ul.tabs li a {
        background: #000;
        color: #fff;
        border: none;
        outline: none;
        cursor: pointer;
        padding: 10px;
        transition: 0.3s;
        font-size: 18px;
        display: block;
        font-weight: bold;
        border-top: 5px solid #000;
        border-left: 1px solid #30ea03;
        text-decoration: none;
        span {
            font-size: 16px;
        }
    }

    ul.tabs li a:hover,
    ul.tabs li a.active {
        background: #fff;
        color: #000;
        border-top: 5px solid #30ea03;
        border-right: 1px solid #30ea03;
    }
}
.exportExcel {
    margin-left: auto;

    a {
        text-decoration: none;
    }
    span {
        border-bottom: 2px solid #30ea03;
    }
}

/* ********************** Dashboard - Graphical Container ********************** */
.grView {
    padding-top: 20px;
    font-weight: bold;
    font-size: 18px;

    .tgTitle {
        padding-bottom: 30px;
        font-size: 15px;
        h1 {
            margin-bottom: 5px;
        }
    }
    .tgGraph {
        border: 1px solid #b8b8b8;
        border-bottom: 5px solid #000;
    }
}
a.uploadVideo {
    margin-left: auto;
    background: #30ea03;
    font-size: 14px;
    padding: 8px;
    display: flex;
    gap: 10px;
    border-radius: 6px;
    text-decoration: none;
    color: #000;
}
.videoTitle {
    display: flex;
    align-items: center;
    padding-top: 10px;
    text-align: right;
    gap: 10px;
    span:first-child {
        flex: 2;
    }
    span:last-child {
        flex: 7;
    }
    input[type="text"] {
        border: 1px solid #000;
        padding: 10px;
        width: 100%;
    }
    select {
        border: 1px solid #000;
        width: 100%;
    }
}
.videouploadingBtns {
    display: flex;
    gap: 10px;
    font-weight: bold;
    bottom: 0;
    .uploadBtn {
        background: #30ea03;
        padding: 10px;
    }
    .resetBtn {
        padding: 10px;
        background: #58c4ff;
    }
    .cancelBtn {
        padding: 10px;
        background: #000000;
        color: #ffffff;
        display: flex;
        gap: 10px;
    }
}

/* 
desktop {@media (max-width: 1400px) {@content;}}
desktopMd {@media (max-width: 1280px) {@content;}}
desktopSm {@media (max-width: 1200px) {@content;}}
ipadPro {@media (max-width: 1366px) {@content;}}
ipad {@media (max-width: 1024px) {@content;}}
ninenine2 {@media (max-width: 992px) {@content;}}
ninenine1 {@media (max-width: 991px) {@content;}}
sevensix8 {@media (max-width: 768px) {@content;}}
sevensix7 {@media (max-width: 767px) {@content;}}
mobileMd {@media (max-width: 580px) {@content;}}
mobileSm {@media (max-width: 450px) {@content;}}
*/

@media (max-width: 1200px) {
    .rightBar {
        .videoBar {
            .videoTitle {
                font-size: 22px;
            }
        }
    }
}

@media (max-width: 991px) {
    .outerSection {
        display: inherit;
    }
    .leftSideNav {
        display: block;
        float: right;
    }
    .mobileNav {
        height: 100%;
        width: 0;
        position: fixed;
        z-index: 1;
        top: 0;
        left: -60px;
        overflow-x: hidden;
        overflow-y: auto;
        transition: 0.5s;
        padding-top: 60px;
        display: block;
        background: white !important;
        .closebtn {
            display: block;
        }
    }

    .mobileNav .closebtn {
        position: absolute;
        top: 0;
        right: 25px;
        font-size: 36px;
        margin-left: 50px;
    }

    .mobileNav.showMenu {
        width: 300px;
        left: 0;
    }
    .linkPages {
        cursor: pointer;
        display: block;

        .list {
            ul {
                margin: 0;
                padding: 0;

                li {
                    margin: 0;
                    padding: 0;
                    list-style-type: none;
                    display: block;

                    a > i {
                        min-width: 20px;
                    }
                }
            }
        }

        a {
            text-decoration: none;
            width: 100%;
            display: flex;
            color: #000000;
            font-weight: normal;
            font-size: 13px;
            padding: 10px 0;
            border-bottom: 1px solid #e3e3e3;

            &:hover {
                background: #e4e4e4;
                padding-left: 10px;
                transition: 0.4s all ease-in-out;
            }
        }
    }
}

@media (max-width: 450px) {
    .sidenav {
        padding-top: 15px;
    }
    .sidenav a {
        font-size: 18px;
    }
    .midBar {
        .midHead {
            gap: 20px;
        }
    }
    .pagination-container {
        margin-bottom: 20px;
        input {
            width: 35px;
        }
    }
    .storyContainer {
        .storyFormTitle {
            text-align: left;
        }
    }
    .badgeSection {
        .badges {
            .badgeImg {
                width: 100%;
                display: block;
            }
            .badgeInfo {
                display: flex;
                > div {
                    flex-direction: column;
                }
            }
        }
    }
    .videos {
        .imgSection {
            margin-bottom: 0;
        }
    }
    .subSection {
        .internalPageTitle {
            .uploadVideo {
                flex-shrink: 1;
            }
        }
    }
    .commonPageTitle {
        font-size: 24px;
    }
    .tgContainer {
        padding: 0;
        margin-top: 1px;
        border: none;
    }
    .tabsContainer {
        padding: 20px 0px 31px 0px;
        margin-top: 50px;
    }
    .exportExcel {
        position: absolute;
        top: -40px;
    }
}
