@media (min-width: 1025px) {
  header {
    position: sticky;
    z-index: 100;
    top: 0px;
  }
}

header{
    background: #F8FAFB;
}

body.single,
body.archive {
    background: linear-gradient(180deg, rgb(245 247 250) 0, rgb(255 255 255) 1000px)
}

/*loading spinner form*/
.iframe-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-radius: 50%;
    border-top: 5px solid #1e90ff;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

.loading-text {
    color: #333;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/*show error form*/

.error-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.error-icon {
    font-size: 48px;
    color: #e74c3c;
    margin-bottom: 15px;
}

.error-message {
    color: #333;
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
}

.error-button {
    background: #e91e63;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
}

.error-button:hover {
    background: #d81557;
}

/*Menu*/

.elementor-widget-nav-menu a.has-submenu {
    cursor: pointer;
}