@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Ubuntu', sans-serif;
}

:root {
    --blue: #0a2c3c;
    --white: #fff;
    --gray1: #f5f5f5;
    --black1: #222;
    --black2: #999;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    position: relative;
    width: 100%;
}

.navigation {
    position: fixed;
    width: 300px;
    height: 100%;
    background: var(--blue);
    border-left: 10px solid var(--blue);
    transition: 0.5s;
    overflow: hidden;
}

.navigation.active {
    width: 80px
}

.navigation ul {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.navigation ul li {
    position: relative;
    width: 100%;
    list-style: none;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

.navigation ul li:hover,
.navigation ul li.hovered {
    background: var(--white);
}

.navigation ul li:nth-child(1) {
    margin-bottom: 40px;
    pointer-events: none;
}

.navigation ul li a {
    position: relative;
    display: block;
    width: 100%;
    display: flex;
    text-decoration: none;
    color: var(--white);
}

.navigation ul li:hover a,
.navigation ul li.hovered a {
    color: var(--blue);
}

.navigation ul li a .icon {
    position: relative;
    display: block;
    min-width: 60px;
    height: 60px;
    line-height: 70px;
    text-align: center;
    vertical-align: middle;
}

.navigation ul li a .icon img {
    width: 30px;
    height: 30px;
}

#img img {
    width: 250px;
    height: 200px;
}

.navigation ul li a .icon ion-icon {
    font-size: 1.75em;
}

.navigation ul li a .title {
    position: relative;
    display: block;
    padding: 0 10px;
    height: 60px;
    line-height: 60px;
    text-align: start;
    white-space: nowrap;
}

#title {
    padding-left: 75px;
}

.navigation ul li:hover a::before,
.navigation ul li.hovered a::before {
    content: '';
    position: absolute;
    right: 0;
    top: -50px;
    width: 50px;
    height: 50px;
    background: transparent;
    border-radius: 50%;
    box-shadow: 35px 35px 0 10px var(--white);
    pointer-events: none;
}

.navigation ul li:hover a::after,
.navigation ul li.hovered a::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -50px;
    width: 50px;
    height: 50px;
    background: transparent;
    border-radius: 50%;
    box-shadow: 35px -35px 0 10px var(--white);
    pointer-events: none;
}

.main {
    top: 40px;
    position: fixed;
    width: calc(100% - 300px);
    left: 300px;
    min-height: 100vh;
    background: var(--white);
    transition: 0.5s;
}

.main.active {
    width: calc(100% - 80px);
    left: 80px;
}

.topbar {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: left;
    align-items: center;
    background: #114762;
    padding: 1.5rem 1.5rem;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    position: fixed;
    left: 345px;
    top: 0;
    left: 0;
    z-index: 100;
}

#top1 {
    justify-content: left;
}

#top2 {
    padding-left: 1050px!important;
}

.button {
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 15px;
}

.button1 {
    background-color: #2fb4dd;
}


/* Green */

.form-container .form-wrap {
    background: #fff;
    width: 40%;
    height: 30%;
    padding: unset!important;
    border-radius: 15px;
}

.toggle {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5em;
    cursor: pointer;
}

.search {
    position: relative;
    width: 100%;
    margin: 0 10px;
    padding-left: 15px;
}

.search label {
    position: relative;
    width: 100%;
}

.search label input {
    width: 100%;
    height: 40px;
    border-radius: 15px;
    padding: 5px 20px;
    font-size: 18px;
    padding-left: 35px;
    outline: none;
    border: 1px solid var(--black2);
    margin-bottom: auto;
}

.search label ion-icon {
    position: absolute;
    top: 0;
    left: 10px;
    font-size: 1.2em;
}

.user {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
}

.user img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cardBox {
    position: relative;
    width: 100%;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
}

.cardBox .card {
    position: relative;
    background: var(--white);
    padding: 30px;
    box-shadow: 0 7px 25px rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.cardBox .card .numbers {
    position: relative;
    font-weight: 500;
    font-size: 2.5em;
    color: var(--blue);
}

.cardBox .card .cardName {
    color: var(--balck2);
    font-size: 1.1rem;
    margin: 5px;
}

.cardBox .card .iconBx {
    font-size: 3.5em;
    color: var(--balck2)
}

.cardBox .card:hover {
    background: var(--blue);
}

.cardBox .card:hover .numbers,
.cardBox .card:hover .cardName,
.cardBox .card:hover .iconBx {
    color: var(--white);
}

.details {
    position: relative;
    width: 100%;
    padding: 20px;
    display: grid;
    grid-template-columns: (2 1fr);
    grid-gap: 30px;
    margin-top: 10px;
}

#details {
    padding-top: 0px !important;
    margin: top 0px !important;
}

.details .recentOrder {
    position: relative;
    display: grid;
    min-height: 900px;
    background: var(--white);
    padding: 20px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    border-radius: 20px;
}

.cardHeader {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.cardHeader h2 {
    font-weight: 600;
    color: var(--blue);
}

.btn {
    position: relative;
    padding: 5px 10px;
    background: #eeeeee;
    text-decoration: none;
    color: black;
    border-radius: 6px;
}

.btns {
    position: relative;
    padding: 15px 20px;
    background: white;
    text-decoration: none;
    color: black;
    border-radius: 6px;
    border: none;
}

.button-box {
    width: 220px;
    position: relative;
    box-shadow: 0px 0px 5px 3px var(--black2);
    border-radius: 15px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.toggal-btn {
    padding: 10px 30px;
    cursor: pointer;
    background: transparent;
    border: 0;
    position: relative;
    outline: none;
}

#btn {
    top: 0;
    left: 0;
    position: absolute;
    width: 110px;
    height: 100%;
    border-radius: 15px;
    transition: .5s;
    background: linear-gradient(to right, #114762, #114762);
}

.details table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.details table thead td {
    font-weight: 600;
}

.details .recentOrder table tr {
    color: var(--black1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.01);
}

.details .recentOrder table tr:last-child {
    border-bottom: none;
}

.details .recentOrder table tbody tr:hover {
    background: var(--blue);
    color: var(--white);
}

.details .recentOrder table tr td {
    padding: 10px;
    text-align: center;
}

.details .recentOrder table tr td:last-child {
    text-align: center;
}

.details .recentOrder table tr td:nth-child(2) {
    text-align: center;
}

.details .recentOrder table tr td:nth-child(3) {
    text-align: center;
}

.recentCustomers {
    position: relative;
    display: grid;
    min-height: 500px;
    padding: 20px;
    box-shadow: 0 7px 25px rgba(0, 0, 0, 0.08);
    border-radius: 20px;
}

.recentCustomers .imgBx {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.recentCustomers .imgBx img {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recentCustomers table tr:hover {
    background: var(--blue);
    color: var(--white);
}

.recentCustomers table tr td {
    padding: 12px 10px;
}

.recentCustomers table tr td h4 {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2em;
}

.recentCustomers table tr td h4 span {
    font-size: 14px;
    color: var(--black2);
}

.recentCustomers table tr:hover {
    background: var(--blue);
    color: var(--white);
}

.recentCustomers table tr:hover td h4 span {
    font-size: 14px;
}

.user-wrapper {
    display: flex;
    align-items: center;
    margin-right: 1rem;
    justify-content: space-between;
    position: sticky;
    align-items: middle;
}

.user-wrapper span {
    padding-left: 10px;
    padding-right: 10px;
}

.search {
    grid-template-columns: (1 1fr);
}

.nowOrder {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 1.5rem 1.5rem;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    position: sticky;
    left: 345px;
    top: 0;
    z-index: 100;
}

body {
    background-color: #ccc;
}

.container {
    width: 100%;
    background-color: white;
}

table {
    width: 100%;
    border-collapse: collapse;
}

td {
    border: 1px solid gray;
}


/* try removing the "hack" below to see how the table overflows the .body */

.hack1 {
    display: table;
    table-layout: fixed;
    width: 100%;
}

.hack2 {
    display: table-cell;
    overflow-x: auto;
    width: 100%;
}

#scrollnone {
    overflow-x: unset;
    overflow-y: unset;
}

.navigation1.active {
    width: 80px
}

.navigation1 ul {
    position: absolute;
    top: 0;
    left: 0;
    width: 700px;
}

.navigation1 ul li {
    position: relative;
    width: 700px;
    list-style: none;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

.navigation1 ul li a {
    position: relative;
    display: block;
    width: 700px;
    display: flex;
    text-decoration: none;
    color: var(--white);
}

.navigation1 ul li a .title {
    position: relative;
    display: block;
    padding: 0 10px;
    height: 60px;
    line-height: 60px;
    text-align: start;
    white-space: nowrap;
}

.image-container {
    background-size: cover;
    height: 100vh;
    background: #0a2c3c;
}

.form-container {
    background-color: white;
    display: flex;
    justify-content: center;
}

.form-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    padding-bottom: 100px;
}

.form-box h4 {
    font-weight: bold;
    color: #000;
    text-align: left;
}

.form-box .form-input {
    position: relative;
}

.form-box .form-input input {
    width: 100%;
    height: 40px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    background: white;
    padding-left: 45px;
}

.form-box .form-input span {
    position: absolute;
    top: 8px;
    padding-left: 20px;
    color: #777;
}

.form-box .form-input input::placeholder {
    padding-left: 0px;
}

.form-box .form-input input:focus,
.form-box .form-input input:valid {
    border-bottom: 2px solid #48403d;
}

.form-box input[type="checkbox"]:not(:checked)+label:before {
    background: transparent;
    border: 2px solid black;
    width: 20px;
    height: 20px;
}

.form-box .custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    background-color: #48403d;
    border: 0px;
}

.forget-link,
.register-link,
.login-link {
    color: #000;
    text-align: left;
}

.forget-link:hover,
.register-link:hover,
.login-link:hover {
    color: #292525;
}

.form-box button[type="submit"] {
    border: none;
    cursor: pointer;
    width: 40%;
    height: 40px;
    border-right: 15px;
    background: #0a2c3c;
    color: white;
    font-weight: bold;
    transition: 0.5s;
    border: 1px solid #ccc;
    border-radius: 15px;
}

.form-box button[type="submit"]:hover {
    box-shadow: 0px 9px 10px -2px rgba(0, 0, 0, 0.55);
    -webkit-box-shadow: 0px 9px 10px -2px rgba(0, 0, 0, 0.55);
    -moz-box-shadow: 0px 9px 10px -2px rgba(0, 0, 0, 0.55);
    border: 1px solid #ccc;
    border-radius: 4px;
}

.button0- {
    border: none;
    color: black;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 5px;
}

.button1- {
    border: 1px solid var(--black2);
    color: var(--black2);
    padding: 10px 22px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 15px;
}

.button5 {
    background-color: white;
}


/* Green */

.button4 {
    background-color: white;
}

.navigation1 {
    position: fixed;
    width: 800px;
    height: 100%;
    background: #2fb4dd;
    transition: 0.5s;
    overflow: hidden;
    top: 0;
}

.icons {
    text-decoration: none!important;
    width: 600px;
    padding-left: none;
    padding-right: none;
}

.icones {
    padding-top: 50px;
}

#font1 {
    font-size: 40px;
}

#font2 {
    font-size: 20px;
}

#l_name {
    width: 49.5%;
    margin: 16px 6;
}

.ain {
    display: block;
    position: relative;
    margin-bottom: 15px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 100;
    color: gray;
}

#key {
    padding-top: 25px;
}

.my-header h4 {
    display: inline;
    text-align: left;
    margin-right: 150px;
}

#continer-height {
    min-height: 10vh;
    border-radius: 20px;
}

.container-fluid a img {
    width: 600px;
    height: 600px;
}

@media(max-width:1280px) {
    .icones {
        padding-top: 120px;
    }
    #font1 {
        font-size: 25px;
    }
    .my-header h4 {
        margin-right: 125px;
    }
}

@media (max-width:1024px) {
    .icones {
        padding-top: 80px;
    }
    #font1 {
        font-size: 25px;
    }
    .icons {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .my-header h4 {
        margin-right: 45px;
    }
}

@media (max-width:912px) {
    .icones {
        padding-top: 470px;
    }
    #font1 {
        font-size: 19px;
    }
    #font2 {
        font-size: 16px;
    }
    .my-header h4 {
        margin-right: 160px;
    }
}

@media (max-width:820px) {
    .icones {
        padding-top: 380px;
    }
    #font1 {
        font-size: 19px;
    }
    #font2 {
        font-size: 15px;
    }
    .navigation1 ul li a img {
        width: 300px;
        height: 110px;
    }
    .my-header h4 {
        margin-right: 110px;
    }
}

@media (max-width:768px) {
    .icones {
        padding-top: 300px;
    }
    #font1 {
        font-size: 18px;
    }
    #font2 {
        font-size: 15px;
    }
    .navigation1 ul li a img {
        width: 300px;
        height: 110px;
    }
    .my-header h4 {
        margin-right: 80px;
    }
}

@media(max-width:991px) {
    .navigation {
        left: -300px;
    }
    .navigation.active {
        width: 300px;
        left: 0;
        height: 1362px;
    }
    .main {
        width: 100%;
        left: 0;
    }
    .main.active {
        left: 300px;
    }
    .cardBox {
        grid-template-columns: repeat(2, 1fr);
    }
    .search {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width:768) {
    .details {
        grid-template-columns: repeat(1, 1fr);
    }
    .statusdelivered {
        white-space: nowrap;
    }
    .search {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width:480px) {
    .cardBox {
        grid-template-columns: repeat(1, 1fr)
    }
    .cardHeader h2 {
        font-size: 20px;
    }
    .user {
        min-width: 40px;
    }
    .navigation {
        width: 100%;
        left: 100%;
        z-index: 1000;
    }
    order .navigation.active {
        width: 100%;
        left: 0;
    }
    .toggle {
        z-index: 1001;
    }
    .main .active .toggle {
        position: fixed;
        color: #fff;
    }
    .search {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 540px) {
    .my-header h4 {
        margin-right: 176px;
    }
}

@media(max-width:393px) {
    .form-box h4 {
        font-size: 1.4rem;
    }
    .ain {
        font-size: 17px;
    }
    .my-header h4 {
        margin-right: 45px;
    }
}

@media(width:375px) {
    .my-header h4 {
        margin-right: 20px;
    }
}

@media(width:412px) {
    .my-header h4 {
        margin-right: 50px;
    }
}

@media(width:280px) {
    .form-box h4 {
        font-size: 1rem;
    }
    .ain {
        font-size: 12px;
    }
    .my-header h4 {
        margin-right: 15px;
    }
    body {
        font-size: 0.6rem;
    }
}

@media(width:360px) {
    .form-box h4 {
        font-size: 1.4rem;
    }
    .ain {
        font-size: 15px;
    }
    .my-header h4 {
        margin-right: 30px;
    }
}

@media (max-width: 412px) {
    .search label input {
        width: 100%;
        height: 30px;
        border-radius: 15px;
        padding: 5px 10px;
        font-size: 16px;
        width: 200px;
        padding-left: 35px;
    }
}

@media(width:414px) {
    .my-header h4 {
        margin-right: 50px;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Ubuntu', sans-serif;
    user-select: none;
}

.sidebar {
    position: fixed;
    width: 300px;
    height: 100%;
    background: #0a2c3c;
    left: 0;
}

.sidebar-text {
    color: white;
    font-size: 25px;
    font-weight: 600;
    line-height: 65px;
    text-align: center;
    background: #0a2c3c;
    letter-spacing: 1px;
}

nav ul {
    top: 100px;
    background: #0a2c3c;
    height: 100%;
    width: 100%;
    list-style: none;
}

nav ul li {
    line-height: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding-left: 25px;
    font-weight: 500;
    display: block;
    width: 100%;
    border-left: 3px solid transparent;
}

nav ul li a:hover {
    color: orangered;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    background: gray;
}

nav ul ul {
    position: static;
    display: none;
}

nav ul .feat-show.show {
    display: block;
}

nav ul .serv-show.show1 {
    display: block;
}

nav ul .derv-show.show2 {
    display: block;
}

nav ul ul li {
    line-height: 42px;
    border-bottom: none;
}

nav ul ul li a {
    font-size: 17px;
    color: e6e6e6;
    padding-left: 80px;
}

nav ul li a span {
    position: sticky;
    top: 60%;
    right: 25px;
}

#idle {
    padding-left: 100px;
    padding-top: 22px;
}

nav {
    position: fixed;
    width: 300px;
    height: 100%;
    background: var(--blue);
    border-left: 10px solid var(--blue);
    transition: 0.5s;
    overflow: hidden;
}

nav ul {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

nav ul li {
    position: relative;
    width: 100%;
    list-style: none;
}

nav ul li a {
    position: relative;
    display: block;
    width: 100%;
    display: flex;
    text-decoration: none;
    color: var(--white);
}

nav ul li a .icon {
    position: relative;
    display: block;
    min-width: 60px;
    height: 60px;
    line-height: 70px;
    text-align: center;
    vertical-align: middle;
}

nav ul li a .icon img {
    width: 30px;
    height: 30px;
}