﻿/*--------------------------------Global--------------------------------*/

* {
    margin: 0;
    padding: 0;
    box-sizing:border-box;
}

a, p, span, input[type=text], input[type=email], input[type=password], textarea, button, input[type=submit], select, 
td, th, li, label, b, td, input[type=file] {
    font-family: 'Fira Sans', sans-serif;
    font-size:13px;
    font-weight:400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 500;
}

b {
    font-weight:500;
}

ul {
    list-style-type: none;
}

a {
    text-decoration: none;
}

:root {
    --primary-color: #EE6F2D; 
    --primary-dark-color: #cf581a; 
    --primary-light-color: #f19769;
    --light-grey-color: #f6f6f6;
}

/*--------------------------------Common--------------------------------*/

.clsBoxCenter {
    margin: 0 auto;
}

.clsCenterV {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.clsCenterH {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.clsCenterVH {
    position: absolute;
    left: 50%;
    top:50%;
    transform: translate(-50%, -50%);
}

.clsCenterTxt {
    text-align:center;
}

.clsTxtBox {
    border: 1px solid #e5e5e5;
    padding: 10px 12px;
    border-radius: 3px;
    outline: none;
    box-shadow: 0 1px 1px rgba(0,0,0,0.1);
    transition: ease-in 0.2s;
}

    .clsTxtBox:focus {
        border: 1px solid lightgrey;
    }

    .clsTxtBox:disabled {
        background-color: var(--light-grey-color);
    }

    input[type=text].aspNetDisabled, input[type=password].aspNetDisabled, select.aspNetDisabled {
        background-color:var(--light-grey-color);
    }

.ms-choice {
    height: 42px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 1px 1px rgba(0,0,0,0.1);
    outline: none;
}

    .ms-choice:focus, .ms-choice:active {
        border: 1px solid lightgrey;
    }

    .ms-choice > span {
        top: 9px;
        left: 6px;
        color:#000;
    }

    .ms-choice > div {
        top: 6px;
        right: 2px;
    }

    .ms-drop {
        z-index:9;
    }

    .ms-drop ul > li label {
        margin-top:5px;
    }

.clsBtn {
    display:inline-block;
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    text-align: center;
    text-decoration: none;
    outline: none;
    cursor: pointer;
    transition:0.2s ease-out;
}

    .clsBtn:hover, .clsBtn:active {
        background-color: var(--primary-dark-color);
        transition:0.2s ease-in;
    }

.clsSecondary {
    background-color: #d5d5d5;
    color: black;
}

    .clsSecondary:hover, .clsSecondary:active {
        background-color: #cbcbcb;
    }

/*.clsCheckbox label {
    margin-left:3px;
}*/

.clsChkBox {
    display: block;
    position: relative;
    padding-left: 23px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .clsChkBox input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

    .clsChkBox .checkmark {
        position: absolute;
        top: 0;
        left: 0;
        height: 18px;
        width: 18px;
        background-color: #eee;
    }

    .clsChkBox:hover input ~ .checkmark {
        background-color: #ccc;
    }

    .clsChkBox input:checked ~ .checkmark {
        background-color: var(--primary-color);
    }

    .clsChkBox .checkmark:after {
        content: "";
        position: absolute;
        left: 7px;
        top: 4px;
        width: 2.5px;
        height: 6px;
        border: solid #ffffff;
        border-width: 0 2px 2px 0;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .clsChkBox input:checked ~ .checkmark:after {
        display: block;
    }

.clsRadio {
    display: block;
    position: relative;
    padding-left: 23px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .clsRadio input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

    .clsRadio .checkmark {
        position: absolute;
        top: 0;
        left: 0;
        height: 18px;
        width: 18px;
        background-color: #eee;
        border-radius: 50%;
    }

    .clsRadio:hover input ~ .checkmark {
        background-color: #ccc;
    }

    .clsRadio input:checked ~ .checkmark {
        background-color: var(--primary-color);
    }

    .clsRadio .checkmark:after {
        content: "";
        position: absolute;
        top: 6.5px;
        left: 6.5px;
        width: 5.5px;
        height: 5.5px;
	    border-radius: 50%;
	    background: #ffffff;
    }

    .clsRadio input:checked ~ .checkmark:after {
        display: block;
    }

.clsLoading {
    display:none;
    position:fixed;
    top:0;left:0;
    width:100%;height:100%;
    background-image:url('/admin/images/loading.gif');
    background-repeat:no-repeat;
    background-position:center center;
    background-color: rgba(255, 255, 255, 0.8);
    background-size: 55px;
    z-index: 9;
}

.clsWaveLoading  {
    position: relative;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

    .clsWaveLoading .dot {
      display: inline-block;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      margin-right: 3px;
      background: #303131;
      animation: wave 1.3s linear infinite;
    }
    .clsWaveLoading .dot:nth-child(2) {
      animation-delay: -1.1s;
    }
    .clsWaveLoading .dot:nth-child(3) {
      animation-delay: -0.9s;
    }

@keyframes wave {
  0%, 60%, 100% {
    transform: initial;
  }
  30% {
    transform: translateY(-15px);
  }
}

.clsShadow1 {
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.1);
}

.clsForm {
    width:800px;
    margin:30px auto 0 auto;
    background-color:#ffffff;
}

    .clsForm > h2 {
        padding: 15px;
        background-repeat: no-repeat;
        background-position: right 15px center;
        background-size: 28px;
        font-size: 15px;
        font-weight: 400;
    }

        .clsForm > h2 a {
            display: inline-block;
            width: 20px;
            height: 20px;
            background-image: url(/admin/images/back-arrow.png);
            background-repeat: no-repeat;
            background-position: left 5px;
            background-size: 100% 100%;
            margin-right: 10px;
        }

    .clsForm > h3 {
        font-weight: 500;
        background-repeat: no-repeat;
        background-position: 20px center;
        background-size: 16px;
        position: relative;
        border-top: 1px solid #eee;
        padding: 10px 20px 10px 45px;
        color: var(--primary-dark-color);
        background-color: var(--light-grey-color);
        font-size: 14px;
    }

        .clsForm > h3 a {
            position:absolute;
            right:20px;
            top:50%;
            transform:translateY(-50%);
        }

    .clsForm > div {
         padding:20px;
         border-top:1px solid #eee;
    }

    .clsForm .clsRow {
        display:flex;
    }

    .clsForm .clsSplitSec {
        margin-top:40px;
    }

    .clsForm .clsRow:not(:last-child) {
        margin-bottom:10px;
    }

        .clsForm .clsRow .clsCol {
           flex:1;
        }

            .clsForm .clsRow .clsCol .clsCol-Name, .clsForm .clsRow .clsCol .clsCol-Value {
                display:inline-table;
                vertical-align:top;
            } 

            .clsForm .clsRow .clsCol .clsCol-Name {
                text-align:right;
                padding-right:5px;
                width:125px;
            }

            .clsForm .clsRow .clsCol p.clsCol-Name {
                padding: 10px 10px 10px 15px;
            }

                .clsForm .clsRow .clsCol .clsCol-Name span {
                    color:darkred;
                }

            .clsForm .clsRow .clsCol .clsCol-Value {
                width: 250px;
            }

            .clsForm .clsRow .clsCol div.clsCol-Value {
                padding: 10px 0px;
            }

            .clsForm .clsRowFull .clsCol .clsCol-Value {
                width: 630px;
            }

.clsSubFormTable {
    border-bottom: 1px dashed lightgray;
    padding: 20px 0;
}

    .clsSubFormTable .clsSubRow {
        display:flex;
    }

        .clsSubFormTable .clsSubRow:not(:last-child) {
            margin-bottom:10px;
        }

        .clsSubFormTable .clsSubRow .clsSubCol {
            flex:1;
        }

            .clsSubFormTable .clsSubRow .clsSubCol .clsSubCol-Name, .clsSubFormTable .clsSubRow .clsSubCol .clsSubCol-Value {
                display:inline-table;
                vertical-align:top;
            } 

            .clsSubFormTable .clsSubRow .clsSubCol .clsSubCol-Name {
                text-align:right;
                padding-right:5px;
                width:115px;
            }

            .clsSubFormTable .clsSubRow .clsSubCol p.clsSubCol-Name {
                padding: 10px 10px 10px 15px;
            }

                .clsSubFormTable .clsSubRow .clsSubCol .clsSubCol-Name span {
                    color:darkred;
                }

            .clsSubFormTable .clsSubRow .clsSubCol .clsSubCol-Value {
                width: 250px;
            }

            .clsSubFormTable .clsSubRow .clsSubCol div.clsSubCol-Value {
                padding: 10px 0px;
            }

            .clsSubFormTable .clsSubRowFull .clsSubCol .clsSubCol-Value {
                width: 630px;
            }

.clsSettings h3 {
    font-weight: 500;
    background-repeat: no-repeat;
    background-position: 20px center;
    background-size: 16px;
    position: relative;
    border-top: 1px solid #eee;
    padding: 15px;
    color: var(--primary-dark-color);
    background-color: var(--light-grey-color);
    font-size: 15px;
}

.clsSettings .clsSettingTable {
    padding:20px;
}

.clsSettings .clsSettingTable .clsRow:not(:last-child) {
    margin-bottom:10px;
}

.clsSettings .clsSettingTable .clsRow {
    display:flex;
}

    .clsSettings .clsSettingTable .clsRow .clsCol-Name {
        text-align:right;
        width:125px;
        padding: 10px 10px 10px 15px;
    }

    .clsSettings .clsSettingTable .clsRow .clsCol-Value {
        display:inline-table;
        vertical-align:top;
        width: 250px;
    }

.clsSettings .clsSave {
    padding: 20px;
    border-top: 1px solid #eee;
}

.clsInfo {
    padding:20px;
    border-top:1px solid #eee;
    background-color: #ffffc8;
    background-image: url(/admin/images/info.png);
    background-position: 20px 20px;
    background-size: 24px;
    background-repeat: no-repeat;
    padding-left: 55px;
}

    .clsInfo p {
        color: #787817;
    }

        .clsInfo p:not(:last-child) {
            margin-bottom:3px;
        }

.clsFilterDialog {

}

    .clsFilterDialog .clsRow {
        display:flex;
    }

    .clsFilterDialog .clsRow:not(:last-child) {
        margin-bottom:10px;
    }

        .clsFilterDialog .clsRow .clsCol {
           flex:1;
        }

            .clsFilterDialog .clsRow .clsCol:not(:last-child) {
                margin-right:10px;
            }

        .clsFilterDialog .clsRow .clsCol > p {
            margin-bottom:5px;
        }

        .clsFilterDialog .clsRow .clsCol input[type=text], .clsFilterDialog .clsRow .clsCol select {
            width:100%;
        }

.clsGrd-Box {
    width:90%;
    margin:30px auto 0 auto;
    background-color:#ffffff;
}

    .clsGrd-Box .clsHead {
        position:relative;
        padding: 20px 15px;
        z-index:1;
    }

        .clsGrd-Box .clsHead h2 {
            background-repeat: no-repeat;
            background-position: 0 center;
            background-size: contain;
            font-size: 15px;
            padding-left: 35px;
            font-weight:400;
        }

        .clsGrd-Box .clsHead .clsHead-Controls {
            position:absolute;
            right:20px;
            top:50%;
            transform:translateY(-50%);
        }

            .clsGrd-Box .clsHead .clsHead-Controls .clsASPRadio {
                display: inline-block;
                vertical-align: middle;
                margin-right: 10px;
            }

            .clsGrd-Box .clsHead .clsHead-Controls .clsASPRadio td:not(:last-child) label {
                margin-right:10px;
            }

            .clsGrd-Box .clsHead .clsHead-Controls .clsASPRadio label {
                padding-left: 3px;
            }

            .clsGrd-Box .clsHead .clsHead-Controls .clsBtnAdd {
                background-repeat: no-repeat;
                background-size: 20px;
                background-position: 15px center;
                background-image: url(/admin/images/add.png);
                padding-left: 40px;
            }

            .clsGrd-Box .clsHead .clsHead-Controls .clsBtnExcel {
                background-repeat: no-repeat;
                background-size: 20px;
                background-position: 15px center;
                background-image: url(/admin/images/excel.png);
                padding-left: 40px;
            }

            .clsGrd-Box .clsHead .clsHead-Controls .clsBtnFilter {
                background-repeat: no-repeat;
                background-size: 20px;
                background-position: 15px center;
                background-image: url(/admin/images/filter.png);
                padding-left: 40px;
            }

            .clsGrd-Box .clsHead .clsHead-Controls .clsBtnSort {
                background-repeat: no-repeat;
                background-size: 20px;
                background-position: 15px center;
                background-image: url(/admin/images/sort.png);
                padding-left: 40px;
            }

            .clsGrd-Box .clsHead .clsHead-Controls .clsBtnSortBlack {
                background-repeat: no-repeat;
                background-size: 20px;
                background-position: 15px center;
                background-image: url(/admin/images/sort_black.png);
                padding-left: 40px;
            }

            .clsGrd-Box .clsHead .clsHead-Controls .clsBtnDel {
                background-repeat: no-repeat;
                background-size: 18px;
                background-position: 15px center;
                background-image: url(/admin/images/delete2.png);
                padding-left: 36px;
            }

            .clsGrd-Box .clsHead .clsHead-Controls .clsHead-Controls-Search {
                display:inline-block;
                margin-right:5px;
                position:relative;
            }

                .clsGrd-Box .clsHead .clsHead-Controls .clsHead-Controls-Search input[type=text]{
                    width:230px;
                    padding-right: 58px;
                }

                .clsGrd-Box .clsHead .clsHead-Controls .clsHead-Controls-Search a {
                    position: absolute;
                    display: block;
                    width: 16px;
                    height: 16px;
                    background-repeat: no-repeat;
                    background-size: cover;
                    top: 50%;
                    transform: translateY(-50%);
                }

                .clsGrd-Box .clsHead .clsHead-Controls .clsHead-Controls-Search .clsBtnSearch {
                    background-image: url(/admin/images/search2.png);
                    right: 35px;
                }

                .clsGrd-Box .clsHead .clsHead-Controls .clsHead-Controls-Search .clsBtnClear {
                    background-image: url(/admin/images/clear.png);
                    right: 10px;
                }

    .clsGrd-Box .clsFilters-Bar {
        padding: 10px 20px;
        background-color: #ffffc0;
    }

    .clsGrd {
        width:100%;
        border-collapse:collapse;
    }

        .clsGrd, .clsGrd th, .clsGrd tr, .clsGrd td {
            border:none;
        }

            .clsGrd th {
                background-color: #f5f5f5;
                border-right:1px solid #eee;
                padding: 10px 5px;
                font-weight: 500;
            }

                .clsGrd th:last-child {
                    border-right:none;
                }

            .clsGrd th, .clsGrd td {
                word-wrap: break-word;
                overflow-wrap: break-word;
                white-space: normal;
            }

            .clsGrd tr:nth-child(odd) {
                background-color:rgba(249, 249, 249, 0.44);
            }

            .clsGrd.clsFooter > tbody > tr:last-child {
                background-color: #f5f5f5;
            }

            .clsGrd tr:hover {
                background-color: #f3faff;
            }

            .clsGrd td {
                padding: 5px 10px;
                border-top:2px solid #eee;
                border-right:1px solid #eee;
            }

            .clsGrd td:last-child {
                border-right:none;
            }

            .clsGrd tr td.clsRowNo {
                text-align:center;
                width:50px;
            }

            .clsGrd tr:not(:first-child){
                counter-increment: rowNumber;
            }

            .clsGrd tr td.clsRowNo::before {
                content: counter(rowNumber);
            }

                .clsGrd td input[type=text], .clsGrd td textarea {
                    border: none;
                    background: transparent;
                    outline: none;
                    width: 100%;
                }

                .clsGrd td textarea {
                    resize:none;
                    height:70px;
                }

                .clsGrd td select {
                    border: none;
                    background-color: transparent;
                    width: 100%;
                    outline: none;
                }

                .clsGrdPager td a {
                    text-decoration:none;
                    color: var(--primary-color);
                }

                .clsGrdPager td a:hover {
                    color:#000;
                    background-color:var(--primary-light-color);
                    border:1px solid var(--primary-light-color);
                }

                .clsLnkExpand {
                    text-decoration:none;
                    display: inline-block;
                    border: 1px solid;
                    border-radius: 50%;
                    width: 20px;
                    height: 20px;
                    font-size: 18px;
                    line-height: 19px;
                }

                .clsDetailRow {
                    background: #ffffff !important;
                }

                .clsDetailRow:hover{
                    background: unset !important;
                }

                .clsDetail h3 {
                    padding: 3px 0;
                    color: #367fa9;
                }

                .clsDetail p {
                    padding: 3px 0;
                    margin-bottom: 10px;
                }

                .clsDetail table {
                    border: 1px solid #eee;
                }

            .clsGrdPager:hover {
                background-color:#ffffff !important;
            }

                .clsGrdPager tr:hover {
                    background-color:#ffffff !important;
                }

            .clsGrdPager table td {
                border: none;
                padding: 2px;
            }

                .clsGrdPager table td span, .clsGrdPager table td input[type=submit] {
                    display: inline-block;
                    width: 20px;
                    height: 24px;
                    text-align: center;
                    padding: 2px;
                }

                .clsGrdPager table td input[type=submit] {
                    border: none;
                    background-color: transparent;
                    cursor: pointer;
                }

                .clsGrdPager table td span {
                    background-color: var(--primary-color);
                    border: 1px solid var(--primary-color);
                    border-radius: 3px;
                    color: #ffffff;
                }

                .clsGrdPager table td input[type=submit] {
                    border: 1px dashed lightgrey;
                    border-radius: 3px;
                }

.clsLnkBtn {
    display:inline-block;
    width:20px;
    height:20px;
    background-repeat:no-repeat;
    background-size:cover;
    border: none;
    background-color: transparent;
    color: transparent;
    vertical-align: top;
    cursor: pointer;
}

    .clsLnkBtn:not(:first-child) {
        margin-left:5px;
    }

    .clsLnkBtn.edit {
        background-image:url(/admin/images/edit.png);
    }

    .clsLnkBtn.delete {
        background-image:url(/admin/images/delete.png);
    }

    .clsLnkBtn.approve {
        background-image:url(/admin/images/success.png);
    }

    .clsLnkBtn.view {
        background-image:url(/admin/images/view.png);
    }

    .clsLnkBtn.progress {
        background-image:url(/admin/images/check.png);
    }

    .clsLnkBtn.link {
        background-image:url(/admin/images/external-link.png);
    }

    .clsLnkBtn.email {
        background-image:url(/admin/images/mail.png);
    }

    .clsLnkBtn.notification {
        background-image:url(/admin/images/notification.png);
    }

    .clsLnkBtn.Reply {
        background-image:url(/admin/images/Reply.png);
    }

    .clsLnkBtn.prod {
        background-image:url(/admin/images/jewel.png);
    }

    .clsLnkBtn.cart {
        background-image:url(/admin/images/cart.png);
    }

    .clsLnkBtn.wishlist {
        background-image:url(/admin/images/heart.png);
    }

    .clsLnkBtn.order {
        background-image:url(/admin/images/rate.png);
    }

.clsErrMsg{
    padding:30px;
    margin-top:50px;
    background-color:#ffffff
}

    .clsErrMsg h1 {
        padding-left: 78px;
        background-image: url(/admin/images/error.png);
        background-repeat: no-repeat;
        background-position: left 4px;
        line-height: 32px;
        font-weight: 300;
        margin-bottom: 20px;
        font-size: 25px;
        background-size: 60px;
        color: #e04f5f;
        border-bottom: 1px solid #eee;
        padding-bottom: 20px;
    }

    .clsErrMsg p {
        font-size: 15px;
        color: #616161;
    }

    .clsErrMsg a {
        display:block;
        font-size: 15px;
        color: #0a55a6;
        margin-top:30px;
        text-align:center;
    }

#dvToasts{
    position: fixed;
    z-index: 999;
    top: 70px;
    right: 0px;
}

    .clsToast {
        opacity: 0.9;
        display: block;
        position: relative;
        overflow: hidden;
        margin-top: 10px;
        margin-right: 10px;
        padding: 20px;
        width: 300px;
        border-radius: 3px;
        color: #ffffff;
        right: -400px;
    }

    .clsToast p{
        font-weight:500;
    }

    .clsNormal {
        background: var(--primary-color);
    }

    .clsSuccess {
        background: #47cf97;
    }

    .clsError {
        background: #cd4040;
    }

.clsProgressBar {
    position:relative;
    background: repeating-linear-gradient(-45deg, var(--light-grey-color), var(--light-grey-color) 25%, #e6e6e6 25%, #e6e6e6 50%, var(--light-grey-color) 50%) top left fixed;
    background-size: 30px 30px;
    height:30px;
    border-radius:4px;
    overflow:hidden;
    animation: barberpole 60s linear infinite;
}

@keyframes barberpole {
  100% {
    background-position: 100% 100%;
  }
}

    .clsProgressBar div {
        border-radius:4px 0 0 4px;
        position:absolute;
        left:0;
        top:0;
        bottom:0;
        width: 0%;
        background: repeating-linear-gradient(-45deg, #57a3ee, #57a3ee 25%, #70b9ff 25%, #70b9ff 50%, #57a3ee 50%) top left fixed;
        background-size: 30px 30px;
        animation: barberpole 60s linear infinite;
        transition: width 1.2s ease-in-out;
    }

    .clsProgressBar span {
        display: block;
        text-align: center;
        margin-top: 6px;
        z-index: 2;
        position: relative;
        font-weight: 500;
    }

.clsDialog {
    display:none;
    position:fixed;
    left:0;right:0;
    top:0;bottom:0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 3;
}

    .clsDialog-Box {
        display:none;
        position:absolute;
        left:50%;top:50%;
        transform:translate(-50%,-50%);
        background-color:white;
        border-radius: 4px;
        overflow:hidden;
    }

        .clsDialog-Box-Title {
            position: relative;
            padding: 10px 15px;
            border-bottom: 1px solid #e7e7e7;
            background-color: #eee;
        }

            .clsDialog-Box-Title h2 {
                font-weight: 500;
                font-size: 15px;
                text-transform: uppercase;
            }

            .clsDialog-Box-Title a {
                position: absolute;
                right: 15px;
                top: 50%;
                transform: translateY(-50%);
                display: block;
                width: 20px;
                height: 20px;
                background-image: url(/admin/images/close.png);
                background-size: 100%;
                background-repeat: no-repeat;
            }

    .clsDialog-Box-Content {
        overflow-y: auto;
        padding:10px 20px;
    }

    .clsDialog-Box-Footer {
        padding: 10px 15px;
        border-top: 1px solid #e7e7e7;
    }

.clsPermissionMsg {
    padding: 30px;
    text-align: center;
    background-image: url(/admin/images/warning.png);
    background-repeat: no-repeat;
    background-position: center 30px;
    background-size: 45px;
    padding-top: 90px;
    line-height: 20px;
    width: 400px;
}

.clsFloatBtn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: block;
    text-decoration: none;
    background-color: var(--primary-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.4);
    transition:0.1s ease-in;
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: 15px center;
}

    .clsFloatBtn:hover {
        background-color: var(--primary-dark-color);
        transform:scale(1.1);
    }

.clsFloatBtn.clsLevel2 {
    bottom:80px;
}

ul.tabs {
    border-bottom: none;
}

    ul.tabs li a {
        border:none;
        background:#e7e7e7;
        padding: 10px 15px;
        border-radius:0;
    }

    ul.tabs li.selected a, ul.tabs li.selected a:hover {
        font-weight: 500;
    }

    ul.tabs li a:hover {
        border:none;
        background:var(--primary-color);
        color: #ffffff;
        border-radius: 0;
    }

    ul.tabs li.selected a, ul.tabs li.selected a:hover {
        color: #fff;
        border: none;
        background-color:var(--primary-color);
        border-radius: 0;
    }

    .tabcontents {
        margin-top:-2px;
    }

    div.tabcontents {
        border:1px solid #ddd;
        border-radius:0;
        margin-top: 2px;
    }

/*--------------------------------Login--------------------------------*/

.clsLogin {
    width:350px;
    padding:20px;
    background-color:#ffffff;
}

    .clsLogin p:first-child {
        font-size: 18px;
        margin-bottom: 25px;
        padding-top: 10px;
    }

    .clsLogin input {
        width:100%;
    }

    .clsLogin input[type=email], .clsLogin input[type=password]{
        margin-bottom:10px;
        background-repeat: no-repeat;
        background-size: 18px;
        background-position: 10px center;
        padding-left: 35px;
    }

    .clsLogin span {
        color: DarkRed;
        margin-top: 10px;
        display: block;
    }

/*--------------------------------Site Master--------------------------------*/

body {
    background-color: var(--light-grey-color);
}

header {
    position:fixed;
    left:0;right:0;top:0;
    background-color: var(--primary-color); 
    height:50px;
    overflow: hidden;
    z-index: 2;
}

    header .clsLeft {
        left: 15px;
    }

        /*header .clsLeft .clsBrand {
            margin-top: 5px;
        }*/

            header .clsLeft .clsBrand a {
                color:#ffffff;
            }

            header .clsLeft .clsBrand a:first-child {
                margin-right:10px;
                font-size:22px;
            }

            header .clsLeft .clsBrand a:last-child {
                font-size:22px;
            }

    header .clsMid {

    }

        header .clsMid .clsSearch input[type=text] {
            background-color: var(--primary-dark-color);
            border: none;
            color: #ffffff;
            padding: 10px 20px;
            width: 550px;
            border-radius: 80px;
            background-image: url(/admin/images/search.png);
            background-repeat: no-repeat;
            background-size: 16px;
            background-position: 15px center;
            padding-left: 38px;
            outline:none;
        }

            header .clsMid .clsSearch input[type=text]::-webkit-input-placeholder { /* Chrome/Opera/Safari */
                color: #ffffff;
            }
            header .clsMid .clsSearch input[type=text]::-moz-placeholder { /* Firefox 19+ */
                color: #ffffff;
            }
            header .clsMid .clsSearch input[type=text]:-ms-input-placeholder { /* IE 10+ */
                color: #ffffff;
            }
            header .clsMid .clsSearch input[type=text]:-moz-placeholder { /* Firefox 18- */
                color: #ffffff;
            }

        header .clsMid .clsSearch a {
            color:#ffffff;
            background-repeat: no-repeat;
            background-size: 17px;
        }

        header .clsMid .clsSearch a:first-child {
            margin-right:30px;
            background-image: url(/admin/images/up.png);
            padding-left: 20px;
            background-position: left 0px;
        }

            header .clsMid .clsSearch a:first-child:hover {
                animation: slideUp 1s linear infinite;
            }

        header .clsMid .clsSearch a:last-child {
            margin-left:30px;
            background-image: url(/admin/images/down.png);
            padding-right: 20px;
            background-position: right 0px;
        }

            header .clsMid .clsSearch a:last-child:hover {
                animation: slideDown 1s linear infinite;
            }

        @keyframes slideUp {
          0% {
            background-position: left 10px;
          }
          100% {
            background-position: left -20px;
          }
        }

        @keyframes slideDown {
          0% {
            background-position: right -20px;
          }
          100% {
            background-position: right 10px;
          }
        }

    header .clsRight {
        position:absolute;
        right: 0;
    }

        header .clsRight .clsUserName {
            display:inline-table;
            vertical-align:top;
            padding:10px 10px 0 0px;
        }

         header .clsRight .clsUserName span, header .clsRight .clsUserName input[type=submit] {
            display: block;
            color: #ffffff;
            text-align: right;
            background: none;
            border: none;
            text-align: right;
            width: 100%;
         }

         header .clsRight .clsUserName input[type=submit] {
            cursor: pointer;
         }

            /*header .clsRight .clsUserName span {
                 font-size:15px;
            }*/

            header .clsRight .clsUserName a {
                background-image: url(/admin/images/logout.png);
                background-repeat: no-repeat;
                background-size: 12px;
                background-position: center right;
                padding-right: 18px;
                margin-top: 3px;
            }

        header .clsRight .clsUserImg {
            display:inline-block;
            height:50px;
            width:50px;
        }

nav {
    position:fixed;
    left:0;
    top:50px;
    bottom:0;
    width:230px;
    background-color:#ffffff;
    transition: left ease-out 0.3s;
    z-index:2;
    overflow-y:auto;
    padding-bottom:20px;
}

nav.clsMenuClosed {
    left:-230px !important;
}

nav p {
    padding: 15px 15px 5px 15px;
    color: var(--primary-color);
    font-weight: 500;
}

nav ul {
    margin-bottom:10px;
}

    nav ul:first-child {
        margin-top:20px;
    }

    nav ul li {

    }

        nav ul li a {
            border-left: 3px solid #ffffff;
            display:block;
            color:black;
            padding:5px 38px;
            background-repeat:no-repeat;
            background-position:15px center;
            background-size:16px;
        }

             nav ul li a:hover {
                background-color: var(--light-grey-color);
                border-left: 3px solid var(--primary-light-color); 
             }

        nav ul li a.clsSel {
            background-color: #ddd;
            border-left: 4px solid var(--primary-color);
            padding: 15px 38px;
            font-weight: 500;
        }

.clsPage{
    transition: margin ease-out 0.3s;
    padding:50px 0;
}

.clsPageWithMenu {
    margin-left:230px;
}

.clsTemplate {
    display:none;
}

/*--------------------------------Dashboard--------------------------------*/

.clsDashboard {
    padding:40px 30px 30px 30px;
}

    .clsDashboard h2 {
        font-weight: 500;
        margin-bottom: 5px;
    }

    .clsCard {
        display:inline-table;
        vertical-align:top;
        background-color:#ffffff;
        padding:30px 30px 20px 30px;
        width:240px;
        margin:0 20px 25px 0;
    }

    .clsCard span:first-child {
        display:block;
        color: #959595;
        background-repeat: no-repeat;
        background-size: 16px;
        background-position: left center;
        padding-left: 24px;
    }

    .clsCard span:last-child {
        margin-top: 10px;
        display:block;
        font-weight: 300;
        font-size: 45px;
        background: -webkit-linear-gradient(#599ee2, #486899);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .clsCard span:last-child.green {
        background: -webkit-linear-gradient(#4b9ae7, #1f9e40);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .clsCard span:last-child.red {
        background: -webkit-linear-gradient(#ff6262, #631e74);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .clsCardNew {
        display:inline-table;
        vertical-align:top;
        width:240px;
        height:132px;
        margin:0 20px 25px 0;
        border: 1px dashed #b9b9b9;
        background-image: url(/admin/images/rate.png);
        background-position: center 28px;
        background-repeat: no-repeat;
        background-size: 45px;  
    }

    .clsCardNew:hover {
        border: 1px solid #b9b9b9;
        transition:0.2s ease-in;
    }

        .clsCardNew span {
            display: block;
            text-decoration: none;
            text-align: center;
            color: #656464;
            margin-top: 85px;
        }

/*--------------------------------Ordering--------------------------------*/

.clsOrdering {
    padding: 20px;
    border-top: 1px solid #eee;
}

    .clsOrdering .clsStatus li.clsItem {
        cursor: pointer;
        background-color: var(--light-grey-color);
        padding: 10px 10px 10px 40px;
        background-image: url(/admin/images/sort_black.png);
        background-repeat: no-repeat;
        background-size: 18px;
        background-position: 10px center;
    }

        .clsOrdering .clsStatus li.clsItem:hover {
            background-color:var(--primary-light-color);
        }

        .clsOrdering .clsStatus li.clsItem:not(:last-child) {
            margin-bottom: 5px;
        }

/*--------------------------------Prod Imgs--------------------------------*/

.clsProdImgs #dvImgs {
    margin-bottom:10px;
}

.clsProdImgs .clsProdImg {
    margin: 0 10px 10px 0;
    display: inline-block;
    border: 1px solid lightgray;

    background-color: white;
}

    .clsProdImgs .clsProdImg .clsImg {
        width: 200px;
        height: 240px;
        border-bottom: 1px solid lightgray;
        position: relative;
        background-repeat: no-repeat;
        background-position: center center;
        background-size: contain;
        cursor: pointer;
    }

    .clsProdImg .clsImg input[type=file] {
        position: absolute;
        left: -10px;
        opacity: 0;
        width: 0;
        height: 0;
    }

    .clsProdImg .clsOptions {
        display:flex;
    }

        .clsProdImg .clsOptions label, .clsProdImg .clsOptions a {
            flex:1;
            text-align:center;
            padding:10px;
            cursor:pointer;
            color:#000;
        }

            .clsProdImg .clsOptions label:hover, .clsProdImg .clsOptions a:hover {
                background-color:#eee;
            }

            .clsProdImg .clsOptions label img, .clsProdImg .clsOptions a img {
                height:15px;
            }

        .clsProdImg .clsOptions label {
            border-right: 1px solid lightgray;
        }

        .clsProdImg .clsOptions a:nth-child(2):not(:last-child) {
            border-right: 1px solid lightgray;
        }

    .clsProdImg .clsInput {
        border-top: 1px solid lightgray;
    }

    .clsProdImg .clsInput div {
        display:flex;
    }

        .clsProdImg .clsInput div span {
            padding: 10px 3px 10px 12px;
            color: #414141;
            font-style: italic;
            text-align: right;
            width: 58px;
        }

        .clsProdImg .clsInput div input[type=text], .clsProdImg .clsInput div select {
            width:100%;
            border:none;
            padding: 10px 12px;
            outline:none;
        }

            .clsProdImg .clsInput div:not(:last-child) {
                border-bottom: 1px solid lightgray;
            }

/*--------------------------------Cat--------------------------------*/ 

.clsCat .clsCatItem:not(:first-child) {
    margin-top:5px;
}

    .clsCat .clsCatItem a {
        margin-left:5px;
        display:inline-table;
        vertical-align: middle;
        width:20px;
        height:20px;
        background-repeat:no-repeat;
        background-size:cover;
        background-image:url(/admin/images/delete.png);
    }

/*--------------------------------Editable Menu--------------------------------*/

.clsEditableMenu {
    border-top: 1px solid #eee;
    padding: 20px;
}

    .clsEditableMenu textarea {
        width:100%;
        height:500px;
        resize:none;
    }

/*--------------------------------Article--------------------------------*/

.clsForm .clsRow .clsCol div.clsCol-Value.clsPollOptions {
    padding: 10px;
    border: 1px dashed lightgrey;
}

    .clsPollOptions li {
        margin-bottom:10px;
        display:flex;
        align-items: center;
    }

        .clsPollOptions li input[type=text] {
            flex:1;
        }

        .clsPollOptions li a {
            display:inline-block;
            margin-left:10px;
            width:20px;
        }

            .clsPollOptions li a img{
                width:100%;
            }

.js-media-options li {
    border: 1px solid #eee;
    margin-bottom: 20px;
    display: flex;
    padding: 10px;
}

    .js-media-options li div:first-child img {
        display: block;
        width: 300px;
        min-height: 187px;
        border: 1px solid #eee;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center center;
    }

    .js-media-options li div:last-child {
        flex: 1;
        padding: 10px;
    }

        .js-media-options li div:last-child input,
        .js-media-options li div:last-child select {
            display: block;
            width: 100%;
            margin-bottom: 10px;
        }

        .js-media-options li div:last-child input[type=text],
        .js-media-options li div:last-child a.download{
            display: none;
        }

        .js-media-options li div:last-child a {
            display:inline-block;
            margin-right:10px;
            width:20px;
        }

            .js-media-options li div:last-child a img {
                width: 100%;
            }
