.ps-footer .ps-list--social li a {
    display: inline-block;
    font-size: unset;
    color: #666;
}

.ps-footer {
    padding-top: 30px;
}

.ps-footer .ps-list--social li i {
    width: 20px;    
    text-align: center;
}

.ps-footer .ps-list--social li a {    
    border: 2px solid #368aba;
    padding: 8px;
    border-radius: 100%;
}

.custom-file-label::after {
    height: auto;
    line-height: 3em !important;
    background-color: #fcb800;
    font-weight: 700;
}
.custom-file-label {
    height: 50px;
    line-height: 3.5em !important;
    padding: 0 20px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}
.box-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: .25rem;
    z-index: 10;
}

.box-loader-blurred {
    filter: blur(3px);
    pointer-events: none; /* prevent clicks while blurred */
}

/* category menu */
.mega-menu {
    max-height: 400px;
    overflow-y: auto;
    right: 0 !important;
    width: 100% !important;
}

.mega-menu__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 20px;
}

/* Each item */
.mega-menu__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: all 0.2s ease-in-out;
}

.mega-menu__item:hover {
    color: #f7b500;
}

/* Image style */
.mega-menu__item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 8px;
    border-radius: 8px;
    background: #f9f9f9;
    padding: 6px;
    border: 1px solid #eee;
}

/* Show submenu on hover */
.menu-item-has-children:hover > .mega-menu {
    display: block;
}

@media (max-width: 768px) {
    .mega-menu__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* end category menu */