/* global css starts here */

* {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

figure {
    margin: 0;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    background:#f5f5f5;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
ol,
ul,
span,
label {
    margin: 0;
    padding: 0;
}

li {
    list-style-type: none;
}

a {
    display: inline-block;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

.container {
    max-width: 1440px;
    width: 90%;
    margin: 0 auto;
}

h3 {
    font-size: 24px;
    font-weight: bold;
    line-height: 30px;
    color: #232f3e;
    margin-bottom: 30px;
}


/* global css end here */


/* login css start */

.login-wrapper {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #232f3e;
}

.login {
    max-width: 350px;
    width: 100%;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px 30px;
    border-radius: 24px;
}

.login h2 {
    font-size: 30px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 30px;
    text-align: center;
    color: #232f3e;
}

.login .form-group input {
    display: block;
    margin-bottom: 20px;
    width: 100%;
    height: 50px;
    padding: 8px 12px;
    border: none;
    border-bottom: 1.5px solid grey;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    color: #000;
    outline: none;
}

.login .form-group input::placeholder {
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    color: #000;
}

.login .form-group {
    position: relative;
}

.login .field-icon {
    position: absolute;
    right: 0;
    bottom: 15px;
}

.login form button {
    width: 100%;
    height: 50px;
    border-radius: 50px;
    border: none;
    background-color: #232f3e;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 30px;
    cursor: pointer;
}


/* login css end */


/* header css start */

header {
    padding: 20px 0;
}

header .menu-btn {
    display: none;
}

header .logo {
    display: flex;
    gap: 10px;
    font-size: 16px;
    color: #fff;
    align-items: center;
}

header .logo .icon {
    color: #fea601;
    font-size: 35px;
}

header .logo i {
    color: #fea601;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #232f3e;
    border-radius: 24px;
    padding: 20px 30px;
    box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.21);
}

header nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

header .list {
    display: flex;
    align-items: center;
    gap: 20px;
}

header .list>li,
header .profile li {
    position: relative;
}

header .list li a {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
}

header .list .dropdown,
header .profile li .dropdown {
    position: absolute;
    left: 10px;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.41);
    background-color: #fff;
    border-radius: 4px;
    z-index: 1;
}

header .list>li:hover .dropdown,
header .profile li:hover .dropdown {
    opacity: 1;
    visibility: visible;
}

header .list .dropdown ul,
header .profile ul {
    background-color: #fff;
    border-radius: 4px;
    width: 100px;
    margin-top: 10px;
}

header .list .dropdown ul li a,
header .profile ul li a {
    color: #232f3e;
    font-size: 14px;
    padding: 10px;
    font-weight: 700;
}

header .profile img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}


/* header css end */


/* static-list css start */

.static-list {
    padding:50px 0 100px 0;
}

.static-list .container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
    max-width: 1024px;
}

.static-list .card {
    width: 100%;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.21);
    display: flex;
    align-items: center;
    gap: 20px;
}

.static-list .card .thumbnail {
    width: 60px;
    height: 60px;
    background-color: rgba(254, 166, 1, 0.5);
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: #232f3e;
}

.static-list .card .detail {
    max-width: 180px;
}

.static-list .card .detail h5 {
    font-size: 30px;
    line-height: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #232f3e;
}

.static-list .card .detail p {
    font-size: 16px;
    line-height: 21px;
    font-weight: 400;
    color: #888;
}


/* static-list css end */


/* footer css start */

footer {
    padding-bottom: 20px;
}

footer .container {
    text-align: center;
}

footer p {
    font-size: 16px;
    line-height: 21px;
    font-weight: 400;
    color: #666;
}


/* footer css end */


/* customer css start */

.customer {
    padding: 80px 0;
}

.customer .container {
    max-width: 1440px;
}

.customer-card {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.21);
    background-color: #fff;
    padding: 50px;
    border-radius: 10px;
    margin-bottom: 50px;
}

.customer .fields-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    /* max-width: 768px; */
}

.customer .fields-wrap input {
    display: block;
    margin-bottom: 20px;
    width: 100%;
    height: 40px;
    padding: 8px 12px;
    border: 1.5px solid grey;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    color: #000;
    outline: none;
}

.customer .fields-wrap input::placeholder {
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    color: #000;
}

.choose-product select {
    appearance: none;
    outline: 0;
    border: 0;
    box-shadow: none;
    flex: 1;
    padding: 0 1em;
    color: #fff;
    background-color: #232f3e;
    background-image: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
}

.choose-product select::-ms-expand {
    display: none;
}

.choose-product {
    position: relative;
    display: flex;
    max-width: 20em;
    height: 50px;
    border-radius: 0.25em;
    overflow: hidden;
    margin-bottom: 30px;
}

.choose-product::after {
    content: "\f107";
    font-family: 'FontAwesome';
    position: absolute;
    top: 0;
    right: 0;
    padding: 1em;
    transition: 0.25s all ease;
    pointer-events: none;
    color: #f39c12;
}

.customer-card .form-group h5 {
    font-size: 21px;
    font-weight: bold;
    line-height: 24px;
    color: #232f3e;
    margin-bottom: 20px;
}

.customer-card .form-group p {
    margin-bottom: 10px;
}

.aw-lights {
    height: 40px;
    width: 40px;
    border-radius: 30px;
    background: red;
    cursor:pointer;
    text-align:center;
}
.aw-lights>i{
    color: #fff;
    line-height: 40px;
    font-size: 20px;
    display:none;
}
.light-active>i{display:block;}
.trafic-lights input{
    display:none !important;
}

.light-wrap{
    display:flex;
    gap:10px;
}

.customer .submit-btn button {
    height: 50px;
    border-radius: 50px;
    border: none;
    background-color: #232f3e;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 30px auto 0;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 60px;
}


/* customer css end */


/* data table css start */

.table {
    padding: 80px 0;
}

.table .container {
    max-width: 1440px;
}

.table .table-inner {
    overflow-x: auto;
}

.table-fill {
    background: white;
    border-radius: 3px;
    border-collapse: collapse;
    margin: auto;
    width: 100%;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    animation: float 5s infinite;
    min-width: 892px;
}

th {
    color: #D5DDE5;
    background: #232f3e;
    border-bottom: 4px solid #9ea7af;
    border-right: 1px solid #343a45;
    font-size: 16px;
    font-weight: 400;
    padding: 15px 20px;
    text-align: left;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    vertical-align: middle;
}

th:first-child {
    border-top-left-radius: 3px;
}

th:last-child {
    border-top-right-radius: 3px;
    border-right: none;
}

tr {
    border-top: 1px solid #C1C3D1;
    border-bottom-: 1px solid #C1C3D1;
    color: #666B85;
    font-size: 16px;
    font-weight: normal;
    text-shadow: 0 1px 1px rgba(256, 256, 256, 0.1);
}

tr:first-child {
    border-top: none;
}

tr:last-child {
    border-bottom: none;
}

tr:nth-child(odd) td {
    background: #EBEBEB;
}

tr:last-child td:first-child {
    border-bottom-left-radius: 3px;
}

tr:last-child td:last-child {
    border-bottom-right-radius: 3px;
}

td {
    background: #FFFFFF;
    padding: 15px 20px;
    text-align: left;
    vertical-align: middle;
    font-weight: 400;
    font-size: 14px;
    border-right: 1px solid #C1C3D1;
}

td:last-child {
    border-right: 0px;
}

th.text-left {
    text-align: left;
}

th.text-center {
    text-align: center;
}

th.text-right {
    text-align: right;
}

td.text-left {
    text-align: left;
}

td.text-center {
    text-align: center;
}

td.text-right {
    text-align: right;
}


.filter-wrap {
    display: flex;
    gap: 15px;
}

.aw-field-wrap {
    width: 30%;
}

.aw-field-wrap>input, .aw-field-wrap>select {
    width: 100%;
    height: 40px;
    padding: 10px;
    border: 1px solid #ddd;
}
button.aw-filter {
    width: 100px;
    background: #fea601;
    border: none;
    color: #fff;
    font-size: 16px;
    box-shadow: 0 4px 5px #ddd;
    cursor: pointer;
}

.aw-action {
    height: 22px;
    border: none;
    box-shadow: 0 2px 3px #ddd;
    border-radius: 3px;
    color: #fff;
    cursor:pointer;
}
.aw-edit {
    background: #00b1ff;
}
.aw-del {
    background: #e50159;
}
.aw-print {
    background: #fea601;
}

.aw-yellow{
    background: #ffd800;
}
.aw-green{
    background: green;
}

button.btn-add-product {
    width: 200px;
    height: 40px;
    border-radius: 0;
    border: none;
    background: #fea601;
    font-size: 16px;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 3px 5px #ddd;
    cursor: pointer;
}
button.tr-remove {
    background: #ca0000;
    color: #fff;
    font-size: 20px;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}


.steps-wrap {
    display: flex;
    margin: 30px auto 0 auto;
    max-width: 768px;
    border: 2px solid #232f3e;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}
.aw-step {
    width: calc(100% / 3);
    text-align: center;
    cursor:pointer;
    line-height: 60px;
    font-size: 18px;
    font-weight: 600;
    color: #232f3e;
}
.step-active {
    background: #232f3e;color:#fff;}
    
.aw-view{
    background:#2db780;
}
    
    
/* data table css end */

@media (max-width:1140px) {
    header .profile li .dropdown {
        left: -40px;
        top: 50px;
    }
    .static-list .container {
        gap: 30px;
        max-width: 880px;
    }
    .static-list .card .detail {
        max-width: 150px;
    }
    .static-list .card .thumbnail {
        width: 40px;
        height: 40px;
        font-size: 21px;
    }
    .static-list .card .detail h5 {
        font-size: 14px;
        line-height: 18px;
        margin-bottom: 10px;
    }
    .static-list .card .detail p {
        font-size: 14px;
        line-height: 18px;
    }
    .static-list .card {
        width: 100%;
        min-height: 150px;
    }
}

@media (max-width:991px) {
    .static-list {
        padding: 40px 0;
    }
    .customer {
        padding: 40px 0;
    }
    .data-table {
        padding: 40px 0;
    }
    .static-list .container {
        max-width: 550px;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:640px) {
    .static-list .container {
        max-width: 280px;
        grid-template-columns: 1fr;
    }
    header nav {
        gap: 30px;
    }
    header .menu-btn {
        display: block;
    }
    header .bar1,
    header .bar2,
    header .bar3 {
        width: 35px;
        height: 5px;
        background-color: #fea601;
        margin: 6px 0;
        transition: 0.4s;
        display: block;
    }
    header .change .bar1 {
        transform: translate(0, 11px) rotate(-45deg);
    }
    header .change .bar2 {
        opacity: 0;
    }
    header .change .bar3 {
        transform: translate(0, -11px) rotate(45deg);
    }
    header .list {
        position: absolute;
        left: 0;
        top: 120px;
        right: 0;
        width: 90%;
        margin: 0 auto;
        background-color: #232f3e;
        height: 200px;
        border-radius: 24px;
        flex-direction: column;
        justify-content: center;
        transition: 0.5s;
        transform: scaleY(0);
        transform-origin: top;
        z-index:999;
    }
    header .list.open {
        transform: scaleY(1);
    }
    header .list li a {
        font-size: 21px;
    }
    .customer form {
        grid-template-columns: 1fr;
    }
}
/* invoice css start */

.invoice {
    padding: 0 20px;
    color: black;
}

.info-box {
    margin-bottom: 20px;
}

.info-box h5 {
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    color: black;
}

.info-box p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    color: black;
}

.invoice h1 {
    text-align: center;
    padding: 10px 0;
}

.invoice .logo {
    margin-bottom: 20px;
}

.invoice .logo img {
    width: 150px;
}

.invoice .info-box .info-box-detail {
    border: 1px solid black;
    padding: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.invoice .info-box .info-box-detail ul li {
    display: grid;
    grid-template-columns: 0.4fr 1fr;
    margin-bottom: 5px;
}

.invoice .services-box-inner {
    display: grid;
    grid-template-columns: 0.6fr 1.4fr 0.4fr;
    border: 1px solid black;
}

.invoice .services-box-inner h5 {
    border-bottom: 1px solid black;
    border-right: 1px solid black;
    text-align: center;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.invoice .services-box-inner .col:last-child h5 {
    border-right: none;
}

.invoice .services-box-inner .col ul li {
    border-bottom: 1px solid black;
    border-right: 1px solid black;
    height: 25px;
    display: flex;
    align-items: center;
}

.invoice .services-box-inner .col ul li:first-child {
    text-align: center;
    justify-content: center;
}

.invoice .services-box-inner .col:nth-child(2) .col-inner-wrap {
    display: grid;
    grid-template-columns: 2.1fr 2.1fr 1fr 1fr;
}

.invoice .services-box-inner .col:last-child .col-inner-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.invoice .services-box-inner .col:last-child .col-inner:last-child ul li {
    border-right: none;
}


/* invoice css end */

.aw-alert {
    margin-bottom: 20px;
    padding: 10px;
    background: #bf0000;
    border-radius: 5px;
    box-shadow: 0 3px 5px #ddd;
    color: #fff;
}

.alert-success{
     background: #00bf85 !important;
}
.alert-error{
     background: red !important;
}

