* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #fcfcfc;
    color: #1a1a1a;
    margin-top: 45px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    border: 0;
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}

.sp-sticky-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100%;
    height: 45px !important;
    background-color: #000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    z-index: 99999 !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5) !important;
    font-family: Arial, sans-serif !important;
}

.left-group,
.right-group {
    display: flex;
    align-items: center;
    height: 100%;
}

.sp-back-to-soha-new {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #007f74;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

.sp-back-to-soha-new:hover {
    background-color: #00665d;
}

.emg-icon-svg {
    fill: currentColor;
    width: 20px;
    height: 20px;
}

.sp-mag-logo-new {
    margin-left: 10px;
    display: flex;
    align-items: center;
}

.sp-mag-logo-new img {
    height: 20px;
    width: auto;
    display: block;
}

@media (min-width: 768px) {
    .sp-mag-logo-new {
        margin-left: 15px;
    }
    .sp-mag-logo-new img {
        height: 24px;
    }
}

.center-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-logo img {
    height: 26px;
    width: auto;
    display: block;
}

.mobile-emag-logo {
    display: none;
    height: 20px;
    width: auto;
    margin-right: 15px;
}

.fb-custom-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    color: white;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    opacity: 0.9;
    margin-right: 15px;
}

.fb-custom-btn:hover {
    opacity: 1;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .center-logo,
    .fb-custom-btn {
        display: none !important;
    }
    .mobile-emag-logo {
        display: block !important;
    }
}

#progressBar {
    position: fixed;
    top: 45px;
    left: 0;
    height: 3px;
    background-color: #dc2626;
    z-index: 99998;
    width: 0%;
    transition: width 0.15s ease-out;
}