@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');
body
{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Ubuntu', sans-serif;
background-color:#a7a08b;
}
:root
{
    /* --green:#405e4f; */
    --bro:#55686E;
    --green1:#8b98a7;
    --green:#55686E;
    --white:#fff;
    --grey:#f5f5f5;
    --black1:#222;
    --black2:#999;
}
body
{
    /* min-height: 100v; */
    overflow-x: hidden;
}
body::-webkit-scrollbar {
    width: 15px;               /* width of the entire scrollbar */
  }

  body::-webkit-scrollbar-track {
    background: var(--green);        /* color of the tracking area */
  }

  body::-webkit-scrollbar-thumb {
    background-color: var(--black2);    /* color of the scroll thumb */
    border-radius: 20px;       /* roundness of the scroll thumb */
    /* border: 3px solid orange; */
     /* creates padding around scroll thumb */
  }
  div::-webkit-scrollbar {
    width: 5px;               /* width of the entire scrollbar */
  }

  div::-webkit-scrollbar-track {
    background: var(--green);        /* color of the tracking area */
  }

  div::-webkit-scrollbar-thumb {
    background-color: var(--black2);    /* color of the scroll thumb */
    border-radius: 20px;       /* roundness of the scroll thumb */
    /* border: 3px solid orange; */
     /* creates padding around scroll thumb */
  }
.conatiner
{
    position: relative;
    width: 100%;
}
.navigation
{
    left: 0px;
    position: fixed;
    width: 300px;
    height: 100%;
    background: var(--green);
    border-left: 15px solid var(--green);
    transition: 0.5s;
    overflow:hiddenuser;
}
.navigation.active
{
    width:80px;
}
.navigation ul
{
    position: absolute;
    padding-left: 0px;
    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(--green);
}
.navigation ul li a .icon
{
    position: relative;
    display: block;
    min-width: 60px;
    height: 60px;
    line-height: 70px;
    text-align: center;
}
.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;
}
/*cover*/
.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*/
.main
{
    position: absolute;
    width: calc(100% - 300px);
    left: 300px;
    min-height:100vh;
    background: var(--white);
    transition: 0.5s;
}
.main.active{
    width: calc(100% - 85px);
    left: 80px;
}
.topbar
{
    width: 100%;
    height: 70px;
    display: flex;
    /* justify-content:space-between; */
    align-items: center;
    padding: 0 10px;
}
.toggle
{
    position:relative;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 2.5em;
    cursor: pointer;
}

.search
{
    position: relative;
    width: 400px;
    margin: 0 10px;
}
.search label
{
    position: relative;
    width: 100%;
}
.search label input
{
    width: 100%;
    height: 35px;
    border-radius: 40px;
    /* margin-top: 30px; */
    padding: 5px 20px;
    padding-left: 35px;
    font-size:18px ;
    outline: none;
    border: 1px solid var(--black2);
}
.search label ion-icon
{
    position: absolute;
    top: 0;
    font-size: 1.2em;
    left: 10px;
}
.user
{
    position: relative;
    margin-right: 20px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    /* pointer-events: none; */
}
.user img
{
    position: absolute;
    top: 0;
    left: 5;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cardBox
{
    position: relative;
    margin-top: 10px;
    width: 100%;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 30px;
}
.cardBox .card
{
    position: relative;
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    box-shadow: 0px 7px 25px rgba(0,0,0,0.08);
}
.cardBox .card .iconBox
{
    font-size: 3em;
    color: var(--black2);
}
.cardBox .card .numbers
{
    position: relative;
    font-weight: 500;
    font-size: 2.5em;
    color: var(--green);
}
.cardBox .card .cardname
{
    color: var(--black2);
    font-size: 1.1em;
}
.cardBox .card:hover
{
    background:var(--green);

}
.cardBox .card:hover .numbers,
.cardBox .card:hover .cardname,
.cardBox .card:hover .iconBox
{
    color: var(--white);
}
.dic
{
    position:absolute;
    transition: 0.5s;
}
.dic.active
{
    margin-left: 180px;
}
.dic1
{
    position:absolute;
    left:500px;
    transition: 0.5s;
}
.dic1.active
{
    /* left:700px */
    margin-left: 180px;
}
/*                              Order                                                  */
.table-order
{
    width: 95%;
    height: 100%;
    margin-left: 10px;
    margin-top: 30px;
    margin-right: 10px;
    border: 0.5px solid;
    /* background-color:#dbdcdd; */
    background-color:#55686E;
    border-radius:10px;
}
.ds td
{
    color: var(--white);
}
.ds tr
{
    color: var(--white);
}
.js th
{
    color: var(--white);
}
table
{
    color:var(--white)  !important;
}
.a_order
{
    background-color:  #a7a08b !important;
    border:none;color:#55686E !important;
    text-decoration: none !important;
}
.a_order:hover
{
    color: #788e94 !important;
}
.a_order:active
{
    border: none !important;
}
/*                              payments                                                  */
/*   se    */
.pay-se
{
    position: relative;
    background-color:var(--green);
    margin: 8px;
    margin-left:20px ;
    height: 150px;
    border-radius: 15px;
    top: 35px;
    width: 30%;
    transition: 1.5s;
}
.pay-se.active
{
    margin-left: 40%;
}
.pay-sec-in
{
    width: 100%;
    height: 100%;
}
.div-input
{
    position: absolute !important;
    width: 70%  !important;
    height: 30px  !important;
    left: 5px !important;
}
.input-input
{
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    padding: 0px !important;
}
.lable-input-se
{
     position: absolute  !important;
     width: 100%  !important;
     height: 100%  !important;
     top: 0px  !important;
     padding: 0px  !important;
}
/*   table    */
.pay-table
{
    top: 30px !important;
    position: relative;
}
/*                              Login                                                  */
.head-out
{
    background-color:var(--green1) !important;
    border-radius:25px ;
    padding: 0px;
}
.head-in
{
    background-color:var(--green) !important;
    border-radius:25px !important ;
    margin: 12px !important;
}
/*                              sallers                                                  */
.section_payment
{
    position: relative;
    width: 100%;
    height: 200px;
    margin: 2%;
    background-color: var(--green);
    border-radius: 20px;
}
.div_saller
{
    width: 90%;
    height: 100%;
    transition: 2s;
}
/* .div_saller.active
{
   margin-left: 14%;
} */

.certification-image
{
    position: absolute;
    width: 165px;
    height: 85%;
    top: 8%;
    right: 25%;
    border-radius: 10px;
}
.logo-image
{
    position: relative;
    width: 165px;
    height: 80%;
    left: 7%;
    top: 15px;
    border-radius: 135px
}
.seller-name
{
    position: absolute;
    height: 12%;
    width: 22%;
    top: 60px;
    left: 280px;
}
.seller-bio
{
    position: absolute;
    height: 95px;
    width: 20%;
    top: 90px;
    left: 280px;
}
.span-seller-bio
{
    font-size:larger;
    position:absolute;
    height:100%;
    width:100%;
    margin: 0px;
    color: var(--green1);
    font-family: Arial, Helvetica, sans-serif;
}
/*                                   SellerDoc                                 */
.div_sallerdoc
{
    width: 100%;
    height: 100%;
    transition: 3s;
    margin-left: 5%;
}
.section_sellercod
{
    right: 2%;
    position: relative;
    width: 90%;
    height: 200px;
    margin: 10px;
    background-color: var(--green);
    border-radius: 20px;
}
.sellerdoc-image
{
    position: relative;
    width: 165px;
    height: 165px;
    left: 2%;
    top: 17px;
    border-radius: 135px
}
.sallerdoc-bio
{
    position: absolute;
    height: 95px;
    width: 250px;
    top: 55px;
    left: 22%;
}
.sellerdoc-name
{
    position: absolute;
    height: 30px;
    width: 220px;
    top: 15px;
    left: 22%;
}
.sellerdoc-rate
{
    position: absolute;
    height: 30px;
    width: 140px;
    top: 150px;
    left: 22%;
}
.div-input-sellerdoc
{
    position: absolute;
    width: 240px;
    height: 50%;
    left: 15px;
}
.input-input-sellerdoc
{
        position: absolute;
        width: 100%;
        height: 100%;
        border: 0px;
        background-color: #e9e9e9;
        border-radius: 10px;
}
/*                               admin                                */
.admin-sec
{
    position: relative;
    background-color:var(--green);
    margin: 8px;
    margin-left:20% ;
    height: 150px;
    border-radius: 15px;
    top: 35px;
    width: 40%;
    height: 130px;
    transition: 2s;
}
.admin-sec.active
{
  margin-left: 30%;
}
.div-input-admin
{
    position: absolute !important;
    width: 70%  !important;
    height: 30px  !important;
    left: 0px !important;
}
.input-input-admin
{
    position: absolute !important;
    width: 50% !important;
    height: 100% !important;
    padding: 0px !important;
    right: 10px !important;
}
.lableadmin-input-se
{
    position: absolute !important;
    padding: 0px !important;
    right: 60% !important;
    color:#a7a08b
}

/***                                  Navbar                                                              ***/
.sidebar .navbar .navbar-nav .nav-link {
    padding: 7px 20px;
    color: var(--dark);
    font-weight: 500;
    border-left: 3px solid var(--light);
    border-radius: 0 30px 30px 0;
    outline: none;
}

.sidebar .navbar .navbar-nav .nav-link:hover,
.sidebar .navbar .navbar-nav .nav-link.active {
    color: var(--primary);
    background: #FFFFFF;
    border-color: var(--primary);
}

.sidebar .navbar .navbar-nav .nav-link i {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 40px;
}

.sidebar .navbar .navbar-nav .nav-link:hover i,
.sidebar .navbar .navbar-nav .nav-link.active i {
    background: var(--light);
}

.sidebar .navbar .dropdown-toggle::after {
    position: absolute;
    top: 15px;
    right: 15px;
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transition: .5s;
}

.sidebar .navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

.sidebar .navbar .dropdown-item {
    padding-left: 25px;
    border-radius: 0 30px 30px 0;
}

.content .navbar .navbar-nav .nav-link {
    margin-left: 25px;
    padding: 12px 0;
    color: var(--dark);
    outline: none;
}

.content .navbar .navbar-nav .nav-link:hover,
.content .navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.content .navbar .sidebar-toggler,
.content .navbar .navbar-nav .nav-link i {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 40px;
}

 .navbar .dropdown-toggle::after {
    vertical-align: middle;
    font-family: "Font Awesome 5 Free";
    transition: 0.5s;
}

 .navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

@media (max-width: 575.98px) {
    .navbar .navbar-nav .nav-link {
        margin-left: 15px;
    }
}
