/* =============================================
   Root CSS Variables with Light Theme Defaults
   ============================================= */

:root {
  /* Layout */
  --container-width: 1200px;
  --container-padding: 15px;
  --header-height: 80px;
  --footer-height: 300px;
  
  /* Layout Types */
  --layout-boxed-width: 84.433em;
  --layout-boxed-bg-color: #f5f5f5;
  
  /* Colors - Light Theme */
  --primary-color: #3a7bd5;
  --secondary-color: #00d2ff;
  --accent-color: #e74c3c;
  --text-color: #333333;
  --heading-color: #222222;
  --link-color: #3a7bd5;
  --link-hover-color: #2c5fb3;
  --background-color: #f9f9f9;
  --background-alt: #ffffff;
  --border-color: #dee2e6;
  --card-bg: #ffffff;
  --header-bg: #ffffff;
  --footer-bg: #2c3e50;
  --footer-text: #ffffff;
  --input-bg: #ffffff;
  --input-text: #333333;
  --shadow-color: rgba(0, 0, 0, 0.1);
  
  /* Color System */
  --success-color: #28a745;
  --error-color: #dc3545;
  --warning-color: #ffc107;
  --info-color: #17a2b8;
  --light-color: #f8f9fa;
  --dark-color: #343a40;
  
  /* Typography */
  --body-font-family: 'Roboto', sans-serif;
  --body-font-weight: 400;
  --body-font-size: 16px;
  --body-line-height: 1.6;
  --body-letter-spacing: normal;
  
  --heading-font-family: 'Poppins', sans-serif;
  --heading-font-weight: 700;
  --heading-line-height: 1.2;
  --heading-letter-spacing: -0.5px;
  
  --h1-font-size: 2.5rem;
  --h2-font-size: 2rem;
  --h3-font-size: 1.75rem;
  --h4-font-size: 1.5rem;
  --h5-font-size: 1.25rem;
  --h6-font-size: 1rem;
  
  --menu-font-family: 'Poppins', sans-serif;
  --menu-font-weight: 600;
  --menu-font-size: 15px;
  --menu-letter-spacing: 0.5px;
  
  /* Spacing */
  --spacing-unit: 0rem;
  --border-radius: 4px;
  --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

[data-theme="dark"] {
  --primary-color: #4a90e2;
  --secondary-color: #00c6ff;
  --text-color: #e0e0e0;
  --heading-color: #ffffff;
  --link-color: #4a90e2;
  --link-hover-color: #3a7bd5;
  --background-color: #121212;
  --background-alt: #1e1e1e;
  --border-color: #333333;
  --card-bg: #1e1e1e;
  --header-bg: #1a1a1a;
  --footer-bg: #121212;
  --footer-text: #e0e0e0;
  --input-bg: #2d2d2d;
  --input-text: #e0e0e0;
  --shadow-color: rgba(0, 0, 0, 0.3);
  --layout-boxed-bg-color: #000000;
}

/* =============================================
   Base Layout Styles
   ============================================= */

body {
  font-family: var(--body-font-family);
  font-weight: var(--body-font-weight);
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
  letter-spacing: var(--body-letter-spacing);
  color: var(--text-color);
  background-color: var(--background-color);
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Default Layout (Full Width) */
.somstudy-layout-default {
  width: 100%;
}

.somstudy-layout-default .site-main {
  width: 100%;
  max-width: 100%;
}

/* Boxed Layout */
.somstudy-layout-boxed {
  background-color: var(--layout-boxed-bg-color);
  padding: var(--spacing-unit) 0;
}

.somstudy-layout-boxed .site-container {
  width: var(--layout-boxed-width);
  max-width: 95%;
  margin: 0 auto;
  background-color: var(--background-color);
  box-shadow: var(--box-shadow);
  border-radius: var(--border-radius);
  overflow: hidden;
}

/* Container Styles */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Content Area */
.content-area {
  padding: var(--spacing-unit) 0;
}

/* Typography Elements */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font-family);
  font-weight: var(--heading-font-weight);
  line-height: var(--heading-line-height);
  letter-spacing: var(--heading-letter-spacing);
  color: var(--heading-color);
  margin-top: 0;
  margin-bottom: calc(var(--spacing-unit) * 0.5);
}

h1 { font-size: var(--h1-font-size); }
h2 { font-size: var(--h2-font-size); }
h3 { font-size: var(--h3-font-size); }
h4 { font-size: var(--h4-font-size); }
h5 { font-size: var(--h5-font-size); }
h6 { font-size: var(--h6-font-size); }

p {
  margin-top: 0;
  margin-bottom: var(--spacing-unit);
}

a {
  color: var(--link-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--link-hover-color);
  text-decoration: underline;
}

/* Menu Typography */
.main-navigation a {
  font-family: var(--menu-font-family);
  font-weight: var(--menu-font-weight);
  font-size: var(--menu-font-size);
  letter-spacing: var(--menu-letter-spacing);
}

/* Form Elements */
input,
textarea,
select {
  font-family: var(--body-font-family);
  font-size: var(--body-font-size);
  background-color: var(--input-bg);
  color: var(--input-text);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 0.5rem 1rem;
  transition: var(--transition);
}

/* Utility Classes */
.text-primary { color: var(--primary-color); }
.bg-primary { background-color: var(--primary-color); }
.border-primary { border-color: var(--primary-color); }

.text-secondary { color: var(--secondary-color); }
.bg-secondary { background-color: var(--secondary-color); }
.border-secondary { border-color: var(--secondary-color); }

.text-success { color: var(--success-color); }
.bg-success { background-color: var(--success-color); }
.border-success { border-color: var(--success-color); }

.text-error { color: var(--error-color); }
.bg-error { background-color: var(--error-color); }
.border-error { border-color: var(--error-color); }

.text-warning { color: var(--warning-color); }
.bg-warning { background-color: var(--warning-color); }
.border-warning { border-color: var(--warning-color); }

.text-info { color: var(--info-color); }
.bg-info { background-color: var(--info-color); }
.border-info { border-color: var(--info-color); }

.text-light { color: var(--light-color); }
.bg-light { background-color: var(--light-color); }
.border-light { border-color: var(--light-color); }

.text-dark { color: var(--dark-color); }
.bg-dark { background-color: var(--dark-color); }
.border-dark { border-color: var(--dark-color); }

/* Body Background Options */
body.somstudy-body-bg-default {
  background-color: var(--background-color);
}

body.somstudy-body-bg-color {
  background-color: var(--body-bg-color);
}

body.somstudy-body-bg-image {
  background-image: var(--body-bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Page Padding */
body.somstudy-page-padding-default {
  padding: var(--spacing-unit) 0;
}

body.somstudy-page-padding-custom {
  padding: var(--body-padding-top, 0) var(--body-padding-right, 0) 
           var(--body-padding-bottom, 0) var(--body-padding-left, 0);
}

/* Content Padding */
.entry-page-content {
  padding: var(--content-padding-top, 1.5rem) var(--content-padding-right, 1.5rem) 
           var(--content-padding-bottom, 1.5rem) var(--content-padding-left, 1.5rem);
}
/* =============================================
   Theme Toggle Styles
   ============================================= */

.theme-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
}

#theme-toggle-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--text-color);
  padding: 8px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  outline: none;
}

#theme-toggle-btn:hover {
  transform: scale(1.1);
}

.theme-toggle i {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.light-icon {
  display: block;
  color: var(--heading-color);
}

.dark-icon {
  display: none;
  color: var(--heading-color);
}

[data-theme="dark"] .light-icon {
  display: none;
}

[data-theme="dark"] .dark-icon {
  display: block;
}

[data-theme="dark"] img {
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

[data-theme="dark"] img:hover {
  opacity: 1;
}

[data-theme="dark"] iframe {
  filter: brightness(0.8) contrast(1.2);
}
/* Default - show light logo */
.logo-dark {
    display: none;
}

[data-theme="dark"] .logo-light {
    display: none;
}

[data-theme="dark"] .logo-dark {
    display: inline-block;
}
/* =============================================
   Desktop Header
   ============================================= */

/* Default: Show mobile, hide desktop */
.desktop-header {
    display: none;
}

.mobile-header {
    display: block;
}

/* Desktop Breakpoint (1024px+) */
@media (min-width: 1024px) {
    .desktop-header {
        display: block;
    }
    .mobile-header {
        display: none !important;
    }
}
/* Header Base Styles */
#mastheader {
    position: relative;
    width: 100%;
    z-index: 100;
    transition: all 0.3s ease;
    background-color: var(--background-alt);
}

/* Full Width Header */
.desktop-header-full {
    padding: 0;
}

/* Custom Width Header */
.desktop-header-custom {
    padding: 0 20px;
}

/* Header Inner */
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 0;
}

/* Sticky Header */
#mastheader.active {
    position: fixed;
    left: 0;
    right: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Non-sticky header behavior */
#mastheader:not(.active) {
    left: 0;
    right: 0;
}

/* Logo Styles */
.site-branding {
    flex: 0 0 auto;
}

.header-logo img {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}
.site-title-wrapper {
    margin-left: 15px;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.site-title a {
    color: var(--heading-color);
    text-decoration: none;
}

.site-description {
    font-size: 0.875rem;
    color: var(--light-text);
    margin: 0;
}

/* Navigation Styles */
.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

#primary-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

#primary-menu > li {
    position: relative;
    margin: 0 12px;
}

#primary-menu > li > a {
    display: block;
    padding: 10px 0;
    color: var(--heading-color);
    font-weight: 500;
    text-decoration: none;
    position: relative;
    font-family: var(--menu-font-family);
    font-size: var(--menu-font-size);
}

#primary-menu > li > a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width var(--transition);
}

#primary-menu > li:hover > a:after,
#primary-menu > li.current-menu-item > a:after {
    width: 100%;
}

/* Dropdown Menu Styles */
#primary-menu ul {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    min-width: 200px;
    background-color: var(--background-alt);
    box-shadow: var(--box-shadow);
    border-radius: 14px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    z-index: 100;
    padding: 10px 0;
    margin: 0;
    list-style: none;
    border: 1px solid var(--border-color);
}

#primary-menu li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#primary-menu ul li a {
    display: block;
    padding: 8px 20px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.2s ease;
}

#primary-menu ul li a:hover {
    color: var(--accent-color);
    padding-left: 25px;
}

/* Submenu arrow styles */
.has-submenu > a {
    position: relative;
    padding-right: 20px !important;
}

.submenu-toggle {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    margin-left: 5px;
    transition: transform var(--transition);
    color: var(--text-color);
}

.has-submenu:hover .submenu-toggle {
    transform: translateY(-50%) rotate(180deg);
}

/* Header Actions Styles */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 0 0 auto;
}

/* Search Styles */
.header-search {
    position: relative;
}

.search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-color);
    font-size: 1.4rem;
    padding: 5px;
    transition: color var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-toggle:hover {
    color: var(--primary-color);
}

.search-form-wrapper {
    position: absolute;
    top: 140%;
    right: -100%;
    width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    z-index: 99;
}

.search-form-wrapper.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Search Form Styles */
.somstudy-search-form {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}

.somstudy-search-form .search-icon {
    position: absolute;
    left: 15px;
    color: var(--light-text);
    z-index: 1;
}
.somstudy-search-form .search-field {
    flex: 1;
    padding: 20px 38px 20px 36px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
  transition: all var(--transition);
    background-color: var(--background-color);
    color: var(--text-color);
    height: 30px;
}

.somstudy-search-form .search-field:focus {
    outline: none;
    border-color: #800080;
    background-color: var(--background-color);
    box-shadow: 0 0 0 2px rgba(128, 0, 128, 0.1);
}

.somstudy-search-form .search-submit {
     position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-color);
    right: 6px;
    display: flex;
    align-items: center;
}

.somstudy-search-form .search-submit input[type="submit"] {
	background: none;
    border: none;
    border-radius: 30px;
    padding: 8px 15px;
    cursor: pointer;
    opacity: 0;
    width: 0;
    overflow: hidden;
}
/* Disable clear 'x' icon in Chrome, Safari */
.search-field::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}

/* Remove autofill background */
.search-field:-webkit-autofill {
  box-shadow: 0 0 0px 1000px var(--background-color) inset;
  -webkit-text-fill-color: var(--text-color);
}

.somstudy-search-form .search-submit:hover i {
    transform: scale(1.1);
}

.search-form {
    display: flex;
    align-items: center;
}

.somstudy-search-form .search-submit i {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    font-size: 1.8rem;
    transition: all var(--transition);
}
/* Account Styles */
.header-account {
    position: relative;
}

.account-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-color);
    font-size: 1.4rem;
    padding: 5px;
    transition: color var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.account-toggle:hover {
    color: var(--primary-color);
}

.account-popup {
    position: absolute;
    top: 100%;
    right: 0;
    width: 320px;
    background-color: var(--background-alt);
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    z-index: 100;
    padding: 20px;
    border: 1px solid var(--border-color);
}

.account-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.popup-header h3 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--heading-color);
}

.popup-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--light-text);
    transition: color var(--transition);
}

.popup-close:hover {
    color: var(--accent-color);
}

/* Button Styles */
.header-button .button {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition);
    border: 2px solid var(--primary-color);
}

.header-button .button:hover {
    background-color: transparent;
    color: var(--primary-color);
}

/* Login Form Styles */
.login-form .form-group {
    margin-bottom: 15px;
}

.login-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--text-color);
}

.login-form input {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: border-color var(--transition);
    background-color: var(--input-bg);
    color: var(--input-text);
}

.login-form input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.login-button {
    width: 100%;
    padding: 12px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: background-color var(--transition);
}

.login-button:hover {
    background-color: var(--primary-color-dark);
}

.form-links {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 0.875rem;
}

.form-links a {
    color: var(--light-text);
    text-decoration: none;
    transition: color var(--transition);
}

.form-links a:hover {
    color: var(--primary-color);
}
/*--------------------------------------------------------------
# Mobile Header
--------------------------------------------------------------*/
/* Mobile Header Base Styles */
.mobile-header {
    position: relative;
    width: 100%;
    background-color: var(--header-bg);
    box-shadow: var(--box-shadow);
    z-index: 1000;
    transition: all var(--transition);
    display: block !important; /* Ensure header is always visible */
}

.sticky-mobile-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
}

.mobile-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--container-padding);
    height: 60px;
    position: relative;
}

/* Logo Position Styles */
.mobile-logo-left .mobile-header-inner {
    justify-content: flex-start;
}
.mobile-logo-center .mobile-header-inner {
    justify-content: space-between;
}
.mobile-logo-right .mobile-header-inner {
    justify-content: flex-end;
}

.mobile-logo-left .mobile-logo {
    order: 1;
    margin-right: auto;
}
.mobile-logo-center .mobile-logo {
    order: 2;
    flex: 0 1 auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.mobile-logo-right .mobile-logo {
    order: 3;
    margin-left: auto;
}

.mobile-logo-left .mobile-menu-toggle {
    order: 0;
}
.mobile-logo-center .mobile-menu-toggle {
    order: 1;
}
.mobile-logo-right .mobile-menu-toggle {
    order: 0;
}

.mobile-logo-left .mobile-header-right {
    order: 2;
    margin-left: auto;
}
.mobile-logo-center .mobile-header-right {
    order: 3;
}
.mobile-logo-right .mobile-header-right {
    order: 1;
    margin-right: auto;
}

.mobile-logo {
    text-align: center;
}

.mobile-logo img {
    height: 30px;
    width: auto;
    max-width: 150px;
}

.mobile-header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Menu Toggle Button Styles */
.mobile-menu-toggle {
    background: none;
    border: none;
    padding: 0;
    margin-right: 10px;
    cursor: pointer;
}

.mobile-menu-toggle i {
    font-size: 28px;
    color: var(--text-color);
    transition: color var(--transition);
}

.mobile-menu-toggle:hover i {
    color: var(--primary-color);
}

.mobile-search-toggle, 
.mobile-cart,
.mobile-account {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

/* Icon Styles */
.mobile-search-toggle i,
.mobile-cart i,
.mobile-account i {
    font-size: 22px;
    color: var(--text-color);
    transition: color var(--transition);
}

.mobile-search-toggle:hover i,
.mobile-cart:hover i,
.mobile-account:hover i {
    color: var(--primary-color);
}

.mobile-cart {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Change menu icon when dropdown is active */
.mobile-menu-toggle.active i.wp-icon-menu {
    display: none;
}

.mobile-menu-toggle.active i.wp-icon-x {
    display: inline-block;
}

.mobile-menu-toggle i.wp-icon-x {
    display: none;
}

/* Mobile Sidebar Styles */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--background-alt);
    z-index: 1002;
    transition: all var(--transition);
    overflow-y: auto;
    box-shadow: var(--box-shadow);
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.mobile-sidebar.active {
    left: 0;
}

.mobile-sidebar-header {
    display: flex;
    justify-content: flex-end;
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
}

.mobile-sidebar-close {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.mobile-sidebar-close i {
    font-size: 24px;
    color: var(--text-color);
    transition: color var(--transition);
}

.mobile-sidebar-close:hover i {
    color: var(--primary-color);
}

/* Mobile Dropdown Menu Styles */
.mobile-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--background-alt);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
    z-index: 1001;
    box-shadow: var(--box-shadow);
    border-top: 1px solid var(--border-color);
}

.mobile-dropdown.active {
    max-height: 70vh;
    overflow-y: auto;
}
/* Active/Hover States for Mobile Navigation */
#mobile-navigation li.current-menu-item > a,
#mobile-navigation li.current-menu-parent > a,
#mobile-navigation li.current-menu-ancestor > a {
    color: red;
    font-weight: 800;
    position: relative;
}

/* Optional: Add an indicator for active items */
#mobile-navigation li.current-menu-item > a::before,
#mobile-navigation li.current-menu-parent > a::before,
#mobile-navigation li.current-menu-ancestor > a::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--primary-color);
}

/* Sub-menu active items */
#mobile-navigation .sub-menu li.current-menu-item > a {
    padding-left: 22px; /* Compensate for the indicator */
}

/* Hover effect for better interaction */
#mobile-navigation li a:hover {
    color: var(--primary-color);
    background-color: rgba(var(--primary-color-rgb), 0.05);
}


#mobile-navigation li.menu-item-has-children.active > a::after {
    transform: translateY(-50%) rotate(180deg);
    color: var(--primary-color);
}
mobile-navigation,
#mobile-navigation ul,
#mobile-navigation li,
#mobile-navigation a {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
}

/* Mobile Navigation Base Styles */
#mobile-navigation {
    padding: 0; /* Remove all padding */
    margin: 0; /* Remove all margins */
    width: 100%;
}


#mobile-navigation li {
    position: relative;
    border-bottom: 0.5px solid var(--border-color);
}

#mobile-navigation li a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: var(--text-color);
    text-decoration: none;
    transition: all var(--transition);
}

#mobile-navigation li a:hover {
    color: var(--primary-color);
   /* background-color: var(--background-color); */
}

#mobile-navigation li.current-menu-item > a {
    color: red;
    font-weight: 500;
}

#mobile-navigation li.menu-item-has-children > a {
    position: relative;
    padding-right: 35px;
}

#mobile-navigation li.menu-item-has-children > a::after {
    content: '\25BE';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    transition: transform var(--transition);
    color: var(--text-color);
}

#mobile-navigation li.menu-item-has-children.active > a::after {
    transform: translateY(-50%) rotate(180deg);
}

#mobile-navigation .sub-menu {
   display: none;
   padding-top: 5px;
   /* background-color: var(--background-color); */
   padding-left: 0; /* Remove default padding */
   margin-left: 0; /* Remove default margin */
   list-style: none; /* Remove list markers */
   width: 100%; /* Full width */
}

#mobile-navigation .sub-menu.active {
   display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2-column grid */
    gap: 5px; /* Space between items */
}

#mobile-navigation .sub-menu li a {
    padding-left: 25px;
    font-size:var(--menu-font-size);
}

/* Search Dropdown Styles */
.mobile-search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--background-alt);
    box-shadow: var(--box-shadow);
    z-index: 1001;
    display: none;
    border-top: 1px solid var(--border-color);
}

.mobile-search-dropdown.active {
    display: block;
}
#mobile-menu .submenu-toggle {
    display: none;
}
/* Overlay */
/* Mobile Sidebar Styles */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--background-alt);
    z-index: 1002;
    transition: all 0.3s ease;
    overflow-y: auto;
    box-shadow: var(--box-shadow);
    display: block; /* Always in DOM */
    visibility: hidden; /* Start hidden */
    opacity: 0; /* Start transparent */
}

.mobile-sidebar.active {
    left: 0;
    visibility: visible;
    opacity: 1;
}

/* Overlay Styles */
.mobile-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-sidebar-overlay.active {
    display: block;
    opacity: 1;
}

/* Toggle Button States */
.mobile-menu-toggle .wp-icon-menu {
    display: block;
}

.mobile-menu-toggle .wp-icon-x {
    display: none;
}

.mobile-menu-toggle.active .wp-icon-menu {
    display: none;
}

.mobile-menu-toggle.active .wp-icon-x {
    display: block;
}

.mobile-search-dropdown .somstudy-search-form .search-field {
    font-size: 16px;
}

.mobile-search-dropdown .somstudy-search-form .search-submit i {
    font-size: 30px;
    margin-left: 5px;
}

@media (min-width: 993px) {
.mobile-header {
display: none !important;
 }
}
@media (max-width: 992px) {
#mastheader {
   display: none !important;
 }
 }
.header-shortcode-container,
.desktop-header {
    display: block;
}

.mobile-header-shortcode-container,
.mobile-header {
    display: none;
}

@media (max-width: 991px) {
    .header-shortcode-container,
    .desktop-header {
        display: none !important;
    }
    
    .mobile-header-shortcode-container,
    .mobile-header {
        display: block;
    }
}
/*--------------------------------------------------------------
# footer
--------------------------------------------------------------*/
/* Footer Base Styles */
	@media (max-width: 767px) {
    .mobile-footer-spacer {
        display: none; /* Hidden by default */
    }
    
    body.footer-visible .mobile-footer-spacer {
        display: block; /* Only show when footer is visible */
    }
}
.site-footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
padding-left: 20px;
    padding-right: 20px;
  overflow: hidden;
 position: relative;
    z-index: 0;
    display: block;
}
.entry-footer {
  background-color: var(--background-color);
  color: var(--footer-text);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
/* Widget Area Styles */
.footer-widgets {
    padding: 30px 0 30px;
}
.widget-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-color);
}
.footer-widgets-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-widget {
    flex: 1;
    min-width: 200px;
    padding: 15px;
}

.footer-widget:first-child {
    padding-left: 0;
}

.footer-widget:last-child {
    padding-right: 0;
}

/* Widget Title Styles */
.footer-widget .widget-title {
  color: var(--footer-text);
  font-size: 1.25rem;
  margin-bottom: 25px;
  margin-top: -15px;
  padding-bottom: 15px;
  position: relative;
}

.footer-widget .widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #00d2ff;
}

/* Widget Content Styles */
.footer-widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-widget li {
    margin-bottom: 12px;
}

.footer-widget a {
    color: #b3b3b3;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-widget a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-widget p {
    color: #b3b3b3;
    margin-bottom: 20px;
}

/* Copyright Styles */
.footer-copyright {
  background-color: var(--footer-bg);
  color: var(--footer-text);
    padding: 25px 0;
	    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright-text {
    color: var(--text-color-dark);
    font-size: 1.035rem;
}

.copyright-text a {
    color:  var(--link-color-dark);
    text-decoration: none;
}

.copyright-text a:hover {
    text-decoration: underline;
}

/* Layout Variations */
.footer-layout-1-column .footer-widget {
    width: 100%;
}

.footer-layout-2-column .footer-widget {
    width: calc(50% - 15px);
}

.footer-layout-3-column .footer-widget {
    width: calc(33.333% - 20px);
}

.footer-layout-4-column .footer-widget {
    width: calc(25% - 22.5px);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .footer-widget {
        width: calc(50% - 15px) !important;
    }
    
    .copyright-inner {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .footer-widget {
        width: 100% !important;
        padding: 0 0 30px !important;
    }
    
    .footer-widget:first-child {
       flex-basis: 100%;
    width: 100%;
    }
    
    .footer-widgets {
        padding: 40px 0 20px;
    }
}

.cookie-notice {
     position: fixed;
    z-index: 9999;
    top: auto;
    bottom: 10px;
	background-color: var(--primary-color);
  color: var(--white);
	border-radius: 12px;
    left: 20px;
    width: 400px
}

.cookie-notice-container {
     position: relative;
    display: flex;
    overflow: hidden;
    padding: 8px 15px;
    align-items: center;
    flex-flow: row nowrap;
    margin-right: auto;
    margin-left: auto;
    pointer-events: auto;
    border-radius: 12px;
}

.cookie-notice-text {
    margin-right: 10px;
    flex: 1;
    min-width: 250px;
}

.cookie-policy-link {
    color: var(--white);
    text-decoration: underline;
    margin-left: 5px;
}

.cookie-accept-button {
    background-color: var(--secondary-color);
  color: var(--white);
  border: none;
  padding: 8px 15px;
  margin-left: 15px;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
    border: none;
    padding: 8px 20px;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
}
.cookie-accept-button:hover {
  background-color: var(--accent-color);
}

@media (max-width: 600px) {
.cookie-notice {
     position: fixed;
     z-index: 9999;
     top: auto;
     bottom: 10px;
     background-color: var(--primary-color);
     color: var(--white);
     border-radius: 12px;
     left: 3px;
     width: 350px;
     height: 125px;
}
    .cookie-notice-container {
     position: relative;
    display: flex;
    overflow: hidden;
    padding: 8px 15px;
    align-items: center;
    flex-flow: row nowrap;
    margin-right: auto;
    margin-left: auto;
    pointer-events: auto;
}

.cookie-notice-text {
    margin-right: 10px;
    flex: 1;
    min-width: 200px;
}

.cookie-policy-link {
    color: var(--white);
    text-decoration: underline;
    margin-left: 5px;
}

.cookie-accept-button {
    background-color: var(--secondary-color);
  color: var(--white);
  border: none;
  padding: 8px 15px;
  margin-left: 15px;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
    border: none;
    padding: 8px 20px;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
}
.cookie-accept-button:hover {
  background-color: var(--accent-color);
}
}
/* Base Social Icons CSS */
.social-icons-wrapper {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.social-icons-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Icon Styles */
.social-icons-wrapper.style-minimal .social-icon a {
    background: transparent;
    width: auto;
    height: auto;
}

.social-icons-wrapper.style-rounded .social-icon a {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-color: rgba(0,0,0,0.1);
}

.social-icons-wrapper.style-square .social-icon a {
    border-radius: 4px;
    width: 40px;
    height: 40px;
    background-color: rgba(0,0,0,0.1);
}

/* Color Schemes */
.social-icons-wrapper.color-brand .social-icon a {
    color: inherit;
}

.social-icons-wrapper.color-brand .social-icon.facebook a:hover { color: #3b5998; }
.social-icons-wrapper.color-brand .social-icon.twitter a:hover { color: #1da1f2; }
.social-icons-wrapper.color-brand .social-icon.instagram a:hover { color: #e1306c; }
.social-icons-wrapper.color-brand .social-icon.linkedin a:hover { color: #0077b5; }
.social-icons-wrapper.color-brand .social-icon.youtube a:hover { color: #ff0000; }
.social-icons-wrapper.color-brand .social-icon.pinterest a:hover { color: #bd081c; }
.social-icons-wrapper.color-brand .social-icon.tiktok a:hover { color: #010101; }
.social-icons-wrapper.color-brand .social-icon.whatsapp a:hover { color: #25d366; }
.social-icons-wrapper.color-brand .social-icon.telegram a:hover { color: #0088cc; }
.social-icons-wrapper.color-brand .social-icon.vimeo a:hover { color: #1ab7ea; }
.social-icons-wrapper.color-brand .social-icon.reddit a:hover { color: #ff4500; }
.social-icons-wrapper.color-brand .social-icon.discord a:hover { color: #7289da; }

.social-icons-wrapper.color-inherit .social-icon a {
    color: inherit;
}

/* =============================================
   404 Page Strict Width Control
   ============================================= */
.page404-wrap {
    display: flex;
    align-items: center;
    background-color: var(--background-color);
    justify-content: center;
    min-height: calc(100vh - 200px);
    padding: 40px 20px;
    text-align: center;
    width: 100%;
    max-width: 100vw; /* Strict viewport limitation */
    overflow: hidden; /* Prevent any potential overflow */
    box-sizing: border-box;
}

.notfound {
    max-width: 100%; /* Changed from 600px to 100% */
    width: calc(100% - 40px); /* Accounts for padding */
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Strict containment for all child elements */
.notfound > * {
    max-width: 100%;
    overflow: hidden;
}

.error-image-404 {
    margin-bottom: 20px;
    max-width: 100%;
}

.error-image img {
    max-width: 100%; /* Changed from 200px to 100% */
    height: auto;
    margin: 0 auto;
    display: block;
}

.notfound-404 {
    position: relative;
    margin-bottom: 10px;
    max-width: 100%;
}

.notfound-404 h1 {
    font-size: clamp(80px, 20vw, 150px); /* Responsive font size */
    font-weight: 900;
    line-height: 1;
    margin: 0;
    color: var(--text-color);
    word-break: break-all; /* Prevent number overflow */
}

.error-title-404 {
    font-size: clamp(24px, 5vw, 32px); /* Responsive font size */
    margin-bottom: 20px;
    color: var(--heading-color);
    padding: 0 10px; /* Ensure text doesn't touch edges */
}

.error-description-404 {
    font-size: clamp(16px, 4vw, 18px); /* Responsive font size */
    color: var(--text-color);
    margin-bottom: 30px;
    padding: 0 10px; /* Ensure text doesn't touch edges */
}

.home-button-404 {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
}
/* Hover state */
a.home-button-404:hover {
    color: #fff;
  transform: translateY(-2px);
}
/* =============================================
   Mobile-Specific Overrides
   ============================================= */
@media (max-width: 767px) {
    .page404-wrap {
        padding: 40px 15px;
        min-height: calc(100vh - var(--header-height) - var(--footer-height));
    }
    
    .notfound {
        width: calc(100% - 30px);
        padding: 0 15px;
    }
    
    .notfound-404 h1 {
        font-size: clamp(60px, 25vw, 100px);
    }
    
    .home-button {
        width: 100%;
        max-width: 300px;
    }
}

/* =============================================
   Strict Overflow Prevention
   ============================================= */
#page404 * {
    box-sizing: border-box;
    max-width: 100%;
}

#page404 {
    overflow-x: hidden;
    position: relative;
}

/* =============================================
   Page Main Structure
   ============================================= */
.site-main * {
    box-sizing: border-box;
    max-width: 100%;
}

.site-main {
    overflow-x: hidden;
    position: relative;
}


/*--------------------------------------------------------------
# Icons
--------------------------------------------------------------*/
@font-face {
    font-family: "wp-icons";
    src: url("../icon-fonts/icons.ttf") format("truetype"), 
         url("../icon-fonts/icons.woff") format("woff"), 
         url("../icon-fonts/icons.svg#icons") format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

[class^="wp-icon-"],
[class*=" wp-icon-"] {
    font-family: "wp-icons" !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.wp-icon-search:before {
    content: "\e911";
}


.wp-icon-new-window:before {
	content: "\e932";
}

.wp-icon-not-found:before {
	content: "\e930";
}

.wp-icon-location-fill:before {
	content: "\e931";
}

.wp-icon-location:before {
	content: "\e92f";
}

.wp-icon-linkedIn:before {
	content: "\e92e";
}

.wp-icon-facebook:before {
	content: "\e91d";
}

.wp-icon-instagram:before {
	content: "\e91e";
}

.wp-icon-link:before {
	content: "\e920";
}

.wp-icon-pinterest:before {
	content: "\e921";
}

.wp-icon-snapchat:before {
	content: "\e923";
}

.wp-icon-tiktok:before {
	content: "\e924";
}

.wp-icon-tumblr:before {
	content: "\e925";
}

.wp-icon-vimeo:before {
	content: "\e926";
}

.wp-icon-youtube .path1:before {
	content: "\e928";
	color: rgb(68, 68, 68);
}

.wp-icon-youtube .path2:before {
	content: "\e929";
	margin-left: -1em;
	color: rgb(255, 255, 255);
}

.wp-icon-comment-o:before {
	content: "\f0e5";
}

.wp-icon-comments-o:before {
	content: "\f0e6";
}

.wp-icon-mail-reply:before {
	content: "\f112";
}

.wp-icon-reply1:before {
	content: "\f112";
}

.wp-icon-menu1:before {
	content: "\e91f";
}

.wp-icon-filter:before {
	content: "\e915";
}

.wp-icon-arrow-down:before {
	content: "\e914";
}

.wp-icon-arrow-short-left:before {
	content: "\e916";
}

.wp-icon-arrow-short-right:before {
	content: "\e919";
}

.wp-icon-alert:before {
	content: "\e901";
}

.wp-icon-cart:before {
	content: "\e902";
}

.wp-icon-dark-mode:before {
	content: "\e903";
}

.wp-icon-download:before {
	content: "\e905";
}

.wp-icon-info:before {
	content: "\e907";
}

.wp-icon-light-mode:before {
	content: "\e908";
}

.wp-icon-menu:before {
	content: "\e909";
}

.wp-icon-reference:before {
	content: "\e90b";
}

.wp-icon-reply-2:before {
	content: "\e910";
}

.wp-icon-success:before {
	content: "\e912";
}

.wp-icon-twitter-x:before {
	content: "\e913";
}

.wp-icon-x:before {
	content: "\e92b";
}

.wp-icon-byuser:before {
	content: "\e942";
}

.wp-icon-reply:before {
	content: "\e940";
}

.wp-icon-arrow-long-left:before {
	content: "\e917";
}

.wp-icon-arrow-long-right:before {
	content: "\e92c";
}

.wp-icon-comments:before {
	content: "\e92d";
}

.wp-icon-timer:before {
	content: "\e91a";
}

.wp-icon-image:before {
	content: "\e92a";
}

.wp-icon-activity:before {
	content: "\e900";
}

.wp-icon-arrow-left:before {
	content: "\e904";
}

.wp-icon-arrow-right:before {
	content: "\e906";
}

.wp-icon-award:before {
	content: "\e90a";
}

.wp-icon-chevron-down:before {
	content: "\e90c";
}

.wp-icon-chevron-left:before {
	content: "\e90d";
}

.wp-icon-chevron-right:before {
	content: "\e90e";
}

.wp-icon-chevron-up:before {
	content: "\e90f";
}

.wp-icon-message-square:before {
	content: "\e918";
}

.wp-icon-music:before {
	content: "\e91b";
}

.wp-icon-play:before {
	content: "\e91c";
}

.wp-icon-watch:before {
	content: "\e922";
}

.wp-icon-zap:before {
	content: "\e927";
}

.wp-icon-eye:before {
	content: "\e9ce";
}
/* User & Account Icons */
.wp-icon-user:before {
    content: "\e950";
}

.wp-icon-user-circle:before {
    content: "\e951";
}

.wp-icon-user-plus:before {
    content: "\e952";
}

.wp-icon-user-minus:before {
    content: "\e953";
}

.wp-icon-user-check:before {
    content: "\e954";
}

.wp-icon-users:before {
    content: "\e955";
}

/* Social Media */
.wp-icon-whatsapp:before {
    content: "\e956";
}

.wp-icon-telegram:before {
    content: "\e957";
}

.wp-icon-discord:before {
    content: "\e958";
}

.wp-icon-reddit:before {
    content: "\e959";
}

.wp-icon-twitch:before {
    content: "\e95a";
}

/* E-commerce */
.wp-icon-shopping-bag:before {
    content: "\e95b";
}

.wp-icon-heart:before {
    content: "\e95c";
}

.wp-icon-heart-filled:before {
    content: "\e95d";
}

.wp-icon-star:before {
    content: "\e95e";
}

.wp-icon-star-filled:before {
    content: "\e95f";
}

/* Navigation */
.wp-icon-home:before {
    content: "\e960";
}

.wp-icon-settings:before {
    content: "\e961";
}

.wp-icon-cog:before {
    content: "\e962";
}

.wp-icon-bell:before {
    content: "\e963";
}

.wp-icon-bell-filled:before {
    content: "\e964";
}

/* File & Document */
.wp-icon-file:before {
    content: "\e965";
}

.wp-icon-file-text:before {
    content: "\e966";
}

.wp-icon-folder:before {
    content: "\e967";
}

.wp-icon-folder-open:before {
    content: "\e968";
}

.wp-icon-paperclip:before {
    content: "\e969";
}

/* Media Controls */
.wp-icon-play-circle:before {
    content: "\e96a";
}

.wp-icon-pause:before {
    content: "\e96b";
}

.wp-icon-stop:before {
    content: "\e96c";
}

.wp-icon-volume:before {
    content: "\e96d";
}

.wp-icon-volume-off:before {
    content: "\e96e";
}

/* Communication */
.wp-icon-mail:before {
    content: "\e96f";
}

.wp-icon-mail-filled:before {
    content: "\e970";
}

.wp-icon-send:before {
    content: "\e971";
}

.wp-icon-phone:before {
    content: "\e972";
}

.wp-icon-video-camera:before {
    content: "\e973";
}

/* Editing */
.wp-icon-edit:before {
    content: "\e974";
}

.wp-icon-trash:before {
    content: "\e975";
}

.wp-icon-copy:before {
    content: "\e976";
}

.wp-icon-cut:before {
    content: "\e977";
}

.wp-icon-save:before {
    content: "\e978";
}

/* Payment & Finance */
.wp-icon-credit-card:before {
    content: "\e979";
}

.wp-icon-wallet:before {
    content: "\e97a";
}

.wp-icon-calculator:before {
    content: "\e97b";
}

.wp-icon-cash:before {
    content: "\e97c";
}

.wp-icon-bitcoin:before {
    content: "\e97d";
}

/* Date & Time */
.wp-icon-calendar:before {
    content: "\e97e";
}

.wp-icon-clock:before {
    content: "\e97f";
}

.wp-icon-hourglass:before {
    content: "\e980";
}

/* Business */
.wp-icon-briefcase:before {
    content: "\e981";
}

.wp-icon-building:before {
    content: "\e982";
}

.wp-icon-shop:before {
    content: "\e983";
}

.wp-icon-chart:before {
    content: "\e984";
}

.wp-icon-graph:before {
    content: "\e985";
}

/* Health */
.wp-icon-heartbeat:before {
    content: "\e986";
}

.wp-icon-medkit:before {
    content: "\e987";
}

.wp-icon-hospital:before {
    content: "\e988";
}

/* Weather */
.wp-icon-sun:before {
    content: "\e989";
}

.wp-icon-moon:before {
    content: "\e98a";
}

.wp-icon-cloud:before {
    content: "\e98b";
}

.wp-icon-umbrella:before {
    content: "\e98c";
}

/* Transportation */
.wp-icon-car:before {
    content: "\e98d";
}

.wp-icon-bus:before {
    content: "\e98e";
}

.wp-icon-train:before {
    content: "\e98f";
}

.wp-icon-plane:before {
    content: "\e990";
}

.wp-icon-bike:before {
    content: "\e991";
}

/* Food */
.wp-icon-coffee:before {
    content: "\e992";
}

.wp-icon-utensils:before {
    content: "\e993";
}

.wp-icon-pizza:before {
    content: "\e994";
}

/* Science */
.wp-icon-flask:before {
    content: "\e995";
}

.wp-icon-atom:before {
    content: "\e996";
}

.wp-icon-microscope:before {
    content: "\e997";
}

/* Security */
.wp-icon-lock:before {
    content: "\e998";
}

.wp-icon-unlock:before {
    content: "\e999";
}

.wp-icon-shield:before {
    content: "\e99a";
}

/* Miscellaneous */
.wp-icon-gift:before {
    content: "\e99b";
}

.wp-icon-tag:before {
    content: "\e99c";
}

.wp-icon-bookmark:before {
    content: "\e99d";
}

.wp-icon-camera:before {
    content: "\e99e";
}

.wp-icon-headphones:before {
    content: "\e99f";
}
/*
-----------------
3 - Font Icons
-----------------
*/
@font-face {
    font-family: 'wpi-icon';
    font-display: swap;
    src: url('../../assets/fonts/icons.woff2?ver=2.5.0') format('woff2');
    font-weight: normal;
    font-style: normal;
}
.rbi, [class^='wpi-'], [class='wpi-'] {
    font-family: 'wpi-icon' !important;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.rtl .rbi:before {
    /*rtl:ignore*/
    display: inline-block;
    /*rtl:ignore*/
    -webkit-transform: scale(-1, 1);
    /*rtl:ignore*/
    transform: scale(-1, 1);
    /*rtl:ignore*/
    -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)';
}

.wpi-version:before {
    content: '\e972';
}

.wpi-copy:before {
    content: '\e965';
}

.wpi-pin:before {
    content: '\e962';
}

.wpi-notification:before {
    content: '\e95a';
}

.wpi-information:before {
    content: '\e95c';
}

.wpi-shield:before {
    content: '\e95e';
}

.wpi-right:before, .wpi-next:before {
    content: '\e958';
}

.wpi-left:before, .wpi-prev:before {
    content: '\e959';
}

.wpi-resize:before {
    content: '\e961';
}

.wpi-help:before {
    content: '\e95b';
}

.wpi-minus-o:before {
    content: '\e95d';
}

.wpi-cancel:before {
    content: '\e95f';
}

.wpi-check:before {
    content: '\e960';
}

.wpi-gallery:before {
    content: '\e955';
}

.wpi-audio:before {
    content: '\e956';
}

.wpi-video:before {
    content: '\e957';
}

.wpi-darrow-top:before {
    content: '\e94a';
}

.wpi-search:before {
    content: '\e946';
}

.wpi-watch:before {
    content: '\e93a';
}

.rbicolorose:before {
    content: '\e949';
}

.wpi-home:before {
    content: '\e952';
}

.wpi-portfolio:before {
    content: '\e901';
}

.wpi-menu:before {
    content: '\e953';
}

.wpi-chart:before {
    content: '\e929';
}

.wpi-suitcase:before {
    content: '\e94d';
}

.wpi-clock:before {
    content: '\e947';
}

.wpi-time:before {
    content: '\e948';
}

.wpi-comment:before {
    content: '\e945';
}

.wpi-email:before {
    content: '\e908';
}

.wpi-share:before {
    content: '\e94e';
}

.wpi-load:before {
    content: '\e942';
}

.wpi-read:before {
    content: '\e94c';
}

.wpi-archive:before {
    content: '\e944';
}

.wpi-tag:before {
    content: '\e94b';
}

.wpi-print:before {
    content: '\e909';
}

.wpi-500px:before {
    content: '\e90a';
}

.wpi-amazon:before {
    content: '\e90b';
}

.wpi-store:before {
    content: '\e90c';
}

.wpi-behance:before {
    content: '\e90d';
}

.wpi-blogger:before {
    content: '\e90f';
}

.wpi-chromecast:before {
    content: '\e911';
}

.wpi-digg:before {
    content: '\e912';
}

.wpi-dribbble:before {
    content: '\e913';
}

.wpi-dropbox:before {
    content: '\e914';
}

.wpi-ebay:before {
    content: '\e93f';
}

.wpi-etsy:before {
    content: '\e940';
}

.wpi-facebook:before {
    content: '\e915';
}

.wpi-messenger:before {
    content: '\e916';
}

.wpi-flickr:before {
    content: '\e917';
}

.wpi-flipboard:before {
    content: '\e918';
}

.wpi-github:before {
    content: '\e919';
}

.wpi-google:before {
    content: '\e91a';
}

.wpi-drive:before {
    content: '\e91b';
}

.wpi-chplay:before {
    content: '\e91c';
}

.wpi-wallet:before {
    content: '\e91d';
}

.wpi-instagram:before {
    content: '\e91e';
}

.wpi-linkedin:before {
    content: '\e91f';
}

.wpi-mailchimp:before {
    content: '\e920';
}

.wpi-close:before {
    content: '\e949';
}

.wpi-medium:before {
    content: '\e921';
}

.wpi-paypal:before {
    content: '\e922';
}

.wpi-pinterest:before {
    content: '\e923';
}

.wpi-quora:before {
    content: '\e941';
}

.wpi-reddit:before {
    content: '\e928';
}

.wpi-skype:before {
    content: '\e92a';
}

.wpi-snapchat:before {
    content: '\e92b';
}

.wpi-soundcloud:before {
    content: '\e92c';
}

.wpi-spotify:before {
    content: '\e92d';
}

.wpi-stripe:before {
    content: '\e92e';
}

.wpi-stumbleupon:before {
    content: '\e92f';
}

.wpi-telegram:before {
    content: '\e930';
}

.wpi-tiktok:before {
    content: '\e943';
}

.wpi-tripadvisor:before {
    content: '\e931';
}

.wpi-tumblr:before {
    content: '\e932';
}

.wpi-twitch:before {
    content: '\e933';
}

.wpi-twitter:before {
    content: '\e934';
}

.wpi-viber:before {
    content: '\e936';
}

.wpi-vimeo:before {
    content: '\e937';
}

.wpi-vk:before {
    content: '\e938';
}

.wpi-waze:before {
    content: '\e939';
}

.wpi-whatsapp:before {
    content: '\e93b';
}

.wpi-wordpress:before {
    content: '\e93c';
}

.wpi-yelp:before {
    content: '\e93d';
}

.wpi-youtube:before {
    content: '\e93e';
}

.wpi-bookmark-fill:before {
    content: '\e906';
}

.wpi-bookmark:before {
    content: '\e907';
}

.wpi-plus:before {
    content: '\e900';
}

.wpi-cright:before {
    content: '\e902';
}

.wpi-cleft:before {
    content: '\e903';
}

.wpi-cdown:before {
    content: '\e904';
}

.wpi-cup:before {
    content: '\e905';
}

.wpi-thumbs-up:before {
    content: '\e86d';
}

.wpi-minus:before {
    content: '\e90e';
}

.wpi-myspace:before {
    content: '\30';
}

.wpi-heart:before {
    content: '\6c';
}

.wpi-rss:before {
    content: '\42';
}

.wpi-angle-down:before {
    content: '\e924';
}

.wpi-angle-left:before {
    content: '\e925';
}

.wpi-angle-right:before {
    content: '\e926';
}

.wpi-angle-up:before {
    content: '\e927';
}

.wpi-cart:before {
    content: '\e963';
}

.wpi-trash:before {
    content: '\e964';
}

.wpi-via:before {
    content: '\e935';
}

.wpi-trending:before {
    content: '\e954';
}

.wpi-bitcoin:before {
    content: '\e910';
}

.wpi-star-half:before {
    content: '\e950';
}

.wpi-star-o:before {
    content: '\e94f';
}

.wpi-star:before {
    content: '\e951';
}

.wpi-link-o:before {
    content: '\e9cb';
}

.wpi-portfolio-o:before {
    content: '\e96a';
}

.wpi-home-o:before {
    content: '\e968';
}

.wpi-external:before {
    content: '\e969';
}

.wpi-clone:before {
    content: '\e96b';
}

.wpi-link:before {
    content: '\e967';
}

.wpi-rdoc:before {
    content: '\e96c';
}

.wpi-mic:before {
    content: '\e96d';
}

.wpi-frequency:before {
    content: '\e96e';
}

.wpi-stitcher:before {
    content: '\e970';
}

.wpi-googlepodcast:before {
    content: '\e96f';
}

.wpi-applepodcast:before {
    content: '\f2ce';
}

.wpi-pause:before {
    content: '\e973';
}

.wpi-volume:before {
    content: '\e979';
}

.wpi-volume-off:before {
    content: '\e97a';
}

.wpi-reload:before {
    content: '\e97b';
}

.wpi-play:before {
    content: '\e971';
}

.wpi-skip-back:before {
    content: '\e974';
}

.wpi-loading:before {
    content: '\e975';
}

.wpi-jump-next:before {
    content: '\e976';
}

.wpi-cookie:before {
    content: '\e972';
}

.wpi-dislike-fill:before {
    content: '\e977';
}

.wpi-like-fill:before {
    content: '\e978';
}

.wpi-like:before {
    content: '\e97c';
}

.wpi-dislike:before {
    content: '\e97d';
}

.wpi-secure:before {
    content: '\e97e';
}

.wpi-hide:before {
    content: '\e97f';
}

.wpi-show:before {
    content: '\e980';
}

.wpi-idea:before {
    content: '\e982';
}

.wpi-warning:before {
    content: '\e981';
}

.wpi-not-allow:before {
    content: '\e985';
}

.wpi-flash:before {
    content: '\e986';
}

.wpi-checked:before {
    content: '\ea54';
}

.wpi-unchecked:before {
    content: '\ea56';
}

.wpi-check-v:before {
    content: '\e984';
}

.wpi-more:before {
    content: '\e987';
}
.wpi-discord:before {
    content: '\e998';
}