@charset "UTF-8";
/* roboto-regular - latin-ext_latin */
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@100;200;300;400;500;600;700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Noto+Kufi+Arabic:wght@100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap");
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto Light"), local("Roboto-Light"), url("/jakarta.faces.resource/fonts/roboto/roboto-v20-latin-ext_latin-regular.woff2.xhtml?ln=layout&v=1751012046757") format("woff2"), url("/jakarta.faces.resource/fonts/roboto/roboto-v20-latin-ext_latin-regular.woff.xhtml?ln=layout&v=1751012046757") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* roboto-500 - latin-ext_latin */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: local("Roboto"), local("Roboto-Regular"), url("/jakarta.faces.resource/fonts/roboto/roboto-v20-latin-ext_latin-500.woff2.xhtml?ln=layout&v=1751012046757") format("woff2"), url("/jakarta.faces.resource/fonts/roboto/roboto-v20-latin-ext_latin-500.woff.xhtml?ln=layout&v=1751012046757") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* roboto-700 - latin-ext_latin */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Bold"), local("Roboto-Bold"), url("/jakarta.faces.resource/fonts/roboto/roboto-v20-latin-ext_latin-700.woff2.xhtml?ln=layout&v=1751012046757") format("woff2"), url("/jakarta.faces.resource/fonts/roboto/roboto-v20-latin-ext_latin-700.woff.xhtml?ln=layout&v=1751012046757") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
:root {
  --body-bgcolor:#f7f7f7;
  --text-color:#212121;
  --text-secondary-color:#616161;
  --divider-color:#E4E4E4;
  --content-bgcolor:#ffffff;
  --content-alt-bgcolor:#ECEFF1;
  --hover-bgcolor:rgba(0, 0, 0, 0.04);
  --pink:#E91E63;
  --indigo:#3F51B5;
  --yellow:#FFC107;
  --orange:#FF9800;
  --teal:#009688;
  --cyan:#00ACC1;
  --bluegrey:#546E7A;
  --purple:#9C27B0;
  --deeppurple:#673AB7;
  --blue:#2196F3;
  --lightblue:#03A9F4;
  --green:#4CAF50;
  --lightgreen:#8BC34A;
  --lime:#CDDC39;
  --deeporange:#FF5722;
  --brown:#795548;
  --layout-mode: light;
}

:root {
  --transition-duration:0.2s;
  --layout-mobile-breakpoint:991px;
}

/* Add your variable customizations of layout here */
@font-face {
  font-family: "HSN Shahd";
  font-style: normal;
  font-weight: bold;
  src: local("Roboto Bold"), local("Roboto-Bold"), url("/jakarta.faces.resource/fonts/HSN/HSN_Shahd_Bold.woff2.xhtml?ln=layout&v=1751012046757") format("woff2"), url("/jakarta.faces.resource/fonts/HSN/HSN_Shahd_Bold.woff.xhtml?ln=layout&v=1751012046757") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
h1, h2, h3, h4, h5, h6 {
  margin: 1.5rem 0 1rem 0;
  font-family: inherit;
  font-weight: 600;
  line-height: 1.2;
  color: inherit;
}
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
  margin-top: 0;
}

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;
}

mark {
  background: #FFF8E1;
  padding: 0.25rem 0.4rem;
  border-radius: 5px;
  font-family: monospace;
}

blockquote {
  margin: 1rem 0;
  padding: 0 2rem;
  border-left: 4px solid #90A4AE;
}

hr {
  border-top: solid #E4E4E4;
  border-width: 1px 0 0 0;
  margin: 1rem 0;
}

p {
  margin: 0 0 1rem 0;
  line-height: 1.5;
}
p:last-child {
  margin-bottom: 0;
}

.splash-screen {
  width: 100%;
  min-height: 100%;
  background-color: var(--primary-color);
  position: absolute;
}

.splash-loader-container {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -32px;
  margin-top: -32px;
}

.splash-loader {
  animation: rotator 1.4s linear infinite;
}

@keyframes rotator {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(270deg);
  }
}
.splash-path {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  transform-origin: center;
  animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
}

@keyframes colors {
  0% {
    stroke: #4285F4;
  }
  25% {
    stroke: #DE3E35;
  }
  50% {
    stroke: #F7C223;
  }
  75% {
    stroke: #1B9A59;
  }
  100% {
    stroke: #4285F4;
  }
}
@keyframes dash {
  0% {
    stroke-dashoffset: 187;
  }
  50% {
    stroke-dashoffset: 46.75;
    transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 187;
    transform: rotate(450deg);
  }
}
@keyframes overlayEnter {
  from {
    opacity: 0;
    transform: scaleY(0.8);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes overlayLeave {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.overlay-enter {
  transform-origin: top;
  animation-name: overlayEnter;
  animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  animation-duration: 0.12s;
}

.overlay-leave {
  animation-name: overlayLeave;
  animation-timing-function: linear;
  animation-duration: 0.1s;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
  }
}
@keyframes fadeinmask {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.8;
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}

.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes modal-in {
  from {
    background-color: transparent;
  }
  to {
    background-color: rgba(0, 0, 0, 0.6);
  }
}
.modal-in {
  animation-name: modal-in;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
/* Utils */
.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

*[hidden] {
  display: none;
}

.p-lh {
  line-height: 1.5;
}

.card {
  background-color: #ffffff;
  padding: 1rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12);
  border-radius: 5px;
}
.card:last-child {
  margin-bottom: 0;
}
.card .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.card .card-header h1, .card .card-header h2, .card .card-header h3, .card .card-header h4, .card .card-header h5, .card .card-header h6 {
  margin: 0;
}
.card .card-subtitle {
  color: #616161;
  font-weight: 600;
  margin: -1rem 0 1rem 0;
}

body .ui-growl {
  top: 85px;
}
body .ui-overlay-badge {
  position: relative;
}
body .ui-overlay-badge .ui-badge {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  transform-origin: 100% 0;
  margin: 0;
}

.height-100 {
  height: 100% !important;
}

.width-100 {
  width: 100% !important;
}

.fs-xsmall {
  font-size: 0.715rem !important;
}

.fs-small {
  font-size: 0.858rem !important;
}

.fs-normal {
  font-size: 1rem !important;
}

.fs-large {
  font-size: 1.5rem !important;
}

.fs-xlarge {
  font-size: 2rem !important;
}

.fs-xxlarge {
  font-size: 3rem !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.rounded-small {
  border-radius: 2px !important;
}

.rounded-normal {
  border-radius: 4px !important;
}

.rounded-large {
  border-radius: 6px !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-none {
  border-radius: 0 !important;
}

.divider-top {
  border-top: 1px solid #E4E4E4 !important;
}

.divider-bottom {
  border-bottom: 1px solid #E4E4E4 !important;
}

.divider-left {
  border-left: 1px solid #E4E4E4 !important;
}

.divider-right {
  border-right: 1px solid #E4E4E4 !important;
}

.muted-text {
  color: #616161 !important;
}

.text-color {
  color: #212121 !important;
}

.solid-surface-text-color {
  color: #ffffff !important;
}

.white-color {
  color: #ffffff !important;
}

.dark-color {
  color: #212121 !important;
}

.pink-color {
  color: #E91E63 !important;
}

.indigo-color {
  color: #3F51B5 !important;
}

.yellow-color {
  color: #FFC107 !important;
}

.orange-color {
  color: #FF9800 !important;
}

.teal-color {
  color: #009688 !important;
}

.cyan-color {
  color: #00ACC1 !important;
}

.bluegrey-color {
  color: #546E7A !important;
}

.purple-color {
  color: #9C27B0 !important;
}

.deeppurple-color {
  color: #673AB7 !important;
}

.blue-color {
  color: #2196F3 !important;
}

.lightblue-color {
  color: #03A9F4 !important;
}

.green-color {
  color: #4CAF50 !important;
}

.lightgreen-color {
  color: #8BC34A !important;
}

.lime-color {
  color: #CDDC39 !important;
}

.deeporange-color {
  color: #FF5722 !important;
}

.brown-color {
  color: #795548 !important;
}

.content-bgcolor {
  background-color: #ffffff !important;
}

.content-alt-bgcolor {
  background-color: #ECEFF1 !important;
}

.pink-bgcolor {
  background-color: #E91E63 !important;
}

.indigo-bgcolor {
  background-color: #3F51B5 !important;
}

.yellow-bgcolor {
  background-color: #FFC107 !important;
}

.orange-bgcolor {
  background-color: #FF9800 !important;
}

.teal-bgcolor {
  background-color: #009688 !important;
}

.cyan-bgcolor {
  background-color: #00ACC1 !important;
}

.bluegrey-bgcolor {
  background-color: #546E7A !important;
}

.purple-bgcolor {
  background-color: #9C27B0 !important;
}

.deeppurple-bgcolor {
  background-color: #673AB7 !important;
}

.blue-bgcolor {
  background-color: #2196F3 !important;
}

.lightblue-bgcolor {
  background-color: #03A9F4 !important;
}

.green-bgcolor {
  background-color: #4CAF50 !important;
}

.lightgreen-bgcolor {
  background-color: #8BC34A !important;
}

.lime-bgcolor {
  background-color: #CDDC39 !important;
}

.deeporange-bgcolor {
  background-color: #FF5722 !important;
}

.brown-bgcolor {
  background-color: #795548 !important;
}

.badge-dot {
  width: 0.5rem;
  min-width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  padding: 0;
}

body .layout-wrapper.layout-rtl {
  direction: rtl;
}
body .layout-wrapper.layout-rtl .layout-menu-wrapper {
  left: auto;
  right: 0;
}
body .layout-wrapper.layout-rtl .layout-menu-wrapper .layout-menu-container .layout-menu li.layout-root-menuitem > div {
  padding-left: 0;
  padding-right: 1rem;
}
body .layout-wrapper.layout-rtl .layout-menu-wrapper .layout-menu-container .layout-menu li > a .ui-badge,
body .layout-wrapper.layout-rtl .layout-menu-wrapper .layout-menu-container .layout-menu li > a .layout-submenu-toggler {
  margin-left: 0;
  margin-right: auto;
}
body .layout-wrapper.layout-rtl .layout-menu-wrapper .layout-menu-container .layout-menu li > a .layout-menuitem-text {
  margin-right: 0.75rem;
  margin-left: 0;
}
body .layout-wrapper.layout-rtl .layout-menu-wrapper .layout-menu-container .layout-menu li > ul > li ul li a {
  padding-left: 0.5rem;
  padding-right: 1.75rem;
}
body .layout-wrapper.layout-rtl .layout-menu-wrapper .layout-menu-container .layout-menu li > ul > li ul li ul li a {
  padding-left: 0.5rem;
  padding-right: 2.625rem;
}
body .layout-wrapper.layout-rtl .layout-menu-wrapper .layout-menu-container .layout-menu li > ul > li ul li ul li ul li a {
  padding-left: 0.5rem;
  padding-right: 3.5rem;
}
body .layout-wrapper.layout-rtl .layout-menu-wrapper .layout-menu-container .layout-menu li > ul > li ul li ul li ul li ul li a {
  padding-left: 0.5rem;
  padding-right: 4.375rem;
}
body .layout-wrapper.layout-rtl .layout-menu-wrapper .layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item a i {
  margin-right: 0;
  margin-left: 0.75rem;
}
body .layout-wrapper.layout-rtl .layout-topbar .layout-topbar-left .layout-menu-button > i {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  body .layout-wrapper.layout-rtl.layout-menu-horizontal .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul {
    left: auto;
    right: 0;
  }
  body .layout-wrapper.layout-rtl.layout-menu-overlay .layout-menu-wrapper {
    transform: translate3d(17rem, 0px, 0px);
  }
  body .layout-wrapper.layout-rtl.layout-menu-overlay.layout-menu-active .layout-menu-wrapper {
    transform: translate3d(0px, 0px, 0px);
  }
  body .layout-wrapper.layout-rtl.layout-menu-overlay.layout-menu-active .layout-topbar .layout-topbar-left .layout-menu-button > i {
    transform: rotate(0deg);
  }
  body .layout-wrapper.layout-rtl.layout-menu-slim .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul {
    left: auto;
    right: 4.5rem;
  }
  body .layout-wrapper.layout-rtl.layout-menu-slim.layout-wrapper .layout-main {
    margin-left: 0;
    margin-right: 4.5rem;
  }
  body .layout-wrapper.layout-rtl.layout-menu-static .layout-menu-wrapper {
    transform: translate3d(17rem, 0px, 0px);
  }
  body .layout-wrapper.layout-rtl.layout-menu-static .layout-main {
    transition: margin-right 0.2s;
  }
  body .layout-wrapper.layout-rtl.layout-menu-static.layout-menu-active .layout-menu-wrapper {
    transform: translate3d(0px, 0px, 0px);
  }
  body .layout-wrapper.layout-rtl.layout-menu-static.layout-menu-active .layout-topbar .layout-topbar-left .layout-menu-button > i {
    transform: rotate(0deg);
  }
  body .layout-wrapper.layout-rtl.layout-menu-static.layout-menu-active .layout-main {
    margin-left: 0;
    margin-right: 17rem;
  }
}
@media (max-width: 991px) {
  body .layout-wrapper.layout-rtl .layout-menu-wrapper {
    transform: translate3d(17rem, 0px, 0px);
  }
  body .layout-wrapper.layout-rtl.layout-menu-mobile-active .layout-menu-wrapper {
    transform: translate3d(0px, 0px, 0px);
  }
  body .layout-wrapper.layout-rtl.layout-menu-mobile-active .layout-topbar .layout-topbar-left .layout-menu-button > i {
    transform: rotate(0deg);
  }
}
body .layout-wrapper.layout-rtl {
  direction: rtl;
}
body .layout-wrapper.layout-rtl .layout-topbar {
  left: auto;
  right: 0;
}
body .layout-wrapper.layout-rtl .layout-topbar .layout-topbar-left .layout-topbar-logo {
  padding-right: 0;
  padding-left: 1.25rem;
}
body .layout-wrapper.layout-rtl .layout-topbar .layout-topbar-left .layout-menu-button {
  left: auto;
  right: 15.75rem;
}
body .layout-wrapper.layout-rtl .layout-topbar .layout-topbar-left .layout-topbar-mobile-button {
  margin: 0 auto 0 0.5rem;
}
body .layout-wrapper.layout-rtl .layout-topbar .layout-topbar-right {
  padding-left: 0;
  padding-right: 2rem;
}
body .layout-wrapper.layout-rtl .layout-topbar .layout-topbar-right .layout-topbar-actions-right {
  margin-right: auto;
  margin-left: 0;
}
body .layout-wrapper.layout-rtl .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item .layout-topbar-action-panel {
  right: auto;
  left: 0;
}
body .layout-wrapper.layout-rtl .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel {
  left: auto;
  right: 0;
}
body .layout-wrapper.layout-rtl .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-menu.ui-menubar > .ui-menu-list > .ui-menuitem > .ui-menuitem-link .ui-icon-triangle-1-s:last-child {
  margin-right: 0.5rem;
  margin-left: 0;
}
body .layout-wrapper.layout-rtl .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-menu .ui-menu-list .ui-menuitem .ui-menuitem-link .ui-menuitem-icon {
  margin-right: 0;
  margin-left: 0.5rem;
}
@media (max-width: 991px) {
  body .layout-wrapper.layout-rtl .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu .ui-megamenu-panel {
    left: 1rem;
    right: 1rem;
  }
  body .layout-wrapper.layout-rtl .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item .layout-topbar-action-panel {
    left: 1em;
    right: 1em;
  }
}
body .layout-wrapper.layout-rtl {
  overflow-x: hidden;
}
body .layout-wrapper.layout-rtl .layout-breadcrumb-container .ui-breadcrumb .ui-breadcrumb-items li:not(.ui-breadcrumb-chevron):before {
  transform: rotate(180deg);
}
body .layout-wrapper.layout-rtl .layout-config-button.ui-button {
  right: auto;
  left: 0;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
body .layout-wrapper.layout-rtl .layout-config-button.ui-button .ui-button-icon {
  font-size: 2rem;
}
body .layout-wrapper.layout-rtl .widget-bestsellers > li .bestseller-item .item-button {
  margin-left: 0;
  margin-right: auto;
}
body .layout-wrapper.layout-rtl .widget-chat .write-message .ui-inputgroup-addon:first-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  border-left-width: 0;
}
body .layout-wrapper.layout-rtl .widget-chat .write-message .ui-inputgroup-addon:last-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}

.layout-topbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 998;
  width: 100%;
  height: 4rem;
  transition: width 0.2s;
  display: flex;
}
.layout-topbar ul {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  text-decoration: none;
  list-style-type: none;
}
.layout-topbar .layout-topbar-left {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
}
.layout-topbar .layout-topbar-left .layout-topbar-logo {
  width: 17rem;
  height: 100%;
  padding-right: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.layout-topbar .layout-topbar-left .layout-menu-button {
  position: absolute;
  top: 50%;
  left: 15.75rem;
  width: 2.5rem;
  height: 2.5rem;
  margin-top: -1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
}
.layout-topbar .layout-topbar-left .layout-menu-button i {
  transition: transform 0.2s;
}
.layout-topbar .layout-topbar-left .layout-topbar-mobile-button {
  display: none;
  align-items: center;
  padding: 0 0.8rem;
  margin: 0 0.5rem 0 auto;
  border-radius: 50%;
  height: 3.2rem;
  cursor: pointer;
}
.layout-topbar .layout-topbar-right {
  display: flex;
  flex-grow: 1;
  align-items: center;
  padding-left: 2rem;
  height: 100%;
}
.layout-topbar .layout-topbar-right .layout-topbar-actions-left {
  display: flex;
  align-items: center;
  height: 100%;
}
.layout-topbar .layout-topbar-right .layout-topbar-actions-right {
  height: 100%;
  margin-left: auto;
}
.layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items {
  display: flex;
  flex-direction: row;
  justify-content: center;
  height: 100%;
}
.layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item {
  display: flex;
  align-items: center;
  position: relative;
}
.layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item .layout-topbar-action {
  user-select: none;
  padding: 0 0.8rem;
  margin: 0 0.4rem;
  border-radius: 4px;
  height: 3.2rem;
  min-width: 3.2rem;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item .layout-topbar-action-panel {
  position: absolute;
  top: 4rem;
  right: 0;
  z-index: 1000;
  min-width: 25rem;
  padding: 1rem 0;
}
.layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item .layout-topbar-action-panel .layout-topbar-action-item {
  cursor: pointer;
  padding: 1rem;
}
.layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel {
  height: 4rem;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
.layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel input {
  border-radius: 0;
  border: 0 none;
}
.layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel input:focus {
  outline: 0 none;
  box-shadow: none;
}
.layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel i {
  font-weight: bold;
}
.layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon {
  border: 0 none;
}
.layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon:first-child,
.layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup button:first-child,
.layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup input:first-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon:last-child,
.layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup button:last-child,
.layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup input:last-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

@media (max-width: 991px) {
  .layout-topbar {
    height: auto;
    display: flex;
    flex-direction: column;
  }
  .layout-topbar .layout-topbar-left {
    height: 4rem;
    width: 100%;
    justify-content: flex-start;
  }
  .layout-topbar .layout-topbar-left .layout-topbar-mobile-button {
    display: flex;
  }
  .layout-topbar .layout-topbar-right {
    display: none;
    flex-direction: column-reverse;
    padding: 0;
  }
  .layout-topbar .layout-topbar-right.layout-topbar-mobile-active {
    display: flex;
  }
  .layout-topbar .layout-topbar-right .layout-topbar-actions-left {
    height: 4rem;
    display: flex;
    justify-content: space-between;
  }
  .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu .ui-menu-parent > .ui-menu-list {
    position: fixed;
    left: 1rem !important;
    right: 1rem;
    max-height: calc(100vh - 168px);
    overflow-y: auto;
  }
  .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu .ui-menu-parent > .ui-menu-list > table {
    width: 100%;
  }
  .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu .ui-menu-child .ui-menu-list {
    min-width: 12rem;
    width: 100%;
  }
  .layout-topbar .layout-topbar-right .layout-topbar-actions-right {
    height: 4rem;
    width: 100%;
  }
  .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items {
    width: 100%;
    justify-content: space-between;
  }
  .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item .layout-topbar-action-panel {
    position: fixed;
    top: 8rem;
    left: 1em;
    right: 1em;
  }
}
@media (min-width: 992px) {
  .layout-menu-horizontal .layout-topbar .layout-topbar-left .layout-menu-button,
  .layout-menu-slim .layout-topbar .layout-topbar-left .layout-menu-button {
    display: none;
  }
}
.layout-topbar-blue {
  --topbar-bg-color:#1565C0;
  --topbar-text-color: #ffffff;
}
.layout-topbar-blue .layout-topbar {
  color: #ffffff;
  background-color: #1565C0;
}
.layout-topbar-blue .layout-topbar a {
  color: #ffffff;
}
.layout-topbar-blue .layout-topbar a:hover {
  background-color: rgba(255, 255, 255, 0.12);
  transition: background-color 0.2s;
}
.layout-topbar-blue .layout-topbar .layout-topbar-left {
  background-color: #0D47A1;
}
.layout-topbar-blue .layout-topbar .layout-topbar-left .layout-menu-button {
  color: #212121;
  background-color: #FBC02D;
}
.layout-topbar-blue .layout-topbar .layout-topbar-left .layout-menu-button:hover {
  background-color: rgba(251, 192, 45, 0.7);
  transition: background-color 0.2s;
}
.layout-topbar-blue .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu {
  background: none;
}
.layout-topbar-blue .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-menuitem-text,
.layout-topbar-blue .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-menuitem-icon,
.layout-topbar-blue .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-icon-triangle-1-s:last-child {
  color: #ffffff;
}
.layout-topbar-blue .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link:not(.ui-state-disabled):hover {
  background: rgba(255, 255, 255, 0.12);
  transition: background-color 0.2s;
}
.layout-topbar-blue .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel {
  background-color: #ffffff;
  color: #212121;
}
.layout-topbar-blue .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel a {
  color: #212121;
}
.layout-topbar-blue .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel a:hover {
  background-color: transparent;
  transition: none;
}
.layout-topbar-blue .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel .layout-topbar-action-item:hover {
  background-color: rgba(0, 0, 0, 0.04);
  transition: background-color 0.2s;
}
.layout-topbar-blue .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel input {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-blue .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel input:hover {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-blue .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon:first-child,
.layout-topbar-blue .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup button:first-child,
.layout-topbar-blue .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup input:first-child {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-blue .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon:last-child,
.layout-topbar-blue .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup button:last-child,
.layout-topbar-blue .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup input:last-child {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-blue .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon .ui-button-text {
  color: #212121;
}

.layout-topbar-lightblue {
  --topbar-bg-color:#0288D1;
  --topbar-text-color: #ffffff;
}
.layout-topbar-lightblue .layout-topbar {
  color: #ffffff;
  background-color: #0288D1;
}
.layout-topbar-lightblue .layout-topbar a {
  color: #ffffff;
}
.layout-topbar-lightblue .layout-topbar a:hover {
  background-color: rgba(255, 255, 255, 0.12);
  transition: background-color 0.2s;
}
.layout-topbar-lightblue .layout-topbar .layout-topbar-left {
  background-color: #0277BD;
}
.layout-topbar-lightblue .layout-topbar .layout-topbar-left .layout-menu-button {
  color: #212121;
  background-color: #FDD835;
}
.layout-topbar-lightblue .layout-topbar .layout-topbar-left .layout-menu-button:hover {
  background-color: rgba(253, 216, 53, 0.7);
  transition: background-color 0.2s;
}
.layout-topbar-lightblue .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu {
  background: none;
}
.layout-topbar-lightblue .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-menuitem-text,
.layout-topbar-lightblue .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-menuitem-icon,
.layout-topbar-lightblue .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-icon-triangle-1-s:last-child {
  color: #ffffff;
}
.layout-topbar-lightblue .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link:not(.ui-state-disabled):hover {
  background: rgba(255, 255, 255, 0.12);
  transition: background-color 0.2s;
}
.layout-topbar-lightblue .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel {
  background-color: #ffffff;
  color: #212121;
}
.layout-topbar-lightblue .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel a {
  color: #212121;
}
.layout-topbar-lightblue .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel a:hover {
  background-color: transparent;
  transition: none;
}
.layout-topbar-lightblue .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel .layout-topbar-action-item:hover {
  background-color: rgba(0, 0, 0, 0.04);
  transition: background-color 0.2s;
}
.layout-topbar-lightblue .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel input {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-lightblue .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel input:hover {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-lightblue .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon:first-child,
.layout-topbar-lightblue .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup button:first-child,
.layout-topbar-lightblue .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup input:first-child {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-lightblue .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon:last-child,
.layout-topbar-lightblue .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup button:last-child,
.layout-topbar-lightblue .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup input:last-child {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-lightblue .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon .ui-button-text {
  color: #212121;
}

.layout-topbar-white {
  --topbar-bg-color:#ffffff;
  --topbar-text-color: #616161;
}
.layout-topbar-white .layout-topbar {
  color: #616161;
  background-color: #ffffff;
}
.layout-topbar-white .layout-topbar a {
  color: #616161;
}
.layout-topbar-white .layout-topbar a:hover {
  background-color: rgba(0, 0, 0, 0.12);
  transition: background-color 0.2s;
}
.layout-topbar-white .layout-topbar .layout-topbar-left {
  background-color: #ffffff;
}
.layout-topbar-white .layout-topbar .layout-topbar-left .layout-menu-button {
  color: #212121;
  background-color: #ffffff;
}
.layout-topbar-white .layout-topbar .layout-topbar-left .layout-menu-button:hover {
  background-color: rgba(255, 255, 255, 0.7);
  transition: background-color 0.2s;
}
.layout-topbar-white .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu {
  background: none;
}
.layout-topbar-white .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-menuitem-text,
.layout-topbar-white .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-menuitem-icon,
.layout-topbar-white .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-icon-triangle-1-s:last-child {
  color: #616161;
}
.layout-topbar-white .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link:not(.ui-state-disabled):hover {
  background: rgba(0, 0, 0, 0.12);
  transition: background-color 0.2s;
}
.layout-topbar-white .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel {
  background-color: #ffffff;
  color: #212121;
}
.layout-topbar-white .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel a {
  color: #212121;
}
.layout-topbar-white .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel a:hover {
  background-color: transparent;
  transition: none;
}
.layout-topbar-white .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel .layout-topbar-action-item:hover {
  background-color: rgba(0, 0, 0, 0.04);
  transition: background-color 0.2s;
}
.layout-topbar-white .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel input {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-white .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel input:hover {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-white .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon:first-child,
.layout-topbar-white .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup button:first-child,
.layout-topbar-white .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup input:first-child {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-white .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon:last-child,
.layout-topbar-white .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup button:last-child,
.layout-topbar-white .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup input:last-child {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-white .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon .ui-button-text {
  color: #212121;
}

.layout-topbar-dark {
  --topbar-bg-color:#1e1e1e;
  --topbar-text-color: #ffffff;
}
.layout-topbar-dark .layout-topbar {
  color: #ffffff;
  background-color: #1e1e1e;
}
.layout-topbar-dark .layout-topbar a {
  color: #ffffff;
}
.layout-topbar-dark .layout-topbar a:hover {
  background-color: rgba(255, 255, 255, 0.12);
  transition: background-color 0.2s;
}
.layout-topbar-dark .layout-topbar .layout-topbar-left {
  background-color: #1e1e1e;
}
.layout-topbar-dark .layout-topbar .layout-topbar-left .layout-menu-button {
  color: #ffffff;
  background-color: #E91E63;
}
.layout-topbar-dark .layout-topbar .layout-topbar-left .layout-menu-button:hover {
  background-color: rgba(233, 30, 99, 0.7);
  transition: background-color 0.2s;
}
.layout-topbar-dark .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu {
  background: none;
}
.layout-topbar-dark .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-menuitem-text,
.layout-topbar-dark .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-menuitem-icon,
.layout-topbar-dark .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-icon-triangle-1-s:last-child {
  color: #ffffff;
}
.layout-topbar-dark .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link:not(.ui-state-disabled):hover {
  background: rgba(255, 255, 255, 0.12);
  transition: background-color 0.2s;
}
.layout-topbar-dark .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel {
  background-color: #ffffff;
  color: #212121;
}
.layout-topbar-dark .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel a {
  color: #212121;
}
.layout-topbar-dark .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel a:hover {
  background-color: transparent;
  transition: none;
}
.layout-topbar-dark .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel .layout-topbar-action-item:hover {
  background-color: rgba(0, 0, 0, 0.04);
  transition: background-color 0.2s;
}
.layout-topbar-dark .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel input {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-dark .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel input:hover {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-dark .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon:first-child,
.layout-topbar-dark .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup button:first-child,
.layout-topbar-dark .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup input:first-child {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-dark .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon:last-child,
.layout-topbar-dark .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup button:last-child,
.layout-topbar-dark .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup input:last-child {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-dark .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon .ui-button-text {
  color: #212121;
}

.layout-topbar-deeppurple {
  --topbar-bg-color:#4527A0;
  --topbar-text-color: #ffffff;
}
.layout-topbar-deeppurple .layout-topbar {
  color: #ffffff;
  background-color: #4527A0;
}
.layout-topbar-deeppurple .layout-topbar a {
  color: #ffffff;
}
.layout-topbar-deeppurple .layout-topbar a:hover {
  background-color: rgba(255, 255, 255, 0.12);
  transition: background-color 0.2s;
}
.layout-topbar-deeppurple .layout-topbar .layout-topbar-left {
  background-color: #311B92;
}
.layout-topbar-deeppurple .layout-topbar .layout-topbar-left .layout-menu-button {
  color: #212121;
  background-color: #F9A825;
}
.layout-topbar-deeppurple .layout-topbar .layout-topbar-left .layout-menu-button:hover {
  background-color: rgba(249, 168, 37, 0.7);
  transition: background-color 0.2s;
}
.layout-topbar-deeppurple .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu {
  background: none;
}
.layout-topbar-deeppurple .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-menuitem-text,
.layout-topbar-deeppurple .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-menuitem-icon,
.layout-topbar-deeppurple .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-icon-triangle-1-s:last-child {
  color: #ffffff;
}
.layout-topbar-deeppurple .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link:not(.ui-state-disabled):hover {
  background: rgba(255, 255, 255, 0.12);
  transition: background-color 0.2s;
}
.layout-topbar-deeppurple .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel {
  background-color: #ffffff;
  color: #212121;
}
.layout-topbar-deeppurple .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel a {
  color: #212121;
}
.layout-topbar-deeppurple .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel a:hover {
  background-color: transparent;
  transition: none;
}
.layout-topbar-deeppurple .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel .layout-topbar-action-item:hover {
  background-color: rgba(0, 0, 0, 0.04);
  transition: background-color 0.2s;
}
.layout-topbar-deeppurple .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel input {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-deeppurple .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel input:hover {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-deeppurple .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon:first-child,
.layout-topbar-deeppurple .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup button:first-child,
.layout-topbar-deeppurple .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup input:first-child {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-deeppurple .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon:last-child,
.layout-topbar-deeppurple .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup button:last-child,
.layout-topbar-deeppurple .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup input:last-child {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-deeppurple .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon .ui-button-text {
  color: #212121;
}

.layout-topbar-purple {
  --topbar-bg-color:#6A1B9A;
  --topbar-text-color: #ffffff;
}
.layout-topbar-purple .layout-topbar {
  color: #ffffff;
  background-color: #6A1B9A;
}
.layout-topbar-purple .layout-topbar a {
  color: #ffffff;
}
.layout-topbar-purple .layout-topbar a:hover {
  background-color: rgba(255, 255, 255, 0.12);
  transition: background-color 0.2s;
}
.layout-topbar-purple .layout-topbar .layout-topbar-left {
  background-color: #4A148C;
}
.layout-topbar-purple .layout-topbar .layout-topbar-left .layout-menu-button {
  color: #212121;
  background-color: #F9A825;
}
.layout-topbar-purple .layout-topbar .layout-topbar-left .layout-menu-button:hover {
  background-color: rgba(249, 168, 37, 0.7);
  transition: background-color 0.2s;
}
.layout-topbar-purple .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu {
  background: none;
}
.layout-topbar-purple .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-menuitem-text,
.layout-topbar-purple .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-menuitem-icon,
.layout-topbar-purple .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-icon-triangle-1-s:last-child {
  color: #ffffff;
}
.layout-topbar-purple .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link:not(.ui-state-disabled):hover {
  background: rgba(255, 255, 255, 0.12);
  transition: background-color 0.2s;
}
.layout-topbar-purple .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel {
  background-color: #ffffff;
  color: #212121;
}
.layout-topbar-purple .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel a {
  color: #212121;
}
.layout-topbar-purple .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel a:hover {
  background-color: transparent;
  transition: none;
}
.layout-topbar-purple .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel .layout-topbar-action-item:hover {
  background-color: rgba(0, 0, 0, 0.04);
  transition: background-color 0.2s;
}
.layout-topbar-purple .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel input {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-purple .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel input:hover {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-purple .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon:first-child,
.layout-topbar-purple .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup button:first-child,
.layout-topbar-purple .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup input:first-child {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-purple .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon:last-child,
.layout-topbar-purple .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup button:last-child,
.layout-topbar-purple .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup input:last-child {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-purple .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon .ui-button-text {
  color: #212121;
}

.layout-topbar-pink {
  --topbar-bg-color:#AD1457;
  --topbar-text-color: #ffffff;
}
.layout-topbar-pink .layout-topbar {
  color: #ffffff;
  background-color: #AD1457;
}
.layout-topbar-pink .layout-topbar a {
  color: #ffffff;
}
.layout-topbar-pink .layout-topbar a:hover {
  background-color: rgba(255, 255, 255, 0.12);
  transition: background-color 0.2s;
}
.layout-topbar-pink .layout-topbar .layout-topbar-left {
  background-color: #880E4F;
}
.layout-topbar-pink .layout-topbar .layout-topbar-left .layout-menu-button {
  color: #212121;
  background-color: #F9A825;
}
.layout-topbar-pink .layout-topbar .layout-topbar-left .layout-menu-button:hover {
  background-color: rgba(249, 168, 37, 0.7);
  transition: background-color 0.2s;
}
.layout-topbar-pink .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu {
  background: none;
}
.layout-topbar-pink .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-menuitem-text,
.layout-topbar-pink .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-menuitem-icon,
.layout-topbar-pink .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-icon-triangle-1-s:last-child {
  color: #ffffff;
}
.layout-topbar-pink .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link:not(.ui-state-disabled):hover {
  background: rgba(255, 255, 255, 0.12);
  transition: background-color 0.2s;
}
.layout-topbar-pink .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel {
  background-color: #ffffff;
  color: #212121;
}
.layout-topbar-pink .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel a {
  color: #212121;
}
.layout-topbar-pink .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel a:hover {
  background-color: transparent;
  transition: none;
}
.layout-topbar-pink .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel .layout-topbar-action-item:hover {
  background-color: rgba(0, 0, 0, 0.04);
  transition: background-color 0.2s;
}
.layout-topbar-pink .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel input {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-pink .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel input:hover {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-pink .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon:first-child,
.layout-topbar-pink .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup button:first-child,
.layout-topbar-pink .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup input:first-child {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-pink .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon:last-child,
.layout-topbar-pink .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup button:last-child,
.layout-topbar-pink .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup input:last-child {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-pink .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon .ui-button-text {
  color: #212121;
}

.layout-topbar-cyan {
  --topbar-bg-color:#0097A7;
  --topbar-text-color: #ffffff;
}
.layout-topbar-cyan .layout-topbar {
  color: #ffffff;
  background-color: #0097A7;
}
.layout-topbar-cyan .layout-topbar a {
  color: #ffffff;
}
.layout-topbar-cyan .layout-topbar a:hover {
  background-color: rgba(255, 255, 255, 0.12);
  transition: background-color 0.2s;
}
.layout-topbar-cyan .layout-topbar .layout-topbar-left {
  background-color: #006064;
}
.layout-topbar-cyan .layout-topbar .layout-topbar-left .layout-menu-button {
  color: #ffffff;
  background-color: #E64A19;
}
.layout-topbar-cyan .layout-topbar .layout-topbar-left .layout-menu-button:hover {
  background-color: rgba(230, 74, 25, 0.7);
  transition: background-color 0.2s;
}
.layout-topbar-cyan .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu {
  background: none;
}
.layout-topbar-cyan .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-menuitem-text,
.layout-topbar-cyan .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-menuitem-icon,
.layout-topbar-cyan .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-icon-triangle-1-s:last-child {
  color: #ffffff;
}
.layout-topbar-cyan .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link:not(.ui-state-disabled):hover {
  background: rgba(255, 255, 255, 0.12);
  transition: background-color 0.2s;
}
.layout-topbar-cyan .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel {
  background-color: #ffffff;
  color: #212121;
}
.layout-topbar-cyan .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel a {
  color: #212121;
}
.layout-topbar-cyan .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel a:hover {
  background-color: transparent;
  transition: none;
}
.layout-topbar-cyan .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel .layout-topbar-action-item:hover {
  background-color: rgba(0, 0, 0, 0.04);
  transition: background-color 0.2s;
}
.layout-topbar-cyan .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel input {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-cyan .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel input:hover {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-cyan .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon:first-child,
.layout-topbar-cyan .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup button:first-child,
.layout-topbar-cyan .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup input:first-child {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-cyan .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon:last-child,
.layout-topbar-cyan .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup button:last-child,
.layout-topbar-cyan .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup input:last-child {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-cyan .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon .ui-button-text {
  color: #212121;
}

.layout-topbar-teal {
  --topbar-bg-color:#00796B;
  --topbar-text-color: #ffffff;
}
.layout-topbar-teal .layout-topbar {
  color: #ffffff;
  background-color: #00796B;
}
.layout-topbar-teal .layout-topbar a {
  color: #ffffff;
}
.layout-topbar-teal .layout-topbar a:hover {
  background-color: rgba(255, 255, 255, 0.12);
  transition: background-color 0.2s;
}
.layout-topbar-teal .layout-topbar .layout-topbar-left {
  background-color: #004D40;
}
.layout-topbar-teal .layout-topbar .layout-topbar-left .layout-menu-button {
  color: #ffffff;
  background-color: #D32F2F;
}
.layout-topbar-teal .layout-topbar .layout-topbar-left .layout-menu-button:hover {
  background-color: rgba(211, 47, 47, 0.7);
  transition: background-color 0.2s;
}
.layout-topbar-teal .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu {
  background: none;
}
.layout-topbar-teal .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-menuitem-text,
.layout-topbar-teal .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-menuitem-icon,
.layout-topbar-teal .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-icon-triangle-1-s:last-child {
  color: #ffffff;
}
.layout-topbar-teal .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link:not(.ui-state-disabled):hover {
  background: rgba(255, 255, 255, 0.12);
  transition: background-color 0.2s;
}
.layout-topbar-teal .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel {
  background-color: #ffffff;
  color: #212121;
}
.layout-topbar-teal .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel a {
  color: #212121;
}
.layout-topbar-teal .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel a:hover {
  background-color: transparent;
  transition: none;
}
.layout-topbar-teal .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel .layout-topbar-action-item:hover {
  background-color: rgba(0, 0, 0, 0.04);
  transition: background-color 0.2s;
}
.layout-topbar-teal .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel input {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-teal .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel input:hover {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-teal .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon:first-child,
.layout-topbar-teal .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup button:first-child,
.layout-topbar-teal .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup input:first-child {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-teal .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon:last-child,
.layout-topbar-teal .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup button:last-child,
.layout-topbar-teal .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup input:last-child {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-teal .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon .ui-button-text {
  color: #212121;
}

.layout-topbar-green {
  --topbar-bg-color:#43A047;
  --topbar-text-color: #ffffff;
}
.layout-topbar-green .layout-topbar {
  color: #ffffff;
  background-color: #43A047;
}
.layout-topbar-green .layout-topbar a {
  color: #ffffff;
}
.layout-topbar-green .layout-topbar a:hover {
  background-color: rgba(255, 255, 255, 0.12);
  transition: background-color 0.2s;
}
.layout-topbar-green .layout-topbar .layout-topbar-left {
  background-color: #2E7D32;
}
.layout-topbar-green .layout-topbar .layout-topbar-left .layout-menu-button {
  color: #ffffff;
  background-color: #F4511E;
}
.layout-topbar-green .layout-topbar .layout-topbar-left .layout-menu-button:hover {
  background-color: rgba(244, 81, 30, 0.7);
  transition: background-color 0.2s;
}
.layout-topbar-green .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu {
  background: none;
}
.layout-topbar-green .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-menuitem-text,
.layout-topbar-green .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-menuitem-icon,
.layout-topbar-green .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-icon-triangle-1-s:last-child {
  color: #ffffff;
}
.layout-topbar-green .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link:not(.ui-state-disabled):hover {
  background: rgba(255, 255, 255, 0.12);
  transition: background-color 0.2s;
}
.layout-topbar-green .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel {
  background-color: #ffffff;
  color: #212121;
}
.layout-topbar-green .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel a {
  color: #212121;
}
.layout-topbar-green .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel a:hover {
  background-color: transparent;
  transition: none;
}
.layout-topbar-green .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel .layout-topbar-action-item:hover {
  background-color: rgba(0, 0, 0, 0.04);
  transition: background-color 0.2s;
}
.layout-topbar-green .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel input {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-green .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel input:hover {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-green .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon:first-child,
.layout-topbar-green .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup button:first-child,
.layout-topbar-green .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup input:first-child {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-green .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon:last-child,
.layout-topbar-green .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup button:last-child,
.layout-topbar-green .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup input:last-child {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-green .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon .ui-button-text {
  color: #212121;
}

.layout-topbar-lightgreen {
  --topbar-bg-color:#689F38;
  --topbar-text-color: #ffffff;
}
.layout-topbar-lightgreen .layout-topbar {
  color: #ffffff;
  background-color: #689F38;
}
.layout-topbar-lightgreen .layout-topbar a {
  color: #ffffff;
}
.layout-topbar-lightgreen .layout-topbar a:hover {
  background-color: rgba(255, 255, 255, 0.12);
  transition: background-color 0.2s;
}
.layout-topbar-lightgreen .layout-topbar .layout-topbar-left {
  background-color: #558B2F;
}
.layout-topbar-lightgreen .layout-topbar .layout-topbar-left .layout-menu-button {
  color: #ffffff;
  background-color: #F57C00;
}
.layout-topbar-lightgreen .layout-topbar .layout-topbar-left .layout-menu-button:hover {
  background-color: rgba(245, 124, 0, 0.7);
  transition: background-color 0.2s;
}
.layout-topbar-lightgreen .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu {
  background: none;
}
.layout-topbar-lightgreen .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-menuitem-text,
.layout-topbar-lightgreen .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-menuitem-icon,
.layout-topbar-lightgreen .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-icon-triangle-1-s:last-child {
  color: #ffffff;
}
.layout-topbar-lightgreen .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link:not(.ui-state-disabled):hover {
  background: rgba(255, 255, 255, 0.12);
  transition: background-color 0.2s;
}
.layout-topbar-lightgreen .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel {
  background-color: #ffffff;
  color: #212121;
}
.layout-topbar-lightgreen .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel a {
  color: #212121;
}
.layout-topbar-lightgreen .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel a:hover {
  background-color: transparent;
  transition: none;
}
.layout-topbar-lightgreen .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel .layout-topbar-action-item:hover {
  background-color: rgba(0, 0, 0, 0.04);
  transition: background-color 0.2s;
}
.layout-topbar-lightgreen .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel input {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-lightgreen .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel input:hover {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-lightgreen .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon:first-child,
.layout-topbar-lightgreen .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup button:first-child,
.layout-topbar-lightgreen .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup input:first-child {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-lightgreen .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon:last-child,
.layout-topbar-lightgreen .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup button:last-child,
.layout-topbar-lightgreen .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup input:last-child {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-lightgreen .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon .ui-button-text {
  color: #212121;
}

.layout-topbar-lime {
  --topbar-bg-color:#AFB42B;
  --topbar-text-color: #212121;
}
.layout-topbar-lime .layout-topbar {
  color: #212121;
  background-color: #AFB42B;
}
.layout-topbar-lime .layout-topbar a {
  color: #212121;
}
.layout-topbar-lime .layout-topbar a:hover {
  background-color: rgba(0, 0, 0, 0.12);
  transition: background-color 0.2s;
}
.layout-topbar-lime .layout-topbar .layout-topbar-left {
  background-color: #9E9D24;
}
.layout-topbar-lime .layout-topbar .layout-topbar-left .layout-menu-button {
  color: #212121;
  background-color: #F57C00;
}
.layout-topbar-lime .layout-topbar .layout-topbar-left .layout-menu-button:hover {
  background-color: rgba(245, 124, 0, 0.7);
  transition: background-color 0.2s;
}
.layout-topbar-lime .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu {
  background: none;
}
.layout-topbar-lime .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-menuitem-text,
.layout-topbar-lime .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-menuitem-icon,
.layout-topbar-lime .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-icon-triangle-1-s:last-child {
  color: #212121;
}
.layout-topbar-lime .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link:not(.ui-state-disabled):hover {
  background: rgba(0, 0, 0, 0.12);
  transition: background-color 0.2s;
}
.layout-topbar-lime .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel {
  background-color: #ffffff;
  color: #212121;
}
.layout-topbar-lime .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel a {
  color: #212121;
}
.layout-topbar-lime .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel a:hover {
  background-color: transparent;
  transition: none;
}
.layout-topbar-lime .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel .layout-topbar-action-item:hover {
  background-color: rgba(0, 0, 0, 0.04);
  transition: background-color 0.2s;
}
.layout-topbar-lime .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel input {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-lime .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel input:hover {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-lime .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon:first-child,
.layout-topbar-lime .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup button:first-child,
.layout-topbar-lime .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup input:first-child {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-lime .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon:last-child,
.layout-topbar-lime .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup button:last-child,
.layout-topbar-lime .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup input:last-child {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-lime .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon .ui-button-text {
  color: #212121;
}

.layout-topbar-yellow {
  --topbar-bg-color:#FBC02D;
  --topbar-text-color: #212121;
}
.layout-topbar-yellow .layout-topbar {
  color: #212121;
  background-color: #FBC02D;
}
.layout-topbar-yellow .layout-topbar a {
  color: #212121;
}
.layout-topbar-yellow .layout-topbar a:hover {
  background-color: rgba(0, 0, 0, 0.12);
  transition: background-color 0.2s;
}
.layout-topbar-yellow .layout-topbar .layout-topbar-left {
  background-color: #F9A825;
}
.layout-topbar-yellow .layout-topbar .layout-topbar-left .layout-menu-button {
  color: #ffffff;
  background-color: #212121;
}
.layout-topbar-yellow .layout-topbar .layout-topbar-left .layout-menu-button:hover {
  background-color: rgba(33, 33, 33, 0.7);
  transition: background-color 0.2s;
}
.layout-topbar-yellow .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu {
  background: none;
}
.layout-topbar-yellow .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-menuitem-text,
.layout-topbar-yellow .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-menuitem-icon,
.layout-topbar-yellow .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-icon-triangle-1-s:last-child {
  color: #212121;
}
.layout-topbar-yellow .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link:not(.ui-state-disabled):hover {
  background: rgba(0, 0, 0, 0.12);
  transition: background-color 0.2s;
}
.layout-topbar-yellow .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel {
  background-color: #ffffff;
  color: #212121;
}
.layout-topbar-yellow .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel a {
  color: #212121;
}
.layout-topbar-yellow .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel a:hover {
  background-color: transparent;
  transition: none;
}
.layout-topbar-yellow .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel .layout-topbar-action-item:hover {
  background-color: rgba(0, 0, 0, 0.04);
  transition: background-color 0.2s;
}
.layout-topbar-yellow .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel input {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-yellow .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel input:hover {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-yellow .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon:first-child,
.layout-topbar-yellow .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup button:first-child,
.layout-topbar-yellow .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup input:first-child {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-yellow .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon:last-child,
.layout-topbar-yellow .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup button:last-child,
.layout-topbar-yellow .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup input:last-child {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-yellow .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon .ui-button-text {
  color: #212121;
}

.layout-topbar-amber {
  --topbar-bg-color:#FFA000;
  --topbar-text-color: #212121;
}
.layout-topbar-amber .layout-topbar {
  color: #212121;
  background-color: #FFA000;
}
.layout-topbar-amber .layout-topbar a {
  color: #212121;
}
.layout-topbar-amber .layout-topbar a:hover {
  background-color: rgba(0, 0, 0, 0.12);
  transition: background-color 0.2s;
}
.layout-topbar-amber .layout-topbar .layout-topbar-left {
  background-color: #FF8F00;
}
.layout-topbar-amber .layout-topbar .layout-topbar-left .layout-menu-button {
  color: #ffffff;
  background-color: #212121;
}
.layout-topbar-amber .layout-topbar .layout-topbar-left .layout-menu-button:hover {
  background-color: rgba(33, 33, 33, 0.7);
  transition: background-color 0.2s;
}
.layout-topbar-amber .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu {
  background: none;
}
.layout-topbar-amber .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-menuitem-text,
.layout-topbar-amber .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-menuitem-icon,
.layout-topbar-amber .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-icon-triangle-1-s:last-child {
  color: #212121;
}
.layout-topbar-amber .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link:not(.ui-state-disabled):hover {
  background: rgba(0, 0, 0, 0.12);
  transition: background-color 0.2s;
}
.layout-topbar-amber .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel {
  background-color: #ffffff;
  color: #212121;
}
.layout-topbar-amber .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel a {
  color: #212121;
}
.layout-topbar-amber .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel a:hover {
  background-color: transparent;
  transition: none;
}
.layout-topbar-amber .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel .layout-topbar-action-item:hover {
  background-color: rgba(0, 0, 0, 0.04);
  transition: background-color 0.2s;
}
.layout-topbar-amber .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel input {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-amber .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel input:hover {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-amber .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon:first-child,
.layout-topbar-amber .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup button:first-child,
.layout-topbar-amber .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup input:first-child {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-amber .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon:last-child,
.layout-topbar-amber .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup button:last-child,
.layout-topbar-amber .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup input:last-child {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-amber .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon .ui-button-text {
  color: #212121;
}

.layout-topbar-orange {
  --topbar-bg-color:#FB8C00;
  --topbar-text-color: #212121;
}
.layout-topbar-orange .layout-topbar {
  color: #212121;
  background-color: #FB8C00;
}
.layout-topbar-orange .layout-topbar a {
  color: #212121;
}
.layout-topbar-orange .layout-topbar a:hover {
  background-color: rgba(0, 0, 0, 0.12);
  transition: background-color 0.2s;
}
.layout-topbar-orange .layout-topbar .layout-topbar-left {
  background-color: #EF6C00;
}
.layout-topbar-orange .layout-topbar .layout-topbar-left .layout-menu-button {
  color: #ffffff;
  background-color: #212121;
}
.layout-topbar-orange .layout-topbar .layout-topbar-left .layout-menu-button:hover {
  background-color: rgba(33, 33, 33, 0.7);
  transition: background-color 0.2s;
}
.layout-topbar-orange .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu {
  background: none;
}
.layout-topbar-orange .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-menuitem-text,
.layout-topbar-orange .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-menuitem-icon,
.layout-topbar-orange .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-icon-triangle-1-s:last-child {
  color: #212121;
}
.layout-topbar-orange .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link:not(.ui-state-disabled):hover {
  background: rgba(0, 0, 0, 0.12);
  transition: background-color 0.2s;
}
.layout-topbar-orange .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel {
  background-color: #ffffff;
  color: #212121;
}
.layout-topbar-orange .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel a {
  color: #212121;
}
.layout-topbar-orange .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel a:hover {
  background-color: transparent;
  transition: none;
}
.layout-topbar-orange .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel .layout-topbar-action-item:hover {
  background-color: rgba(0, 0, 0, 0.04);
  transition: background-color 0.2s;
}
.layout-topbar-orange .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel input {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-orange .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel input:hover {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-orange .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon:first-child,
.layout-topbar-orange .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup button:first-child,
.layout-topbar-orange .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup input:first-child {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-orange .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon:last-child,
.layout-topbar-orange .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup button:last-child,
.layout-topbar-orange .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup input:last-child {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-orange .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon .ui-button-text {
  color: #212121;
}

.layout-topbar-deeporange {
  --topbar-bg-color:#D84315;
  --topbar-text-color: #ffffff;
}
.layout-topbar-deeporange .layout-topbar {
  color: #ffffff;
  background-color: #D84315;
}
.layout-topbar-deeporange .layout-topbar a {
  color: #ffffff;
}
.layout-topbar-deeporange .layout-topbar a:hover {
  background-color: rgba(255, 255, 255, 0.12);
  transition: background-color 0.2s;
}
.layout-topbar-deeporange .layout-topbar .layout-topbar-left {
  background-color: #BF360C;
}
.layout-topbar-deeporange .layout-topbar .layout-topbar-left .layout-menu-button {
  color: #212121;
  background-color: #00BCD4;
}
.layout-topbar-deeporange .layout-topbar .layout-topbar-left .layout-menu-button:hover {
  background-color: rgba(0, 188, 212, 0.7);
  transition: background-color 0.2s;
}
.layout-topbar-deeporange .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu {
  background: none;
}
.layout-topbar-deeporange .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-menuitem-text,
.layout-topbar-deeporange .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-menuitem-icon,
.layout-topbar-deeporange .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-icon-triangle-1-s:last-child {
  color: #ffffff;
}
.layout-topbar-deeporange .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link:not(.ui-state-disabled):hover {
  background: rgba(255, 255, 255, 0.12);
  transition: background-color 0.2s;
}
.layout-topbar-deeporange .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel {
  background-color: #ffffff;
  color: #212121;
}
.layout-topbar-deeporange .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel a {
  color: #212121;
}
.layout-topbar-deeporange .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel a:hover {
  background-color: transparent;
  transition: none;
}
.layout-topbar-deeporange .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel .layout-topbar-action-item:hover {
  background-color: rgba(0, 0, 0, 0.04);
  transition: background-color 0.2s;
}
.layout-topbar-deeporange .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel input {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-deeporange .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel input:hover {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-deeporange .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon:first-child,
.layout-topbar-deeporange .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup button:first-child,
.layout-topbar-deeporange .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup input:first-child {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-deeporange .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon:last-child,
.layout-topbar-deeporange .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup button:last-child,
.layout-topbar-deeporange .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup input:last-child {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-deeporange .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon .ui-button-text {
  color: #212121;
}

.layout-topbar-brown {
  --topbar-bg-color:#5D4037;
  --topbar-text-color: #ffffff;
}
.layout-topbar-brown .layout-topbar {
  color: #ffffff;
  background-color: #5D4037;
}
.layout-topbar-brown .layout-topbar a {
  color: #ffffff;
}
.layout-topbar-brown .layout-topbar a:hover {
  background-color: rgba(255, 255, 255, 0.12);
  transition: background-color 0.2s;
}
.layout-topbar-brown .layout-topbar .layout-topbar-left {
  background-color: #4E342E;
}
.layout-topbar-brown .layout-topbar .layout-topbar-left .layout-menu-button {
  color: #212121;
  background-color: #F9A825;
}
.layout-topbar-brown .layout-topbar .layout-topbar-left .layout-menu-button:hover {
  background-color: rgba(249, 168, 37, 0.7);
  transition: background-color 0.2s;
}
.layout-topbar-brown .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu {
  background: none;
}
.layout-topbar-brown .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-menuitem-text,
.layout-topbar-brown .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-menuitem-icon,
.layout-topbar-brown .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-icon-triangle-1-s:last-child {
  color: #ffffff;
}
.layout-topbar-brown .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link:not(.ui-state-disabled):hover {
  background: rgba(255, 255, 255, 0.12);
  transition: background-color 0.2s;
}
.layout-topbar-brown .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel {
  background-color: #ffffff;
  color: #212121;
}
.layout-topbar-brown .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel a {
  color: #212121;
}
.layout-topbar-brown .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel a:hover {
  background-color: transparent;
  transition: none;
}
.layout-topbar-brown .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel .layout-topbar-action-item:hover {
  background-color: rgba(0, 0, 0, 0.04);
  transition: background-color 0.2s;
}
.layout-topbar-brown .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel input {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-brown .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel input:hover {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-brown .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon:first-child,
.layout-topbar-brown .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup button:first-child,
.layout-topbar-brown .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup input:first-child {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-brown .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon:last-child,
.layout-topbar-brown .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup button:last-child,
.layout-topbar-brown .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup input:last-child {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-brown .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon .ui-button-text {
  color: #212121;
}

.layout-topbar-grey {
  --topbar-bg-color:#616161;
  --topbar-text-color: #ffffff;
}
.layout-topbar-grey .layout-topbar {
  color: #ffffff;
  background-color: #616161;
}
.layout-topbar-grey .layout-topbar a {
  color: #ffffff;
}
.layout-topbar-grey .layout-topbar a:hover {
  background-color: rgba(255, 255, 255, 0.12);
  transition: background-color 0.2s;
}
.layout-topbar-grey .layout-topbar .layout-topbar-left {
  background-color: #424242;
}
.layout-topbar-grey .layout-topbar .layout-topbar-left .layout-menu-button {
  color: #ffffff;
  background-color: #0097A7;
}
.layout-topbar-grey .layout-topbar .layout-topbar-left .layout-menu-button:hover {
  background-color: rgba(0, 151, 167, 0.7);
  transition: background-color 0.2s;
}
.layout-topbar-grey .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu {
  background: none;
}
.layout-topbar-grey .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-menuitem-text,
.layout-topbar-grey .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-menuitem-icon,
.layout-topbar-grey .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-icon-triangle-1-s:last-child {
  color: #ffffff;
}
.layout-topbar-grey .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link:not(.ui-state-disabled):hover {
  background: rgba(255, 255, 255, 0.12);
  transition: background-color 0.2s;
}
.layout-topbar-grey .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel {
  background-color: #ffffff;
  color: #212121;
}
.layout-topbar-grey .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel a {
  color: #212121;
}
.layout-topbar-grey .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel a:hover {
  background-color: transparent;
  transition: none;
}
.layout-topbar-grey .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel .layout-topbar-action-item:hover {
  background-color: rgba(0, 0, 0, 0.04);
  transition: background-color 0.2s;
}
.layout-topbar-grey .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel input {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-grey .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel input:hover {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-grey .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon:first-child,
.layout-topbar-grey .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup button:first-child,
.layout-topbar-grey .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup input:first-child {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-grey .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon:last-child,
.layout-topbar-grey .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup button:last-child,
.layout-topbar-grey .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup input:last-child {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-grey .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon .ui-button-text {
  color: #212121;
}

.layout-topbar-bluegrey {
  --topbar-bg-color:#546E7A;
  --topbar-text-color: #ffffff;
}
.layout-topbar-bluegrey .layout-topbar {
  color: #ffffff;
  background-color: #546E7A;
}
.layout-topbar-bluegrey .layout-topbar a {
  color: #ffffff;
}
.layout-topbar-bluegrey .layout-topbar a:hover {
  background-color: rgba(255, 255, 255, 0.12);
  transition: background-color 0.2s;
}
.layout-topbar-bluegrey .layout-topbar .layout-topbar-left {
  background-color: #37474F;
}
.layout-topbar-bluegrey .layout-topbar .layout-topbar-left .layout-menu-button {
  color: #ffffff;
  background-color: #0097A7;
}
.layout-topbar-bluegrey .layout-topbar .layout-topbar-left .layout-menu-button:hover {
  background-color: rgba(0, 151, 167, 0.7);
  transition: background-color 0.2s;
}
.layout-topbar-bluegrey .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu {
  background: none;
}
.layout-topbar-bluegrey .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-menuitem-text,
.layout-topbar-bluegrey .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-menuitem-icon,
.layout-topbar-bluegrey .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-icon-triangle-1-s:last-child {
  color: #ffffff;
}
.layout-topbar-bluegrey .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link:not(.ui-state-disabled):hover {
  background: rgba(255, 255, 255, 0.12);
  transition: background-color 0.2s;
}
.layout-topbar-bluegrey .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel {
  background-color: #ffffff;
  color: #212121;
}
.layout-topbar-bluegrey .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel a {
  color: #212121;
}
.layout-topbar-bluegrey .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel a:hover {
  background-color: transparent;
  transition: none;
}
.layout-topbar-bluegrey .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel .layout-topbar-action-item:hover {
  background-color: rgba(0, 0, 0, 0.04);
  transition: background-color 0.2s;
}
.layout-topbar-bluegrey .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel input {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-bluegrey .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel input:hover {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-bluegrey .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon:first-child,
.layout-topbar-bluegrey .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup button:first-child,
.layout-topbar-bluegrey .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup input:first-child {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-bluegrey .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon:last-child,
.layout-topbar-bluegrey .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup button:last-child,
.layout-topbar-bluegrey .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup input:last-child {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-bluegrey .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon .ui-button-text {
  color: #212121;
}

.layout-topbar-indigo {
  --topbar-bg-color:#3F51B5;
  --topbar-text-color: #ffffff;
}
.layout-topbar-indigo .layout-topbar {
  color: #ffffff;
  background-color: #3F51B5;
}
.layout-topbar-indigo .layout-topbar a {
  color: #ffffff;
}
.layout-topbar-indigo .layout-topbar a:hover {
  background-color: rgba(255, 255, 255, 0.12);
  transition: background-color 0.2s;
}
.layout-topbar-indigo .layout-topbar .layout-topbar-left {
  background-color: #283593;
}
.layout-topbar-indigo .layout-topbar .layout-topbar-left .layout-menu-button {
  color: #ffffff;
  background-color: #E91E63;
}
.layout-topbar-indigo .layout-topbar .layout-topbar-left .layout-menu-button:hover {
  background-color: rgba(233, 30, 99, 0.7);
  transition: background-color 0.2s;
}
.layout-topbar-indigo .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu {
  background: none;
}
.layout-topbar-indigo .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-menuitem-text,
.layout-topbar-indigo .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-menuitem-icon,
.layout-topbar-indigo .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link .ui-icon-triangle-1-s:last-child {
  color: #ffffff;
}
.layout-topbar-indigo .layout-topbar .layout-topbar-right .layout-topbar-actions-left .layout-megamenu.ui-megamenu .ui-menu-parent > .ui-menuitem-link:not(.ui-state-disabled):hover {
  background: rgba(255, 255, 255, 0.12);
  transition: background-color 0.2s;
}
.layout-topbar-indigo .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel {
  background-color: #ffffff;
  color: #212121;
}
.layout-topbar-indigo .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel a {
  color: #212121;
}
.layout-topbar-indigo .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel a:hover {
  background-color: transparent;
  transition: none;
}
.layout-topbar-indigo .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-action-panel .layout-topbar-action-item:hover {
  background-color: rgba(0, 0, 0, 0.04);
  transition: background-color 0.2s;
}
.layout-topbar-indigo .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel input {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-indigo .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel input:hover {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-indigo .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon:first-child,
.layout-topbar-indigo .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup button:first-child,
.layout-topbar-indigo .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup input:first-child {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-indigo .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon:last-child,
.layout-topbar-indigo .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup button:last-child,
.layout-topbar-indigo .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup input:last-child {
  background-color: #f7f7f7;
  color: #212121;
}
.layout-topbar-indigo .layout-topbar .layout-topbar-right .layout-topbar-actions-right .layout-topbar-items .layout-topbar-item.layout-search-item .layout-search-panel .ui-inputgroup-addon .ui-button-text {
  color: #212121;
}

.layout-rightmenu.ui-sidebar {
  top: 4rem;
  height: calc(100% - 4rem);
  overflow: auto;
  transition: transform 0.2s;
}
.layout-rightmenu.ui-sidebar .ui-sidebar-header,
.layout-rightmenu.ui-sidebar .ui-sidebar-content {
  padding: 0;
}
.layout-rightmenu .online-members img:hover {
  cursor: pointer;
}
.layout-rightmenu .next-events li {
  border-radius: 5px;
}
.layout-rightmenu .next-events li:hover {
  background-color: rgba(0, 0, 0, 0.04);
  cursor: pointer;
}

@media (max-width: 991px) {
  .layout-wrapper.layout-topbar-mobile-active .layout-rightmenu {
    top: 12rem;
    height: calc(100% - 12rem);
  }
}
.layout-menu-wrapper {
  height: calc(100% - 4rem);
  width: 17rem;
  position: fixed;
  left: 0;
  top: 4rem;
  z-index: 997;
  transform: none;
}
.layout-menu-wrapper ul {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  text-decoration: none;
  list-style-type: none;
}
.layout-menu-wrapper .layout-menu-container {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.layout-menu-wrapper .layout-menu-container .layout-menu {
  padding-bottom: 2rem;
  overflow-y: auto;
}
.layout-menu-wrapper .layout-menu-container .layout-menu li {
  border-radius: 4px;
}
.layout-menu-wrapper .layout-menu-container .layout-menu li.layout-root-menuitem > a {
  display: none;
}
.layout-menu-wrapper .layout-menu-container .layout-menu li.layout-root-menuitem > div {
  padding-left: 1rem;
  margin-bottom: 0.5rem;
  margin-top: 1.5rem;
}
.layout-menu-wrapper .layout-menu-container .layout-menu li.layout-root-menuitem > div > .layout-menuitem-text {
  font-size: 0.857rem;
  font-weight: 600;
  text-transform: uppercase;
}
.layout-menu-wrapper .layout-menu-container .layout-menu li > a {
  display: flex;
  align-items: center;
  padding: 0.75rem;
  border-radius: 4px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.2s, color 0.2s;
}
.layout-menu-wrapper .layout-menu-container .layout-menu li > a .layout-menuitem-text {
  margin-left: 0.75rem;
}
.layout-menu-wrapper .layout-menu-container .layout-menu li > a .ui-badge {
  margin-left: auto;
  min-width: 1.143rem;
  height: 1.143rem;
  line-height: 1.143rem;
}
.layout-menu-wrapper .layout-menu-container .layout-menu li > a .layout-submenu-toggler {
  margin-left: auto;
}
.layout-menu-wrapper .layout-menu-container .layout-menu li > a.rotated-icon .layout-menuitem-icon {
  transform: rotate(90deg);
}
.layout-menu-wrapper .layout-menu-container .layout-menu li > a .ui-badge + .layout-submenu-toggler {
  margin-left: 0.5rem;
}
.layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem > a .layout-submenu-toggler {
  transition: all 0.2s;
  transform: rotate(-180deg);
}
.layout-menu-wrapper .layout-menu-container .layout-menu li > ul {
  padding: 0 0.5rem;
}
.layout-menu-wrapper .layout-menu-container .layout-menu li > ul li ul {
  padding: 0 0 0.25rem;
  overflow: hidden;
  display: none;
}
.layout-menu-wrapper .layout-menu-container .layout-menu li > ul > li {
  margin-top: 0.2rem;
}
.layout-menu-wrapper .layout-menu-container .layout-menu li > ul > li.layout-root-menuitem > a {
  display: flex;
}
.layout-menu-wrapper .layout-menu-container .layout-menu li > ul > li ul li a {
  padding-left: 1.75rem;
}
.layout-menu-wrapper .layout-menu-container .layout-menu li > ul > li ul li ul li a {
  padding-left: 2.625rem;
}
.layout-menu-wrapper .layout-menu-container .layout-menu li > ul > li ul li ul li ul li a {
  padding-left: 3.5rem;
}
.layout-menu-wrapper .layout-menu-container .layout-menu li > ul > li ul li ul li ul li ul li a {
  padding-left: 4.375rem;
}

@media (min-width: 992px) {
  .layout-menu-static .layout-menu-wrapper {
    transform: translate3d(-17rem, 0px, 0px);
    transition: transform 0.2s;
  }
  .layout-menu-static .layout-main {
    transition: margin-left 0.2s;
  }
  .layout-menu-static.layout-menu-active .layout-menu-wrapper {
    transform: translate3d(0px, 0px, 0px);
  }
  .layout-menu-static.layout-menu-active .layout-topbar .layout-topbar-left .layout-menu-button > i {
    transform: rotate(180deg);
  }
  .layout-menu-static.layout-menu-active .layout-main {
    margin-left: 17rem;
  }
}
@media (min-width: 992px) {
  .layout-menu-overlay .layout-menu-wrapper {
    transform: translate3d(-17rem, 0px, 0px);
    transition: transform 0.2s;
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  .layout-menu-overlay.layout-menu-active .layout-menu-wrapper {
    transform: translate3d(0px, 0px, 0px);
  }
  .layout-menu-overlay.layout-menu-active .layout-topbar .layout-topbar-left .layout-menu-button > i {
    transform: rotate(180deg);
  }
  .layout-menu-overlay .layout-topbar .layout-topbar-wrapper .layout-topbar-right .menu-button {
    display: flex;
  }
}
@media (min-width: 992px) {
  .layout-menu-horizontal .layout-menu-wrapper {
    width: 100%;
    height: 3rem;
  }
  .layout-menu-horizontal .layout-menu-wrapper .layout-menu-container {
    flex-direction: row;
  }
  .layout-menu-horizontal .layout-menu-wrapper .layout-menu-container .layout-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100%;
    margin: 0px 1rem;
    padding-bottom: 0px;
    overflow-y: visible;
    flex-grow: 1;
  }
  .layout-menu-horizontal .layout-menu-wrapper .layout-menu-container .layout-menu > li {
    position: relative;
  }
  .layout-menu-horizontal .layout-menu-wrapper .layout-menu-container .layout-menu > li > a {
    margin-right: 1rem;
    display: flex;
    align-items: center;
    position: relative;
  }
  .layout-menu-horizontal .layout-menu-wrapper .layout-menu-container .layout-menu > li > a .layout-menuitem-badge {
    position: absolute;
    top: 50%;
    left: 1.5rem;
    margin-top: -1.214rem;
  }
  .layout-menu-horizontal .layout-menu-wrapper .layout-menu-container .layout-menu > li.layout-root-menuitem > div {
    display: none;
  }
  .layout-menu-horizontal .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul {
    display: none;
    position: absolute;
    top: 2.75rem;
    left: 0px;
    z-index: 100;
    padding: 0.5rem;
    overflow: auto;
    max-height: 32rem;
    min-width: 16rem;
    border-radius: 5px;
  }
  .layout-menu-horizontal .layout-menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > ul {
    display: block;
  }
  .layout-menu-horizontal .layout-menu-wrapper .layout-menu-container .layout-inline-menu {
    border: 0 none;
  }
  .layout-menu-horizontal .layout-menu-wrapper .layout-menu-container .layout-inline-menu > .layout-inline-menu-action {
    height: 3rem;
  }
  .layout-menu-horizontal.layout-wrapper .layout-main {
    padding-top: 7rem;
  }
}
@media (min-width: 992px) {
  .layout-menu-slim .layout-menu-wrapper {
    width: 4.5rem;
  }
  .layout-menu-slim .layout-menu-wrapper .layout-menu-container .layout-menu {
    display: flex;
    flex-direction: column;
    padding-top: 1rem;
    overflow-y: visible;
    flex-grow: 1;
  }
  .layout-menu-slim .layout-menu-wrapper .layout-menu-container .layout-menu > li {
    position: relative;
  }
  .layout-menu-slim .layout-menu-wrapper .layout-menu-container .layout-menu > li > a {
    display: flex;
    justify-content: center;
    position: relative;
  }
  .layout-menu-slim .layout-menu-wrapper .layout-menu-container .layout-menu > li > a i {
    font-size: 1.5rem;
  }
  .layout-menu-slim .layout-menu-wrapper .layout-menu-container .layout-menu > li > a .layout-submenu-toggler,
  .layout-menu-slim .layout-menu-wrapper .layout-menu-container .layout-menu > li > a .layout-menuitem-text {
    display: none;
  }
  .layout-menu-slim .layout-menu-wrapper .layout-menu-container .layout-menu > li > a .layout-menuitem-badge {
    position: absolute;
    top: 50%;
    right: 1rem;
    margin-top: -1.214rem;
  }
  .layout-menu-slim .layout-menu-wrapper .layout-menu-container .layout-menu > li.layout-root-menuitem > div {
    display: none;
  }
  .layout-menu-slim .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul {
    display: none;
    position: absolute;
    top: 0;
    left: 4.5rem;
    z-index: 100;
    padding: 0.5rem;
    overflow: auto;
    max-height: 32rem;
    min-width: 16.5rem;
    border-radius: 2px;
  }
  .layout-menu-slim .layout-menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > ul {
    display: block;
  }
  .layout-menu-slim .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action-panel {
    padding: 0;
  }
  .layout-menu-slim.layout-wrapper .layout-main {
    margin-left: 4.5rem;
  }
  body:has(.layout-menu-slim .layout-root-menuitem.active-menuitem) .layout-menu-tooltip {
    visibility: hidden;
    pointer-events: none;
  }
}
.layout-menu-wrapper .layout-inline-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-width: 1px 0 1px 0;
  border-style: solid;
  margin-top: auto;
}
.layout-menu-wrapper .layout-inline-menu.layout-inline-menu-active .layout-inline-menu-icon, .layout-menu-wrapper .layout-inline-menu:has(.layout-inline-menu-action-panel:not(.hidden)) .layout-inline-menu-icon {
  transition: all 0.2s;
  transform: rotate(-180deg);
}
.layout-menu-wrapper .layout-inline-menu .layout-inline-menu-action {
  cursor: pointer;
}
.layout-menu-wrapper .layout-inline-menu .layout-inline-menu-action-panel {
  padding: 0 0.5rem;
  margin-bottom: 0.5rem;
  animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  animation-duration: 0.4s;
}
.layout-menu-wrapper .layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item {
  margin-top: 0.2rem;
  border-radius: 5px;
  transition: all 0.2s;
  cursor: pointer;
  user-select: none;
}
.layout-menu-wrapper .layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item a {
  padding: 0.75rem;
}
.layout-menu-wrapper .layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item a i {
  margin-right: 0.75rem;
}

@media (max-width: 991px) {
  .layout-wrapper .layout-menu-wrapper {
    top: 4rem;
    height: calc(100% - 4rem);
    transform: translate3d(-17rem, 0px, 0px);
    transition: transform 0.2s;
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  .layout-wrapper.layout-topbar-mobile-active .layout-menu-wrapper {
    top: 12rem;
    height: calc(100% - 12rem);
  }
  .layout-wrapper.layout-menu-mobile-active {
    overflow: hidden;
    height: 100vh;
  }
  .layout-wrapper.layout-menu-mobile-active .layout-menu-wrapper {
    transform: translate3d(0px, 0px, 0px);
  }
  .layout-wrapper.layout-menu-mobile-active .layout-topbar .layout-topbar-left .layout-menu-button > i {
    transform: rotate(180deg);
  }
  .layout-wrapper.layout-menu-mobile-active .layout-modal {
    display: block;
  }
  body:has(.layout-menu-slim) .layout-menu-tooltip {
    visibility: hidden;
    pointer-events: none;
  }
}
.layout-menu-light {
  --menu-bg-color:#FDFEFF;
  --menu-text-color: #657380;
}
.layout-menu-light .layout-menu-wrapper {
  background-color: #FDFEFF;
  box-shadow: 2px 0 4px -1px rgba(0, 0, 0, 0.2), 4px 0 5px 0 rgba(0, 0, 0, 0.14), 1px 0 10px 0 rgba(0, 0, 0, 0.12);
}
.layout-menu-light .layout-menu-wrapper .layout-menu-container .layout-menu > li > div .layout-menuitem-text {
  color: #657380;
}
.layout-menu-light .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul {
  background-color: #FDFEFF;
}
.layout-menu-light .layout-menu-wrapper .layout-menu-container .layout-menu li a {
  color: #515C66;
}
.layout-menu-light .layout-menu-wrapper .layout-menu-container .layout-menu li a i {
  color: #515C66;
}
.layout-menu-light .layout-menu-wrapper .layout-menu-container .layout-menu li a:hover {
  background-color: rgba(0, 0, 0, 0.04);
}
.layout-menu-light .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem > a {
  background-color: var(--primary-lightest-color);
  color: var(--primary-dark-color);
}
.layout-menu-light .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem > a > i {
  color: var(--primary-dark-color);
}
.layout-menu-light .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem a.active-menuitem-routerlink {
  background-color: var(--primary-lightest-color);
  color: var(--primary-dark-color);
}
.layout-menu-light .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem a.active-menuitem-routerlink > i {
  color: var(--primary-dark-color);
}
.layout-menu-light .layout-menu-wrapper .layout-menu-container .layout-inline-menu {
  border-color: #e4e4e4;
}
.layout-menu-light .layout-menu-wrapper .layout-menu-container .layout-inline-menu a {
  color: #515C66;
}
.layout-menu-light .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action,
.layout-menu-light .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item {
  color: #515C66;
}
.layout-menu-light .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action i,
.layout-menu-light .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item i {
  color: #515C66;
}
.layout-menu-light .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action:hover,
.layout-menu-light .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item:hover {
  background-color: rgba(0, 0, 0, 0.04);
}
.layout-menu-light .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action-panel {
  background-color: #FDFEFF;
}
@media (min-width: 992px) {
  .layout-menu-light.layout-menu-horizontal .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul, .layout-menu-light.layout-menu-slim .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul {
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
  }
  .layout-menu-light.layout-menu-horizontal .layout-inline-menu .layout-inline-menu-action-panel {
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
  }
}

.layout-menu-dark {
  color-scheme: dark;
}
.layout-menu-dark {
  --menu-bg-color:#1e1e1e;
  --menu-text-color: rgba(255, 255, 255, 0.6);
}
.layout-menu-dark .layout-menu-wrapper {
  background-color: #1e1e1e;
  box-shadow: 2px 0 4px -1px rgba(0, 0, 0, 0.2), 4px 0 5px 0 rgba(0, 0, 0, 0.14), 1px 0 10px 0 rgba(0, 0, 0, 0.12);
}
.layout-menu-dark .layout-menu-wrapper .layout-menu-container .layout-menu > li > div .layout-menuitem-text {
  color: rgba(255, 255, 255, 0.6);
}
.layout-menu-dark .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul {
  background-color: #1e1e1e;
}
.layout-menu-dark .layout-menu-wrapper .layout-menu-container .layout-menu li a {
  color: rgba(255, 255, 255, 0.87);
}
.layout-menu-dark .layout-menu-wrapper .layout-menu-container .layout-menu li a i {
  color: rgba(255, 255, 255, 0.87);
}
.layout-menu-dark .layout-menu-wrapper .layout-menu-container .layout-menu li a:hover {
  background-color: hsla(0, 0%, 100%, 0.04);
}
.layout-menu-dark .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem > a {
  background-color: hsla(0, 0%, 100%, 0.04);
  color: rgba(255, 255, 255, 0.87);
}
.layout-menu-dark .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem > a > i {
  color: rgba(255, 255, 255, 0.87);
}
.layout-menu-dark .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem a.active-menuitem-routerlink {
  background-color: hsla(0, 0%, 100%, 0.04);
  color: rgba(255, 255, 255, 0.87);
}
.layout-menu-dark .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem a.active-menuitem-routerlink > i {
  color: rgba(255, 255, 255, 0.87);
}
.layout-menu-dark .layout-menu-wrapper .layout-menu-container .layout-inline-menu {
  border-color: hsla(0, 0%, 100%, 0.12);
}
.layout-menu-dark .layout-menu-wrapper .layout-menu-container .layout-inline-menu a {
  color: rgba(255, 255, 255, 0.87);
}
.layout-menu-dark .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action,
.layout-menu-dark .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item {
  color: rgba(255, 255, 255, 0.87);
}
.layout-menu-dark .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action i,
.layout-menu-dark .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item i {
  color: rgba(255, 255, 255, 0.87);
}
.layout-menu-dark .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action:hover,
.layout-menu-dark .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item:hover {
  background-color: hsla(0, 0%, 100%, 0.04);
}
.layout-menu-dark .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action-panel {
  background-color: #1e1e1e;
}
@media (min-width: 992px) {
  .layout-menu-dark.layout-menu-horizontal .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul, .layout-menu-dark.layout-menu-slim .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul {
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
  }
  .layout-menu-dark.layout-menu-horizontal .layout-inline-menu .layout-inline-menu-action-panel {
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
  }
}

.layout-menu-indigo {
  --menu-bg-color:#1A237E;
  --menu-text-color: #ffffff;
}
.layout-menu-indigo .layout-menu-wrapper {
  background-color: #1A237E;
  box-shadow: 2px 0 4px -1px rgba(0, 0, 0, 0.2), 4px 0 5px 0 rgba(0, 0, 0, 0.14), 1px 0 10px 0 rgba(0, 0, 0, 0.12);
}
.layout-menu-indigo .layout-menu-wrapper .layout-menu-container .layout-menu > li > div .layout-menuitem-text {
  color: #ffffff;
}
.layout-menu-indigo .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul {
  background-color: #1A237E;
}
.layout-menu-indigo .layout-menu-wrapper .layout-menu-container .layout-menu li a {
  color: rgba(255, 255, 255, 0.6);
}
.layout-menu-indigo .layout-menu-wrapper .layout-menu-container .layout-menu li a i {
  color: rgba(255, 255, 255, 0.6);
}
.layout-menu-indigo .layout-menu-wrapper .layout-menu-container .layout-menu li a:hover {
  background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-indigo .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem > a {
  background-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
}
.layout-menu-indigo .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem > a > i {
  color: #ffffff;
}
.layout-menu-indigo .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem a.active-menuitem-routerlink {
  background-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
}
.layout-menu-indigo .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem a.active-menuitem-routerlink > i {
  color: #ffffff;
}
.layout-menu-indigo .layout-menu-wrapper .layout-menu-container .layout-inline-menu {
  border-color: rgba(255, 255, 255, 0.24);
}
.layout-menu-indigo .layout-menu-wrapper .layout-menu-container .layout-inline-menu a {
  color: rgba(255, 255, 255, 0.6);
}
.layout-menu-indigo .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action,
.layout-menu-indigo .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item {
  color: rgba(255, 255, 255, 0.6);
}
.layout-menu-indigo .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action i,
.layout-menu-indigo .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item i {
  color: rgba(255, 255, 255, 0.6);
}
.layout-menu-indigo .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action:hover,
.layout-menu-indigo .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item:hover {
  background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-indigo .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action-panel {
  background-color: #1A237E;
}
@media (min-width: 992px) {
  .layout-menu-indigo.layout-menu-horizontal .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul, .layout-menu-indigo.layout-menu-slim .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul {
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
  }
  .layout-menu-indigo.layout-menu-horizontal .layout-inline-menu .layout-inline-menu-action-panel {
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
  }
}

.layout-menu-bluegrey {
  --menu-bg-color:#37474F;
  --menu-text-color: #ffffff;
}
.layout-menu-bluegrey .layout-menu-wrapper {
  background-color: #37474F;
  box-shadow: 2px 0 4px -1px rgba(0, 0, 0, 0.2), 4px 0 5px 0 rgba(0, 0, 0, 0.14), 1px 0 10px 0 rgba(0, 0, 0, 0.12);
}
.layout-menu-bluegrey .layout-menu-wrapper .layout-menu-container .layout-menu > li > div .layout-menuitem-text {
  color: #ffffff;
}
.layout-menu-bluegrey .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul {
  background-color: #37474F;
}
.layout-menu-bluegrey .layout-menu-wrapper .layout-menu-container .layout-menu li a {
  color: rgba(255, 255, 255, 0.6);
}
.layout-menu-bluegrey .layout-menu-wrapper .layout-menu-container .layout-menu li a i {
  color: rgba(255, 255, 255, 0.6);
}
.layout-menu-bluegrey .layout-menu-wrapper .layout-menu-container .layout-menu li a:hover {
  background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-bluegrey .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem > a {
  background-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
}
.layout-menu-bluegrey .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem > a > i {
  color: #ffffff;
}
.layout-menu-bluegrey .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem a.active-menuitem-routerlink {
  background-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
}
.layout-menu-bluegrey .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem a.active-menuitem-routerlink > i {
  color: #ffffff;
}
.layout-menu-bluegrey .layout-menu-wrapper .layout-menu-container .layout-inline-menu {
  border-color: rgba(255, 255, 255, 0.24);
}
.layout-menu-bluegrey .layout-menu-wrapper .layout-menu-container .layout-inline-menu a {
  color: rgba(255, 255, 255, 0.6);
}
.layout-menu-bluegrey .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action,
.layout-menu-bluegrey .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item {
  color: rgba(255, 255, 255, 0.6);
}
.layout-menu-bluegrey .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action i,
.layout-menu-bluegrey .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item i {
  color: rgba(255, 255, 255, 0.6);
}
.layout-menu-bluegrey .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action:hover,
.layout-menu-bluegrey .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item:hover {
  background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-bluegrey .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action-panel {
  background-color: #37474F;
}
@media (min-width: 992px) {
  .layout-menu-bluegrey.layout-menu-horizontal .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul, .layout-menu-bluegrey.layout-menu-slim .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul {
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
  }
  .layout-menu-bluegrey.layout-menu-horizontal .layout-inline-menu .layout-inline-menu-action-panel {
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
  }
}

.layout-menu-brown {
  --menu-bg-color:#4E342E;
  --menu-text-color: #ffffff;
}
.layout-menu-brown .layout-menu-wrapper {
  background-color: #4E342E;
  box-shadow: 2px 0 4px -1px rgba(0, 0, 0, 0.2), 4px 0 5px 0 rgba(0, 0, 0, 0.14), 1px 0 10px 0 rgba(0, 0, 0, 0.12);
}
.layout-menu-brown .layout-menu-wrapper .layout-menu-container .layout-menu > li > div .layout-menuitem-text {
  color: #ffffff;
}
.layout-menu-brown .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul {
  background-color: #4E342E;
}
.layout-menu-brown .layout-menu-wrapper .layout-menu-container .layout-menu li a {
  color: rgba(255, 255, 255, 0.6);
}
.layout-menu-brown .layout-menu-wrapper .layout-menu-container .layout-menu li a i {
  color: rgba(255, 255, 255, 0.6);
}
.layout-menu-brown .layout-menu-wrapper .layout-menu-container .layout-menu li a:hover {
  background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-brown .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem > a {
  background-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
}
.layout-menu-brown .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem > a > i {
  color: #ffffff;
}
.layout-menu-brown .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem a.active-menuitem-routerlink {
  background-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
}
.layout-menu-brown .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem a.active-menuitem-routerlink > i {
  color: #ffffff;
}
.layout-menu-brown .layout-menu-wrapper .layout-menu-container .layout-inline-menu {
  border-color: rgba(255, 255, 255, 0.24);
}
.layout-menu-brown .layout-menu-wrapper .layout-menu-container .layout-inline-menu a {
  color: rgba(255, 255, 255, 0.6);
}
.layout-menu-brown .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action,
.layout-menu-brown .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item {
  color: rgba(255, 255, 255, 0.6);
}
.layout-menu-brown .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action i,
.layout-menu-brown .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item i {
  color: rgba(255, 255, 255, 0.6);
}
.layout-menu-brown .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action:hover,
.layout-menu-brown .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item:hover {
  background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-brown .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action-panel {
  background-color: #4E342E;
}
@media (min-width: 992px) {
  .layout-menu-brown.layout-menu-horizontal .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul, .layout-menu-brown.layout-menu-slim .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul {
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
  }
  .layout-menu-brown.layout-menu-horizontal .layout-inline-menu .layout-inline-menu-action-panel {
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
  }
}

.layout-menu-cyan {
  --menu-bg-color:#006064;
  --menu-text-color: #ffffff;
}
.layout-menu-cyan .layout-menu-wrapper {
  background-color: #006064;
  box-shadow: 2px 0 4px -1px rgba(0, 0, 0, 0.2), 4px 0 5px 0 rgba(0, 0, 0, 0.14), 1px 0 10px 0 rgba(0, 0, 0, 0.12);
}
.layout-menu-cyan .layout-menu-wrapper .layout-menu-container .layout-menu > li > div .layout-menuitem-text {
  color: #ffffff;
}
.layout-menu-cyan .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul {
  background-color: #006064;
}
.layout-menu-cyan .layout-menu-wrapper .layout-menu-container .layout-menu li a {
  color: rgba(255, 255, 255, 0.6);
}
.layout-menu-cyan .layout-menu-wrapper .layout-menu-container .layout-menu li a i {
  color: rgba(255, 255, 255, 0.6);
}
.layout-menu-cyan .layout-menu-wrapper .layout-menu-container .layout-menu li a:hover {
  background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-cyan .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem > a {
  background-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
}
.layout-menu-cyan .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem > a > i {
  color: #ffffff;
}
.layout-menu-cyan .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem a.active-menuitem-routerlink {
  background-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
}
.layout-menu-cyan .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem a.active-menuitem-routerlink > i {
  color: #ffffff;
}
.layout-menu-cyan .layout-menu-wrapper .layout-menu-container .layout-inline-menu {
  border-color: rgba(255, 255, 255, 0.24);
}
.layout-menu-cyan .layout-menu-wrapper .layout-menu-container .layout-inline-menu a {
  color: rgba(255, 255, 255, 0.6);
}
.layout-menu-cyan .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action,
.layout-menu-cyan .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item {
  color: rgba(255, 255, 255, 0.6);
}
.layout-menu-cyan .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action i,
.layout-menu-cyan .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item i {
  color: rgba(255, 255, 255, 0.6);
}
.layout-menu-cyan .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action:hover,
.layout-menu-cyan .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item:hover {
  background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-cyan .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action-panel {
  background-color: #006064;
}
@media (min-width: 992px) {
  .layout-menu-cyan.layout-menu-horizontal .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul, .layout-menu-cyan.layout-menu-slim .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul {
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
  }
  .layout-menu-cyan.layout-menu-horizontal .layout-inline-menu .layout-inline-menu-action-panel {
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
  }
}

.layout-menu-green {
  --menu-bg-color:#2E7D32;
  --menu-text-color: #ffffff;
}
.layout-menu-green .layout-menu-wrapper {
  background-color: #2E7D32;
  box-shadow: 2px 0 4px -1px rgba(0, 0, 0, 0.2), 4px 0 5px 0 rgba(0, 0, 0, 0.14), 1px 0 10px 0 rgba(0, 0, 0, 0.12);
}
.layout-menu-green .layout-menu-wrapper .layout-menu-container .layout-menu > li > div .layout-menuitem-text {
  color: #ffffff;
}
.layout-menu-green .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul {
  background-color: #2E7D32;
}
.layout-menu-green .layout-menu-wrapper .layout-menu-container .layout-menu li a {
  color: rgba(255, 255, 255, 0.6);
}
.layout-menu-green .layout-menu-wrapper .layout-menu-container .layout-menu li a i {
  color: rgba(255, 255, 255, 0.6);
}
.layout-menu-green .layout-menu-wrapper .layout-menu-container .layout-menu li a:hover {
  background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-green .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem > a {
  background-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
}
.layout-menu-green .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem > a > i {
  color: #ffffff;
}
.layout-menu-green .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem a.active-menuitem-routerlink {
  background-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
}
.layout-menu-green .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem a.active-menuitem-routerlink > i {
  color: #ffffff;
}
.layout-menu-green .layout-menu-wrapper .layout-menu-container .layout-inline-menu {
  border-color: rgba(255, 255, 255, 0.24);
}
.layout-menu-green .layout-menu-wrapper .layout-menu-container .layout-inline-menu a {
  color: rgba(255, 255, 255, 0.6);
}
.layout-menu-green .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action,
.layout-menu-green .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item {
  color: rgba(255, 255, 255, 0.6);
}
.layout-menu-green .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action i,
.layout-menu-green .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item i {
  color: rgba(255, 255, 255, 0.6);
}
.layout-menu-green .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action:hover,
.layout-menu-green .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item:hover {
  background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-green .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action-panel {
  background-color: #2E7D32;
}
@media (min-width: 992px) {
  .layout-menu-green.layout-menu-horizontal .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul, .layout-menu-green.layout-menu-slim .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul {
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
  }
  .layout-menu-green.layout-menu-horizontal .layout-inline-menu .layout-inline-menu-action-panel {
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
  }
}

.layout-menu-deeppurple {
  --menu-bg-color:#4527A0;
  --menu-text-color: #ffffff;
}
.layout-menu-deeppurple .layout-menu-wrapper {
  background-color: #4527A0;
  box-shadow: 2px 0 4px -1px rgba(0, 0, 0, 0.2), 4px 0 5px 0 rgba(0, 0, 0, 0.14), 1px 0 10px 0 rgba(0, 0, 0, 0.12);
}
.layout-menu-deeppurple .layout-menu-wrapper .layout-menu-container .layout-menu > li > div .layout-menuitem-text {
  color: #ffffff;
}
.layout-menu-deeppurple .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul {
  background-color: #4527A0;
}
.layout-menu-deeppurple .layout-menu-wrapper .layout-menu-container .layout-menu li a {
  color: rgba(255, 255, 255, 0.6);
}
.layout-menu-deeppurple .layout-menu-wrapper .layout-menu-container .layout-menu li a i {
  color: rgba(255, 255, 255, 0.6);
}
.layout-menu-deeppurple .layout-menu-wrapper .layout-menu-container .layout-menu li a:hover {
  background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-deeppurple .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem > a {
  background-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
}
.layout-menu-deeppurple .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem > a > i {
  color: #ffffff;
}
.layout-menu-deeppurple .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem a.active-menuitem-routerlink {
  background-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
}
.layout-menu-deeppurple .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem a.active-menuitem-routerlink > i {
  color: #ffffff;
}
.layout-menu-deeppurple .layout-menu-wrapper .layout-menu-container .layout-inline-menu {
  border-color: rgba(255, 255, 255, 0.24);
}
.layout-menu-deeppurple .layout-menu-wrapper .layout-menu-container .layout-inline-menu a {
  color: rgba(255, 255, 255, 0.6);
}
.layout-menu-deeppurple .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action,
.layout-menu-deeppurple .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item {
  color: rgba(255, 255, 255, 0.6);
}
.layout-menu-deeppurple .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action i,
.layout-menu-deeppurple .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item i {
  color: rgba(255, 255, 255, 0.6);
}
.layout-menu-deeppurple .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action:hover,
.layout-menu-deeppurple .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item:hover {
  background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-deeppurple .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action-panel {
  background-color: #4527A0;
}
@media (min-width: 992px) {
  .layout-menu-deeppurple.layout-menu-horizontal .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul, .layout-menu-deeppurple.layout-menu-slim .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul {
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
  }
  .layout-menu-deeppurple.layout-menu-horizontal .layout-inline-menu .layout-inline-menu-action-panel {
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
  }
}

.layout-menu-deeporange {
  --menu-bg-color:#BF360C;
  --menu-text-color: #ffffff;
}
.layout-menu-deeporange .layout-menu-wrapper {
  background-color: #BF360C;
  box-shadow: 2px 0 4px -1px rgba(0, 0, 0, 0.2), 4px 0 5px 0 rgba(0, 0, 0, 0.14), 1px 0 10px 0 rgba(0, 0, 0, 0.12);
}
.layout-menu-deeporange .layout-menu-wrapper .layout-menu-container .layout-menu > li > div .layout-menuitem-text {
  color: #ffffff;
}
.layout-menu-deeporange .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul {
  background-color: #BF360C;
}
.layout-menu-deeporange .layout-menu-wrapper .layout-menu-container .layout-menu li a {
  color: rgba(255, 255, 255, 0.6);
}
.layout-menu-deeporange .layout-menu-wrapper .layout-menu-container .layout-menu li a i {
  color: rgba(255, 255, 255, 0.6);
}
.layout-menu-deeporange .layout-menu-wrapper .layout-menu-container .layout-menu li a:hover {
  background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-deeporange .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem > a {
  background-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
}
.layout-menu-deeporange .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem > a > i {
  color: #ffffff;
}
.layout-menu-deeporange .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem a.active-menuitem-routerlink {
  background-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
}
.layout-menu-deeporange .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem a.active-menuitem-routerlink > i {
  color: #ffffff;
}
.layout-menu-deeporange .layout-menu-wrapper .layout-menu-container .layout-inline-menu {
  border-color: rgba(255, 255, 255, 0.24);
}
.layout-menu-deeporange .layout-menu-wrapper .layout-menu-container .layout-inline-menu a {
  color: rgba(255, 255, 255, 0.6);
}
.layout-menu-deeporange .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action,
.layout-menu-deeporange .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item {
  color: rgba(255, 255, 255, 0.6);
}
.layout-menu-deeporange .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action i,
.layout-menu-deeporange .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item i {
  color: rgba(255, 255, 255, 0.6);
}
.layout-menu-deeporange .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action:hover,
.layout-menu-deeporange .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item:hover {
  background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-deeporange .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action-panel {
  background-color: #BF360C;
}
@media (min-width: 992px) {
  .layout-menu-deeporange.layout-menu-horizontal .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul, .layout-menu-deeporange.layout-menu-slim .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul {
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
  }
  .layout-menu-deeporange.layout-menu-horizontal .layout-inline-menu .layout-inline-menu-action-panel {
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
  }
}

.layout-menu-pink {
  --menu-bg-color:#880E4F;
  --menu-text-color: #ffffff;
}
.layout-menu-pink .layout-menu-wrapper {
  background-color: #880E4F;
  box-shadow: 2px 0 4px -1px rgba(0, 0, 0, 0.2), 4px 0 5px 0 rgba(0, 0, 0, 0.14), 1px 0 10px 0 rgba(0, 0, 0, 0.12);
}
.layout-menu-pink .layout-menu-wrapper .layout-menu-container .layout-menu > li > div .layout-menuitem-text {
  color: #ffffff;
}
.layout-menu-pink .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul {
  background-color: #880E4F;
}
.layout-menu-pink .layout-menu-wrapper .layout-menu-container .layout-menu li a {
  color: rgba(255, 255, 255, 0.6);
}
.layout-menu-pink .layout-menu-wrapper .layout-menu-container .layout-menu li a i {
  color: rgba(255, 255, 255, 0.6);
}
.layout-menu-pink .layout-menu-wrapper .layout-menu-container .layout-menu li a:hover {
  background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-pink .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem > a {
  background-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
}
.layout-menu-pink .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem > a > i {
  color: #ffffff;
}
.layout-menu-pink .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem a.active-menuitem-routerlink {
  background-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
}
.layout-menu-pink .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem a.active-menuitem-routerlink > i {
  color: #ffffff;
}
.layout-menu-pink .layout-menu-wrapper .layout-menu-container .layout-inline-menu {
  border-color: rgba(255, 255, 255, 0.24);
}
.layout-menu-pink .layout-menu-wrapper .layout-menu-container .layout-inline-menu a {
  color: rgba(255, 255, 255, 0.6);
}
.layout-menu-pink .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action,
.layout-menu-pink .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item {
  color: rgba(255, 255, 255, 0.6);
}
.layout-menu-pink .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action i,
.layout-menu-pink .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item i {
  color: rgba(255, 255, 255, 0.6);
}
.layout-menu-pink .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action:hover,
.layout-menu-pink .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item:hover {
  background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-pink .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action-panel {
  background-color: #880E4F;
}
@media (min-width: 992px) {
  .layout-menu-pink.layout-menu-horizontal .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul, .layout-menu-pink.layout-menu-slim .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul {
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
  }
  .layout-menu-pink.layout-menu-horizontal .layout-inline-menu .layout-inline-menu-action-panel {
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
  }
}

.layout-menu-purple {
  --menu-bg-color:#6A1B9A;
  --menu-text-color: #ffffff;
}
.layout-menu-purple .layout-menu-wrapper {
  background-color: #6A1B9A;
  box-shadow: 2px 0 4px -1px rgba(0, 0, 0, 0.2), 4px 0 5px 0 rgba(0, 0, 0, 0.14), 1px 0 10px 0 rgba(0, 0, 0, 0.12);
}
.layout-menu-purple .layout-menu-wrapper .layout-menu-container .layout-menu > li > div .layout-menuitem-text {
  color: #ffffff;
}
.layout-menu-purple .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul {
  background-color: #6A1B9A;
}
.layout-menu-purple .layout-menu-wrapper .layout-menu-container .layout-menu li a {
  color: rgba(255, 255, 255, 0.6);
}
.layout-menu-purple .layout-menu-wrapper .layout-menu-container .layout-menu li a i {
  color: rgba(255, 255, 255, 0.6);
}
.layout-menu-purple .layout-menu-wrapper .layout-menu-container .layout-menu li a:hover {
  background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-purple .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem > a {
  background-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
}
.layout-menu-purple .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem > a > i {
  color: #ffffff;
}
.layout-menu-purple .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem a.active-menuitem-routerlink {
  background-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
}
.layout-menu-purple .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem a.active-menuitem-routerlink > i {
  color: #ffffff;
}
.layout-menu-purple .layout-menu-wrapper .layout-menu-container .layout-inline-menu {
  border-color: rgba(255, 255, 255, 0.24);
}
.layout-menu-purple .layout-menu-wrapper .layout-menu-container .layout-inline-menu a {
  color: rgba(255, 255, 255, 0.6);
}
.layout-menu-purple .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action,
.layout-menu-purple .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item {
  color: rgba(255, 255, 255, 0.6);
}
.layout-menu-purple .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action i,
.layout-menu-purple .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item i {
  color: rgba(255, 255, 255, 0.6);
}
.layout-menu-purple .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action:hover,
.layout-menu-purple .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item:hover {
  background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-purple .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action-panel {
  background-color: #6A1B9A;
}
@media (min-width: 992px) {
  .layout-menu-purple.layout-menu-horizontal .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul, .layout-menu-purple.layout-menu-slim .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul {
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
  }
  .layout-menu-purple.layout-menu-horizontal .layout-inline-menu .layout-inline-menu-action-panel {
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
  }
}

.layout-menu-teal {
  --menu-bg-color:#00695C;
  --menu-text-color: #ffffff;
}
.layout-menu-teal .layout-menu-wrapper {
  background-color: #00695C;
  box-shadow: 2px 0 4px -1px rgba(0, 0, 0, 0.2), 4px 0 5px 0 rgba(0, 0, 0, 0.14), 1px 0 10px 0 rgba(0, 0, 0, 0.12);
}
.layout-menu-teal .layout-menu-wrapper .layout-menu-container .layout-menu > li > div .layout-menuitem-text {
  color: #ffffff;
}
.layout-menu-teal .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul {
  background-color: #00695C;
}
.layout-menu-teal .layout-menu-wrapper .layout-menu-container .layout-menu li a {
  color: rgba(255, 255, 255, 0.6);
}
.layout-menu-teal .layout-menu-wrapper .layout-menu-container .layout-menu li a i {
  color: rgba(255, 255, 255, 0.6);
}
.layout-menu-teal .layout-menu-wrapper .layout-menu-container .layout-menu li a:hover {
  background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-teal .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem > a {
  background-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
}
.layout-menu-teal .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem > a > i {
  color: #ffffff;
}
.layout-menu-teal .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem a.active-menuitem-routerlink {
  background-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
}
.layout-menu-teal .layout-menu-wrapper .layout-menu-container .layout-menu li.active-menuitem a.active-menuitem-routerlink > i {
  color: #ffffff;
}
.layout-menu-teal .layout-menu-wrapper .layout-menu-container .layout-inline-menu {
  border-color: rgba(255, 255, 255, 0.24);
}
.layout-menu-teal .layout-menu-wrapper .layout-menu-container .layout-inline-menu a {
  color: rgba(255, 255, 255, 0.6);
}
.layout-menu-teal .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action,
.layout-menu-teal .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item {
  color: rgba(255, 255, 255, 0.6);
}
.layout-menu-teal .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action i,
.layout-menu-teal .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item i {
  color: rgba(255, 255, 255, 0.6);
}
.layout-menu-teal .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action:hover,
.layout-menu-teal .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item:hover {
  background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-teal .layout-menu-wrapper .layout-menu-container .layout-inline-menu .layout-inline-menu-action-panel {
  background-color: #00695C;
}
@media (min-width: 992px) {
  .layout-menu-teal.layout-menu-horizontal .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul, .layout-menu-teal.layout-menu-slim .layout-menu-wrapper .layout-menu-container .layout-menu > li > ul {
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
  }
  .layout-menu-teal.layout-menu-horizontal .layout-inline-menu .layout-inline-menu-action-panel {
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
  }
}

body .layout-megamenu.ui-megamenu {
  border: 0 none;
  padding: 0;
}

html {
  height: 100%;
  font-size: 14px;
}

body {
  font-family: Roboto, "Helvetica Neue", sans-serif;
  font-size: 1rem;
  color: #212121;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 0;
  margin: 0;
  background-color: #f7f7f7;
  min-height: 100%;
}
body a {
  text-decoration: none;
  color: #616161;
}

.layout-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 996;
  width: 100%;
  height: 100%;
  animation-duration: 0.2s;
  animation-timing-function: cubic-bezier(0.05, 0.74, 0.2, 0.99);
  animation-fill-mode: forwards;
}

.layout-wrapper .layout-main {
  padding-top: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}
.layout-wrapper .layout-main .layout-content {
  padding: 2rem;
  padding-top: 1rem;
  flex: 1 1 0;
}

.layout-ajax-loader-icon {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  font-size: 2rem !important;
  color: #616161;
  z-index: 999;
  pointer-events: none;
}

.layout-topbar .notifications .layout-topbar-action-panel img {
  width: 32px;
  height: 32px;
}
.layout-topbar .notifications .layout-topbar-action-panel .layout-topbar-action-item {
  border-bottom: 1px solid var(--divider-color);
}
.layout-topbar .notifications .layout-topbar-action-panel .layout-topbar-action-item:last-child {
  border-bottom: 0 none;
}
.layout-topbar .app .layout-topbar-action-panel a {
  padding: 0.5rem 0;
}
.layout-topbar .app .layout-topbar-action-panel a i {
  width: 42px;
  height: 42px;
  border: 1px solid transparent;
  border-radius: 50%;
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.layout-rightmenu .header {
  padding-bottom: 0.5rem;
  margin-bottom: 0.714rem;
  border-bottom: 1px solid var(--divider-color);
}
.layout-rightmenu .online-members img {
  width: 32px;
}
.layout-rightmenu .online-members b {
  color: var(--primary-color);
}
.layout-rightmenu .latest-activity i {
  border: 1px solid transparent;
  border-radius: 50px;
  background-color: var(--surface-d);
}
.layout-rightmenu .next-events ul {
  margin: 0;
  list-style-type: none;
  padding: 0;
}
.layout-rightmenu .next-events ul > li {
  padding: 0.875rem 0.5rem;
}

.layout-help-page .questions.ui-accordion .ui-accordion-tab {
  margin-top: 1rem;
  overflow: hidden;
}
.layout-help-page .questions.ui-accordion:first-child .ui-accordion-tab {
  margin-top: 0;
}

@media (min-width: 992px) {
  .layout-menu-slim .layout-inline-menu .layout-inline-menu-action {
    justify-content: center;
  }
  .layout-menu-slim .layout-inline-menu .layout-inline-menu-action > span,
  .layout-menu-slim .layout-inline-menu .layout-inline-menu-action > i {
    display: none !important;
  }
  .layout-menu-slim .layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item > a {
    justify-content: center;
  }
  .layout-menu-slim .layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item > a > i {
    font-size: 1.5rem;
    margin-right: 0 !important;
  }
  .layout-menu-slim .layout-inline-menu .layout-inline-menu-action-panel .layout-inline-menu-action-item > a > span {
    display: none;
  }
}
.layout-footer {
  background-color: #ffffff;
}
.layout-footer .layout-footer-action.ui-button.ui-button-icon-only {
  width: 2.75rem;
  padding: 0.643rem;
}
.layout-footer .layout-footer-action.ui-button.ui-button-icon-only .ui-icon {
  font-size: 1.5rem;
  margin-top: -0.75rem;
  margin-left: -0.75rem;
}

.layout-config {
  transition: transform 0.2s;
}
.layout-config .ui-sidebar-content,
.layout-config .layout-config-panel {
  height: 100%;
}
.layout-config .layout-config-options {
  height: 100%;
  overflow-y: auto;
}
.layout-config .layout-config-options .layout-config-color-option {
  width: 1.75rem;
  height: 1.75rem;
  display: block;
  position: relative;
}
.layout-config .layout-config-options .layout-config-color-option.ui-state-disabled {
  opacity: 0.1;
}
.layout-config .layout-config-options .layout-config-color-option .color {
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  border: 1px solid #E4E4E4;
}
.layout-config .layout-config-options .layout-config-color-option .check {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  pointer-events: none;
  width: 100%;
  height: 100%;
}
.layout-config .layout-config-options .grid-radio td {
  padding-top: 1rem;
}
.layout-config .layout-config-options .grid-radio tr:first-child td {
  padding-top: 0;
}
.layout-config p {
  color: var(--text-color-secondary);
}
.layout-config .scale-icon {
  color: var(--surface-d);
}
.layout-config .scale-icon.scale-active {
  color: var(--primary-color);
}

.layout-config-button.ui-button.ui-button-icon-only {
  z-index: 1001;
  position: fixed;
  top: 50%;
  right: 0;
  width: auto;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  font-size: 2rem;
  width: 3.5rem;
}
.layout-config-button.ui-button.ui-button-icon-only .ui-icon {
  font-size: 2rem;
  margin-top: -1rem;
  margin-left: -1rem;
}

.layout-breadcrumb-container {
  background-color: #ffffff;
}
.layout-breadcrumb-container .layout-breadcrumb {
  background: transparent;
  border: 0 none;
  border-radius: 0;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "HSN Shahd" !important;
  font-weight: 100;
  font-style: normal;
  direction: rtl;
  font-size: 14px;
  background: #fff;
}

@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1250px;
  }
}
body .enText {
  font-family: "IBM Plex Sans Arabic", sans-serif !important;
  direction: ltr;
  text-align: right;
}

a {
  text-decoration: none;
  font-family: inherit;
}

body .ui-widget {
  font-family: inherit;
}

.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loader {
  border: 5px solid #f3f3f3;
  border-top: 5px solid #a01abf; /* اللون الأرجواني */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* إخفاء الـ Loader */
.loader-hidden {
  opacity: 0;
  visibility: hidden;
}

/* Header */
.header {
  height: auto;
  padding: 10px 20px;
  padding-top: 30px;
  position: relative;
  z-index: 10;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.header .ui-selectonemenu-panel {
  width: 130px !important;
}
.header .dropdown .ui-selectonemenu {
  padding: 7px 12px;
  background: #ffffff;
  color: #000000;
  border: 1px solid #fff;
  border-radius: 12px;
  text-decoration: none;
  font-size: clamp(14px, 1.8vw, 16px); /* ديناميكي (بدل 16px) */
  transition: 0.3s;
  background: #a01abf;
  color: #ffffff;
  border-color: #9b59b6;
  font-size: 15px;
}
.header .dropdown .ui-selectonemenu:hover {
  background: #fd9e50;
  color: #ffffff;
}
.header .dropdown .ui-selectonemenu .ui-selectonemenu-label {
  padding: 1px 25px 0px 12px;
  font-size: 15px;
  color: #ffffff;
}
.header .dropdown .ui-selectonemenu .ui-icon, .header .dropdown .ui-selectonemenu .ui-selectonemenu-label {
  color: #ffffff;
}
.header .dropdown img {
  max-width: 20px;
  margin-left: 5px;
}
.header .auth-buttons {
  width: 44%;
  display: flex;
  gap: 10px;
  min-width: 340px;
  justify-content: end;
}
.header .auth-buttons ul.nav-list2 {
  margin: 0;
  list-style: none;
  display: flex;
  gap: 10px;
  padding: 0;
}
.header .auth-buttons .dropdown {
  margin-top: 0 !important;
}
.header .auth-buttons .dropdown .ui-selectonemenu, .header .auth-buttons .dropdown a {
  padding: 8px 12px;
  background: #ffffff;
  color: #000000;
  border: 1px solid #fff;
  border-radius: 12px;
  text-decoration: none;
  font-size: clamp(14px, 1.8vw, 16px); /* ديناميكي (بدل 16px) */
  transition: 0.3s;
  background: #a01abf;
  color: #ffffff;
  border-color: #9b59b6;
  font-size: 15px;
}
.header .auth-buttons .dropdown .ui-selectonemenu:hover, .header .auth-buttons .dropdown a:hover {
  background-color: #fd9e50;
  color: #ffffff;
}
.header .auth-buttons .dropdown .ui-selectonemenu {
  padding: 8px 12px 8px 30px;
  background: url(/jakarta.faces.resource/demo/images/demo/globe.png.xhtml) no-repeat 10px center;
  background-color: #a01abf;
  background-size: 20px;
}
.header .auth-buttons .dropdown .ui-selectonemenu .ui-selectonemenu-label {
  padding: 1px 25px 0px 12px;
  font-size: 15px;
  color: #ffffff;
}
.header .auth-buttons .dropdown .ui-selectonemenu .ui-icon, .header .auth-buttons .dropdown .ui-selectonemenu .ui-selectonemenu-label {
  color: #ffffff;
}
.header .auth-buttons .dropdown img {
  max-width: 20px;
  margin-left: 5px;
}
.header .auth-buttons .btn {
  padding: 8px 12px;
  background: #ffffff;
  color: #000000;
  border: 1px solid #fff;
  border-radius: 12px;
  text-decoration: none;
  font-size: clamp(14px, 1.8vw, 16px); /* ديناميكي (بدل 16px) */
  transition: 0.3s;
  background: #a01abf;
  color: #ffffff;
  border-color: #9b59b6;
  font-size: 15px;
}
.header .auth-buttons .btn:hover {
  background: #fd9e50;
  color: #ffffff;
}
.header .header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .header-main .nav {
  width: 44%;
}
.header .header-main .nav .nav-list {
  list-style: none;
  display: flex;
  gap: 10px;
  margin: 0;
}
.header .header-main .nav .nav-list li.dropdown img {
  max-width: 20px;
  margin-left: 5px;
}
.header .header-main .nav .nav-list li a {
  font-weight: 600;
  padding: 10px 15px;
  border-radius: 12px;
  text-decoration: none;
  font-size: clamp(14px, 1.8vw, 16px); /* ديناميكي (بدل 16px) */
  transition: 0.3s;
  background: #a01abf;
  color: #ffffff;
  border-color: #9b59b6;
  font-size: 15px;
}
.header .header-main .nav .nav-list li a:hover {
  background: #fd9e50;
  color: #ffffff;
}
.header .header-main .nav .nav-list li a.langBtn img {
  max-width: 25px;
}
.header .header-main .logo {
  width: 12%;
  display: flex;
  align-items: center;
}
.header .header-main .logo img {
  max-width: 140px;
}
.header .header-main .logo .logo-icon {
  font-size: clamp(18px, 2.2vw, 22px); /* ديناميكي (بدل 22px) */
}
.header .header-main .menu-toggle {
  display: none;
  font-size: clamp(24px, 3vw, 28px); /* ديناميكي (بدل 28px) */
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}
.header .dropdown, .header .dropdown-center, .header .dropend, .header .dropstart, .header .dropup, .header .dropup-center {
  position: relative;
  margin-top: -10px;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 270px;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  padding: 20px;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mobile-menu .mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-menu .mobile-menu-header .close-menu {
  font-size: clamp(24px, 3vw, 28px); /* ديناميكي (بدل 28px) */
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-menu .mobile-nav-list {
  list-style: none;
  margin-top: 30px;
}
.mobile-menu .mobile-nav-list li {
  margin-bottom: 20px;
}
.mobile-menu .mobile-nav-list li a {
  text-decoration: none;
  color: #333;
  font-size: clamp(16px, 2vw, 18px); /* ديناميكي (بدل 18px) */
}
.mobile-menu .mobile-auth-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 999;
}

/* Responsive */
@media (max-width: 768px) {
  .header .header-main .nav,
  .header .header-main .auth-buttons {
    display: none;
  }
  .header .header-main .menu-toggle {
    display: block;
  }
}
body .ui-selectonemenu-panel .ui-selectonemenu-items .ui-selectonemenu-item {
  text-align: right;
}

/* إخفاء أي شريط تحكم إضافي (PrimeFaces أو مكونات أخرى) */
.ui-videoplayer-controls, video::-webkit-media-controls, video::-webkit-media-controls-panel {
  display: none !important;
}

body {
  /* Social Icons Styles */
  /* X (Twitter) specific styling */
  /* Custom icon colors on hover if needed */
  /* إضافة أيقونة fa-location-dot من Font Awesome */
  /* Services Section Styles */
  /* أنماط أيقونة واتساب */
}
body .ui-selectonemenu-panel {
  width: 160px !important;
}
body .social-icons-container {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 12px;
  margin-top: 65px;
  padding: 10px 0;
}
body .social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #8e44ad;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: clamp(18px, 2vw, 20px); /* ديناميكي (بدل 20px) */
}
body .social-icon:hover {
  transform: translateY(-3px);
  background-color: #9b59b6;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
body .social-icon i {
  font-size: clamp(1rem, 1.6vw, 1.2rem); /* ديناميكي (بدل 1.2rem) */
}
body .social-icon.x-twitter .x-icon {
  font-weight: bold;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem); /* ديناميكي (بدل 1.5rem) */
  line-height: 1;
}
body .social-icon.instagram:hover {
  background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}
body .social-icon.facebook:hover {
  background-color: #3b5998;
}
body .social-icon.x-twitter:hover {
  background-color: #000000;
}
body .heroSection {
  position: relative;
  height: 75vh;
}
body .heroSection .slogan-container {
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  z-index: 3;
  width: max-content;
  margin: 0 auto;
  margin-bottom: 30px;
}
body .heroSection .slogan-text {
  font-size: clamp(1.5rem, 5vw, 3.5rem); /* ديناميكي (بدل 1.5em و 4.5em) */
  color: white;
  background: linear-gradient(135deg, #a01abf, #a01abf);
  padding: 15px 30px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  font-weight: 600;
}
body .heroSection .slogan-text {
  font-size: clamp(1.5rem, 5vw, 3.5rem); /* ديناميكي (بدل 4.5em) */
  background: transparent;
  padding: 10px 20px 30px 20px;
  border-radius: 0;
  box-shadow: none;
  border: none;
  border-radius: 12px;
  font-weight: 600;
}
body .heroSection .ui-selectonemenu {
  border: none;
  background: #F2F2F2;
}
body .heroSection .ui-selectonemenu .ui-selectonemenu-label {
  pading-right: 0;
  padding-left: 30px;
}
body .heroSection .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding: 30px 0;
}
body .heroSection .container .row {
  width: 100%;
}
body .heroSection .imageContainer video,
body .heroSection .imageContainer img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
}
body .heroSection .search-container {
  margin: 0 auto;
  margin-bottom: -40px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  padding: 20px;
}
body .heroSection .search-box {
  width: 100%;
  max-width: 700px;
  background-color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  margin: 0 auto;
  margin-bottom: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  justify-content: space-between;
}
body .heroSection .search-input-container {
  flex: 1;
}
body .heroSection .search-input {
  width: 100% !important;
  border: none !important;
  font-size: clamp(14px, 1.8vw, 16px) !important; /* ديناميكي (بدل 16px) */
  padding: 0.5rem !important;
}
body .heroSection .search-input:focus {
  box-shadow: none !important;
}
body .heroSection .location-selector {
  margin-left: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: #F2F2F2;
  border-radius: 5px !important;
  width: 160px !important;
}
body .heroSection .location-label {
  margin-left: 0.5rem;
  font-weight: bold;
  color: #333;
}
body .heroSection .location-icon {
  background: transparent !important;
  border: none !important;
  color: #222 !important;
}
body .heroSection .search-button-container {
  margin-right: 0.5rem;
  margin-left: auto;
}
body .heroSection .search-button {
  background: transparent !important;
  border: none !important;
  color: #222 !important;
}
body .heroSection .category-pills {
  display: flex;
  justify-content: center;
  gap: 5px;
  flex-wrap: wrap;
}
body .heroSection .category-pill {
  color: white !important;
  border-radius: 12px;
  padding: 0.5rem 1.25rem;
  font-size: clamp(12px, 1.6vw, 14px); /* ديناميكي (بدل 14px) */
  text-decoration: none !important;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid #fff;
  font-weight: 600;
}
body .heroSection .category-pill:hover {
  background-color: #fd9e50;
  transform: translateY(-2px);
}
body .location-menu .ui-selectonemenu-label::before {
  content: "\f3c5";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(14px, 1.8vw, 16px); /* ديناميكي (بدل 16px) */
  color: #333;
}
body .services-section {
  padding: 6rem 0;
  background-color: #ffffff;
}
body .services-section .services-heading {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.5rem); /* ديناميكي (بدل 2.5rem) */
  font-weight: 700;
  margin-bottom: 3rem;
  color: #a01abf;
  position: relative;
  padding-bottom: 1rem;
}
body .services-section .services-heading:after {
  content: "";
  position: absolute;
  width: 80px;
  height: 4px;
  background: #a01abf;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}
body .services-section .categories-container {
  margin-bottom: 3rem;
}
body .services-section .main-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
body .services-section .category-button {
  background-color: #ffffff;
  color: #a01abf;
  border: 2px solid #a01abf;
  border-radius: 12px;
  padding: 0.7rem 1.8rem;
  font-size: clamp(1rem, 1.8vw, 1.1rem); /* ديناميكي (بدل 1.1rem) */
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
body .services-section .category-button:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #a01abf;
  transition: all 0.3s ease-in-out;
  z-index: -1;
  border-radius: 7px;
}
body .services-section .category-button:hover {
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
body .services-section .category-button:hover:before {
  width: 100%;
}
body .services-section .category-button.active {
  background-color: #a01abf;
  color: #ffffff;
}
body .services-section .subcategories-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
body .services-section .subcategory-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
}
body .services-section .subcategory-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
body .services-section .subcategory-header {
  background-color: #a01abf;
  color: #ffffff;
  padding: 1rem;
  text-align: center;
  font-size: clamp(1rem, 1.8vw, 1.2rem); /* ديناميكي (بدل 1.2rem) */
  font-weight: 600;
}
body .services-section .subcategory-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
body .services-section .subcategory-link {
  display: flex;
  align-items: center;
  padding: 0.8rem 1.2rem;
  color: #555555;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
body .services-section .subcategory-link i {
  margin-left: 0.5rem;
  color: #a01abf;
  font-size: clamp(12px, 1.6vw, 14px); /* ديناميكي (بدل 0.8rem) */
  transition: all 0.3s ease-in-out;
}
body .services-section .subcategory-link:hover {
  background-color: #f3e5f5;
  color: #a01abf;
  padding-right: 1.5rem;
}
body .services-section .subcategory-link:hover i {
  transform: translateX(-5px);
}
body .services-section .subcategory-link:last-child {
  border-bottom: none;
}
body .shine {
  position: relative;
  overflow: hidden;
}
body .shine::after {
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  content: "";
  display: block;
  height: 100%;
  left: -75%;
  position: absolute;
  top: 0;
  transform: skewX(-25deg);
  width: 50%;
  z-index: 2;
}
body .shine:hover::after, body .shine:focus::after {
  animation: shine 0.85s;
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
@media (max-width: 768px) {
  body .services-section .services-heading {
    font-size: clamp(1.5rem, 3.5vw, 2rem); /* ديناميكي (بدل 2rem) */
  }
  body .services-section .category-button {
    padding: 0.6rem 1.4rem;
    font-size: clamp(0.9rem, 1.6vw, 1rem); /* ديناميكي (بدل 1rem) */
  }
  body .services-section .subcategories-container {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
  }
}
body .heroSection.searchSection {
  height: auto;
}
body .heroSection.searchSection:before {
  display: none;
}
body .heroSection.searchSection .slogan-text {
  color: #a01abf;
}
body .heroSection.searchSection .search-box {
  background: transparent;
  box-shadow: none;
  max-width: 100%;
  padding: 0;
}
body .heroSection.searchSection .linkTo {
  background: #7500c0;
  color: #ffffff;
  margin-right: 20px;
  padding: 0.643rem;
  border-radius: 4px;
  min-width: 240px;
}
body .heroSection.searchSection .linkTo span {
  text-decoration: underline;
  font-weight: 600;
  display: block;
  margin: 0 auto;
  width: max-content;
}
body .heroSection.searchSection .search-input-container {
  flex: unset;
}
body .heroSection.searchSection .category-pill {
  color: #a01abf !important;
  border-color: #a01abf;
}
body .heroSection.searchSection .search-input {
  border: 1px solid #a01abf !important;
}
body .heroSection.searchSection .search-input::placeholder {
  color: #a01abf;
}
body .heroSection.searchSection .location-selector {
  background: #a01abf;
}
body .heroSection.searchSection .location-selector.firstLable {
  color: #222222;
  background: transparent;
  min-width: 230px;
}
body .heroSection.searchSection .location-selector.firstLable .ui-widget {
  font-size: 16px;
}
body .heroSection.searchSection .location-selector .ui-selectonemenu {
  background: #a01abf;
  width: 100%;
}
body .heroSection.searchSection .location-selector .ui-selectonemenu .ui-selectonemenu-label {
  pading-right: 0;
  padding-left: 30px;
  color: #fff;
  min-width: 130px;
  text-align: center;
}
body .heroSection.searchSection .location-selector .ui-selectonemenu .ui-selectonemenu-label::before {
  display: none;
}
body .heroSection.searchSection .location-selector .ui-selectonemenu .ui-selectonemenu-trigger .ui-icon {
  color: #fff;
}
body .heroSection.searchSection .search-button {
  background: #a01abf !important;
  color: #ffffff !important;
}
@media (max-width: 576px) {
  body .services-section .services-heading {
    font-size: clamp(1.3rem, 3vw, 1.8rem); /* ديناميكي (بدل 1.8rem) */
  }
  body .services-section .main-categories {
    justify-content: center;
  }
  body .services-section .subcategories-container {
    grid-template-columns: 1fr;
  }
}
body .searchSection.innerSearch .search-box {
  justify-content: space-between;
  padding: 10px 0;
}
body .searchSection.innerSearch .search-button-container {
  margin-left: auto;
}
body .searchSection.innerSearch .search-container {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  padding: 20px;
}
body .trend-container {
  padding: 70px 0;
  padding-top: 0;
}
body .trend-container .ui-tabs.ui-tabs-top > .ui-tabs-nav {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  background-color: #f3f3f3;
  border-radius: 12px;
  width: max-content;
  margin: 20px auto;
  padding: 0;
}
body .trend-container .ui-tabs.ui-tabs-top > .ui-tabs-nav:before {
  display: none;
}
body .trend-container .ui-tabs.ui-tabs-top > .ui-tabs-nav li {
  padding: 0;
  background: transparent;
  border: none !important;
}
body .trend-container .ui-tabs.ui-tabs-top > .ui-tabs-nav li a {
  color: #000000;
  padding: 15px 40px;
  border-radius: 12px;
  background-color: #f3f3f3;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  font-size: clamp(1.2rem, 2.5vw, 1.4rem); /* ديناميكي (بدل 1.6rem) */
  border: none !important;
}
body .trend-container .ui-tabs.ui-tabs-top > .ui-tabs-nav li.ui-state-active[data-index="0"] a {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}
body .trend-container .ui-tabs.ui-tabs-top > .ui-tabs-nav li.ui-state-active[data-index="1"] a {
  border-radius: 0;
}
body .trend-container .ui-tabs.ui-tabs-top > .ui-tabs-nav li.ui-state-active[data-index="2"] a {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
body .trend-container .ui-tabs.ui-tabs-top > .ui-tabs-nav li.ui-state-active {
  background: transparent;
}
body .trend-container .ui-tabs.ui-tabs-top > .ui-tabs-nav li.ui-state-active a {
  background-color: #a01abf;
  color: #f3f3f3;
}
body .trend-container .services-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 15px;
  justify-content: space-between;
}
body .trend-container .service-card {
  width: 23%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}
body .trend-container .service-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.2);
  opacity: 0.2;
  z-index: 1;
}
body .trend-container .service-image {
  width: 100%;
  height: 382px;
  object-fit: cover;
  position: relative;
  z-index: 0;
}
body .trend-container .service-info {
  padding: 15px;
  background: linear-gradient(to top, rgb(1, 1, 1), transparent);
  position: absolute;
  bottom: 0;
  width: 100%;
  color: white;
  text-align: center;
  display: block;
  z-index: 2;
}
body .trend-container .service-title {
  font-size: clamp(16px, 2vw, 16px); /* ديناميكي (بدل 18px) */
  font-weight: bold;
  margin-bottom: 5px;
  display: block;
  color: #ffffff !important;
}
body .trend-container .service-category {
  font-size: clamp(12px, 1.6vw, 14px); /* ديناميكي (بدل 14px) */
  color: #ccc;
  display: block;
}
body .trend-container .rating {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #ffb400;
  padding: 3px 8px;
  border-radius: 15px;
  font-size: clamp(12px, 1.6vw, 14px); /* ديناميكي (بدل 14px) */
  z-index: 2;
}
body .whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: transform 0.3s ease;
}
body .whatsapp-icon i {
  font-size: clamp(26px, 3vw, 30px); /* ديناميكي (بدل 30px) */
}
body .whatsapp-icon:hover {
  transform: scale(1.1);
  background-color: #20bd57;
}
body .live-chat-icon {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background-color: #fd9e50;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: transform 0.3s ease;
}
body .live-chat-icon i {
  font-size: clamp(26px, 3vw, 30px); /* ديناميكي (بدل 30px) */
}
body .live-chat-icon:hover {
  transform: scale(1.1);
  background-color: #0056b3;
}

.heading-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.heading-title h2 {
  font-size: clamp(18px, 2.5vw, 22px); /* ديناميكي (بدل 24px) */
  font-weight: bold;
  color: #a01abf;
}
.heading-title .arrow-link {
  color: #a01abf;
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: clamp(18px, 2.2vw, 20px); /* ديناميكي (بدل 22px) */
  font-weight: 500;
  transition: 0.3s;
}
.heading-title .arrow-link:hover {
  color: #fd9e50;
}
.heading-title .arrow-link .pi {
  font-size: clamp(18px, 2.2vw, 22px); /* ديناميكي (بدل 22px) */
  margin-right: 10px;
}

.expert-container .experts-grid {
  display: flex;
  gap: 20px;
  position: relative;
}
.expert-container .expert-card {
  width: 32%;
  border-radius: 15px;
  overflow: hidden;
  background-color: #9c27b0;
  color: white;
  position: relative;
  display: flex;
  justify-content: end;
  z-index: 2;
  height: 280px;
}
.expert-container .expert-card:hover img {
  transform: scale(1.1);
}
.expert-container .expert-card:hover .contact-button {
  background: #fd9e50;
  color: #ffffff;
}
.expert-container .expert-info {
  padding: 20px;
  width: 56%;
  z-index: 2;
  position: relative;
  text-align: left;
  justify-content: center;
  display: flex;
  flex-direction: column;
}
.expert-container .expert-name {
  font-size: clamp(18px, 2.5vw, 24px); /* ديناميكي (بدل 24px) */
  font-weight: bold;
  margin-bottom: 15px;
}
.expert-container .expert-title {
  font-size: clamp(12px, 1.6vw, 14px); /* ديناميكي (بدل 14px) */
  margin-bottom: 5px;
}
.expert-container .expert-location {
  font-size: clamp(12px, 1.6vw, 14px); /* ديناميكي (بدل 14px) */
}
.expert-container .expert-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: 0.5s ease-in-out;
}
.expert-container .contact-button {
  background-color: white;
  color: #333;
  border-radius: 12px;
  padding: 0 5px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  margin-top: 14px;
  width: max-content;
  margin-right: auto;
}
.expert-container .contact-button:hover {
  background: #fd9e50;
}

.gallery-section {
  padding: 70px 0;
  padding-bottom: 40px;
}
.gallery-section .gallery-container {
  margin: 20px auto;
}
.gallery-section .gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.gallery-section .gallery-header .gallery-title {
  color: #9c27b0;
  font-size: clamp(18px, 2.5vw, 24px); /* ديناميكي (بدل 24px) */
  font-weight: bold;
}
.gallery-section .gallery-header .browse-link {
  color: #9c27b0;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.gallery-section .gallery-header .browse-link i {
  margin-left: 5px;
}
.gallery-section .gallery-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  grid-template-rows: 300px 285px;
  grid-gap: 15px;
}
.gallery-section .gallery-grid .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}
.gallery-section .gallery-grid .gallery-item:hover .gallery-image {
  transform: scale(1.05);
}
.gallery-section .gallery-grid .gallery-item .gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-section .gallery-grid .item-large-top {
  grid-column: 1/3;
  grid-row: 1;
}
.gallery-section .gallery-grid .item-right-top {
  grid-column: 3;
  grid-row: 1;
}
.gallery-section .gallery-grid .item-left-middle {
  grid-column: 1;
  grid-row: 2;
}
.gallery-section .gallery-grid .item-middle-large {
  grid-column: 2;
  grid-row: 2;
}
.gallery-section .gallery-grid .item-right-bottom {
  grid-column: 3;
  grid-row: 2;
}

.ui-dialog.gallery-dialog {
  padding: 0;
}
.ui-dialog.gallery-dialog .ui-dialog-content {
  padding: 0;
  overflow: hidden;
}

.mobile-menu {
  overflow: hidden;
}

body .ui-galleria.ui-widget {
  background-color: rgba(0, 0, 0, 0.95);
  padding: 0;
}
body .ui-galleria .ui-galleria-item-wrapper {
  padding: 0;
}
body .ui-galleria .ui-galleria-item-wrapper img {
  max-height: 85vh;
  object-fit: contain;
}
body .ui-galleria .ui-galleria-caption {
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  text-align: center;
  padding: 10px;
}
body .ui-galleria .ui-galleria-caption h4 {
  margin: 0 0 5px 0;
  font-size: clamp(16px, 2vw, 18px); /* ديناميكي (بدل 18px) */
}
body .ui-galleria .ui-galleria-caption p {
  margin: 0;
  font-size: clamp(12px, 1.6vw, 14px); /* ديناميكي (بدل 14px) */
}
body .ui-galleria .ui-galleria-nav-next,
body .ui-galleria .ui-galleria-nav-prev {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin: 0 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .ui-galleria .ui-galleria-nav-next:hover,
body .ui-galleria .ui-galleria-nav-prev:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
body .ui-galleria .ui-galleria-nav-next .ui-icon,
body .ui-galleria .ui-galleria-nav-prev .ui-icon {
  color: #fff;
  font-size: clamp(16px, 2vw, 18px); /* ديناميكي (بدل 18px) */
}
body .ui-galleria.ui-galleria-fullscreen .ui-galleria-item-nav {
  font-size: clamp(20px, 2.5vw, 24px); /* ديناميكي (بدل 24px) */
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .subcategory-column {
    flex: 0 0 30%;
  }
}
@media (max-width: 768px) {
  .subcategory-column {
    flex: 0 0 45%;
  }
  .category-button {
    font-size: clamp(0.9rem, 1.6vw, 1.1rem) !important; /* ديناميكي (بدل 1.1rem) */
  }
}
@media (max-width: 576px) {
  .subcategory-column {
    flex: 0 0 100%;
  }
  .main-categories {
    flex-direction: column;
  }
  .category-button {
    width: 100%;
  }
}
.news-section {
  padding: 60px 0;
  background-size: cover;
  position: relative;
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding: 0 15px;
}
.news-header h2 {
  font-size: clamp(20px, 3vw, 28px); /* ديناميكي (بدل 28px) */
  color: #a01abf;
  font-weight: 700;
  margin: 0;
}
.news-header .view-all {
  font-size: clamp(14px, 1.8vw, 16px); /* ديناميكي (بدل 16px) */
  color: #a01abf;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}
.news-header .view-all:hover {
  color: #7500c0;
}

.news-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.news-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  overflow: hidden;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
.news-card:hover img {
  transform: scale(1.1);
}
.news-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: 0.3s;
}
.news-card .news-card-content {
  padding: 20px;
  color: #333;
  text-align: right;
  position: relative;
  z-index: 2;
  background: #fff;
}
.news-card .news-card-content h3, .news-card .news-card-content .tilte {
  font-size: clamp(16px, 2vw, 18px); /* ديناميكي (بدل 18px) */
  font-weight: 600;
  margin: 0 0 10px;
  color: #222222;
}
.news-card .news-card-content p {
  font-size: clamp(12px, 1.6vw, 14px); /* ديناميكي (بدل 14px) */
  color: #555;
  margin: 0 0 15px;
  line-height: 1.5;
}
.news-card .news-card-content .news-meta {
  font-size: clamp(10px, 1.4vw, 12px); /* ديناميكي (بدل 12px) */
  color: #777;
}

@media (max-width: 768px) {
  .news-header h2 {
    font-size: clamp(18px, 2.5vw, 24px); /* ديناميكي (بدل 24px) */
  }
  .news-header .view-all {
    font-size: clamp(12px, 1.6vw, 14px); /* ديناميكي (بدل 14px) */
  }
  .news-card {
    max-width: 100%;
  }
  .news-cards {
    grid-template-columns: 1fr;
  }
}
.footer-section {
  background: #ecf0f1;
  color: #ffffff;
  font-family: "HSN Shahd";
  padding-top: 60px;
  padding-bottom: 20px;
}
.footer-section .social-icons-container {
  margin-top: 0;
}
.footer-section .container .row .footer-logo {
  text-align: right;
}
.footer-section .container .row .footer-logo .footer-logo-img {
  max-width: 140px;
  height: auto;
  margin-bottom: 10px;
}
.footer-section .container .row .footer-logo .footer-logo-text {
  font-size: clamp(12px, 1.6vw, 14px); /* ديناميكي (بدل 14px) */
  color: #222222;
  margin: 0;
}
.footer-section .container .row .footer-title {
  font-size: clamp(16px, 2vw, 20px); /* ديناميكي (بدل 20px) */
  font-weight: 600;
  color: #a01abf;
  margin-bottom: 20px;
}
.footer-section .container .row .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-section .container .row .footer-links li {
  margin-bottom: 10px;
}
.footer-section .container .row .footer-links li a {
  color: #222222;
  text-decoration: none;
  font-size: clamp(12px, 1.6vw, 14px); /* ديناميكي (بدل 14px) */
  transition: all 0.3s ease-in-out;
}
.footer-section .container .row .footer-links li a:hover {
  color: #fd9e50;
}
.footer-section .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 10px;
  text-align: center;
}
.footer-section .footer-bottom p {
  font-size: clamp(12px, 1.6vw, 14px); /* ديناميكي (بدل 14px) */
  color: #222222;
  margin: 0;
}

@media (max-width: 768px) {
  .footer-section {
    padding-top: 40px;
  }
  .footer-section .footer-logo {
    text-align: center;
  }
  .footer-section .footer-title {
    font-size: clamp(14px, 1.8vw, 16px); /* ديناميكي (بدل 16px) */
  }
  .footer-section .footer-links li a {
    font-size: clamp(11px, 1.5vw, 13px); /* ديناميكي (بدل 13px) */
  }
  .footer-section .footer-bottom p {
    font-size: clamp(10px, 1.4vw, 12px); /* ديناميكي (بدل 12px) */
  }
}
body .customBtn,
body .ui-button.customBtn {
  background-color: #a01abf;
  color: #ffffff;
  border-radius: 12px;
  padding: 0 5px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  margin-top: 14px;
  width: max-content;
  display: block;
}
body .customBtn:hover,
body .ui-button.customBtn:hover {
  background-color: #fd9e50;
}

body .customBtn {
  padding: 0.643rem 0.75rem;
}

/* تنسيقات للشاشات الصغيرة */
@media (max-width: 767px) {
  .footer-title {
    padding: 10px;
    border-radius: 5px;
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .footer-section .container .row .footer-links {
    padding: 10px;
  }
  .footer-title i {
    transition: transform 0.3s ease;
  }
  .footer-title i.rotate {
    transform: rotate(180deg);
  }
  .footer-links {
    display: none;
    background-color: #3a3a3a;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
  }
  .footer-links.show {
    display: block;
  }
  .col-sm-6 {
    margin-bottom: 15px;
  }
}
/* تنسيقات للشاشات الكبيرة */
@media (min-width: 768px) {
  .footer-title i {
    display: none;
  }
  .footer-links {
    display: block;
  }
}
/* تنسيقات القائمة الرئيسية */
.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.mobile-nav-list li {
  position: relative;
}

.mobile-nav-list a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  font-size: clamp(14px, 1.8vw, 16px); /* ديناميكي (بدل 16px) */
}

.mobile-nav-list a:hover {
  background-color: #f5f5f5;
}

/* تنسيقات القائمة المنسدلة */
.dropdown-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  display: none;
  position: relative;
  width: 100%;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-menu li a {
  padding: 8px 20px;
  font-size: clamp(12px, 1.6vw, 14px); /* ديناميكي (بدل 14px) */
  color: #333;
}

.dropdown-toggle::after {
  display: none !important;
}

.dropdown-toggle i {
  font-size: clamp(12px, 1.6vw, 14px) !important; /* ديناميكي (بدل 14px) */
  margin-right: 5px;
}

.dropdown-menu li a:hover {
  background-color: #e9ecef;
}

/* تنسيقات زر الخدمات */
.dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.dropdown-toggle i {
  transition: transform 0.3s ease;
}

.dropdown-toggle i.rotate {
  transform: rotate(180deg);
}

.header .header-main .nav .nav-list li .dropdown-menu a {
  font-size: clamp(12px, 1.6vw, 14px); /* ديناميكي (بدل 14px) */
  text-align: right;
  color: #000000;
  display: block;
  width: 100%;
  padding: 0 12px 5px 12px;
  font-weight: 400;
}
.header .header-main .nav .nav-list li .dropdown-menu a:hover {
  background: transparent;
  color: #a01abf;
}

.mobile-menu .mobile-nav-list li li {
  margin-bottom: 0 !important;
}
.mobile-menu .mobile-nav-list li li .dropdown-menu a {
  font-size: clamp(12px, 1.6vw, 14px); /* ديناميكي (بدل 14px) */
  text-align: right;
  color: #000000;
  display: block;
  width: 100%;
  padding: 0 12px 5px 12px;
  font-weight: 400;
}
.mobile-menu .mobile-nav-list li li .dropdown-menu a:hover {
  background: transparent;
  color: #a01abf;
}

.dropdown-menu.show {
  display: block;
  text-align: right;
  right: 0;
  width: max-content;
}

/* تنسيقات للشاشات الصغيرة */
@media (max-width: 767px) {
  .mobile-nav-list {
    width: 100%;
  }
  .dropdown-menu {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
}
/* تنسيقات للشاشات الكبيرة (اختياري) */
@media (min-width: 768px) {
  .mobile-nav-list {
    flex-direction: row;
  }
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    z-index: 1000;
  }
  .dropdown-toggle i {
    margin-left: 5px;
  }
}
:root {
  --mainColor: #a01abf;
  --seconderyColor: #fd9e50;
}

.services-section {
  padding: 50px 20px;
  background: #f3f3f3;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services-heading {
  font-size: clamp(1.8rem, 4vw, 2.5rem); /* ديناميكي (بدل 2.5em) */
  color: var(--mainColor);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

@keyframes shimmer {
  0% {
    background: var(--mainColor);
  }
  50% {
    background: var(--seconderyColor);
  }
  100% {
    background: var(--mainColor);
  }
}
.services-wrapper {
  margin: 0 auto;
  padding: 20px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  border: 2px solid transparent;
  background-clip: padding-box;
  overflow: hidden;
}

@keyframes borderGlow {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  padding: 20px;
  position: relative;
  z-index: 1;
}

.service-item {
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
  text-align: center;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  position: relative;
  font-weight: bold;
  font-size: clamp(1rem, 1.8vw, 1.1rem); /* ديناميكي (بدل 1.1em) */
  color: #222222;
}

.service-item .service-icon {
  transition: 0.3s;
  box-shadow: 0 0 8px 0 rgba(191, 86, 142, 0.4196078431);
}
.service-item .service-icon img {
  width: 60%;
}

/* تهيئة الصورة لضمان التحكم فيها */
.service-icon img {
  display: block;
}

/* تطبيق الحركة عند تمرير المؤشر على الرابط */
.service-item:hover .service-icon img {
  animation: bounce 1s ease-in-out;
}

/* تعريف الحركة باستخدام keyframes */
@keyframes bounce {
  0% {
    transform: translateY(0);
  } /* البداية: الموقع الطبيعي */
  50% {
    transform: translateY(-10px);
  } /* المنتصف: تتحرك لأعلى 10 بكسل */
  100% {
    transform: translateY(0);
  } /* النهاية: تعود للموقع الطبيعي */
}
.service-item:hover .service-title {
  color: #a01abf;
}

.service-item:hover .service-icon {
  box-shadow: 0 0 27px 1px rgba(191, 86, 142, 0.4196078431);
  transform: scale(1.1);
}

.service-item i {
  color: #fff;
  font-size: clamp(1rem, 1.6vw, 1.2rem); /* ديناميكي (بدل 1.2em) */
  transition: all 0.3s ease;
  animation: iconBounce 1s ease-in-out;
}

.service-item:hover i {
  transform: rotate(360deg);
  color: #fff;
}

@keyframes iconBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
/* خلفية تفاعلية */
.services-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(160, 26, 191, 0.1) 0%, transparent 70%);
  z-index: 0;
  animation: pulse 6s infinite;
  opacity: 0.5;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
}
/* تأثير تفاعلي عند التمرير */
.services-grid:hover .service-item {
  opacity: 0.9;
}

.services-grid .service-item:hover {
  opacity: 1;
  z-index: 2;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px 20px;
  max-width: 100%;
  margin: 0 auto;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 200px;
  text-align: center;
}

.service-icon {
  width: 130px;
  height: 130px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  position: relative;
}

.service-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px dashed rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  pointer-events: none;
}

.service-icon svg {
  width: 60px;
  height: 60px;
  stroke: white;
  fill: none;
  stroke-width: 1.5;
}

.service-title {
  font-size: clamp(16px, 2vw, 18px); /* ديناميكي (بدل 20px) */
  font-weight: 500;
  color: #222222 !important;
}

/* Individual service colors */
.beauty {
  background-color: rgba(252, 161, 185, 0.78);
}

.animals {
  background-color: rgba(133, 202, 239, 0.64);
}

.farms {
  background-color: rgba(179, 220, 122, 0.69);
}

.event-planning {
  background-color: rgba(100, 179, 153, 0.62);
}

.venues {
  background-color: rgba(216, 161, 245, 0.87);
}

.wedding-planning {
  background-color: rgba(255, 175, 138, 0.87);
}

.dj {
  background-color: rgba(159, 147, 191, 0.86);
}

.spa {
  background-color: rgba(255, 181, 200, 0.83);
}

.cars {
  background-color: rgba(255, 211, 121, 0.79);
}

.flowers {
  background-color: rgba(197, 155, 215, 0.74);
}

.other-services {
  background-color: rgba(166, 114, 157, 0.89);
}

.invitation-cards {
  background-color: rgba(255, 138, 120, 0.73);
}

.desserts {
  background-color: rgba(255, 113, 175, 0.75);
}

.restaurants {
  background-color: rgba(240, 128, 102, 0.83);
}

.jewelry {
  background-color: rgba(142, 189, 222, 0.77);
}

.vendorDetails {
  /* Location map styles */
  /* Products styles */
  /* Deals And promos styles */
}
.vendorDetails .vendor-header {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin-bottom: 25px;
}
.vendorDetails .vendor-banner {
  height: 200px;
  background-position: center;
  background-size: cover;
  position: relative;
}
.vendorDetails .vendor-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vendorDetails .vendor-logo {
  width: 120px;
  height: 120px;
  border: 5px solid white;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vendorDetails .vendor-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.vendorDetails .vendor-info {
  padding: 20px 30px;
}
.vendorDetails .vendor-name {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.vendorDetails .verified-badge {
  background-color: #a01abf;
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 1.3rem;
  font-weight: 600;
  display: inline-flex;
  gap: 10px;
  margin-right: auto;
}
.vendorDetails .vendor-stats {
  display: flex;
  gap: 15px;
  font-size: 0.9rem;
  color: #222;
}
.vendorDetails .rating-stars {
  color: #ffc107;
}
.vendorDetails .tab-navigation {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
}
.vendorDetails .tab-nav {
  display: flex;
  border-bottom: 1px solid #dee2e6;
  overflow-x: auto;
  scrollbar-width: none;
}
.vendorDetails .tab-nav::-webkit-scrollbar {
  display: none;
}
.vendorDetails .tab-nav-item {
  padding: 15px 20px;
  font-weight: 600;
  color: #222;
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.vendorDetails .tab-nav-item.active {
  color: #a01abf;
  border-bottom: 3px solid #a01abf;
}
.vendorDetails .tab-content {
  padding: 25px;
  min-height: 300px;
}
.vendorDetails .action-buttons {
  margin-bottom: 25px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.vendorDetails .btn-save, .vendorDetails .btn-contact, .vendorDetails .btn-share {
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  gap: 8px;
  transition: all 0.3s;
  border: none;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  justify-content: center;
}
.vendorDetails .btn-save {
  background-color: #fd9e50;
  color: #ffffff;
}
.vendorDetails .btn-contact {
  background-color: #a01abf;
  color: white;
}
.vendorDetails .btn-share {
  background-color: #e9ecef;
  color: #495057;
}
.vendorDetails .btn-save:hover, .vendorDetails .btn-share:hover {
  background-color: #a01abf;
  color: #ffffff;
}
.vendorDetails .btn-contact:hover {
  background-color: #ab47bc;
}
.vendorDetails .reviews-section {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  margin-bottom: 25px;
}
.vendorDetails .reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.vendorDetails .review-item {
  border-bottom: 1px solid #dee2e6;
  padding: 20px 0;
}
.vendorDetails .review-item:last-child {
  border-bottom: none;
}
.vendorDetails .review-user {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.vendorDetails .review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}
.vendorDetails .review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vendorDetails .review-form {
  margin-top: 30px;
  border-top: 1px solid #dee2e6;
  padding-top: 30px;
}
.vendorDetails .review-form-header {
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 1.2rem;
}
.vendorDetails .review-input-group {
  margin-bottom: 15px;
}
.vendorDetails .sidebar {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  padding: 20px;
  position: sticky;
  top: 20px;
}
.vendorDetails .sidebar .text-primary {
  color: #a01abf !important;
}
.vendorDetails .sidebar-section {
  margin-bottom: 30px;
}
.vendorDetails .sidebar-section:last-child {
  margin-bottom: 0;
}
.vendorDetails .sidebar-heading {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #dee2e6;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.vendorDetails .contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  align-items: flex-start;
  padding: 0 !important;
}
.vendorDetails .contact-icon {
  color: #a01abf;
  font-size: 1rem;
  padding-top: 3px;
  margin-bottom: 0;
}
.vendorDetails .album-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.vendorDetails .album-item {
  border-radius: 8px;
  overflow: hidden;
  height: 100px;
}
.vendorDetails .album-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.vendorDetails .album-item:hover img {
  transform: scale(1.05);
}
.vendorDetails .photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.vendorDetails .gallery-item {
  border-radius: 8px;
  overflow: hidden;
  height: 150px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.vendorDetails .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.vendorDetails .gallery-item:hover img {
  transform: scale(1.05);
}
.vendorDetails .video-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.vendorDetails .video-item {
  border-radius: 8px;
  overflow: hidden;
  height: 180px;
  position: relative;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.vendorDetails .video-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vendorDetails .video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  transition: all 0.3s;
}
.vendorDetails .video-item .video-play {
  background-color: #a01abf;
}
.vendorDetails .map-container {
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
}
.vendorDetails .map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.vendorDetails .products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}
.vendorDetails .product-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.vendorDetails .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.vendorDetails .product-image {
  height: 180px;
  overflow: hidden;
}
.vendorDetails .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.vendorDetails .product-card:hover .product-image img {
  transform: scale(1.05);
}
.vendorDetails .product-details {
  padding: 15px;
}
.vendorDetails .product-title {
  font-weight: 600;
  margin-bottom: 5px;
}
.vendorDetails .product-price {
  color: #a01abf;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 5px;
}
.vendorDetails .deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.vendorDetails .deal-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.vendorDetails .deal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.vendorDetails .deal-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #a01abf;
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}
.vendorDetails .deal-image {
  height: 200px;
  overflow: hidden;
}
.vendorDetails .deal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.vendorDetails .deal-card:hover .deal-image img {
  transform: scale(1.05);
}
.vendorDetails .deal-details {
  padding: 15px;
}
.vendorDetails .deal-title {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 1.1rem;
}
.vendorDetails .deal-period {
  color: #222;
  font-size: 0.9rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.vendorDetails .btn-primary {
  background: #a01abf !important;
  border: none !important;
}
.vendorDetails .text-primary {
  color: #a01abf !important;
}
.vendorDetails .contactContainer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.newsPage {
  /* Header Section */
  /* Filter and Search Section */
  /* News Grid */
  /* Featured News Section */
  /* Sidebar */
  /* Pagination */
  /* RTL Support */
  /* Responsive Design */
}
.newsPage .news-header {
  background: linear-gradient(135deg, #a01abf 0%, #fd9e50 100%);
  color: white;
  padding: 80px 0 60px;
  text-align: center;
}
.newsPage .news-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.newsPage .news-header p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 640px;
  margin: 0 auto;
}
.newsPage .news-filters {
  background: white;
  padding: 30px 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid #dee2e6;
  margin-bottom: 40px;
}
.newsPage .search-container {
  position: relative;
}
.newsPage .ui-inputtext {
  border-radius: 12px !important;
  padding: 12px 50px 12px 20px !important;
  border: 2px solid #dee2e6 !important;
  transition: all 0.3s;
  width: 100%;
  border-top-left-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
}
.newsPage .ui-inputtext:focus {
  border-color: #a01abf !important;
  box-shadow: 0 0 0 0.2rem rgba(232, 62, 140, 0.25) !important;
}
.newsPage .search-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: #a01abf !important;
  border: none !important;
  border-radius: 50% !important;
  width: 40px !important;
  height: 40px !important;
  color: white !important;
  transition: all 0.3s;
}
.newsPage .search-btn:hover {
  background: #fd9e50 !important;
  transform: translateY(-50%) scale(1.1);
}
.newsPage .filter-btn {
  border: 2px solid #dee2e6 !important;
  background: white !important;
  color: #222222 !important;
  padding: 0px !important;
  border-radius: 50px !important;
  transition: all 0.3s;
  margin: 5px !important;
}
.newsPage .filter-btn:hover,
.newsPage .filter-btn.ui-state-active {
  border-color: #a01abf !important;
  background: #a01abf !important;
  color: white !important;
  transform: translateY(-2px);
}
.newsPage .news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}
.newsPage .news-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}
.newsPage .news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.newsPage .news-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}
.newsPage .news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.newsPage .news-card:hover .news-image img {
  transform: scale(1.05);
}
.newsPage .news-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #a01abf;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}
.newsPage .news-date {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 0.85rem;
  z-index: 2;
}
.newsPage .news-content {
  padding: 25px;
}
.newsPage .news-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #222222;
  margin-bottom: 15px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.newsPage .news-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}
.newsPage .news-title a:hover {
  color: #a01abf;
}
.newsPage .news-excerpt {
  color: #6c757d;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.newsPage .news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #dee2e6;
}
.newsPage .news-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.newsPage .author-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
}
.newsPage .author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.newsPage .author-info {
  font-size: 0.9rem;
  color: #6c757d;
}
.newsPage .read-more {
  background: #a01abf !important;
  color: white !important;
  padding: 8px 16px !important;
  border-radius: 20px !important;
  text-decoration: none !important;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s;
  border: none !important;
}
.newsPage .read-more:hover {
  background: #fd9e50 !important;
  color: white !important;
  transform: translateX(5px);
}
.newsPage .featured-news {
  margin-bottom: 50px;
}
.newsPage .featured-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 400px;
}
.newsPage .featured-image {
  position: relative;
  overflow: hidden;
}
.newsPage .featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.newsPage .featured-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.newsPage .featured-badge {
  background: #a01abf;
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  width: fit-content;
  margin-bottom: 20px;
}
.newsPage .featured-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222222;
  margin-bottom: 15px;
  line-height: 1.2;
}
.newsPage .featured-excerpt {
  color: #6c757d;
  margin-bottom: 25px;
  font-size: 1.1rem;
}
.newsPage .sidebar {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}
.newsPage .sidebar-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #222222;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #a01abf;
}
.newsPage .popular-news-item {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #dee2e6;
}
.newsPage .popular-news-item:last-child {
  border-bottom: none;
}
.newsPage .popular-news-image {
  width: 80px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.newsPage .popular-news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.newsPage .popular-news-content h6 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.newsPage .popular-news-content h6 a {
  color: #222222;
  text-decoration: none;
  transition: color 0.3s;
}
.newsPage .popular-news-content h6 a:hover {
  color: #a01abf;
}
.newsPage .popular-news-date {
  font-size: 0.8rem;
  color: #6c757d;
}
.newsPage .category-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #dee2e6;
  text-decoration: none;
  color: #222222;
  transition: all 0.3s;
}
.newsPage .category-item:last-child {
  border-bottom: none;
}
.newsPage .category-item:hover {
  color: #a01abf;
  padding-left: 10px;
}
.newsPage .category-badge {
  background: #f8f8f8;
  color: #6c757d;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
}
.newsPage .pagination-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.newsPage .ui-paginator {
  border: none !important;
  background: none !important;
}
.newsPage .ui-paginator .ui-paginator-page {
  border: none !important;
  background: white !important;
  color: #222222 !important;
  margin: 0 3px !important;
  border-radius: 8px !important;
  transition: all 0.3s !important;
}
.newsPage .ui-paginator .ui-paginator-page:hover,
.newsPage .ui-paginator .ui-state-active {
  background: #a01abf !important;
  color: white !important;
  transform: translateY(-2px) !important;
}
.newsPage .rtl {
  direction: rtl;
  text-align: right;
}
.newsPage .rtl .news-badge {
  left: auto;
  right: 15px;
}
.newsPage .rtl .news-date {
  right: auto;
  left: 15px;
}
.newsPage .rtl .featured-card {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}
.newsPage .rtl .read-more:hover {
  transform: translateX(-5px);
}
@media (max-width: 768px) {
  .newsPage .news-header h1 {
    font-size: 2rem;
  }
  .newsPage .news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .newsPage .featured-card {
    grid-template-columns: 1fr;
  }
  .newsPage .featured-content {
    padding: 25px;
  }
  .newsPage .featured-title {
    font-size: 1.5rem;
  }
  .newsPage .news-filters {
    padding: 20px 0;
  }
  .newsPage .filter-btn {
    margin: 3px !important;
    padding: 8px 15px !important;
    font-size: 0.9rem;
  }
}
@media (max-width: 576px) {
  .newsPage .news-content {
    padding: 20px;
  }
  .newsPage .news-title {
    font-size: 1.2rem;
  }
  .newsPage .news-meta {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}

.newsDetails {
  /* Breadcrumb */
  /* Article Header */
  /* Article Content */
  /* Tags */
  /* Social Share */
  /* Comments Section */
  /* Related News */
  /* Responsive Design */
  /* RTL Support */
}
.newsDetails .breadcrumb-section {
  background: white;
  padding: 20px 0;
  border-bottom: 1px solid #dee2e6;
}
.newsDetails .breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
}
.newsDetails .breadcrumb-item a {
  color: #a01abf;
  text-decoration: none;
}
.newsDetails .breadcrumb-item.active {
  color: #6c757d;
}
.newsDetails .article-header {
  background: white;
  padding: 40px 0;
  margin-bottom: 30px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}
.newsDetails .article-category {
  display: inline-block;
  background: #a01abf;
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.newsDetails .article-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222222;
  margin-bottom: 20px;
  line-height: 1.2;
}
.newsDetails .article-meta {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #6c757d;
  margin-bottom: 20px;
}
.newsDetails .article-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.newsDetails .author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}
.newsDetails .author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.newsDetails .author-info h6 {
  margin: 0;
  color: #222222;
  font-weight: 600;
}
.newsDetails .author-info span {
  font-size: 0.9rem;
  color: #6c757d;
}
.newsDetails .article-stats {
  display: flex;
  gap: 20px;
  font-size: 0.9rem;
}
.newsDetails .stat-item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.newsDetails .article-content {
  background: white;
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}
.newsDetails .article-image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 30px;
}
.newsDetails .article-body {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #222222;
}
.newsDetails .article-body p {
  margin-bottom: 20px;
}
.newsDetails .article-body h3 {
  color: #222222;
  font-weight: 600;
  margin: 30px 0 15px 0;
}
.newsDetails .article-body blockquote {
  background: #f8f8f8;
  border-left: 4px solid #a01abf;
  padding: 20px;
  margin: 30px 0;
  font-style: italic;
  font-size: 1.2rem;
}
.newsDetails .article-tags {
  background: white;
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}
.newsDetails .tags-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #222222;
}
.newsDetails .tag-item {
  display: inline-block;
  background: #f8f8f8;
  color: #6c757d;
  padding: 8px 15px;
  border-radius: 20px;
  margin: 5px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s;
}
.newsDetails .tag-item:hover {
  background: #a01abf;
  color: white;
  transform: translateY(-2px);
}
.newsDetails .social-share {
  background: white;
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}
.newsDetails .share-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #222222;
}
.newsDetails .share-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.newsDetails .share-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px !important;
  border-radius: 25px !important;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: none !important;
}
.newsDetails .share-btn.facebook {
  background: #1877f2 !important;
  color: white !important;
}
.newsDetails .share-btn.twitter {
  background: #1da1f2 !important;
  color: white !important;
}
.newsDetails .share-btn.whatsapp {
  background: #25d366 !important;
  color: white !important;
}
.newsDetails .share-btn.copy {
  background: #f8f8f8 !important;
  color: #222222 !important;
}
.newsDetails .share-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.newsDetails .comments-section {
  background: white;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}
.newsDetails .comments-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: #222222;
  display: flex;
  align-items: center;
  gap: 10px;
}
.newsDetails .comment-form {
  background: #f8f8f8;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
}
.newsDetails .comment-item {
  padding: 20px 0;
  border-bottom: 1px solid #dee2e6;
}
.newsDetails .comment-item:last-child {
  border-bottom: none;
}
.newsDetails .comment-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}
.newsDetails .comment-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
}
.newsDetails .comment-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.newsDetails .comment-info h6 {
  margin: 0;
  font-weight: 600;
  color: #222222;
}
.newsDetails .comment-date {
  font-size: 0.8rem;
  color: #6c757d;
}
.newsDetails .comment-content {
  color: #222222;
  line-height: 1.6;
}
.newsDetails .related-news {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}
.newsDetails .related-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: #222222;
  padding-bottom: 10px;
  border-bottom: 2px solid #a01abf;
}
.newsDetails .related-news-item {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #dee2e6;
  transition: all 0.3s;
}
.newsDetails .related-news-item:last-child {
  border-bottom: none;
}
.newsDetails .related-news-item:hover {
  background: #f8f8f8;
  border-radius: 10px;
  padding: 15px;
}
.newsDetails .related-news-image {
  width: 100px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.newsDetails .related-news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.newsDetails .related-news-content h6 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.newsDetails .related-news-content h6 a {
  color: #222222;
  text-decoration: none;
  transition: color 0.3s;
}
.newsDetails .related-news-content h6 a:hover {
  color: #a01abf;
}
.newsDetails .related-news-meta {
  font-size: 0.8rem;
  color: #6c757d;
  display: flex;
  gap: 15px;
}
@media (max-width: 768px) {
  .newsDetails .article-title {
    font-size: 1.8rem;
  }
  .newsDetails .article-content {
    padding: 25px;
  }
  .newsDetails .article-meta {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
  .newsDetails .article-stats {
    flex-wrap: wrap;
  }
  .newsDetails .share-buttons {
    justify-content: center;
  }
  .newsDetails .related-news-item {
    flex-direction: column;
  }
  .newsDetails .related-news-image {
    width: 100%;
    height: 200px;
  }
}
.newsDetails .rtl {
  direction: rtl;
  text-align: right;
}
.newsDetails .rtl .article-body blockquote {
  border-left: none;
  border-right: 4px solid #a01abf;
}

.social-share .ui-button-text-icon-left .ui-button-text {
  padding: 0 1em 0em 1.3em !important;
}

body .ui-selectonemenu .ui-inputfield {
  font-weight: 600;
}

body .social-share .ui-button.ui-button-text-icon-left .ui-icon {
  left: 0.9rem !important;
}

.loginPage {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #fd9e50 0%, #a01abf 100%);
  padding: 100px 0;
}
.loginPage .main-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
}
.loginPage .login-wrapper {
  display: flex;
  max-width: 60%;
  width: 100%;
  background: white;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  min-height: 600px;
}
.loginPage .image-section {
  flex: 1;
  background: #a01abf;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 40px;
  position: relative;
}
.loginPage .image-section a {
  text-decoration: underline;
  color: #fd9e50;
}
.loginPage .image-section h2 {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.loginPage .image-section p {
  font-size: 1.2rem;
  opacity: 0.9;
  line-height: 1.6;
}
.loginPage .form-section {
  flex: 1;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.loginPage .form-title {
  text-align: center;
  margin-bottom: 40px;
}
.loginPage .form-title h1 {
  color: #333;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.loginPage .form-title p {
  color: #222;
  font-size: 1rem;
  margin: 0;
}
.loginPage .input-group {
  margin-bottom: 25px;
  position: relative;
}
.loginPage .input-group label {
  display: block;
  margin-bottom: 12px;
  color: #222;
  font-weight: 600;
  font-size: 0.95rem;
}
.loginPage .ui-selectonemenu,
.loginPage .input-group input {
  width: 100% !important;
  padding: 15px 50px 15px 20px;
  border: 2px solid #e1e5e9;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f8f9fa;
  box-sizing: border-box;
}
.loginPage .ui-selectonemenu-label {
  text-align: right !important;
}
.loginPage .ui-selectonemenu:focus,
.loginPage .input-group input:focus {
  border-color: #a01abf;
  background: white;
  box-shadow: 0 0 0 3px rgba(160, 26, 191, 0.1);
  outline: none;
}
.loginPage .input-group .input-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(30%);
  color: #999;
  pointer-events: none;
}
.loginPage .error-message {
  color: #dc3545;
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  border-radius: 8px;
  padding: 12px 15px;
  margin-bottom: 20px;
  display: block;
}
.loginPage .login-button {
  background: #a01abf !important;
  border: none !important;
  color: white !important;
  padding: 15px 30px !important;
  border-radius: 12px !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  width: 100% !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(160, 26, 191, 0.3) !important;
  margin-top: 10px !important;
  cursor: pointer !important;
}
.loginPage .login-button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(160, 26, 191, 0.4) !important;
}
.loginPage .login-button:active {
  transform: translateY(0) !important;
}
.loginPage .bottom-links {
  margin-top: 30px;
  text-align: center;
}
.loginPage .bottom-links a {
  color: #a01abf;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
.loginPage .bottom-links a:hover {
  color: #fd9e50;
  text-decoration: underline;
}

.about-content,
.aboutUs {
  /* About Us Page Styles */
  /* Mission & Vision Cards */
  /* Services Grid */
  /* Team Stats */
  /* Values Sidebar */
  /* Contact Info in Sidebar */
  /* Responsive Design for About Us */
}
.about-content.about-content,
.about-content .about-content,
.aboutUs.about-content,
.aboutUs .about-content {
  padding: 0;
}
.about-content .content-section,
.aboutUs .content-section {
  margin-bottom: 60px;
  padding: 40px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-content .content-section:hover,
.aboutUs .content-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.about-content .content-section h2,
.aboutUs .content-section h2 {
  color: #a01abf;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}
.about-content .content-section h2::after,
.aboutUs .content-section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #a01abf 0%, #fd9e50 100%);
  border-radius: 2px;
}
.about-content .section-image,
.aboutUs .section-image {
  margin-bottom: 30px;
  text-align: center;
}
.about-content .section-image img,
.aboutUs .section-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.about-content .section-image img:hover,
.aboutUs .section-image img:hover {
  transform: scale(1.05);
}
.about-content .section-content p,
.aboutUs .section-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #222;
  margin-bottom: 20px;
  text-align: justify;
}
.about-content .mission-card,
.about-content .vision-card,
.aboutUs .mission-card,
.aboutUs .vision-card {
  background: linear-gradient(135deg, #a01abf 0%, #fd9e50 100%);
  color: white;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.about-content .mission-card::before,
.about-content .vision-card::before,
.aboutUs .mission-card::before,
.aboutUs .vision-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  transition: all 0.3s ease;
  opacity: 0;
}
.about-content .mission-card:hover::before,
.about-content .vision-card:hover::before,
.aboutUs .mission-card:hover::before,
.aboutUs .vision-card:hover::before {
  opacity: 1;
}
.about-content .mission-card:hover,
.about-content .vision-card:hover,
.aboutUs .mission-card:hover,
.aboutUs .vision-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(160, 26, 191, 0.3);
}
.about-content .card-icon,
.aboutUs .card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
.about-content .mission-card h3,
.about-content .vision-card h3,
.aboutUs .mission-card h3,
.aboutUs .vision-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}
.about-content .mission-card p,
.about-content .vision-card p,
.aboutUs .mission-card p,
.aboutUs .vision-card p {
  font-size: 1rem;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}
.about-content .services-grid,
.aboutUs .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}
.about-content .service-item,
.aboutUs .service-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  border: 2px solid #f0f0f0;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.about-content .service-item::before,
.aboutUs .service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(160, 26, 191, 0.05) 0%, rgba(253, 158, 80, 0.05) 100%);
  transition: left 0.3s ease;
}
.about-content .service-item:hover::before,
.aboutUs .service-item:hover::before {
  left: 0;
}
.about-content .service-item:hover,
.aboutUs .service-item:hover {
  border-color: #a01abf;
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(160, 26, 191, 0.2);
}
.about-content .service-icon,
.aboutUs .service-icon {
  font-size: 3rem;
  color: #a01abf;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}
.about-content .service-item:hover .service-icon,
.aboutUs .service-item:hover .service-icon {
  color: #fd9e50;
}
.about-content .service-item h4,
.aboutUs .service-item h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}
.about-content .service-item p,
.aboutUs .service-item p {
  color: #222;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}
.about-content .team-stats,
.aboutUs .team-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.about-content .stat-item,
.aboutUs .stat-item {
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(135deg, #a01abf 0%, #fd9e50 100%);
  border-radius: 20px;
  color: white;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.about-content .stat-item::before,
.aboutUs .stat-item::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  transition: all 0.3s ease;
  opacity: 0;
}
.about-content .stat-item:hover::before,
.aboutUs .stat-item:hover::before {
  opacity: 1;
}
.about-content .stat-item:hover,
.aboutUs .stat-item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 25px 50px rgba(160, 26, 191, 0.4);
}
.about-content .stat-number,
.aboutUs .stat-number {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}
.about-content .stat-label,
.aboutUs .stat-label {
  font-size: 1.1rem;
  font-weight: 600;
  position: relative;
  z-index: 2;
}
.about-content .value-item,
.aboutUs .value-item {
  display: flex;
  align-items: flex-start;
  padding: 25px;
  margin-bottom: 20px;
  background: white;
  border-radius: 15px;
  border-left: 5px solid #a01abf;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  gap: 10px;
}
.about-content .value-item:hover,
.aboutUs .value-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 25px rgba(160, 26, 191, 0.15);
  border-left-color: #fd9e50;
}
.about-content .value-icon,
.aboutUs .value-icon {
  font-size: 2rem;
  color: #a01abf;
  margin-right: 20px;
  margin-top: 5px;
  transition: color 0.3s ease;
}
.about-content .value-item:hover .value-icon,
.aboutUs .value-item:hover .value-icon {
  color: #fd9e50;
}
.about-content .value-content h5,
.aboutUs .value-content h5 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}
.about-content .value-content p,
.aboutUs .value-content p {
  color: #222;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}
.about-content .contact-info,
.aboutUs .contact-info {
  padding: 25px;
  border-radius: 15px;
  color: white;
}
.about-content .contact-item,
.aboutUs .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.about-content .contact-item:last-child,
.aboutUs .contact-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
.about-content .contact-item i,
.aboutUs .contact-item i {
  font-size: 1.2rem;
  margin-right: 15px;
  width: 20px;
  text-align: center;
}
.about-content .contact-item span,
.aboutUs .contact-item span {
  font-size: 1rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .about-content .content-section,
  .aboutUs .content-section {
    padding: 25px;
    margin-bottom: 40px;
  }
  .about-content .content-section h2,
  .aboutUs .content-section h2 {
    font-size: 2rem;
  }
  .about-content .services-grid,
  .aboutUs .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .about-content .team-stats,
  .aboutUs .team-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .about-content .stat-number,
  .aboutUs .stat-number {
    font-size: 2.5rem;
  }
  .about-content .mission-card,
  .about-content .vision-card,
  .aboutUs .mission-card,
  .aboutUs .vision-card {
    padding: 25px;
    margin-bottom: 20px;
  }
  .about-content .value-item,
  .aboutUs .value-item {
    padding: 20px;
  }
}
@media (max-width: 480px) {
  .about-content .team-stats,
  .aboutUs .team-stats {
    grid-template-columns: 1fr;
  }
  .about-content .stat-number,
  .aboutUs .stat-number {
    font-size: 2rem;
  }
}

.gallery-page {
  /* Modal Styles */
  /* Stats Section */
  /* Load More Button */
}
.gallery-page .gallery-page {
  padding-bottom: 60px;
}
.gallery-page .gallery-filters {
  background: white;
  padding: 30px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
  margin-top: -40px;
}
.gallery-page .filter-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}
.gallery-page .filter-btn {
  background: white !important;
  color: #222 !important;
  border: 2px solid #e1e5e9 !important;
  padding: 12px 25px !important;
  border-radius: 25px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  text-transform: none !important;
}
.gallery-page .filter-btn:hover,
.gallery-page .filter-btn.active {
  background: linear-gradient(135deg, #a01abf 0%, #fd9e50 100%) !important;
  color: white !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 15px rgba(160, 26, 191, 0.3) !important;
}
.gallery-page .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  padding: 0;
}
.gallery-page .gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  background: white;
}
.gallery-page .gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.gallery-page .gallery-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery-page .gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-page .gallery-item:hover .gallery-image img {
  transform: scale(1.1);
}
.gallery-page .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(160, 26, 191, 0.8), rgba(253, 158, 80, 0.8));
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.gallery-page .gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-page .gallery-overlay .view-btn {
  background: white;
  color: #a01abf;
  border: none;
  padding: 15px 20px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  transform: translateY(20px);
  transition: transform 0.3s ease 0.1s;
  cursor: pointer;
}
.gallery-page .gallery-item:hover .gallery-overlay .view-btn {
  transform: translateY(0);
}
.gallery-page .gallery-info {
  padding: 25px;
}
.gallery-page .gallery-category {
  display: inline-block;
  background: linear-gradient(135deg, #a01abf 0%, #fd9e50 100%);
  color: white;
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 15px;
}
.gallery-page .gallery-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.4;
}
.gallery-page .gallery-description {
  color: #222;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
}
.gallery-page .gallery-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #999;
  border-top: 1px solid #f0f0f0;
  padding-top: 15px;
}
.gallery-page .gallery-date {
  display: flex;
  align-items: center;
  gap: 8px;
}
.gallery-page .gallery-likes {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: color 0.3s ease;
}
.gallery-page .gallery-likes:hover {
  color: #a01abf;
}
.gallery-page .gallery-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
}
.gallery-page .gallery-stats {
  background: linear-gradient(135deg, #a01abf 0%, #fd9e50 100%);
  color: white;
  padding: 60px 0;
  margin: 60px 0;
  text-align: center;
}
.gallery-page .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}
.gallery-page .stat-item {
  text-align: center;
}
.gallery-page .stat-number {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.gallery-page .stat-label {
  font-size: 1.1rem;
  font-weight: 600;
  opacity: 0.9;
}
.gallery-page .load-more-section {
  text-align: center;
  margin-top: 50px;
}
.gallery-page .load-more-btn {
  background: linear-gradient(135deg, #a01abf 0%, #fd9e50 100%) !important;
  border: none !important;
  color: white !important;
  padding: 15px 40px !important;
  border-radius: 25px !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 5px 15px rgba(160, 26, 191, 0.3) !important;
  margin-bottom: 30px;
}
.gallery-page .load-more-btn .ui-icon {
  left: 1.7rem !important;
}
.gallery-page .load-more-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(160, 26, 191, 0.4) !important;
}
.gallery-page .ui-button.ui-button-text-only .ui-button-text {
  padding: 0 !important;
}

.gallery-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.modal-image {
  width: 100%;
  height: auto;
  display: block;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: white;
  transform: scale(1.1);
}

.modal-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 40px 30px 30px;
  z-index: 9;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.modal-description {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }
  .filter-buttons {
    gap: 10px;
  }
  .filter-btn {
    padding: 10px 20px !important;
    font-size: 0.9rem !important;
  }
  .gallery-info {
    padding: 20px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .stat-number {
    font-size: 2.5rem;
  }
  .modal-content {
    max-width: 95%;
    max-height: 85%;
  }
  .modal-info {
    padding: 30px 20px 20px;
  }
  .modal-title {
    font-size: 1.3rem;
  }
}
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .stat-number {
    font-size: 2rem;
  }
  .filter-buttons {
    flex-direction: column;
    align-items: center;
  }
}
.contactUs {
  /* Contact Us Page Styles */
  /* Contact Form Styling */
  /* FAQ Section */
  /* Contact Information Cards */
  /* Social Media Links */
  /* Individual social media colors */
  /* Emergency Contact */
  /* Responsive Design for Contact Us */
}
.contactUs .contact-form-section {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contactUs .contact-form-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.contactUs .contact-form-section h2 {
  color: #a01abf;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
}
.contactUs .contact-form-section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #a01abf 0%, #fd9e50 100%);
  border-radius: 2px;
}
.contactUs .contact-form-section p {
  color: #222;
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.6;
}
.contactUs .contact-form {
  margin-top: 30px;
}
.contactUs .contact-form label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 600;
  font-size: 1rem;
}
.contactUs .contact-form .ui-inputfield {
  width: 100% !important;
  padding: 15px 20px !important;
  border: 2px solid #e1e5e9 !important;
  border-radius: 12px !important;
  font-size: 1rem !important;
  transition: all 0.3s ease !important;
  background: #f8f9fa !important;
  box-shadow: none !important;
}
.contactUs .ui-selectonemenu .ui-inputfield {
  border: none !important;
}
.contactUs .ui-calendar.form-control {
  border: none !important;
  padding: 0 !important;
}
.contactUs .contact-form .ui-inputfield:focus {
  border-color: #a01abf !important;
  background: white !important;
  box-shadow: 0 0 0 3px rgba(160, 26, 191, 0.1) !important;
  outline: none !important;
}
.contactUs .contact-form .ui-selectonemenu {
  width: 100% !important;
}
.contactUs .contact-form .ui-selectonemenu .ui-selectonemenu-trigger {
  border-left: none !important;
  background: transparent !important;
}
.contactUs .contact-form .ui-calendar input {
  width: 100% !important;
}
.contactUs .contact-form .btn-primary {
  background: linear-gradient(135deg, #a01abf 0%, #fd9e50 100%) !important;
  border: none !important;
  color: white !important;
  padding: 15px 20px 15px 40px !important;
  border-radius: 12px !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(160, 26, 191, 0.3) !important;
}
.contactUs .contact-form .btn-primary .ui-button-text {
  padding: 0 !important;
}
.contactUs .contact-form .btn-primary .ui-icon {
  left: 1.2rem;
}
.contactUs .contact-form .btn-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(160, 26, 191, 0.4) !important;
}
.contactUs .contact-form .btn-primary:active {
  transform: translateY(0) !important;
}
.contactUs .faq-section {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: 40px;
  margin-bottom: 120px;
}
.contactUs .faq-section h2 {
  color: #a01abf;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}
.contactUs .faq-section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #a01abf 0%, #fd9e50 100%);
  border-radius: 2px;
}
.contactUs .faq-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.contactUs .faq-item {
  padding: 25px;
  background: #f8f9fa;
  border-radius: 15px;
  border-left: 5px solid #a01abf;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.contactUs .faq-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(160, 26, 191, 0.05) 0%, rgba(253, 158, 80, 0.05) 100%);
  transition: left 0.3s ease;
}
.contactUs .faq-item:hover::before {
  left: 0;
}
.contactUs .faq-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 25px rgba(160, 26, 191, 0.15);
  border-left-color: #fd9e50;
}
.contactUs .faq-item h5 {
  color: #333;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}
.contactUs .faq-item p {
  color: #222;
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 2;
}
.contactUs .contact-info-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.contactUs .contact-method {
  display: flex;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  gap: 12px;
}
.contactUs .contact-method:last-child {
  border-bottom: none;
}
.contactUs .contact-method:hover {
  transform: translateX(10px);
}
.contactUs .contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #a01abf 0%, #fd9e50 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.contactUs .contact-method:hover .contact-icon {
  transform: rotate(10deg) scale(1.1);
}
.contactUs .contact-icon i {
  font-size: 1.5rem;
  color: white;
}
.contactUs .contact-details h5 {
  color: #333;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.contactUs .contact-details p {
  color: #222;
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}
.contactUs .social-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contactUs .social-link {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  background: white;
  border-radius: 12px;
  text-decoration: none;
  color: #222;
  border: 2px solid #f0f0f0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.contactUs .social-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: left 0.3s ease;
}
.contactUs .social-link:hover {
  transform: translateX(10px);
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.contactUs .social-link i {
  font-size: 1.3rem;
  margin-right: 15px;
  width: 30px;
  text-align: center;
  transition: all 0.3s ease;
}
.contactUs .social-link span {
  font-weight: 600;
  position: relative;
  z-index: 2;
}
.contactUs .social-link.facebook:hover {
  border-color: #3b5998;
  color: #3b5998;
}
.contactUs .social-link.facebook:hover::before {
  left: 0;
  background: rgba(59, 89, 152, 0.1);
}
.contactUs .social-link.instagram:hover {
  border-color: #e1306c;
  color: #e1306c;
}
.contactUs .social-link.instagram:hover::before {
  left: 0;
  background: rgba(225, 48, 108, 0.1);
}
.contactUs .social-link.twitter:hover {
  border-color: #1da1f2;
  color: #1da1f2;
}
.contactUs .social-link.twitter:hover::before {
  left: 0;
  background: rgba(29, 161, 242, 0.1);
}
.contactUs .social-link.youtube:hover {
  border-color: #ff0000;
  color: #ff0000;
}
.contactUs .social-link.youtube:hover::before {
  left: 0;
  background: rgba(255, 0, 0, 0.1);
}
.contactUs .social-link.whatsapp:hover {
  border-color: #25d366;
  color: #25d366;
}
.contactUs .social-link.whatsapp:hover::before {
  left: 0;
  background: rgba(37, 211, 102, 0.1);
}
.contactUs .emergency-contact {
  background: linear-gradient(135deg, #a01abf 0%, #fd9e50 100%);
  padding: 25px;
  border-radius: 15px;
  color: white;
  text-align: center;
}
.contactUs .emergency-contact p {
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.6;
}
.contactUs .emergency-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  transition: all 0.3s ease;
}
.contactUs .emergency-number:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}
.contactUs .emergency-number i {
  font-size: 1.5rem;
}
.contactUs .emergency-contact small {
  font-size: 0.9rem;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .contactUs .contact-form-section,
  .contactUs .faq-section {
    padding: 25px;
    margin-bottom: 30px;
  }
  .contactUs .contact-form-section h2,
  .contactUs .faq-section h2 {
    font-size: 2rem;
  }
  .contactUs .contact-info-card {
    padding: 25px;
  }
  .contactUs .contact-method {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px 0;
  }
  .contactUs .contact-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .contactUs .social-links {
    gap: 12px;
  }
  .contactUs .social-link {
    padding: 12px 18px;
  }
  .contactUs .faq-item {
    padding: 20px;
  }
  .contactUs .emergency-contact {
    padding: 20px;
  }
  .contactUs .emergency-number {
    font-size: 1.1rem;
  }
}
@media (max-width: 480px) {
  .contactUs .contact-form .btn-primary {
    padding: 12px 30px !important;
    font-size: 1rem !important;
  }
  .contactUs .contact-method {
    padding: 20px 0;
  }
  .contactUs .contact-icon {
    width: 50px;
    height: 50px;
  }
  .contactUs .contact-icon i {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .login-wrapper {
    flex-direction: column;
    max-width: 400px;
  }
  .image-section {
    min-height: 200px;
  }
  .image-section h2 {
    font-size: 1.8rem;
  }
  .form-section {
    padding: 40px 30px;
  }
  .form-title h1 {
    font-size: 1.8rem;
  }
}
/* Responsive adjustments */
@media (max-width: 992px) {
  .vendor-info {
    padding: 70px 20px 20px 20px;
  }
  .vendor-name {
    text-align: center;
    justify-content: center;
  }
  .vendor-stats {
    justify-content: center;
  }
  .tab-nav {
    overflow-x: auto;
  }
  .photo-gallery, .video-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .photo-gallery {
    grid-template-columns: 1fr 1fr;
  }
  .video-gallery {
    grid-template-columns: 1fr;
  }
  .products-grid, .deals-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}
@media (max-width: 576px) {
  .photo-gallery {
    grid-template-columns: 1fr;
  }
  .album-grid {
    grid-template-columns: 1fr 1fr;
  }
}
/* ==========================================================================
   Legal Pages Styles - أنماط الصفحات القانونية
   ========================================================================== */
/* Header Section */
.news-header {
  background: linear-gradient(135deg, #a01abf 0%, #764ba2 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.news-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.news-header .container {
  position: relative;
  z-index: 2;
}

.news-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.news-header p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Content Sections */
.content-section {
  margin-bottom: 50px;
  padding: 30px 0;
  border-bottom: 1px solid #eee;
}

.content-section:last-child {
  border-bottom: none;
}

.section-content h2 {
  color: #2c3e50;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 10px;
  display: inline-block;
}

.section-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #222;
  margin-bottom: 20px;
}

/* Information Cards for Privacy Policy */
.info-cards .info-card {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}
.info-cards .info-card p {
  text-align: center;
}

.info-cards .info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: #a01abf;
}

.info-card .card-icon {
  font-size: 3rem;
  color: #a01abf;
  margin-bottom: 20px;
}

.info-card h4 {
  color: #2c3e50;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.info-card p {
  color: #222;
  font-size: 1rem;
  margin-bottom: 0;
}

/* Usage List */
.usage-list {
  list-style: none;
  padding: 0;
}

.usage-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.usage-list li:hover {
  background: #e3f2fd;
  transform: translateX(-5px);
}

.usage-list li i {
  color: #4caf50;
  font-size: 1.2rem;
  margin-left: 15px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Sharing Information */
.sharing-info .sharing-item {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #fff3e0;
  border: 1px solid #ffcc02;
  border-radius: 10px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.sharing-info .sharing-item:hover {
  background: #fff8e1;
  transform: translateX(-5px);
}

.sharing-info .sharing-item i {
  font-size: 1.5rem;
  color: #ff9800;
  margin-left: 20px;
  flex-shrink: 0;
}

/* Protection Measures */
.protection-measures .measure-item {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #e8f5e8;
  border: 1px solid #4caf50;
  border-radius: 10px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.protection-measures .measure-item:hover {
  background: #c8e6c9;
  transform: translateX(-5px);
}

.protection-measures .measure-item i {
  font-size: 1.5rem;
  color: #4caf50;
  margin-left: 20px;
  flex-shrink: 0;
}

/* Rights List */
.rights-list .right-item {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #f3e5f5;
  border: 1px solid #9c27b0;
  border-radius: 10px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.rights-list .right-item:hover {
  background: #e1bee7;
  transform: translateX(-5px);
}

.rights-list .right-item i {
  font-size: 1.5rem;
  color: #9c27b0;
  margin-left: 20px;
  flex-shrink: 0;
}

.contact-info {
  background: #e3f2fd;
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid #2196f3;
  margin-top: 20px;
}

/* Last Update */
.last-update {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #f5f5f5;
  border-radius: 10px;
  margin-top: 30px;
}

.last-update i {
  font-size: 1.3rem;
  color: #222;
  margin-left: 10px;
}

/* Terms and Conditions Specific Styles */
/* Definitions Grid */
.definitions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.definition-item {
  display: flex;
  align-items: flex-start;
  padding: 25px;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.definition-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: #a01abf;
}

.def-icon {
  font-size: 2.5rem;
  color: #a01abf;
  margin-left: 20px;
  flex-shrink: 0;
}

.def-content h4 {
  color: #2c3e50;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.def-content p {
  color: #222;
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Service Nature */
.service-nature {
  display: flex;
  align-items: flex-start;
  padding: 30px;
  border: 1px solid #a01abf;
  border-radius: 15px;
  margin-top: 20px;
}

.nature-icon {
  font-size: 3rem;
  color: #a01abf;
  margin-left: 25px;
  flex-shrink: 0;
}

/* Registration Rules */
.registration-rules .rule-item {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  background: #e8f5e8;
  border: 1px solid #4caf50;
  border-radius: 10px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.registration-rules .rule-item:hover {
  background: #c8e6c9;
  transform: translateX(-5px);
}

.registration-rules .rule-item i {
  font-size: 1.3rem;
  color: #4caf50;
  margin-left: 15px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Usage Agreement */
.usage-agreement .agreement-item {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  background: #fff3e0;
  border: 1px solid #ff9800;
  border-radius: 10px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.usage-agreement .agreement-item:hover {
  background: #ffe0b2;
  transform: translateX(-5px);
}

.usage-agreement .agreement-item i {
  font-size: 1.3rem;
  color: #ff9800;
  margin-left: 15px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Responsibility Section */
.responsibility-section .resp-item {
  display: flex;
  align-items: flex-start;
  padding: 25px;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 15px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.responsibility-section .resp-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.resp-icon {
  font-size: 2.5rem;
  color: #dc3545;
  margin-left: 20px;
  flex-shrink: 0;
}

.resp-content h4 {
  color: #2c3e50;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.resp-content p {
  color: #222;
  font-size: 1rem;
  margin-bottom: 0;
}

/* IP Section */
.ip-section {
  display: flex;
  align-items: flex-start;
  padding: 30px;
  background: #fce4ec;
  border: 1px solid #e91e63;
  border-radius: 15px;
  margin-top: 20px;
}

.ip-icon {
  font-size: 3rem;
  color: #e91e63;
  margin-left: 25px;
  flex-shrink: 0;
}

/* Modifications Section */
.modifications-section {
  display: flex;
  align-items: flex-start;
  padding: 30px;
  background: #e8f5e8;
  border: 1px solid #4caf50;
  border-radius: 15px;
  margin-top: 20px;
}

.mod-icon {
  font-size: 3rem;
  color: #4caf50;
  margin-left: 25px;
  flex-shrink: 0;
}

/* Law Section */
.law-section {
  display: flex;
  align-items: flex-start;
  padding: 30px;
  background: #fff3e0;
  border: 1px solid #ff9800;
  border-radius: 15px;
  margin-top: 20px;
}

.law-icon {
  font-size: 3rem;
  color: #ff9800;
  margin-left: 25px;
  flex-shrink: 0;
}

/* Contact Section */
.contact-section {
  padding: 30px;
  background: #e3f2fd;
  border: 1px solid #2196f3;
  border-radius: 15px;
  margin-top: 20px;
}

.contact-icon {
  font-size: 3rem;
  color: #2196f3;
  text-align: center;
  margin-bottom: 20px;
}

.contact-details {
  margin-top: 20px;
}

.contact-details .contact-item {
  display: flex;
  align-items: center;
  padding: 15px;
  background: white;
  border-radius: 10px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.contact-details .contact-item:hover {
  background: #bbdefb;
  transform: translateX(-5px);
}

.contact-details .contact-item i {
  font-size: 1.2rem;
  color: #2196f3;
  margin-left: 15px;
  flex-shrink: 0;
}

/* Sidebar Styles */
.sidebar {
  background: white;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
}

.sidebar-title {
  color: #2c3e50;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #a01abf;
}

/* Table of Contents */
.toc-links .toc-link {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  color: #222;
  text-decoration: none;
  border-radius: 8px;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.toc-links .toc-link:hover {
  background: #a01abf;
  color: white;
  transform: translateX(-5px);
}

.toc-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  background: #a01abf;
  color: white;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: 12px;
  flex-shrink: 0;
}

.toc-links .toc-link:hover .toc-number {
  background: white;
  color: #a01abf;
}

/* Quick Links */
.quick-links .quick-link {
  display: flex;
  align-items: center;
  padding: 15px;
  color: #222;
  text-decoration: none;
  border-radius: 10px;
  margin-bottom: 10px;
  background: #f8f9fa;
  transition: all 0.3s ease;
}

.quick-links .quick-link:hover {
  background: #a01abf;
  color: white;
  transform: translateX(-5px);
}

.quick-links .quick-link i {
  font-size: 1.2rem;
  margin-left: 15px;
  flex-shrink: 0;
}

/* Contact Info in Sidebar */
.sidebar .contact-info .contact-item {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  color: #222;
}

.sidebar .contact-info .contact-item:last-child {
  border-bottom: none;
}

.sidebar .contact-info .contact-item i {
  font-size: 1.1rem;
  color: #a01abf;
  margin-left: 12px;
  flex-shrink: 0;
}

/* Security Badge */
.security-badge {
  display: flex;
  align-items: flex-start;
  padding: 25px;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.1254901961), rgba(129, 199, 132, 0.1254901961));
  border: 1px solid #4caf50;
  border-radius: 15px;
}

.badge-icon {
  font-size: 2.5rem;
  color: #4caf50;
  margin-left: 20px;
  flex-shrink: 0;
}

.badge-content h5 {
  color: #2c3e50;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.badge-content p {
  color: #222;
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Legal Notice */
.legal-notice {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  background: #ffebee;
  border: 1px solid #f44336;
  border-radius: 10px;
}

.notice-icon {
  font-size: 2rem;
  color: #f44336;
  margin-left: 15px;
  flex-shrink: 0;
}

.notice-content p {
  color: #d32f2f;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0;
}

.contact-item.enText {
  direction: rtl;
}

.sidebar .contact-info .contact-item {
  font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
  .news-header h1 {
    font-size: 2rem;
  }
  .news-header p {
    font-size: 1rem;
  }
  .section-content h2 {
    font-size: 1.5rem;
  }
  .definitions-grid {
    grid-template-columns: 1fr;
  }
  .definition-item,
  .service-nature,
  .ip-section,
  .modifications-section,
  .law-section {
    flex-direction: column;
    text-align: center;
  }
  .def-icon,
  .nature-icon,
  .ip-icon,
  .mod-icon,
  .law-icon {
    margin-left: 0;
    margin-bottom: 15px;
  }
  .info-cards .col-md-6 {
    margin-bottom: 20px;
  }
  .sidebar {
    margin-top: 30px;
  }
}
@media (max-width: 576px) {
  .news-header {
    padding: 60px 0;
  }
  .content-section {
    margin-bottom: 30px;
    padding: 20px 0;
  }
  .sidebar {
    padding: 20px;
  }
  .info-card,
  .resp-item,
  .security-badge {
    padding: 20px;
  }
}
/* Print Styles */
@media print {
  .sidebar,
  .news-header {
    display: none;
  }
  .content-section {
    break-inside: avoid;
    margin-bottom: 30px;
  }
  .info-card,
  .definition-item,
  .resp-item {
    break-inside: avoid;
  }
}
.vendorDetails .contactContainer {
  flex-direction: column-reverse;
}

.vendorDetails .contactContainer .contact-info {
  width: 100%;
}

.contactUs .sidebar .contact-info-card {
  background: transparent;
  padding: 15px;
  box-shadow: none;
}

.contactUs .contact-details p {
  font-size: 1.1rem;
  font-weight: 400;
}

@media (max-width: 767px) {
  .header .header-main .auth-buttons {
    min-width: auto;
  }
  .expert-container .experts-grid,
  body .trend-container .services-grid,
  body .trend-container .ui-tabs.ui-tabs-top > .ui-tabs-nav {
    flex-direction: column;
  }
  body .trend-container {
    padding: 40px 0;
  }
  body .services-section {
    padding: 2rem 0;
  }
  .expert-container .expert-card,
  body .trend-container .service-card {
    width: 100%;
  }
  body .trend-container .ui-tabs.ui-tabs-top > .ui-tabs-nav {
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: transparent;
    gap: 5px;
  }
  body .trend-container .ui-tabs.ui-tabs-top > .ui-tabs-nav li a {
    min-width: 280px;
  }
  .heading-title .arrow-link {
    min-width: 170px;
    justify-content: end;
  }
  .heading-title h2 {
    font-size: clamp(16px, 2.2vw, 22px); /* ديناميكي (بدل 22px) */
  }
  .footer-section .container .row .footer-logo .footer-logo-img {
    filter: brightness(2);
  }
  .header .header-main .logo img {
    max-width: 150px;
  }
  .mobile-menu-header .logo img {
    max-width: 70%;
  }
  .mobile-menu .mobile-nav-list li a.langBtn img {
    filter: invert(1);
    max-width: 32px;
    margin-right: 5px;
  }
  .service-item {
    font-weight: 400;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem); /* ديناميكي (بدل 0.9em) */
    padding: 10px;
  }
  .services-grid {
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 5px;
    padding: 0px;
  }
  body .heroSection .slogan-text {
    font-size: clamp(1.4rem, 3vw, 1.2rem); /* ديناميكي (بدل 1.2em) */
    text-align: center;
    padding: 0;
  }
  body .heroSection .search-box {
    display: grid;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  body .heroSection.searchSection .linkTo {
    margin-right: 0;
    min-width: 100%;
  }
  body .heroSection {
    height: 470px;
  }
  .loginPage .login-wrapper {
    max-width: 96%;
  }
  .loginPage {
    padding: 40px 0;
  }
  body .heroSection.searchSection .location-selector {
    width: 100% !important;
  }
  .header .auth-buttons {
    min-width: 100%;
    flex-wrap: wrap;
  }
  .mobile-menu .mobile-nav-list {
    margin-top: 10px;
  }
  .gallery-section {
    padding: 40px 0;
  }
  body .trend-container .ui-tabs.ui-tabs-top > .ui-tabs-nav li a {
    font-size: clamp(1rem, 2vw, 1.3rem); /* ديناميكي (بدل 1.3rem) */
  }
  .header .header-main .logo {
    width: auto;
  }
  .header .header-main .menu-toggle {
    color: #000000;
  }
  .service-item {
    width: 48%;
  }
  .services-container {
    gap: 10px 10px;
  }
  .loginPage .form-section {
    padding: 40px 25px;
  }
  .gallery-page .filter-buttons {
    flex-direction: row;
    gap: 5px;
  }
  .gallery-page .filter-btn {
    width: 45%;
  }
  body .whatsapp-icon,
  body .live-chat-icon {
    right: auto;
    left: 20px;
    width: 40px;
    height: 40px;
  }
  body .live-chat-icon {
    bottom: 70px;
  }
  body .whatsapp-icon i,
  body .live-chat-icon i {
    font-size: clamp(20px, 3vw, 30px);
  }
  .header .auth-buttons {
    justify-content: start;
  }
  .mobile-nav-list a {
    padding: 5px 15px;
  }
  .mobile-menu .mobile-nav-list li {
    margin-bottom: 15px;
  }
  .footer-links {
    background-color: transparent;
  }
  .footer-section .container .row .footer-logo .footer-logo-img {
    filter: unset;
  }
  .footer-section .container .row .footer-logo .footer-logo-text {
    font-size: clamp(14px, 1.6vw, 14px);
  }
  body .searchSection.innerSearch .search-box {
    justify-content: center;
    padding: 10px 0;
  }
  .vendorDetails .photo-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .vendorDetails .tab-content {
    padding: 30px 15px;
    min-height: 300px;
  }
  .footer-section .container .row .footer-links li a {
    font-size: clamp(14px, 1.6vw, 14px);
  }
  .footer-section .container .row .footer-title {
    font-size: clamp(18px, 2vw, 20px);
    margin-bottom: 0px;
  }
  body .social-icon.twitter .x-icon {
    margin-bottom: -5px;
  }
  .footer-section .container .row .footer-links li {
    margin-bottom: 14px;
  }
  .contactUs .contact-form .btn-primary {
    min-width: 60%;
  }
  .contactUs .contact-details p {
    color: #222;
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: 400;
  }
  .vendorDetails .vendor-name {
    margin-bottom: 15px;
  }
  .header .auth-buttons .btn {
    min-width: 140px;
  }
  .newsDetails .comment-form {
    padding: 0;
  }
  .mobile-menu .mobile-nav-list li a {
    color: #000;
  }
  .mobile-menu .mobile-nav-list li {
    margin-bottom: 10px;
  }
}

/*# sourceMappingURL=layout-light.css.map */
