
.m-head {
  background-color: #ffffff;
  /* padding: 0 5%; */
  box-shadow: 0 10px 20px rgb(0, 0, 0/5%), 0 6px 6px rgb(0, 0, 0/6%);
}

.m-head nav {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;

      background-color: #7f1431;

    margin-top: 18px;
}


.bartoggle,
#menubrop {
  display: none;
}

.NavMenu {
  flex: 10;
  list-style: none;
  position: relative;
  display: flex;
  justify-content: end;
}

.NavMenu li {
  display: inline-block;
}

.NavMenu li input {
  display: none;
}

.NavMenu li a {
  display: block;
padding: 17px 14px;
    color:#edd5dc !important;
    position: relative;
    font-weight: 500;
    padding-right: 15px;
    font-size: 15px;
    padding-bottom: 10px;
}

.NavMenu li a label {
  cursor: pointer;
  appearance: none;
  display: block;
  position: relative;
}

.NavMenu li a label::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 20px;
  display:none;
}

.NavMenu>li>a label::after {
  right: -15px;
  top: -3px;
}

.NavMenu li ul {
  position: absolute;
  /* display: flex; */
  flex-direction: column;
  background-color: #fff;
  min-width: 590px;
  /* border-bottom: 2px solid #2874f0; */
  top: 100%;
  /* box-shadow: 0 3px 5px rgb(0 0 0/20%); */
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transform: translateY(10px);
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  visibility: hidden;
  opacity: 0;
  z-index: 111;
  padding-left: 0px;
}

.NavMenu li ul li {
  position: relative;
}

.NavMenu li ul li a {
  color: #000000;
  padding: 8px 10px;
  display: block;
  border-left: 2px solid transparent;
  /* border-bottom: 1px solid rgba(0, 0, 0, 0.1); */
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  font-size: 14px;
  padding-bottom: 15px;
  padding-left: 30px;
}

.NavMenu li ul li ul {
  position: absolute;
  left: 100%;
  top: 0;
}

@media(min-width:974px) {
  .NavMenu li ul li a:hover {
    border-left: 2px solid #59a446;
    color: #59a446;
  }



  .NavMenu li:hover>ul,
  .NavMenu li ul li:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
}





@media only screen and (max-width:1233px) {
.NavMenu li a{padding-left:4px; padding-right:25px;}
}

@media only screen and (max-width:1158px) {
.NavMenu li a{padding-left:3px; padding-right:17px;}
}

@media only screen and (max-width:1113px) {
.NavMenu li a{padding-left:3px; padding-right:17px;}
.logo img{width:250px;}
.logo{margin-top:8px;}
}

@media only screen and (max-width:1068px) {
.NavMenu li a{padding-left:3px; padding-right:17px;}
.logo img{width:250px;}
.logo{margin-top:8px;}
.search{margin-left:9px;}
.cart{margin-left:9px;}
.login{width:125px;}
}

@media only screen and (max-width:1022px) {
.NavMenu li a{padding-left:3px; padding-right:13px; font-size:13px;}
}

@media only screen and (max-width:991px) {
  .NavMenu li ul{left: -35px;}
}







.rwd-table {
  /* margin: auto; */
  /* min-width: 300px; */
  max-width: 100%;
  border-collapse: collapse;
}

.rwd-table tr:first-child {
  border-top: none;
  /* background: #428bca; */
  /* color: #fff; */
}

.rwd-table tr {
  /* border-top: 1px solid #ddd; */
  /* border-bottom: 1px solid #ddd; */
  /* background-color: #f5f9fc; */
}

.rwd-table tr:nth-child(odd):not(:first-child) {
  background-color: #ebf3f9;
}

.rwd-table th {
  display: none;
}

.rwd-table td {
  display: block;
}

.rwd-table td:first-child {
  /* margin-top: .5em; */
}

.rwd-table td:last-child {
  /* margin-bottom: .5em; */
}

.rwd-table td:before {
  content: attr(data-th) ": ";
  font-weight: 500;
  width: 100%;
  display: inline-block;
  color: #000;
}

.rwd-table th,
.rwd-table td {
  text-align: left;
}

.rwd-table {
  color: #333;
  border-radius: .4em;
  overflow: hidden;
}

.rwd-table tr {
  /* border-color: #bfbfbf; */
}

.rwd-table th,
.rwd-table td {
  padding: .5em 1em;
  border-left: 1px solid #dee2e6;
}
@media screen and (max-width: 992px) {
  .rwd-table tr:nth-child(2) {
    border-top: none;
  }
}
@media screen and (min-width: 992px) {
  .rwd-table tr:hover:not(:first-child) {
    /* background-color: #d8e7f3; */
  }
  .rwd-table td:before {
    display: none;
  }
  .rwd-table th,
  .rwd-table td {
    display: table-cell;
    padding: .25em .5em;
  }
  .rwd-table th:first-child,
  .rwd-table td:first-child {
    padding-left: 0;
  }
  .rwd-table th:last-child,
  .rwd-table td:last-child {
    padding-right: 0;
  }
  .rwd-table th,
  .rwd-table td {
    padding: 1em !important;
  }
}

@media(min-width:230px) and (max-width:768px){
.tab-invoice{width:100% !important; float:left !important;}
.tab-invoice p{text-align:left !important;}    
}

@media(min-width:230px) and (max-width:767px){
.order-btn{float:right !important;}
}

@media(min-width:230px) and (max-width:991px){
.hide-tbs{display:none !important;}
.invoice-dis{float: left !important; width: 230px; margin-top:15px;  
text-align: center; border-radius: 50px !important; margin-bottom: 10px !important;}
.rwd-table td{float: left !important; width:100%;}
.tab-consi-no{padding-left:0px !important; float: left; width: 100%;}
}