@charset "UTF-8";
/* Add your customizations of the layout variables here */
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
}
@keyframes fadeinmask {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.8;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes modal-in {
  from {
    background-color: transparent;
  }
  to {
    background-color: rgba(0, 0, 0, 0.6);
  }
}
@keyframes modal-in {
  from {
    background-color: transparent;
  }
  to {
    background-color: rgba(0, 0, 0, 0.6);
  }
}
.modal-in {
  -webkit-animation-name: modal-in;
  animation-name: modal-in;
}

h1, h2, h3, h4, h5, h6 {
  margin: 1.5rem 0 1rem 0;
  font-family: inherit;
  font-weight: 500;
  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;
}
body .ui-inputfield.ui-state-hover {
    border-color: var(--primary-color);
}

body .ui-selectonemenu-panel .ui-selectonemenu-items .ui-selectonemenu-item.ui-state-highlight {
    background: var(--primary-color);

}
.ui-selectonemenu .ui-selectonemenu-label {
    text-overflow: ellipsis;
}
body .ui-selectonemenu.ui-state-focus {
    border-color: var(--primary-color);
    outline: 0 none;
    box-shadow: 0 0 0 0.05em var(--primary-color);
    border-size: 1px;
}

.qty-badge{
    position: absolute;
    bottom: 10px;
    left: 20px;
    background-color: var(--primary-color); width: 30px; height: 30px;
    display: flex;
    border: 2px solid white;
    justify-content: center;
    align-items: center;
    font-family: var(--gun-font);
    font-weight: 600;
    border-radius: 50%; color: white;
}
.checkout-image-column{
    display: flex;
    justify-content: left;
    position: relative;
}
.checkout-description-column{
    display: flex;
    justify-content: start;
    align-items: start;
    margin-top: 15px;
    flex-direction: column;
    gap: 5px;
    font-size: 16px;
}
.save-new-address{
    margin-top: 10px;
    width:100%;
    border-radius:0px;
    background-color: var(--primary-color);
    border: none;
    cursor: 'pointer';
}
@media screen and (max-width: 1200px) {
  .checkout-content{
      display: flex;
      align-items: end;
      flex-direction: column;
      position: relative;
  }
  .checkout-image-column{
      display: flex;
      justify-content: center;
      width: 100% !important;
      position: static;
  }
  .checkout-description-column{
      width: 100% !important;
      align-items: center;
  }
  .checkout-image-wrapper:{
      position: static;
  }
  .qty-badge{
      bottom: 26px;
      left: 25px;
  }
}
mark {
  background: #FFF8E1;
  padding: 0.25rem 0.4rem;
  border-radius: 4px;
  font-family: monospace;
}

blockquote {
  margin: 1rem 0;
  padding: 0 2rem;
  border-left: 4px solid #90A4AE;
}

hr {
  border-top: solid #ebedef;
  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;
}

html {
  height: 100%;
  font-size: 14px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 14px;
  font-weight: 400;
  color: #191a1c;
  padding: 0;
  margin: 0;
  min-height: 100%;
  background-color: #f4f7f9;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.blocked-scroll {
  overflow: auto;
}

a {
  text-decoration: none;
  color: #33644a;
}

.ajax-loader {
  font-size: 32px;
  color: var(--primary-color);
}

.layout-main {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 100vh;
  padding-top: 60px;
}

.layout-main.full-layout {
  margin-left: 0px !important;
  background-color: #fff;
}

.layout-mask {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 998;
  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;
}

@media (max-width: 992px) {
  .layout-main {
    padding-top: 120px;
  }
}
.layout-content {
  padding: 30px 36px;
  flex: 1 1 auto;
}

@media (max-width: 991px) {
  .layout-content {
    padding: 32px 13px;
  }
}
.layout-topbar-colored .layout-topbar {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  -moz-transition: width 0.2s;
  -o-transition: width 0.2s;
  -webkit-transition: width 0.2s;
  transition: width 0.2s;
  height: 60px;
}
.layout-topbar-colored .layout-topbar .layout-topbar-wrapper {
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
.layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-left {
  height: 100%;
  width: 240px;
  padding: 0 16px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  z-index: 999;
}
.layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-left .layout-topbar-logo > img {
  height: 35px;
}
.layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right {
  height: 100%;
  flex-grow: 1;
  padding: 0 36px 0 12px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-right: solid 1px transparent;
}
.layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .menu-button-wrapper {
  z-index: 999;
}
.layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .menu-button-wrapper .menu-button {
  z-index: 1011;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: none;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  position: relative;
}
.layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .menu-button-wrapper .menu-button .menu-button-bars {
  position: absolute;
  height: 100%;
  width: 100%;
}
.layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .menu-button-wrapper .menu-button .menu-button-bars span {
  width: 24px;
  height: 3px;
  position: relative;
  margin: 5px 0;
  display: block;
  top: 4px;
  left: 6px;
}
.layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .menu-button-wrapper .menu-button .menu-button-bars span:nth-child(1) {
  transition-delay: 0.3s;
}
.layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .menu-button-wrapper .menu-button .menu-button-bars span:nth-child(2) {
  transition-delay: 0.4s;
}
.layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .menu-button-wrapper .menu-button .menu-button-bars span:nth-child(3) {
  transition-delay: 0.45s;
}
.layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .menu-button-wrapper .menu-button .menu-button-times {
  position: absolute;
  height: 100%;
  width: 100%;
  transform: rotate(45deg);
}
.layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .menu-button-wrapper .menu-button .menu-button-times span:nth-child(1) {
  height: 0%;
  width: 3px;
  position: absolute;
  top: 12%;
  left: 17px;
  transition-delay: 0s;
}
.layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .menu-button-wrapper .menu-button .menu-button-times span:nth-child(2) {
  width: 0%;
  height: 3px;
  position: absolute;
  left: 12%;
  top: 17px;
  transition-delay: 0.01s;
}
.layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .menu-button-wrapper .menu-button span {
  display: block;
  background: #ffffff;
  border-radius: 2px;
  -moz-transition: ease-in-out 0.1s;
  -o-transition: ease-in-out 0.1s;
  -webkit-transition: ease-in-out 0.1s;
  transition: ease-in-out 0.1s;
}
.layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
  flex-grow: 1;
  list-style-type: none;
  margin: 0;
  padding: 0;
  height: 100%;
}
.layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}
.layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > a {
  width: 100%;
  padding: 6px;
  margin: 0 12px;
}
.layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > a > .topbar-icon {
  font-size: 24px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  background-color: transparent;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > a.layout-rightpanel-button i {
  -moz-transition: transform 0.2s;
  -o-transition: transform 0.2s;
  -webkit-transition: transform 0.2s;
  transition: transform 0.2s;
}
.layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul {
  display: none;
  position: absolute;
  top: 60px;
  right: 0px;
  list-style-type: none;
  margin: 0;
  padding: 0 0 6px;
  z-index: 1000;
  -moz-border-radius-bottomleft: 2px;
  -webkit-border-bottom-left-radius: 2px;
  border-bottom-left-radius: 2px;
  -moz-border-radius-bottomright: 2px;
  -webkit-border-bottom-right-radius: 2px;
  border-bottom-right-radius: 2px;
  min-width: 250px;
  animation-duration: 0.2s;
}
.layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul .layout-submenu-header {
  padding: 12px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 6px;
  list-style: none;
}
.layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul .layout-submenu-header h6 {
  font-weight: normal;
  margin: 0;
}
.layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul .angle-icon {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  justify-content: flex-end;
  flex-grow: 1;
}
.layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li {
  padding: 6px 12px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  list-style: none;
}
.layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li > a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li > a i {
  margin-right: 10px;
  padding: 6px;
  border-radius: 2px;
  width: 26px;
  height: 26px;
}
.layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li > a img {
  height: 36px;
  width: 36px;
  margin-right: 10px;
}
.layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.search-item {
  margin: 0 12px;
}
.layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.search-item > form > .search-input-wrapper {
  position: relative;
}
.layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.search-item > form > .search-input-wrapper input {
  -moz-border-radius: 24px;
  -webkit-border-radius: 24px;
  border-radius: 24px;
  width: 240px;
  padding: 9px 12px 8px;
}
.layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.search-item > form > .search-input-wrapper i {
  position: absolute;
  right: 0;
  top: 0;
  right: 12px;
  top: 1px;
  font-size: 16px;
}
.layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.user-profile > a > img {
  height: 38px;
  width: 38px;
}
.layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.active-topmenuitem > ul {
  display: block;
}
.layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-rightpanel-button {
  font-size: 24px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .layout-topbar-colored .layout-topbar {
    height: 120px;
  }
  .layout-topbar-colored .layout-topbar .layout-topbar-wrapper {
    -ms-flex-align: start;
    align-items: flex-start;
    position: relative;
    padding: 6px;
  }
  .layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-left {
    padding: 0px 6px;
    height: 60px;
    margin-left: 0;
  }
  .layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right {
    height: 60px;
    width: 100%;
    padding: 0;
  }
  .layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .menu-button-wrapper {
    flex-grow: 1;
  }
  .layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .menu-button-wrapper .menu-button {
    display: block;
    width: 36px;
    text-align: center;
  }
  .layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .menu-button-wrapper .menu-button i {
    font-size: 20px;
  }
  .layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions {
    -ms-flex-pack: justify;
    justify-content: space-between;
    flex-grow: 4;
  }
  .layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > .topbar-item.search-item {
    position: absolute;
    left: 0;
    right: 60px;
    top: 22px;
  }
  .layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > .topbar-item.search-item form {
    width: 100%;
  }
  .layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > .topbar-item.search-item form .search-input-wrapper input {
    width: 100%;
  }
  .layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > .topbar-item > a {
    margin: 0;
    padding: 3px;
  }
  .layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > .topbar-item > a > i {
    font-size: 20px;
  }
  .layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > .topbar-item > ul {
    top: 112px;
    width: 90%;
    left: 5%;
    position: fixed;
    padding: 0 0 6px;
  }
  .layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > .topbar-item > ul .layout-submenu-header {
    margin-bottom: 6px;
  }
  .layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-rightpanel-button {
    position: absolute;
    bottom: 20px;
    right: 10px;
    font-size: 20px;
  }
}
.layout-topbar-colored .layout-topbar {
  background-color: var(--primary-color);
  border-bottom: 1px solid none;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.05);
}
.layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .menu-button > i {
  color: #ffffff;
}
.layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .menu-button:hover {
  background-color: rgba(255, 255, 255, 0.15);
  -moz-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > a > .topbar-icon {
  color: #ffffff;
}
.layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > a:hover i {
  background-color: rgba(255, 255, 255, 0.15);
  -moz-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.search-item > form > .search-input-wrapper input {
  background-color: #2b533d;
  border: 1px solid #2b533d;
  color: #E2F1FF;
}
.layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.search-item > form > .search-input-wrapper input::placeholder {
  color: #E2F1FF;
}
.layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.search-item > form > .search-input-wrapper i {
  color: #ffffff;
  opacity: 0.5;
}
.layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul {
  box-shadow: 0 2px 8px 0 rgba(25, 26, 28, 0.12);
  background-color: white;
}
.layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul .layout-submenu-header {
  background-color: #305d45;
}
.layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul .layout-submenu-header h6 {
  color: #ffffff;
}
.layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul .layout-submenu-header:hover {
  background-color: #305d45;
}
.layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li > a {
  color: #191a1c;
}
.layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li > a i {
  background-color: rgba(34, 66, 49, 0.8);
  color: #ffffff;
}
.layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li > a .notification-detail {
  color: #65686a;
}
.layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li .menu-text p {
  color: #191a1c;
}
.layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li .menu-text span {
  color: #65686a;
}
.layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li:hover {
  background-color: rgba(34, 66, 49, 0.2);
  -moz-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-rightpanel-button {
  color: #ffffff;
  background-color: transparent;
}
.layout-topbar-colored .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-rightpanel-button:hover {
  background-color: rgba(255, 255, 255, 0.15);
  -moz-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}



.layout-topbar-dark .layout-topbar {
  background-color: #2A2A2A;
  border-bottom: 1px solid #4D4D4D;
  box-shadow: none;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .menu-button > i {
  color: #33644a;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .menu-button:hover {
  background-color: #373737;
  -moz-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > a > .topbar-icon {
  color: #33644a;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > a:hover i {
  background-color: #373737;
  -moz-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.search-item > form > .search-input-wrapper input {
  background-color: #373737;
  border: 1px solid #373737;
  color: #458563;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.search-item > form > .search-input-wrapper input::placeholder {
  color: #458563;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.search-item > form > .search-input-wrapper i {
  color: #33644a;
  opacity: 0.5;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul {
  box-shadow: 0 2px 8px 0 rgba(25, 26, 28, 0.12);
  background-color: white;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul .layout-submenu-header {
  background-color: #305d45;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul .layout-submenu-header h6 {
  color: #ffffff;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul .layout-submenu-header:hover {
  background-color: #305d45;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li > a {
  color: #191a1c;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li > a i {
  background-color: rgba(34, 66, 49, 0.8);
  color: #ffffff;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li > a .notification-detail {
  color: #65686a;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li .menu-text p {
  color: #191a1c;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li .menu-text span {
  color: #65686a;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li:hover {
  background-color: rgba(34, 66, 49, 0.2);
  -moz-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-rightpanel-button {
  color: #33644a;
  background-color: transparent;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-rightpanel-button:hover {
  background-color: #373737;
  -moz-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

.layout-topbar-dim .layout-topbar {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  -moz-transition: width 0.2s;
  -o-transition: width 0.2s;
  -webkit-transition: width 0.2s;
  transition: width 0.2s;
  height: 60px;
}
.layout-topbar-dim .layout-topbar .layout-topbar-wrapper {
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
.layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-left {
  height: 100%;
  width: 240px;
  padding: 0 16px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  z-index: 999;
}
.layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-left .layout-topbar-logo > img {
  height: 35px;
}
.layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right {
  height: 100%;
  flex-grow: 1;
  padding: 0 36px 0 12px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-right: solid 1px transparent;
}
.layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .menu-button-wrapper {
  z-index: 999;
}
.layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .menu-button-wrapper .menu-button {
  z-index: 1011;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: none;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  position: relative;
}
.layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .menu-button-wrapper .menu-button .menu-button-bars {
  position: absolute;
  height: 100%;
  width: 100%;
}
.layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .menu-button-wrapper .menu-button .menu-button-bars span {
  width: 24px;
  height: 3px;
  position: relative;
  margin: 5px 0;
  display: block;
  top: 4px;
  left: 6px;
}
.layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .menu-button-wrapper .menu-button .menu-button-bars span:nth-child(1) {
  transition-delay: 0.3s;
}
.layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .menu-button-wrapper .menu-button .menu-button-bars span:nth-child(2) {
  transition-delay: 0.4s;
}
.layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .menu-button-wrapper .menu-button .menu-button-bars span:nth-child(3) {
  transition-delay: 0.45s;
}
.layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .menu-button-wrapper .menu-button .menu-button-times {
  position: absolute;
  height: 100%;
  width: 100%;
  transform: rotate(45deg);
}
.layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .menu-button-wrapper .menu-button .menu-button-times span:nth-child(1) {
  height: 0%;
  width: 3px;
  position: absolute;
  top: 12%;
  left: 17px;
  transition-delay: 0s;
}
.layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .menu-button-wrapper .menu-button .menu-button-times span:nth-child(2) {
  width: 0%;
  height: 3px;
  position: absolute;
  left: 12%;
  top: 17px;
  transition-delay: 0.01s;
}
.layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .menu-button-wrapper .menu-button span {
  display: block;
  background: #33644a;
  border-radius: 2px;
  -moz-transition: ease-in-out 0.1s;
  -o-transition: ease-in-out 0.1s;
  -webkit-transition: ease-in-out 0.1s;
  transition: ease-in-out 0.1s;
}
.layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
  flex-grow: 1;
  list-style-type: none;
  margin: 0;
  padding: 0;
  height: 100%;
}
.layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}
.layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > a {
  width: 100%;
  padding: 6px;
  margin: 0 12px;
}
.layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > a > .topbar-icon {
  font-size: 24px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  background-color: transparent;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > a.layout-rightpanel-button i {
  -moz-transition: transform 0.2s;
  -o-transition: transform 0.2s;
  -webkit-transition: transform 0.2s;
  transition: transform 0.2s;
}
.layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul {
  display: none;
  position: absolute;
  top: 60px;
  right: 0px;
  list-style-type: none;
  margin: 0;
  padding: 0 0 6px;
  z-index: 1000;
  -moz-border-radius-bottomleft: 2px;
  -webkit-border-bottom-left-radius: 2px;
  border-bottom-left-radius: 2px;
  -moz-border-radius-bottomright: 2px;
  -webkit-border-bottom-right-radius: 2px;
  border-bottom-right-radius: 2px;
  min-width: 250px;
  animation-duration: 0.2s;
}
.layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul .layout-submenu-header {
  padding: 12px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 6px;
  list-style: none;
}
.layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul .layout-submenu-header h6 {
  font-weight: normal;
  margin: 0;
}
.layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul .angle-icon {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  justify-content: flex-end;
  flex-grow: 1;
}
.layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li {
  padding: 6px 12px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  list-style: none;
}
.layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li > a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li > a i {
  margin-right: 10px;
  padding: 6px;
  border-radius: 2px;
  width: 26px;
  height: 26px;
}
.layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li > a img {
  height: 36px;
  width: 36px;
  margin-right: 10px;
}
.layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.search-item {
  margin: 0 12px;
}
.layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.search-item > form > .search-input-wrapper {
  position: relative;
}
.layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.search-item > form > .search-input-wrapper input {
  -moz-border-radius: 24px;
  -webkit-border-radius: 24px;
  border-radius: 24px;
  width: 240px;
  padding: 9px 12px 8px;
}
.layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.search-item > form > .search-input-wrapper i {
  position: absolute;
  right: 0;
  top: 0;
  right: 12px;
  top: 1px;
  font-size: 16px;
}
.layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.user-profile > a > img {
  height: 38px;
  width: 38px;
}
.layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.active-topmenuitem > ul {
  display: block;
}
.layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-rightpanel-button {
  font-size: 24px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .layout-topbar-dim .layout-topbar {
    height: 120px;
  }
  .layout-topbar-dim .layout-topbar .layout-topbar-wrapper {
    -ms-flex-align: start;
    align-items: flex-start;
    position: relative;
    padding: 6px;
  }
  .layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-left {
    padding: 0px 6px;
    height: 60px;
    margin-left: 0;
  }
  .layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right {
    height: 60px;
    width: 100%;
    padding: 0;
  }
  .layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .menu-button-wrapper {
    flex-grow: 1;
  }
  .layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .menu-button-wrapper .menu-button {
    display: block;
    width: 36px;
    text-align: center;
  }
  .layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .menu-button-wrapper .menu-button i {
    font-size: 20px;
  }
  .layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions {
    -ms-flex-pack: justify;
    justify-content: space-between;
    flex-grow: 4;
  }
  .layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > .topbar-item.search-item {
    position: absolute;
    left: 0;
    right: 60px;
    top: 22px;
  }
  .layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > .topbar-item.search-item form {
    width: 100%;
  }
  .layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > .topbar-item.search-item form .search-input-wrapper input {
    width: 100%;
  }
  .layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > .topbar-item > a {
    margin: 0;
    padding: 3px;
  }
  .layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > .topbar-item > a > i {
    font-size: 20px;
  }
  .layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > .topbar-item > ul {
    top: 112px;
    width: 90%;
    left: 5%;
    position: fixed;
    padding: 0 0 6px;
  }
  .layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > .topbar-item > ul .layout-submenu-header {
    margin-bottom: 6px;
  }
  .layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-rightpanel-button {
    position: absolute;
    bottom: 20px;
    right: 10px;
    font-size: 20px;
  }
}
.layout-topbar-dim .layout-topbar {
  background-color: #2B394F;
  border-bottom: 1px solid #364760;
  box-shadow: none;
}
.layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .menu-button > i {
  color: #33644a;
}
.layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .menu-button:hover {
  background-color: #344560;
  -moz-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > a > .topbar-icon {
  color: #33644a;
}
.layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > a:hover i {
  background-color: #344560;
  -moz-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.search-item > form > .search-input-wrapper input {
  background-color: #344560;
  border: 1px solid #344560;
  color: #458563;
}
.layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.search-item > form > .search-input-wrapper input::placeholder {
  color: #458563;
}
.layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.search-item > form > .search-input-wrapper i {
  color: #33644a;
  opacity: 0.5;
}
.layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul {
  box-shadow: 0 2px 8px 0 rgba(25, 26, 28, 0.12);
  background-color: white;
}
.layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul .layout-submenu-header {
  background-color: #305d45;
}
.layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul .layout-submenu-header h6 {
  color: #ffffff;
}
.layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul .layout-submenu-header:hover {
  background-color: #305d45;
}
.layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li > a {
  color: #191a1c;
}
.layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li > a i {
  background-color: rgba(34, 66, 49, 0.8);
  color: #ffffff;
}
.layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li > a .notification-detail {
  color: #65686a;
}
.layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li .menu-text p {
  color: #191a1c;
}
.layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li .menu-text span {
  color: #65686a;
}
.layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li:hover {
  background-color: rgba(34, 66, 49, 0.2);
  -moz-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-rightpanel-button {
  color: #33644a;
  background-color: transparent;
}
.layout-topbar-dim .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-rightpanel-button:hover {
  background-color: #344560;
  -moz-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

.menu-wrapper {
  height: calc(100% - 60px);
  width: 240px;
  position: fixed;
  left: 0;
  top: 60px;
  z-index: 998;
  transform: none;
  -moz-transition: transform 0.2s;
  -o-transition: transform 0.2s;
  -webkit-transition: transform 0.2s;
  transition: transform 0.2s;
}
.menu-wrapper .layout-menu-container {
  overflow: auto;
  height: 100%;
}
.menu-wrapper .layout-menu-container .layout-profile.layout-profile-active .layout-profile-icon {
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.menu-wrapper .layout-menu-container .layout-profile .layout-profile-button {
  padding: 12px 0;
  margin: 0 17px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -moz-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.menu-wrapper .layout-menu-container .layout-profile .layout-profile-button .image-name {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
.menu-wrapper .layout-menu-container .layout-profile .layout-profile-button .image-name img {
  width: 36px;
  margin-right: 8px;
}
.menu-wrapper .layout-menu-container .layout-profile .layout-profile-button .image-name .layout-profile-userinfo .layout-profile-name {
  display: block;
  font-size: 13px;
}
.menu-wrapper .layout-menu-container .layout-profile .layout-profile-button .image-name .layout-profile-userinfo .layout-profile-mail {
  display: block;
  font-size: 10px;
}
.menu-wrapper .layout-menu-container .layout-profile .layout-profile-button .layout-profile-icon {
  font-size: 14px;
  -moz-transition: transform 0.2s;
  -o-transition: transform 0.2s;
  -webkit-transition: transform 0.2s;
  transition: transform 0.2s;
}
.menu-wrapper .layout-menu-container .layout-profile .layout-profile-menu {
  list-style: none;
  padding: 0 8px;
  margin: 0 0 16px;
  display: none;
}
.menu-wrapper .layout-menu-container .layout-profile .layout-profile-menu > li a {
  font-size: 13px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin: 0px;
  padding: 9px 12px 9px 9px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -moz-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.menu-wrapper .layout-menu-container .layout-profile .layout-profile-menu > li a i {
  margin-right: 11px;
}
.menu-wrapper .layout-menu-container .layout-menu {
  list-style-type: none;
  margin: 24px 0 0 0;
  padding: 0;
}
.menu-wrapper .layout-menu-container .layout-menu li {
  padding: 0px 8px 24px;
}
.menu-wrapper .layout-menu-container .layout-menu li.active-menuitem > a i.layout-submenu-toggler {
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.menu-wrapper .layout-menu-container .layout-menu li.layout-root-menuitem > a {
  display: none;
}
.menu-wrapper .layout-menu-container .layout-menu li.layout-root-menuitem > div {
  padding-left: 8px;
  margin-bottom: 6px;
}
.menu-wrapper .layout-menu-container .layout-menu li.layout-root-menuitem > div > .layout-menuitem-text {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
}
.menu-wrapper .layout-menu-container .layout-menu li .layout-menu-tooltip {
  display: none;
}
.menu-wrapper .layout-menu-container .layout-menu li > a {
  margin: 0px;
  padding: 9px 12px 9px 9px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  font-size: 13px;
}
.menu-wrapper .layout-menu-container .layout-menu li > a .layout-menuitem-text {
  margin: 0 11px;
}
.menu-wrapper .layout-menu-container .layout-menu li > a i {
  font-size: 14px;
}
.menu-wrapper .layout-menu-container .layout-menu li > a i.layout-submenu-toggler {
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  margin-left: auto;
}
.menu-wrapper .layout-menu-container .layout-menu li > ul {
  display: block;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.menu-wrapper .layout-menu-container .layout-menu li > ul li ul {
  display: none;
}
.menu-wrapper .layout-menu-container .layout-menu li > ul > li {
  padding: 0;
}
.menu-wrapper .layout-menu-container .layout-menu li > ul > li.layout-root-menuitem > a {
  display: -ms-flexbox;
  display: flex;
}
.menu-wrapper .layout-menu-container .layout-menu li > ul > li > div {
  display: none;
}
.menu-wrapper .layout-menu-container .layout-menu li > ul > li ul li a {
  padding-left: 20px;
}
.menu-wrapper .layout-menu-container .layout-menu li > ul > li ul li ul li a {
  padding-left: 30px;
}
.menu-wrapper .layout-menu-container .layout-menu li > ul > li ul li ul li ul li a {
  padding-left: 40px;
}
.menu-wrapper .layout-menu-container .layout-menu li > ul > li ul li ul li ul li ul li a {
  padding-left: 50px;
}
.menu-wrapper .layout-menu-container .layout-menu li > ul > li ul li ul li ul li ul li ul li a {
  padding-left: 60px;
}
.menu-wrapper .layout-menu-container .layout-menu li > ul > li ul li ul li ul li ul li ul li ul li a {
  padding-left: 70px;
}
.menu-wrapper .layout-menu-container .layout-menu li > ul > li ul li ul li ul li ul li ul li ul li ul li a {
  padding-left: 80px;
}
.menu-wrapper .layout-menu-container .layout-menu li > ul > li ul li ul li ul li ul li ul li ul li ul li ul li a {
  padding-left: 90px;
}
.menu-wrapper .layout-menu-container .layout-menu li > ul > li ul li ul li ul li ul li ul li ul li ul li ul li ul li a {
  padding-left: 100px;
}

@media (min-width: 992px) {
  .layout-overlay .menu-wrapper {
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transform: translate3d(-241px, 0px, 0px);
  }
  .layout-overlay.layout-overlay-active .menu-wrapper {
    transform: translate3d(0px, 0px, 0px);
  }
  .layout-overlay.layout-overlay-active .layout-topbar .layout-topbar-wrapper .layout-topbar-right .menu-button-wrapper .menu-button .menu-button-bars span {
    width: 0%;
  }
  .layout-overlay.layout-overlay-active .layout-topbar .layout-topbar-wrapper .layout-topbar-right .menu-button-wrapper .menu-button .menu-button-bars span:nth-child(1) {
    transition-delay: 0s;
  }
  .layout-overlay.layout-overlay-active .layout-topbar .layout-topbar-wrapper .layout-topbar-right .menu-button-wrapper .menu-button .menu-button-bars span:nth-child(2) {
    transition-delay: 0.125s;
  }
  .layout-overlay.layout-overlay-active .layout-topbar .layout-topbar-wrapper .layout-topbar-right .menu-button-wrapper .menu-button .menu-button-bars span:nth-child(3) {
    transition-delay: 0.25s;
  }
  .layout-overlay.layout-overlay-active .layout-topbar .layout-topbar-wrapper .layout-topbar-right .menu-button-wrapper .menu-button .menu-button-times span:nth-child(1) {
    height: 80%;
    transition-delay: 0.425s;
  }
  .layout-overlay.layout-overlay-active .layout-topbar .layout-topbar-wrapper .layout-topbar-right .menu-button-wrapper .menu-button .menu-button-times span:nth-child(2) {
    width: 80%;
    transition-delay: 0.375s;
  }
  .layout-overlay .layout-topbar .layout-topbar-wrapper .layout-topbar-right .menu-button-wrapper .menu-button {
    display: block;
  }

  .layout-static .menu-wrapper {
    transform: translate3d(-241px, 0px, 0px);
  }
  .layout-static .layout-main {
    margin-left: 0;
    -moz-transition: margin-left 0.2s;
    -o-transition: margin-left 0.2s;
    -webkit-transition: margin-left 0.2s;
    transition: margin-left 0.2s;
  }
  .layout-static.layout-static-active .menu-wrapper {
    transform: translate3d(0px, 0px, 0px);
  }
  .layout-static.layout-static-active .layout-main {
    margin-left: 240px;
  }
  .layout-static.layout-static-active .layout-topbar .layout-topbar-wrapper .layout-topbar-right .menu-button-wrapper .menu-button .menu-button-bars span {
    width: 0%;
  }
  .layout-static.layout-static-active .layout-topbar .layout-topbar-wrapper .layout-topbar-right .menu-button-wrapper .menu-button .menu-button-bars span:nth-child(1) {
    transition-delay: 0s;
  }
  .layout-static.layout-static-active .layout-topbar .layout-topbar-wrapper .layout-topbar-right .menu-button-wrapper .menu-button .menu-button-bars span:nth-child(2) {
    transition-delay: 0.125s;
  }
  .layout-static.layout-static-active .layout-topbar .layout-topbar-wrapper .layout-topbar-right .menu-button-wrapper .menu-button .menu-button-bars span:nth-child(3) {
    transition-delay: 0.25s;
  }
  .layout-static.layout-static-active .layout-topbar .layout-topbar-wrapper .layout-topbar-right .menu-button-wrapper .menu-button .menu-button-times span:nth-child(1) {
    height: 80%;
    transition-delay: 0.425s;
  }
  .layout-static.layout-static-active .layout-topbar .layout-topbar-wrapper .layout-topbar-right .menu-button-wrapper .menu-button .menu-button-times span:nth-child(2) {
    width: 80%;
    transition-delay: 0.375s;
  }
  .layout-static .layout-topbar .layout-topbar-wrapper .layout-topbar-right .menu-button-wrapper .menu-button {
    display: block;
  }
}
@media (max-width: 991px) {
  .layout-wrapper .menu-wrapper {
    top: 120px;
    z-index: 1010;
    height: calc(100% - 112px);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transform: translate3d(-260px, 0px, 0px);
  }
  .layout-wrapper.layout-mobile-active {
    overflow: hidden;
    height: 100vh;
  }
  .layout-wrapper.layout-mobile-active .menu-wrapper {
    transform: translate3d(0px, 0px, 0px);
  }
  .layout-wrapper.layout-mobile-active .layout-mask {
    display: block;
  }
  .layout-wrapper.layout-mobile-active .layout-topbar .layout-topbar-wrapper .layout-topbar-right .menu-button-wrapper .menu-button .menu-button-bars span {
    width: 0%;
  }
  .layout-wrapper.layout-mobile-active .layout-topbar .layout-topbar-wrapper .layout-topbar-right .menu-button-wrapper .menu-button .menu-button-bars span:nth-child(1) {
    transition-delay: 0s;
  }
  .layout-wrapper.layout-mobile-active .layout-topbar .layout-topbar-wrapper .layout-topbar-right .menu-button-wrapper .menu-button .menu-button-bars span:nth-child(2) {
    transition-delay: 0.125s;
  }
  .layout-wrapper.layout-mobile-active .layout-topbar .layout-topbar-wrapper .layout-topbar-right .menu-button-wrapper .menu-button .menu-button-bars span:nth-child(3) {
    transition-delay: 0.25s;
  }
  .layout-wrapper.layout-mobile-active .layout-topbar .layout-topbar-wrapper .layout-topbar-right .menu-button-wrapper .menu-button .menu-button-times span:nth-child(1) {
    height: 80%;
    transition-delay: 0.425s;
  }
  .layout-wrapper.layout-mobile-active .layout-topbar .layout-topbar-wrapper .layout-topbar-right .menu-button-wrapper .menu-button .menu-button-times span:nth-child(2) {
    width: 80%;
    transition-delay: 0.375s;
  }
}
@media (min-width: 992px) {
  .layout-wrapper.layout-horizontal .menu-wrapper {
    top: 60px;
    width: 100%;
    height: 44px;
  }
  .layout-wrapper.layout-horizontal .menu-wrapper .layout-menu-container {
    overflow: visible;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .layout-wrapper.layout-horizontal .menu-wrapper .layout-menu-container .layout-profile {
    border-bottom: 0 none;
    display: inline-block;
    position: absolute;
    right: 24px;
    top: 4px;
  }
  .layout-wrapper.layout-horizontal .menu-wrapper .layout-menu-container .layout-profile .layout-profile-button {
    padding: 0;
    margin-top: 2px;
  }
  .layout-wrapper.layout-horizontal .menu-wrapper .layout-menu-container .layout-profile .layout-profile-button img {
    width: 32px;
  }
  .layout-wrapper.layout-horizontal .menu-wrapper .layout-menu-container .layout-profile .layout-profile-button .layout-profile-userinfo,
.layout-wrapper.layout-horizontal .menu-wrapper .layout-menu-container .layout-profile .layout-profile-button .layout-profile-icon {
    display: none;
  }
  .layout-wrapper.layout-horizontal .menu-wrapper .layout-menu-container .layout-profile .layout-profile-button:hover {
    background-color: transparent;
  }
  .layout-wrapper.layout-horizontal .menu-wrapper .layout-menu-container .layout-profile .layout-profile-menu {
    display: none;
    list-style-type: none;
    top: 40px;
    right: 0px;
    width: 230px;
    position: absolute;
    padding: 8px 12px;
    z-index: 100;
    overflow: auto;
    max-height: 450px;
    -moz-border-radius-bottomleft: 2px;
    -webkit-border-bottom-left-radius: 2px;
    border-bottom-left-radius: 2px;
    -moz-border-radius-bottomright: 2px;
    -webkit-border-bottom-right-radius: 2px;
    border-bottom-right-radius: 2px;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.08);
  }
  .layout-wrapper.layout-horizontal .menu-wrapper .layout-menu-container .layout-profile .layout-profile-menu li a {
    padding: 9px 12px 9px 9px;
    border-radius: 4px;
  }
  .layout-wrapper.layout-horizontal .menu-wrapper .layout-menu-container .layout-profile.layout-profile-active .layout-profile-menu {
    display: block;
  }
  .layout-wrapper.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu {
    list-style-type: none;
    margin: 0px 16px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .layout-wrapper.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu li.active-menuitem > a i.layout-submenu-toggler {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
  .layout-wrapper.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu li.active-menuitem > ul {
    display: block;
  }
  .layout-wrapper.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu > li {
    padding: 0;
    position: relative;
  }
  .layout-wrapper.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu > li .layout-menu-tooltip {
    display: none;
  }
  .layout-wrapper.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu > li > a {
    margin-right: 6px;
    padding: 6px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
  .layout-wrapper.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu > li.layout-root-menuitem > div {
    display: none;
  }
  .layout-wrapper.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu > li > ul {
    display: none;
    list-style-type: none;
    top: 35px;
    left: 0px;
    width: 230px;
    position: absolute;
    padding: 8px 0;
    margin: 0;
    z-index: 100;
    overflow: auto;
    max-height: 450px;
    -moz-border-radius-bottomleft: 2px;
    -webkit-border-bottom-left-radius: 2px;
    border-bottom-left-radius: 2px;
    -moz-border-radius-bottomright: 2px;
    -webkit-border-bottom-right-radius: 2px;
    border-bottom-right-radius: 2px;
    -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.08);
  }
  .layout-wrapper.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu > li > ul > li {
    padding: 0px 8px;
    border: 0 none;
  }
  .layout-wrapper.layout-horizontal .layout-topbar .layout-topbar-wrapper .layout-topbar-left .menu-button-wrapper .menu-button {
    display: none;
  }
  .layout-wrapper.layout-horizontal .layout-main {
    padding-top: 104px;
  }
}
@media (min-width: 992px) {
  .layout-wrapper.layout-slim .menu-wrapper, .layout-wrapper.layout-slim-plus .menu-wrapper {
    width: 64px;
    overflow: visible;
  }
  .layout-wrapper.layout-slim .menu-wrapper .layout-menu-container, .layout-wrapper.layout-slim-plus .menu-wrapper .layout-menu-container {
    overflow: visible;
    padding: 0;
  }
  .layout-wrapper.layout-slim .menu-wrapper .layout-menu-container .layout-profile .layout-profile-button, .layout-wrapper.layout-slim-plus .menu-wrapper .layout-menu-container .layout-profile .layout-profile-button {
    -ms-flex-pack: center;
    justify-content: center;
  }
  .layout-wrapper.layout-slim .menu-wrapper .layout-menu-container .layout-profile .layout-profile-button > i, .layout-wrapper.layout-slim-plus .menu-wrapper .layout-menu-container .layout-profile .layout-profile-button > i {
    display: none;
  }
  .layout-wrapper.layout-slim .menu-wrapper .layout-menu-container .layout-profile .layout-profile-button img, .layout-wrapper.layout-slim-plus .menu-wrapper .layout-menu-container .layout-profile .layout-profile-button img {
    width: 32px;
    margin: 0;
  }
  .layout-wrapper.layout-slim .menu-wrapper .layout-menu-container .layout-profile .layout-profile-button .image-name .layout-profile-userinfo, .layout-wrapper.layout-slim-plus .menu-wrapper .layout-menu-container .layout-profile .layout-profile-button .image-name .layout-profile-userinfo {
    display: none;
  }
  .layout-wrapper.layout-slim .menu-wrapper .layout-menu-container .layout-profile .layout-profile-menu, .layout-wrapper.layout-slim-plus .menu-wrapper .layout-menu-container .layout-profile .layout-profile-menu {
    position: absolute;
    overflow: auto;
    top: 0;
    left: 71px;
    min-width: 250px;
    max-height: 450px;
    display: none;
    padding: 8px 12px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    -webkit-box-shadow: 0 2px 10px 0 rgba(0, 3, 6, 0.16);
    -moz-box-shadow: 0 2px 10px 0 rgba(0, 3, 6, 0.16);
    box-shadow: 0 2px 10px 0 rgba(0, 3, 6, 0.16);
  }
  .layout-wrapper.layout-slim .menu-wrapper .layout-menu-container .layout-profile .layout-profile-menu li a, .layout-wrapper.layout-slim-plus .menu-wrapper .layout-menu-container .layout-profile .layout-profile-menu li a {
    padding: 9px 12px 9px 9px;
    border-radius: 4px;
  }
  .layout-wrapper.layout-slim .menu-wrapper .layout-menu-container .layout-profile > .layout-profile-icons, .layout-wrapper.layout-slim-plus .menu-wrapper .layout-menu-container .layout-profile > .layout-profile-icons {
    display: none;
  }
  .layout-wrapper.layout-slim .menu-wrapper .layout-menu-container .layout-profile.layout-profile-active .layout-profile-menu, .layout-wrapper.layout-slim-plus .menu-wrapper .layout-menu-container .layout-profile.layout-profile-active .layout-profile-menu {
    display: block;
  }
  .layout-wrapper.layout-slim .menu-wrapper .layout-menu-container .layout-menu, .layout-wrapper.layout-slim-plus .menu-wrapper .layout-menu-container .layout-menu {
    padding: 12px 0;
    margin: 0;
  }
  .layout-wrapper.layout-slim .menu-wrapper .layout-menu-container .layout-menu .layout-menu-tooltip, .layout-wrapper.layout-slim-plus .menu-wrapper .layout-menu-container .layout-menu .layout-menu-tooltip {
    display: none;
    padding: 0 0.412px;
    position: absolute;
    left: 72px;
    top: 4px;
    line-height: 1;
    border-radius: 2px;
  }
  .layout-wrapper.layout-slim .menu-wrapper .layout-menu-container .layout-menu .layout-menu-tooltip .layout-menu-tooltip-text, .layout-wrapper.layout-slim-plus .menu-wrapper .layout-menu-container .layout-menu .layout-menu-tooltip .layout-menu-tooltip-text {
    padding: 6px 8px;
    font-weight: 500;
    min-width: 75px;
    white-space: nowrap;
    text-align: center;
    -webkit-box-shadow: 0 2px 10px 0 rgba(0, 3, 6, 0.16);
    -moz-box-shadow: 0 2px 10px 0 rgba(0, 3, 6, 0.16);
    box-shadow: 0 2px 10px 0 rgba(0, 3, 6, 0.16);
  }
  .layout-wrapper.layout-slim .menu-wrapper .layout-menu-container .layout-menu .layout-menu-tooltip .layout-menu-tooltip-arrow, .layout-wrapper.layout-slim-plus .menu-wrapper .layout-menu-container .layout-menu .layout-menu-tooltip .layout-menu-tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    top: 50%;
    left: -4px;
    margin-top: -5px;
    border-width: 5px 5px 5px 0;
  }
  .layout-wrapper.layout-slim .menu-wrapper .layout-menu-container .layout-menu li.active-menuitem > ul, .layout-wrapper.layout-slim-plus .menu-wrapper .layout-menu-container .layout-menu li.active-menuitem > ul {
    display: block;
  }
  .layout-wrapper.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li, .layout-wrapper.layout-slim-plus .menu-wrapper .layout-menu-container .layout-menu > li {
    position: relative;
    margin-bottom: 12px;
    padding: 0 7px;
    width: auto;
  }
  .layout-wrapper.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li.layout-root-menuitem > div, .layout-wrapper.layout-slim-plus .menu-wrapper .layout-menu-container .layout-menu > li.layout-root-menuitem > div {
    display: none;
  }
  .layout-wrapper.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li > a, .layout-wrapper.layout-slim-plus .menu-wrapper .layout-menu-container .layout-menu > li > a {
    margin: 0px;
    padding: 8px 16px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    position: relative;
    border: none;
    border-radius: 2px;
  }
  .layout-wrapper.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li > a .layout-menuitem-text, .layout-wrapper.layout-slim-plus .menu-wrapper .layout-menu-container .layout-menu > li > a .layout-menuitem-text {
    display: none;
  }
  .layout-wrapper.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li > a i, .layout-wrapper.layout-slim-plus .menu-wrapper .layout-menu-container .layout-menu > li > a i {
    font-size: 18px;
    margin-right: 0;
  }
  .layout-wrapper.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li > a i.layout-submenu-toggler, .layout-wrapper.layout-slim-plus .menu-wrapper .layout-menu-container .layout-menu > li > a i.layout-submenu-toggler {
    display: none;
  }
  .layout-wrapper.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li > a .menuitem-badge, .layout-wrapper.layout-slim-plus .menu-wrapper .layout-menu-container .layout-menu > li > a .menuitem-badge {
    display: none;
    margin-left: auto;
  }
  .layout-wrapper.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li > a:hover + .layout-menu-tooltip, .layout-wrapper.layout-slim-plus .menu-wrapper .layout-menu-container .layout-menu > li > a:hover + .layout-menu-tooltip {
    display: block;
  }
  .layout-wrapper.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li > ul, .layout-wrapper.layout-slim-plus .menu-wrapper .layout-menu-container .layout-menu > li > ul {
    position: absolute;
    overflow: auto;
    top: 0;
    left: 71px;
    min-width: 250px;
    max-height: 450px;
    display: none;
    padding: 12px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
  }
  .layout-wrapper.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a:hover + .layout-menu-tooltip, .layout-wrapper.layout-slim-plus .menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a:hover + .layout-menu-tooltip {
    display: none;
  }
  .layout-wrapper.layout-slim .layout-topbar .layout-topbar-left .menu-button-wrapper .menu-button, .layout-wrapper.layout-slim-plus .layout-topbar .layout-topbar-left .menu-button-wrapper .menu-button {
    display: none;
  }
  .layout-wrapper.layout-slim .layout-main, .layout-wrapper.layout-slim-plus .layout-main {
    padding-left: 64px;
  }
  .layout-wrapper.layout-slim-plus .menu-wrapper {
    width: 100px;
  }
  .layout-wrapper.layout-slim-plus .menu-wrapper .layout-menu-container .layout-profile .layout-profile-button img {
    width: 42px;
  }
  .layout-wrapper.layout-slim-plus .menu-wrapper .layout-menu-container .layout-profile .layout-profile-menu {
    left: 107px;
  }
  .layout-wrapper.layout-slim-plus .menu-wrapper .layout-menu-container .layout-menu > li.layout-root-menuitem div.layout-menu-tooltip {
    display: none;
  }
  .layout-wrapper.layout-slim-plus .menu-wrapper .layout-menu-container .layout-menu > li > a {
    flex-direction: column;
    padding: 8px 6px;
  }
  .layout-wrapper.layout-slim-plus .menu-wrapper .layout-menu-container .layout-menu > li > a .layout-menuitem-text {
    display: block;
    margin: 0;
    margin-top: 6px;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
  }
  .layout-wrapper.layout-slim-plus .menu-wrapper .layout-menu-container .layout-menu > li > a i {
    font-size: 24px;
  }
  .layout-wrapper.layout-slim-plus .menu-wrapper .layout-menu-container .layout-menu > li > ul {
    left: 107px;
  }
  .layout-wrapper.layout-slim-plus .menu-wrapper .layout-menu-container .layout-menu > li > ul > li > div.layout-menu-tooltip {
    display: none;
  }
  .layout-wrapper.layout-slim-plus .menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a:hover + .layout-menu-tooltip {
    display: none;
  }
  .layout-wrapper.layout-slim-plus .layout-topbar .layout-topbar-left .menu-button-wrapper .menu-button {
    display: none;
  }
  .layout-wrapper.layout-slim-plus .layout-main {
    padding-left: 100px;
  }
}
.layout-menu-dim .menu-wrapper {
  background-color: #2B394F;
  border-right: solid 1px #ebedef;
}
.layout-menu-dim .menu-wrapper .layout-menu-container .layout-profile .layout-profile-button {
  color: #f8fafc;
}
.layout-menu-dim .menu-wrapper .layout-menu-container .layout-profile .layout-profile-button .image-name .layout-profile-userinfo .layout-profile-mail {
  color: rgba(248, 250, 252, 0.7);
}
.layout-menu-dim .menu-wrapper .layout-menu-container .layout-profile ul li.layout-profile-icons {
  display: none;
}
.layout-menu-dim .menu-wrapper .layout-menu-container .layout-profile ul li a {
  color: #f8fafc;
}
.layout-menu-dim .menu-wrapper .layout-menu-container .layout-profile ul li a:hover {
  background-color: rgba(34, 66, 49, 0.2);
}
.layout-menu-dim .menu-wrapper .layout-menu-container .layout-profile .layout-profile-icons {
  border-color: rgba(235, 237, 239, 0.4);
}
.layout-menu-dim .menu-wrapper .layout-menu-container .layout-profile .layout-profile-icons a i {
  color: #3c7456;
}
.layout-menu-dim .menu-wrapper .layout-menu-container .layout-profile .layout-profile-icons a:hover i {
  color: #f8fafc;
}
.layout-menu-dim .menu-wrapper .layout-menu-container .layout-menu > li > div .layout-menuitem-text {
  color: #3c7456;
}
.layout-menu-dim .menu-wrapper .layout-menu-container .layout-menu > li a {
  color: #f8fafc;
}
.layout-menu-dim .menu-wrapper .layout-menu-container .layout-menu > li a:hover {
  background-color: rgba(34, 66, 49, 0.2);
}
.layout-menu-dim .menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a {
  color: #376b4f;
}
.layout-menu-dim .menu-wrapper .layout-menu-container .layout-menu > li > ul li a {
  color: #f8fafc;
}
.layout-menu-dim .menu-wrapper .layout-menu-container .layout-menu > li > ul li a:hover {
  background-color: rgba(34, 66, 49, 0.2);
}
.layout-menu-dim .menu-wrapper .layout-menu-container .layout-menu > li > ul li.active-menuitem > a {
  color: #376b4f;
}
@media (min-width: 992px) {
  .layout-menu-dim.layout-horizontal .menu-wrapper .layout-menu-container .layout-profile > ul, .layout-menu-dim.layout-slim .menu-wrapper .layout-menu-container .layout-profile > ul, .layout-menu-dim.layout-slim-plus .menu-wrapper .layout-menu-container .layout-profile > ul {
    background-color: #344560;
  }
  .layout-menu-dim.layout-horizontal .menu-wrapper .layout-menu-container .layout-profile > ul > li > a, .layout-menu-dim.layout-slim .menu-wrapper .layout-menu-container .layout-profile > ul > li > a, .layout-menu-dim.layout-slim-plus .menu-wrapper .layout-menu-container .layout-profile > ul > li > a {
    color: #f8fafc;
  }
  .layout-menu-dim.layout-horizontal .menu-wrapper .layout-menu-container .layout-profile > ul > li > a:hover, .layout-menu-dim.layout-slim .menu-wrapper .layout-menu-container .layout-profile > ul > li > a:hover, .layout-menu-dim.layout-slim-plus .menu-wrapper .layout-menu-container .layout-profile > ul > li > a:hover {
    background-color: rgba(34, 66, 49, 0.2);
  }
  .layout-menu-dim.layout-horizontal .menu-wrapper {
    border-bottom: solid 1px #ebedef;
    border-right: none;
  }
  .layout-menu-dim.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu > li > ul {
    background-color: #344560;
    box-shadow: 0 2px 10px 0 rgba(25, 26, 28, 0.12);
  }
  .layout-menu-dim.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu > li > ul li > a {
    color: #f8fafc;
  }
  .layout-menu-dim.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu > li > ul li > a:hover {
    background-color: rgba(34, 66, 49, 0.2);
  }
  .layout-menu-dim.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu > li > ul li.active-menuitem > a {
    color: #376b4f;
  }
  .layout-menu-dim.layout-slim .menu-wrapper .layout-menu-container .layout-menu .layout-menu-tooltip, .layout-menu-dim.layout-slim-plus .menu-wrapper .layout-menu-container .layout-menu .layout-menu-tooltip {
    background-color: #65686a;
  }
  .layout-menu-dim.layout-slim .menu-wrapper .layout-menu-container .layout-menu .layout-menu-tooltip .layout-menu-tooltip-text, .layout-menu-dim.layout-slim-plus .menu-wrapper .layout-menu-container .layout-menu .layout-menu-tooltip .layout-menu-tooltip-text {
    color: #ffffff;
  }
  .layout-menu-dim.layout-slim .menu-wrapper .layout-menu-container .layout-menu .layout-menu-tooltip .layout-menu-tooltip-arrow, .layout-menu-dim.layout-slim-plus .menu-wrapper .layout-menu-container .layout-menu .layout-menu-tooltip .layout-menu-tooltip-arrow {
    border-right-color: #65686a;
  }
  .layout-menu-dim.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a, .layout-menu-dim.layout-slim-plus .menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a {
    background-color: var(--primary-color);
    color: #ffffff;
  }
  .layout-menu-dim.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a i, .layout-menu-dim.layout-slim-plus .menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a i {
    color: #ffffff;
  }
  .layout-menu-dim.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a:hover, .layout-menu-dim.layout-slim-plus .menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a:hover {
    color: #ffffff;
  }
  .layout-menu-dim.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li > ul, .layout-menu-dim.layout-slim-plus .menu-wrapper .layout-menu-container .layout-menu > li > ul {
    border-color: #376b4f;
    box-shadow: 0 2px 10px 0 rgba(25, 26, 28, 0.12);
    background-color: #344560;
  }
  .layout-menu-dim.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li > ul li > a, .layout-menu-dim.layout-slim-plus .menu-wrapper .layout-menu-container .layout-menu > li > ul li > a {
    color: #f8fafc;
  }
  .layout-menu-dim.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li > ul li > a:hover, .layout-menu-dim.layout-slim-plus .menu-wrapper .layout-menu-container .layout-menu > li > ul li > a:hover {
    background-color: rgba(34, 66, 49, 0.2);
  }
  .layout-menu-dim.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li > ul li.active-menuitem > a, .layout-menu-dim.layout-slim-plus .menu-wrapper .layout-menu-container .layout-menu > li > ul li.active-menuitem > a {
    color: #376b4f;
  }
}

.layout-breadcrumb {
  background-color: transparent;
  border-bottom: solid 1px #ebedef;
  padding: 12px 36px;
  display: -ms-flexbox;
  display: flex;
  height: 38px;
  align-items: center;
  justify-content: space-between;
}
.layout-breadcrumb .breadcrumb {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
.layout-breadcrumb .breadcrumb .route-bar-breadcrumb {
  list-style: none;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0;
}
.layout-breadcrumb .breadcrumb .route-bar-breadcrumb > li {
  padding: 0;
  padding-right: 12px;
  font-size: 12px;
  font-weight: normal;
  color: #65686a;
}
.layout-breadcrumb .breadcrumb .route-bar-breadcrumb > li i {
  font-size: 10px;
}
.layout-breadcrumb .breadcrumb .route-bar-breadcrumb > li .ui-link {
  color: inherit;
  -moz-transition: color 0.2s;
  -o-transition: color 0.2s;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  font-size: 12px;
}
.layout-breadcrumb .breadcrumb .route-bar-breadcrumb > li .ui-link:hover {
  color: var(--primary-text-color);
}

@media (max-width: 992px) {
  .layout-breadcrumb {
    padding: 12px 13px;
  }
}
.layout-rightpanel {
  position: fixed;
  z-index: 1000;
  right: 0;
  top: 60px;
  height: calc(100% - 56px);
  padding: 0;
  width: 260px;
  overflow: auto;
  background-color: white;
  border-left: solid 1px #ebedef;
  border-top: solid 1px #ebedef;
  transform: translate3d(260px, 0px, 0px);
  -moz-transition: transform 0.2s;
  -o-transition: transform 0.2s;
  -webkit-transition: transform 0.2s;
  transition: transform 0.2s;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

.layout-wrapper.layout-rightpanel-active .layout-rightpanel {
  transform: translate3d(0px, 0px, 0px);
}

@media (max-width: 991px) {
  .layout-rightpanel {
    top: 120px;
    height: calc(100% - 120px);
  }
}
.layout-footer {
  padding: 16px 120px;
  border-top: solid 1px #ebedef;
}
.layout-footer span {
  font-size: 12px;
  font-weight: 500;
  margin: 0;
  margin-bottom: 12px;
  color: #65686a;
}
.layout-footer ul {
  padding: 0;
  margin-left: 16px;
}
.layout-footer ul > li {
  font-size: 14px;
  color: #65686a;
  padding-bottom: 6px;
  cursor: pointer;
}
.layout-footer ul > li:hover {
  color: #191a1c;
}
.layout-footer .socials {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 1em;
}
.layout-footer .socials > i {
  font-size: 22px;
  color: #65686a;
  margin-right: 12px;
  cursor: pointer;
}
.layout-footer .socials > i:hover {
  color: #191a1c;
}

@media (max-width: 991px) {
  .layout-footer {
    padding: 18px 24px 64px;
  }
}
/* Utils */
.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

.card {
  border-radius: 4px;
  background: #ffffff;
  padding: 18px 15px;
  box-sizing: border-box;
  box-shadow: 0 24px 64px -2px rgba(0, 0, 0, 0.02), 0 6px 16px -2px rgba(0, 0, 0, 0.06), 0 2px 6px -2px rgba(0, 0, 0, 0.08);
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  margin-bottom: 2rem;
}
.card:last-child {
  margin-bottom: 0;
}
.card .card-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 16px;
}
.card .card-header h5 {
  margin-bottom: 0;
  opacity: 0.8;
}
.card .card-header .header-buttons {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
.card.no-gutter {
  margin-bottom: 0;
}

.nopad {
  padding: 0;
}
.nopad .ui-panel-content {
  padding: 0;
}

.ui-g {
  -ms-flex-wrap: wrap;
}

.p-sr-only {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.ui-text-secondary {
  color: #65686a;
}

.layout-wrapper .layout-ajax-loader {
  position: absolute;
  right: 15px;
  bottom: 70px;
}
.layout-wrapper .layout-ajax-loader .layout-ajax-loader-icon {
  color: red;
  font-size: 32px;
}
.profile {
  text-align: center;
  position: relative;
}
.profile > img {
  width: 76px;
  height: auto;
  margin-bottom: 6px;
  border: solid 1px #ebedef;
  padding: 2px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.profile .profile-name {
  font-size: 13px;
  font-weight: 500;
  color: #191a1c;
  margin: 4px 0;
}
.profile > span {
  font-size: 12px;
  color: #65686a;
  display: block;
}
.profile .profile-infos {
  display: -ms-flexbox;
  display: flex;
  margin-top: 12px;
}
.profile .profile-infos .profile-info {
  text-align: center;
  width: 100%;
  padding: 6px;
  -moz-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  cursor: pointer;
  border-radius: 2px;
}
.profile .profile-infos .profile-info > span {
  font-size: 12px;
  color: #65686a;
  display: block;
}
.profile .profile-infos .profile-info > h6 {
  font-weight: normal;
  color: var(--primary-text-color);
  margin: 0;
  margin-top: 4px;
}
.profile .profile-infos .profile-info:hover {
  background-color: #f8fafc;
}
.profile .graph-profile {
  margin-top: 30px;
  width: 90%;
  height: auto;
  border: none;
  border-radius: 0;
}

.testimonials {
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
}
.testimonials .testimonials-wrapper {
  overflow: hidden;
  position: relative;
  max-width: 600px;
}
.testimonials .testimonials-wrapper .testimonials-content {
  display: -ms-flexbox;
  display: flex;
  padding: 32px 0 0;
  flex-direction: row;
  transition: transform 500ms ease 0s;
  transform: translate3d(0px, 0px, 0px);
}
.testimonials .testimonials-wrapper .testimonials-content .testimonial {
  flex: 1 0 auto;
  width: 100%;
  -moz-transition: visibility 0.8s;
  -o-transition: visibility 0.8s;
  -webkit-transition: visibility 0.8s;
  transition: visibility 0.8s;
  -moz-transition: transform 500ms ease 0s;
  -o-transition: transform 500ms ease 0s;
  -webkit-transition: transform 500ms ease 0s;
  transition: transform 500ms ease 0s;
}
.testimonials .testimonials-wrapper .testimonials-content .testimonial .testimonial-content {
  max-width: 600px;
  margin: 0 6px;
  position: relative;
  height: 100%;
  background-color: #f4f7f9;
  padding: 65px 42px 66px;
  border-radius: 2px;
  box-shadow: 0 24px 64px -2px rgba(0, 0, 0, 0.02), 0 6px 16px -2px rgba(0, 0, 0, 0.06), 0 2px 6px -2px rgba(0, 0, 0, 0.08);
}
.testimonials .testimonials-wrapper .testimonials-content .testimonial .testimonial-content > img {
  position: absolute;
  top: -32px;
  left: 50%;
  margin-left: -32px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  border: 3px solid #f4f7f9;
}
.testimonials .testimonials-wrapper .testimonials-content .testimonial .testimonial-content > span {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  color: #191a1c;
  margin-bottom: 20px;
}
.testimonials .testimonials-wrapper .testimonials-content .testimonial .testimonial-content > h5 {
  font-weight: 500;
  line-height: 1.2;
  color: #191a1c;
  margin: 0;
}
.testimonials .testimonials-wrapper .testimonials-content .testimonial .testimonial-content > h6 {
  font-weight: 500;
  line-height: 1.5;
  color: #8b8e90;
  color: #65686a;
  margin: 0;
}
.testimonials .testimonials-wrapper .link-points .points {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 36px;
}
.testimonials .testimonials-wrapper .link-points .points .point {
  width: 15px;
  height: 15px;
  background-color: var(--primary-color);
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin: 3px;
  cursor: pointer;
}
.testimonials .testimonials-wrapper .link-points .points .point.active-point {
  width: 19px;
  height: 19px;
  background-color: #ebedef;
}

.chat {
  padding: 12px 12px 9px;
}
.chat .card-header {
  border-bottom: 1px solid #f4f7f9;
}
.chat .chat-content {
  width: 100%;
  padding: 16px 0 32px;
  border-bottom: 1px solid #f4f7f9;
}
.chat .chat-content .chat-message {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-bottom: 12px;
}
.chat .chat-content .chat-message > img {
  width: 32px;
  height: auto;
  margin-right: 12px;
}
.chat .chat-content .chat-message .message {
  width: 43%;
  padding: 9px;
  border-radius: 2px;
  background-color: #f8fafc;
}
.chat .chat-content .chat-message .message > p {
  line-height: 1.5;
  margin: 0;
  margin-bottom: 4px;
  color: #191a1c;
}
.chat .chat-content .chat-message .message > span {
  font-size: 12px;
  display: block;
  color: #65686a;
}
.chat .chat-content .chat-message.send {
  flex-direction: row-reverse;
}
.chat .chat-content .chat-message.send > img {
  margin-left: 12px;
  margin-right: 0;
}
.chat .chat-content .chat-message.send .message {
  background-color: var(--primary-color);
}
.chat .chat-content .chat-message.send .message > p {
  color: #ffffff;
}
.chat .chat-content .chat-message.send .message > span {
  color: #ffffff;
}
.chat .chat-input {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 12px;
}
.chat .chat-input > input {
  width: 100%;
  padding: 12px 3px;
  margin-right: 14px;
  border: none;
  background-color: transparent;
}
.chat .chat-input .input-buttons {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.actions .action-buttons {
  margin-top: 7px;
}
.actions .action-buttons .p-grid {
  margin-right: -6px;
  margin-left: -6px;
  margin-top: -6px;
}
.actions .action-buttons .p-grid > div {
  padding: 6px;
}
.actions .action-buttons .action {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 2px;
  background-color: #f8fafc;
  padding: 7px 10px;
  text-align: center;
  min-height: 80px;
  cursor: pointer;
  height: 100%;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.actions .action-buttons .action i {
  font-size: 22px;
  display: block;
  color: var(--primary-text-color);
  margin-bottom: 7px;
}
.actions .action-buttons .action span {
  display: block;
  color: #65686a;
  font-size: 12px;
}
.actions .action-buttons .action:hover {
  background-color: var(--primary-color);
}
.actions .action-buttons .action:hover i, .actions .action-buttons .action:hover span {
  color: #ffffff;
}

.pricing-card {
  margin: 12px;
  background-color: #f8fafc;
  box-shadow: 0 24px 64px -2px rgba(0, 0, 0, 0.02), 0 6px 16px -2px rgba(0, 0, 0, 0.06), 0 2px 6px -2px rgba(0, 0, 0, 0.08);
}
.pricing-card .pricing-header {
  box-shadow: inset 0 1px 8px 0 rgba(0, 0, 0, 0.1);
  background-color: var(--primary-color);
  padding: 18px 12px;
}
.pricing-card .pricing-header .upper-title {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #ffffff;
  opacity: 0.9;
  margin: 0;
  margin-bottom: 4px;
}
.pricing-card .pricing-header > h6 {
  font-weight: 500;
  letter-spacing: 0.58px;
  color: #ffffff;
  margin: 0;
  margin-bottom: 12px;
}
.pricing-card .pricing-header > span {
  display: block;
  padding-left: 9px;
  border-left: 3px solid #ffffff;
  font-size: 13px;
  color: #ffffff;
  max-width: 120px;
}
.pricing-card .pricing-content {
  padding: 24px;
}
.pricing-card .pricing-content > ul {
  list-style-type: none;
  padding: 0;
}
.pricing-card .pricing-content > ul > li {
  font-size: 12px;
  color: #191a1c;
  margin-bottom: 12px;
}
.pricing-card .pricing-content > ul > li > i {
  color: #65686a;
  margin-right: 8px;
}
.pricing-card .pricing-content > button {
  padding: 10px 32px;
  border-radius: 2px;
  background-color: #ffffff;
  margin-top: 12px;
  -moz-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.pricing-card .pricing-content > button > span {
  display: block;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
 color: var(--primary-text-color);
}
.pricing-card .pricing-content > button:hover {
  background-color: #f8fafc;
}

.timeline {
  height: 100%;
}
.timeline > ul {
  padding: 0;
  margin: 10px 0 20px;
  list-style: none;
}
.timeline > ul > li {
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 32px;
  min-height: 55px;
}
.timeline > ul > li .time {
  min-width: 35px;
  font-size: 13px;
  line-height: 1.54;
  color: #191a1c;
  display: block;
}
.timeline > ul > li .event-icon {
  min-width: 16px;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 1;
  width: 16px;
  height: 16px;
  border: solid 3px #2582db;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-color: #ffffff;
  margin: 0 10px;
}
.timeline > ul > li .event-icon::before {
  content: "";
  width: 2px;
  height: 80px;
  background-color: #f4f7f9;
  position: absolute;
  top: 13px;
  display: block;
}
.timeline > ul > li .event-content span {
  display: block;
  font-size: 13px;
  line-height: 1.38;
  color: #191a1c;
}
.timeline > ul > li .event-content span.event-title {
  font-weight: 500;
  line-height: normal;
  margin-bottom: 4px;
}
.timeline > ul > li:nth-child(1) .event-icon {
  border: solid 3px #2582db;
}
.timeline > ul > li:nth-child(2) .event-icon {
  border: solid 3px #dc8500;
}
.timeline > ul > li:nth-child(3) .event-icon {
  border: solid 3px #f8447e;
}
.timeline > ul > li:nth-child(4) {
  margin-bottom: 0;
}
.timeline > ul > li:nth-child(4) .event-icon {
  border: solid 3px #36925e;
}
.timeline > ul > li:nth-child(4) .event-icon::before {
  display: none;
}

.persons > ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.persons > ul > li {
  padding: 0;
  margin: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 16px;
}
.persons > ul > li .person-profile {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
.persons > ul > li .person-profile > img {
  width: 42px;
  height: 42px;
  margin-right: 14px;
}
.persons > ul > li .person-profile .person-info .person-name {
  line-height: 1.38;
  color: #191a1c;
  font-size: 14px;
  font-weight: 500;
  display: block;
  margin-bottom: 2px;
}
.persons > ul > li .person-profile .person-info .person-title {
  line-height: 1.5;
  color: #191a1c;
  font-size: 12px;
  display: block;
  opacity: 0.8;
}
.persons > ul > li .ui-button {
  background-color: transparent;
  border-color: rgba(101, 104, 106, 0.5);
  color: #65686a;
}
.persons > ul > li .ui-button:hover {
  background-color: #fafafa;
}

.login-body {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.login-body .login-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}
.login-body .login-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.login-body .login-card {
  z-index: 2;
  border-top: 8px solid #224231;
  background-color: #ffffff;
  padding: 15px 42px;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.login-body .login-card > h1 {
  font-size: 20px;
  color: #191a1c;
  margin: 0;
}
.login-body .login-card > h1 > span {
  font-size: 20px;
  color: #65686a;
}
.login-body .login-card > span {
  font-size: 14px;
  color: #65686a;
  margin-top: 13px;
  margin-bottom: 30px;
  display: block;
}
.login-body .login-card .form-group {
  width: 100%;
  text-align: left;
  margin-bottom: 15px;
}
.login-body .login-card .form-group span {
  display: block;
  font-size: 15px;
  color: #191a1c;
  margin-bottom: 6px;
}
.login-body .login-card .form-group input {
  width: 100%;
}
.login-body .login-card .form-footer {
  width: 100%;
  margin: 8px 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.login-body .login-card .form-footer .checkbox {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
.login-body .login-card .form-footer .checkbox > span {
  color: #191a1c;
  font-size: 14px;
  margin-right: 6px;
}
.login-body .login-card .form-footer a {
  color: #65686a;
  text-decoration: none;
  font-size: 14px;
}
.login-body .login-card .form-footer a:hover {
  color: #191a1c;
}
.login-body .login-card .ui-linkbutton {
  margin-top: 24px;
  width: 100%;
}
.login-body .login-card .ui-linkbutton a {
  width: 100%;
}
.login-body .login-card .ui-linkbutton a span {
  color: #ffffff;
}

.exception-body {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 10%;
}
.exception-body .exception-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}
.exception-body .exception-image img {
  height: 240px;
  width: 100%;
}
.exception-body .exception-card {
  z-index: 2;
  border-top: 8px solid #db374e;
  background-color: #ffffff;
  padding: 15px 42px;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.exception-body .exception-card > h1 {
  font-size: 25px;
  color: #191a1c;
  margin: 0;
}
.exception-body .exception-card > h1 > span {
  font-size: 25px;
  color: #db374e;
}
.exception-body .exception-card img {
  margin: 15px 0;
  width: 100%;
}
.exception-body .exception-card > span {
  font-size: 14px;
  color: #65686a;
  margin-bottom: 30px;
  display: block;
}
.exception-body .exception-card .ui-linkbutton {
  width: 100%;
}
.exception-body .exception-card .ui-linkbutton a {
  width: 100%;
}
.exception-body .exception-card .ui-linkbutton a span {
  color: #ffffff;
}
.exception-body.access .exception-card {
  border-color: #ffa723;
}
.exception-body.access .exception-card > h1 > span {
  color: #ffa723;
}

.landing-body .landing-topbar {
  height: 60px;
  border-bottom: solid 1px rgba(109, 198, 253, 0.4);
  background-color: #b1eafe;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  z-index: 999;
}
.landing-body .landing-topbar #landing-menu-button {
  display: none;
  padding: 0 8px;
  cursor: pointer;
}
.landing-body .landing-topbar .logo {
  padding: 0 120px;
}
.landing-body .landing-topbar > ul {
  list-style-type: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
  padding: 0 120px;
}
.landing-body .landing-topbar > ul > li #landing-menu-close {
  display: none;
}
.landing-body .landing-topbar > ul > li > a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08px;
  color: #191a1c;
  padding: 5px 14px;
  margin: 0 3px;
  border-radius: 2px;
  background-color: #96dbfd;
  -moz-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.landing-body .landing-topbar > ul > li > a:hover {
  background-color: var(--primary-color);
  color: #ffffff;
}
.landing-body .landing-mask {
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 998;
}
.landing-body .landing-banner {
  background-color: #b1eafe;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 36px 120px 0;
}
.landing-body .landing-banner .landing-banner-content {
  text-align: center;
  margin-bottom: 32px;
}
.landing-body .landing-banner .landing-banner-content > h3 {
  font-weight: 500;
  margin: 0;
  margin-bottom: 14px;
  color: #191a1c;
}
.landing-body .landing-banner .landing-banner-content > h3 > span {
  color: #2c84d8;
}
.landing-body .landing-banner .landing-banner-content > h6 {
  font-size: 15px;
  font-weight: normal;
  margin: 0;
  margin-bottom: 14px;
  color: #191a1c;
  max-width: 480px;
  line-height: 1.33;
}
.landing-body .landing-banner .landing-banner-content > button {
  padding: 8px 20px;
}
.landing-body .landing-banner .landing-banner-content > button span {
  padding: 0;
  display: block;
}
.landing-body .landing-banner .landing-banner-image img {
  margin-bottom: -4px;
  width: 100%;
}
.landing-body .section-header {
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.landing-body .section-header > h2 {
  font-weight: 500;
  margin: 0;
  margin-bottom: 14px;
  color: #191a1c;
}
.landing-body .section-header > h6 {
  font-weight: normal;
  margin: 0;
  color: #191a1c;
  max-width: 480px;
  line-height: 1.33;
}
.landing-body .landing-features {
  padding: 36px 0;
}
.landing-body .landing-features .section-header {
  margin-bottom: 36px;
}
.landing-body .landing-features .features-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-right: 100px;
  padding-bottom: 36px;
}
.landing-body .landing-features .features-content > ul {
  list-style-type: none;
  padding: 0 20px;
}
.landing-body .landing-features .features-content > ul > li {
  background-color: rgba(255, 255, 255, 0.6);
  max-width: 500px;
  padding: 16px;
  margin: 14px 0;
  box-shadow: 0 24px 64px -2px rgba(0, 0, 0, 0.02), 0 6px 16px -2px rgba(0, 0, 0, 0.06), 0 2px 6px -2px rgba(0, 0, 0, 0.08);
  border-radius: 2px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.landing-body .landing-features .features-content > ul > li img {
  margin-right: 14px;
  width: 64px;
}
.landing-body .landing-features .features-content > ul > li .feature-text h6 {
  font-weight: 500;
  margin: 0;
  margin-bottom: 2px;
  color: #191a1c;
}
.landing-body .landing-features .features-content > ul > li .feature-text span {
  display: block;
  font-size: 12px;
  line-height: 1.54;
  color: #191a1c;
}
.landing-body .landing-features .features-content img {
  width: 50%;
}
.landing-body .testimonials {
  background-color: #2b384f;
  padding: 30px 120px 42px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}
.landing-body .testimonials .section-header > h2 {
  color: #ffffff;
}
.landing-body .testimonials .effect-1 {
  position: absolute;
  left: 120px;
  top: 48px;
  width: 180px;
  height: auto;
}
.landing-body .testimonials .effect-2 {
  position: absolute;
  left: 0px;
  bottom: 0px;
  height: 180px;
  width: auto;
}
.landing-body .testimonials .testimonials-wrapper .testimonials-content .testimonial .testimonial-content {
  background-color: #ffffff;
}
.landing-body .landing-news {
  padding: 36px 120px;
  background-color: #ffffff;
}
.landing-body .landing-news .news-cards .news-card {
  text-align: left;
  margin: 12px;
}
.landing-body .landing-news .news-cards .news-card > img {
  width: 100%;
  height: auto;
  margin-bottom: 12px;
}
.landing-body .landing-news .news-cards .news-card > h5 {
  font-weight: 500;
  color: #191a1c;
  margin: 0;
  margin-bottom: 8px;
}
.landing-body .landing-news .news-cards .news-card > span {
  display: block;
  font-size: 12px;
  line-height: 1.54;
  margin-bottom: 8px;
  color: #191a1c;
}
.landing-body .landing-news .news-cards .news-card .news-card-footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
.landing-body .landing-news .news-cards .news-card .news-card-footer > img {
  height: 32px;
  width: auto;
  margin-right: 8px;
}
.landing-body .landing-news .news-cards .news-card .news-card-footer .name .testimonial-name {
  font-size: 12px;
  margin: 0;
  font-weight: 500;
  line-height: 1.85;
  color: #191a1c;
}
.landing-body .landing-news .news-cards .news-card .news-card-footer .name > span {
  font-size: 10px;
  display: block;
  font-weight: 500;
  color: #65686a;
}
.landing-body .landing-pricing {
  padding: 36px 120px;
  position: relative;
}
.landing-body .landing-pricing > img {
  position: absolute;
  bottom: 0;
  left: 0;
}
.landing-body .landing-pricing .pricing-cards .pricing-card {
  margin: 12px;
}
.landing-body .landing-pricing .pricing-cards .pricing-card.beginner .pricing-header {
  background-color: #ffffff;
}
.landing-body .landing-pricing .pricing-cards .pricing-card.beginner .pricing-header .upper-title {
  color: #65686a;
}
.landing-body .landing-pricing .pricing-cards .pricing-card.beginner .pricing-header > h6 {
  color: #191a1c;
}
.landing-body .landing-pricing .pricing-cards .pricing-card.beginner .pricing-header > span {
  color: #191a1c;
  border-color: #191a1c;
}
.landing-body .landing-pricing .pricing-cards .pricing-card.enterprise .pricing-header {
  background-color: #2b384f;
}
.landing-body .landing-pricing .pricing-cards .pricing-card.enterprise .pricing-header .upper-title {
  color: #aab9c8;
}
.landing-body .landing-pricing .pricing-cards .pricing-card.enterprise .pricing-header > h6 {
  color: #ffffff;
}
.landing-body .landing-pricing .pricing-cards .pricing-card.enterprise .pricing-header > span {
  color: #ffffff;
  border-color: #ffffff;
}
.landing-body .landing-footer {
  padding: 16px 120px;
  border-top: solid 1px #ebedef;
}
.landing-body .landing-footer span {
  font-size: 12px;
  font-weight: 500;
  margin: 0;
  margin-bottom: 12px;
  color: #65686a;
}
.landing-body .landing-footer ul {
  padding: 0;
  margin-left: 16px;
}
.landing-body .landing-footer ul > li {
  font-size: 14px;
  color: #65686a;
  padding-bottom: 6px;
  cursor: pointer;
}
.landing-body .landing-footer ul > li:hover {
  color: #191a1c;
}
.landing-body .landing-footer .socials {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 1em;
}
.landing-body .landing-footer .socials > i {
  font-size: 22px;
  color: #65686a;
  margin-right: 12px;
  cursor: pointer;
}
.landing-body .landing-footer .socials > i:hover {
  color: #191a1c;
}

@media (max-width: 991px) {
  .landing-body.block-scroll {
    overflow: hidden;
  }
  .landing-body.block-scroll .landing-wrapper .landing-mask {
    display: block;
  }
  .landing-body .landing-wrapper.landing-menu-active .landing-topbar .landing-menu {
    transform: translate3d(0px, 0px, 0px);
  }
  .landing-body .landing-wrapper .landing-topbar .logo {
    padding: 0 33px;
  }
  .landing-body .landing-wrapper .landing-topbar .landing-menu {
    position: fixed;
    flex-direction: column;
    -ms-flex-align: end;
    align-items: flex-end;
    right: 0;
    top: 0;
    padding: 12px 15px;
    z-index: 999;
    width: 200px;
    height: 100%;
    background-color: #ffffff;
    box-shadow: 0 24px 64px -2px rgba(0, 0, 0, 0.02), 0 6px 16px -2px rgba(0, 0, 0, 0.06), 0 2px 6px -2px rgba(0, 0, 0, 0.08);
    transform: translate3d(260px, 0px, 0px);
    -moz-transition: transform 0.2s;
    -o-transition: transform 0.2s;
    -webkit-transition: transform 0.2s;
    transition: transform 0.2s;
  }
  .landing-body .landing-wrapper .landing-topbar .landing-menu > li {
    margin: 0;
    width: 100%;
    margin-bottom: 12px;
  }
  .landing-body .landing-wrapper .landing-topbar .landing-menu > li > a {
    padding: 6px 16px;
    font-size: 14px;
    text-align: left;
    background-color: #ffffff;
    display: block;
    color: #191a1c;
  }
  .landing-body .landing-wrapper .landing-topbar .landing-menu > li > a:hover {
    background-color: #2c84d8;
    color: #ffffff;
  }
  .landing-body .landing-wrapper .landing-topbar .landing-menu > li #landing-menu-close {
    display: block;
    font-size: 20px;
    text-align: right;
    color: #2c84d8;
  }
  .landing-body .landing-wrapper .landing-topbar .landing-menu > li #landing-menu-close:hover {
    background-color: #ffffff;
    color: #191a1c;
  }
  .landing-body .landing-wrapper .landing-topbar #landing-menu-button {
    display: block;
    color: #2c84d8;
    font-size: 20px;
    padding: 0 33px;
  }
  .landing-body .landing-wrapper .landing-banner {
    padding: 96px 30px 0;
  }
  .landing-body .landing-wrapper .landing-features {
    padding: 42px 16px;
  }
  .landing-body .landing-wrapper .landing-features .features-content {
    padding: 0;
    flex-direction: column;
  }
  .landing-body .landing-wrapper .landing-features .features-content img {
    width: 100%;
  }
  .landing-body .landing-wrapper .landing-features .features-content ul li {
    margin: 16px 0;
    max-width: 400px;
  }
  .landing-body .landing-wrapper .landing-features .features-content ul li img {
    width: 64px;
  }
  .landing-body .landing-wrapper .testimonials {
    padding: 36px 12px 49px;
    overflow: hidden;
  }
  .landing-body .landing-wrapper .testimonials .effect-2 {
    display: none;
  }
  .landing-body .landing-wrapper .testimonials .testimonials-wrapper {
    width: 100%;
  }
  .landing-body .landing-wrapper .testimonials .testimonials-wrapper .testimonials-content .testimonial .testimonial-content {
    padding: 76px 16px 37px;
  }
  .landing-body .landing-wrapper .landing-news {
    padding: 36px 42px 64px;
  }
  .landing-body .landing-wrapper .landing-pricing {
    padding: 36px 42px 64px;
  }
  .landing-body .landing-wrapper .landing-footer {
    padding: 18px 24px 64px;
  }
}
.help-page p {
  margin: 0;
}
.help-page .help-search {
  background-image: url("/javax.faces.resource/images/pages/help/rain.png.xhtml?ln=rain-layout");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0;
  text-align: center;
}
.help-page .help-search .help-search-content {
  padding: 5rem 12rem;
}
.help-page .help-search .help-search-content h4 {
  color: #191a1c;
  font-weight: 500;
}
.help-page .help-search .search-container {
  font-size: 1rem;
  padding: 1rem;
  position: relative;
}
.help-page .help-search .search-container input {
  appearance: none;
  font-size: 1rem;
  text-indent: 2.5rem;
  padding: 0.5rem;
  width: 100%;
}
.help-page .help-search .search-container i {
 color: var(--primary-text-color);
  width: 1rem;
  position: absolute;
  margin-left: 0.5rem;
  top: 50%;
  margin-top: -0.5rem;
}
.help-page .status-bars {
  margin-top: 1rem;
  display: -ms-flexbox;
  display: flex;
}
.help-page .status-bars .status-bar {
  flex: 1 1 0;
  -ms-flex: 1 1 0px;
  background: #3C9462;
  height: 50px;
  margin-right: 0.25rem;
  transition: transform 0.2s;
}
.help-page .status-bars .status-bar:last-child {
  margin-right: 0;
}
.help-page .status-bars .status-bar.status-bar-failure {
  background: #DB8519;
}
.help-page .status-bars .status-bar:hover {
  transform: scale(1.1);
}
.help-page .status-bar-footer {
  padding: 1rem 0 0 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.help-page .blog-post {
  border-radius: 4px;
  padding: 20px;
  margin: 3rem 2rem;
  border: 1px solid rgba(101, 104, 106, 0.5);
  background-color: #ffffff;
  position: relative;
}
.help-page .blog-post:last-child {
  margin-bottom: 1rem;
}
.help-page .blog-post img {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.help-page .blog-post .blog-text h1 {
  color: #191a1c;
  margin-bottom: 1rem;
  font-weight: 500;
}
.help-page .blog-post .blog-text span {
  color: #65686a;
  line-height: 1.4;
}
.help-page .blog-post .blog-profile {
  position: absolute;
  top: -25px;
  left: -25px;
}
.help-page .blog-post .blog-profile img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

@media screen and (max-width: 991px) {
  .help-page .help-search .help-search-content {
    padding: 6rem 2rem;
  }
}
.invoice {
  padding: 2rem;
}
.invoice .invoice-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.invoice .invoice-company .logo-image {
  height: 70px;
  margin-bottom: 0.5rem;
}
.invoice .invoice-company div {
  margin-bottom: 0.5rem;
}
.invoice .invoice-company .company-name {
  font-weight: 500;
  font-size: 1.5rem;
}
.invoice .invoice-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: right;
  font-weight: 300;
}
.invoice .invoice-details {
  width: 15rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.invoice .invoice-details > div {
  width: 50%;
  margin-bottom: 0.5rem;
}
.invoice .invoice-details .invoice-label {
  text-align: left;
  font-weight: 500;
}
.invoice .invoice-details .invoice-value {
  text-align: right;
}
.invoice .invoice-to {
  margin-top: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid #f4f7f9;
}
.invoice .invoice-to .bill-to {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.invoice .invoice-to .invoice-to-info div {
  margin-bottom: 0.5rem;
}
.invoice .invoice-items {
  margin-top: 2rem;
  padding-top: 2rem;
}
.invoice .invoice-items table {
  width: 100%;
  border-collapse: collapse;
}
.invoice .invoice-items table tr {
  border-bottom: 1px solid #f4f7f9;
}
.invoice .invoice-items table th {
  font-weight: 500;
}
.invoice .invoice-items table th, .invoice .invoice-items table td {
  padding: 1rem;
  text-align: right;
}
.invoice .invoice-items table th:first-child, .invoice .invoice-items table td:first-child {
  text-align: left;
}
.invoice .invoice-summary {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
}
.invoice .invoice-summary .invoice-value {
  font-weight: 500;
}

@media print {
  .invoice {
    padding: 0;
    margin: 0;
    background: #ffffff;
    color: #424242;
  }
}
.layout-config {
  position: fixed;
  padding: 0;
  top: 0px;
  right: 0;
  width: 240px;
  z-index: 999;
  height: 100%;
  transform: translate3d(240px, 0px, 0px);
  -moz-transition: transform 0.2s;
  -o-transition: transform 0.2s;
  -webkit-transition: transform 0.2s;
  transition: transform 0.2s;
  background-color: white;
  box-shadow: 0 24px 64px -2px rgba(0, 0, 0, 0.02), 0 6px 16px -2px rgba(0, 0, 0, 0.06), 0 2px 6px -2px rgba(0, 0, 0, 0.08);
}
.layout-config.layout-config-active {
  transform: translate3d(0px, 0px, 0px);
}
.layout-config.layout-config-active .layout-config-content .layout-config-button i {
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}
.layout-config .layout-config-content {
  position: relative;
  height: 100%;
}
.layout-config .layout-config-content > form {
  height: 100%;
}
.layout-config .layout-config-content .layout-config-form {
  overflow: auto;
  overflow-x: hidden;
}
.layout-config .layout-config-content .layout-config-button {
  display: block;
  position: absolute;
  width: 52px;
  height: 52px;
  line-height: 52px;
  background-color: var(--primary-color);
  text-align: center;
  top: 230px;
  left: -51px;
  z-index: -1;
  cursor: pointer;
  color: #ffffff;
  -moz-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.layout-config .layout-config-content .layout-config-button i {
  font-size: 32px;
  line-height: inherit;
  cursor: pointer;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -moz-transition: transform 1s;
  -o-transition: transform 1s;
  -webkit-transition: transform 1s;
  transition: transform 1s;
}
.layout-config .layout-config-content .layout-config-button:hover {
  background-color: #2b533d;
}
.layout-config .layout-config-content .layout-config-header {
  padding: 18px 12px;
  margin-bottom: 12px;
  background-image: linear-gradient(90deg, #224231 10%, #305d45 100%);
}
.layout-config .layout-config-content .layout-config-header > h3 {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  margin-bottom: 12px;
  color: #ffffff;
}
.layout-config .layout-config-content .layout-config-header > span {
  font-size: 12px;
  display: block;
  color: #ffffff;
}
.layout-config .layout-config-content .layout-config-section {
  padding: 10px 12px;
}
.layout-config .layout-config-content .layout-config-section .section-name {
  font-weight: 500;
  font-size: 12px;
  display: block;
  color: #191a1c;
}
.layout-config .layout-config-content .layout-config-section.dark {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
.layout-config .layout-config-content .layout-config-section.dark .section-name {
  margin-right: 18px;
}
.layout-config .layout-config-content .layout-config-section.dark .ui-inputswitch {
  height: 16px;
}
.layout-config .layout-config-content .layout-config-section.dark .ui-inputswitch .ui-inputswitch-on,
.layout-config .layout-config-content .layout-config-section.dark .ui-inputswitch .ui-inputswitch-off {
  padding: 0;
}
.layout-config .layout-config-content .layout-config-section.colors .layout-config-colors {
  padding: 0 10px;
  margin-top: 3px;
}
.layout-config .layout-config-content .layout-config-section.colors .layout-config-colors .p-col-fixed {
  padding: 0.5em;
}
.layout-config .layout-config-content .layout-config-section.options .layout-config-options {
  margin-top: 3px;
}
.layout-config .layout-config-content .layout-config-section.options .layout-config-options .ui-selectoneradio {
  width: 100%;
  padding: 0 10px;
}
.layout-config .layout-config-content .layout-config-section.options .layout-config-options .ui-selectoneradio label {
  font-size: 12px;
  margin: 0;
  margin-left: 6px;
}
.layout-config .layout-config-content .layout-config-section a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
  -moz-transition: transform 0.2s;
  -o-transition: transform 0.2s;
  -webkit-transition: transform 0.2s;
  transition: transform 0.2s;
  position: relative;
  color: #191a1c;
  text-transform: capitalize;
}
.layout-config .layout-config-content .layout-config-section a:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.layout-config .layout-config-content .layout-config-section a.layout-config-option .layout-config-option-text {
  margin-top: 0.2em;
}
.layout-config .layout-config-content .layout-config-section a.layout-config-option .layout-config-option-color {
  width: 24px;
  height: 24px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.layout-config .layout-config-content .layout-config-section a.layout-config-option .layout-config-option-color .layout-config-option-accentcolor {
  display: block;
  width: 18px;
  height: 28px;
  position: absolute;
  bottom: -10px;
  right: -7px;
  transform: rotate(45deg);
}
.layout-config .layout-config-content .layout-config-section a.layout-config-option .layout-config-option-check-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.layout-config .layout-config-content .layout-config-section a.layout-config-option .layout-config-option-check-mask i {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 12px;
 color: var(--primary-text-color);
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-color: #ffffff;
  width: 16px;
  height: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  z-index: 1;
}

.blocked-scroll-config {
  overflow: hidden;
}

@media (max-width: 991px) {
  .layout-config {
    height: 100%;
    width: 70vw;
    transform: translate3d(70vw, 0px, 0px);
  }
  .layout-config.layout-config-active {
    transform: translate3d(0px, 0px, 0px);
  }
  .layout-config .layout-config-button {
    left: auto;
    right: -52px;
  }
  .layout-config .ui-tabs.ui-tabs-top > .ui-tabs-nav li:first-child {
    margin-left: 13px;
  }
}
@media (max-width: 640px) {
  .layout-config .ui-tabs.ui-tabs-top .ui-tabs-panels .p-grid {
    -ms-flex-pack: center;
    justify-content: center;
  }
  .layout-config .ui-tabs.ui-tabs-top .ui-tabs-panels .layout-config-palette .layout-config-selected-palette {
    width: 60px;
    height: 60px;
  }
}
/* Add your customizations of the layout styles here */
.layout-wrapper .layout-rightpanel .rightpanel-wrapper {
  position: relative;
  height: 100%;
}
.layout-wrapper .layout-rightpanel .rightpanel-wrapper .rightpanel-header {
  text-align: center;
}
.layout-wrapper .layout-rightpanel .rightpanel-wrapper .rightpanel-header .profile {
  padding: 12px;
}
.layout-wrapper .layout-rightpanel .rightpanel-wrapper .rightpanel-actions {
  padding: 12px 6px 36px;
}
.layout-wrapper .layout-rightpanel .rightpanel-wrapper .rightpanel-actions .actions .action-buttons .p-col-6, .layout-wrapper .layout-rightpanel .rightpanel-wrapper .rightpanel-actions .actions .action-buttons .p-md-4 {
  padding: 0.2em;
}
.layout-wrapper .layout-rightpanel .rightpanel-wrapper .rightpanel-chat .ui-tabs .ui-tabs-nav {
  background-color: white;
}
.layout-wrapper .layout-rightpanel .rightpanel-wrapper .rightpanel-chat .ui-tabs .ui-tabs-nav li.ui-tabs-header {
  padding: 1rem;
}
.layout-wrapper .layout-rightpanel .rightpanel-wrapper .rightpanel-chat .ui-tabs .ui-tabs-nav li.ui-tabs-header a {
  font-size: 12px;
  font-weight: 500;
}
.layout-wrapper .layout-rightpanel .rightpanel-wrapper .rightpanel-chat .ui-tabs .ui-tabs-nav li.ui-tabs-header > span {
  font-size: 10px;
}
.layout-wrapper .layout-rightpanel .rightpanel-wrapper .rightpanel-chat .ui-tabs .ui-tabs-nav li.ui-tabs-header.ui-state-active {
  background-color: #f8fafc;
}
.layout-wrapper .layout-rightpanel .rightpanel-wrapper .rightpanel-chat .ui-tabs .ui-tabs-panels {
  background-color: white;
}
.layout-wrapper .layout-rightpanel .rightpanel-wrapper .rightpanel-chat .ui-tabs .ui-tabs-panels .ui-tabs-panel {
  padding: 0;
}
.layout-wrapper .layout-rightpanel .rightpanel-wrapper .rightpanel-chat .ui-tabs .ui-tabs-panels .ui-tabs-panel .chat .chat-content .chat-message .message {
  width: 80%;
}
.layout-wrapper .layout-rightpanel .rightpanel-wrapper .rightpanel-chat .ui-tabs .ui-tabs-panels .ui-tabs-panel .chat .chat-input input {
  width: 105px;
  margin-right: 7px;
}

.template-pagine {
  background-color: #fff;
}

.layout-content.full-layout {
  padding: 0px;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

section {
  position: relative;
}

section.no-bottom {
  margin-bottom: 0px;
}

section.overflow {
  overflow: hidden;
}

.section {
  position: relative;
  margin: 30px 0;
}

.layout-main {
  position: relative;
  z-index: 1;
}

.choose-interest {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}

.single-interest {
  padding: 5px 40px;
  border: 1px solid #224231;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
 color: var(--primary-text-color);
}

.single-interest.attivo {
  background-color: var(--primary-color);
  color: #fff;
}

.fixed {
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.center {
  text-align: center;
}

.block-text {
  margin: 50px 0;
}

.button-stroke {
  position: relative;
  display: inline-block;
  padding: 15px 50px;
 color: var(--primary-text-color) !important;
  font-weight: 500;
  margin-top: 30px;
  text-transform: uppercase;
}
.button-stroke .line-h {
  position: absolute;
  height: 2px;
  width: 0;
  background-color: var(--primary-color);
  transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  -webkit-transition: all 250ms ease-in-out;
}
.button-stroke .line-h.top {
  top: 0;
  left: 0;
}
.button-stroke .line-h.bottom {
  bottom: 0;
  right: 0;
}

.button-stroke.no-top {
  margin-top: 0px;
}

.button-stroke.white {
  color: #fff !important;
}
.button-stroke.white .line-h {
  background-color: #fff;
}

.button-stroke:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 2px;
  background-color: var(--primary-color);
  left: 0;
  top: 0;
}

.button-stroke.white:before, .button-stroke.white:after {
  background-color: #fff;
}

.button-stroke:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 2px;
  background-color: var(--primary-color);
  right: 0;
  top: 0;
}

.button-stroke:hover {
  text-decoration: none !important;
}

.button-stroke:hover .line-h {
  width: 100%;
}

.pad-top {
  padding-top: 40px;
}

.ui-commandlink.ui-widget:hover {
  text-decoration: none !important;
}

.page-topbar {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #224231;
}

.page-topbar a {
  font-weight: bold;
}

.messagge-scroll {
  flex: 0 0 73%;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}

.messagge-scroll p {
  position: absolute;
  white-space: nowrap;
  display: inline-block;
  -moz-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -moz-animation: text-scroll 30s linear infinite;
  -webkit-animation: text-scroll 30s linear infinite;
  animation: text-scroll 30s linear infinite;
}

/* Move the text */
@-moz-keyframes text-scroll {
  0% {
    -moz-transform: translateX(100%);
  }
  100% {
    -moz-transform: translateX(-100%);
  }
}
@-webkit-keyframes text-scroll {
  0% {
    -webkit-transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
  }
}
@keyframes text-scroll {
  0% {
    -moz-transform: translateX(100%);
    /* Browser bug fix */
    -webkit-transform: translateX(100%);
    /* Browser bug fix */
    transform: translateX(100%);
  }
  100% {
    -moz-transform: translateX(-100%);
    /* Browser bug fix */
    -webkit-transform: translateX(-100%);
    /* Browser bug fix */
    transform: translateX(-100%);
  }
}
.info-topbar {
  flex: 0 0 9%;
  border-left: 1px solid #224231;
}

.info-topbar p, .messagge-scroll p {
 color: var(--primary-text-color);
  font-size: 11px;
}

.info-user, .info-country {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}

.action-topbar {
  margin: 0 8px;
}

.action-topbar i {
 color: var(--primary-text-color);
  font-size: 24px;
}

.user-status {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  border: 2px solid #000;
  right: -7px;
  bottom: 0;
  background-color: #fff;
  outline: 2px solid #fff;
}

.user-status.on-air {
  border: 2px solid #0ee707;
  background-color: #0ee707;
}

.top-compare img {
  width: 30px;
}

.info-cart {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 30px;
}
.info-cart a:hover {
  text-decoration: none;
}

.info-cart p {
  font-size: 10px;
 color: var(--primary-text-color);
  margin-bottom: 0px;
}

.info-cart i {
  font-size: 18px;
}

.cart-modale {
  position: relative;
}
.cart-modale span {
  position: absolute;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 100%;
  width: 16px;
  height: 16px;
  font-size: 10px;
  text-align: center;
  right: -10px;
  top: -5px;
}
.cart-modale a {
 color: var(--primary-text-color);
}

.open-search {
  cursor: pointer;
}

.search-open {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--primary-color);
  z-index: 999;
  justify-content: center;
  align-items: center;
}
.search-open .close-search {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}
.search-open .close-search i {
  font-size: 30px;
}
.search-open .container-search {
  position: absolute;
  width: 70%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  padding: 10px 40px 10px 150px;
  background-color: #fff;
}

.search-open .container-search form {
  position: relative;
  border-left: 1px solid #000;
}
.search-open .container-search form button {
  background-color: transparent;
  border: none;
  position: absolute;
  right: 0px;
  bottom: 6.5px;
}
.search-open .container-search form button span {
  background-color: transparent;
  font-size: 24px;
  color: #000;
}

.search-open .container-search .input-search.ui-state-focus {
  box-shadow: none;
}

.pyramid-key {
  position: absolute;
  width: 100%;
  left: 50%;
  bottom: -230%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  text-align: center;
}

.pyramid-key .pyramid-1 a {
  font-size: 50px;
  margin: 0 8px;
}
.pyramid-key .pyramid-2 a {
  font-size: 40px;
  margin: 0 8px;
}
.pyramid-key .pyramid-3 a {
  font-size: 25px;
  margin: 0 8px;
}
.pyramid-key a:hover {
  text-decoration: none;
 color: var(--primary-text-color);
}

.open-login {
  position: relative;
  cursor: pointer;
}

.box-login {
  position: absolute;
  top: 41px;
  right: 0px;
  width: 18%;
 background-color: var(--primary-color);
  padding: 20px 20px 40px 20px;
  z-index: 2;
  box-shadow: -1px 4px 3px 0px rgba(0, 0, 0, 0.1);
  transform: translateY(-150%);
  -moz-transform: translateY(-150%);
  -webkit-transform: translateY(-150%);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
}
.box-login input {
  display: block;
  height: 40px;
  background-color: #fff;
  margin-bottom: 10px;
  width: 100%;
  border-radius: 0px;
}
.box-login button {
  width: 100%;
  height: 40px;
  background-color: transparent !important;
  border: 1px solid #fff !important;
}
.box-login button span {
  background-color: transparent !important;
}
.box-login .p-grid {
  align-items: flex-end;
  margin-bottom: 10px;
}
.box-login h3 {
  margin-bottom: 0px;
  font-weight: 400;
  font-size: 20px;
  color: #fff;
}
.box-login .close-account {
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 0px;
  font-weight: 400;
  font-size: 12px;
  cursor: pointer;
}
.box-login p {
  margin-top: 20px;
  margin-bottom: 0px;
  color: #fff;
  font-weight: 400;
}
.box-login p a {
  color: #fff;
}
.box-login p a:hover {
  color: #fff;
}
.box-login p:last-child {
  margin-top: 5px;
}
.box-login .content-logged h3 {
  font-size: 16px;
}
.box-login .content-logged a {
  display: inline-block;
  border: 1px solid #fff;
  text-transform: uppercase;
  color: #fff;
  font-weight: 400;
  padding: 8px 20px;
  margin-top: 20px;
}
.box-login .content-logged a i {
  margin-left: 8px;
}
.box-login .content-logged a:hover {
  background-color: #fff;
 color: var(--primary-text-color);
  text-decoration: none;
}
.box-login .content-logged .top-bar-menu-account {
  margin-top: 25px;
}
.box-login .content-logged .top-bar-menu-account a {
  margin-top: -1px;
  border: none;
  display: flex;
  align-items: center;
  margin-top: 0px;
  padding-left: 0px;
}
.box-login .content-logged .top-bar-menu-account a h3 {
  margin-top: 0px;
}
.box-login .content-logged .top-bar-menu-account a i {
  font-size: 20px;
  margin-right: 10px;
}
.box-login .content-logged .top-bar-menu-account a:hover {
  background-color: transparent;
  opacity: 0.6;
}
.box-login .content-logged .top-bar-menu-account a:hover i {
  color: #fff;
}

.box-registration {
  width: 50%;
  margin: 20px auto;
  margin-bottom: 50px;
}
.box-registration p {
  margin-bottom: 50px;
}
.box-registration .p-field {
  margin-bottom: 0px !important;
}
.box-registration button {
  padding: 15px 0 !important;
  font-size: 15px;
  letter-spacing: 2px;
  width: 100%;
}
.box-registration button span {
  padding: 0px !important;
}
.box-registration .privacy-input {
  display: flex;
  align-items: center;
}
.box-registration .privacy-input h5 {
  margin: 0px;
}
.box-registration .privacy-input input {
  margin-right: 10px;
}

.label-field {
 color: var(--primary-text-color);
  font-size: 16px;
  font-weight: 400;
}

.menu-open, .menu-open-nav {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: var(--primary-color);
  top: 0;
  left: 0;
  transform: translateY(-150%);
  -moz-transform: translateY(-150%);
  -webkit-transform: translateY(-150%);
  transition: all 550ms ease;
  -moz-transition: all 550ms ease;
  -webkit-transition: all 550ms ease;
  z-index: 999;
}

#grabber {
  display: none;
  position: fixed;
  width: 60px;
  height: 60px;
  opacity: 0.6;
  transform: translate(-30px, -30px);
  -moz-transform: translate(-30px, -30px);
  -webkit-transform: translate(-30px, -30px);
  transition: transform 500ms ease;
  -moz-transition: transform 500ms ease;
  -webkit-transition: transform 500ms ease;
  border: 1px solid #fff;
  border-radius: 100%;
}

#grabber.press {
  transform: translate(-30px, -30px) scale(0.7);
  -moz-transform: translate(-30px, -30px) scale(0.7);
  -webkit-transform: translate(-30px, -30px) scale(0.7);
}

#grabber.link {
  transform: translate(-30px, -30px) scale(0);
  -moz-transform: translate(-30px, -30px) scale(0);
  -webkit-transform: translate(-30px, -30px) scale(0);
}

#grabber.link:before {
  display: none;
}

#grabber.link:after {
  display: none;
}

#grabber:before {
  position: absolute;
  font-family: "primeicons";
  content: "";
  top: -20px;
  left: 50%;
  font-size: 14px;
  color: #fff;
  transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}

#grabber:after {
  position: absolute;
  font-family: "primeicons";
  content: "";
  bottom: -20px;
  left: 50%;
  font-size: 14px;
  color: #fff;
  transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}

.menu-open.open span.line-left, .menu-open-nav.open span.line-left {
  transform: scaleX(1) !important;
  -webkit-transform: scaleX(1) !important;
  -moz-transform: scaleX(1) !important;
}
.menu-open.open span.line-top, .menu-open-nav.open span.line-top {
  transform: scaleY(1) !important;
  -webkit-transform: scaleY(1) !important;
  -moz-transform: scaleY(1) !important;
}
.menu-open.open .menu-parent .box-link-menu, .menu-open-nav.open .menu-parent .box-link-menu {
  transform: translateX(0) !important;
  -moz-transform: translateX(0) !important;
  -webkit-transform: translateX(0) !important;
}

.top-menu-open-bar {
  position: relative;
  height: 80px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.top-menu-open-bar .close-menu-bar, .top-menu-open-bar .close-menu-bar-nav {
  position: relative;
  display: flex;
  width: 80px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.top-menu-open-bar .close-menu-bar i, .top-menu-open-bar .close-menu-bar-nav i {
  color: #fff;
  font-size: 20px;
}
.top-menu-open-bar .close-menu-bar span.line-top, .top-menu-open-bar .close-menu-bar-nav span.line-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: #fff;
  transform: scaleY(0);
  -moz-transform: scaleY(0);
  -webkit-transform: scaleY(0);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  transform-origin: top;
  transition-delay: 500ms;
}
.top-menu-open-bar .close-menu-bar:hover, .top-menu-open-bar .close-menu-bar-nav:hover {
  background-color: #fff;
}
.top-menu-open-bar .close-menu-bar:hover i, .top-menu-open-bar .close-menu-bar-nav:hover i {
 color: var(--primary-text-color);
}
.top-menu-open-bar span.line-left {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transform: scaleX(0);
  -moz-transform: scaleX(0);
  -webkit-transform: scaleX(0);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  transition-delay: 500ms;
  transform-origin: left;
}
.top-menu-open-bar .link-top-bar-open {
  position: absolute;
  width: 55px;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.top-menu-open-bar .link-top-bar-open img {
  width: 100%;
}

.menu-open-content {
  display: flex;
  height: calc(100% - 42px );
}
.menu-open-content .column-menu-parent {
  position: relative;
  flex: 0 0 40%;
  height: 100%;
}
.menu-open-content .column-menu-parent span.line-top {
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #fff;
  transform: scaleY(0);
  -moz-transform: scaleY(0);
  -webkit-transform: scaleY(0);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  transform-origin: top;
  transition-delay: 500ms;
}
.menu-open-content .column-menu-parent .menu-parent {
  overflow: hidden;
  padding: 100px 0 20px 100px;
}
.menu-open-content .column-menu-parent .menu-parent .box-link-menu {
  position: relative;
  margin-bottom: 30px;
  transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  transition-delay: 500ms;
}
.menu-open-content .column-menu-parent .menu-parent .box-link-menu nu {
  font-size: 20px;
  color: #fff;
  margin-right: 30px;
}

.menu-open-content .column-menu-parent .menu-parent .box-link-menu a:hover {
  text-decoration: none;
  color: #fff;
}
.menu-open-content .column-menu-parent .menu-parent .parent-box-link span.line {
  position: absolute;
  left: 0;
  bottom: -10px;
  height: 1px;
  background-color: #fff;
  width: 100%;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  transform: scale(0);
  -moz-transform: scaleX(0);
  -webkit-transform: scaleX(0);
  transform-origin: left;
}
.menu-open-content .column-menu-parent .menu-parent .parent-box-link.active span.line {
  transform: scale(1);
  -moz-transform: scaleX(1);
  -webkit-transform: scaleX(1);
}
.menu-open-content .column-menu-parent .menu-parent .parent-box-link.active a {
 color: #fff;
}
.menu-open-content .column-menu-parent .menu-parent .parent-box-link.active nu {
 color: #fff;
}
.menu-open-content .column-menu-parent .menu-support {
  position: relative;
  padding: 50px 0 0 100px;
}

.menu-open-content .column-menu-parent .menu-support a:last-child {
  margin-right: 0px;
}
.menu-open-content .column-menu-parent .menu-support .line-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transform: scaleX(0);
  -moz-transform: scaleX(0);
  -webkit-transform: scaleX(0);
  transition: all 550ms ease;
  -moz-transition: all 550ms ease;
  -webkit-transition: all 550ms ease;
  transition-delay: 500ms;
  transform-origin: left;
}
.menu-open-content .column-menu-child {
  flex: 0 0 60%;
  height: 100%;
  overflow: hidden;
}
.menu-open-content .column-menu-child .content-submenu {
  display: none;
  overflow-y: scroll;
}
.menu-open-content .column-menu-child .content-submenu .box-sub-line {
  transform: translateX(-120%);
  -moz-transform: translateX(-120%);
  -webkit-transform: translateX(-120%);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  transition-delay: 400ms;
}
.menu-open-content .column-menu-child .content-submenu .box-sub-line.active {
  transform: translateX(0);
  -moz-transform: translateX(0);
  -webkit-transform: translateX(0);
}
.menu-open-content .column-menu-child .content-submenu .box-link-menu {
  padding: 30px 50px;
  border-bottom: 1px solid #fff;
  display: flex;
  flex-wrap: wrap;
}

.menu-open-content .column-menu-child .content-submenu .box-link-menu .head-sub-menu:hover {
  text-decoration: none;
  color: #fff;
}
.menu-open-content .column-menu-child .content-submenu .box-link-menu .sub-head-sub-menu {
  display: block;
  color: #fff;
  font-size: 14px;
  margin-top: 2px;
  text-transform: uppercase;
}
.menu-open-content .column-menu-child .content-submenu .box-link-menu .sub-head-sub-menu:hover {
  text-decoration: none;
  color: #fff;
}
.menu-open-content .column-menu-child .content-submenu .box-link-menu .box-sub-left-menu {
  flex: 0 0 40%;
}
.menu-open-content .column-menu-child .content-submenu .box-link-menu .box-sub-right-menu {
  flex: 0 0 60%;
}
.menu-open-content .column-menu-child .content-submenu .box-link-menu .box-sub-right-menu a:first-child {
  margin-top: 15px;
}
.menu-open-content .column-menu-child .content-submenu .box-link-menu .box-sub-right-menu a {
  display: block;
  font-size: 20px;
  margin-top: 5px;
  color: #fff;
  text-transform: uppercase;
}
.menu-open-content .column-menu-child .content-submenu .box-link-menu .box-sub-right-menu a i {
  font-size: 10px;
  margin-left: 5px;
  transition: all 450ms ease;
  -moz-transition: all 450ms ease;
  -webkit-transition: all 450ms ease;
}
.menu-open-content .column-menu-child .content-submenu .box-link-menu .box-sub-right-menu a:hover {
  text-decoration: none;
  color: #fff;
}
.menu-open-content .column-menu-child .content-submenu .box-link-menu .box-sub-right-menu a:hover i {
  transform: translateX(5px);
  -moz-transform: translateX(5px);
  -webkit-transform: translateX(5px);
}
.menu-open-content .column-menu-child .content-submenu .box-link-menu .box-sub-sub-menu {
  margin-top: 20px;
}
.menu-open-content .column-menu-child .content-submenu .box-link-menu .box-sub-sub-menu a {
  color: #fff;
  font-size: 20px;
  margin-right: 25px;
}
.menu-open-content .column-menu-child .content-submenu.active {
  display: block;
}

.menu-open-content-nav {
  padding: 100px;
}
.menu-open-content-nav .box-link-menu-nav {
  position: relative;
  margin-bottom: 20px;
  transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  transition-delay: 500ms;
}
.menu-open-content-nav .box-link-menu-nav nu {
  font-size: 15px;
  color: #fff;
  margin-right: 30px;
}

.menu-open-content-nav .box-link-menu-nav a:hover {
  text-decoration: none;
 color: var(--primary-text-color);
}

.menu-open-nav.open .box-link-menu-nav {
  transform: translateX(0%);
  -moz-transform: translateX(0%);
  -webkit-transform: translateX(0%);
}

.menu-burger {
  display: none;
  width: 80px;
  cursor: pointer;
}
.menu-burger .l-1 {
  margin-bottom: 10px;
}
.menu-burger .l-3 {
  margin-top: 10px;
}

.line {
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
}

.intro-category {
  padding: 100px 0;
 background-color: var(--primary-color);
}

.content-info-category {
  width: 50%;
  margin: 0 auto;
}

.content-category-description p {
  color: #fff;
}

.product-archive {
  display: flex;
}

.archive-sidebar {
  position: relative;
  flex: 0 0 20%;
}

.content-product-archive {
  position: relative;
  flex: 0 0 80%;
}
.content-product-archive .ui-datalist-header {
  padding: 0px !important;
  border: none !important;
  background-color: transparent !important;
}

a.alert-compare span {
  position: absolute;
  top: -20px;
  background-color: var(--primary-text-color);
  width: 40px;
  height: 40px;
  font-family: "Open-sans", sans-serif !important;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  right: 20px;
}
a.alert-compare:hover span {
color:white;
}
a.alert-compare:hover {
  background-color: #fff !important;
  color: var(--primary-text-color) !important;
  text-decoration: none !important;
}

.total-product h3 {
  font-weight: 500;
 color: var(--primary-text-color);
}

.head-filter {
  height: 90px;
  display: flex;
  padding: 30px 15px;
  justify-content: space-between;
  align-items: center;
  background-color: var(--primary-color);
}
.head-filter .box-head-filter {
  display: flex;
  align-items: center;
}

.head-filter i {
  font-size: 18px;
  color: #fff;
  margin-right: 20px;
  height: 16px;
  opacity: 0.3;
}

.archive-sort {
  height: 90px;
  display: flex;
  border-top: 1px solid #d5d5d5;
  align-items: center;
}
.archive-sort h3 {
  font-size: 20px;
  font-weight: 500;
 color: var(--primary-text-color);
  margin-bottom: 0px;
}

.total-product {
  padding-left: 50px;
}
.total-product h3 {
  font-weight: bold;
}

.select-sort {
  display: flex;
  align-items: center;
  padding-left: 50px;
}
.select-sort .ui-selectonemenu {
  border: 1px solid #224231;
  border-radius: 0px !important;
  margin-left: 10px;
}

.row-products .ui-datalist-content {
  display: flex;
  flex-wrap: wrap;
  padding: 0px !important;
  margin-left: -1px;
}

.column-product {
  position: relative;
  flex: 0 0 33.333333%;
  margin-top: -1px;
  margin-left: -1px;
}

.box-product-loop {
  position: relative;
  border: 1px solid #D5D5D5;
}
.box-product-loop .line-h {
  position: absolute;
  width: 0%;
  height: 2px;
  background-color: var(--primary-color);
  transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  -webkit-transition: all 250ms ease-in-out;
}
.box-product-loop .line-h.top {
  top: 0;
  left: 0;
}
.box-product-loop .line-h.bottom {
  bottom: 0;
  right: 0;
}
.box-product-loop .line-v {
  position: absolute;
  width: 2px;
  height: 0%;
  background-color: var(--primary-color);
  transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  -webkit-transition: all 250ms ease-in-out;
  transition-delay: 350ms;
  -webkit-transition-delay: 350ms;
  -moz-transition-delay: 350ms;
}
.box-product-loop .line-v.top {
  top: 0;
  left: 0;
}
.box-product-loop .line-v.bottom {
  bottom: 0;
  right: 0;
}
.box-product-loop .link-all-product-schede {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}

.box-product-loop:hover .line-v {
  height: 100%;
}
.box-product-loop:hover .line-h {
  width: 100%;
}
.box-product-loop:hover .footer-product-loop {
  border-top: 2px solid var(--primary-color);
}
.box-product-loop:hover .add-to-cart-fast {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.box-product-loop:hover .add-to-cart-fast i {
  color: #fff;
}

.parts-wrapper {
  width: 80%;
  max-width: 1280px;
  margin: 0 auto;
  margin-bottom: 100px;
}

.part-row.part-header {
    font-family: var(--gun-font);
}

.part-add-to-cart {
    font-size: 12px !important;
}

.even-row {
    background-color: var(--background-hover);
}

.odd-row {
    background-color: transparent;
}

.box-product-loop:hover .compare-product {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.box-product-loop:hover .compare-product img {
  filter: brightness(10);
}

.image-product-loop {
  text-align: center;
  padding: 50px;
}
.image-product-loop .window-product-image {
    height: 300px;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.info-product-loop {
  padding: 0 20px 20px 20px;
  text-align: center;
  min-height: 300px;
}

.out-of-stock-preview{
    color: #DC261B;
    font-weight: bold;
}
.galleria-items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.custom-phone-field {
    display: flex;
}

.galleria-item {
   height: auto;
   width: 180px;
   max-width: 25%;
   border-style: solid;
   border-color: var(--primary-color);
   border-width: 2px;
}

.carousel-item {
    width: 90%;
    border-width: 2px;
    border-color: black;
    border-style: solid;
}

.fullscreen-image {
   background-color: #e0e0e0;
}

.info-product-loop h5.product-sku {
  font-size: 16px;
 color: var(--primary-text-color);
  margin-top: 10px;
  --min-height: 70px;
}
.info-product-loop .price-product-loop {
  font-size: 20px;
  font-weight: 500;
 color: var(--primary-text-color);
}

.footer-product-loop {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  z-index: 3;
  border-top: 1px solid #D5D5D5;
}
.footer-product-loop .discover-product {
  width: calc(100% - 100px);
  height: 50px;
  position: relative;
}
.footer-product-loop .discover-product a {
  font-size: 16px;
  text-transform: uppercase;
 color: var(--primary-text-color);
  font-weight: 500;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-product-loop .discover-product a:hover {
 background-color: var(--primary-color);
  color: #fff;
  text-decoration: none;
}
.footer-product-loop .add-to-cart-fast {
  width: 50px;
  height: 50px;
  position: relative;
  border-left: 1px solid #D5D5D5;
  display: flex;
  justify-content: center;
  align-items: center;
}

.out-of-stock-svg {
    width: 30px; /* Adjust to your SVG's size */
    height: 30px;
    background-color: var(--primary-text-color); /* Default color */
    mask: url(/javax.faces.resource/images/out-of-stock.svg.xhtml?ln=rain-layout) no-repeat center;
    -webkit-mask: url(/javax.faces.resource/images/out-of-stock.svg.xhtml?ln=rain-layout) no-repeat center;
    mask-size: contain;
    -webkit-mask-size: contain;
    transition: background-color 0.1s ease, opacity 0.1s ease;
    opacity: 0.7;
}

/* Hover effect for the parent element with both classes */
.box-product-loop:hover .out-of-stock-svg {
    background-color: white; /* Even lighter greyed-out state */
    opacity: 0.7; /* Slight transparency */
}


.footer-product-loop .add-to-cart-fast button {
  background-color: transparent;
  border: none;
  position: absolute;
  width: 100% !important;
  height: 100%;
  border-radius: 0;
  margin-right: 0px !important;
  z-index: 3;
}
.footer-product-loop .add-to-cart-fast span {
  background-color: transparent;
 color: var(--primary-text-color);
  text-transform: uppercase;
}
.footer-product-loop .add-to-cart-fast i {
  position: absolute;
 color: var(--primary-text-color);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
}

.footer-product-loop .add-to-cart-fast.disabled i {
    opacity: 0.4;
    display: flex;
    align-items: center; /* Vertical centering */
    justify-content: center; /* Horizontal centering */
}

.footer-product-loop .add-to-cart-fast .pi-shopping-cart {
  font-size: 20px;
  left: 25%;
  bottom: 10px;
}
.footer-product-loop .add-to-cart-fast .pi-plus {
  right: 15%;
  top: 10px;
  font-size: 12px;
}

.footer-product-loop .add-to-cart-fast.disabled .pi-plus {
    opacity: 0.4;
}

.footer-product-loop .add-to-cart-fast:hover .pi-plus {
  transform: translateY(-4px);
  -moz-transform: translateY(-4px);
  -webkit-transform: translateY(-4px);
}

.footer-product-loop .add-to-cart-fast.disabled:hover .pi-plus {
  transform: translateY(0px);
  -moz-transform: translateY(0px);
  -webkit-transform: translateY(0px);
}

.footer-product-loop .compare-product {
  position: relative;
  width: 50px;
  height: 50px;
  border-left: 1px solid #D5D5D5;
  overflow: hidden;
}
.footer-product-loop .compare-product button {
  position: absolute;
  margin: 0 !important;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100%;
  background-color: transparent;
  border: none;
  z-index: 2;
}
.footer-product-loop .compare-product button span {
  background-color: transparent;
  border: none;
}
.footer-product-loop .compare-product img {
  width: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.footer-product-loop .compare-product .pi-arrow-left {
  right: 22px;
  top: 15px;
}
.footer-product-loop .compare-product .pi-arrow-right {
  top: 26px;
  left: 22px;
}

.footer-product-loop.no-add-cart .discover-product {
  width: calc(100% - 50px);
}

.body-filters {
  border-right: 1px solid #D5D5D5;
}

.single-attribute-filters {
  padding: 40px 20px;
  border-bottom: 1px solid #D5D5D5;
}
.single-attribute-filters .head-single-filter {
  position: relative;
  cursor: pointer;
}
.single-attribute-filters .head-single-filter h3 {
  color: #D5D5D5;
  font-weight: 500;
  font-size: 20px;
}
.single-attribute-filters .head-single-filter i {
  font-size: 30px;
  color: #D5D5D5;
  position: absolute;
  top: 15%;
  right: 10px;
  transform: rotate(180deg);
  transition: all 450ms ease;
  -moz-transition: all 450ms ease;
  -webkit-transition: all 450ms ease;
}
.single-attribute-filters .body-single-filter {
  height: 0px;
  overflow: hidden;
  transition: all 450ms ease;
  -moz-transition: all 450ms ease;
  -webkit-transition: all 450ms ease;
}
.single-attribute-filters .body-single-filter label {
  font-size: 12px;
}
.single-attribute-filters .body-single-filter .line-filter {
  margin-bottom: 5px;
}
.single-attribute-filters .body-single-filter .line-filter .ui-chkbox-label {
  font-size: 18px;
}
.single-attribute-filters .body-single-filter .ui-slider-horizontal {
  width: 90% !important;
  margin: 0 auto;
}
.single-attribute-filters .body-single-filter .titolo-range {
  display: block;
  margin-bottom: 20px;
}
.single-attribute-filters .body-single-filter .ui-slider-range {
  background-color: var(--primary-color);
}
.single-attribute-filters .body-single-filter .ui-slider-handle {
  border-color: #224231;
}
.single-attribute-filters .body-single-filter .box-window-range {
  display: flex;
  margin-top: 25px;
}
.single-attribute-filters .body-single-filter .box-window-range input {
  width: 70px;
  height: 40px;
  padding: 10px;
  border-radius: 0px;
  border: 1px solid #224231;
}
.single-attribute-filters .body-single-filter .box-window-range input:first-child {
  margin-right: 10px;
}

.single-attribute-filters.attivo .body-single-filter {
  height: 100%;
}
.single-attribute-filters.attivo .head-single-filter i {
  transform: rotate(0deg);
}

body .ui-radiobutton .ui-radiobutton-box.ui-state-active {
  border-color: #224231;
  background: #224231;
}

.ui-paginator-bottom {
  margin: 20px 0;
}
.ui-paginator-bottom .ui-state-default {
  color: #191a1c !important;
}
.ui-paginator-bottom .ui-paginator-page.ui-state-active {
  background-color: var(--primary-color) !important;
  color: #fff !important;
}

.product-compare {
  display: flex;
}

.archive-compare {
  flex: 0 0 20%;
  margin-top: -1px;
}

.content-product-compare {
  flex: 0 0 80%;
  max-width: 80%;
}

.spacer-compare-sidebar, .box-image-compare {
  min-height: 550px;
}

.label-sidebar-compare {
  border-top: 1px solid #D5D5D5;
  border-bottom: 1px solid #D5D5D5;
}

.head-label {
  display: flex;
  align-items: center;
  padding: 0 15px;
  border-bottom: 1px solid #D5D5D5;
  color: #808080;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  min-height: 55px;
}

.compare-move {
  width: 100%;
  height: 90px;
  border-bottom: 1px solid #D5D5D5;
}

.box-image-compare .window-product-image {
  height: 200px;
}
.box-image-compare .image-product-loop {
  padding-bottom: 0px;
}

.box-compare {
  margin-top: -1px;
  border: 1px solid #D5D5D5;
}
.box-compare .box-image-compare {
  border-bottom: 1px solid #D5D5D5;
}

.box-info-compare .value-label {
  display: flex;
  align-items: center;
  padding: 0 15px;
  color: var(--primary-text-color);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  border-bottom: 1px solid #D5D5D5;
  min-height: 55px;
}

.box-cancel-product {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  justify-content: center;
}
.box-cancel-product h3 {
  font-size: 15px;
  text-transform: uppercase;
 color: var(--primary-text-color);
  margin-bottom: 0px;
  padding: 15px 0;
  color: var(--primary-text-color);
}
.box-cancel-product a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: transparent !important;
}

.box-cancel-product:hover {
  background-color: var(--primary-color);
}
.box-cancel-product:hover h3 {
  color: #fff;
}

.compare-navigation {
  position: relative;
  float: right;
}
.compare-navigation .arrow-compare {
  position: absolute;
  width: 45px;
  height: 45px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F2BB05;
  right: 0;
  cursor: pointer;
}
.compare-navigation .arrow-compare i {
  font-size: 20px;
}
.compare-navigation .compare-next {
  top: 0;
}
.compare-navigation .compare-prev {
  top: 45px;
}

.slide-single-product {
  position: relative;
  width: 100%;
  height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 100px;
}

.content-slide-product {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  text-align: center;
}
.content-slide-product img {
  width: 180px;
  margin-bottom: 20px;
}
.content-slide-product h2 {
  margin: 0;
  font-weight: 700;
}
.content-slide-product h3 {
  margin-top: 5px;
  font-weight: 400;
  font-style: italic;
}

.single-product-selector {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
.single-product-selector .box-selector {
  position: relative;
  flex: 0 0 20%;
  border-bottom: 1px solid #ebedef;
  border-left: 1px solid #ebedef;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 10px;
}
.single-product-selector .box-selector a {
  position: absolute;
  top: 0px;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.single-product-selector .box-selector:hover {
  background-color: var(--primary-color);
}
.single-product-selector .box-selector:hover h4 {
  color: #fff;
}

.sku-product {
  font-size: 16px;
  text-align: center;
}

.product-description {
  font-size: 16px;
  color: #000;
}

.single-product-action {
  margin: 50px auto;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.single-product-action .reseller-button {
  padding: 12px 30px;
  background-color: #234231;
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
}
.single-product-action .p-col-6 {
  text-align: center;
}
.single-product-action .p-col-6 h3 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 0px;
}

.single-product-action .p-col-6 button span {
  padding: 10px 25px !important;
}
.single-product-action .p-col-12 {
  text-align: center;
}

.featured-image img {
  width: 100%;
}

.container-title-product {
  position: relative;
  z-index: 3;
}

.container-prodcut {
  position: relative;
  z-index: 2;
}

.container-prodcut .p-grid {
  margin-left: 0px;
  margin-right: 0px;
}
.container-prodcut .p-grid .colonna-testo {
  display: flex;
  align-items: center;
  padding: 0 100px;
}
.container-prodcut .p-grid .colonna-testo .content-excerpt {
  position: relative;
  margin-top: 150px;
  padding: 80px;
}

.content-manual {
  position: relative;
  padding: 100px 0;
  text-align: center;
}
.content-manual .subtitle-cta {
  font-size: 25px;
  font-weight: 300;
  color: #fff;
}

.content-manual:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0) 0%, black 75%);
  transition: all 450ms ease-in-out;
  -moz-transition: all 450ms ease-in-out;
  -webkit-transition: all 450ms ease-in-out;
}

.banner-single-product {
  background-color: #F8FAF9;
  margin-top: 100px;
  margin-bottom: 100px;
  margin-right: 0px;
  margin-left: 0px;
}
.banner-single-product .p-col-7 {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 400px;
}
.banner-single-product .content-banner-single-product {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 100px;
}
.banner-single-product .content-banner-single-product div {
  text-align: center;
}
.banner-single-product .content-banner-single-product div h2 {
  font-size: 40px;
  text-align: center;
  font-weight: 400;
  margin-bottom: 40px;
}
.banner-single-product .content-banner-single-product div a {
  background-color: var(--primary-color);
  color: #fff;
  padding: 10px 30px;
}

.list-specif-product {
  width: 700px;
  margin: 0 auto;
  list-style: none;
  padding: 80px 0;
  text-align: left;
}
.list-specif-product tr td:first-child {
  width: 50%;
  text-align: right;
}
.list-specif-product tr td {
  width: 50%;
  font-size: 18px;
  padding: 10px 25px;
  border-bottom: 1px solid #D5D5D5;
}

.slideGalleryProduct {
  width: 85%;
}
.slideGalleryProduct .swiper-wrapper {
  justify-content: center;
}
.slideGalleryProduct .swiper-slide img {
  width: 90%;
  margin: 0 auto;
  height: 200px;
  object-fit: cover;
}

.ui-lightbox-nav-right, .ui-lightbox-nav-left {
 color: var(--primary-text-color) !important;
  font-size: 30px !important;
  display:none !important;
}

.megamenu {
  display: none;
  position: absolute;
  width: 100%;
  left: 0;
  top: 170px;
  padding: 50px 100px;
  z-index: 99;
  background-color: #fff;
}

.link-head {
  color: #808080 !important;
  font-weight: 700 !important;
  display: block;
  padding: 0 !important;
  margin-bottom: 20px;
}

.link-submenu {
 color: var(--primary-text-color);
  text-transform: uppercase;
  display: block;
  padding: 0px !important;
  font-weight: 700 !important;
  margin-bottom: 20px;
}

.link-submenu.no-bottom {
  margin-bottom: 0px;
}

.list-submenu {
  margin: 0 0 20px 0;
  list-style: none;
  padding-left: 20px;
}
.list-submenu li a {
 color: var(--primary-text-color);
  display: block;
  padding: 0px !important;
  font-weight: 700 !important;
}

.banner-megamenu {
  width: 90%;
}
.banner-megamenu img {
  width: 100%;
  margin-bottom: 10px;
}
.banner-megamenu a {
  display: block;
  padding: 0px !important;
  text-transform: unset !important;
}

.container {
  position: relative;
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}

.field-input input, .select-field {
  width: 100%;
  border-radius: 0px !important;
  border-color: #224231 !important;
  height: 45px;
}



.subscribe-reminder {
  margin-top: 20px;
}

.menu-content {
  padding: 20px 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-brand {
  width: 100px;
}

.logo-brand img {
  width: 100%;
}

.nav-content {
  display: flex;
}

.link-menu {
  margin: 0 10px;
  display: flex;
  align-items: center;
}

.link-menu a {
  font-family: "Open-sans", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--primary-text-color);
  padding: 50px 0;
  position: relative;
}

.link-menu > a:after {
  content: "";
  position: absolute;
  bottom: 20px;
  background-color: var(--primary-color);
  width: 100%;
  height: 4px;
  left: 0;
  opacity: 0;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
}

.link-menu > a:hover:after, .link-menu.open > a:after {
  opacity: 1;
}

.link-menu a:hover {
 color: var(--primary-text-color);
  text-decoration: none;
}

.subtitle-page {
  font-size: 40px;
  font-weight: 300;
 color: var(--primary-text-color);
}

.subtitle-page.under {
  margin-top: -10px;
}

.slider-home {
  position: relative;
  height: 40vw;
  width: 100%;
}

.introSlide {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.introSlide .swiper-slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.introSlide .swiper-slide.slide-overlay:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0) 0%, black 75%);
  transition: all 450ms ease-in-out;
  -moz-transition: all 450ms ease-in-out;
  -webkit-transition: all 450ms ease-in-out;
}
.introSlide .content-slide {
  position: absolute;
  width: 90%;
  transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  left: 50%;
  text-align: center;
  top: 35%;
}
.introSlide .content-slide h2 {
  color: #fff;
  font-size: 40px;
  font-weight: 300;
}
.introSlide .content-slide .bottone {
  background-color: #fff;
  padding: 5px 50px;
  margin-top: 20px;
  font-weight: 500;
  display: inline-block;
}

.selettore-slide {
  position: absolute;
  display: flex;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.selettore-slide .colonna-selettore-slide {
  position: relative;
  flex: 0 0 33.33333%;
  text-align: center;
  padding: 50px 30px;
  border-right: 1px solid #fff;
  overflow: hidden;
  cursor: pointer;
}

.selettore-slide .colonna-selettore-slide p {
  color: #fff;
}
.selettore-slide .colonna-selettore-slide:last-child {
  border-right: none;
}
.selettore-slide .colonna-selettore-slide:after {
  content: "";
  position: absolute;
  width: 70%;
  height: 20px;
  background-color: var(--primary-color);
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transition: all 550ms ease;
  -moz-transition: all 550ms ease;
  -webkit-transition: all 550ms ease;
}
.selettore-slide .colonna-selettore-slide.attivo:after {
  bottom: 0;
}
.selettore-slide .colonna-selettore-slide:hover:after {
  bottom: 0;
}

.slideProducts {
  width: 85%;
}
.slideProducts .box-product-slide {
  text-align: center;
  padding: 0 20px;
}

.slideProducts .box-product-slide .divider {
  background-color: #D5D5D5;
  width: 80%;
  margin: 20px auto;
  height: 1px;
}
.slideProducts .box-product-slide p {
  font-size: 16px;
}
.slideProducts .box-product-slide img {
  width: 100%;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  cursor: pointer;
}

.arrow-prev {
  left: 20px;
}

.arrow-next {
  right: 20px;
}

#scrittaAnimata {
  width: auto;
  height: 300px;
  width: auto;
  position: absolute;
  bottom: 20%;
  right: -10%;
  z-index: 2;
}

.banner-home {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  margin-bottom: 0rem;
}
.banner-home a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
}

.banner-home:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0) 0%, black 95%);
  transition: all 450ms ease-in-out;
  -moz-transition: all 450ms ease-in-out;
  -webkit-transition: all 450ms ease-in-out;
}

.banner-home:hover:before {
  transform: scale(1.5);
  -moz-transform: scale(1.5);
  -webkit-transform: scale(1.5);
}

.banner-home.banner-horizontal {
  height: 350px;
}

.banner-vertical {
  height: 650px;
  width: 80%;
}

.banner-vertical.banner-left {
  margin-right: 0px;
  margin-left: auto;
}

.content-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 150px 0;
}
.content-cta .container {
  width: 80%;
}
.content-cta .subtitle-cta {
  font-size: 25px;
  font-weight: 300;
  color: #fff;
}

.content-cta .button {
  background-color: #fff;
  padding: 5px 50px;
  margin-top: 20px;
  font-weight: 500;
  display: inline-block;
}

.content-cta:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0) 0%, black 75%);
  transition: all 450ms ease-in-out;
  -moz-transition: all 450ms ease-in-out;
  -webkit-transition: all 450ms ease-in-out;
}

.content-cta.fixed:before {
  display: none;
}

.content-cta:hover:before {
  transform: scale(1.5);
  -moz-transform: scale(1.5);
  -webkit-transform: scale(1.5);
}

.cta .p-grid {
  width: 100%;
  margin-left: 0px;
  margin-right: 0px;
}
.cta .p-col-6 {
  padding: 0px;
}

.slideAccessories {
  width: 85%;
}
.slideAccessories .box-acc-slide {
  padding: 0 20px;
}
.slideAccessories .box-acc-slide p {
  font-size: 12px;
}

.blog {
  padding: 100px 0;
}

.slideBlog {
  width: 80%;
}
.slideBlog .box-blog-slide {
  position: relative;
}
.slideBlog .box-blog-slide h2 {
  position: absolute;
  font-size: 20px;
  color: #fff;
  top: 20px;
  left: 20px;
  width: 80%;
  margin: 0;
}
.slideBlog .box-blog-slide .meta {
  position: absolute;
  font-size: 16px;
  font-weight: 800;
  bottom: 20px;
  left: 20px;
  color: #fff;
}
.slideBlog .box-blog-slide .data {
  position: absolute;
  font-size: 12px;
  font-weight: 800;
  bottom: 20px;
  right: 20px;
  color: #fff;
}

.pre-footer {
  padding: 50px;
  background-color: #D5D5D5;
  margin-bottom: 0px;
}
.pre-footer .box-prefooter {
  padding: 10px 50px;
  text-align: center;
}
.pre-footer .box-prefooter img {
  height: 20px;
  width: auto;
}

.pre-footer .box-prefooter .divider {
  width: 200px;
  margin: 20px auto;
  height: 1px;
  background-color: #fff;
}

.parallax-about {
  position: relative;
  height: 700px;
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
}
.parallax-about .p-grid {
  margin: 0px;
  height: 100%;
}
.parallax-about .p-col-4 .block-text {
  width: 70%;
  margin: 0px auto;
  color: #fff;
}

.parallax-about .p-col-4.black-ground {
  display: flex;
  align-items: center;
  background-color: rgba(34, 66, 49, 0.8);
}
.parallax-about .p-col-4.black-ground.black {
  background-color: rgba(25, 26, 28, 0.8);
}

.cart-empty {
  text-align: center;
  padding: 100px 0;
}
.cart-empty h3 {
  margin-bottom: 20px;
}
.cart-empty a {
  display: inline-block;
  background-color: var(--primary-color);
  color: #fff;
  padding: 10px 30px;
  text-transform: uppercase;
}
.cart-empty a:hover {
  text-decoration: none;
  color: #fff;
}

.p-row-center {
  align-items: center;
}

.header-cart {
  background-color: #EBEBEB;
  padding: 0px 100px;
}
.header-cart .p-col-6, .header-cart .p-col-2 {
  padding: 0px !important;
}
.header-cart h3 {
  margin-bottom: 0px;
  font-size: 14px;
  font-weight: 300;
  color: #808080;
  padding: 20px 0;
}
.header-cart .total-price h3 {
  text-align: right;
}

.body-cart .cart-row {
  padding: 20px 100px 50px 100px;
  border-bottom: 1px solid #D5D5D5;
}
.body-cart .preview-cart {
  display: flex;
  align-items: center;
}
.body-cart .preview-cart .preview-cart-image {
  flex: 0 0 50%;
}
.body-cart .preview-cart .preview-cart-image img {
  display: block;
  width: 95%;
  margin: 0 auto;
}
.body-cart .preview-cart .preview-cart-info {
  flex: 0 0 50%;
  padding-left: 10px;
}

.body-cart .preview-cart .preview-cart-info h2 a:hover {
  color: #33644a;
}
.body-cart .preview-cart .preview-cart-info h3 {
  font-size: 15px;
  margin: 0;
  font-weight: 400;
}
.body-cart .box-quantity {
  width: 70px;
}
.body-cart .box-quantity .select-quantity {
  width: 100%;
}
.body-cart .box-quantity .select-quantity input {
  width: 100%;
  height: 70px;
  font-size: 25px;
  font-style: italic;
  border-color: #224231;
  border-radius: 0px;
}
.body-cart .box-quantity .select-quantity .ui-spinner-button {
  opacity: 0;
}
.body-cart .box-quantity .select-quantity:hover .ui-spinner-button {
  opacity: 1;
}
.body-cart .box-quantity h6, .body-cart .box-quantity h6 a {
 color: var(--primary-text-color);
  margin-top: 8px;
  text-align: right;
}
.body-cart .sub-price h4 {
  font-style: italic;
  font-weight: 400;
}
.body-cart .total-price h4 {
  text-align: right;
  font-weight: 400;
}

.footer-cart {
  padding: 30px 100px;
}
.footer-cart h6 {
  font-size: 16px;
  color: #808080;
}

.checkout-cart {
  margin-top: -94px;
}

.checkout-cart-box {
  width: 600px;
  border: 1px solid #D5D5D5;
  float: right;
}
.checkout-cart-box .header-checkout-cart-box {
  background-color: #EBEBEB;
  padding: 30px 0px;
  text-align: center;
}
.checkout-cart-box .header-checkout-cart-box h2 {
  color: #808080;
  font-style: italic;
  font-size: 30px;
  margin-bottom: 0px;
  font-weight: 400;
}
.checkout-cart-box .content-checkout-cart-box {
  padding: 50px;
  border-bottom: 1px solid #D5D5D5;
}
.checkout-cart-box .content-checkout-cart-box .p-grid h3 {
  font-size: 18px;
  font-weight: 400;
}
.checkout-cart-box .content-checkout-cart-box h6 {
  text-align: center;
  font-size: 14px;
  color: #808080;
  margin-bottom: 0px;
}
.checkout-cart-box .footer-checkout-cart-box {
  padding: 50px 0px;
  text-align: center;
}
.checkout-cart-box .footer-checkout-cart-box .bottone {
  display: block;
  width: 60%;
  background-color: var(--primary-color);
  text-align: center;
  color: #fff;
  padding: 15px 0px;
  font-size: 20px;
  text-transform: uppercase;
  margin: 0 auto;
}
.checkout-cart-box .footer-checkout-cart-box .bottone span {
  padding: 0px;
}

.content-checkout {
  padding: 0 100px;
}
.content-checkout .p-grid {
  margin-top: 0px;
}
.content-checkout .p-grid .p-col-6 {
  padding-top: 0px;
}

@media only screen and (max-width: 1440px) {
   .content-checkout .p-grid .p-col-6 {
     width: 100%;
   }
}

.column-account {
  border-right: 1px solid #D5D5D5;
}

.title-checkout {
  color: #808080;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 400;
}

.column-account-logged {
  padding: 20px !important;
  border-right: none !important;
}
.column-account-logged h2 {
  margin-bottom: 5px;
}
.column-account-logged p {
  margin-bottom: 20px;
}
.column-account-logged .bottone {
  font-size: 14px;
  font-weight: 400;
  padding: 5px 30px;
  background-color: var(--primary-color);
  color: #fff;
  text-transform: uppercase;
}

.box-account {
  padding: 20px;
}
.box-account label {
  width: 100%;
  font-style: italic;
 color: var(--primary-text-color);
  font-size: 18px;
}
.box-account input {
  width: 100%;
  border-radius: 0px;
  border-color: #224231;
}
.box-account .bottone-form {
  font-size: 14px;
  font-weight: 400;
  padding: 5px 30px;
}
.box-account .bottone-form span {
  padding: 0px !important;
}
.box-account .password-recover {
  font-weight: 700;
  font-style: italic;
  color: #808080;
  font-size: 12px;
  margin-top: 20px;
  margin-bottom: 0px;
}
.box-account .link-recover {
  font-weight: 700;
  font-style: italic;
  font-size: 12px;
  margin-top: 0px;
  margin-bottom: 0px;
 color: var(--primary-text-color);
}

.content-payement .ui-accordion-header {
  border-radius: 0px !important;
  background: #fff !important;
  border-color: #224231 !important;
  border-top: 1px solid #224231 !important;
 color: var(--primary-text-color) !important;
  font-weight: 500 !important;
  font-size: 16px !important;
}
.content-payement .ui-accordion-header:focus {
  box-shadow: 0 0 4px 2px rgba(34, 66, 49, 0.2) !important;
}
.content-payement .ui-datatable thead th {
  background: #ebebeb;
}
.content-payement .ui-datatable thead th .ui-column-title {
  font-weight: 400;
  color: #808080;
}
.content-payement .ui-datatable .ui-datatable-data > tr > td {
  color: #191a1c;
}
.content-payement .ui-datatable-footer {
  background: #ebebeb !important;
}
.content-payement .ui-commandlink {
 color: var(--primary-text-color);
}

.box-new-client {
  padding: 20px;
}
.box-new-client h5 {
 color: var(--primary-text-color);
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
}
.box-new-client .bottone {
  background-color: var(--primary-color);
  color: #fff;
  padding: 5px 50px;
  margin-top: 20px;
  font-weight: 400;
  display: inline-block;
  text-transform: uppercase;
}

.table-chekout {
  border-left: 1px solid #D5D5D5;
}
.table-chekout .p-grid {
  margin: 0px;
}

.header-table-checkout {
  background-color: #EBEBEB;
}
.header-table-checkout h3 {
  margin-bottom: 0px;
  font-size: 14px;
  font-weight: 300;
  color: #808080;
  padding: 0px 10px;
}

.body-table-checkout h5 {
  font-size: 14px;
}
.body-table-checkout .p-grid {
  border-bottom: 1px solid #D5D5D5;
}
.body-table-checkout .p-col-2, .body-table-checkout .p-col-3 {
  text-align: center;
}

.footer-table-checkout h4 {
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
}
.footer-table-checkout .p-col-3 {
  text-align: center;
}
.partner-big-image{
  padding: 8px;
}
.partner-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.partner-item {
    max-width: 100px;
}
.action-checkout {
    margin-top: 25px;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 20px;
}
.action-checkout button {
  background-color: var(--primary-color);
  text-transform: uppercase;
  padding: 10px 80px;
  font-size: 18px;
}

.content-payement {
  padding: 50px 0;
}

.user-recap {
  border: 1px solid #D5D5D5;
  padding: 0 20px;
}
.user-recap .box-recap {
  border-bottom: 1px solid #D5D5D5;
}
.user-recap .box-recap .p-grid {
  margin: 0;
}
.user-recap .box-recap h4 {
  font-size: 14px;
  font-weight: 400;
  color: #808080;
  margin-bottom: 0px;
}
.user-recap .box-recap a {
 color: var(--primary-text-color);
}
.user-recap .box-recap:last-child {
  border-bottom: none;
}

.box-payament {
  margin-top: 80px;
}
.box-payament h3 {
  font-size: 22px;
  font-weight: 400;
}
.box-payament h4 {
  margin-top: 0px;
  font-size: 14px;
  font-weight: 400;
}

.header-credit-card {
  padding: 10px 20px;
  border: 1px solid #D5D5D5;
}
.header-credit-card h4 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0px;
}

.body-credit-card {
  padding: 20px 10px;
  background-color: #fafafa;
  border-left: 1px solid #D5D5D5;
  border-right: 1px solid #D5D5D5;
  border-bottom: 1px solid #D5D5D5;
}
.body-credit-card input {
  width: 100%;
  margin-bottom: 10px;
  height: 40px;
}
.body-credit-card .p-grid input {
  margin-bottom: 0px;
}

.payment-action {
  margin-top: 20px;
}
.payment-action button {
  padding: 15px 40px;
}

.column-payement-recap {
  padding-left: 100px;
}

.recap-order-subtotal {
  padding: 20px 0;
  border-bottom: 1px solid #D5D5D5;
  border-top: 1px solid #D5D5D5;
}
.recap-order-subtotal .p-grid {
  margin: 0;
}
.recap-order-subtotal h5 {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
}
.recap-order-subtotal h6 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0px;
}

.recap-order-total .p-grid {
  margin: 0;
}
.recap-order-total h5 {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
}
.recap-order-total h6 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 0px;
}

.parallax-store.parallax-map {
  position: relative;
  height: 560px;
}
.parallax-store.parallax-map .p-grid {
  position: relative;
  margin-left: 0px;
  margin-right: 0px;
  z-index: 2;
  height: 100%;
  overflow: hidden;
}

.scroll-reseller {
    overflow-y: scroll;
    position: relative;
    height: 250px;
}

.parallax-store.parallax-map .p-grid .filtro-ricerca .block-scroll {
  padding: 50px;
}

.parallax-store.parallax-map .p-grid .filtro-ricerca .block-scroll p {
  color: #fff;
}
.parallax-store.parallax-map .p-grid .filtro-ricerca .block-scroll .scroll-reseller {
  margin-top: 80px;
  padding: 0 20px 0 0;
  height: 550px;
  overflow-y: scroll;
}
.parallax-store.parallax-map .p-grid .filtro-ricerca .block-scroll .scroll-reseller .box-reseller {
  position: relative;
  padding: 30px;
  border: 1px solid #fff;
  margin-bottom: 30px;
}

.parallax-store.parallax-map .p-grid .filtro-ricerca .block-scroll .scroll-reseller .box-reseller p {
  font-weight: 300;
  font-size: 16px;
}
.parallax-store.parallax-map .p-grid .filtro-ricerca .block-scroll .scroll-reseller .box-reseller .box-reseller-action {
  display: flex;
  position: absolute;
  right: -1px;
  bottom: -1px;
}
body .ui-chkbox .ui-chkbox-box.ui-state-active.ui-state-hover {
    background: var(--primary-color);
}
body .ui-chkbox .ui-chkbox-box.ui-state-hover {
    border-color: var(--primary-color);
}
body .ui-chkbox .ui-chkbox-box.ui-state-active {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: #f8fafc;
}
body .ui-chkbox .ui-chkbox-box.ui-state-focus {
    box-shadow: 0 0 0 0.0em #56A7F5;
    outline: 0 none;
}
body .ui-selectonelistbox .ui-selectlistbox-listcontainer .ui-selectlistbox-list .ui-selectlistbox-item.ui-state-highlight,
body .ui-selectmanymenu .ui-selectlistbox-listcontainer .ui-selectlistbox-list .ui-selectlistbox-item.ui-state-highlight {
  background: var(--primary-color);
  color: #f8fafc;
  outline: none;
  box-shadow: none;
}
body .ui-inputfield.ui-state-focus {
    border-color: var(--primary-color);
    outline: 0 none;
    box-shadow: 0 0 0 0.0em #56A7F5;
}
.parallax-store.parallax-map .p-grid .filtro-ricerca .block-scroll .scroll-reseller .box-reseller .box-reseller-action .site, .parallax-store.parallax-map .p-grid .filtro-ricerca .block-scroll .scroll-reseller .box-reseller .box-reseller-action .email {
  height: 35px;
  width: 35px;
  border: 1px solid #fff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.parallax-store.parallax-map .p-grid .filtro-ricerca .block-scroll .scroll-reseller .box-reseller .box-reseller-action .site:hover, .parallax-store.parallax-map .p-grid .filtro-ricerca .block-scroll .scroll-reseller .box-reseller .box-reseller-action .email:hover {
  background-color: #F2BB05;
  border-color: #F2BB05;
}
.parallax-store.parallax-map .p-grid .filtro-ricerca .block-scroll .scroll-reseller::-webkit-scrollbar {
  width: 8px;
}
.parallax-store.parallax-map .p-grid .filtro-ricerca .block-scroll .scroll-reseller::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.1);
}
.parallax-store.parallax-map .p-grid .filtro-ricerca .block-scroll .scroll-reseller::-webkit-scrollbar-thumb {
  background-color: #F2BB05;
}
.parallax-store.parallax-map .p-grid .colonna-mappa {
  padding: 0px;
}
.parallax-store.parallax-map .maps-store {
  position: relative;
  width: 100%;
  height: 100%;
}
.parallax-store.parallax-map .maps-store iframe {
  width: 100%;
  height: 100%;
}

.filter-reseller-box {
  margin-top: 40px;
}
.filter-reseller-box .p-field .ui-inputfield {
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 0px;
  width: 100%;
  padding: 10px;
  color: #fff;
}
.filter-reseller-box .p-field .ui-selectonemenu.ui-widget {
  width: 100%;
  background-color: transparent;
  border: 1px solid #fff !important;
  border-radius: 0px;
}
.filter-reseller-box .p-field .ui-selectonemenu.ui-widget .ui-icon {
  color: #fff;
}
.filter-reseller-box .p-field .ui-selectonemenu.ui-widget .ui-selectonemenu-label {
  color: #fff;
}
.filter-reseller-box .p-field .ui-selectonemenu.ui-widget .ui-selectonemenu-label {
  border: none;
}
.filter-reseller-box .p-field .ui-inputfield::-webkit-input-placeholder {
  /* Edge */
  color: #fff;
}
.filter-reseller-box .p-field .ui-inputfield:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #fff;
}
.filter-reseller-box .p-field .ui-inputfield::placeholder {
  color: #fff;
}

.grid-contact {
  width: 80%;
  margin: 0 auto;
  align-items: center;
}
.grid-contact .p-col-6 {
  text-align: center;
}
.grid-contact .p-col-6 h4 {
  font-weight: 400;
 color: var(--primary-text-color);
  margin: 0;
}

.list-social {
  display: flex;
  justify-content: center;
  align-items: center;
}
.list-social a {
  width: 25px;
  margin: 0 5px;
}
.list-social a img {
  width: 100%;
}
.list-social a:last-child {
  margin-left: 10px;
}

.box-social-page h4 {
  margin-top: 5px;
}

.parallax-contact {
  background-attachment: fixed;
}
.parallax-contact .p-grid {
  margin-left: 0px;
  margin-right: 0px;
}
.parallax-contact .p-grid .p-col-6 {
  padding: 150px 0;
}
.parallax-contact .p-grid .p-col-6.col-green {
  position: relative;
  overflow: hidden;
  background-color: rgba(34, 66, 49, 0.8);
}
.parallax-contact .p-grid .p-col-6.col-green img {
  position: absolute;
  width: 200%;
  top: -80%;
  left: -55%;
  opacity: 0.3;
  transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
}

.parallax-contact .p-grid .p-col-12.col-black {
  position: relative;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.8);
}
.parallax-contact .p-grid .p-col-12.col-black img {
  position: absolute;
  height: 130%;
  top: -15%;
  left: 30%;
  opacity: 0.3;
  transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
}
.parallax-contact .p-grid .p-col-12:hover img {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
}

.parallax-contact .p-grid .p-col-6.col-black {
  position: relative;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.8);
}
.parallax-contact .p-grid .p-col-6.col-black img {
  position: absolute;
  width: 105%;
  top: -15%;
  left: -1%;
  opacity: 0.3;
  transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
}
.parallax-contact .p-grid .p-col-6:hover img {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
}
.parallax-contact .p-grid .box-division {
  position: relative;
  width: 60%;
  margin: 0 auto;
  padding: 50px;
}

.parallax-contact .p-grid .box-division p {
  color: #fff;
  font-size: 18px;
  font-weight: 300;
}
.parallax-contact .p-grid .box-division p b {
  font-weight: 500;
}
.parallax-contact .p-grid .box-division h6 {
  text-transform: uppercase;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 0px;
}

.box-form {
  width: 60%;
  margin: 50px auto 0 auto;
}
.box-form .p-formgrid {
  margin-bottom: 20px;
}
.box-form label {
 color: var(--primary-text-color);
  font-size: 16px;
  margin-bottom: 15px;
}
.box-form input, .box-form .ui-selectonemenu {
  height: 50px;
  border-radius: 0px;
  border-color: #D5D5D5;
  padding: 10px 20px;
}
.box-form textarea {
  border-radius: 0px;
  border-color: #D5D5D5;
  padding: 10px 20px;
}
.box-form .ui-selectonemenu-label {
  margin-bottom: 0px;
  font-size: 13px;
  color: #8b95a9;
  padding-left: 0px !important;
}
.box-form .ui-button-text.ui-c {
  padding: 15px 0 !important;
  font-size: 15px;
  letter-spacing: 2px;
}
.box-form button:hover {
  background-color: transparent;
  border: 1px solid #224231;
}
.box-form button:hover .ui-button-text.ui-c {
 color: var(--primary-text-color);
  background-color: transparent;
}

.tankyou-page {
  margin-top: 50px;
}
.tankyou-page .intro {
  width: 60%;
  margin: 0 auto;
  text-align: center;
}
.tankyou-page h1 {
  font-size: 45px;
  font-weight: 400;
}
.tankyou-page h2 {
  font-size: 30px;
  color: #454545;
  font-weight: 300;
}
.tankyou-page .thankyou-table {
  margin-top: 80px;
}
.tankyou-page .title-thankyou {
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 300;
  color: #808080;
  font-style: italic;
}
.tankyou-page .title-thankyou.decoration {
  padding-bottom: 10px;
  border-bottom: 1px solid #D5D5D5;
  margin-bottom: 40px;
}
.tankyou-page .header-table {
  background-color: #EBEBEB;
  margin-top: 20px;
}
.tankyou-page .header-table h3 {
  margin-bottom: 0px;
  font-size: 14px;
  font-weight: 300;
  color: #808080;
  padding: 0px 10px;
}
.tankyou-page .body-table .p-grid {
  margin: 0 !important;
  border-bottom: 1px solid #EBEBEB;
}
.tankyou-page .body-table h4 {
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 0px;
}
.tankyou-page .body-table h5 {
  font-size: 14px;
  margin: 8px 0 0 0;
}
.tankyou-page .payment-type {
  margin-top: 80px;
}
.tankyou-page .customer-information {
  margin-top: 80px;
}
.tankyou-page .customer-information h5 {
  font-size: 16px;
  font-style: italic;
  margin-bottom: 5px;
  margin-top: 0px;
}
.tankyou-page .customer-information p {
  margin-top: 40px;
}

.footer-page {
  position: relative;
  padding: 100px 100px 0 100px;
  background-color: var(--primary-color);
  overflow: hidden;
}

.serigrafia-footer {
  position: absolute;
  width: 600px;
  top: 50%;
  transform: translateY(-50%);
  right: -50px;
  z-index: 1;
}

.content-footer {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin-top: 100px;
  z-index: 2;
  gap: 30px;
  justify-content: space-evenly;
}

@media screen and (max-width: 1180px) {

.content-footer {
    justify-content: center;
}
}


.footer-menu {
  display: flex;
  flex-wrap: wrap;
  flex: 0 0 70%;
}

.colonna-menu-footer {
  flex: 0 0 25%;
}

.colonna-menu-footer.big {
  flex: 0 0 50%;
}

.career-content-wrapper {
    display: flex;
    gap: 20px;
}

.position-form {
    width: 50%;
}

.p-col-12.career-form {
    margin-bottom: 0px;
    padding-bottom: 0px;
    padding-top:0px;
}

.p-col-6.career-form {
    margin-bottom: 0px;
    padding-bottom: 0px;
    padding-top:0px;
}

.p-col-12.career-form.first {
    padding-top: 14px;
}

.p-field.field-input.career-form {
    margin-bottom: 0px;
}

@media screen and (max-width: 992px) {
    .position-form {
        width: 100%;
    }
    .career-content-wrapper {
        flex-direction: column;
    }
}

.footer-page .link-menu a {
  padding: 5px 0;
}

.sub-menu-footer ul {
  list-style: none;
  padding-left: 40px;
  margin: 0 0 2px 0;
}
.sub-menu-footer a {
  color: #fff;
  font-size: 14px;
}

.footer-newsletter {
  flex: 0 0 30%;
}

.sub-menu-footer .link-menu a {
  font-family: "Open-sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
}

.footer-newsletter h3 {
  color: #fff;
  font-size: 14px;
  text-align: center;
}

.field-newsletter {
  width: 100%;
  border-radius: 0px;
  height: 40px;
  padding: 5px 10px;
}

#mc_embed_signup {
  margin-top: 40px;
  margin-bottom: 70px;
}

.button-newsletter {
  width: 100%;
  padding: 10px 0;
  color: #fff;
  border: 1px solid #4E685A;
 background-color: var(--primary-color);
}

.grid-privacy {
  text-align: center;
}

.grid-privacy label {
  color: #fff;
}

.grid-privacy label a {
  color: #fff;
  font-weight: bold;
}

.box-social {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin-top: 20px;
}

.box-social .link-social img {
  height: 30px;
  width: auto;
}

.credits-footer {
  margin-top: 100px;
  margin-bottom: 50px;
  text-align: center;
}

.disclaimer {
 color: var(--primary-text-color);
  margin-bottom: 0px;
}

.p-credits {
  font-size: 14px;
 color: var(--primary-text-color);
}

.p-credits a {
  color: #fff;
}

.container-recover {
  margin: 50px auto 50px auto;
}

.content-404 {
  position: relative;
  padding: 50px 0;
}

.content-404 .box-404 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  z-index: 2;
}

.content-404 .box-404 p {
  font-size: 18px;
}
.content-404 .box-404 a {
  background-color: #fff;
  padding: 15px 20px;
  display: inline-block;
  text-transform: uppercase;
 color: var(--primary-text-color);
  box-shadow: 0px 0px 4px 3px rgba(0, 0, 0, 0.1);
}
.content-404 .box-404 a:hover {
  background-color: var(--primary-color);
  color: #fff;
  text-decoration: none;
}

.content-faq {
  margin-bottom: 80px;
}

.grid-faq {
  margin-bottom: 80px;
}

.box-faq {
  position: relative;
  padding: 30px 0;
  border-top: 1px solid #d5d5d5;
  border-bottom: 1px solid #d5d5d5;
  margin-top: -1px;
}
.box-faq i {
  font-size: 20px;
  font-weight: 400;
  position: absolute;
  right: 20px;
  top: 30px;
  z-index: -1;
  transition: all 550ms ease;
  -moz-transition: all 550ms ease;
  -webkit-transition: all 550ms ease;
}
.box-faq .head-faq {
  padding-right: 80px;
  cursor: pointer;
}
.box-faq .title-faq {
  font-size: 22px;
 color: var(--primary-text-color);
  font-weight: 500;
  margin-bottom: 0px;
  margin-top: 0px;
}
.box-faq .box-answer p {
  font-size: 16px;
}
.box-faq .box-answer {
  display: none;
  padding-top: 30px;
  padding-right: 80px;
}

.box-faq.active i {
  transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

/*MESSAGGE*/
body .ui-growl .ui-growl-item-container.ui-growl-info {
  background: #73c163 !important;
  border: 1px solid #2b6820 !important;
  color: #fff !important;
  border-width: 0 0 0 6px;
}

body .ui-growl .ui-growl-item-container.ui-growl-info .ui-growl-image {
  color: #2b6820 !important;
}

/*ACCOUNT*/
.content-account-page {
  display: flex;
  flex-wrap: wrap;
}

.sidebar-account-page {
  position: relative;
  flex: 0 0 20%;
  border-right: solid 1px #ebedef;
}
.sidebar-account-page .menu-account-page {
  background-color: var(--primary-color);
  padding: 50px 30px;
}

.sidebar-account-page .menu-account-page .box-account-page {
  opacity: 0.3;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #ffff;
  margin-top: -1px;
}
.sidebar-account-page .menu-account-page .box-account-page i {
  font-size: 25px;
  line-height: 20px;
  color: #fff;
  margin-right: 10px;
}

.sidebar-account-page .menu-account-page .box-account-page:hover {
  opacity: 1;
}
.sidebar-account-page .menu-account-page .box-account-page.active {
  opacity: 1;
}

.step-account-page {
  position: relative;
  flex: 0 0 80%;
}
.step-account-page .box-step-account {
  display: none;
  padding: 100px;
}
.step-account-page .box-step-account.active {
  display: block;
}
.step-account-page .ui-panel-titlebar {
  background: transparent !important;
  border: none !important;
  padding-left: 0px !important;
}

.step-account-page .ui-panel-content {
  padding: 0px !important;
  border: none !important;
}
.step-account-page .ui-panel-content td {
  padding: 0px;
}

.step-account-page .table-user-info {
  border-collapse: collapse;
  width: 100%;
}
.step-account-page .table-user-info th {
  background-color: #ebebeb;
  padding: 1rem 1rem;
  text-align: left;
  font-weight: 400;
  text-transform: capitalize;
}
.step-account-page .table-user-info th span {
  color: #808080;
  font-size: 12px;
}
.step-account-page .table-user-info #editDataUser {
  cursor: pointer;
  text-align: right;
  padding-right: 12px;
}
.step-account-page .table-user-info #editDataUser .pi-times {
  display: none;
}
.step-account-page .table-user-info #editDataUser.active .pi-pencil {
  display: none;
}
.step-account-page .table-user-info #editDataUser.active .pi-times {
  display: inline-block;
}
.step-account-page .content-payement {
  padding-top: 0px;
}


.form-edit-account {
  margin-top: 80px;
}

.form-edit-account input, .form-edit-account .input-invariable {
  margin-top: 10px;
  width: 90%;
}
.form-edit-account .disabled .ui-message {
  display: none;
}
.form-edit-account .field-input.disabled {
  pointer-events: none;
  margin-bottom: 0px !important;
}

.form-edit-account .btn {
  display: block;
  background-color: var(--primary-color);
  padding: 15px;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  font-size: 15px;
  letter-spacing: 3px;
}
.form-edit-account .btnUpdate {
  display: none;
  margin-top: 0px;
  padding: 5px;
  margin-bottom: 30px;
}

.order-table, .product-table {
  margin-top: 80px;
}

/*THANKYOU REGISTRATION*/
.box-confirm-registration {
  position: relative;
  width: 350px;
  margin: 50px auto 100px auto;
}
.box-confirm-registration .field-input {
  position: relative;
}
.box-confirm-registration .field-input .ui-inputfield {
  padding-left: 40px;
}


/*responsive*/
@media screen and (max-width: 1500px) {
  .content-cta {
    height: 100%;
  }

  .menu-open-content .column-menu-parent .menu-parent {
    padding: 100px 0 20px 20px;
  }
  .menu-open-content .column-menu-parent .menu-parent .box-link-menu a {
    font-size: 60px;
  }

  .messagge-scroll {
    flex: 0 0 70%;
  }

  .box-login {
    top: 51px;
    width: 21%;
  }
}
@media screen and (max-width: 1200px) {
  .container {
    width: 100%;
    padding: 0 20px;
  }

  .footer-page {
    padding: 100px 50px 0 50px;
  }

  .column-product {
    flex: 0 0 50%;
  }

  .box-image-compare img {
    width: 100%;
  }

  .messagge-scroll {
    flex: 0 0 65%;
  }

  .box-login {
    width: 26%;
  }

  .container.cart-empty {
    padding-bottom: 50px;
    padding-top: 50px;
  }
}
@media screen and (max-width: 991px) {

.title-decoration-slide{
display: none;
}
  .nav-content {
    display: none;
    font-size: 30px;
  }

  .pre-footer .p-col-3 {
    width: 50%;
  }

  .footer-menu {
    flex: 0 0 100%;
  }
  .footer-menu .colonna-menu-footer {
    flex: 0 0 33.333333%;
  }
  .footer-menu .colonna-menu-footer.big {
    flex: 0 0 33.333333%;
  }

  .footer-newsletter {
    flex: 0 0 100%;
  }

  .layout-main {
    padding-top: 0px;
  }

  .product-archive {
    flex-wrap: wrap;
  }

  .archive-sidebar {
    flex: 0 0 100%;
  }

  .content-product-archive {
    flex: 0 0 100%;
  }

  .body-filters {
    display: none;
  }

  .messagge-scroll {
    flex: 0 0 100%;
    height: 50px;
    border-bottom: 1px solid #224231;
  }

  .info-topbar {
    flex: 0 0 33.333333%;
    justify-content: center;
  }

  .menu-content {
    padding: 20px;
  }

  .box-login {
    top: 100px;
    width: 100%;
  }
  .box-login .close-account {
    text-align: right;
  }

  .title-decoration-slide {
    font-size: 60px;
    top: -70px;
    right: 41px;
  }

  .title-decoration-slide-2 {
    font-size: 45px;
    line-height: 45px;
    top: -20px;
    right: 50px;
  }

  .title-decoration-slide-3 {
    font-size: 30px;
    line-height: 50px;
    top: 20px;
    right: 50px;
  }

  .menu-burger {
    display: block;
  }

  .box-link-menu.parent-box-link a {
    font-size: 35px !important;
  }
  .box-link-menu.parent-box-link nu {
    font-size: 15px !important;
    margin-right: 15px !important;
  }

  .menu-open-content .column-menu-parent .menu-support {
    padding: 50px 0 0 50px;
  }

  .body-cart .cart-row {
    padding: 20px 20px 50px 20px;
  }

  .sidebar-account-page, .step-account-page {
    flex: 0 0 100%;
  }
}
@media screen and (max-width: 767px) {
  .title-decoration-slide {
    font-size: 70px;
    top: -80px;
  }

  .title-decoration-slide-2 {
    font-size: 55px;
    line-height: 55px;
    top: -20px;
    right: 65px;
  }

  .title-decoration-slide-3 {
    font-size: 35px;
    line-height: 35px;
    top: 35px;
    right: 68px;
  }

  .selettore-slide {
    bottom: -40px;
    background-color: var(--primary-color);
  }
  .selettore-slide .colonna-selettore-slide {
    padding: 10px 30px;
  }
  .selettore-slide .colonna-selettore-slide p {
    display: none;
  }
  .selettore-slide .colonna-selettore-slide h2 {
    font-size: 20px;
    margin-bottom: 0px;
  }
  .selettore-slide .colonna-selettore-slide:after {
    height: 5px;
    width: 100%;
    background-color: #f2bb05;
  }

  .slider-home {
    height: 300px;
  }

  .introslide .content-slide h2 {
    font-size: 20px;
  }

  .p-col-6 {
    width: 100%;
  }

  #scrittaAnimata {
    width: 180px;
    right: 15px;
    bottom: -8%;
  }

  .banner-vertical {
    height: 350px;
    width: 100%;
  }

  .p-col-5, .p-col-7, .p-col-4, .p-col-8, .p-col-3, .p-col-9 {
    width: 100%;
  }

  .parallax-about .p-col-8 {
    display: none;
  }

  .block-text.right {
    text-align: left;
  }

  .box-form {
    width: 100%;
  }

  .parallax-contact .p-grid .box-division {
    width: 100%;
  }

  .parallax-contact .p-grid .p-col-6 {
    padding: 50px 0;
  }

  .parallax-contact .p-grid .p-col-6.col-green img {
    top: -50%;
  }

  .total-product {
    padding-left: 10px;
  }

  .single-product-selector .box-selector {
    padding: 5px;
  }
  .single-product-selector .box-selector h4 {
    font-size: 16px;
  }

  .title-product {
    font-size: 38px;
  }

  .single-product-action button.info-button {
    width: 100% !important;
  }

  .list-specif-product {
    width: 100%;
  }

  .info-cart {
    padding-left: 0px;
  }

  .action-topbar i {
    font-size: 22px;
  }

  .top-compare img {
    width: 26px;
  }

  .box-registration {
    width: 100%;
  }

  .archive-sort {
    flex-wrap: wrap;
  }

  .introSlide .content-slide {
    top: 45%;
  }
  .introSlide .content-slide h2 {
    font-size: 25px;
  }
  .introSlide .content-slide .button-stroke.white {
    margin-top: 10px;
  }

  .button-stroke {
    padding: 10px 30px;
  }

  .content-box-login .p-col-8, .content-box-login .p-col-4 {
    width: 50%;
  }

  .search-open .container-search {
    width: 90%;
  }

  .search-open .container-search {
    padding: 10px 40px 10px 80px;
  }

  @media screen and (max-width: 767px) {
      .search-open .container-search {
          padding: 10px 10px 10px 90px;
      }
      span.ui-button-icon-left.ui-icon.ui-c.pi.pi-search {
          display: none;
      }
  }

  .search-open .container-search .helper-search {
    left: 14px;
  }
  .search-open .container-search .input-search {
    padding: 15px 0 15px 10px;
  }
  .search-open .container-search form button {
    right: -25px;
  }

  .menu-open-content {
    flex-wrap: wrap;
  }
  .menu-open-content .column-menu-parent, .menu-open-content .column-menu-child {
    flex: 0 0 100%;
  }

  .box-link-menu.parent-box-link {
    margin-bottom: 15px;
  }
  .box-link-menu.parent-box-link a {
    font-size: 35px !important;
  }

  .menu-open-content .column-menu-parent .menu-support {
    padding: 20px;
  }

  .menu-open-content .column-menu-parent .menu-parent {
    padding: 50px 0 20px 20px;
  }

  .head-filter .box-head-filter {
    flex-wrap: wrap;
  }

  .archive-compare .head-filter h3 {
    font-size: 14px;
    margin-top: 10px !important;
  }

  .head-label {
    font-size: 10px;
  }

  .cart-row .p-col-6 {
    width: 100%;
  }
  .cart-row .p-col-2 {
    width: 30%;
  }

  .body-cart .preview-cart {
    flex-wrap: wrap;
  }

  .preview-cart-image, .preview-cart-info {
    flex: 0 0 100% !important;
  }

  .preview-cart-info {
    text-align: center;
  }

  .footer-cart {
    text-align: center;
  }

  .checkout-cart {
    margin-top: 0px;
  }

  .checkout-cart-box {
    width: 100%;
  }

  .content-checkout {
    padding: 0 20px;
  }

  .table-chekout .p-col-4 {
    width: 33.3333%;
  }
  .table-chekout .p-col-2 {
    width: 16.6667%;
  }
  .table-chekout .p-col-3 {
    width: 25%;
  }
  .table-chekout .body-table-checkout h5 {
    font-size: 10px;
    margin-top: 0px;
  }

  .step-account-page .box-step-account {
    padding: 50px 20px;
  }
}
@media screen and (max-width: 567px) {
  .title-decoration-slide {
    font-size: 35px;
    top: -45px;
    right: 10px;
  }

  .title-decoration-slide-2 {
    font-size: 25px;
    line-height: 25px;
    top: -20px;
    right: 15px;
  }

  .title-decoration-slide-3 {
    font-size: 16px;
    line-height: 16px;
    top: 10px;
    right: 16px;
  }

  .slider-home {
    height: 230px;
  }

  .selettore-slide {
    bottom: -35px;
  }
  .selettore-slide .colonna-selettore-slide h2 {
    font-size: 15px;
  }

  .introslide .content-slide h2 {
    font-size: 18px;
  }

  .button-stroke {
    padding: 8px 35px;
    font-size: 10px;
  }

  .content-slide .button-stroke {
    margin-top: 10px;
  }

  .introslide .swiper-slide {
    background-position: left;
  }

  .layout-main {
    padding-top: 0px;
  }

  .title-page {
    font-size: 38px;
    line-height: 38px;
  }

  .subtitle-page {
    font-size: 25px;
  }

  .content-cta .title-cta {
    font-size: 40px;
  }

  .content-cta .subtitle-cta {
    font-size: 18px;
  }

  .pre-footer {
    padding: 50px 10px;
  }
  .pre-footer .p-col-3 {
    width: 100%;
  }
  .pre-footer .box-prefooter {
    padding: 10px;
  }

  .footer-menu .colonna-menu-footer {
    flex: 0 0 100%;
  }
  .footer-menu .colonna-menu-footer.big {
    flex: 0 0 100%;
  }

  .footer-newsletter {
    margin-top: 80px;
  }

  .footer-brand {
    width: 100%;
  }
  .footer-brand img {
    width: 100%;
  }

  .column-product {
    flex: 0 0 100%;
  }

  .logo-brand {
    width: 70px;
  }

  .total-product {
    flex: 0 0 33.3333333%;
  }

  .select-sort {
    flex: 0 0 30%;
    flex-direction: column;
    padding-left: 0px;
  }

  .sub-menu-footer {
    display: none;
  }

  .introSlide .content-slide h2 {
    font-size: 18px;
  }

  .menu-burger {
    width: 60px;
  }

  .menu-open-content-nav .box-link-menu-nav {
    margin-bottom: 12px;
  }
  .menu-open-content-nav .box-link-menu-nav a {
    font-size: 30px;
  }
  .menu-open-content-nav .box-link-menu-nav nu {
    font-size: 8px;
  }

  .menu-open-content-nav {
    padding: 50px;
  }

  .product-compare .head-filter h3 {
    display: none;
  }
  .product-compare .head-filter i {
    font-size: 20px;
    margin-right: 0px;
  }

  .box-info-compare .value-label {
    font-size: 12px;
  }

  .head-label {
    padding: 0 0 0 2px;
  }

  .archive-sort h3 {
    font-size: 14px;
    padding-bottom: 5px;
  }

  .body-cart .preview-cart .preview-cart-info h2, .body-cart .preview-cart .preview-cart-info h2 a {
    font-size: 18px;
  }

  .body-cart .preview-cart .preview-cart-info h2 {
    margin-bottom: 5px;
  }

  .body-cart .box-quantity {
    width: 45px;
  }
  .body-cart .box-quantity .select-quantity input {
    height: 45px;
    padding-right: 5px !important;
  }

  .body-cart .total-price h4, .body-cart .sub-price h4 {
    font-size: 14px;
  }

  .content-checkout {
    padding: 0px;
  }

  .content-payement .container {
    padding: 0px !important;
  }

  .content-payement .ui-accordion .ui-accordion-content {
    padding: 0px !important;
  }
  .content-payement .ui-accordion .ui-accordion-content td, .content-payement .ui-accordion .ui-accordion-content th {
    padding: 5px;
  }
  .content-payement .ui-accordion .ui-accordion-content td {
    font-size: 8px;
  }
  .content-payement .ui-accordion .ui-accordion-content td i {
    font-size: 12px;
  }
  .content-payement .ui-accordion .ui-accordion-content th span {
    font-size: 10px;
  }

  .step-account-page .box-step-account {
    padding: 50px 10px;
  }

  .step-account-page .table-user-info th {
    padding: 5px;
  }
  .step-account-page .table-user-info th span {
    font-size: 10px;
  }
  .step-account-page .table-user-info td span {
    //font-size: 9px;
  }
  .step-account-page .table-user-info td input {
    font-size: 18px;
  }

  .box-step-account .content-payement th {
    padding: 5px;
  }
  .box-step-account .content-payement th span {
    font-size: 10px;
  }
  .box-step-account .content-payement td {
    padding: 5px;
    padding-top: 0px;
    padding-bottom: 0px;
    font-size: 10px;
  }

  #addressDlg {
    width: 90% !important;
  }

  .order-table th {
    padding: 5px !important;
  }
  .order-table th span {
    font-size: 10px;
  }
  .order-table td {
    padding: 5px !important;
    font-size: 10px !important;
  }

  .product-table th {
    padding: 5px !important;
  }
  .product-table th span {
    font-size: 10px;
  }
  .product-table td {
    padding: 5px !important;
    font-size: 10px !important;
  }
}


@media screen and (max-width: 500px) {
   .slider-home {
       height: 180px;
   }
   .button-stroke {
       margin-top: 5px;
   }
   .home-categories {
        flex-direction: column;
   }
   .home-categories-item {
   margin-top: 30px;
        width: 100% !Important;
   }

   .p-col-4.home-categories-item {
       margin-left: auto;
       margin-right: auto;
   }
   .banner-home.banner-horizontal {
       height: 228px;
   }
   .p-col-6.home-categories-item {
       margin: 0px;
   }
   .content-cta {
       padding: 80px 0;
   }
   .footer-page {
       padding: 20px !Important;
   }
   .p-col-4.black-ground.home-categories-item {
       padding: 50px 0 !important;
       margin: 0px !important;
   }
   .parallax-about {
       height: auto !important;
   }
   .ui-fluid.p-formgrid.p-grid {
       display: flow;
   }
   .single-product-selector {
       display: flex;
       margin-bottom: 20px;
       flex-wrap: nowrap;
       overflow: scroll;
   }
   .slideGalleryProduct {
       width: 100%;
       padding: 0px !important;
       margin: 0px !important;
   }
    .image-other {
       width: 33% !important;
       margin-right: 5px !important;
    }

    .slideGalleryProduct .swiper-slide img {
        height: 100px;
    }
    .list-specif-product {
        padding: 20px 0;
    }
    .featured-image {
        margin-bottom: 20px !important;
    }
    .image-product-loop {
        text-align: center;
        padding: 5px;
    }
    .info-product-loop h5.product-sku {
        min-height: 0px !important;
    }
    .info-product-loop {
        height: auto !important;
        min-height: auto;
    }
}
.spacer-compare-sidebar, .box-image-compare {
    min-height: 550px;
}

@media screen and (max-width: 1000px) {
 .p-col-4.filtro-ricerca {
        height: 100%;
        width: 100%;
        position: relative;
    }
    .p-grid.dealer-locator {
        display: flex !important;
        flex-direction: column-reverse !important;
    }

    .dealer-block-scroll {
        width: 90% !Important;
    }

    .grid-faq .p-col-3 {
        width: 100%;
    }
    .grid-faq .p-col-9 {
        width: 100%;
    }
}



@media screen and (max-width: 767px) {
   section.section.pad-top {
    padding-top: 5px;
    margin-top: 5px;
   }
}


@media (max-width: 600px) {

    body .ui-widget + .ui-message {
        margin: 0 0 0 0.5rem;
        position: absolute;
    }

    .table-user-info, .table-user-info thead, .table-user-info tbody, .table-user-info th, .table-user-info td, .table-user-info tr {
        display: block;
    }
    .table-row{
        padding:5px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .table-user-info thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .table-user-info tr {
        border: 1px solid #ccc;
        margin-bottom: 5px;
    }

    .table-user-info td {
        border: none;
        position: relative;
        padding-left: 5% !important;
        text-align: right;
        padding-top: 20px !important;
    }

    .table-user-info td:before {
        position: absolute;
        top: 6px;
        left: 6px;
        width: auto;
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;
        font-weight: bold;
        content: attr(data-title); /* Add data-title attribute in your HTML */
        font-size: 16px;
    }

  .step-account-page .table-user-info td input {
    font-size: 24px;
    text-align: right;
  }

    .form-edit-account .disabled input, .form-edit-account .input-invariable {
        padding-top: 4px;
        line-height: normal;
        height: auto;
    }

    .form-edit-account input, .form-edit-account .input-invariable {
        padding-top: 4px;
        line-height: normal;
        height: auto;
    }

    .add-new {
        margin-right: 2px;
        margin-top: 20px;
    }
}

.user-table-text {
  font-family: var(--gun-font);
  font-size: 16px;
  font-weight: bold;
  color: var(--primary-text-color);
  border-color: #fff !important;
  margin-top: 10px;
  padding-left: 20px;
}


.add-my-product-button {
    float: right;
    bottom: 20px;
}

@media (max-width: 600px) {
    .add-my-product-button {
        float: right;
        top: -40px;
    }
}
.search-subtitle {
  width: 300px;
  height: 70px; /* Altezza fissa */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  margin: 0 auto;
}

.search-subtitle p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* Mostra massimo 2 righe */
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}

.search-subtitle::after {
  content: "";
  display: block;
  flex-grow: 1; /* Riempie lo spazio rimanente */
}

.price-product-loop {
  height: 24px; /* Altezza fissa */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.price-product-loop p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1; /* Limita il prezzo a una sola riga */
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}

.price-product-loop::after {
  content: "";
  display: block;
  flex-grow: 1; /* Riempie lo spazio rimanente */
}
