.maga-manu{
    position: relative;
}
.maga-manu:hover .mega-manu{
    display: inline-block;
    opacity: 1;
}
.mega-manu{
    display: none;
    opacity: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 60px;
    left: 0;
    background: rgba(0 0 0 / 50%);
}
.mega-manu-content {
    display: inline-block;
    width: 100%;
    background: #fff;
    border-radius: 0 0 35px 35px;
    overflow: hidden;
}
.manu-tab {
    display: inline-block;
    width: 100%;
    height: 100%;
    background: #ffffffcc;
    padding: 15px;
    border-right: 1px solid;
}
.manu-tab h4 {
    font-size: 25px;
    font-weight: 600;
    color: #000;
    padding: 0px 0px 5px;
    text-transform: uppercase;
}
.nav-tabs li {
    display: block;
    width: 100%;
    color: #fff;
}
.nav-tabs li a {
    display: block;
    background: #fff;
    margin-bottom: 2px;
    padding: 8px 0px;
    font-size: 14px;
    border-top: 1px solid #ecec;
    transition: all .1s ease-in-out;
}
.nav-tabs li a.active, .nav-tabs li a:hover {
    border-left: 3px solid #000;
    padding-left: 10px;
    box-shadow: 0 2px 5px rgba(0 0 0 / 20%);
    color: #000;
}
.manu-content-box {
    display: inline-block;
    width: 100%;
    padding: 20px 0;
}
.manu-list {
    display: inline-block;
    width: 100%;
    flex-wrap: wrap;
    height: 300px;
    overflow: auto;
}
.manu-list li {
    width: 48%;
    min-height: 100px;
    border-bottom: 1px solid #ecec;
    padding: 15px 0;
    margin-right: 2%;
    display: inline-block;
    float: left;
}
.manu-list li a {
    display: flex;
    width: 100%;
    align-items: center;
    position: relative;
}
.manu-list li a img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-right: 10px;
    border: 1px solid #ecec;
    border-radius: 10px;
    padding: 5px;
}
.manu-list-info {
    display: inline-block;
    width: 100%;
}
.manu-list-info p {
    font-size: 12px;
    margin: 0;
}
.manu-list-info p strong{
    display: block;
    font-size: 12px;
    margin: 0;
    line-height: 15px;
}
.manu-list-info span {
    font-size: 10px;
    display: block;
    line-height: 12px;
}
.manu-title {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 15px;
}
.accreditation-box {
    width: 100%;
    height: 100%;
    padding: 0px 20px;
    border-left: 1px solid #ecec;
}
.accreditation-box .manu-list li {
    width: 100%;
    min-height: auto;
    border-bottom: none;
    padding: 3px 2px;
    margin: 0;
}
.accreditation-box .manu-list li a img {
    border-radius: 50px;
}
.accreditation-box h5 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.manu-btn {
    display: block;
    text-align: right;
    margin-top: 15px;
    border-top: 1px solid #ecec;
    padding-top: 20px;
}
.manu-btn a {
    display: inline-block;
    padding: 10px 26px;
    border: 1px solid #ecec;
    font-size: 15px;
    transition: all .5s ease-in-out;
}
.manu-btn a:hover {
    border-color: #00b8ff;
    color: #00b8ff;
}
.seller-tag {
    white-space: nowrap;
    position: absolute;
    display: inline-block;
    background: #ff0000;
    padding: 1px 5px;
    color: #fff;
    left: 115px;
    bottom: -10px;
    font-size: 10px;
    border-radius: 5px;
    animation-name: flash;
    animation-duration: 1.5s;
    transition: all 500ms ease;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
.seller-tag.t {
    background: #00b8ff;
}
.seller-tag.r {
    background: #094c04;
}
@keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}