:root {
    --blue: #163850;
    --orange: #FEB63F;
    --offwhite: #F2F9FF;
    --myfont: 'Roboto', sans-serif;
}

a {
    color: var(--blue);
}

    a:hover {
        color: var(--orange);
        text-decoration: none;
    }

* {
    box-sizing: border-box;
    font-family: var(--myfont);
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

body {
    counter-reset: Serial; /* Set the Serial counter to 0 */
}

tr td.counterCell:before {
    counter-increment: Serial; /* Increment the Serial counter */
    content: "" counter(Serial); /* Display the counter */
}

text:hover, .svgactive {
    font-size: 18px !important;
    fill: #dd0708;
    stroke-width: 2px;
    stroke: #dd0708;
}

header {
    padding: 5px 0;
}

.login {
    padding: 30px 100px;
}

    .login h1 {
        color: var(--blue);
        margin-bottom: 20px;
        font-size: 36px;
        font-weight: bold;
        font-family: var(--myfont);
        display: inline-block;
    }

        .login h1:after {
            content: "";
            border-bottom: 2px solid var(--blue);
            display: block;
            width: 80px;
            padding: 7px 0;
            transition: 0.7s ease-in-out;
        }

        .login h1:hover::after {
            width: 100%;
        }

.login-form h3 {
    color: var(--blue);
    text-transform: uppercase;
    font-size: 20px;
    margin-bottom: 15px;
    font-family: var(--myfont);
    font-weight: bold;
}

.login-form {
    background-color: #ffffff;
    box-shadow: 1px 1px 20px #dcd3d3;
    padding: 30px 40px;
    border-radius: 10px;
    font-family: var(--myfont);
}

    .login-form .form-control {
        border-top: 0px solid #fff;
        border-left: 0px solid #fff;
        border-right: 0px solid #fff;
        border-bottom: 2px solid #e8e4e4;
        border-radius: 0;
        margin-bottom: 30px;
        padding: 0 0 4px 0;
        font-family: var(--myfont);
    }

        .login-form .form-control:focus {
            box-shadow: none;
        }

.form-group {
    position: relative;
    margin-bottom: 0;
}

.form-control ~ .focus-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--blue);
    transition: 0.4s;
}

.form-control:focus ~ .focus-border {
    width: 100%;
    transition: 0.4s;
}

.forgetlink {
    color: var(--orange);
    display: block;
    width: 100%;
    text-align: right;
    font-family: var(--myfont);
}

    .forgetlink:hover,
    .disclaimer a:hover {
        color: var(--blue);
        text-decoration: none;
    }

.btn-custom {
    background-color: var(--blue);
    color: #ffffff !important;
    padding: 7px 60px;
    border-radius: 24px;
    text-transform: uppercase;
    margin-top: 30px;
    font-family: var(--myfont);
}

    .btn-custom:hover {
        background-color: var(--orange);
        transition: all .50s ease;
    }

.btn-cancel {
    background-color: var(--orange);
    color: #ffffff !important;
    padding: 7px 40px;
    border-radius: 24px;
    text-transform: uppercase;
    margin-top: 30px;
    font-family: var(--myfont);
}

    .btn-cancel:hover {
        background-color: var(--blue);
        transition: all .50s ease;
    }

.disclaimer {
    padding: 15px 0 0;
    font-family: var(--myfont);
    font-size: 14px;
}

    .disclaimer a {
        color: var(--orange);
        font-weight: bold;
        text-decoration: none;
    }

.custom-control-input:checked ~ .custom-control-label::before {
    border-color: var(--blue);
    background-color: var(--blue);
}

/***********Dashboard*****************/
.logo {
    display: block;
    margin: 0 auto;
    width: 100%;
}

.navbar .row {
    width: 100%;
}

.navbar li a {
    color: var(--blue);
    font-family: var(--myfont);
}

.navbar li.nav-item {
    margin: 0 5px;
}

.navbar li:first-child {
    margin-right: 25px;
}

.navbar .fa {
    color: var(--blue);
}

.cart {
    position: relative;
    cursor: pointer;
}

    .cart .fa {
        font-size: 24px;
    }

    .cart .badge {
        position: absolute;
        top: 0;
        right: 0;
        background-color: orange;
        border-radius: 50%;
        color: #fff;
    }

.dropdown-toggle::after {
    border-top-color: var(--blue);
}

.custom-nav-bg {
    background-color: var(--offwhite);
    border-bottom: 1px solid #efeef5;
    padding: 4px 0;
}

.navbar .input-group {
    border: 1px solid #abc0d2;
    border-radius: 25px;
    padding: 2px 10px;
    background-color: #e1eef9;
    color: var(--blue);
}

.navbar .input-group-text {
    background-color: transparent;
    border: none;
}

    .navbar .input-group-text .fa {
        color: #c5c8cc;
    }

.navbar .input-group .form-control {
    border: none;
    background-color: transparent;
}

.form-control:focus {
    outline: none;
}

.sidebar-wrapper {
    position: fixed;
    height: 100vh;
    max-height: 100%;
    background-color: var(--blue);
    width: 100px;
    left: 0;
    bottom: 0;
    top: 0;
    box-shadow: 0px 16px 38px -12px rgba(0,0,0,0.56), 0px 4px 25px 0px rgba(0,0,0,0.12), 0px 8px 10px -5px rgba(0,0,0,0.2);
    z-index: 1080;
    font-family: var(--myfont);
}

ul.side-menu {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.side-menu li {
    background-color: var(--blue);
    border-bottom: 1px solid #333;
    font-family: var(--myfont);
}

    .side-menu li a {
        display: block;
        text-decoration: none;
        color: var(--offwhite);
        padding: 10px;
        text-align: center;
    }

        .side-menu li a.active {
            border-left: 3px solid var(--orange);
            color: var(--orange);
        }

        .side-menu li a:hover {
            border-left: 3px solid var(--orange);
            color: var(--orange);
            transition: background 0.3s linear;
        }
    /*.side-menu li a.active .fa , 
.side-menu li a:hover .fa{
	color: var(--blue);
}
.side-menu li .fa {
    color: var(--orange);
    display: block;
    font-size: 24px;
    margin: 5px 0;
}*/
    .side-menu li svg {
        display: block;
        margin: 5px auto;
        fill: var(--offwhite);
        width: 28px;
        height: 28px;
    }

    .side-menu li a.active svg,
    .side-menu li a:hover svg {
        fill: var(--orange);
    }

.sidebar-heading {
    padding: 10px 10px;
    margin-bottom: 10px;
    font-family: var(--myfont);
}

.main-panel {
    position: relative;
    width: calc(-100px + 100%);
    float: right;
    top: 50px;
    padding: 20px 20px;
    font-family: var(--myfont);
}

.ticker {
    margin: 10px 0;
    font-family: var(--myfont);
    display: flex;
    align-items: center;
}

.main-panel .ticker h4 {
    background-color: var(--orange);
    display: inline-block;
    color: #fff;
    position: relative;
    margin: 0;
    font-family: var(--myfont);
    font-size: 16px;
    padding: 10px 20px;
}

    .main-panel .ticker h4:after {
        content: "";
        width: 0;
        height: 0;
        border-top: 20px solid transparent;
        border-left: 22px solid var(--orange);
        border-bottom: 20px solid transparent;
        position: absolute;
        top: 0;
        right: -21px;
    }

    .main-panel .ticker h4:hover {
        background-color: var(--blue);
    }

        .main-panel .ticker h4:hover:after {
            border-left: 21px solid var(--blue);
        }

marquee {
    width: 70%;
    margin: 0 35px;
    font-family: var(--myfont);
    font-size: 20px;
    color: #000000;
}

.breadcrumb {
    margin: 0;
    background-color: transparent;
    padding: 0px 0;
    font-size: 14px;
    font-family: var(--myfont);
}

.breadcrumb-item a {
    color: #abafb3;

    text-decoration: none;
    font-family: var(--myfont);
}

.breadcrumb-item .active {
    color: var(--blue);
}

.breadcrumb-item + .breadcrumb-item::before {
    font-family: "FontAwesome";
    font-weight: bold;
    content: "\f105";
}

.heading {
    color: #000000;
    font-family: var(--myfont);
    font-size: 24px;
    font-weight: bold;
}

    .heading::after {
        content: "";
        border-bottom: 3px solid #000000;
        width: 70px;
        display: block;
        padding: 3px 0px;
        margin: 0 3px;
        transition: 0.7s ease-in-out;
    }

    .heading:hover::after {
        width: 100%;
    }

.product {
    margin: 10px 0 40px 0;
}

.carousel {
    text-align: right;
}

.prev, .next {
    padding: 10px 10px;
    margin: 10px;
}

    .prev .fa, .next .fa {
        font-size: 24px;
        color: var(--blue);
    }

    .prev:hover, .next:hover {
        text-decoration: none;
    }

.carousel-item .tile {
    max-height: 300px;
    background-color: #ffffff;
    box-shadow: 0px 0px 10px #b2b9bf;
    margin: 15px 0;
    font-family: var(--myfont);
    text-align: center;
    color: var(--blue);
    overflow: auto;
    padding: 0 15px;
}

    .carousel-item .tile figure {
        display: block;
        overflow: hidden;
        width: 100%;
        height: 140px;
        margin-bottom: 15px;
    }

    .carousel-item .tile img {
        transition: transform .5s;
        max-width: 100%;
        max-height: 100%;
    }

    .carousel-item .tile a:hover img {
        transform: scale(1.1);
    }

    .carousel-item .tile h4 {
        font-size: 16px;
        color: var(--blue);
        padding: 10px 0;
        font-family: var(--myfont);
        font-weight: bold;
        display: inline-block;
        float: left;
    }

    .carousel-item .tile:hover .btn-catalog {
        background-color: var(--orange);
        color: #fff;
    }

    .carousel-item .tile .btn-catalog {
        background-color: var(--blue);
        color: #fff;
        font-size: 14px;
        border-radius: 0;
        box-shadow: 1px 1px 3px var(--blue);
        padding: 5px 7px;
        display: inline-block;
        float: right;
    }

    .carousel-item .tile a {
        text-decoration: none;
    }

.carousel-item {
    padding: 0 10px;
}
/*#kits, 
#tools, 
#bulletin{
	margin:40px 0
}*/
#kits h3,
#tools h3,
#bulletin h3 {
    font-weight: bold;
    font-size: 26px;
    font-family: var(--myfont);
    display: inline-block;
}

#kits a.viewall,
#tools a.viewall,
#bulletin a.viewall {
    float: right;
    color: var(--blue);
    margin: 10px;
}

    #kits a.viewall:hover,
    #tools a.viewall:hover,
    #bulletin a.viewall:hover {
        text-decoration: none;
        color: var(--orange);
        transition: all .50s ease;
    }

    #kits a.viewall:after,
    #tools a.viewall:after,
    #bulletin a.viewall:after {
        content: "\f178";
        padding: 0 0 0 10px;
        font-family: "FontAwesome";
    }

.kits-wrapper,
.tools-wrapper,
.bulletin-wrapper {
    background-color: var(--offwhite);
    border-radius: 10px;
    font-family: var(--myfont);
    padding: 10px 10px;
    margin: 10px 0;
    overflow: auto;
}

.kits-wrapper {
    max-height: 480px;
}
/*.bulletin-wrapper .table-responsive{
	 max-height: 530px;
}
.tools-wrapper .table-responsive{
	 max-height: 530px;
}
.kits-wrapper{
    max-height: 400px;
}*/
#kits .table,
#tools .table,
#bulletin .table {
    font-family: var(--myfont);
    font-size: 14px;
}

    #kits .table thead th,
    #tools .table thead th,
    #bulletin .table thead th {
        border: none;
    }
    /*.tools-wrapper .table tr td:nth-child(3) {
    width: 200px;
}*/
    #kits .table td a .fa,
    #tools .table td a .fa,
    #bulletin .table td a .fa {
        background-color: var(--blue);
        color: #fff;
        padding: 3px;
        border-radius: 50%;
        font-size: 10px;
        margin-left: 10px;
    }

.kits-wrapper .card-header {
    background-image: none;
    background-color: #e1eef9;
    padding: 0;
}

.kits-wrapper .btn-link-custom {
    font-weight: bold;
    font-family: var(--myfont);
    color: var(--blue);
    text-decoration: none;
    display: block;
    width: 90%;
    padding: 10px 10px;
    float: left;
}

.kits-wrapper .fa {
    float: left;
    display: inline-block;
    width: 5%;
    padding: 14px 5px;
    color: var(--blue);
}

.kits-wrapper .card-body {
    background-color: var(--offwhite);
    padding: 0;
}

.kits-wrapper .card {
    border: 0px solid #fff;
    margin: 10px 0;
}

.kits-wrapper .table {
    margin-bottom: 0;
    text-align: center;
}
/*.kits-wrapper .table tr td:nth-child(3) {
    width: 170px;
}*/
#bulletin .year-picker {
    display: inline-block;
    width: 50%;
}

.year-picker .custom-select {
    width: 100px;
    padding: 0 10px;
    font-size: 12px;
    margin: 0 10px;
}

.tools-wrapper::-webkit-scrollbar {
    width: 5px;
}

.tools-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.tools-wrapper::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

    .tools-wrapper::-webkit-scrollbar-thumb:hover {
        background: #555;
    }


/*****************/
.product-catalog-grid .tiles {
    max-height: 300px;
    background-color: #ffffff;
    box-shadow: 0px 0px 10px #b2b9bf;
    margin: 15px 0;
    font-family: var(--myfont);
    text-align: center;
    color: var(--blue);
    overflow: auto;
    padding: 0 15px;
}

    .product-catalog-grid .tiles a {
        text-decoration: none;
    }

    .product-catalog-grid .tiles figure {
        display: block;
        overflow: hidden;
        width: 100%;
        height: 140px;
        margin-bottom: 10px;
    }

    .product-catalog-grid .tiles h4 {
        font-size: 16px;
        color: var(--blue);
        padding: 10px 0;
        font-family: var(--myfont);
        font-weight: bold;
        display: inline-block;
        float: left;
    }

    .product-catalog-grid .tiles img {
        transition: transform .5s;
        max-width: 100%;
        max-height: 100%;
    }

    .product-catalog-grid .tiles a:hover img {
        transform: scale(1.1);
    }

    .product-catalog-grid .tiles:hover .btn-catalog {
        background-color: var(--orange);
        color: #fff;
    }

    .product-catalog-grid .tiles .btn-catalog {
        background-color: var(--blue);
        color: #fff;
        font-size: 14px;
        border-radius: 0;
        box-shadow: 1px 1px 3px var(--blue);
        padding: 5px 10px;
        display: inline-block;
        float: right;
    }


/******Model******/
.modal-header {
    background-color: var(--blue);
    color: #fff;
    padding: 10px 15px;
}

.close {
    color: #fff;
    opacity: 1;
    transition: transform 1s;
}

    .close:hover {
        color: #fff;
        opacity: 1;
    }

    .close:hover {
        transform: rotate(360deg);
    }

.main-mdl, .model-p .inner-mdl {
    border: 1px solid #eadfdf;
    padding: 5px;
    margin: 5px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 170px;
    transition: transform 2s;
}

.row.over {
    overflow: auto;
    height: 360px;
}

.over::-webkit-scrollbar {
    width: 5px;
}

.over::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.over::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

    .over::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

.model-p .table thead {
    background-color: var(--blue);
    color: #fff;
}

.model-p .table a {
    color: #000;
    text-decoration: underline;
    font-family: var(--my-font)
}

.btn-model {
    background-color: var(--blue);
    color: #fff;
    border-radius: 0;
    padding: 5px 10px;
    display: block;
    margin: 5px auto;
    text-align: center;
    box-shadow: 1px 1px 3px var(--blue);
    max-width: 80%;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 125px
}

.inner-mdl:hover .btn-model {
    background-color: var(--orange);
}

.model-p .inner-mdl a {
    text-decoration: none;
}

.main-mdl {
    min-height: 350px;
}

.search .form-control {
    border-top: 0px solid #fff;
    border-left: 0px solid #fff;
    border-right: 0px solid #fff;
    border-bottom: 2px solid #e8e4e4;
    border-radius: 0;
    margin-bottom: 30px;
    padding: 0 0 4px 0;
    font-family: var(--myfont);
}

.form-control:focus {
    box-shadow: none !important;
}

.search .form-control:focus {
    box-shadow: none;
}

.search {
    display: flex;
    flex-wrap: wrap;
    padding: 20px 0;
    justify-content: center;
    align-items: center;
}

    .search .btn-search {
        background-color: var(--blue);
        color: #ffffff !important;
        padding: 7px 60px;
        border-radius: 24px;
        text-transform: uppercase;
        font-family: var(--myfont);
    }

        .search .btn-search:hover {
            background-color: var(--orange);
            transition: all .50s ease;
        }

    .search .form-group {
        position: relative;
    }

    .search .form-control ~ .focus-border {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--blue);
        transition: 0.4s;
    }

    .search .form-control:focus ~ .focus-border {
        width: 100%;
        transition: 0.4s;
    }

.aggregates {
    margin: 10px 0;
    counter-reset: my-awesome-counter;
}

/*.aggregates .nav-pills .nav-link {
    background-color: var(--offwhite);
    margin: 2px;
    color: var(--blue);
	transition: all .50s ease;
	border-radius:0;
	padding:10px 15px;
	position:relative;
	counter-increment: my-awesome-counter;
	border: 1px solid #eae0e0;
}
.aggregates .nav-pills .nav-link.active::before{
	background-color: var(--offwhite);
    color: var(--blue);
	transition: all .50s ease;
}
.aggregates .nav-pills .nav-link::before {
    content: counter(my-awesome-counter);
    padding: 7px;
    background-color: var(--blue);
    color: var(--offwhite);
    margin-right: 20px;
	font-weight:bold;
	transition: all .50s ease;
}
.aggregates .nav-pills .nav-link:hover::before{
	background-color: var(--offwhite);
    color: var(--blue);
	transition: all .50s ease;
}
.aggregates .nav-pills .nav-link:hover, 
.aggregates .nav-pills .nav-link.active{
	background-color: var(--blue);
	color:#fff;
}
.aggregates .nav-pills .nav-link.active::after {
	border-top: 10px solid transparent;
    border-left: 10px solid var(--blue);
    border-bottom: 10px solid transparent;
    content: "";
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translate(0, -50%);
	transition: all .50s ease;
}
.aggregates .tab-content {
    background-color: var(--offwhite);
    box-shadow: 0px 0px 10px #b8bcbf;
    padding: 15px;
    border: 1px solid var(--blue);
}
*/
.aggregate-link {
    font-size: var(--myfont);
    background-color: var(--blue);
    color: #ffffff;
    transition: all .50s ease;
    margin: 5px;
    transition: all .50s ease;
    padding: 5px 20px;
}

    .aggregate-link:hover {
        color: var(--blue);
        text-decoration: none;
        background-color: var(--orange);
    }

    .aggregate-link .fa {
        font-size: 20px;
        color: #ffffff;
        transition: all .50s ease;
    }

    .aggregate-link:hover .fa {
        color: var(--blue);
    }

a:focus {
    outline: none;
}

.aggregates .accordion .btn-link-custom {
    font-weight: bold;
    font-family: var(--myfont);
    color: var(--blue);
    text-decoration: none;
    display: block;
    width: 95%;
    padding: 10px 10px;
    float: left;
    text-align: left;
    counter-increment: my-awesome-counter;
}

    .aggregates .accordion .btn-link-custom::before {
        content: counter(my-awesome-counter);
        padding: 5px 5px;
        background-color: var(--orange);
        color: var(--blue);
        margin-right: 10px;
        box-shadow: 3px 3px 0px var(--blue);
    }

.aggregates .accordion .card-header {
    background-image: none;
    background-color: #e1eef9;
    padding: 0;
}

.aggregates .accordion .fa {
    float: left;
    display: inline-block;
    width: 5%;
    padding: 14px 5px;
    color: var(--blue);
}

.aggregates .accordion .card-body {
    background-color: var(--offwhite);
    padding: 0 30px;
}

    .aggregates .accordion .card-body .table {
        font-size: 14px;
        font-family: var(--myfont);
        margin: 0;
    }

.plates .table td, .plates .table th {
    vertical-align: middle;
    text-align: center;
    font-size: 14px;
}

.plates .form-group {
    margin-bottom: 0;
}

.table td a:hover {
    color: var(--blue);
    text-decoration: underline;
}

.thead-custom {
    background-color: var(--blue);
    color: #fff;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #e1eef9;
}

.table-striped tbody tr:nth-of-type(even):hover {
    background-color: #e1eef9;
}

.assemble {
    /*border: 1px solid #ece4e4;*/
    margin-top: 20px 0;
}

.side-toggle {
    width: 620px;
    position: fixed;
    right: -620px;
    top: 50%;
    transform: translate(0, -50%);
    background-color: var(--offwhite);
    transition: all 0.5s ease;
    max-height: 100%;
    border: 1px solid var(--blue);
}

    .side-toggle .table td {
        font-size: 14px;
        vertical-align: middle;
    }

.toggle-btn {
    position: absolute;
    top: 50%;
    left: -96px;
    font-size: 20px;
    text-align: center;
    cursor: pointer;
    width: 150px;
    height: 42px;
    line-height: 42px;
    background-color: var(--blue);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    border-radius: 0 0 10px 10px;
    color: #fff;
    margin-top: -20px;
}

    .toggle-btn:hover {
        text-decoration: none;
        color: #fff;
    }

.open-close {
    right: 0;
}

.page-link {
    color: var(--blue);
}

    .page-link:hover {
        background-color: var(--blue);
        border: 1px solid var(--blue);
        color: #fff;
    }

.page-item.active .page-link {
    background-color: var(--blue);
    border: 1px solid var(--blue);
    color: #fff;
}

.chn-pwd {
    padding: 15px 0;
    box-sizing: border-box;
}

.change-pwd h1,
.profile h1 {
    color: var(--blue);
    margin-bottom: 30px;
    font-size: 30px;
    font-weight: bold;
    font-family: var(--myfont);
    display: inline-block;
}

    .change-pwd h1:after,
    .profile h1:after {
        content: "";
        border-bottom: 2px solid var(--blue);
        display: block;
        width: 80px;
        padding: 7px 0;
        transition: 0.7s ease-in-out;
    }

    .change-pwd h1:hover::after,
    .profile h1:hover::after {
        width: 100%;
    }

.change-pwd select.custom-select,
.profile select.custom-select {
    border-top: 0px solid #fff;
    border-left: 0px solid #fff;
    border-right: 0px solid #fff;
    border-bottom: 2px solid #e8e4e4;
    border-radius: 0;
    margin-bottom: 30px;
    padding: 0 0 4px 0;
    font-family: var(--myfont);
}

.change-pwd .form-control {
    border-top: 0px solid #fff;
    border-left: 0px solid #fff;
    border-right: 0px solid #fff;
    border-bottom: 2px solid #e8e4e4;
    border-radius: 0;
    margin-bottom: 30px;
    padding: 5px 0 4px 10px;
    font-family: var(--myfont);
}

.profile label {
    margin-bottom: 0;
    font-weight: bold;
}

.profile .form-control {
    border-top: 0px solid #fff;
    border-left: 0px solid #fff;
    border-right: 0px solid #fff;
    border-bottom: 2px solid #e8e4e4;
    border-radius: 0;
    margin-bottom: 0;
    padding: 5px 0 4px 5px;
    font-family: var(--myfont);
}

.form-control:focus,
select.custom-select:focus,
input[type="file"] {
    box-shadow: none !important;
    outline: none !important;
}

.change-pwd .form-group {
    position: relative;
}

.profile .form-group {
    position: relative;
    margin-bottom: 20px;
}

.validation-msg {
    color: #f40000;
    font-size: 14px;
    margin-bottom: 10px;
    font-family: var(--myfont);
}

.change-pwd .form-control ~ .focus-border,
.profile .form-control ~ .focus-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--blue);
    transition: 0.4s;
}

.change-pwd .form-control:focus ~ .focus-border,
.profile .form-control:focus ~ .focus-border {
    width: 100%;
    transition: 0.4s;
}

.change-pwd .btn-form,
.profile .btn-form {
    background-color: var(--blue);
    color: #ffffff !important;
    padding: 7px 60px;
    border-radius: 24px;
    text-transform: uppercase;
    font-family: var(--myfont);
}

    .change-pwd .btn-form:hover,
    .profile .btn-form:hover {
        background-color: var(--orange);
        transition: all .50s ease;
    }

figure {
    margin: 0;
}

.link-btn {
    font-size: var(--myfont);
    background-color: var(--blue);
    color: #ffffff;
    transition: all .50s ease;
    margin: 5px;
    transition: all .50s ease;
    padding: 5px 20px;
}

    .link-btn:hover {
        color: var(--blue);
        text-decoration: none;
        background-color: var(--orange);
    }

    .link-btn .fa {
        font-size: 20px;
        color: #ffffff;
        transition: all .50s ease;
    }

    .link-btn:hover .fa {
        color: var(--blue);
    }

.header-cart {
    margin: 10px 0;
    padding: 10px 0;
    font-size: 18px;
    font-family: var(--myfont);
    background-color: var(--blue);
    color: #fff;
}

.shopping-cart {
    border: 1px solid var(--blue);
    background-color: #F2F9FF;
}

.cart-inner {
    padding: 20px 10px;
}

    .cart-inner .col {
        margin: 10px;
    }

.total label {
    font-weight: bold;
}

.bg-custom-tbl {
    background-color: var(--blue);
    color: #fff;
}

.btn-cart {
    display: block;
    background-color: var(--blue);
    color: #ffffff;
    padding: 7px 40px;
    border-radius: 24px;
    text-transform: uppercase;
    margin: 20px auto;
    font-family: var(--myfont);
}

    .btn-cart:hover {
        background-color: var(--orange);
        color: #ffffff;
    }

    .btn-cart .fa {
        margin-right: 10px;
    }

.controls {
    border: 1px solid var(--blue);
    padding: 2px 10px;
    margin: 10px auto;
    background-color: #e1eef9;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    width: 600px;
    max-width: 100%;
}

.control-icon {
    font-size: 30px;
    padding: 0 30px;
}

    .control-icon:hover .fa {
        color: var(--blue);
    }

.plates .col-sm-12 {
    transition: all .50s ease-in-out;
}

.plates .resize {
    max-width: 50%;
    transition: all .50s ease-in-out;
}

.cart-wrapper {
    background-color: var(--offwhite);
    border-radius: 10px;
    font-family: var(--myfont);
    padding: 10px 10px;
    margin: 10px 0;
    overflow: auto;
    max-height: 500px;
}

    .cart-wrapper .table {
        vertical-align: middle;
        text-align: center;
        font-size: 14px;
    }

    .cart-wrapper thead th {
        border: none;
    }

    .cart-wrapper input[type=checkbox] {
        width: 16px;
        height: 16px;
    }

.btn-remove, .btn-add {
    display: block;
    background-color: var(--blue);
    color: #ffffff;
    padding: 7px 30px;
    border-radius: 24px;
    text-transform: uppercase;
    font-family: var(--myfont);
    margin: 10px;
}

    .btn-remove:hover,
    .btn-add:hover {
        background-color: var(--orange);
        color: #ffffff;
        transition: all .50s ease;
    }

.btn-submit {
    display: block;
    background-color: var(--orange);
    color: #ffffff;
    padding: 7px 30px;
    border-radius: 24px;
    text-transform: uppercase;
    font-family: var(--myfont);
    margin: 10px;
}

    .btn-submit:hover {
        background-color: var(--blue);
        color: #ffffff;
        transition: all .50s ease;
    }

.total {
    width: 100px;
}

.error {
    background-color: #ffffff;
    border: 1px solid #f1eaea;
    padding: 40px 20px;
    text-align: center;
    font-family: var(--myfont);
}

    .error h5 {
        font-weight: bold;
    }

    .error .btn-error {
        display: block;
        background-color: var(--blue);
        color: #ffffff;
        padding: 7px 30px;
        border-radius: 24px;
        text-transform: uppercase;
        font-family: var(--myfont);
        margin: 20px auto;
    }

        .error .btn-error:hover {
            background-color: var(--orange);
            color: #ffffff;
        }

.table-fixed thead,
.table-fixed tbody,
.table-fixed tr,
.table-fixed td,
.table-fixed th {
    display: block;
}

    .table-fixed tr:after {
        content: ' ';
        display: block;
        visibility: hidden;
        clear: both;
    }

.table-fixed tbody {
    max-height: 400px;
    overflow-y: auto;
}

    .table-fixed tbody td, .table-fixed thead th {
        width: 15%;
        float: left;
    }
/*********BOM KIT**********/
.plate-details.table-fixed tbody td, .bom-parts.table-fixed thead th {
    float: left;
}

    .plate-details.table-fixed tbody td:nth-child(1),
    .plate-details.table-fixed thead th:nth-child(1),
    .plate-details.table-fixed tbody td:nth-child(3),
    .plate-details.table-fixed thead th:nth-child(3),
    .plate-details.table-fixed tbody td:nth-child(5),
    .plate-details.table-fixed thead th:nth-child(5),
    .plate-details.table-fixed tbody td:nth-child(7),
    .plate-details.table-fixed thead th:nth-child(7) {
        width: 10%;
    }

    .plate-details.table-fixed tbody td:nth-child(2),
    .plate-details.table-fixed thead th:nth-child(2) {
        width: 15%;
    }

    .plate-details.table-fixed tbody td:nth-child(4),
    .plate-details.table-fixed thead th:nth-child(4) {
        width: 30%;
    }

    .plate-details.table-fixed tbody td:nth-child(6),
    .plate-details.table-fixed thead th:nth-child(6) {
        width: 15%;
    }

.plate-details.table-fixed tbody {
    max-height: 400px !important;
    overflow-y: auto;
}

.table thead th {
    border-bottom: 0px solid #fff;
}
/*********BOM KIT**********/
.bom-parts.table-fixed tbody td, .bom-parts.table-fixed thead th {
    float: left;
}

    .bom-parts.table-fixed tbody td:nth-child(1),
    .bom-parts.table-fixed thead th:nth-child(1),
    .bom-parts.table-fixed tbody td:nth-child(2),
    .bom-parts.table-fixed thead th:nth-child(2),
    .bom-parts.table-fixed tbody td:nth-child(4),
    .bom-parts.table-fixed thead th:nth-child(4) {
        width: 10%;
    }

    .bom-parts.table-fixed tbody td:nth-child(3),
    .bom-parts.table-fixed thead th:nth-child(3),
    .bom-parts.table-fixed tbody td:nth-child(5),
    .bom-parts.table-fixed thead th:nth-child(5) {
        width: 35%;
    }

.bom-parts.table-fixed tbody {
    max-height: 400px !important;
    overflow-y: auto;
}
/*******Part Varients Checkout*********/
.parts-variants.table-fixed tbody td,
.parts-variants.table-fixed thead th {
    float: left;
}

    .parts-variants.table-fixed tbody td:nth-child(1),
    .parts-variants.table-fixed thead th:nth-child(1) {
        width: 10%;
    }

    .parts-variants.table-fixed tbody td:nth-child(2),
    .parts-variants.table-fixed thead th:nth-child(2) {
        width: 60%;
    }

    .parts-variants.table-fixed tbody td:nth-child(3),
    .parts-variants.table-fixed thead th:nth-child(3) {
        width: 30%;
    }

.parts-variants.table-fixed tbody {
    max-height: 400px !important;
    overflow-y: auto;
}
/******Change History*******/
.changehistory.table-fixed tbody td,
.changehistory.table-fixed thead th {
    float: left;
}

    .changehistory.table-fixed tbody td:nth-child(1),
    .changehistory.table-fixed thead th:nth-child(1),
    .changehistory.table-fixed tbody td:nth-child(2),
    .changehistory.table-fixed thead th:nth-child(2),
    .changehistory.table-fixed tbody td:nth-child(4),
    .changehistory.table-fixed thead th:nth-child(4),
    .changehistory.table-fixed tbody td:nth-child(5),
    .changehistory.table-fixed thead th:nth-child(5),
    .changehistory.table-fixed tbody td:nth-child(6),
    .changehistory.table-fixed thead th:nth-child(6),
    .changehistory.table-fixed tbody td:nth-child(8),
    .changehistory.table-fixed thead th:nth-child(8) {
        width: 10%;
    }

    .changehistory.table-fixed tbody td:nth-child(3),
    .changehistory.table-fixed thead th:nth-child(3) {
        width: 25% !important;
        ;
    }

    .changehistory.table-fixed tbody td:nth-child(7),
    .changehistory.table-fixed thead th:nth-child(7) {
        width: 15%;
    }

.changehistory.table-fixed tbody {
    max-height: 400px !important;
    overflow-y: auto;
}

.history-popup.table-fixed tbody td,
.history-popup.table-fixed thead th {
    float: left;
}

    .history-popup.table-fixed tbody td:nth-child(1),
    .history-popup.table-fixed thead th:nth-child(1),
    .history-popup.table-fixed tbody td:nth-child(2),
    .history-popup.table-fixed thead th:nth-child(2),
    .history-popup.table-fixed tbody td:nth-child(4),
    .history-popup.table-fixed thead th:nth-child(4),
    .history-popup.table-fixed tbody td:nth-child(5),
    .history-popup.table-fixed thead th:nth-child(5),
    .history-popup.table-fixed tbody td:nth-child(6),
    .history-popup.table-fixed thead th:nth-child(6),
    .history-popup.table-fixed tbody td:nth-child(8),
    .history-popup.table-fixed thead th:nth-child(8) {
        width: 10%;
    }

    .history-popup.table-fixed tbody td:nth-child(3),
    .history-popup.table-fixed thead th:nth-child(3) {
        width: 25% !important;
        ;
    }

    .history-popup.table-fixed tbody td:nth-child(7),
    .history-popup.table-fixed thead th:nth-child(7) {
        width: 15%;
    }

.history-popup.table-fixed tbody {
    max-height: 400px !important;
    overflow-y: auto;
}

/*********Plate Varients****/

.plate-variants.table-fixed tbody td,
.plate-variants.table-fixed thead th {
    float: left;
}

    .plate-variants.table-fixed tbody td:nth-child(1),
    .plate-variants.table-fixed thead th:nth-child(1) {
        width: 20%;
    }

    .plate-variants.table-fixed tbody td:nth-child(2),
    .plate-variants.table-fixed thead th:nth-child(2) {
        width: 80%;
    }

.bom-parts.table-fixed tbody {
    max-height: 400px !important;
    overflow-y: auto;
}

.ui-dialog .ui-dialog-titlebar {
    background-color: var(--blue);
    color: #fff !important;
}

.ui-widget.ui-widget-content {
    width: 450px !important;
    z-index: 10000 !important;
}

.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
    float: none !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ui-dialog .ui-dialog-content {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    min-height: 100px !important;
}

.ui-dialog-buttonset > .ui-button {
    background-color: var(--blue);
    color: #fff;
    padding: 8px 30px;
    border-radius: 20px;
}

    .ui-dialog-buttonset > .ui-button:hover,
    .ui-dialog-buttonset > .ui-button:focus {
        background-color: var(--orange) !important;
        color: #fff;
    }

#divLoading.show {
    position: fixed;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    background: rgba(0,0,0,0.8) !important;
    display: block !important;
    z-index: 999999;
}

#loader {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    margin: 0;
    transform: translate(-50%,-50%);
}

#loader {
    border: 5px solid var(--orange);
    border-radius: 50%;
    border-top: 8px solid transparent;
    width: 60px;
    height: 60px;
    margin: 10px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.aggregate-grid {
    border: 1px solid #cac7c7;
    padding: 10px 0;
    background-color: #fff;
}

.plate-img-grid {
    background-color: var(--blue);
    color: #fff;
    padding: 7px 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 230px;
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

.aggregate-grid:hover .plate-img-grid {
    background-color: var(--orange);
    color: #fff;
}

#exampleModal .table-responsive tbody {
    max-height: 400px;
}

.side-toggle .table-responsive {
    max-height: 500px;
}

thead {
    background-color: var(--blue);
    color: #fff;
}

.btn-dialog-1,
.btn-dialog-2 {
    color: #ffffff;
    display: inline-block;
    padding: 7px 20px;
    border-radius: 0;
    text-transform: uppercase;
    font-family: var(--myfont);
}

.btn-dialog-1 {
    background-color: var(--blue);
}

.btn-dialog-2 {
    background-color: var(--orange);
}

.btn-dialog-1:hover {
    background-color: var(--orange);
    color: #ffffff;
}

.btn-dialog-2:hover {
    background-color: var(--blue);
    color: #ffffff;
}

.ui-widget-overlay {
    background: #000;
    opacity: 0.8;
    z-index: 1090 !important;
}

.tools-wrapper .table-fixed tbody td:nth-child(1),
.tools-wrapper .table-fixed thead th:nth-child(1) {
    width: 10%;
}

.tools-wrapper .table-fixed tbody td:nth-child(6),
.tools-wrapper .table-fixed thead th:nth-child(6) {
    width: 10%;
}

.tools-wrapper .table-fixed tbody td:nth-child(3),
.tools-wrapper .table-fixed thead th:nth-child(3) {
    width: 35%;
}

.bulletin-wrapper .table-fixed tbody td:nth-child(1),
.bulletin-wrapper .table-fixed thead th:nth-child(1) {
    width: 5%;
}

.bulletin-wrapper .table-fixed tbody td:nth-child(4),
.bulletin-wrapper .table-fixed thead th:nth-child(4) {
    width: 35%;
}

.shopping-cart .fa {
    float: none;
    color: #fff;
    margin-right: 15px;
    padding: 2px 0;
}

#download .fa {
    float: none;
    margin-right: 20px;
    padding: 2px 0;
}
