﻿/*--------------------------------Global--------------------------------*/

* {
    margin: 0;
    padding: 0;
    box-sizing:border-box;
}

a, p, span, input[type=text], input[type=password], textarea, button, input[type=submit], select,
h1, h2, h3, td, th, li, label, b, td, input[type=file] {
    font-family: 'Fira Sans', sans-serif;
    font-size:13px;
    font-weight:400;
}

b {
    font-weight:500;
}

ul {
    list-style-type: none;
}

a {
    text-decoration: none;
}

:root {
    --primary-color: #3a75c3;
    --primary-dark-color: #245494;
    --primary-light-color: #D3AEB6;
    --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 #b5b5b5;
    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 var(--primary-color);
        background-color: #f2f8ff;
    }

    .clsTxtBox:disabled {
        background-color: #eee;
    }

    input[type=text].aspNetDisabled, input[type=password].aspNetDisabled, select.aspNetDisabled {
        background-color:#eee;
    }

.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;
    border-radius:4px;
    box-shadow: 0 0.125rem 0.625rem rgba(108, 117, 125, 0.4), 0 0.0625rem 0.125rem rgba(108, 117, 125, 0.5);
}

    .clsBtn:hover, .clsBtn:active {
        background-color: var(--primary-dark-color);
        transition:0.2s ease-in;
    }

.clsSecondary {
    background-color: #e7e7e7;
    color: black;
}

    .clsSecondary:hover, .clsSecondary:active {
        background-color: #cbcbcb;
    }

.ms-choice {
    height: 42px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 1px 1px rgba(0,0,0,0.1);
    background-color: #fff;
    outline: none;
}

    .ms-choice:focus, .ms-choice:active {
        border: 1px solid #8d8d8d;
    }

    .ms-choice > span {
        top: 10px;
        left: 6px;
    }

    .ms-choice > span.placeholder {
        color: #000;
    }

    .ms-choice > div {
        top: 6px;
        right: 2px;
    }

    .ms-drop {
        z-index:9;
    }

    .ms-drop ul > li label {
        margin-top:5px;
    }

/*.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;
    }

.clsRadioFlowList label {
    padding-left:3px;
    padding-right:10px;
}

.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:50px auto 0 auto;
    background-color:#ffffff;
}

    .clsForm > h2 {
        padding: 15px 20px;
        background-repeat: no-repeat;
        background-position: right 20px center;
        background-size: 28px;
        font-size: 16px;
    }

        .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 3px;
            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 15px;
        color: #fff;
        background-color: var(--primary-color);
    }

        .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:90px;
            }

            .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: 560px;
            }

.clsSettings h3 {
    font-weight: 500;
    background-repeat: no-repeat;
    background-position: 20px center;
    background-size: 16px;
    position: relative;
    border-top: 1px solid #eee;
    padding: 10px 15px;
    color: #fff;
    background-color: var(--primary-color);
}

.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;
}

.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 > p span {
                color:darkred;
            }

        .clsFilterDialog .clsRow .clsCol input[type=text], 
        .clsFilterDialog .clsRow .clsCol textarea,
        .clsFilterDialog .clsRow .clsCol select {
            width:100%;
        }

        .clsFilterDialog .clsRow .clsCol textarea {
            height:140px;
            resize:none;
        }

.clsGrd-Box {
    width:90%;
    margin:50px auto 0 auto;
    background-color:#ffffff;
}

    .clsGrd-Box .clsHead {
        position:relative;
        padding: 20px;
        z-index:1;
    }

        .clsGrd-Box .clsHead h2 {
            background-repeat: no-repeat;
            background-position: 0 center;
            background-size: contain;
            font-size: 16px;
            padding-left: 35px;
        }

        .clsGrd-Box .clsHead .clsHead-Controls {
            position:absolute;
            right:20px;
            top:50%;
            transform:translateY(-50%);
        }

            .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 .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: var(--primary-color);
                border-right: 1px solid #eee;
                padding: 10px 5px;
                font-weight: 500;
                color: #fff;
            }

                .clsGrd th:last-child {
                    border-right:none;
                }

            .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: 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{
                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: 16px;
                    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 a {
                    display: inline-block;
                    width: 20px;
                    height: 24px;
                    text-align: center;
                    padding: 2px;
                }

                .clsGrdPager table td span {
                    background-color: var(--primary-color);
                    border: 1px solid var(--primary-color);
                    border-radius: 3px;
                    color: #ffffff;
                }

                .clsGrdPager table td a {
                    border: 1px dashed lightgrey;
                    border-radius: 3px;
                }

.clsLnkBtn {
    display:inline-block;
    width:20px;
    height:20px;
    background-repeat:no-repeat;
    background-size:cover;
}

    .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.view {
        background-image:url(/admin/images/view.png);
    }

    .clsLnkBtn.enquiry {
        background-image:url(/admin/images/enquiry.png);
    }

    .clsLnkBtn.call {
        background-image:url(/admin/images/call.png);
    }

    .clsLnkBtn.mail {
        background-image:url(/admin/images/mail.png);
    }

    .clsLnkBtn.followup {
        background-image:url(/admin/images/followup.png);
    }

    .clsLnkBtn.lost {
        background-image:url(/admin/images/lost.png);
    }

    .clsLnkBtn.tentative {
        background-image:url(/admin/images/tentative.png);
    }

    .clsLnkBtn.quotation {
        background-image:url(/admin/images/quotation.png);
    }

    .clsLnkBtn.FP {
        background-image:url(/admin/images/fp.png);
    }

    .clsLnkBtn.whatsapp {
        background-image:url(/admin/images/whatsapp.png);
    }

    .clsLnkBtn.print {
        background-image:url(/admin/images/print.png);
    }

    .clsLnkBtn.payment {
        background-image:url(/admin/images/payment.png);
    }

    .clsLnkBtn.checkout {
        background-image:url(/admin/images/checkout.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;
        max-height: 100%;
        overflow-y: auto;
    }

        .clsDialog-Box-Title {
            position: relative;
            padding: 20px;
            border-bottom: 1px solid #e7e7e7;
            background-color: var(--primary-color);
            color: #fff;
        }

            .clsDialog-Box-Title h2 {
                font-weight: 500;
                font-size: 17px;
                text-transform: uppercase;
            }

            .clsDialog-Box-Title a {
                position: absolute;
                right: 20px;
                top: 50%;
                transform:translateY(-50%);
                display: block;
                width: 25px;
                height: 25px;
                background-image: url(/admin/images/close_white.png);
                background-size: 100%;
                background-repeat: no-repeat;
            }

    .clsDialog-Box-Content {
        overflow-y: auto;
        padding:20px;
    }

    .clsDialog-Box-Footer {
        padding: 20px;
        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;
    }

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #ddd;
}
 
::-webkit-scrollbar-thumb {
  background: #666; 
}

/*--------------------------------Login--------------------------------*/

.clsLogin {
    width:350px;
    padding:20px;
    background-color:#ffffff;
}

    .clsLogin p:first-child {
        font-size: 16px;
        margin-bottom: 25px;
        padding-top: 10px;
    }

    .clsLogin input {
        width:100%;
    }

    .clsLogin input[type=text], .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-dark-color); 
    background: linear-gradient(to top, var(--primary-dark-color) 0%, var(--primary-color) 100%);
    height:60px;
    overflow: hidden;
    z-index: 2;
}

    header .clsLeft {
        left: 20px;
    }

        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-family: 'Righteous', cursive;
                 font-size:20px;
            }

    header .clsMid {

    }

        header .clsMid .clsSearch input[type=text] {
            background-color: var(--primary-dark-color);
            border: none;
            color: #ffffff;
            padding: 10px 20px;
            width: 300px;
            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:13px 10px 0 0px;
        }

         header .clsRight .clsUserName span, header .clsRight .clsUserName a {
            display:block;
            color:#ffffff;
            text-align:right;
         }

            header .clsRight .clsUserName span {
                 font-size:15px;
            }

            header .clsRight .clsUserName a {
                font-size: 13px;
                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: 45px;
            width: 45px;
            border-radius: 50%;
            margin: 7px 10px 0 0;
        }

nav {
    position:fixed;
    left:0;
    top:60px;
    bottom:0;
    width:230px;
    background-color:#222D31;
    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: #959595;
    font-size: 14px;
}

nav ul {
    margin-bottom:10px;
}

    nav ul:first-child {
        margin-top:20px;
    }

    nav ul li {

    }

        nav ul li a {
            border-left: 3px solid #222D31;
            display:block;
            color:#fff;
            padding:5px 38px;
            background-repeat:no-repeat;
            background-position:15px center;
            background-size:16px;
        }

             nav ul li a:hover {
                background-color: var(--primary-color);
                border-left: 3px solid #a3caff;
             }

        nav ul li a.clsSel {
            background-color: var(--primary-color);
            border-left: 3px solid #a3caff;
            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;
        border-radius: 3px;
        overflow: hidden;
        position:relative;
    }

    .clsCard.red {
    }

    .clsCard.green {
        
    }

        .clsCard:not(.clsList) span:nth-child(1) {
            position: absolute;
            background-repeat: no-repeat;
            background-size: 16px;
            right: 20px;
            bottom: 20px;
            width: 50px;
            height: 50px;
            opacity: 0.4;
        }

        .clsCard:not(.clsList) span:nth-child(2) {
            display:block;
            color: #fff;
            background-repeat: no-repeat;
            background-size: 16px;
            background-position: left center;
        }

        .clsCard:not(.clsList) span:nth-child(3) {
            margin-top: 10px;
            display:block;
            font-weight: 300;
            font-size: 45px;
            color:#fff;
        }

        .clsCard.green span:nth-child(3) {
            background: -webkit-linear-gradient(#4b9ae7, #1f9e40);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .clsCard.red span:nth-child(3) {
            background: -webkit-linear-gradient(#ff6262, #631e74);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

    .clsCard.clsList {
        padding:0;
        height:336px;
    }

        .clsCard.clsList > p {
            color: #fff;
            padding: 10px;
            text-align: center;
            font-weight: 500;
        }

        .clsCard.clsList ul {
            min-height:264px;
        }

            .clsCard.clsList li {
                padding:10px;
                position:relative;
            }

            .clsCard.clsList li:not(:last-child) {
                border-bottom:1px solid #ddd;
            }

                .clsCard.clsList li p {
                    margin-bottom:3px;
                }

                    .clsCard.clsList li p span {
                        font-weight: 500;
                    }

                    .clsCard.clsList li p a {
                        position:absolute;
                        right:10px;
                        background-repeat: no-repeat;
                        background-size: cover;
                        display: inline-block;
                        width: 18px;
                        height: 18px;
                    }

                    .clsCard.clsList li p a:nth-child(2) {
                        background-image: url(/admin/images/call.png);
                        top:6px;
                    }

                    .clsCard.clsList li p a:nth-child(3) {
                        background-image: url(/admin/images/whatsapp.png);
                        transform:translateY(-50%);
                        top:40px;
                    }

                .clsCard.clsList li > span {
                    color: #545454;
                }

            .clsCard.clsList > a {
                border-top:1px solid #ddd;
                display:block;
                text-align: center;
                padding:10px;
                text-transform:uppercase;
                color: var(--primary-color);
                font-weight: 500;
            }

    .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/new.png);
        background-position: center 28px;
        background-repeat: no-repeat;
        background-size: 45px;  
        background-color: #ddffe8;
    }

    .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;
        }

.clsStats input[type=text] {
    margin: 5px auto;
    width: 215px;
    display: block;
    text-align: center;
    background-image: url(/admin/images/calendar_dark.png);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: 10px center;
}

.clsCard.clsList.clsStats ul {
    min-height:unset;
}

    .clsCard.clsList.clsStats ul li span {
        float:right;
        font-weight:500;
    }

.clsCard.clsList.clsStats > span {
    display:none;
    position:absolute;
    left:0;right:0;
    top:0;bottom:0;
    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: 35px;
}

/*--------------------------------Custom Fields--------------------------------*/

.clsCustomFields {
    border: 1px dashed lightgray;
    margin-top: 10px;
    padding: 15px;
    margin-left: 128px;
}

    .clsCustomFields h2 {
        text-align: center;
        font-weight: 500;
        margin-bottom: 10px;
        border-bottom: 1px dashed lightgray;
        padding-bottom: 10px;
    }

    #dvCustomFields {
        margin-bottom:10px;
    }

        #dvCustomFields > div:not(:last-child) {
            margin-bottom:5px;
        }

        #dvCustomFields > a {
            margin:5px 0 10px 0;
        }

        #dvCustomFields > div input[type=text]{
            width:150px;
        }

        #dvCustomFields > div a {
            display:inline-table;
            vertical-align: middle;
            width:20px;
            height:20px;
            background-repeat:no-repeat;
            background-size:cover;
            background-image:url(/admin/images/delete.png);
        }

/*--------------------------------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;
        }

/*--------------------------------Template Dialog--------------------------------*/            

.clsMsgDialog ul {
    max-height: 280px;
}

    .clsMsgDialog ul li {
        padding: 10px;
        background-color: #eee;
        border:2px solid #eee;
        border-radius: 4px;
        text-align:right;
    }

    .clsMsgDialog ul li:hover {
        border:2px solid var(--primary-color);
    }

    .clsMsgDialog ul li:not(:last-child) {
        margin-bottom: 10px;
    }

        .clsMsgDialog ul li h3 {
            font-weight: 500;
            text-align: left;
            color: var(--primary-color);
            border-bottom: 1px solid #bbb;
            padding-bottom: 5px;
            margin-bottom: 5px;
        }

        .clsMsgDialog ul li p {
            margin-bottom:10px;
            text-align:left;
        }

/*--------------------------------Req Payment--------------------------------*/

div.clsParticulars {
    padding:0;
}

.clsParticulars table {
    width:100%;
    border-collapse:collapse;
    table-layout: fixed;
}

    .clsParticulars table,
    .clsParticulars table th,
    .clsParticulars table td {
        border:1px solid #ccc;
    }

    .clsParticulars table th,
    .clsParticulars table tfoot tr td {
        padding:7px 10px;
        font-weight:500;
        background-color:#b3d4ff;
    }

    .clsParticulars table tr td input[type=text],
    .clsParticulars table tr td select {
        width:100%;
        border:none;
        padding:7px 10px;
    }

    .clsParticulars table th:nth-child(3),
    .clsParticulars table td:nth-child(3){
        width:100px;
    }

    .clsParticulars table th:nth-child(6),
    .clsParticulars table td:nth-child(6){
        width:50px;
        text-align:center;
    }

    .clsParticulars table td a {
        background-image: url(/Admin/Images/delete.png);
        display: inline-block;
        width: 20px;
        height: 20px;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .clsParticulars table tfoot tr td {
        padding-right:5px;
    }

    .clsParticulars .clsAmt, .clsParticulars #lblTotalAmt {
        text-align:right;
    }