.body {
    background-color: var(--BackgroundColor);
    font-weight: 500;
}

.wrapper .top_navbar {
    height: 55px;
    display: flex;
    position: fixed;
    top: 0px;
    z-index: 10;
    background-color: var(--backgrondcolor);
}

.sticky {
    position: fixed;
    top: 0;
}

@media (max-width:1200px) {
    .wrapper .top_navbar {
        width: calc(100%);
    }
}

@media (min-width:1200px) {
    .wrapper .top_navbar {
        width: 235px;
    }
}

.wrapper .top_navbar .hamburger {
    width: 70px;
    padding: 16px 20px;
    background-color: white;
    cursor: pointer;
    position: relative;
    z-index: 20;
}

    .wrapper .top_navbar .hamburger div {
        width: 28px;
        height: 3px;
        background-color: var(--PageTitleColor);
        margin: 4px 0;
        border-radius: 5px;
    }

.page-sub-heading {
    color: var(--secondarycolor)
}

@media (max-width: 800px) {
    .wrapper .top_navbar .top_menu {
        width: calc(100%);
        background: #fff;
        height: 100%;
        box-shadow: 0px 1px 1px rgba(0, 0, 0, .1);
    }

        .wrapper .top_navbar .top_menu .logo {
            color: var(--primarycolor);
            font-size: 20px;
            font-weight: 700;
            letter-spacing: 3px;
            text-align: center;
        }

            .wrapper .top_navbar .top_menu .logo img {
                position: relative;
                left: -35px;
            }
}

@media (min-width: 800px) {
    .wrapper .top_navbar .top_menu {
        width: calc(100%);
        background: #fff;
        height: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-shadow: 0px 1px 1px rgba(0, 0, 0, .1);
    }

        .wrapper .top_navbar .top_menu .logo {
            color: var(--primarycolor);
            font-size: 20px;
            font-weight: 700;
            letter-spacing: 3px;
        }
}

.wrapper .sidebar {
    position: fixed;
    top: 55px;
    background: var(--SideNavBackgroundColor);
    width: 235px;
    height: 100%;
    transition: all .3s ease;
}

    .wrapper .sidebar ul li {
        border-bottom: 1px solid var(--SideNavBottomBorderColor);
    }

        .wrapper .sidebar ul li a {
            display: block;
            padding: 10px 10px 10px 20px;
            position: relative;
            color: var(--SideNavTextColor);
            white-space: nowrap;
            cursor: pointer;
        }

            .wrapper .sidebar ul li a::before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 3px;
                height: 100%;
                background: blue;
                display: none;
            }

            .wrapper .sidebar ul li a span.icon {
                margin-right: 10px;
                width: 20px;
                display: inline-block;
            }

                .wrapper .sidebar ul li a span.icon > img {
                    width: 20px;
                }

                .wrapper .sidebar ul li a span.icon i {
                    font-size: 18px;
                }

            .wrapper .sidebar ul li a span.title {
                display: inline-block;
                font-size: 14px;
                text-decoration: none;
                line-height: 1;
                margin-top: 3px;
                margin-bottom: 3px;
            }

            .wrapper .sidebar ul li a.active,
            .wrapper .sidebar ul li a:hover {
                color: var(--SideNavSelectedItemTextColor);
                background-color: var(--SideNavSelectedItemBackgroundColor);
                text-decoration: none;
            }

.wrapper .main-Content {
    width: calc(100% - 235px);
    /*margin-top: 60px;*/
    margin-left: 235px;
    transition: all 0.3s ease;
}

.pagetitle {
    font-weight: bold;
    font-size: 25px;
    padding-top: 8px;
    padding-bottom: 8px;
    text-align: left;
    text-align: center;
    color: var(--PageTitleColor);
    background-color: #fff;
    box-shadow: rgba(0,0,0,0.03) 0px 4px 6px -1px, rgba(0,0,0,0.08) 0px 0px 9px 0px;
    z-index: 10;
}

@media (min-width: 800px) and (max-width: 1200px) {
    .pagetitle {
        position: sticky;
        width: calc(100% - 400px);
        left: 200px;
        box-shadow: none;
        top: 0px;
    }
}

@media (max-width: 800px) {
    .pagetitle {
        margin-top: 60px;
    }
}

.wrapper .main-Content .item {
    background: #fff;
    margin-bottom: 10px;
    padding: 15px;
    font-size: 14px;
    line-height: 22px;
}

.wrapper.collapseSideBar .sidebar {
    width: 70px !important;
}

    .wrapper.collapseSideBar .sidebar ul li a {
        text-align: center;
        padding: 10px;
    }

        .wrapper.collapseSideBar .sidebar ul li a span.title {
            display: none;
        }

.wrapper.collapseSideBar .main-Content {
    width: calc(100% - 90px);
    margin-left: 80px;
}

.logininfo {
    color: white !important;
    padding-top: 15px;
}

    .logininfo a {
        color: white !important;
    }

.sidebar-submenu {
    display: none;
    border-top: solid 1px white;
    background: var(--SideNavSubMenuBackgroundColor);
}

    .sidebar-submenu a {
        color: white;
    }

.sidebar::-webkit-scrollbar {
    width: 10px;
}
/* Track */
.sidebar::-webkit-scrollbar-track {
    box-shadow: inset 0 0 2px grey;
    border-radius: 10px;
}
/* Handle */
.sidebar::-webkit-scrollbar-thumb {
    background: var(--SideNavTextColor);
    border-radius: 10px;
}
    /* Handle on hover */
    .sidebar::-webkit-scrollbar-thumb:hover {
        background: white;
    }
/* sidebar heading */
.sidebar-heading {
    padding: 5px 10px;
    color: #fff;
    font-size: 18px;
}

.wrapper.collapseSideBar .sidebar-heading {
    transition: all 0.3s;
    opacity: 0;
    visibility: none;
}
/*sidebar img */
.sidebar-img img {
    width: 17px;
    height: 17px;
}

@media (max-width:1200px) {
    .wrapper .sidebar {
        width: 95%;
        display: none;
    }

    .wrapper.collapseSideBar .sidebar {
        width: 300px !important;
        display: block;
        border-bottom-right-radius: 25px;
        z-index: 1000;
    }

        .wrapper.collapseSideBar .sidebar ul li a {
            text-align: left;
            padding-left: 15%;
        }

            .wrapper.collapseSideBar .sidebar ul li a span.title {
                display: inline-block;
            }

    .wrapper .main-Content {
        margin-left: 0px;
        width: 100%;
    }

    .wrapper .top_navbar {
        top: 0px;
    }

        .wrapper .top_navbar .top_menu .logo {
            font-size: 17px;
            letter-spacing: normal;
        }
}

.form-fullscreen {
    width: calc(100% - 40px) !important;
}

@media (max-width: 1875px) {
    .form-1600 {
        width: 100% !important;
    }
}

@media (max-width: 1675px) {
    .form-1600, .form-1400 {
        width: 100% !important;
    }
}

@media (max-width: 1475px) {
    .form-fullscreen, .form-1600, .form-1400, .form-1200 {
        width: 100% !important;
    }
}

@media (max-width: 1275px) {
    .form-1600, .form-1400, .form-1200 {
        width: 100% !important;
    }
}

@media (max-width: 1040px) {
    .form-1600, .form-1400, .form-1200, .form-1000 {
        width: 100% !important;
    }
}

@media (max-width: 875px) {
    .form-1600, .form-1400, .form-1200, .form-1000, .form-800 .form-600 {
        width: 100% !important;
    }
}

@media (max-width: 625px) {
    .form-1600, .form-1400, .form-1200, .form-1000, .form-800 .form-600 .form-450 {
        width: 100% !important;
    }
}

@media (min-width: 1875px) {
    .form-1600 {
        width: 1600px !important;
        position: relative;
        left: 50%;
        margin-left: -800px;
    }
}

@media (min-width: 1675px) {
    .form-1400 {
        width: 1400px !important;
        position: relative;
        left: 50%;
        margin-left: -700px;
    }
}

@media (min-width: 1475px) {
    .form-1200 {
        width: 1200px !important;
        position: relative;
        left: 50%;
        margin-left: -600px;
    }
}

@media (min-width: 1040px) and (max-width: 1200px) {
    .form-1000 {
        width: 1000px !important;
        position: relative;
        left: 50%;
        margin-left: -500px;
    }
}

@media (min-width: 1275px) {
    .form-1000 {
        width: 1000px !important;
        position: relative;
        left: 50%;
        margin-left: -500px;
    }
}

@media (min-width: 840px) {
    .form-800 {
        width: 800px !important;
        position: relative;
        left: 50%;
        margin-left: -400px;
    }
}

@media (min-width: 640px) {
    .form-600 {
        width: 600px !important;
        position: relative;
        left: 50%;
        margin-left: -300px;
    }
}

@media (min-width: 490px) {
    .form-450 {
        width: 450px !important;
        position: relative;
        left: 50%;
        margin-left: -225px;
    }
}

@media (min-width: 502px) {
    .form-1600, .form-1400, .form-1200, .form-1000, .form-800, .form-600, .form-450 {
        padding: 10px;
    }
}

@media (max-width: 501px) {
    .form-1600, .form-1400, .form-1200, .form-1000, .form-800, .form-600, .form-450 {
        padding-top: 10px;
    }
}

@media (max-width: 501px) {
    .mobileportrait {
    }

    .mobilewide {
        display: none;
    }

    .mobilewide-desktop {
        display: none;
    }

    .desktop {
        display: none;
    }
}

@media (max-width: 800px) and (min-width: 502px) {
    .mobileportrait {
        display: none;
    }

    .desktop {
        display: none;
    }
}

@media (min-width: 801px) {
    .mobileportrait {
        display: none;
    }

    .mobilewide {
        display: none;
    }

    .mobileportrait-mobilewide {
        display: none;
    }
}

*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

* {
    margin: 0;
    list-style: none;
    padding: 0;
    text-decoration: none;
    font-family: 'Montserrat',sans-serif;
}

p {
    font-weight: 500;
    margin: 0px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
    margin: 0;
    margin-bottom: 10px;
}

h1, .h1 {
    font-size: 45px;
    line-height: normal;
}

h2, .h2 {
    font-size: 44px;
    line-height: 1.2;
    margin: 0 0 10px;
    font-weight: 500;
}

h3, .h3 {
    font-size: 30px;
    font-weight: 600;
    margin: 0 0 15px;
}

h4, .h4 {
    font-size: 24px;
    line-height: normal;
    font-weight: 500;
}

h5, .h5 {
    font-size: 18px;
}

h6, .h6 {
    font-size: 16px;
}

ul, ol {
    margin: 0;
    padding: 0;
    line-height: normal;
}

    ul ul, ol ul, ul ol, ol ol {
        margin-bottom: 0;
        line-height: normal;
    }

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

a {
    color: var(--primarycolor );
    text-decoration: none;
}

.buttonlink a {
    color: black;
    text-decoration: underline !important;
}

a:hover, a:focus {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a:focus {
    outline: none;
    text-decoration: none;
    color: var(--primarycolor );
}

.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.clearfix {
    display: inline-block;
}

    .clearfix:before, .clearfix:after {
        content: " ";
        display: table;
    }

    .clearfix:after {
        clear: both;
    }

.clearfix {
    *zoom: 1;
}

html[xmlns] .clearfix {
    display: block;
}

* html .clearfix {
    height: 1%;
}

.outer-width {
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    float: left;
}

    .outer-width:before, .outer-width:after {
        content: " "; /* 1 */
        display: table; /* 2 */
    }

    .outer-width:after {
        clear: both;
    }
/**Body CSS**/
:root {
    scroll-behavior: unset;
    scroll-behavior: inherit !important;
}

body {
    position: relative;
    overflow-x: hidden;
    font-size: 15px;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    background-color: var(--backgrondcolor);
}

    body.body-overflow .wrapper {
        transition: all 0.3s ease 0s;
        opacity: 1;
        transition-delay: 0.1s;
        background: #ffffff;
    }
/*common css end*/
/*common spacing start*/
.space-between-sec {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.check-box-sec {
    display: flex;
    gap: 20px;
    align-items: center;
}

.justify-space-between-end {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.wrapper .sidebar ul li a.space-between-sec {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.content-space-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.content-left-section {
    display: flex;
    justify-content: left;
    align-items: center;
}

.content-right-section {
    display: flex;
    justify-content: right;
    align-items: center;
}

.content-align-center {
    display: flex;
    align-items: center;
}

.text-center {
    text-align: center;
}
/*common spacing end*/
/*form styles starts*/
.white-bg {
    background: #fff;
    box-shadow: rgb(0 0 0 / 8%) 0px 15px 25px, rgb(0 0 0 / 8%) 0px 5px 10px;
    margin-bottom: 15px;
}

    .white-bg ul {
        padding-left: 15px;
    }

    .white-bg li {
        list-style: disc;
    }

    .white-bg ul ul li {
        list-style: circle;
    }

.dark-bg {
    background: var(--darkbackground);
    box-shadow: rgb(0 0 0 / 5%) 0px 15px 25px, rgb(0 0 0 / 5%) 0px 5px 10px;
    padding-bottom: 1px;
    margin-bottom: 10px;
    color: #fff;
}

    .dark-bg .formlabel {
        color: white !important;
    }
/* Tables */
.lesspadding td {
    padding: 2px !important;
}

.tablegroupheader td {
    padding: 5px !important;
    text-align: center;
    background-color: var(--SectionHeaderBackGround);
    color: var(--SectionHeaderTextColor);
}

.tablestyle {
    text-align: left;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #AAA;
    border-top: 1px solid #AAA;
    /*    box-shadow: rgb(0 0 0 / 5%) 0px 15px 25px, rgb(0 0 0 / 5%) 0px 5px 10px;*/
}

    .tablestyle > tbody > tr:nth-of-type(odd) {
        background-color: var(--TableOddRow);
    }

    .tablestyle > tbody > tr:nth-of-type(even) {
        background-color: var(--TableEvenRow);
    }

    .tablestyle table {
        width: 100%;
    }

    .tablestyle th {
        background-color: var(--TableHeaderBackgroundColor);
        color: var(--TableHeaderTextColor);
        padding: 7px;
        vertical-align: top;
        font-weight: 500;
    }

        .tablestyle th button {
            color: var(--TableHeaderTextColor) !important;
        }

.buttoncolumn {
    width: 1px;
}

.innerformtable th {
    background-color: var(--InnerFormTableHeaderBackgroundColor);
    color: var(--InnerFormTableHeaderTextColor);
    padding: 7px;
    vertical-align: top;
    border: 1px solid #AAA;
}

.innerformtable {
    border-bottom: 1px solid #AAA;
    border-left: 1px solid #AAA;
    border-right: 1px solid #AAA;
}

.secondarycolor th {
    background-color: var(--secondarycolor);
    color: #FFFFFF;
    padding: 7px;
    vertical-align: top;
}

.tablestyle td {
    padding: 7px;
    border-bottom: 1px solid #AAA;
    vertical-align: top;
    font-weight: 500;
    font-size: 12px;
}

td {
    padding: 8px;
    vertical-align: top;
}

.bordersides {
    border-left: 1px solid #AAA;
    border-right: 1px solid #AAA;
}

.tablestyle a {
    color: black;
    text-decoration: underline;
}

.tablestyle tr:last-child td {
    border: 0;
}

.tablestyle a:hover {
    text-decoration: underline;
}

.scroll-tabel {
    max-height: 300px;
    overflow-y: scroll;
}

    .scroll-tabel table thead {
        position: sticky;
        top: 0;
    }

        .scroll-tabel table thead tr {
            width: 100%;
            table-layout: fixed;
        }

    .scroll-tabel table tbody tr {
        width: 100%;
        table-layout: fixed;
    }

.scroll-tabel1 {
    max-height: 500px;
    overflow-y: scroll;
}

    .scroll-tabel1 table thead {
        position: sticky;
        top: 0;
    }

        .scroll-tabel1 table thead tr, .scroll-tabel1 table tbody tr {
            /*  display: table;*/
            width: 100%;
            table-layout: fixed;
        }

@media screen and (max-width: 1366px) {
    .scroll-tabel table thead tr th, .scroll-tabel table tbody tr td {
        font-size: 12px;
        line-height: 14px
    }
}

.editremove {
    width: 170px;
}

.singlebutton {
    width: 1px;
}

.secondaryheaders th {
    background-color: var(--secondarycolor);
}

.error-message {
    color: var(--ErrorText);
    text-align: center;
}

.validation-message {
    color: var(--ErrorText);
    text-align: center;
    font-weight: bold;
    width: 100%;
    font-style: italic;
}

.success-message {
    color: var(--SuccessText);
    text-align: center;
    width: 100%;
    font-weight: bold;
}

.required {
    color: var(--ErrorText);
}

.edit-currency .currency-sign {
    top: 8px;
}

.sidebar-dropdown {
    border-bottom: 1px solid #fff;
}

.arrow-func {
    width: 10px;
    height: 10px;
    transition: .5s;
    display: inline-block;
    box-shadow: 2px -2px 0px #fff;
    transform: rotate(45deg);
    position: relative;
    right: 5px;
}

.sidebar-dropdown.active .arrow-func {
    transform: rotate(135deg);
    transition: .5s;
}
/*form styles End*/
/*buttons layout start*/
.buttons {
    text-align: center;
}

.center {
    text-align: center;
}

.button, .button-white, .gridbutton, .filterbutton, .smallbutton {
    font-family: 'Open Sans', sans-serif;
    cursor: pointer;
    text-align: center;
    font-size: 13px;
    text-transform: none;
    display: inline-block;
    line-height: 1.45;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    font-weight: 600;
}

.button, .button-white {
    margin-bottom: 10px;
    margin-top: 10px;
}

.button, .button-white, .filterbutton {
    margin-left: 3px;
    margin-right: 3px;
    padding: 8px 13px;
}

.smallbutton {
    margin-left: 3px;
    margin-right: 3px;
    padding: 2px 8px;
}

.gridbutton {
    background-color: white;
    color: #666;
    margin: 0px 10px 0px 0px;
    padding: 2px 8px;
    border: 1px solid black;
}

.button, .smallbutton {
    background-color: var(--ButtonBackgroundColor);
    color: var(--ButtonTextColor);
    border: 1px solid var(--ButtonBackgroundColor);
    box-shadow: rgb(0 0 0 / 20%) 2px 5px 10px, rgb(0 0 0 / 8%) 2px 5px 10px;
}

.input-form .button {
    box-shadow: rgb(0 0 0 / 8%) 1px 2px 4px, rgb(0 0 0 / 8%) 1px 2px 4px;
}

.button:hover, .gridbutton:hover, .button-white:hover, .filterbutton:hover, .smallbutton:hover {
    background: #fff;
    transition: all 0.3s;
    color: var(--ButtonHoverTextColor);
    border: 1px solid black;
}

.gridbutton a {
    color: #666;
    text-decoration: none !important;
}

    .gridbutton a:hover {
        text-decoration: none;
    }

.button-white, .filterbutton {
    background-color: #FFF;
    color: #666;
    border: 1px solid black;
}

.filterbutton {
    margin-top: 22px;
    margin-bottom: 0px;
}

.button-link {
    font-family: 'Open Sans', sans-serif;
    cursor: pointer;
    text-align: center;
    padding: 3px 5px;
    font-size: 12px;
    margin: 0 5px 10px 0;
    background-color: var(--ButtonBackgroundColor);
    border: 1px solid var(--ButtonBackgroundColor);
    color: var(--ButtonTextColor);
    min-width: 70px;
    text-transform: none;
    display: inline-block;
    line-height: 1.45;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

    .button-link:hover {
        background: transparent;
        border: 1px solid white;
        transition: all 0.3s;
        color: var(--ButtonHoverTextColor);
    }

.buttonaslink {
    background: none;
    border: none;
    position: relative;
    border-bottom: none;
    color: black;
    font-family: 'Open Sans', sans-serif;
    text-align: left;
    text-indent: 0px;
    cursor: pointer;
    margin: 0 auto;
    text-align: center;
    padding-left: 0px;
    padding-right: 0px;
    margin-top: 0px;
    margin-right: 0px;
    text-decoration: underline;
    box-shadow: none;
}

    .buttonaslink a {
        color: black;
        text-decoration: underline;
    }

        .buttonaslink a:hover {
            color: black;
            text-decoration: underline;
        }
/*buttons layout End*/
/* Form Styles*/
.formlabel {
    color: black;
    font-size: 14px;
    margin-bottom: 3px;
    margin-top: 5px;
    text-align: left;
    font-weight: 600;
    color: var(--FormLabelColor);
}

.inlineformlabel {
    color: black;
    font-size: 14px;
    text-align: left;
    font-weight: 600;
    color: var(--FormLabelColor);
}

.secondary-text {
    color: var(--secondarycolor) !important;
    font-weight: 600;
}

input[type=text] {
    padding: 3px;
    border: 1px solid #505050;
    border-radius: 5px;
    width: 100%;
    height: 35px;
    max-width: 500px;
    font-weight: 500;
}

input[type=tel] {
    padding: 3px;
    border: 1px solid #505050;
    border-radius: 5px;
    width: 100%;
    height: 35px;
    max-width: 500px;
    font-weight: 500;
}

input[type=password] {
    padding: 3px;
    border: 1px solid #505050;
    border-radius: 5px;
    width: 100%;
    height: 35px;
    max-width: 500px;
    font-weight: 500;
}

input[type=number] {
    padding: 3px;
    border: 1px solid #505050;
    border-radius: 5px;
    width: 100%;
    height: 35px;
    max-width: 500px;
    font-weight: 500;
}

.number {
    width: 85px !important;
}

textarea {
    height: 100px;
    padding: 3px;
    border: 1px solid #505050;
    border-radius: 5px;
    font-weight: 500;
    width: 100%;
}

.time {
    text-align: left;
}

    .time select {
        width: 70px !important;
    }

select {
    padding: 5px;
    border: 1px solid #505050;
    border-radius: 5px;
    width: 100%;
    height: 35px;
    font-weight: 500;
}
/*Mutli Select Drop Down START */
.check-box-section {
    display: flex;
    flex-wrap: wrap;
}

    .check-box-section input {
        width: auto;
        height: auto;
    }

    .check-box-section .anchor {
        padding: 5px;
        border: 1px solid #505050;
        border-radius: 5px;
        width: 100%;
        height: 35px;
        font-weight: 500;
    }

    .check-box-section span {
        align-items: center;
        display: flex;
        gap: 5px;
        padding-right: 5px;
    }

    .check-box-section.dropdown-check-list {
        position: relative;
    }

    .check-box-section..dropdown-check-list ul.itm {
        padding: 5px 5px 0px 5px;
        width: 100%;
    }

.dropdown-check-list .anchor:after {
    position: absolute;
    content: "";
    border-left: 2px solid black;
    border-top: 2px solid black;
    padding: 3.9px;
    right: 10px;
    top: 35%;
    -moz-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.dropdown-check-list .anchor:active:after {
    right: 8px;
    top: 21%;
}

.dropdown-check-list ul.itm {
    padding: 0;
    display: none;
    margin: 0;
    border: 1px solid #ccc;
    border-top: none;
    z-index: 9999;
    position: absolute;
    top: 42px;
    background: #fff;
    padding: 5px;
    left: 0;
    right: 0;
    width: 100%;
}

    .dropdown-check-list ul.itm li {
        list-style: none;
    }

.dropdown-check-list.visible .itm {
    display: block;
    overflow-y: scroll;
    height: 100px;
}

.form-feild {
    margin-bottom: 35px;
    position: relative;
}

    .form-feild .dropdown-check-list .form-control {
        border: 1px solid #000;
        border-radius: 5px;
        padding: 5px 20px;
        appearance: none;
        font-size: 12px;
        overflow-y: hidden;
    }
/*Mutli Select Drop Down END */
.center-table table {
    width: 100%;
}

    .center-table table tr {
        display: flex;
        justify-content: center;
    }

        .center-table table tr td {
            padding: 3px;
        }

.input-form {
    padding: 15px;
}

    .input-form table {
        width: 100%;
        padding: 15px;
    }

        .input-form table tr {
            display: flex;
            justify-content: center;
        }

            .input-form table tr td {
                max-width: 500px;
                width: 100%;
                padding: 0 5px;
                margin-bottom: 5px;
            }

    .input-form input[type=text] {
        width: 100%;
        height: 35px;
    }

    .input-form input[type=number] {
        width: 100%;
        height: 35px;
    }

    .input-form input[type=password] {
        width: 100%;
        height: 35px;
    }

    .input-form table {
        width: 100%;
    }

        .input-form table tr {
            display: flex;
            justify-content: center;
        }

            .input-form table tr td {
                max-width: 500px;
                width: 100%;
                padding: 0 5px;
            }

    .input-form input[type=text] {
        width: 100%;
        height: 35px;
    }

    .input-form input[type=date] {
        width: 100%;
        height: 35px;
    }

    .input-form input[type=datetime] {
        width: 100%;
        height: 35px;
    }

    .input-form input[type=number] {
        width: 100%;
        height: 35px;
    }

    .input-form input[type=password] {
        width: 100%;
        height: 35px;
    }

@media screen and (max-width: 560px) {
    .input-form table tr {
        flex-direction: column;
    }

    .input-form input[type="date"] {
        max-width: 100%;
    }

    .input-form input[type=text] {
        max-width: 100%;
    }
}

input[type="date"] {
    width: 100%;
    height: 35px;
    padding: 0 5px;
    border-radius: 5px;
    border: 1px solid #000;
    max-width: 125px;
}

.filter-label {
    line-height: 20px;
    margin-bottom: 3px;
    color: black;
    font-size: 14px;
    text-align: left;
    font-weight: 600;
}

.date-pickers {
    height: 37px;
    padding: 5px;
    position: relative;
    top: -7px;
    border-radius: 5px;
}

.height350 {
    height: 350px !important;
}

.shortinput {
    height: 25px !important;
}

.width50 {
    width: 50px !important;
}

.width75 {
    width: 75px !important;
}

.width100 {
    width: 100px !important;
}

.width125 {
    width: 125px !important;
}

.width150 {
    width: 150px !important;
}

.width175 {
    width: 175px !important;
}

.width200 {
    width: 200px !important;
}

.width225 {
    width: 225px !important;
}

.width250 {
    width: 250px !important;
}

.width275 {
    width: 275px !important;
}

.width300 {
    width: 300px !important;
}

.width325 {
    width: 325px !important;
}

.width350 {
    width: 350px !important;
}

.width375 {
    width: 375px !important;
}

.width400 {
    width: 400px !important;
}

.width425 {
    width: 425px !important;
}

.width450 {
    width: 450px !important;
}

.width475 {
    width: 475px !important;
}

.width500 {
    width: 500px !important;
}

.maxwidth {
    max-width: 100% !important;
}
/* Tabs */
@media (max-width: 501px) {
    /* Tabs */
    .tabbar {
        text-align: center;
        display: flex;
        flex-wrap: wrap;
    }

    .activetab {
        font-size: 14px;
        font-weight: bold;
        color: var(--ActiveTabTextColor) !important;
        display: inline-block;
        cursor: pointer;
        padding-top: 8px;
        padding-bottom: 8px;
        background: var(--ActiveTabBackGroundColor);
        border: solid 1px #666;
    }

    .inactivetab {
        font-size: 14px;
        font-weight: bold;
        color: var(--InactiveTabTextColor);
        display: inline-block;
        cursor: pointer;
        text-decoration: none;
        padding-top: 8px;
        padding-bottom: 8px;
        background: var(--InactiveTabBackGroundColor);
        border: solid 1px #666;
    }

    .fullwidth {
        width: calc((100%));
    }

    .onehalf {
        width: calc((100%)/2);
    }

    .onethird {
        width: calc((100%)/3);
    }

    .onefourth {
        width: calc((100%)/4);
    }

    .onefifth {
        width: calc((100%)/5);
    }
}

@media (min-width: 502px) {
    /* Tabs */
    .tabbar {
        text-align: left;
    }

    .activetab {
        font-size: 14px;
        font-weight: bold;
        color: var(--ActiveTabTextColor) !important;
        display: inline-block;
        cursor: pointer;
        padding: 3px 9px;
        background: var(--ActiveTabBackGroundColor);
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        margin-top: 10px;
        border-top: 1px solid var(--ActiveTabBorderColor);
        border-left: 1px solid var(--ActiveTabBorderColor);
        border-right: 1px solid var(--ActiveTabBorderColor);
        border-bottom: 1px solid var(--ActiveTabBorderColor);
        margin-top: 10px;
    }

    .inactivetab {
        font-size: 14px;
        font-weight: bold;
        color: var(--InactiveTabTextColor);
        display: inline-block;
        cursor: pointer;
        text-decoration: none;
        padding: 3px 9px;
        background: var(--InactiveTabBackGroundColor);
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        border-top: 1px solid var(--InactiveTabBorderColor);
        border-left: 1px solid var(--InactiveTabBorderColor);
        border-right: 1px solid var(--InactiveTabBorderColor);
        border-bottom: 1px solid var(--InactiveTabBorderColor);
        margin-top: 10px;
        border: solid 1px #666;
    }
}
/*Section Headers and Titles*/
.sectionheader {
    font-size: 17px;
    font-weight: bold;
    text-align: center;
    padding: 7px;
    width: 100%;
    background-color: var(--SectionHeaderBackGround);
    color: var(--SectionHeaderTextColor);
}

    .sectionheader a {
        color: white !important;
    }

.sectiontitle {
    font-weight: 600;
    font-size: 20px;
    margin-top: 5px;
    margin-bottom: 5px;
    color: var(--PageTitleColor);
}

hr {
    border-top: 1px solid white;
    margin-top: 10px;
    margin-bottom: 10px;
}

.logout {
    padding-top: 15px;
    text-align: center;
    color: white;
    font-size: 12px;
}

    .logout a {
        color: white;
        text-decoration: underline;
        font-size: 12px;
    }

.errormessage {
    padding-top: 10px;
    padding-bottom: 10px;
    color: lightcoral;
}

.validation {
    color: lightcoral;
}

.popup-background {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #606060;
    z-index: 100;
    opacity: .5;
}

.filters {
    padding: 15px;
}

    .filters .row-sec {
        align-items: end;
    }

.row-sec .button {
    margin-bottom: 15px;
}
/*currency-input section start*/
.currency-input {
    position: relative;
}

    .currency-input input {
        width: 75px !important;
    }

.currency-sign {
    position: absolute;
    left: 10px;
    top: 7px;
}

.inline-currency-sign {
    position: absolute;
    left: 10px;
    top: -2px;
}

.currency-input input {
    padding-left: 20px;
}
/*currency-input section End*/
@media screen and (max-width: 560px) {
    .user-form table tr {
        flex-direction: column;
    }

        .user-form table tr td {
            padding: 5px;
        }
}
/*margins and padding*/
.m-0 {
    margin: 0;
}

.mt-0 {
    margin-top: 0;
}

.mb-0 {
    margin-bottom: 0;
}

.mr-0 {
    margin-right: 0;
}

.ml-0 {
    margin-left: 0;
}

.margintop-5 {
    margin-top: 10px;
}

.margin-5 {
    margin: 5px;
}

.marginbottom-5 {
    margin-bottom: 5px;
}

.marginright-5 {
    margin-right: 5px;
}

.mnarginleft-5 {
    margin-left: 5px;
}

.margintop-5 {
    margin-top: 5px;
}

.mb-10 {
    margin-bottom: 5px;
}

.m-10 {
    margin: 10px;
}

.mr-10 {
    margin-right: 10px;
}

.ml-10 {
    margin-left: 10px;
}

.mt-10 {
    margin-top: 10px;
}

.mb-10 {
    margin-bottom: 10px;
}

.m-15 {
    margin: 15px;
}

.mt-15 {
    margin-top: 15px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mr-15 {
    margin-right: 15px;
}

.ml-15 {
    margin-left: 15px;
}

.m-20 {
    margin: 20px;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mr-20 {
    margin-right: 20px;
}

.ml-20 {
    margin-left: 20px;
}

.m-25 {
    margin: 25px;
}

.mt-25 {
    margin-top: 25px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mr-25 {
    margin-right: 25px;
}

.ml-25 {
    margin-left: 25px;
}

.m-30 {
    margin: 30px;
}

.mt-30 {
    margin-top: 30px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mr-30 {
    margin-right: 30px;
}

.ml-30 {
    margin-left: 30px;
}

.mb-35 {
    margin-bottom: 35px;
}

.mb-40 {
    margin-bottom: 40px;
}

.p-0 {
    padding: 0;
}

.pt-0 {
    padding-top: 0;
}

.pb-0 {
    padding-bottom: 0;
}

.pr-0 {
    padding-right: 0;
}

.pl-0 {
    padding-left: 0;
}

.paddingtop-5 {
    padding-top: 10px;
}

.padding-5 {
    padding: 5px;
}

.paddingbottom-5 {
    padding-bottom: 5px;
}

.paddingrright-5 {
    padding-right: 5px;
}

.paddingleft-5 {
    padding-left: 5px;
}

.paddingttop-5 {
    padding-top: 5px;
}

.p-10 {
    padding: 10px;
}

.pr-10 {
    padding-right: 10px;
}

.pl-10 {
    padding-left: 10px;
}

.pt-10 {
    padding-top: 10px;
}

.pb-10 {
    padding-bottom: 10px;
}

.p-15 {
    padding: 15px;
}

.pt-15 {
    padding-top: 15px;
}

.pb-15 {
    padding-bottom: 15px;
}

.pr-15 {
    padding-right: 15px;
}

.pl-15 {
    padding-left: 15px;
}

.p-20 {
    padding: 20px;
}

.pt-20 {
    padding-top: 20px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pr-20 {
    padding-right: 20px;
}

.pl-20 {
    padding-left: 20px;
}

.p-25 {
    padding: 25px;
}

.pt-25 {
    padding-top: 25px;
}

.pb-25 {
    padding-bottom: 25px;
}

.pr-25 {
    padding-right: 25px;
}

.pl-25 {
    padding-left: 25px;
}

.p-30 {
    padding: 30px;
}

.pt-30 {
    padding-top: 30px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pr-30 {
    padding-right: 30px;
}

.pl-30 {
    padding-left: 30px;
}
.zipcode input {
    width: 100px !important;
}


/*common margin End*/
/*Payment*/
.paymentform {
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: center;
}

    .paymentform .formlabel {
        margin-bottom: 0px;
        margin-left: 5px;
        font-size: 16px;
        font-weight: 400;
    }


.paymentform td {
    padding: 0px;
}

.paymentbackground {
    background-image: url("../../images/PaymentBackGround.png");
    padding: 10px;
    background-repeat: no-repeat;
    background-size: cover;
    width: 350px;
    padding-left: 75px;
    padding-bottom: 120px;
    padding-top: 40px;
}

.paymentform .formlabel {
    color: black;
    font-weight: 400;
    font-size: 16px;
}

.ccpaymentform {
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: center;
}

    .ccpaymentform .formlabel {
        margin-bottom: 0px;
        margin-left: 5px;
        font-size: 16px;
        font-weight: 400;
    }


    .ccpaymentform td {
        padding: 0px;
    }

.ccpaymentbackground {
    background-image: url("../../images/CCPaymentBackGround.png");
    padding: 10px;
    background-repeat: no-repeat;
    background-size: cover;
    width: 350px;
    padding-left: 75px;
    padding-bottom: 120px;
    padding-top: 40px;
}

.ccpaymentform .formlabel {
    color: black;
    font-weight: 400;
    font-size: 16px;
}
