@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #EFF1F7;
}


.bg-green {
    background-color: #397A7E;
    padding: 30px 0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

#nav-menu .nav-item {
    /* text-align: center; */
    display: flex;
    margin: 0 15px;

}

#nav-menu .nav-item .nav-link {
    /* margin: 0 15px; */
    height: auto;
    font-size: 15px;
    text-align: center;
    line-height: 0;
    color: #397A7E;

}

#nav-menu .nav-item .nav-link i {
    margin-right: 6px;
}

#nav-menu .nav-item .nav-link.active {
    font-weight: 600;
    border-radius: 10px;
}

#nav-menu .nav-item .nav-link.active i {
    font-weight: 600;
    color: #397A7E;
}




.profile {
    height: 45px;
    width: 45px;
    border-radius: 100px;
}

.profile img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.navbar #profile-1 .dropdown-toggle::after {
    display: inline-block;
    margin-left: 15px;
    margin-top: 20px;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.4em solid;
    border-right: 0.4em solid transparent;
    border-bottom: 0;
    border-left: 0.4em solid transparent;
}


main {
    background-color: #EFF1F7;
    height: 100%;

}

/* .breadcrum h1 {
    font-size: 17px;
    font-weight: 400;
    padding: 20px 0;
}

.breadcrum h1 i{
    margin: 0 14px;
    color: #3F8382;
    font-weight: 600;
}    */

.breadcrumb {
    padding-top: 14px;
}

.breadcrumb a {
    text-decoration: none;
}

.breadcrumb i {
    font-weight: 600;
    color: #3F8382;
}

.stats-card {
    background-color: #fff;
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 25px 20px 20px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 6px 0 rgb(0 0 0 / 14%);
    margin-bottom: 45px;
    height: auto
}

.stats-card .card-icon {
    border-radius: 3px;
    padding: 15px;
    height: 80px;
    width: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -50px;
    background: linear-gradient(60deg, #ffa726, #fb8c00);
    box-shadow: 0 4px 20px 0 rgb(0 0 0 / 14%), 0 7px 10px -5px rgb(255 152 0 / 40%);
}

.stats-card .card-icon1 {
    border-radius: 3px;
    padding: 15px;
    height: 80px;
    width: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -50px;
    background: linear-gradient(60deg, #66bb6a, #43a047);
    box-shadow: 0 4px 20px 0 rgb(0 0 0 / 14%), 0 7px 10px -5px rgb(255 152 0 / 40%);
}

.stats-card .card-icon2 {
    border-radius: 3px;
    padding: 15px;
    height: 80px;
    width: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -50px;
    background: linear-gradient(60deg, #ef5350, #e53935);
    box-shadow: 0 4px 20px 0 rgb(0 0 0 / 14%), 0 7px 10px -5px rgb(255 152 0 / 40%);
}

.stats-card .card-icon3 {
    border-radius: 3px;
    padding: 15px;
    height: 80px;
    width: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -50px;
    background: linear-gradient(60deg, #26c6da, #00acc1);
    box-shadow: 0 4px 20px 0 rgb(0 0 0 / 14%), 0 7px 10px -5px rgb(255 152 0 / 40%);
}

.stats-card .card-icon4 {
    border-radius: 3px;
    padding: 15px;
    height: 80px;
    width: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -50px;
    background: linear-gradient(60deg, #2632da, #2831b0);
    box-shadow: 0 4px 20px 0 rgb(0 0 0 / 14%), 0 7px 10px -5px rgb(255 152 0 / 40%);
}

.stats-card .card-icon,
.card-icon1,
.card-icon2,
.card-icon3,
.card-icon4 i {
    font-size: 30px;
    color: #fff;
}

.stat-cont {
    text-align: right;
}

.stat-cont p {
    color: rgb(107, 107, 107);
    font-size: 15px;
    line-height: 1.2;
}

.stat-cont h3 {
    font-size: 30px;
    line-height: 1.1;
    font-weight: 300;
    color: rgb(36, 36, 36);
}

.table-card {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 6px 0 rgb(0 0 0 / 14%);
    padding: 0 15px;

}

.table-card-scroll {
    height: 350px;
    overflow-y: scroll;
}

.table-card-scroll::-webkit-scrollbar,
.table-scroll::-webkit-scrollbar {
    width: 5px;
}

.table-card-scroll ::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.table-card-scroll:hover::-webkit-scrollbar-thumb {
    background: rgb(214, 214, 214);
}



.table-scroll {
    height: 400px;
    overflow-y: scroll;
    padding: 0 10px;
}


.table-scroll ::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.table-scroll:hover::-webkit-scrollbar-thumb {
    background: rgb(214, 214, 214);
}



.table-card .table-card-header {
    background: linear-gradient(60deg, #66bb6a, #43a047);
    box-shadow: 0 4px 20px 0 rgb(0 0 0 / 14%), 0 7px 10px -5px rgb(76 175 80 / 40%);
    border-radius: 3px;
    margin-top: -20px;
    padding: 12px 20px 12px 20px;
}

.table-card .table-card-header h4 {
    color: #fff;
    font-size: 19px;
    line-height: 1.1;
}

.table-card .table-card-header p {
    color: #ececec;
    font-size: 15px;
    line-height: 1.3;
}

/* table td {
    font-size: 15px;
    color: rgb(54, 54, 54);
}

tbody, td, tfoot, th, thead, tr{
    padding: 15px 0 !important;
    vertical-align: middle !important;
    word-break: break-all;
} */

.sactive {
    background-color: #66bb6a;
    color: #ffffff;
    border-radius: 20px;
    padding: 2px 0px;
    font-size: 14px;
    /* text-align: left;
    font-weight: 600;
    position: relative; */
}

/* .sactive::before{
    content: "\2022";
    color: #256c28;
    font-size: 45px;
    position: absolute;
    left: 0px;
    top: -24px;
    width: 30px;
} */

.sdeactive {
    background-color: #e53935;
    color: #fff;
    border-radius: 20px;
    padding: 2px 0px;
    font-size: 13px;
    /* font-weight: 600; */
    /* position: relative; */
}

/* .sdeactive::before{
    content: "\2022";
    color: #e53935;
    font-size: 45px;
    position: absolute;
    left: 0px;
    top: -24px;
    width: 30px;
} */



.search-bar {
    width: 100%;
    height: 40px;
    border: none;
    outline: none;
    border-radius: 6px;
    font-size: 13px;
    padding: 0 12px;
    margin: 0 20px;
}

.select {
    width: 100%;
    height: 40px;
    border: none;
    outline: none;
    border-radius: 6px;
    font-size: 14px;
    padding: 0 12px;
    margin: 0 20px;
}

.input-group label{
    font-size: 16px;
    margin-bottom: 5px;
}
.input-group input{
    width: 100%;
    height: 45px;
    padding: 0 10px;
    border: 1px solid #e1e1e1;
    outline: none;
    border-radius: 5px !important;
    font-size: 14px;
}

.input-group input:focus{
   border-color: #146230;
}

.input-group select{
    width: 100%;
    height: 40px;
    padding: 0 10px;
    border: 1px solid #e1e1e1;
    outline: none;
    border-radius: 5px !important;
    font-size: 14px;
}


.cart {
    position: relative;
    margin: 0 30px;
    font-size: 23px;
    cursor: pointer;
}

.cart .cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: red;
    color: #fff;
    font-size: 11px;
    height: 25px;
    width: 25px;
    line-height: 25px;
    border-radius: 100%;
    text-align: center;
}

.category .card {
    border: 1px solid #43a047;
    margin-bottom: 20px;
    transition: .4s all;
    padding: 0;
    font-size: 15px;
}

.category .card:hover {
    transition: .4s all;
    background-color: #43a047;
    color: #fff;
}

.category a {
    text-decoration: none;
    color: #000000;
}


/* .table-responsive input[type="checkbox"]{
    height: 30px;
} */



.table-responsive {
    min-height: .01%;
    overflow-x: auto;
}

table.table-condensed.table-striped {
    border-collapse: collapse;
    width: 1200px;
    overflow-x: scroll;
    display: block;
}

.table-condensed.table-striped thead,
.table-condensed.table-striped tbody {
    display: block;
}

.table-condensed.table-striped tbody {
    overflow-y: scroll;
    overflow-x: hidden;
    height: 420px;
}

.table>thead>tr>th {
    vertical-align: bottom;
    border-bottom: 2px solid transparent;
}

.table-condensed.table-striped td,
.table-condensed.table-striped th {
    min-width: 240px;
    /* height: 25px; */
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 230px;
    vertical-align: middle;
}

.tablehead {
    background-color: #5e5e60;
    color: #fff;
}

.table-condensed>thead.tablehead>tr>th {
    padding: 15px 0;
    text-transform: uppercase;
    /* font-weight: 400;
    font-size: 14px; */
}


table td {
    font-size: 15px;
    color: rgb(54, 54, 54);
    padding: 15px 0 !important;
    vertical-align: middle;
}

/* tbody, td, tfoot, th, thead, tr{
    padding: 15px 0 !important;
    vertical-align: middle !important;
    word-break: break-all;
} */

.table-striped>tbody>tr:nth-of-type(even) {
    background-color: #e4e4e5;
    min-width: 100%;
    display: inline-block;
    border-bottom: 2px solid #fff;
}

.table-striped>tbody>tr:nth-of-type(odd) {
    background-color: #f6f6f6;
    min-width: 100%;
    display: inline-block;
    border-bottom: 2px solid #fff;
}


.pagination .active {
    background-color: #43a047;
    border-color: #43a047;
}



.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.custom-checkbox {
    display: block;
    position: relative;
    cursor: pointer;
    font-size: 16px;
    user-select: none;
}



thead .custom-checkbox .checkmark {
    position: relative;
    top: 0;
    left: 12px;
    height: 20px;
    width: 20px;
    /* background-color: #ccc; */
    border: 1px solid #3F8382;
    transition: all 0.3s;
    border-radius: 5px;
}


.custom-checkbox .checkmark {
    position: relative;
    top: 0;
    left: 20px;
    height: 20px;
    width: 20px;
    /* background-color: #ccc; */
    border: 1px solid #3F8382;
    transition: all 0.3s;
    border-radius: 5px;
}

/* When the checkbox is checked, add a blue background */
.custom-checkbox input:checked~.checkmark {
    background-color: #146230;
    animation: pop 0.5s;
    animation-direction: alternate;
}

/* Create the checkmark/indicator (hidden when not checked) */
.custom-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.custom-checkbox input:checked~.checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.custom-checkbox .checkmark:after {
    left: 0.45em;
    top: 0.25em;
    width: 0.35em;
    height: 0.7em;
    border: solid white;
    border-width: 0 0.15em 0.15em 0;
    transform: rotate(45deg);
}

@keyframes pop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}


.fa-history{
    color: #179b47;
    cursor: pointer;
}
.fa-trash-alt{
    color: #e53935;
    cursor: pointer;
}

/* add to cart */


.add-to-cart-button {
    background: #e6a247;
    border: none;
    border-radius: 4px;
    box-shadow: 0 3px 13px -2px rgba(0, 0, 0, 0.15);
    color: #ffffff;
    display: flex;
    font-family: "Ubuntu", sans-serif;
    justify-content: space-around;
    min-width: 165px;
    overflow: hidden;
    outline: none;
    padding: 10px;
    font-size: 14px;
    position: relative;
    text-transform: uppercase;
    transition: 0.4s ease;
    width: auto;
  }
  .add-to-cart-button:active {
    box-shadow: 0 0 0 0.2rem rgba(252, 186, 3, 0.45);
    transform: translateY(4px);
  }
  .add-to-cart-button:hover {
    cursor: pointer;
  }
  /* .add-to-cart-button:hover, .add-to-cart-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(252, 186, 3, 0.45);
    transform: translateY(-1px);
  } */
  .add-to-cart-button.added {
    background: #2831b0;
    /* box-shadow: 0 0 0 0.2rem rgba(11, 252, 3, 0.45); */
  }
  .add-to-cart-button.added .add-to-cart {
    display: none;
  }
  .add-to-cart-button.added .added-to-cart {
    display: block;
  }
  .add-to-cart-button.added .cart-icon {
    animation: drop 0.3s forwards;
    -webkit-animation: drop 0.3s forwards;
    -webkit-animation-delay: 0.18s;
            animation-delay: 0.18s;
  }
  .add-to-cart-button.added .box-1,
  .add-to-cart-button.added .box-2 {
    top: 18px;
  }
  .add-to-cart-button.added .tick {
    animation: grow 0.6s forwards;
    -webkit-animation: grow 0.6s forwards;
    -webkit-animation-delay: 0.7s;
            animation-delay: 0.7s;
  }
  
  .add-to-cart,
  .added-to-cart {
    margin-left: 36px;
  }
  
  .added-to-cart {
    display: none;
    position: relative;
  }
  
  .add-to-cart-box {
    height: 5px;
    position: absolute;
    top: 0;
    width: 5px;
  }
  
  .box-1,
  .box-2 {
    transition: 0.4s ease;
    top: -8px;
  }
  
  .box-1 {
    left: 23px;
    transform: rotate(45deg);
  }
  
  .box-2 {
    left: 32px;
    transform: rotate(63deg);
  }
  
  .cart-icon {
    left: 15px;
    position: absolute;
    top: 8px;
  }
  
  .tick {
    background: #146230;
    border-radius: 50%;
    position: absolute;
    left: 28px;
    transform: scale(0);
    top: 5px;
    z-index: 2;
  }
  
  @-webkit-keyframes grow {
    0% {
      -webkit-transform: scale(0);
    }
    50% {
      -webkit-transform: scale(1.2);
    }
    100% {
      -webkit-transform: scale(1);
    }
  }
  @keyframes grow {
    0% {
      transform: scale(0);
    }
    50% {
      transform: scale(1.2);
    }
    100% {
      transform: scale(1);
    }
  }
  @-webkit-keyframes drop {
    0% {
      -webkit-transform: translateY(0px);
    }
    100% {
      -webkit-transform: translateY(1px);
    }
  }
  @keyframes drop {
    0% {
      transform: translateY(0px);
    }
    100% {
      transform: translateY(1px);
    }
  }


  .product-img{
    height: 35px;
    width: 35px;
    margin: auto;
  }  
  .product-img img{
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  .modal-body address{
    font-size: 20px;
    padding: 20px;
  }







  /* login css  */


.login-sec{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

  
.login-box{
    margin: 25% 0;
    border-radius: 25px;
    background-color: #ffff;
    padding: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.093);
    text-align: center;
}



.login-box form{
    text-align: left;
    margin: top 30px; 
}

.login-box form .form-group{
    margin: 18px 0;
}

.login-box form .form-group label {
    display: block;
    font-size: 15x; 
    color: #404040;
}

.login-box form .form-group input {
    width: 100%;
    height: 50px;
    margin-top: 6px;
    padding: 0 30px 0 34px;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    font-size: 16px;
    color: #404040;
    transition: 1ms;
    outline: none;
}


.login-box form .form-group input:focus{
    border-color: #124ce7;
    /* box-shadow: 0 0 6px #bbd3ff; */
}


.login-box .form-group i {
    position: absolute;
    color: #404040;
    transform: translateX(10px) translateY(22px);
    font-size: 16px;
    width: 40px;
}

.login-box .forgot{
    cursor:pointer ;
    color: #3784ff;
    font-size: 15px;
    text-decoration: none;
    margin-top: 0px;
}

.login-box .forgot:hover {
    color: #001e81
}


.login-box .btn{  
    border-radius: 4px;
    /* height: 44px; */
    width: 100%;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    transition : all 200ms linear;
    transition: all 200ms linear;
    padding: 12px 30px;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: none;
    background-color: #509D8C;
    color: #ffffff;
    box-shadow: 0 8px 24px 0 rgba(255,235,167,.2);
    text-decoration: none;
    border-radius: 25px;
    cursor: pointer;
    margin-top: 2px;
    margin-right: auto;
    margin-bottom: 15px;
  }
  
  .login-box .btn:hover{  
    background-color:#326b5f;
    color: #ffffff;
    box-shadow: 0 8px 18px 0 rgba(16, 38, 112, 0.11);
  }
  .login-box a {
	cursor: pointer;
  transition: all 200ms linear;
}



.modal-body table{
    /* border: 1px solid #e1e1e1; */
    border-collapse: collapse;
}
.modal-body table , .modal-body td , .modal-body tr, .modal-body th{
    border-bottom: 1px solid #e1e1e1;
    border-collapse: collapse;
    padding: 15px 10px !important;
    /* box-shadow: -1px 1px 5px #0000000f; */
    margin-bottom: 10px;
}



/* counter start  */

.counter__increment, .counter__decrement {
    transition: all 0.4s ease-in-out;
  }
  
  .counter {
    position: relative;
    width: 6.5rem;
    height: 1.875rem;
    border-radius: 3px;
    text-align: center;
    overflow: hidden;
    margin: auto;
  }
  .counter__input {
    border: none;
    height: 100%;
    margin: 0 auto;
    text-align: center;
    color: #2f3640;
    font-size: 14px;
    background-color: transparent;
    border: 1px solid #57B05B;
    outline: none;
  }
  .counter__increment, .counter__decrement {
    position: absolute;
    top: 0;
    font-size: 16px;
    line-height: 30px;
    height: 30px;
    width: 30px;
    font-weight: normal;
    color: #fff;
    text-decoration: none;
    background-color: #57B05B;
  }
  .counter__increment:hover, .counter__increment:active, .counter__increment:focus, .counter__decrement:hover, .counter__decrement:active, .counter__decrement:focus {
    color: #ffffff;
    text-decoration: none;
    background-color: #57B05B;
  }
  .counter__increment {
    right: 0;
    border-left: 1px solid #2f3640;
  }
  .counter__decrement {
    left: 0;
    top: 0;
    border-right: 1px solid #2f3640;
    line-height: 1.6875rem;
  }
  

  .payment-card{
    background-color: #fff9f9;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.092);
    padding: 30px 20px 20px 20px;
    position: relative;
    border-top: 1px solid #e1e1e1;
  }
  .payment-card .payment-heading{
    position: absolute;
    top: -15px;
    width: 90%;
    left: 5%;
 
  }
  .payment-card .payment-heading h3{
    font-size: 18px;
    color: #fff;
    background: linear-gradient(60deg, #66bb6a, #43a047);
    box-shadow: 0 4px 20px 0 rgb(0 0 0 / 14%), 0 7px 10px -5px rgb(76 175 80 / 40%);
    border-radius: 3px;
    padding: 12px 20px 12px 20px;
 
  }
  .payment-card td{
    padding: 8px 0 !important;
  }
  .payment-card td h2{
    padding-top: 10px;
    font-size: 25px;
    font-weight: 400;
  }

  .proceed-btn{
    border: none;
    outline: none;
    background-color: #57B05B;
    color: #fff;
    width: 100%;
    border-radius: 5px;
    padding: 10px 0;
    transition: .4s all;
  }
  .proceed-btn:hover{
    background-color: #449148;
    transition: .4s all;
  }