.contentsection {
    margin: 0px 0px;
    background: #ffffff;
    padding: 10px 20px 30px 20px;
    border-radius: 4px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #dce3e6;
    margin-bottom: 30px;
}
/*MATERIAL CSS STARTS HERE*/
.material {
    position: relative;
    padding: 0;
    margin-top: 15px;
    border: none;
    overflow: visible;
}

    .material input {
        box-sizing: border-box;
        width: 100%;
        padding: 12px 0px 8px 0px;
        border: none;
        border-radius: 0;
        box-shadow: none;
        border-bottom: 1px solid #DDD;
        font-size: 14px;
        outline: none;
        cursor: text;
    }

        .material input::-webkit-input-placeholder {
            transition: color 300ms ease;
        }

        .material input:not(:focus)::-webkit-input-placeholder {
            color: transparent;
        }

    .material hr {
        content: '';
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        margin: 0;
        padding: 0;
        width: 100%;
        height: 2px;
        border: none;
        background: #621c91;
        font-size: 1px;
        will-change: transform, visibility;
        transition: all 200ms ease-out;
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        visibility: hidden;
        z-index: 10;
    }

    .material input:focus ~ hr {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
        visibility: visible;
    }

    .material label {
        position: absolute;
        top: 10px;
        font-size: 14px;
        color: #333;
        -webkit-transform-origin: 0 -150%;
        transform-origin: 0 -150%;
        transition: -webkit-transform 300ms ease;
        transition: transform 300ms ease;
        transition: transform 300ms ease, -webkit-transform 300ms ease;
        pointer-events: none;
    }

    .material input:focus ~ label,
    .material input:valid ~ label {
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
        font-size: 20px;
        color: #1a4362;
    }

.select-text {
    position: relative;
    font-family: inherit;
    background-color: transparent;
    width: 100%;
    /*padding: 10px 10px 0px 0;*/ /*Hardik*/
    padding: 0px 10px 0px 0; /*Hardik*/
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(0,0,0, 0.12);
    font-size: 14px;
    /*height: 42px;*/ /*Hardik*/
    height: 30px;/*Hardik*/
    margin-top: 10px; /*Hardik*/
    outline: none;
}

    .select-text:focus {
        outline: none;
        border-bottom: 1px solid rgba(0,0,0, 0);
        outline: none;
    }

.select .select-text {
    appearance: none;
    -webkit-appearance: none
}

.select:after {
    position: absolute;
    top: 18px;
    right: 10px;
    width: 0;
    height: 0;
    padding: 0;
    content: '';
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid rgba(0, 0, 0, 0.12);
    pointer-events: none;
}

.select-label {
    color: rgba(0,0,0, 0.26);
    font-size: 18px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 0;
    top: 10px;
    transition: 0.2s ease all;
}

.select-text:focus ~ .select-label, .select-text:valid ~ .select-label {
    /*color: #1a4362;*/
    color: #621c91; /*hardik*/ 
    top: -13px;
    transition: 0.2s ease all;
    font-size: 14px;
}

.select-bar {
    position: relative;
    display: block;
    /* width: 350px; */
}

    .select-bar:before, .select-bar:after {
        content: '';
        height: 2px;
        width: 0;
        bottom: 1px;
        position: absolute;
        /*background: #1a4362;*/
        background: #621c91; /*Hardik*/
        transition: 0.2s ease all;
    }

    .select-bar:before {
        left: 50%;
    }

    .select-bar:after {
        right: 50%;
    }

.select-text:focus ~ .select-bar:before, .select-text:focus ~ .select-bar:after {
    width: 50%;
    background: #621c91;
}

.select-highlight {
    position: absolute;
    height: 60%;
    width: 100px;
    top: 25%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}
/*MATERIAL CSS ENDS HERE*/
.checkboxfields, .radiofields {
    margin-top: 10px;
}
/* CHECKBOX CSS STARTS HERE */
.md-checkbox {
    position: relative;
    margin: 1em 0;
    text-align: left;
}

    .md-checkbox.md-checkbox-inline {
        display: inline-block;
    }

    .md-checkbox label {
        cursor: pointer;
        display: inline;
        line-height: 1.25em;
        vertical-align: top;
        clear: both;
        padding-left: 1px;
    }

        .md-checkbox label:not(:empty) {
            padding-left: 10px;
            padding-right: 10px;
        }

        .md-checkbox label:before, .md-checkbox label:after {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
        }

        .md-checkbox label:before {
            width: 1.25em;
            height: 1.25em;
            background: #fff;
            border: 2px solid rgba(0, 0, 0, 0.54);
            border-radius: 0.125em;
            cursor: pointer;
            transition: background .3s;
        }

    .md-checkbox input[type="checkbox"] {
        outline: 0;
        visibility: hidden;
        width: 1.25em;
        margin: 0;
        display: block;
        float: left;
        font-size: inherit;
    }

        .md-checkbox input[type="checkbox"]:checked + label:before {
            background: #1a4362;
            border: none;
        }

        .md-checkbox input[type="checkbox"]:checked + label:after {
            transform: translate(0.25em, 0.3365384615em) rotate(-45deg);
            width: 0.75em;
            height: 0.375em;
            border: 0.125em solid #fff;
            border-top-style: none;
            border-right-style: none;
        }

        .md-checkbox input[type="checkbox"]:disabled + label:before {
            border-color: rgba(0, 0, 0, 0.26);
        }

        .md-checkbox input[type="checkbox"]:disabled:checked + label:before {
            background: rgba(0, 0, 0, 0.26);
        }

        .md-checkbox input[type="checkbox"]:disabled + label {
            color: #ccc;
        }
/* CHECKBOX CSS ENDS HERE */
/* RADIO BUTTON CSS STARTS HERE */
@keyframes ripple {
    0% {
        box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0);
    }

    50% {
        box-shadow: 0px 0px 0px 15px rgba(0, 0, 0, 0.1);
    }

    100% {
        box-shadow: 0px 0px 0px 15px rgba(0, 0, 0, 0);
    }
}

.md-radio {
    margin: 10px 0;
}

    .md-radio.md-radio-inline {
        display: inline-block;
    }

    .md-radio input[type="radio"] {
        display: none;
    }

        .md-radio input[type="radio"]:checked + label:before {
            border-color: #621c91; /*Hardik*/
            /*border-color: #1a4362;*/ /*Hardik*/
            animation: ripple 0.2s linear forwards;
        }

        .md-radio input[type="radio"]:disabled + label:before {
            border-color: #ccc;
        }

        .md-radio input[type="radio"]:disabled + label {
            color: #ccc;
            pointer-events: none;
            cursor: default;
        }

            .md-radio input[type="radio"]:disabled + label:after {
                background: #ccc;
                cursor: default;
            }

        .md-radio input[type="radio"]:checked + label:after {
            transform: scale(1);
        }

    .md-radio label {
        display: inline-block;
        height: 20px;
        position: relative;
        padding: 0 30px;
        margin-bottom: 0;
        cursor: pointer;
        vertical-align: bottom;
        padding-right: 12px;
    }

        .md-radio label:before, .md-radio label:after {
            position: absolute;
            content: '';
            border-radius: 50%;
            transition: all .3s ease;
            transition-property: transform, border-color;
        }

        .md-radio label:before {
            left: 0;
            top: 0;
            width: 20px;
            height: 20px;
            border: 2px solid rgba(0, 0, 0, 0.54);
        }

        .md-radio label:after {
            top: 5px;
            left: 5px;
            width: 10px;
            height: 10px;
            transform: scale(0);
            /*background: #1a4362;*/ /*Hardik*/
            background: #621c91; /*Hardik*/
        }
/* RADIO BUTTON CSS ENDS HERE */
/* TEXT AREA CSS STARTS HERE */
textarea:focus ~ label, textarea:valid ~ label {
    color: #1a4362;
    top: -2.25rem;
    -webkit-transition: all 0.125s ease;
    transition: all 0.125s ease;
}

.styled-input {
    float: left;
    width: 33.3333%;
    margin: 2rem 0 1rem;
    position: relative;
    border-bottom: 1px solid #ccc;
}

    .styled-input label {
        color: #999;
        padding-top: 10px;
        position: absolute;
        top: 0;
        left: 0;
        -webkit-transition: all 0.25s ease;
        transition: all 0.25s ease;
        pointer-events: none;
    }

    .styled-input.wide {
        width: 100%;
    }

textarea {
    border: 0;
    width: 100%;
}

    textarea ~ span {
        display: block;
        width: 0;
        height: 2px;
        background: #621c91;
        position: absolute;
        bottom: 5px;
        left: 0;

        -webkit-transition: all 0.125s ease;
        transition: all 0.125s ease;
    }

    textarea:focus {
        outline: 0;
    }

        textarea:focus ~ span {
            width: 100%;
            -webkit-transition: all 0.075s ease;
            transition: all 0.075s ease;
        }

textarea {
    width: 100%;
}
/* TEXT AREA CSS ENDS HERE */
/* ACCORDION CSS STARTS HERE */
.panel {
    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: #fff;
    background: none;
    box-shadow: none;
}

.mt20 {
    margin-top: 20px;
}

.mt30 {
    margin-top: 30px !important;
}

.inline-block {
    display: inline-block;
}

.panel:last-child {
    /* border-bottom: none; */
    border-bottom: 1px solid #afafaf;
}

.panel-group > .panel:first-child .panel-heading {
    border-radius: 4px 4px 0 0;
}

.panel-group .panel {
    border-radius: 0;
}

    .panel-group .panel + .panel {
        margin-top: 0;
    }

.panel-heading {
    background-color: #1a4362;
    border-radius: 0;
    border: none;
    color: #fff;
    padding: 0;
}

.panel-title a {
    display: block;
    color: #fff;
    padding: 15px;
    position: relative;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
}

.panel-body {
    background: #fff;
    padding: 20px;
    border: 1px solid #afafaf;
}

.panel:last-child .panel-body {
    border-radius: 0 0 4px 4px;
}

.panel:last-child .panel-heading {
    border-radius: 0 0 4px 4px;
    transition: border-radius 0.3s linear 0.2s;
}

    .panel:last-child .panel-heading.active {
        border-radius: 0;
        transition: border-radius linear 0s;
    }

.panel-heading a:before {
    content: '\e146';
    position: absolute;
    font-family: 'Material Icons';
    right: 5px;
    top: 10px;
    font-size: 24px;
    transition: all 0.5s;
    transform: scale(1);
}

.panel-heading.active a:before {
    content: ' ';
    transition: all 0.5s;
    transform: scale(0);
}

#bs-collapse .panel-heading a:after {
    content: "\f078";
    font-family: 'Font Awesome 5 Free';
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    color: #000;
    font-size: 18px;
    padding-right: 0.5em;
    position: absolute;
    top: 10px;
    right: 0;
    color: #fff;
}

#bs-collapse .panel-heading.active a:after {
    content: '\e909';
    transform: scale(1);
    transition: all 0.5s;
}
/* #accordion rotate icon option */
#accordion .panel-heading a:before, #accordion1 .panel-heading a:before {
    font-family: "Font Awesome 5 Free";
    content: "\f078";
    display: inline-block;
    padding-right: 3px;
    vertical-align: middle;
    font-weight: 900;
    font-size: 14px;
    margin-top: 4px;
}

#accordion .panel-heading.active a:before, #accordion1 .panel-heading.active a:before {
    transform: rotate(180deg);
    transition: all 0.5s;
    padding-left: 4px;
}

#accordion1 .panel-title a {
    color: black;
    font-weight: 600;
}

#accordion1 .panel-heading {
    background-color: white;
    border-top: 1px solid #afafaf;
    border-radius: 0px;
}

#accordion1 .panel-body {
    border: none;
}

#accordion1 .active {
    border-top: 2px solid #1a4362;
}
/* ACCORDION CSS ENDS HERE */
/* SELECT CSS STARTS HERE */
.select-text .drop-down-loc {
    margin: 0px 200px;
    background: #ffffff;
    padding: 10px 40px 30px 40px;
    border-radius: 8px;
    box-shadow: 0 1px 4px 0 rgba(0,0,0,.14);
}

.drop-down-loc {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-origin: content-box !important;
    background: url(../img/downarrow.png) no-repeat right center !important;
    padding-right: 14px;
}
/*CUSTOM SELECT CSS STARTS HERE*/
/*the container must be positioned relative:*/
.custom-select {
    position: relative;
    color: inherit;
    height: auto;
    line-height: normal;
    background: transparent;
}

    .custom-select select {
        display: none; /*hide original SELECT element:*/
    }

.ptb10 {
    padding: 10px 0px !important;
}

.p20 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}
/*style the arrow inside the select element:*/
.select-selected:after {
    display: none;
    position: absolute;
    content: "";
    top: 14px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #fff transparent transparent transparent;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
    border-color: transparent transparent #fff transparent;
    top: 7px;
}

/*style the items (options), including the selected item:*/
.select-items div {
    padding: 6px 8px;
    border: 1px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
    user-select: none;
    font-size: 14px;
}

.select-selected {
    font-size: 14px;
}


/*style items (options):*/
.select-items {
    position: absolute;
    background-color: #fff;
    border: 1px solid #007bff;
    top: 100%;
    left: 0px;
    right: 0;
    z-index: 99;
}

/*hide the items when the select box is closed:*/
.select-hide {
    display: none;
}

.select-items div:hover, .same-as-selected {
    background-color: #1E90FF;
    color: #fff;
}
/*.select-arrow-active.p20{
     padding: 18px 0px !important; 
  }*/
/*CUSTOM SELECT CSS ENDS HERE*/
/* FILE UPLOAD CSS STARTS HERE */
.it input.form-control {
    border: none;
    margin-bottom: 0px;
    border-radius: 0px;
    border-bottom: 1px solid #ddd;
    box-shadow: none;
}

.it .form-control:focus {
    border-color: #ff4d0d;
    box-shadow: none;
    outline: none;
}

.fileUpload {
    position: relative;
    overflow: hidden;
}

    .fileUpload input.upload {
        position: absolute;
        top: 0;
        right: 0;
        margin: 0;
        padding: 0;
        font-size: 20px;
        cursor: pointer;
        opacity: 0;
        filter: alpha(opacity=0);
    }

.blueupload {
    background-color: #1a4362;
    border-color: #1a4362;
    color: #fff;
    border-radius: 0px;
    margin-top: 20px;
}

    .blueupload:hover {
        color: #fff;
    }

.fileuploadinput {
    border-radius: 0px !important;
    margin-top: 20px !important;
    outline: 0px;
}
/* FILE UPLOAD CSS ENDS HERE */
/* TABS CSS STARTS HERE*/
.tile {
    margin-top: 20px;
}

.nav-tabs {
    position: relative;
    background-color: #fff;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #dce3e6;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

    .nav-tabs li {
        margin: 0px !important;
    }

        .nav-tabs li a {
            position: relative;
            margin-right: 0px !important;
            padding: 15px 40px !important;
            font-size: 16px;
            border: none !important;
            color: #333;
        }

    .nav-tabs a:hover {
        background-color: #fff !important;
        border: none;
    }

.slider {
    display: inline-block;
    width: 310px;
    height: 4px;
    border-radius: 3px;
    background-color: #612C91 !important;
    position: absolute;
    z-index: 1;
    bottom: 0;
    transition: all .4s linear;
}

.nav-tabs .active {
    background-color: transparent !important;
    border: none !important;
    color: #1a4362 !important;
}

.tab-content > .tab-pane {
    border: 2px solid #e9ecef;
    /*height: 120px;*/
    padding: 20px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    border: 1px solid #dce3e6;
}
/* TABS CSS ENDS HERE*/
.fieldheading {
    font-size: 14px;
    font-weight: 500;
    /*text-transform: uppercase;*/
    margin-top: 20px;
    color: rebeccapurple;
}


/* TABLE CSS STARTS HERE */

.dataTables_paginate {
    float: right;
    margin-top: -25px !important;
    margin-right: 12px !important;
}

    .dataTables_paginate a {
        color: #76449a;
        margin: 3px;
        padding: 4px 10px;
        text-decoration: none;
        cursor: pointer;
        border: 1px solid #76449a;
    }

    /*.dataTables_paginate a {
        color: #621c91;
        margin: 3px;
        padding: 4px 10px;
        text-decoration: none;
        cursor: pointer;
    }*/

.paginate_button.current {
    background: #621c91; /*Hardik*/
    border: 1px solid #621c91; /*Hardik*/
    color: #fff;
}

.excelicon, .pdficon, .copyicon, .csvicon {
    background-size: cover;
    background: transparent;
    border: 1px solid white;
    cursor: pointer;
}
/* TABLE CSS ENDS HERE */

/* TOGGLE CSS STARTS HERE */
.toggle {
    position: absolute;
    top: 39%;
    left: 46%;
    width: 60px;
    height: 30px;
    border-radius: 100px;
    background-color: #ddd;
    margin: -10px -40px;
    overflow: hidden;
    box-shadow: inset 0 0 2px 1px rgba(0,0,0,.05);
}

.check {
    position: absolute;
    display: block;
    cursor: pointer;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 6;
}

    .check:checked ~ .track {
        box-shadow: inset 0 0 0 20px #fed23b;
    }

    .check:checked ~ .switch {
        right: 2px;
        left: 36px;
        transition: .35s cubic-bezier(0.785, 0.135, 0.150, 0.860);
        transition-property: left, right;
        transition-delay: .05s, 0s;
    }

.switch {
    position: absolute;
    left: 2px;
    top: 2px;
    bottom: 2px;
    right: 36px;
    background-color: #fff;
    border-radius: 36px;
    z-index: 1;
    transition: .35s cubic-bezier(0.785, 0.135, 0.150, 0.860);
    transition-property: left, right;
    transition-delay: 0s, .05s;
    box-shadow: 0 1px 2px rgba(0,0,0,.2);
}

.track {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    transition: .35s cubic-bezier(0.785, 0.135, 0.150, 0.860);
    box-shadow: inset 0 0 0 2px rgba(0,0,0,.05);
    border-radius: 40px;
}
/* TOGGLE CSS ENDS HERE */

/* MODAL CSS STARTS HERE */
.modalcss {
    margin-left: -55px;
}

.modal-header {
    float: left;
    display: block;
    background-color: #f1eff0;
    color: #000;
    font-weight: bold;
}

.closemodal {
    color: #000;
    opacity: 0.8;
}

    .closemodal:hover {
        color: #000;
        opacity: 0.8;
    }

.modal-footer button {
    margin-top: 0px;
}

.modal-content {
    -webkit-box-shadow: 0 5px 11px 0 rgba(0,0,0,.18), 0 4px 15px 0 rgba(0,0,0,.15);
    box-shadow: 0 5px 11px 0 rgba(0,0,0,.18), 0 4px 15px 0 rgba(0,0,0,.15);
    border: 0;
}
/* MODAL CSS ENDS HERE */

/*BUTTON CSS STARTS HERE*/
.buttoncss {
    margin-left: -55px;
}

    .buttoncss button {
        margin-right: 20px;
    }

.btncss {
    text-align: center;
    position: relative;
    display: inline-block;
    overflow: hidden;
    width: 100%;
    max-width: 175px;
    height: 48px;
    margin-top: 20px;
    text-transform: capitalize;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    line-height: 46px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.btn_primary {
    border: 1px solid #669933; /*Hardik*/
    color: #fff !important; /*Hardik*/
    background: #669933; /*Hardik*/
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}

    .btn_primary:hover {
        border: 1px solid #669933; /*Hardik*/
        color: #669933 !important; /*Hardik*/
        background-color: #fff; /*Hardik*/
        transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    }

.btn_Scondary {
    border: 1px solid #858484; /*Hardik*/
    color: #858484 !important;/*Hardik*/
    background-color: #fff; /*Hardik*/
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}

    .btn_Scondary:hover {
        border: 1px solid #858484;
        color: #fff !important;
        background: #858484;
        transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    }

.btn_disable {
    border: 1px solid #dae0e5;
    color: #8c8c8c !important;
    background-color: #e1e1e1;
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    cursor: not-allowed !important;
}



button:focus {
    outline: 0px;
}
/*BUTTON CSS ENDS HERE*/

/* SEARCH CSS */
#example {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.dataTables_length {
    margin-top: -5px;
}

.dataTables_scrollHead {
    border-bottom: 0px;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}

.searchwrap {
    margin: 10px 0px;
    display: inline-block;
    position: relative;
    height: 60px;
    /*float: right;*/
    padding: 0;
    margin-right: -80px;
    /* margin-top: 9px; */
}

    .searchwrap input[type="text"] {
        /* height: 49px; */
        font-size: 16px;
        font-family: 'roboto','Segoe UI', calibri, sans-serif !important;
        display: inline-block;
        border: none;
        outline: none !important;
        color: #555;
        padding: 3px;
        padding-right: 60px;
        width: 0px;
        position: absolute;
        top: 0;
        right: 0;
        background: none;
        z-index: 1;
        transition: width .4s cubic-bezier(0.000, 0.795, 0.000, 1.000);
        cursor: pointer;
        padding-top: 63px;
    }

.nozindex {
    z-index: 0 !important;
}

.searchwrap input[type="text"]:focus:hover {
    border-bottom: 2px solid #6689a9;
}

.searchwrap input[type="text"]:focus {
    width: 300px;
    z-index: 1;
    border-bottom: 2px solid #6689a9;
    cursor: text;
}

.searchwrap input[type="submit"] {
    height: 55px;
    width: 40px;
    display: inline-block;
    color: #555;
    /*float: right;*/
    background: url("../img/search_sidegreen.png") center center no-repeat;
    text-indent: -10000px;
    border: none;
    position: absolute;
    top: 46px;
    right: 0;
    z-index: 0;
    cursor: pointer;
    transition: opacity .4s ease;
    outline: none !important;
}

    .searchwrap input[type="submit"]:hover {
        opacity: 0.8;
    }

.searchwrap input[type="text"]:focus:hover {
    border-bottom: 2px solid #6689a9;
}

.searchwrap input[type="text"]:focus {
    width: 300px;
    z-index: 1;
    border-bottom: 2px solid #6689a9;
    cursor: text;
}

.searchwrap input[type="submit"]:hover {
    opacity: 0.8;
}

@media screen and (min-width:1000px) and (max-width:1250px) {
    .searchwrap {
        margin-right: -20px;
    }
}

@media screen and (min-width:1300px) and (max-width:1500px) {
    .searchwrap {
        margin-right: -100px;
    }
}

@media screen and (min-width:1500px) {
    .searchwrap {
        margin-right: -234px;
    }
}

@media screen and (max-width:768px) {
    .searchwrap {
        margin-right: 45px;
    }
}
/* SEARCH CSS */
.right {
    float: right;
}

.mainfilter {
    padding-top: 19px;
}

.datatableicons {
    padding: 0px 7px;
}

.dataheading {
    display: inline-block;
    margin-top: 28px;
}

/* DATE TIME PICKER */
.datetimepicker {
    cursor: pointer;
    margin-top: 15px;
}

    .datetimepicker .input-group-addon {
        display: inline-flex;
        width: 80%;
    }

    .datetimepicker .input-group-addon {
        border-bottom: 1px solid #ced4da
    }

    .datetimepicker .form-control {
        border: none;
    }

    .datetimepicker .customisecalendar {
        margin-top: 8px;
        /*padding-right: 10px;*/ /*hardik*/
        font-size: 22px;
        opacity: 0.7;
        position: absolute;/*hardik*/
        right: 54px;/*hardik*/
    }
/* DATE TIME PICKER */

/* MULTISELECT CSS */
.multilist {
    width: 100%;
    border: 1px solid #e0e0e0;
    height: 160px;
    margin-top: 20px;
}

.arrowbtns {
    margin-top: 50px;
    display: block;
    margin-left: 10px;
}

.arrowbtn {
    display: block;
    margin-top: 10px;
    border: 1px solid #1a4362;
    background: #1a4362;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    padding: 10px;
}
/* MULTISELECT CSS */

/* FIREFOX FOCUS ISSUE FIX */
button::-moz-focus-inner {
    border: 0 !important;
}

a, a:visited, a:focus, a:active, a:hover {
    outline: 0 none !important;
}

select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #000;
}

.form-control:focus {
    border-color: transparent !important;
    box-shadow: none !important;
}

@media screen and (max-width: 1025px) {
    .nav-tabs li a {
        padding: 15px 20px !important;
    }
}
