a {
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

@media (prefers-reduced-motion: reduce) {
  a {
    -webkit-transition: none;
    transition: none;
  }
}

/* a:hover, a:focus, a:active {
  outline: none !important;
  color: var(--ziston-theme-color);
  text-decoration: none;
} */

input:hover, input:focus, input:active, select:hover, select:focus, select:active, textarea:hover, textarea:focus, textarea:active {
  outline: none !important;
}

label {
  font-weight: 700;
  color: var(--ziston-theme-color-second);
}

img {
  border: 0;
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

.video-responsive {
  height: 0;
  padding-top: 0;
  padding-bottom: 56.25%;
  position: relative;
  overflow: hidden;
}

.video-responsive embed, .video-responsive iframe, .video-responsive object, .video-responsive video {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}

h1, h2, h4, h5, h6 {
  margin-top: 15px;
  margin-bottom: 20px;
}

.body-page input[type="text"],
.body-page input[type="tel"],
.body-page input[type="password"],
.body-page input[type="email"],
.body-page textarea, .body-page select {
  background-color: #fff;
  border: 1px solid #dee2e6;
  padding: 0 15px;
  border-radius: 4px;
  color: #797F89;
  line-height: 50px;
}

.body-page input[type="text"]:focus, .body-page input[type="text"]:active, .body-page input[type="text"]:hover,
.body-page input[type="tel"]:focus,
.body-page input[type="tel"]:active,
.body-page input[type="tel"]:hover,
.body-page input[type="password"]:focus,
.body-page input[type="password"]:active,
.body-page input[type="password"]:hover,
.body-page input[type="email"]:focus,
.body-page input[type="email"]:active,
.body-page input[type="email"]:hover,
.body-page textarea:focus,
.body-page textarea:active,
.body-page textarea:hover, .body-page select:focus, .body-page select:active, .body-page select:hover {
  outline: none;
}

.label {
  color: #000 !important;
}

.list-menu ul li {
  list-style: none;
  padding: 15px 2px;
  font-size: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.list-menu ul li:last-child {
  border-bottom: none;
}

ul {
  margin: 0;
  padding-left: 30px;
}

ul ul {
  padding-left: 20px;
}

ul li {
  list-style: inherit;
}

ul li i {
  margin-right: 3px;
  font-size: 16px;
  min-width: 20px;
  text-align: center;
}

.item-list ul li {
  margin-left: 0;
}

ul.menu {
  padding: 0;
}

ul.menu > li {
  position: relative;
  padding: 4px 0 6px;
  list-style-type: none;
}

ul.menu > li > a {
  padding-left: 0;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  position: relative;
  font-size: 16px;
  font-weight: 500;
}

@media (prefers-reduced-motion: reduce) {
  ul.menu > li > a {
    -webkit-transition: none;
    transition: none;
  }
}

ul.menu > li > a:hover, ul.menu > li > a:active, ul.menu > li > a:focus {
  color: var(--ziston-theme-color);
}

ul.features-list {
  margin: 10px 0;
  padding-left: 0;
}

ul.features-list > li {
  padding-left: 25px;
  position: relative;
  list-style: none;
  margin-bottom: 10px;
  font-family: var(--ziston-heading-font-family);
  color: #000;
  font-weight: 400;
  font-size: 16px;
}

ul.features-list > li:after {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--ziston-theme-color);
  position: absolute;
  top: 50%;
  margin-top: -3px;
  left: 2px;
  z-index: 1;
}

ul.inline > li {
  float: left;
  margin-left: 5px;
}

table {
  width: 100%;
  margin-bottom: 20px;
  border: 1px solid #dee2e6;
}

table > thead > tr > th,
table > thead > tr > td,
table > tbody > tr > th,
table > tbody > tr > td,
table > tfoot > tr > th,
table > tfoot > tr > td {
  border-color: #dee2e6;
  border-width: 1px 1px 1px 0;
  border-style: solid;
}

table > thead > tr > th,
table > thead > tr > td {
  border-bottom-width: 2px;
}

.no-padding {
  padding: 0 !important;
}

a.disable {
  pointer-events: none;
  cursor: default;
}

/************************* Pagination ************************/
.pager {
  text-align: center;
}

.pager ul.pager__items {
  display: inline-block;
  margin: 30px 0 30px;
  padding: 0;
}

.pager ul.pager__items > li {
  list-style-type: none;
  float: left;
  margin-right: 10px;
  font-family: var(--ziston-heading-font-family);
  font-size: 14px;
}

.pager ul.pager__items > li a {
  border: 1px solid #dee2e6;
  font-weight: 700;
  display: inline-block;
  line-height: 34px;
  margin: 0 1px;
  text-align: center;
  margin-right: 10px;
  padding: 0 15px;
  border-radius: 4px;
  text-transform: uppercase;
  background: #fff;
}

.pager ul.pager__items > li a:last-child {
  margin-right: 0;
}

.pager ul.pager__items > li a:hover {
  background: var(--ziston-theme-color);
  color: #fff;
  border-color: var(--ziston-theme-color);
}

.pager ul.pager__items > li a:hover:after {
  color: #fff;
}

.pager ul.pager__items > li.pager__item--next {
  font-size: 12px;
}

.pager ul.pager__items > li.pager__item--last {
  font-size: 12px;
}

.pager ul.pager__items > li.is-active a {
  background: var(--ziston-theme-color);
  color: #fff;
  border-color: var(--ziston-theme-color);
}

.pager ul.pager__items > li.is-active a:after {
  color: #fff;
}

.quick-pagination .pager {
  text-align: center;
  margin-top: 20px;
}

.quick-pagination .pager .pager__item--first, .quick-pagination .pager .pager__item--last {
  display: none;
}

.quick-pagination .pager .pager__item--previous, .quick-pagination .pager .pager__item--next {
  position: relative;
}

.quick-pagination .pager .pager__item--previous a, .quick-pagination .pager .pager__item--next a {
  text-indent: -99999px;
  position: relative;
}

.quick-pagination .pager .pager__item--previous a:after, .quick-pagination .pager .pager__item--next a:after {
  content: '\f061';
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  text-align: center;
  color: #000;
  text-indent: 0;
  font-size: 11px;
}

.quick-pagination .pager .pager__item--previous.pager__item--previous a:after, .quick-pagination .pager .pager__item--next.pager__item--previous a:after {
  content: '\f060';
}

.breadcrumb-content-inner {
  /*margin-bottom: 60px;*/
}


.breadcrumb-content-inner .breadcrumb-content-main {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  z-index: 11;
  padding: 40px 15px 40px;
}

@media (max-width: 1024.98px) {
  .breadcrumb-content-inner .breadcrumb-content-main {
    /*padding: 10px 15px; */
  }
}

.breadcrumb-content-inner .gva-block-breadcrumb .page-title {
  font-size: 42px;
  top: 0;
  left: 0;
  width: 100%;
  text-align: left;
  line-height: 1.1;
  position: relative;
  color: #fff;
  font-weight: 700;
}

@media (max-width: 991.98px) {
  .breadcrumb-content-inner .gva-block-breadcrumb .page-title {
    font-size: 32px;
  }
}

.breadcrumb-content-inner .gva-block-breadcrumb .breadcrumb-links {
  display: inline-block;
  background: #fff;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 11;
  padding: 15px 20px 10px;
}

.breadcrumb-content-inner .gva-block-breadcrumb .breadcrumb-links nav.breadcrumb {
  background: none;
  margin: 0;
}

.breadcrumb-content-inner .gva-block-breadcrumb .breadcrumb-links nav.breadcrumb ol {
  list-style: none;
  margin-bottom: 0 !important;
  padding: 0;
}

.breadcrumb-content-inner .gva-block-breadcrumb .breadcrumb-links nav.breadcrumb ol::after {
  display: block;
  clear: both;
  content: "";
}

.breadcrumb-content-inner .gva-block-breadcrumb .breadcrumb-links nav.breadcrumb ol li {
  float: left;
  font-size: 14px;
  color: #797F89;
  font-weight: 500;
}

.breadcrumb-content-inner .gva-block-breadcrumb .breadcrumb-links nav.breadcrumb ol li a {
  color: #797F89;
}

.breadcrumb-content-inner .gva-block-breadcrumb .breadcrumb-links nav.breadcrumb ol li a:hover {
  color: var(--ziston-theme-color);
}

.breadcrumb-content-inner .gva-block-breadcrumb .breadcrumb-links nav.breadcrumb ol li span {
  padding: 0 5px 6px 0px;
}

@media (max-width: 767.98px) {
  .breadcrumb-content-inner .breadcrumb-content-main {
    padding-bottom: 82px;
  }
  .breadcrumb-content-inner .gva-block-breadcrumb .breadcrumb-links {
    /*left: 15px;*/
    right: 15px;
    max-width: calc(100% - 30px);
    overflow-x: auto;
    white-space: nowrap;
  }
  .breadcrumb-content-inner .gva-block-breadcrumb .breadcrumb-links nav.breadcrumb ol {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .breadcrumb-content-inner .gva-block-breadcrumb .breadcrumb-links nav.breadcrumb ol li {
    float: none;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
}

.breadcrumb-content-inner .page-title {
  position: relative;
  padding-left: 15px;
}

.breadcrumb-content-inner .page-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  
  width: 3px;
  height: 20px;
  opacity: 0.8;
  background-color: var(--ziston-theme-color); /* ή ό,τι χρώμα θες */
}

.breadcrumb-content-inner .gva-block-breadcrumb.text-white .page-title, .breadcrumb-content-inner .gva-block-breadcrumb.text-light .page-title {
  color: #fff;
  font-size: 30px;
}

pre {
  border-radius: 0 !important;
  margin: 30px 0;
}

.drupal-message {
  background: #CDCDCD;
  max-width: 1170px;
  margin: 0 auto;
  position: fixed;
  z-index: 99;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  max-height: 50%;
  overflow: auto;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  -webkit-transition-delay: 4px;
  transition-delay: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .drupal-message {
    -webkit-transition: none;
    transition: none;
  }
}

.drupal-message .messages__wrapper {
  padding: 2px 30px 2px 15px;
}

.text-light h1, .text-light h2, .text-light h3, .text-light h4, .text-light h5, .text-light h6 {
  color: #fff;
}

.hidden {
  display: none !important;
}

.pull-left {
  float: left;
}

.pull-right {
  float: right;
}

.row.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.row.no-gutters > [class^="col-"],
.row.no-gutters > [class*=" col-"] {
  padding-right: 0;
  padding-left: 0;
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .d-small-none {
    display: none !important;
  }
}

@media (max-width: 325px) {
  .col-6 {
    width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 510px) {
  .col-2, .col-3, .col-4, .col-5 {
    width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}


html {
  overflow-x: hidden !important;
  font-size: 16px;
}

body {
  overflow: hidden !important;
  position: relative;
}

body.boxed {
  background-color: #EAF1F7;
}

body.boxed div.gva-body-wrapper {
  background: #fff;
  max-width: 1440px;
  margin: 0 auto;
  -webkit-box-shadow: 0px 2px 6px 2px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 2px 6px 2px rgba(0, 0, 0, 0.05);
  position: relative;
}

body .body-page {
  background-color: #fff;
}

body.logged-in.toolbar-horizontal .header-1 {
  margin-top: 39px;
}

body.bg-dark {
  background: #EFF1F2;
}

body.bg-dark .gva-body-page {
  background: #EFF1F2;
}

body.layout-with-sidebar .main-page {
  padding: 25px 0 60px;
}

.region-main-page-content.layout-with-sidebar {
  padding: 35px 0 50px;
}

#page-main-content {
  min-height: 360px;
}

@media (max-width: 575.98px) {
  #page-main-content {
    min-height: 100px;
  }
}

.main-menu .area-main-menu .area-inner .block {
  margin-bottom: 0;
}

.sidebar {
  position: relative;
}

#footer {
  color: #abafb5;
  background: url("../images/bg-footer.png") no-repeat center bottom #161C26;
}

#footer a {
  color: #abafb5;
}

#footer a:hover, #footer a:focus {
  color: var(--ziston-theme-color);
}

#footer .before-footer {
  padding: 0;
}

#footer .footer-center {
  padding: 100px 0 10px;
}

@media (max-width: 991.98px) {
  #footer .footer-center {
    padding: 80px 0 10px;
  }
}

@media (max-width: 767.98px) {
  #footer .footer-center {
    padding: 60px 0 20px;
  }
}

#footer .block {
  padding-bottom: 0;
  margin-bottom: 0;
}

#footer .block .block-title span {
  color: #fff !important;
}

#footer .block .block-title span:after, #footer .block .block-title span:before {
  display: none;
}

#footer .copyright {
  font-weight: 500;
  background: #fafafa;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #585555;
  /*padding: 30px 0;*/
}

@media (max-width: 991.98px) {
  #footer .footer-column {
    margin-bottom: 35px;
  }
}

.topbar {
  background: #fff;
  /* padding: 5px 0; */
  font-size: 14px;
  position: relative;
  z-index: 11;
}

.topbar ul {
  margin: 0 !important;
}

.topbar .block {
  margin: 0 !important;
}

.topbar .topbar-wrapper {
  max-width: 1200px;
  /* padding: 0 15px; */
  margin: 0 auto;
}

.topbar .topbar-wrapper .topbar-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: var(--topbar-color);
  align-items: center;
}

.topbar .topbar-wrapper .topbar-content a {
  color: var(--topbar-color);
}

.topbar .topbar-wrapper .topbar-content a:hover {
  color: var(--ziston-theme-color);
}

@media (max-width: 575px) {
  .topbar .topbar-wrapper .topbar-content .topbar-left {
    display: none;
  }
}

.topbar .topbar-wrapper .topbar-content .topbar-left > .content-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.topbar .topbar-wrapper .topbar-content .topbar-right {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 280px;
  flex: 0 0 280px;
}

@media (max-width: 575px) {
  .topbar .topbar-wrapper .topbar-content .topbar-right {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}

.topbar .topbar-wrapper .topbar-content .topbar-right > .content-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.topbar .topbar-wrapper .topbar-content .topbar-right > .content-inner .search-region {
  margin-right: 14px;
}


.gva-user-region {
  line-height: 1;
}

.gva-user-region .icon {
  font-size: 14px;
  color: #fff;
  width: 32px;
  height: 32px;
  background: var(--ziston-theme-color);
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
  text-align: center;
  line-height: 32px;
}

.gva-user-region .icon img {
  width: 100%;
}

.gva-user-region .icon:hover {
  color: #fff !important;
  cursor: pointer;
}

.gva-user-region .user-content {
  display: none;
  width: 190px;
  position: absolute;
  top: 43px;
  right: 0;
  margin-top: -3px;
  z-index: 99;
  background: #fff;
  padding: 15px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 0 0 4px 4px;
}

.gva-user-region .user-content .link-user {
  text-transform: capitalize;
  color: var(--ziston-theme-color);
}

.gva-user-region .user-content .account-message {
  border-bottom: 1px solid #dee2e6;
  padding-bottom: 5px;
  margin-bottom: 5px;
}

.gva-user-region .user-content .user-links {
  padding: 0;
  list-style-type: none;
}

.gva-user-region .user-content .user-links a {
  color: #797F89;
  font-size: 14px;
  display: inline-block;
  padding: 8px 0;
}

.gva-user-region .user-content .user-links a:hover {
  color: var(--ziston-theme-color);
}

.gva-user-region.show .user-content {
  display: block;
}

.language-box .links > li {
  margin-right: 10px;
  opacity: 0.6;
  filter: alpha(opacity=60);
  line-height: 1;
  margin-top: 5px;
  float: right;
}

.language-box .links > li.is-active {
  opacity: 1;
  filter: alpha(opacity=100);
}

.gva-search-region .icon {
  font-size: 18px;
  color: #000;
}

.gva-search-region .icon:hover {
  cursor: pointer;
}

.gva-search-region .search-content {
  display: none;
  width: 320px;
  position: absolute;
  top: 43px;
  right: 0;
  margin-top: -1px;
  z-index: 99;
  background: #fff;
  padding: 20px;
  -webkit-box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  border: 1px solid #dee2e6;
}

.gva-search-region .search-content form.search-block-form {
  padding-right: 100px;
  height: 36px;
  position: relative;
}

.gva-search-region .search-content form.search-block-form .form-item-keys {
  width: 100%;
}

.gva-search-region .search-content form.search-block-form input#edit-keys {
  height: 35px;
  padding: 5px;
  border: 1px solid #dee2e6;
  background: none;
  width: 100%;
  border-radius: 4px;
}

.gva-search-region .search-content form.search-block-form input[id*="edit-submit"] {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  height: 35px;
  line-height: 35px;
  padding: 0 2px;
  background: var(--ziston-theme-color);
  color: #fff;
  border: none;
  font-size: 12px;
  width: 90px;
  font-weight: 500;
  font-family: var(--ziston-heading-font-family);
  letter-spacing: 2px;
}

.gva-search-region .search-content form.search-block-form input[id*="edit-submit"]:hover {
  cursor: pointer;
}

.gva-search-region .search-content #edit-actions {
  margin: 0 !important;
  padding: 0 !important;
}

.gva-search-region.show .search-content {
  display: block;
}

body.logged-in.toolbar-horizontal .gva-quick-side {
  padding-top: 90px;
}

.header-default {
  position: relative;
  background: #fff;
  z-index: 99;
  -webkit-box-shadow: 0 0 10px 4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px 4px rgba(0, 0, 0, 0.1);
}

.header-default .topbar {
  border-bottom: 1px solid #dee2e6;
}

@media (max-width: 1024px) {
  .header-default .header-content-layout {
    max-width: 100%;
  }
}

.header-default .header-main .header-content-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-default .header-main .header-content-inner .branding {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 200px;
  flex: 0 0 200px;
  width: 200px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-default .header-main .header-content-inner .branding .site-branding-logo {
  /* padding: 15px 0 15px; 
  display: inline-block;*/
  height: auto;
}

.header-default .header-main .header-content-inner .branding .site-branding-logo img {
  max-width: 300px;
}

.header-default .header-main .header-content-inner .header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(100% - 200px);
  flex: 0 0 calc(100% - 200px);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}

.header-default .header-main .header-content-inner .header-inner .main-menu {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}

.header-default .header-main .header-content-inner .header-inner .main-menu.has-header-button {
  padding-right: 180px;
}

.header-default .header-main .header-content-inner .header-inner .header-button {
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -23px;
  z-index: 1;
}

.header-default .header-main .header-content-inner .header-inner .header-button a {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--ziston-heading-font-family);
  background: var(--ziston-theme-color);
  border-radius: 4px;
  padding: 12px 22px;
  font-weight: 500;
  color: #fff;
}

.header-default .header-main .header-content-inner .header-inner .header-button a:hover {
  opacity: 0.8;
}

.header-default .main-menu-inner {
  float: left;
}

.header-default .stuck {
  background: #fff;
}

header.header-1 {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 1024.98px) {
  header.header-1 {
    position: relative;
    background: #000;
  }
}

header.header-1 .topbar {
  background: #000;
  border-bottom: 0;
}

@media (max-width: 1024px) {
  header.header-1 .topbar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
}

@media (max-width: 1024px) {
  header.header-1 .header-content-layout {
    max-width: 100%;
  }
}

header.header-1 .header-main-inner .branding .logo-default {
  display: none;
}

header.header-1 .header-main-inner .branding .logo-default.logo-white {
  display: block !important;
  visibility: visible;
}

header.header-1 .header-main-inner .navigation .gva_menu > li > a {
  color: #fff;
}

header.header-1 .header-main-inner .navigation .gva_menu > li > .gva-nolink {
  color: #fff;
}

header.header-1 .header-main-inner .navigation .gva_menu > li > a:hover {
  color: var(--ziston-theme-color);
}

header.header-1 .header-main-inner .navigation .gva_menu > li > .gva-nolink:hover {
  color: var(--ziston-theme-color);
}

header.header-1 .menu-bar span {
  background: #fff;
}

header.header-1 .gva-search-region .icon {
  color: #fff !important;
}

header.header-1 .stuck {
  background: #000 !important;
}

header.header-2 {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 1024px) {
  header.header-2 {
    background: #fff;
    position: relative;
  }
}

header.header-2 .topbar {
  background: #000;
  border-bottom: 0;
}

header.header-2 .gva-search-region .icon {
  color: #fff !important;
}

.gv-sticky-menu {
  position: static;
  top: -75px;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

@media (prefers-reduced-motion: reduce) {
  .gv-sticky-menu {
    -webkit-transition: none;
    transition: none;
  }
}

.stuck {
  /* position: fixed !important; */
  top: 0;
  left: 0;
  z-index: 99 !important;
  width: 100%;
  -webkit-box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

@media (prefers-reduced-motion: reduce) {
  .stuck {
    -webkit-transition: none;
    transition: none;
  }
}

@media (min-width: 1025px) {
  .sticky-is-hidden .stuck {
    top: -200px;
  }
  .sticky-is-show .stuck {
    -webkit-box-shadow: 0 1px 12px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 12px 0 rgba(0, 0, 0, 0.1);
    top: 0;
  }
}

body.hidden-title .node--view-mode-full .header-title {
  display: none !important;
}

/* ----- Maintenance page ----- */
body.maintenance-page {
  background-color: #fff;
  color: #000;
}

.maintenance-page #page-wrapper {
  background: #fff;
  margin-left: auto;
  margin-right: auto;
  min-width: 0;
  min-height: 0;
  border: 1px solid #ddd;
  margin-top: 40px;
}

.maintenance-page #page {
  margin: 10px;
}

.maintenance-page #main-wrapper {
  min-height: inherit;
}

.maintenance-page #header {
  width: auto;
}

.maintenance-page #main {
  margin: 0;
}

.maintenance-page .content .section {
  padding: 0 0 0 10px;
  /* LTR */
}

[dir="rtl"] .maintenance-page .content .section {
  padding-left: 0;
  padding-right: 10px;
}

.maintenance-page #header {
  background-color: #fff;
  background-image: none;
}

.maintenance-page .site-branding-text {
  margin-bottom: 50px;
  margin-left: 0;
  /* LTR */
  padding-top: 20px;
  font-size: 90%;
}

[dir="rtl"] .maintenance-page .site-branding-text {
  margin-right: 0;
}

.maintenance-page .site-branding-text,
.maintenance-page .site-branding-text a,
.maintenance-page .site-branding-text a:hover,
.maintenance-page .site-branding-text a:focus {
  color: #777;
}

.maintenance-page .page-title {
  line-height: 1em;
  margin-top: 0;
}

@media all and (min-width: 800px) {
  .maintenance-page #page-wrapper {
    width: 800px;
  }
  .maintenance-page #header div.section,
  .maintenance-page #main {
    width: 700px;
  }
}

@media all and (min-width: 600px) {
  .maintenance-page #page {
    margin: 20px 40px 40px;
  }
}

.page-notfound {
  text-align: center;
  padding: 150px 0;
  background: #f6f6f6;
}

@media (max-width: 575.98px) {
  .page-notfound {
    padding: 50px 0;
  }
}

.page-notfound header {
  display: none !important;
}

.page-notfound .big-title {
  font-size: 200px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
  line-height: 1;
}

@media (max-width: 575.98px) {
  .page-notfound .big-title {
    font-size: 90px;
  }
}

.page-notfound .sub-title {
  color: #999999;
  padding: 30px 0;
}

.page-notfound .content {
  color: #666666;
  font-size: 16px;
  max-width: 450px;
  margin: 0 auto;
  line-height: 30px;
}

@media (max-width: 575.98px) {
  .page-notfound .content {
    padding: 0 20px;
  }
}

.page-notfound .action {
  text-align: center;
  margin-top: 30px;
}

.page-notfound .action a {
  font-size: 16px;
  color: var(--ziston-theme-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-notfound .action a:hover {
  color: #000;
}

.view-page {
  margin-bottom: 50px;
}

.portfolio-single {
  margin-bottom: 0 !important;
  padding-bottom: 0;
}

.portfolio-single .portfolio-images .owl-nav .owl-prev {
  left: 20px !important;
}

.portfolio-single .portfolio-images .owl-nav .owl-next {
  right: 20px !important;
}

.portfolio-single .portfolio-images .owl-dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
}

.portfolio-single .post-title {
  font-size: 30px;
  padding: 0;
  margin: 0 !important;
}

@media (max-width: 767.98px) {
  .portfolio-single .post-title {
    font-size: 20px;
  }
}

.portfolio-single .post-meta {
  margin: 10px 0 30px !important;
}

.portfolio-single .post-meta .line {
  width: 10px;
  height: 2px;
  background: var(--ziston-theme-color);
  margin: 0 10px 0 4px;
  display: inline-block;
  position: relative;
  top: -3px;
}

.portfolio-single .portfolio-informations {
  margin-bottom: 15px;
}

.portfolio-single .portfolio-informations .item-information {
  border-bottom: 1px solid #dee2e6;
  padding: 10px 0;
  line-height: 24px;
}

.portfolio-single .portfolio-informations .item-information span {
  display: block;
  font-size: 16px;
}

.portfolio-single .portfolio-informations .item-information span:first-child {
  font-weight: 700;
  min-width: 120px;
  display: inline-block;
  color: var(--ziston-theme-color-second);
  font-family: var(--ziston-heading-font-family);
}

.portfolio-single .post-content ul {
  padding-left: 20px;
  margin-top: 15px;
}

.team-single-page .team-name {
  margin-bottom: 30px;
}

.team-single-page .team-name .name {
  font-size: 30px;
  font-weight: 700;
  color: #000;
  line-height: 42px;
}

.team-single-page .team-name .job {
  font-size: 12px;
  color: #999999;
}

.team-single-page .team-name .line {
  text-align: center;
  float: left;
}

.team-single-page .team-name .line span {
  width: 30px;
  height: 5px;
  border-radius: 10px;
  display: inline-block;
  margin: 0 5px;
}

.team-single-page .team-name .line span.one {
  background: #5EB4E7;
  margin-left: 0;
}

.team-single-page .team-name .line span.second {
  background: #F8C44F;
}

.team-single-page .team-name .line span.three {
  background: #F49626;
  margin-right: 0;
}

.team-single-page .socials {
  margin-top: 10px;
}

.team-single-page .heading {
  font-size: 18px;
  font-weight: 700;
  color: #000;
}

.team-single-page .team-contact {
  margin-bottom: 25px;
}

.team-single-page .team-contact .content-inner, .team-single-page .team-education .content-inner {
  color: #999999;
  font-size: 13px;
  line-height: 28px;
}

.team-single-page .team-education .field__item {
  padding-left: 20px;
  position: relative;
}

.team-single-page .team-education .field__item:after {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--ziston-theme-color);
  position: absolute;
  top: 8px;
  left: 0;
  border-radius: 50%;
  z-index: 1;
}

.team-single-page .team-info {
  margin-bottom: 30px !important;
}

.team-single-page .team-quote {
  font-size: 16px;
  color: #999999;
  margin-top: 20px;
  padding-left: 50px;
  position: relative;
}

.team-single-page .team-quote:after {
  font-family: "Font Awesome 5 Free";
  content: "\f10d";
  left: 0;
  top: 0;
  position: absolute;
  z-index: 1;
  color: var(--ziston-theme-color);
  font-size: 24px;
  text-align: center;
  line-height: 40px;
}

.page-user-login, .page-user-register, .page-user-pass {
  position: relative;
}

.page-user-login .bg, .page-user-register .bg, .page-user-pass .bg {
  background: #152C49;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9;
}

.page-user-login input, .page-user-register input, .page-user-pass input {
  max-width: 100%;
}

.page-user-login .main-page, .page-user-register .main-page, .page-user-pass .main-page {
  padding: 10px 30px 30px;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  max-width: 550px;
  background: #fff;
  border: 8px solid rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  margin: 50px auto 0;
  position: relative;
  z-index: 99;
}

@media (max-width: 575.98px) {
  .page-user-login .main-page, .page-user-register .main-page, .page-user-pass .main-page {
    margin-top: 35px;
  }
}

.page-user-login .branding, .page-user-register .branding, .page-user-pass .branding {
  margin-bottom: 20px;
}

.page-user-login .container, .page-user-register .container, .page-user-pass .container {
  padding: 0;
}

.page-user-login .nav-tabs, .page-user-register .nav-tabs, .page-user-pass .nav-tabs {
  margin-bottom: 20px;
}

.page-user-login .nav-tabs > li > a, .page-user-register .nav-tabs > li > a, .page-user-pass .nav-tabs > li > a {
  padding: 8px 20px 0 0 !important;
}

.page-user-login .help.show, .page-user-register .help.show, .page-user-pass .help.show {
  display: block !important;
}

.post-block {
  margin-bottom: 30px;
}

.post-block .post-image {
  overflow: hidden;
}

.post-block .post-image a {
  position: relative;
  display: block;
}

.post-block .post-image img {
  width: 100%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

@media (prefers-reduced-motion: reduce) {
  .post-block .post-image img {
    -webkit-transition: none;
    transition: none;
  }
}

.post-block .post-image:hover a:before, .post-block .post-image:hover a:after {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.post-block .post-title {
  padding: 5px 0 0;
  margin: 0;
  /* line-height: 36px; */
  font-size: 17px;
  display: block;
}

@media (max-width: 1024px) {
  .post-block .post-title {
    font-size: 17px;
    line-height: 32px;
  }
}

.post-block .post-title a {
  color: #161c26;
  word-wrap: break-word;
}

.post-block .post-title a:hover, .post-block .post-title a:active, .post-block .post-title a:before {
  color: var(--ziston-theme-color);
}

.post-block .post-content {
  background: #fff;
  -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
}

.post-block .post-content::after {
  display: block;
  clear: both;
  content: "";
}

.post-block .post-content .entry-meta {
  position: relative;
  font-size: 14px;
  line-height: 14px;
  padding: 28px 70px 22px 35px;
  text-transform: capitalize;
}

.post-block .post-content .entry-meta:after {
  content: '';
  background: #dee2e6;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 30px;
  right: 100px;
}

.post-block .post-content .entry-meta .meta-inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.post-block .post-content .entry-meta .meta-inline span {
  margin-right: 16px;
}

.post-block .post-content .entry-meta .meta-inline span:last-child {
  margin-right: 0;
}

.post-block .post-content .entry-meta .meta-inline span i {
  color: var(--ziston-theme-color-second);
  margin-right: 4px;
}

.post-block .post-content .entry-meta .meta-inline span a {
  color: var(--ziston-theme-color-second);
}

.post-block .post-content .entry-meta .entry-date {
  position: absolute;
  top: -1px;
  right: 0;
  width: 70px;
  height: 100%;
  background: var(--ziston-theme-color);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  padding-top: 15px;
  border-radius: 0 0 0 4px;
}

.post-block .post-content .entry-meta .entry-date span {
  display: block;
}

.post-block .post-content .content-inner {
  padding: 5px 35px 15px 35px;
}

@media (max-width: 1024px) {
  .post-block .post-content .content-inner {
    padding: 5px 35px 15px 35px;
  }
}

.post-block .post-content .content-inner .post-desc {
  margin-top: 15px;
  line-height: 20px;
  font-size: 13px;
}

.post-block.teaser-2 {
  text-align: center;
}

.post-block.teaser-2 .post-content {
  padding: 30px 30px 30px;
  border: none;
  text-align: center;
}

.post-block.teaser-2 .post-content .entry-meta {
  padding: 0 0 5px;
  text-align: center;
}

.post-block.teaser-2 .post-content .entry-meta .meta-inline {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.post-block.teaser-2 .post-content .entry-meta:after {
  display: none;
}

.post-block.teaser-2 .post-content .post-title {
  margin-bottom: 0;
  font-size: 20px;
  line-height: 30px;
}

.post-footer {
  margin-top: 25px;
}

.post-footer .item-list ul li {
  margin-bottom: 15px !important;
}

.post-footer .item-list ul li:last-child {
  border: none;
  margin-bottom: 0 !important;
}

.article-read-more {
  display: block;
  text-align: center;
  margin: 15px auto 0;
  padding: 10px 0;
  width: fit-content;
  background-color: transparent;
  color: var(--ziston-theme-color, #007bff);
  text-decoration: none;
  border-radius: 0;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.article-read-more:after {
  content: '\f061';
  font-family: "Font Awesome 5 Free";
  margin-left: 8px;
  font-weight: 900;
  transition: transform 0.3s ease;
}

.article-read-more:hover {
  opacity: 0.7;
}

.article-read-more:hover:after {
  transform: translateX(2px);
}

.post-footer .item-list ul li .post-block {
  background: transparent !important;
}

.post-footer .item-list ul li .post-block .post-title {
  font-size: 14px;
}

.post-footer .item-list ul li .post-block .post-title a {
  color: #fff;
  font-weight: 400;
}

.post-footer .item-list ul li .post-block .post-title a:hover {
  color: var(--ziston-theme-color);
}

.post-footer .item-list ul li .post-block .post-meta {
  color: rgba(255, 255, 255, 0.8);
}

.post-footer .item-list ul li .post-block .post-meta .post-categories {
  font-size: 12px;
}

.post-footer .item-list ul li .post-block .post-meta .post-categories a {
  font-size: 10px;
}

.post-style-grid .post-block {
  margin-bottom: 40px;
}

.gallery-post {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 30px;
}

.gallery-post:after {
  content: "";
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  top: 0;
  left: 0;
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9;
  opacity: 0;
  filter: alpha(opacity=0);
}

@media (prefers-reduced-motion: reduce) {
  .gallery-post:after {
    -webkit-transition: none;
    transition: none;
  }
}

.gallery-post .images {
  overflow: hidden;
  position: relative;
}

.gallery-post .images img {
  -webkit-transition: all 5s;
  transition: all 5s;
}

@media (prefers-reduced-motion: reduce) {
  .gallery-post .images img {
    -webkit-transition: none;
    transition: none;
  }
}

.gallery-post a.zoomGallery {
  position: absolute;
  width: 32px;
  height: 32px;
  top: 50%;
  left: 50%;
  margin-top: -16px;
  margin-left: -16px;
  z-index: 99;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  opacity: 0;
  filter: alpha(opacity=0);
}

@media (max-width: 680px) {
  .gallery-post a.zoomGallery {
    display: none;
  }
}

.gallery-post:hover:after {
  opacity: 1;
  filter: alpha(opacity=100);
}

.gallery-post:hover a.zoomGallery {
  opacity: 1;
  filter: alpha(opacity=100);
}

.style-dark .post-block {
  background: transparent;
}

.style-dark .post-block .post-title {
  background: transparent;
}

.style-dark .post-block .post-title a {
  color: #fff;
}

.style-dark .post-block .post-title a:hover {
  color: var(--ziston-theme-color);
}

.post-style-horizontal .post-block::after {
  display: block;
  clear: both;
  content: "";
}

.node--view-mode-full .post-thumbnail {
  margin-bottom: 10px;
}

.node--view-mode-full .post-thumbnail iframe {
  min-height: 400px;
}

.node--view-mode-full .post-categories {
  padding-bottom: 0;
  margin-bottom: 5px;
}

.node-detail {
  /*padding-bottom: 35px;*/
}

.node-detail iframe {
  width: 100%;
  display: block;
}

.node-detail .post-thumbnail.post-gallery {
  overflow: hidden;
}

.node-detail .post-thumbnail.post-gallery .owl-nav {
  opacity: 1;
  filter: alpha(opacity=100);
}

.node-detail .post-thumbnail.post-gallery .owl-nav .owl-prev {
  margin-left: 60px;
}

.node-detail .post-thumbnail.post-gallery .owl-nav .owl-next {
  margin-right: 60px;
}

.node-detail .post-title {
  margin-top: 5px;
  margin-bottom: 30px;
  font-size: 26px;
}

.node-detail .post-content {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.node-detail .entry-meta {
  padding: 30px 0 0 !important;
}

.node-detail .entry-meta:after {
  display: none;
}

.node--type-enimerotika-deltia.node-detail {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.node--type-enimerotika-deltia.node-detail .post-content {
  text-align: center;
}

.node--type-enimerotika-deltia.node-detail .entry-meta {
  text-align: center;
}

.node--type-enimerotika-deltia.node-detail .entry-meta .meta-inline {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.node--type-enimerotika-deltia.node-detail .field--name-field-tags {
  text-align: center;
}

.node--type-enimerotika-deltia.node-detail .field--name-field-tags .field__item {
  float: none;
  display: inline-block;
  margin: 0 5px 10px;
}

.node-detail .field--name-field-tags {
  margin-top: 20px;
}

.node-detail .field--name-field-tags .field__item {
  float: left;
  margin-right: 10px;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 14px;
}

.node-detail .field--name-field-tags .field__item a {
  background: #f5f5f5;
  padding: 2px 15px;
  border-radius: 3px;
}

.node-detail .field--name-field-tags .field__item a:hover, .node-detail .field--name-field-tags .field__item a:focus, .node-detail .field--name-field-tags .field__item a:active {
  background: var(--ziston-theme-color);
  color: #fff;
}

.categories-view-content.layout-grid .post-block, .categories-view-content.layout-masonry .post-block {
  margin-bottom: 30px;
  text-align: left;
}

.categories-view-content.layout-grid .post-block .post-categories, .categories-view-content.layout-masonry .post-block .post-categories {
  margin: 0;
}

.categories-view-content.layout-grid .post-block .post-categories h2, .categories-view-content.layout-grid .post-block .post-categories h3, .categories-view-content.layout-grid .post-block .post-categories h4, .categories-view-content.layout-masonry .post-block .post-categories h2, .categories-view-content.layout-masonry .post-block .post-categories h3, .categories-view-content.layout-masonry .post-block .post-categories h4 {
  margin: 0;
  line-height: 1;
}

.categories-view-content.layout-grid .post-block .post-title, .categories-view-content.layout-masonry .post-block .post-title {
  padding: 0;
}

.categories-view-content.layout-grid .post-block .post-meta, .categories-view-content.layout-masonry .post-block .post-meta {
  margin-top: 0;
}

.categories-view-content.layout-grid .post-block .post-body, .categories-view-content.layout-masonry .post-block .post-body {
  padding: 10px 0 15px;
}

.categories-view-content.layout-grid .post-block .post-content, .categories-view-content.layout-masonry .post-block .post-content {
  padding: 15px;
  border: 1px solid #dee2e6;
  border-top: 0;
}

.categories-view-content.layout-list .post-block {
  margin-bottom: 0;
}

.categories-view-content.layout-list .post-block::after {
  display: block;
  clear: both;
  content: "";
}

.categories-view-content.layout-list .post-block .post-thumbnail {
  width: 45%;
  float: left;
}

@media (max-width: 575.98px) {
  .categories-view-content.layout-list .post-block .post-thumbnail {
    width: 100%;
  }
}

.categories-view-content.layout-list .post-block .post-title {
  padding: 0;
  margin: 0;
}

.categories-view-content.layout-list .post-block .post-content {
  width: 55%;
  float: left;
  padding-left: 30px;
}

@media (max-width: 575.98px) {
  .categories-view-content.layout-list .post-block .post-content {
    width: 100%;
  }
}

.categories-view-content.layout-list .post-block .post-content .post-categories {
  line-height: 1;
  padding-bottom: 0;
  margin-bottom: 0;
}

.categories-view-content.layout-list .post-block .post-content .post-categories h2 {
  margin: 0;
}

.post-style-list {
  margin-bottom: 10px !important;
}

.post-style-list ul > li.view-list-item {
  margin-bottom: 30px !important;
}

.post-style-list .post-block {
  clear: both;
}

.post-style-list .post-block .post-image {
  width: 40%;
  float: left;
}

@media (max-width: 575.98px) {
  .post-style-list .post-block .post-image {
    width: 100%;
  }
}

.post-style-list .post-block .post-image img {
  height: auto;
  width: 100%;
}

.post-style-list .post-block .entry-meta {
  padding: 5px 0 12px;
  margin-top: 2px;
}

.post-style-list .post-block .entry-meta:after {
  display: none;
}

.post-style-list .post-block .post-title {
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 28px;
}

.post-style-list .post-block .post-content {
  padding-top: 5px;
  width: 60%;
  padding-left: 30px;
  float: left;
  -webkit-box-shadow: none;
  box-shadow: none;
}

@media (max-width: 575.98px) {
  .post-style-list .post-block .post-content {
    width: 100%;
    padding-left: 0;
  }
}

.post-style-list .post-block .post-content .action {
  display: none;
}

.post-style-list .post-block .post-content .body {
  line-height: 24px;
  margin-top: 15px;
}

.post-style-list .post-block .post-title {
  padding-top: 0;
}

.post-style-list .post-block.no-image .post-content {
  width: 100%;
  padding-left: 0;
}

.post-list-small {
  background: #fff;
  border: 1px solid #dee2e6;
  padding: 20px;
}

.post-list-small .item-list ul li {
  margin-bottom: 20px !important;
  padding-bottom: 20px;
  border-bottom: 1px solid #dee2e6;
}

.post-list-small .item-list ul li:last-child {
  margin-bottom: 0 !important;
  border-bottom: 0;
  border: 0;
}

.post-list-small .post-block {
  clear: both;
  background: none;
}

.post-list-small-2 .item-list ul li {
  margin-bottom: 20px !important;
}

.post-list-small-2 .item-list ul li:last-child {
  margin-bottom: 0 !important;
}

.post-list-small-2 .post-block {
  clear: both;
  background: none;
}

.post-list-small-2 .post-block .post-image {
  width: 90px;
  float: left;
}

.post-list-small-2 .post-block .post-image img {
  height: auto;
  width: 100%;
}

.post-list-small-2 .post-block .post-content {
  padding-left: 110px;
  background: none;
}

.post-list-small-2 .post-block .post-title {
  padding: 0;
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  margin-top: -3px;
  font-weight: 600;
}

.post-list-small-2 .post-block .post-meta {
  position: relative;
  margin-bottom: 8px;
  font-size: 12px;
  color: var(--ziston-theme-color);
  font-weight: 600;
  font-family: var(--ziston-heading-font-family);
}

.post-list-small-2 .post-block .post-meta .line {
  padding: 0 5px;
}

.post-list-small-2 .post-block .post-meta .post-categories {
  font-size: 12px;
}

.team-block.team-v1 {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  background: transparent;
  background: #fff;
}

.team-block.team-v1 .team-image {
  position: relative;
  background: transparent;
}

.team-block.team-v1 .team-image .socials-team {
  z-index: 9;
  width: auto;
  padding: 10px 0;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
  text-align: center;
  position: absolute;
  top: -20px;
  right: 10px;
  z-index: 9;
  width: 32px;
}

@media (prefers-reduced-motion: reduce) {
  .team-block.team-v1 .team-image .socials-team {
    -webkit-transition: none;
    transition: none;
  }
}

.team-block.team-v1 .team-image .socials-team a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  line-height: 32px;
  text-align: center;
  color: #fff;
  background: #000;
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
}

.team-block.team-v1 .team-image .socials-team a:hover, .team-block.team-v1 .team-image .socials-team a:focus, .team-block.team-v1 .team-image .socials-team a:active {
  background: var(--ziston-theme-color);
}

.team-block.team-v1 .team-image .item-image {
  position: relative;
}

.team-block.team-v1 .team-image .item-image a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  opacity: 0;
  filter: alpha(opacity=0);
  z-index: 1;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

@media (prefers-reduced-motion: reduce) {
  .team-block.team-v1 .team-image .item-image a:after {
    -webkit-transition: none;
    transition: none;
  }
}

.team-block.team-v1 .team-content {
  background: transparent;
  position: relative;
  text-align: left;
  padding: 10px 20px 20px;
  border: 1px solid #dee2e6;
  border-top: 0;
}

.team-block.team-v1 .team-content .team-name {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  line-height: 20px;
  padding: 20px 0 6px;
  text-transform: capitalize;
}

.team-block.team-v1 .team-content .team-job {
  font-size: 13px;
  color: #808080;
  padding: 0 0 10px;
}

.team-block.team-v1 .team-skills .progress-label {
  font-weight: 400 !important;
  font-size: 13px;
  color: #000;
  text-transform: capitalize;
}

.team-block.team-v1 .team-skills .progress {
  margin-bottom: 12px !important;
  height: 2px !important;
}

.team-block.team-v1 .team-skills .progress .progress-bar span {
  display: none;
}

.team-block.team-v1 .team-skills .progress .percentage {
  font-size: 12px !important;
  top: -22px;
  color: #000;
  font-weight: 400;
}

.team-block.team-v1:hover .team-image .item-image:after {
  opacity: 1;
  filter: alpha(opacity=100);
}

.team-block.team-v1:hover .team-image .socials-team {
  opacity: 1;
  filter: alpha(opacity=100);
  top: 10px;
}

.team-block.team-v2 {
  max-width: 500px;
  margin: 0 auto 30px;
}

.team-block.team-v2 .team-image {
  position: relative;
  text-align: center;
  z-index: 1;
}

.team-block.team-v2 .team-content {
  background: #fff;
  text-align: center;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  padding: 30px 20px 20px;
  margin: -50px 10px 0 10px;
  -webkit-box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  position: relative;
  z-index: 9;
  border-bottom: 2px solid transparent;
}

@media (prefers-reduced-motion: reduce) {
  .team-block.team-v2 .team-content {
    -webkit-transition: none;
    transition: none;
  }
}

@media (max-width: 1024px) {
  .team-block.team-v2 .team-content {
    padding: 20px 15px;
  }
}

.team-block.team-v2 .team-content .socials-team {
  z-index: 9;
  width: auto;
  padding: 5px 0;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

@media (prefers-reduced-motion: reduce) {
  .team-block.team-v2 .team-content .socials-team {
    -webkit-transition: none;
    transition: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .team-block.team-v2 .team-content .socials-team {
    -webkit-transition: none;
    transition: none;
  }
}

.team-block.team-v2 .team-content .socials-team a {
  text-align: center;
  color: #000;
  font-size: 16px;
  margin: 0 5px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F0F3F6;
  display: inline-block;
  line-height: 40px;
}

.team-block.team-v2 .team-content .socials-team a:hover, .team-block.team-v2 .team-content .socials-team a:focus, .team-block.team-v2 .team-content .socials-team a:active {
  color: #fff;
  background: var(--ziston-theme-color);
}

.team-block.team-v2 .team-content .team-name {
  line-height: 22px;
  font-size: 20px;
  margin: 0 0 6px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

@media (prefers-reduced-motion: reduce) {
  .team-block.team-v2 .team-content .team-name {
    -webkit-transition: none;
    transition: none;
  }
}

.team-block.team-v2 .team-content .team-name a:hover {
  color: var(--ziston-theme-color);
}

.team-block.team-v2 .team-content .team-job {
  font-size: 14px;
  font-weight: 400;
  margin-top: 5px;
}

.team-block.team-v2:hover .team-content, .team-block.team-v2:focus .team-content {
  border-bottom-color: var(--ziston-theme-color);
}

.box-margin-0 {
  margin-bottom: 0;
}

.box-margin-small {
  margin-bottom: 30px;
}

@media (max-width: 767.98px) {
  .box-margin-small {
    margin-bottom: 20px;
  }
}

.box-margin-medium {
  margin-bottom: 50px;
}

@media (max-width: 767.98px) {
  .box-margin-medium {
    margin-bottom: 20px;
  }
}

@media (max-width: 575.98px) {
  .box-margin-medium {
    margin-top: 10px;
  }
}

.box-margin-large {
  margin-bottom: 80px;
}

@media (max-width: 767.98px) {
  .box-margin-large {
    margin-bottom: 50px;
  }
}

@media (max-width: 575.98px) {
  .box-margin-large {
    margin-bottom: 30px;
  }
}

.no-margin {
  margin: 0 !important;
}

.margin-1 {
  margin-bottom: -150px;
}

@media (max-width: 991.98px) {
  .margin-1 {
    margin-bottom: 0px;
  }
}

.margin-2 {
  margin-top: 60px;
}

@media (max-width: 767.98px) {
  .margin-2 {
    margin-top: 20px;
  }
}

.margin-3 {
  margin-top: 80px;
}

@media (max-width: 767.98px) {
  .margin-3 {
    margin-top: 50px;
  }
}

.margin-4 {
  margin-top: 30px;
}

@media (max-width: 575.98px) {
  .margin-4 {
    margin-top: 0;
  }
}

.margin-top-0 {
  margin-top: 0 !important;
}

.margin-top-10 {
  margin-top: 10px !important;
}

.margin-top-15 {
  margin-top: 15px !important;
}

.margin-top-20 {
  margin-top: 20px !important;
}

.margin-top-30 {
  margin-top: 30px !important;
}

.margin-top-40 {
  margin-top: 40px !important;
}

.margin-top-50 {
  margin-top: 50px !important;
}

.margin-top-60 {
  margin-top: 60px !important;
}

.margin-bottom-0 {
  margin-bottom: 0 !important;
}

.margin-bottom-10 {
  margin-bottom: 10px !important;
}

.margin-bottom-15 {
  margin-bottom: 15px !important;
}

.margin-bottom-20 {
  margin-bottom: 20px !important;
}

.margin-bottom-30 {
  margin-bottom: 30px !important;
}

.margin-bottom-40 {
  margin-bottom: 40px !important;
}

.margin-bottom-50 {
  margin-bottom: 50px !important;
}

.margin-bottom-60 {
  margin-bottom: 60px !important;
}

.margin-bottom-70 {
  margin-bottom: 70px !important;
}

.margin-bottom-80 {
  margin-bottom: 80px !important;
}

.margin-bottom-90 {
  margin-bottom: 90px !important;
}

.margin-bottom-100 {
  margin-bottom: 100px !important;
}

.padding-10 {
  padding: 10px !important;
}

.padding-20 {
  padding: 20px !important;
}

.padding-30 {
  padding: 30px !important;
}

.padding-40 {
  padding: 40px !important;
}

.padding-50 {
  padding: 50px !important;
}

.padding-bottom-0 {
  padding-bottom: 0 !important;
}

.padding-bottom-10 {
  padding-bottom: 10px !important;
}

.padding-bottom-15 {
  padding-bottom: 15px !important;
}

.padding-bottom-20 {
  padding-bottom: 20px !important;
}

.padding-bottom-30 {
  padding-bottom: 30px !important;
}

.padding-bottom-40 {
  padding-bottom: 40px !important;
}

.padding-bottom-50 {
  padding-bottom: 50px !important;
}

.padding-bottom-100 {
  padding-bottom: 100px !important;
}

@media (max-width: 575.98px) {
  .padding-bottom-100 {
    padding-bottom: 30px !important;
  }
}

.padding-top-10 {
  padding-top: 10px !important;
}

.padding-top-20 {
  padding-top: 20px !important;
}

.padding-top-30 {
  padding-top: 30px !important;
}

.padding-top-40 {
  padding-top: 40px !important;
}

.padding-top-50 {
  padding-top: 50px !important;
}

.width-100 {
  max-width: 100px;
  margin: 0 auto;
}

.width-200 {
  max-width: 200px;
  margin: 0 auto;
}

.width-300 {
  max-width: 300px;
  margin: 0 auto;
}

.width-400 {
  max-width: 400px;
  margin: 0 auto;
}

.width-500 {
  max-width: 500px;
  margin: 0 auto;
}

.width-600 {
  max-width: 600px !important;
  margin: 0 auto;
}

.width-700 {
  max-width: 700px;
  margin: 0 auto;
}

.width-750 {
  max-width: 750px;
  margin: 0 auto;
}

.width-800 {
  max-width: 800px;
  margin: 0 auto;
}

.width-900 {
  max-width: 900px;
  margin: 0 auto;
}

.width-950 {
  max-width: 950px;
  margin: 0 auto;
}

.width-1000 {
  max-width: 1000px;
  margin: 0 auto;
}

.radius-1x {
  border-radius: 3px;
}

.radius-2x {
  border-radius: 5px;
}

.radius-5x {
  border-radius: 50%;
}

.border-1 {
  border: 1px solid #dee2e6;
}

.border-2 {
  border: 2px solid #dee2e6;
}

.border-3 {
  border: 3px solid #dee2e6;
}

.border-4 {
  border: 4px solid #dee2e6;
}

.border-5 {
  border: 5px solid #dee2e6;
}

.border-top-1 {
  border-top: 1px solid #dee2e6;
}

.fsize-14 {
  font-size: 14px !important;
}

.fsize-15 {
  font-size: 15px !important;
}

.fsize-16 {
  font-size: 16px !important;
}

.fsize-17 {
  font-size: 17px !important;
}

.fsize-18 {
  font-size: 18px !important;
}

.fsize-19 {
  font-size: 19px !important;
}

.fsize-20 {
  font-size: 20px !important;
}

.fsize-21 {
  font-size: 21px !important;
}

.fsize-22 {
  font-size: 22px !important;
}

.fsize-23 {
  font-size: 23px !important;
}

.fsize-24 {
  font-size: 24px !important;
}

.fsize-25 {
  font-size: 25px !important;
}

.fsize-26 {
  font-size: 26px !important;
}

.fsize-27 {
  font-size: 27px !important;
}

.fsize-28 {
  font-size: 28px !important;
}

.fsize-29 {
  font-size: 29px !important;
}

.fsize-30 {
  font-size: 30px !important;
}

.fsize-31 {
  font-size: 31px !important;
}

.fsize-32 {
  font-size: 32px !important;
}

.fsize-33 {
  font-size: 33px !important;
}

.fsize-34 {
  font-size: 34px !important;
}

.fsize-35 {
  font-size: 35px !important;
}

.fsize-36 {
  font-size: 36px !important;
}

.fsize-37 {
  font-size: 37px !important;
}

.fsize-38 {
  font-size: 38px !important;
}

.fsize-39 {
  font-size: 39px !important;
}

.fsize-40 {
  font-size: 40px !important;
}

.fsize-41 {
  font-size: 41px !important;
}

.fsize-42 {
  font-size: 42px !important;
}

.fsize-44 {
  font-size: 44px !important;
}

.fsize-46 {
  font-size: 46px !important;
}

@media (max-width: 767.98px) {
  .fsize-46 {
    font-size: 38px !important;
  }
}

.fsize-48 {
  font-size: 48px !important;
}

@media (max-width: 767.98px) {
  .fsize-48 {
    font-size: 38px !important;
  }
}

.fsize-50 {
  font-size: 50px !important;
}

@media (max-width: 767.98px) {
  .fsize-50 {
    font-size: 38px !important;
  }
}

.fsize-52 {
  font-size: 52px !important;
}

@media (max-width: 767.98px) {
  .fsize-52 {
    font-size: 38px !important;
  }
}

.fsize-54 {
  font-size: 54px !important;
}

.fsize-56 {
  font-size: 56px !important;
}

@media (max-width: 767.98px) {
  .fsize-56 {
    font-size: 38px !important;
  }
}

.fsize-58 {
  font-size: 58px !important;
}

@media (max-width: 767.98px) {
  .fsize-58 {
    font-size: 38px !important;
  }
}

.fsize-60 {
  font-size: 60px !important;
}

@media (max-width: 767.98px) {
  .fsize-60 {
    font-size: 40px !important;
  }
}

.fsize-70 {
  font-size: 70px !important;
}

@media (max-width: 767.98px) {
  .fsize-70 {
    font-size: 50px !important;
  }
}

.fsize-80 {
  font-size: 80px !important;
}

@media (max-width: 767.98px) {
  .fsize-80 {
    font-size: 50px !important;
  }
}

.fsize-90 {
  font-size: 90px !important;
}

@media (max-width: 767.98px) {
  .fsize-90 {
    font-size: 50px !important;
  }
}

.fsize-100 {
  font-size: 100px !important;
}

@media (max-width: 767.98px) {
  .fsize-100 {
    font-size: 60px !important;
  }
}

.lheight-18 {
  line-height: 18px !important;
}

.lheight-19 {
  line-height: 19px !important;
}

.lheight-20 {
  line-height: 20px !important;
}

.lheight-21 {
  line-height: 21px !important;
}

.lheight-22 {
  line-height: 22px !important;
}

.lheight-23 {
  line-height: 23px !important;
}

.lheight-24 {
  line-height: 24px !important;
}

.lheight-25 {
  line-height: 25px !important;
}

.lheight-26 {
  line-height: 26px !important;
}

.lheight-27 {
  line-height: 27px !important;
}

.lheight-28 {
  line-height: 28px !important;
}

.lheight-29 {
  line-height: 29px !important;
}

.lheight-30 {
  line-height: 30px !important;
}

.lheight-31 {
  line-height: 31px !important;
}

.lheight-32 {
  line-height: 32px !important;
}

.lheight-33 {
  line-height: 33px !important;
}

.lheight-34 {
  line-height: 34px !important;
}

.lheight-35 {
  line-height: 35px !important;
}

.lheight-36 {
  line-height: 36px !important;
}

.lheight-37 {
  line-height: 37px !important;
}

.lheight-38 {
  line-height: 38px !important;
}

.lheight-39 {
  line-height: 39px !important;
}

.lheight-40 {
  line-height: 40px !important;
}

.lheight-41 {
  line-height: 41px !important;
}

.lheight-42 {
  line-height: 42px !important;
}

.lheight-43 {
  line-height: 43px !important;
}

.lheight-44 {
  line-height: 44px !important;
}

.lheight-46 {
  line-height: 46px !important;
}

@media (max-width: 767.98px) {
  .lheight-46 {
    line-height: 38px !important;
  }
}

.lheight-48 {
  line-height: 48px !important;
}

@media (max-width: 767.98px) {
  .lheight-48 {
    line-height: 38px !important;
  }
}

.lheight-50 {
  line-height: 50px !important;
}

@media (max-width: 767.98px) {
  .lheight-50 {
    line-height: 38px !important;
  }
}

.lheight-52 {
  line-height: 52px !important;
}

@media (max-width: 767.98px) {
  .lheight-52 {
    line-height: 38px !important;
  }
}

.lheight-54 {
  line-height: 54px !important;
}

@media (max-width: 767.98px) {
  .lheight-54 {
    line-height: 38px !important;
  }
}

.lheight-56 {
  line-height: 56px !important;
}

@media (max-width: 767.98px) {
  .lheight-56 {
    line-height: 38px !important;
  }
}

.lheight-58 {
  line-height: 58px !important;
}

@media (max-width: 767.98px) {
  .lheight-58 {
    line-height: 38px !important;
  }
}

.lheight-60 {
  line-height: 60px !important;
}

@media (max-width: 767.98px) {
  .lheight-60 {
    line-height: 40px !important;
  }
}

.lheight-70 {
  line-height: 70px !important;
}

@media (max-width: 767.98px) {
  .lheight-70 {
    line-height: 60px !important;
  }
}

.lheight-80 {
  line-height: 80px !important;
}

@media (max-width: 767.98px) {
  .lheight-80 {
    line-height: 70px !important;
  }
}

.lheight-90 {
  line-height: 90px !important;
}

@media (max-width: 767.98px) {
  .lheight-90 {
    line-height: 70px !important;
  }
}

.lheight-100 {
  line-height: 100px !important;
}

@media (max-width: 767.98px) {
  .lheight-100 {
    line-height: 80px !important;
  }
}

.fweight-400 {
  font-weight: 400 !important;
}

.fweight-500 {
  font-weight: 500 !important;
}

.fweight-600 {
  font-weight: 600 !important;
}

.fweight-700 {
  font-weight: 700 !important;
}

.fweight-800 {
  font-weight: 800 !important;
}

.fweight-900 {
  font-weight: 900 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-800 {
  font-weight: 800 !important;
}

.fw-900 {
  font-weight: 900 !important;
}

.zindex-9 {
  z-index: 9;
}

.zindex-11 {
  z-index: 11;
}

.text-light .border-1, .text-light .border-2, .text-light .border-3, .text-light .border-4, .text-light .border-5 {
  border-color: rgba(255, 255, 255, 0.6) !important;
}

.padding-responsive {
  padding: 30px 120px;
}

@media (max-width: 575.98px) {
  .padding-responsive {
    padding: 30px;
  }
}

.special-margin-top {
  margin-top: -125px;
}

@media (max-width: 575.98px) {
  .special-margin-top {
    margin-top: 30px;
  }
}

.special-margin-top-2 {
  margin-top: -120px;
}

@media (max-width: 575.98px) {
  .special-margin-top-2 {
    margin-top: 10px;
    margin-bottom: 30px;
  }
}

.margin-top-contact {
  margin-top: -100px;
  padding-bottom: 80px;
}

@media (max-width: 575.98px) {
  .margin-top-contact {
    margin-top: 30px;
    padding-bottom: 45px;
  }
}

.padding-lr-15p {
  padding-left: 15%;
  padding-right: 15%;
}

@media (max-width: 575.98px) {
  .padding-lr-15p {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.border {
  border: 1px solid #dee2e6;
}

.border-top {
  border-top: 1px solid #dee2e6;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6;
}

.overflow-visible {
  overflow: visible !important;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
  margin-right: 1px !important;
}

.no-bg {
  background-color: transparent !important;
}

.col-no-padding div[class*="col-"] {
  padding: 0 !important;
}

.p-static {
  position: static !important;
}

.p-relative {
  position: relative !important;
}

.bg-theme {
  background: var(--ziston-theme-color);
}

.bg-theme-second {
  background: var(--ziston-theme-color-second);
}

.bg-white {
  background: #fff;
}

.bg-black {
  background: #11161F;
}

.bg-dark {
  background: #F0F3F6;
}

.bg-fixed, .gva-fixed-background {
  background-attachment: fixed;
}

@media (max-width: 767.98px) {
  .bg-fixed, .gva-fixed-background {
    background-attachment: scroll;
  }
}

.bg-content-box {
  background-clip: content-box;
}

.youtube-bg {
  position: relative;
  z-index: 9;
}

.youtube-bg:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  z-index: 9;
}

.youtube-bg .bb-inner {
  position: relative;
  z-index: 99;
}

.ui-widget-content {
  color: #797F89;
}

.gva-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
  z-index: 9;
  display: none;
}

.text-normal {
  font-size: 15px;
}

.text-size-medium {
  font-size: 16px;
  line-height: 32px;
  font-weight: 400;
}

.text-medium {
  font-size: 18px;
  line-height: 32px;
  font-weight: 600;
}

.text-medium-2 {
  font-size: 26px;
  line-height: 32px;
  font-weight: 600;
  color: var(--ziston-theme-color-second);
  margin-top: 2px;
  font-family: var(--ziston-heading-font-family);
}

.text-size-big {
  font-size: 42px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 48px;
  letter-spacing: 1px;
}

@media (max-width: 575.98px) {
  .text-size-big {
    font-size: 30px;
    line-height: 38px;
  }
}

.text-size-big {
  font-size: 36px;
}

@media (max-width: 575.98px) {
  .text-size-big {
    font-size: 20px;
  }
}

.text-dark {
  color: #797F89 !important;
}

.text-black {
  color: #000 !important;
}

.text-black > a {
  color: #000 !important;
}

.text-white {
  color: #fff !important;
}

.text-white > a {
  color: #fff !important;
}

.text-theme {
  color: var(--ziston-theme-color) !important;
}

.text-theme > a {
  color: var(--ziston-theme-color) !important;
}

.text-theme-2, .text-theme-second {
  color: var(--ziston-theme-color-second) !important;
}

.text-theme-2 > a, .text-theme-second > a {
  color: var(--ziston-theme-color-second) !important;
}

.text-gray {
  color: #797F89 !important;
}

.text-gray > a {
  color: #797F89 !important;
}

.text-gray-light {
  color: #E6E6E6 !important;
}

.text-gray-light > a {
  color: #E6E6E6 !important;
}

.color-theme {
  color: var(--ziston-theme-color) !important;
}

.color-theme > a {
  color: var(--ziston-theme-color) !important;
}

.color-white {
  color: #fff !important;
}

.color-white > a {
  color: #fff !important;
}

.color-dark {
  color: #f1f1f1 !important;
}

.color-dark > a {
  color: #f1f1f1 !important;
}

.color-black {
  color: #000 !important;
}

.color-black > a {
  color: #000 !important;
}

.gavias-parallax {
  background-attachment: fixed !important;
  background-attachment: scroll !important;
}

.gavias-parallax.fp-section {
  background-attachment: scroll !important;
}

.socials {
  display: inline-block;
  width: 100%;
}

.socials a {
  text-decoration: none;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  margin-right: 10px;
  font-size: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  line-height: 38px;
  font-size: 14px;
  background: #F0F3F6;
  color: #000 !important;
}

@media (prefers-reduced-motion: reduce) {
  .socials a {
    -webkit-transition: none;
    transition: none;
  }
}

.socials a:last-child {
  margin-right: 0;
}

.socials a:hover, .socials a:focus, .socials a:active {
  background: var(--ziston-theme-color);
  color: #fff !important;
}

.social-copyright {
  float: right;
}

.post-masonry-style > div, .isotope-items > div {
  margin-left: -1px;
  -webkit-transform: translateX(1px);
  transform: translateX(1px);
}

.nav-tabs {
  list-style: none !important;
  padding-left: 0;
}

.nav-tabs > li > a {
  font-weight: 700;
  color: #000;
  padding: 8px 18px;
  border: none;
  font-size: 13px;
  text-transform: uppercase;
  background: none;
}

.nav-tabs > li > a i {
  margin-right: 5px;
}

.nav-tabs > li > a:hover, .nav-tabs > li > a:focus, .nav-tabs > li > a:active {
  color: var(--ziston-theme-color);
}

.nav-tabs > li.active > a, .nav-tabs > li > a.active {
  color: var(--ziston-theme-color);
}

.box-quick-link ul {
  padding: 0;
  margin: 0;
}

.box-quick-link ul > li {
  width: 46%;
  height: 70px;
  border: 1px solid #dee2e6;
  float: left;
  list-style: none;
  text-align: center;
  margin-bottom: 8%;
}

.box-quick-link ul > li:nth-child(2n) {
  margin-left: 4%;
}

.box-quick-link ul > li:nth-child(2n+1) {
  margin-right: 4%;
}

.box-quick-link ul > li a {
  font-weight: 700;
  font-size: 13px;
  display: block;
  line-height: 1.8;
  padding-top: 12px;
}

.box-quick-link ul > li a i {
  display: block;
  font-size: 23px;
  color: #777777;
}

.box-quick-link ul > li a:hover {
  color: #fff;
}

.box-quick-link ul > li a:hover i {
  color: #fff;
}

.box-quick-link ul > li:hover {
  background-color: #555555;
}

.box-quick-link ul > li:hover * {
  color: #fff;
}

.init-carousel-owl {
  margin-left: 5px;
  /* margin-right: -15px; */
  width: auto;
}

.init-carousel-owl .owl-item > .item {
  padding-left: 15px;
  padding-right: 15px;
}

.init-carousel-owl.carousel-no-padding, .init-carousel-owl.no-padding {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.init-carousel-owl.carousel-no-padding .owl-item > .item, .init-carousel-owl.no-padding .owl-item > .item {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.init-carousel-owl[data-items*="1"] {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.init-carousel-owl[data-items*="1"] .owl-item > .item {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

div.error {
  background-repeat: no-repeat !important;
  background-image: none !important;
}

.owl-carousel {
  background: none !important;
  position: relative;
  max-height: 200px;
}

.owl-carousel .item {
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
  visibility: hidden;
  opacity: 0;
  filter: alpha(opacity=0);
}

@media (prefers-reduced-motion: reduce) {
  .owl-carousel .item {
    -webkit-transition: none;
    transition: none;
  }
}

.owl-carousel .owl-stage-outer .item {
  opacity: 1;
  filter: alpha(opacity=100);
  visibility: visible;
}

.owl-carousel.owl-loaded {
  max-height: none;
}

.owl-carousel .owl-item img {
  display: inline-block;
  width: auto;
}

.owl-carousel .owl-controls {
  margin: 0;
}

.owl-carousel .owl-controls .owl-pagination {
  position: relative;
  bottom: 10px;
  z-index: 9;
  display: inline-block;
  width: 100%;
  left: 0;
}

.owl-carousel .owl-controls .owl-pagination .owl-page span {
  background: #d6d6d6;
  width: 10px;
  height: 10px;
}

.owl-carousel .owl-controls .owl-pagination .owl-page.active span {
  background: #869791;
}

.owl-carousel .owl-dots {
  margin-top: 15px;
  text-align: center;
  width: 100%;
  display: block;
  clear: bottom;
}

.owl-carousel .owl-dots .owl-dot {
  width: 12px;
  height: 12px;
  background: #D0D2D4;
  -webkit-transition: background 0.35s;
  transition: background 0.35s;
  display: inline-block;
  margin: 0 5px;
  border-radius: 50%;
  border: none;
  outline: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .owl-carousel .owl-dots .owl-dot {
    -webkit-transition: none;
    transition: none;
  }
}

.owl-carousel .owl-dots .owl-dot.active {
  background: var(--ziston-theme-color);
}

.owl-carousel .owl-nav {
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

@media (prefers-reduced-motion: reduce) {
  .owl-carousel .owl-nav {
    -webkit-transition: none;
    transition: none;
  }
}

.owl-carousel .owl-nav > div {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  top: 40%;
  margin-top: -20px;
  width: 45px;
  height: 45px;
  line-height: 46px;
  background: #fff;
  color: #fff !important;
  border-radius: 50%;
  background: #DEE2E8;
  text-align: center;
  font-size: 16px;
  padding-top: 0;
  padding-bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
  .owl-carousel .owl-nav > div {
    -webkit-transition: none;
    transition: none;
  }
}

.owl-carousel .owl-nav > div:hover {
  background: var(--ziston-theme-color);
}

.owl-carousel .owl-nav > div:hover i {
  color: #fff;
}

.owl-carousel .owl-nav > div.owl-prev {
  right: auto !important;
  left: -50px !important;
}

@media (max-width: 1300px) {
  .owl-carousel .owl-nav > div.owl-prev {
    left: -10px !important;
  }
}

.owl-carousel .owl-nav > div.owl-next {
  left: auto !important;
  right: -50px !important;
}

@media (max-width: 1300px) {
  .owl-carousel .owl-nav > div.owl-next {
    right: -10px !important;
  }
}

.owl-carousel:hover .owl-nav {
  opacity: 1;
  filter: alpha(opacity=100);
  background: #fff;
}

.owl-carousel:hover .owl-nav .owl-next {
  margin-left: 30px;
}

.owl-carousel:hover .owl-nav .owl-prev {
  margin-right: 30px;
}

.owl-carousel.pagination-right .owl-dots {
  position: absolute;
  right: -30px;
  top: 50%;
  margin-top: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 10px;
  height: auto;
}

.owl-carousel.pagination-right .owl-dots .owl-dot {
  display: block;
  margin: 10px 0;
}

.owl-carousel.pagination-left .owl-dots {
  float: left;
  width: auto;
  margin-top: 15px;
  text-align: left;
}

.owl-carousel.white .owl-dots .owl-dot {
  background: #AAABAC;
}

.owl-carousel.white .owl-dots .owl-dot.active {
  background: #fff;
}

.button:not(.register-button), .btn, .btn-white, .btn-theme, .btn-theme-second, .btn-black, .more-link a, .btn-theme-submit {
  font-size: 14px;
  background: var(--ziston-theme-color);
  color: #fff;
  font-weight: 600;
  padding: 18px 35px;
  line-height: 20px;
  position: relative;
  z-index: 9;
  display: inline-block;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  border: none;
  border-radius: 4px;
  font-family: var(--ziston-heading-font-family);
  text-transform: uppercase;
  letter-spacing: 3px;
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .button:not(.register-button), .btn, .btn-white, .btn-theme, .btn-theme-second, .btn-black, .more-link a, .btn-theme-submit {
    -webkit-transition: none;
    transition: none;
  }
}

@media (max-width: 767.98px) {
  .button:not(.register-button), .btn, .btn-white, .btn-theme, .btn-theme-second, .btn-black, .more-link a, .btn-theme-submit {
    /* padding: 22px 35px 22px 35px; */
    font-size: 15px;
  }
}

.button:not(.register-button):hover, .button:not(.register-button):focus, .button:not(.register-button):active, .btn:hover, .btn:focus, .btn:active, .btn-white:hover, .btn-white:focus, .btn-white:active, .btn-theme:hover, .btn-theme:focus, .btn-theme:active, .btn-theme-second:hover, .btn-theme-second:focus, .btn-theme-second:active, .btn-black:hover, .btn-black:focus, .btn-black:active, .more-link a:hover, .more-link a:focus, .more-link a:active, .btn-theme-submit:hover, .btn-theme-submit:focus, .btn-theme-submit:active {
  cursor: pointer;
  color: #fff;
}

.button:not(.register-button):hover .btn-hover-effect, .button:not(.register-button):focus .btn-hover-effect, .button:not(.register-button):active .btn-hover-effect, .btn:hover .btn-hover-effect, .btn:focus .btn-hover-effect, .btn:active .btn-hover-effect, .btn-white:hover .btn-hover-effect, .btn-white:focus .btn-hover-effect, .btn-white:active .btn-hover-effect, .btn-theme:hover .btn-hover-effect, .btn-theme:focus .btn-hover-effect, .btn-theme:active .btn-hover-effect, .btn-theme-second:hover .btn-hover-effect, .btn-theme-second:focus .btn-hover-effect, .btn-theme-second:active .btn-hover-effect, .btn-black:hover .btn-hover-effect, .btn-black:focus .btn-hover-effect, .btn-black:active .btn-hover-effect, .more-link a:hover .btn-hover-effect, .more-link a:focus .btn-hover-effect, .more-link a:active .btn-hover-effect, .btn-theme-submit:hover .btn-hover-effect, .btn-theme-submit:focus .btn-hover-effect, .btn-theme-submit:active .btn-hover-effect {
  width: 200px;
  height: 200px;
}

.button:not(.register-button).full-width, .btn.full-width, .btn-white.full-width, .btn-theme.full-width, .btn-theme-second.full-width, .btn-black.full-width, .more-link a.full-width, .btn-theme-submit.full-width {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  line-height: 25px;
  text-align: center;
}

.btn-theme-2 {
  background: var(--ziston-theme-color-second);
}

.btn-theme-2:hover {
  opacity: 0.9;
}

.btn-black {
  background: #000;
}

.btn-black:after {
  background: #fff;
}

.btn-black:hover {
  opacity: 0.9;
  color: #fff;
}

.btn-white {
  background: #fff;
  color: #000;
}

.btn-white:after {
  background: #000;
}

.btn-white:hover {
  opacity: 0.9;
  color: #000;
}

.more-link {
  text-align: center;
  margin-top: 30px;
}

.btn-theme-second {
  background: var(--ziston-theme-color-second);
  color: #fff;
}

.btn-theme-second:hover, .btn-theme-second:focus, .btn-theme-second:active {
  opacity: 0.9;
  color: #fff;
}

.btn-theme-small {
  font-size: 14px;
  background: var(--ziston-theme-color);
  color: #fff;
  font-weight: 600;
  padding: 0 10px;
  line-height: 28px;
  position: relative;
  z-index: 9;
  display: inline-block;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  border: none;
  border-radius: 4px;
  font-family: var(--ziston-heading-font-family);
  text-transform: capitalize;
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .btn-theme-small {
    -webkit-transition: none;
    transition: none;
  }
}

.btn-theme-small:hover, .btn-theme-small:focus, .btn-theme-small:active {
  cursor: pointer;
  color: #fff;
}

.btn-theme-small:hover .btn-hover-effect, .btn-theme-small:focus .btn-hover-effect, .btn-theme-small:active .btn-hover-effect {
  width: 200px;
  height: 200px;
}

.btn-inline {
  font-size: 14px;
  color: var(--ziston-theme-color) !important;
  position: relative;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  font-weight: 700;
  padding-right: 28px;
  font-family: var(--ziston-heading-font-family);
  text-transform: capitalize;
}

@media (prefers-reduced-motion: reduce) {
  .btn-inline {
    -webkit-transition: none;
    transition: none;
  }
}

.btn-inline:after {
  content: '\f061';
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: 5px;
  right: 12px;
  z-index: 1;
  line-height: 1;
  font-weight: 900;
  font-size: 10px;
}

.btn-inline:hover {
  text-decoration: underline;
  opacity: 0.9;
}

/*************** Progress Bars ***************/
.progress-label {
  font-size: 18px;
  color: #000;
  font-weight: 700;
  margin-bottom: 2px;
  text-align: left;
}

.progress {
  height: 3px !important;
  background-color: #BCBCBC !important;
  position: relative;
  overflow: visible !important;
  border-radius: 0 !important;
}

.progress .progress-bar {
  -webkit-transition: width 2s ease-in-out;
  transition: width 2s ease-in-out;
  text-align: right;
  line-height: 16px !important;
  background: var(--ziston-theme-color);
  position: relative;
}

@media (prefers-reduced-motion: reduce) {
  .progress .progress-bar {
    -webkit-transition: none;
    transition: none;
  }
}

.progress .percentage {
  font-size: 14px !important;
  text-align: center;
  position: absolute;
  right: 1px;
  top: -24px;
  z-index: 9;
  color: #797F89;
  font-weight: 700;
}

.dropcap {
  display: block;
  float: left;
  font-size: 40px;
  line-height: 34px;
  color: #444;
  margin: 6px 8px 0 0;
}

.dropcap.border-dropcap {
  border: 2px solid #444;
  width: 46px;
  height: 46px;
  font-size: 28px;
  font-weight: 500;
  line-height: 42px;
  text-align: center;
  border-radius: 2px;
  margin: 8px 12px 0 0;
}

.dropcap.bg-dropcap {
  background-color: #444;
  color: #fff;
  width: 48px;
  height: 48px;
  font-size: 28px;
  font-weight: 500;
  line-height: 48px;
  text-align: center;
  border-radius: 2px;
  margin: 8px 12px 0 0;
}

.dropcap.circle-dropcap {
  border-radius: 50%;
  border: 2px solid #444;
  width: 46px;
  height: 46px;
  font-size: 28px;
  font-weight: 500;
  line-height: 42px;
  text-align: center;
  border-radius: 2px;
  margin: 8px 12px 0 0;
  border-radius: 50%;
}

/* This is required to win over specificity of #content h2 */
.links .comment-add,
.links .comment-forbidden {
  display: none;
}

ul.links.inline:has(> li.comment-forbidden:only-child) {
  display: none;
}

#node-single-comment {
  margin-top: 30px;
}

#node-single-comment h2 {
  margin-top: 30px;
  margin-bottom: 1em;
  font-size: 22px;
  position: relative;
  padding-bottom: 8px;
}

#node-single-comment h2:before {
  content: "";
  position: absolute;
  width: 45px;
  height: 2px;
  background: var(--ziston-theme-color);
  border-radius: 5px;
  left: 0;
  bottom: 0;
  z-index: 1;
}

#node-single-comment #comment-form a[id*="format-help-about"], #node-single-comment #comment-form .js-filter-guidelines {
  display: none;
}

#node-single-comment #comment-form .js-filter-wrapper {
  margin-top: 15px;
}

#node-single-comment #comment-form .form-item {
  margin-bottom: 20px;
}

#node-single-comment #comment-form .form-item.js-form-type-textarea {
  margin: 0;
}

#node-single-comment #comment-form .form-item label {
  text-transform: uppercase;
  font-size: 14px;
  display: block;
  font-weight: 600;
  font-family: var(--ziston-heading-font-family);
}

#node-single-comment #comment-form ul > li {
  list-style-type: none;
}

#node-single-comment input[type*='text'], #node-single-comment textarea {
  width: 100%;
}

.comment-wrapper h2.comment-form__title {
  margin-bottom: 1em;
}

.field-node--comment {
  font-size: 0.934em;
}

.comment {
  margin-bottom: 19px;
  vertical-align: top;
  display: table;
}

[dir="rtl"] .comment {
  direction: rtl;
}

.comment__meta {
  padding: 0 30px 0 0;
  /* LTR */
  font-size: 1.071em;
  width: 115px;
}

@media (max-width: 575.98px) {
  .comment__meta {
    width: 90px;
  }
}

[dir="rtl"] .comment__meta {
  padding: 0 0 0 30px;
}

.comment__attribution img {
  border: 1px solid #d3d7d9;
}

/* This is required to win over specificity of .field--type-image img */
.comment .field--name-user-picture img {
  margin: 0;
}

.comment__author .username {
  white-space: nowrap;
  text-transform: uppercase;
  color: #000;
  font-weight: 700;
  font-size: 12px;
}

.comment__author {
  margin: 4px 0;
  line-height: 1.2;
  text-transform: uppercase;
  color: #000;
  font-weight: 700;
  font-size: 12px;
}

.comment__time {
  margin-bottom: 4px;
  color: #68696b;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.733em;
  line-height: 1.2;
}

.comment__permalink {
  font-size: 0.733em;
  line-height: 1.2;
}

.comment__content {
  position: relative;
  display: table-cell;
  padding: 10px 25px 10px 25px;
  vertical-align: top;
  width: 100%;
  border: 1px solid #d3d7d9;
  font-size: 0.929em;
  line-height: 1.6;
  word-break: break-all;
}

.comment__content h3 a {
  font-size: 18px;
  font-weight: 700;
}

.comment__content .links.inline {
  margin-top: 10px;
}

.comment__content .links.inline > li {
  float: left;
}

.comment__content .links.inline > li a {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
}

.comment__content:before {
  content: '';
  position: absolute;
  right: 100%;
  /* LTR */
  top: 20px;
  border-top: 20px solid transparent;
  border-right: 20px solid #d3d7d9;
  /* LTR */
  border-bottom: 20px solid transparent;
}

[dir="rtl"] .comment__content:before {
  right: auto;
  left: 100%;
  border-right: none;
  border-left: 20px solid #d3d7d9;
}

.comment__content:after {
  content: '';
  position: absolute;
  right: 100%;
  /* LTR */
  top: 20px;
  border-top: 20px solid transparent;
  border-right: 20px solid #fff;
  /* LTR */
  border-bottom: 20px solid transparent;
  margin-right: -1px;
  /* LTR */
}

[dir="rtl"] .comment__content:after {
  right: auto;
  left: 100%;
  border-right: none;
  border-left: 20px solid #fff;
  margin-right: 0;
  margin-left: -1px;
}

.comment__content h3 {
  margin-top: 0.94em;
  margin-bottom: 0.45em;
  font-size: 1.171em;
}

.comment__content nav {
  padding-top: 1px;
}

.indented {
  margin-left: 40px;
  /* LTR */
}

[dir="rtl"] .indented {
  margin-right: 40px;
  margin-left: 0;
}

.comment .links {
  padding: 0 0 0.25em 0;
}

.comment .links li {
  padding: 0 0.5em 0 0;
  /* LTR */
  font-size: 1.08em;
}

[dir="rtl"] .comment .links li {
  padding: 0 0 0 0.5em;
}

.comment--unpublished {
  margin-right: 5px;
  /* LTR */
  padding: 5px 2px 5px 5px;
  /* LTR */
  background: #fff4f4;
}

[dir="rtl"] .comment--unpublished {
  margin-left: 5px;
  margin-right: 0;
  padding: 5px 5px 5px 2px;
}

/**
 * @todo: unpublished nodes have class .node--unpublished.
 * change this to .comment--unpublished.
 */
.unpublished .comment-text .comment-arrow {
  border-left: 1px solid #fff4f4;
  border-right: 1px solid #fff4f4;
}

.unpublished {
  padding: 20px 15px 0;
}

.comment-footer {
  display: table-row;
}

.comment--unpublished .comment__text:after,
.node--unpublished .comment__text:after {
  border-right-color: #fff4f4;
  /* LTR */
}

[dir="rtl"] .comment--unpublished .comment__content:after,
[dir="rtl"] .node--unpublished .comment__content:after {
  border-left-color: #fff4f4;
}

.mailchimp-signup-subscribe-form .mailchimp-newsletter-mergefields {
  margin-top: 10px;
}

.mailchimp-signup-subscribe-form .mailchimp-newsletter-mergefields label {
  display: none;
}

.mailchimp-signup-subscribe-form .mailchimp-newsletter-mergefields input {
  width: 100%;
  border: none;
  padding: 2px 10px;
  line-height: 38px;
  font-size: 16px;
}

.mailchimp-signup-subscribe-form .form-actions {
  margin-top: 15px;
}

.mailchimp-signup-subscribe-form .block-content form {
  position: relative;
}

.mailchimp-signup-subscribe-form .block-content form .mailchimp-newsletter-mergefields input {
  line-height: 65px;
  padding: 0 10px;
  border: 0 !important;
  border-radius: 5px;
}

.mailchimp-signup-subscribe-form .block-content form .form-actions {
  right: 0;
  top: 0;
  z-index: 1;
  margin-top: 0;
}

.mailchimp-signup-subscribe-form .block-content form .form-actions input {
  height: 65px;
  width: 100%;
  border-radius: 5px;
  text-align: center;
}

form summary {
  background: #F0F3F6;
  color: #000;
  padding: 4px 15px;
  font-weight: 500;
  margin-bottom: 15px;
}

form summary a {
  color: #000 !important;
}

form summary a:hover, form summary a:focus {
  color: #000 !important;
}

form .form-item .description {
  font-size: 14px;
}

form .form-item:not(.js-form-type-checkbox) label {
  width: 100%;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 0;
  /* margin-top: 6px; */
  color: var(--body-color);
}

.form-control {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.hide-label label {
  background: none;
  clip: rect(1px);
}

.exposed-filters .form-item {
  margin-bottom: 10px;
  margin-top: 0;
}

#article-admin-filter ul {
  padding: .5em 0;
}

#article-admin-filter ul li {
  list-style: none;
}

#edit-operation-wrapper select {
  margin: .5em;
}

div.resizable-textarea textarea {
  margin-top: 0;
  border: 1px solid #dee2e6;
}

.search-advanced .criterion {
  float: none;
  margin: 0 5px;
}

#edit-keywords-fieldset .form-item:first-child {
  margin-top: 5px;
}

#user-admin-filter ul li {
  list-style: none;
}

.field-type-text-long fieldset {
  padding: 10px 0;
  border: #dee2e6;
}

.field-type-text-long fieldset .form-item {
  margin: 0;
  padding: 0 0 0 15px;
}

#comment-form label {
  display: inline-block;
  font-size: 18px;
  font-weight: normal;
  margin-bottom: 5px;
}

#contact-site-form .form-checkbox {
  margin-left: 0;
}

#comment-form-wrapper .form-item label {
  min-width: 120px;
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
}

.contact-message-form {
  margin: 0 auto;
}

.contact-message-form div[id*="edit-name"], .contact-message-form div[id*="edit-mail"], .contact-message-form .js-form-item-mail {
  height: 45px;
  line-height: 45px;
  padding: 0 20px;
  border: 1px solid #dee2e6;
  border-radius: 4px;
}

.contact-message-form .form-item {
  margin-bottom: 30px;
  color: #797F89;
}

.contact-message-form .form-item label {
  font-size: 12px;
  display: block;
  text-transform: uppercase;
}

.contact-message-form .form-item #edit-copy {
  float: left;
  margin-right: 5px;
}

.contact-message-form .form-item input[type='text'], .contact-message-form .form-item input[type='email'], .contact-message-form .form-item textarea {
  width: 100%;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  position: relative;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  height: 45px;
  -webkit-box-shadow: none !important;
  -ms-box-shadow: none !important;
  -o-box-shadow: none !important;
  box-shadow: none !important;
  padding-left: 0 20px;
}

@media (prefers-reduced-motion: reduce) {
  .contact-message-form .form-item input[type='text'], .contact-message-form .form-item input[type='email'], .contact-message-form .form-item textarea {
    -webkit-transition: none;
    transition: none;
  }
}

.contact-message-form .form-item input[type='text']::-webkit-input-placeholder, .contact-message-form .form-item input[type='email']::-webkit-input-placeholder, .contact-message-form .form-item textarea::-webkit-input-placeholder {
  color: #797F89;
  text-transform: capitalize;
}

.contact-message-form .form-item input[type='text']:-moz-placeholder, .contact-message-form .form-item input[type='email']:-moz-placeholder, .contact-message-form .form-item textarea:-moz-placeholder {
  color: #797F89;
  text-transform: capitalize;
  opacity: 1;
  filter: alpha(opacity=100);
}

.contact-message-form .form-item input[type='text']::-moz-placeholder, .contact-message-form .form-item input[type='email']::-moz-placeholder, .contact-message-form .form-item textarea::-moz-placeholder {
  color: #797F89;
  text-transform: capitalize;
  opacity: 1;
  filter: alpha(opacity=100);
}

.contact-message-form .form-item input[type='text']:-ms-input-placeholder, .contact-message-form .form-item input[type='email']:-ms-input-placeholder, .contact-message-form .form-item textarea:-ms-input-placeholder {
  color: #797F89;
  text-transform: capitalize;
}

.contact-message-form .form-item input[type='text']:focus, .contact-message-form .form-item input[type='email']:focus, .contact-message-form .form-item textarea:focus {
  border-color: var(--ziston-theme-color);
}

.contact-message-form .form-item textarea {
  height: 200px;
  padding-top: 15px;
}

@media (max-width: 575.98px) {
  .contact-message-form .form-item textarea {
    height: 120px;
  }
}

.contact-message-form .form-item-copy {
  margin-bottom: 10px !important;
}

.contact-message-form #edit-actions {
  width: 100%;
  text-align: center;
}

.contact-message-form #edit-actions::after {
  display: block;
  clear: both;
  content: "";
}

.contact-message-form #edit-preview {
  display: none;
}

.text-light .contact-message-form #edit-name, .text-light .contact-message-form #edit-mail, .text-light .contact-message-form input[type='text'], .text-light .contact-message-form input[type='email'], .text-light .contact-message-form textarea {
  background: none;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.text-light .contact-message-form #edit-name::-webkit-input-placeholder, .text-light .contact-message-form #edit-mail::-webkit-input-placeholder, .text-light .contact-message-form input[type='text']::-webkit-input-placeholder, .text-light .contact-message-form input[type='email']::-webkit-input-placeholder, .text-light .contact-message-form textarea::-webkit-input-placeholder {
  color: #fff;
  text-transform: capitalize;
}

.text-light .contact-message-form #edit-name:-moz-placeholder, .text-light .contact-message-form #edit-mail:-moz-placeholder, .text-light .contact-message-form input[type='text']:-moz-placeholder, .text-light .contact-message-form input[type='email']:-moz-placeholder, .text-light .contact-message-form textarea:-moz-placeholder {
  color: #fff;
  text-transform: capitalize;
  opacity: 1;
  filter: alpha(opacity=100);
}

.text-light .contact-message-form #edit-name::-moz-placeholder, .text-light .contact-message-form #edit-mail::-moz-placeholder, .text-light .contact-message-form input[type='text']::-moz-placeholder, .text-light .contact-message-form input[type='email']::-moz-placeholder, .text-light .contact-message-form textarea::-moz-placeholder {
  color: #fff;
  text-transform: capitalize;
  opacity: 1;
  filter: alpha(opacity=100);
}

.text-light .contact-message-form #edit-name:-ms-input-placeholder, .text-light .contact-message-form #edit-mail:-ms-input-placeholder, .text-light .contact-message-form input[type='text']:-ms-input-placeholder, .text-light .contact-message-form input[type='email']:-ms-input-placeholder, .text-light .contact-message-form textarea:-ms-input-placeholder {
  color: #fff;
  text-transform: capitalize;
}

.webform-submission-form .form-content-inner {
  max-width: 900px;
  margin: 0 -15px;
  padding: 0;
}

.webform-submission-form .form-item {
  margin-bottom: 20px;
  position: relative;
}

.webform-submission-form .form-item::after {
  display: block;
  clear: both;
  content: "";
}

.webform-submission-form .form-item label {
  font-size: 16px;
  font-weight: 700;
  color: #161c26;
  font-family: var(--ziston-heading-font-family);
}

.webform-submission-form .form-item input, .webform-submission-form .form-item textarea, .webform-submission-form .form-item select {
  width: 100%;
  background: none;
  border: none;
  font-size: 14px;
  padding-left: 15px;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  margin: 0 !important;
}

#webform-submission-ypovoli-erotisis-gia-pigi-hrimat-add-form{
   background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 30px 30px 80px 30px;
  margin-bottom: 30px;
}

#webform-submission-ypovoli-erotisis-gia-pigi-hrimat-add-form .form-text{
  margin: 0;
}

#webform-submission-ypovoli-erotisis-gia-pigi-hrimat-add-form #edit-minyma{
  height: 100px;
}

.webform-submission-form .form-item input::-webkit-input-placeholder, .webform-submission-form .form-item textarea::-webkit-input-placeholder, .webform-submission-form .form-item select::-webkit-input-placeholder {
  color: #797F89;
}

.webform-submission-form .form-item input:-moz-placeholder, .webform-submission-form .form-item textarea:-moz-placeholder, .webform-submission-form .form-item select:-moz-placeholder {
  color: #797F89;
  opacity: 1;
  filter: alpha(opacity=100);
}

.webform-submission-form .form-item input::-moz-placeholder, .webform-submission-form .form-item textarea::-moz-placeholder, .webform-submission-form .form-item select::-moz-placeholder {
  color: #797F89;
  opacity: 1;
  filter: alpha(opacity=100);
}

.webform-submission-form .form-item input:-ms-input-placeholder, .webform-submission-form .form-item textarea:-ms-input-placeholder, .webform-submission-form .form-item select:-ms-input-placeholder {
  color: #797F89;
}

.webform-submission-form .form-item input:focus, .webform-submission-form .form-item textarea:focus, .webform-submission-form .form-item select:focus {
  border-color: var(--ziston-theme-color);
}

.webform-submission-form .form-item input {
  line-height: 55px;
}

.webform-submission-form .form-item select {
  height: 55px;
  margin-top: 0.25rem;
}

.webform-submission-form .form-actions {
  width: 100%;
  float: left;
}

.text-light .webform-submission-form .form-item:after {
  color: #fff;
}

.text-light .webform-submission-form .form-item input, .text-light .webform-submission-form .form-item textarea {
  background: none;
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.text-light .webform-submission-form .form-item input::-webkit-input-placeholder, .text-light .webform-submission-form .form-item textarea::-webkit-input-placeholder {
  color: #fff;
}

.text-light .webform-submission-form .form-item input:-moz-placeholder, .text-light .webform-submission-form .form-item textarea:-moz-placeholder {
  color: #fff;
  opacity: 1;
  filter: alpha(opacity=100);
}

.text-light .webform-submission-form .form-item input::-moz-placeholder, .text-light .webform-submission-form .form-item textarea::-moz-placeholder {
  color: #fff;
  opacity: 1;
  filter: alpha(opacity=100);
}

.text-light .webform-submission-form .form-item input:-ms-input-placeholder, .text-light .webform-submission-form .form-item textarea:-ms-input-placeholder {
  color: #fff;
}

.text-light .webform-submission-form .form-actions input.form-submit {
  border-color: #fff;
  color: #fff;
  background: #fff;
  color: #000;
}

.text-light .webform-submission-form .form-actions input.form-submit:hover {
  background: rgba(255, 255, 255, 0.8);
}

.text-light .webform-submission-form label {
  color: #fff;
}

form .mailchimp-newsletter-mergefields .form-item {
  margin-bottom: 15px;
}

form .mailchimp-newsletter-mergefields .form-item input[type="text"],
form .mailchimp-newsletter-mergefields .form-item input[type="tel"],
form .mailchimp-newsletter-mergefields .form-item input[type="password"],
form .mailchimp-newsletter-mergefields .form-item input[type="email"],
form .mailchimp-newsletter-mergefields .form-item textarea, form .mailchimp-newsletter-mergefields .form-item select {
  width: 100%;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  border: 1px solid #dee2e6;
}

@media (prefers-reduced-motion: reduce) {
  form .mailchimp-newsletter-mergefields .form-item input[type="text"],
  form .mailchimp-newsletter-mergefields .form-item input[type="tel"],
  form .mailchimp-newsletter-mergefields .form-item input[type="password"],
  form .mailchimp-newsletter-mergefields .form-item input[type="email"],
  form .mailchimp-newsletter-mergefields .form-item textarea, form .mailchimp-newsletter-mergefields .form-item select {
    -webkit-transition: none;
    transition: none;
  }
}

form .mailchimp-newsletter-mergefields .form-item input[type="text"]:focus, form .mailchimp-newsletter-mergefields .form-item input[type="text"]:active, form .mailchimp-newsletter-mergefields .form-item input[type="text"]:hover,
form .mailchimp-newsletter-mergefields .form-item input[type="tel"]:focus,
form .mailchimp-newsletter-mergefields .form-item input[type="tel"]:active,
form .mailchimp-newsletter-mergefields .form-item input[type="tel"]:hover,
form .mailchimp-newsletter-mergefields .form-item input[type="password"]:focus,
form .mailchimp-newsletter-mergefields .form-item input[type="password"]:active,
form .mailchimp-newsletter-mergefields .form-item input[type="password"]:hover,
form .mailchimp-newsletter-mergefields .form-item input[type="email"]:focus,
form .mailchimp-newsletter-mergefields .form-item input[type="email"]:active,
form .mailchimp-newsletter-mergefields .form-item input[type="email"]:hover,
form .mailchimp-newsletter-mergefields .form-item textarea:focus,
form .mailchimp-newsletter-mergefields .form-item textarea:active,
form .mailchimp-newsletter-mergefields .form-item textarea:hover, form .mailchimp-newsletter-mergefields .form-item select:focus, form .mailchimp-newsletter-mergefields .form-item select:active, form .mailchimp-newsletter-mergefields .form-item select:hover {
  border: 1px solid var(--ziston-theme-color);
}

.block {
  background: transparent;
  /*margin-bottom: 30px;*/
}

.block .block {
  margin-bottom: 0 !important;
}

.block .block-title {
  background: none;
  position: relative;
  font-size: 20px;
  color: #000;
  z-index: 1;
  margin-bottom: 25px;
  font-weight: 600;
}

@media (max-width: 767.98px) {
  .block .block-title {
    font-size: 18px;
  }
}

.block.block-system-main-block {
  margin-bottom: 0;
}

.block.block-system-breadcrumb-block {
  overflow: visible;
  /*margin-bottom: 20px;*/
}

.block.block-none, .block.no-padding {
  background: none !important;
  padding: 0 !important;
}

.block.block-none .block-content, .block.no-padding .block-content {
  padding: 0 !important;
}

.block.no-title {
  margin-top: 0;
  border: none;
}

.block.no-title:before {
  content: none;
}

.block#block-system-main {
  padding-top: 10px;
}

.block.block-local-tasks-block {
  margin-bottom: 0;
}

.block.no-title {
  border: none;
}

.block.no-title > .block-title, .block.no-title > div > .block-title {
  padding: 0;
  margin: 0;
  border: none;
}

.block.no-title > .block-title:before, .block.no-title > div > .block-title:before {
  content: none;
}

.block.site-branding {
  margin-bottom: 0;
}

.block-local-tasks-block {
  position: relative;
  z-index: 99;
}

.drupal-tabs {
  border-bottom: 1px solid #dee2e6;
}

.drupal-tabs::after {
  display: block;
  clear: both;
  content: "";
}

.drupal-tabs a {
  font-size: 14px;
}

.drupal-tabs .is-active a {
  color: var(--ziston-theme-color);
}

.help {
  position: relative;
  z-index: 1;
  display: none;
  width: 100%;
}

.help.gav-help-region .drupal-tabs {
  background: rgba(255, 255, 255, 0.6);
  padding: 15px;
}

.help .drupal-tabs {
  padding: 10px 0;
  margin-bottom: 25px;
}

.help .messages__wrapper {
  padding: 10px;
  border: 1px solid #5BC0DE;
}

.region-main-menu .block {
  background: transparent;
}

.region-main-menu .block .block-content {
  padding: 0;
}

.sidebar .block {
  background: #F0F3F6;
  padding: 30px;
}

.sidebar .block.block-full {
  padding: 0;
}

.sidebar .block .block-title {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  letter-spacing: 1px;
  position: relative;
}

.sidebar .block .block-title:after {
  content: '';
  width: 45px;
  height: 2px;
  background: var(--ziston-theme-color-second);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.sidebar .block-menu::after {
  display: block;
  clear: both;
  content: "";
}

.sidebar .block-menu ul {
  padding-left: 0 !important;
}

.sidebar .block-menu ul li {
  border: none;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  float: left;
  width: 100%;
  list-style-type: none;
}

.sidebar .block-menu ul li a {
  padding: 6px 0;
  display: block;
  overflow: hidden;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  position: relative;
  font-weight: 400;
  letter-spacing: 0;
}

@media (prefers-reduced-motion: reduce) {
  .sidebar .block-menu ul li a {
    -webkit-transition: none;
    transition: none;
  }
}

.sidebar .block-menu ul li a:hover, .sidebar .block-menu ul li a:focus, .sidebar .block-menu ul li a:active {
  color: var(--ziston-theme-color);
}

.sidebar .block-menu ul li.menu-item--active-trail > a {
  color: var(--ziston-theme-color) !important;
}

.recent-comment-block .views-field-picture {
  margin-right: 10px;
}

.recent-comment-block .views-field-title {
  margin-top: -4px;
}

.recent-comment-block .views-field-title a {
  font-weight: 700;
  text-transform: uppercase;
}

.recent-comment-block .views-field-name {
  color: #a4a4a4;
}

.recent-comment-block .views-field-name a {
  color: #a4a4a4;
}

.list-tags .view-list ul > li {
  float: left;
  border: 1px solid #dee2e6;
  display: inline-block;
  width: auto !important;
  padding: 0 !important;
  margin: 0 10px 10px 0 !important;
}

.list-tags .view-list ul > li a {
  padding: 6px 10px;
  display: block;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

@media (prefers-reduced-motion: reduce) {
  .list-tags .view-list ul > li a {
    -webkit-transition: none;
    transition: none;
  }
}

.list-tags .view-list ul > li:hover {
  background: var(--ziston-theme-color);
}

.list-tags .view-list ul > li:hover a {
  color: #fff;
}

.contact-info {
  max-width: 330px;
}

.contact-info .logo-footer {
  margin-bottom: 25px;
  max-width: 450px;
}

.contact-info .contact-phone-box {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px;
  padding-top: 30px;
}

.contact-info .contact-phone-box .content-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contact-info .contact-phone-box .content-inner .icon {
  font-size: 50px;
  color: var(--ziston-theme-color);
  line-height: 1;
}

.contact-info .contact-phone-box .content-inner .content-right {
  padding-left: 15px;
}

.contact-info .contact-phone-box .content-inner .content-right .title {
  font-size: 14px;
  text-transform: uppercase;
  color: #959CA7;
  font-weight: 600;
  margin: 0;
}

.contact-info .contact-phone-box .content-inner .content-right .desc {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.social-icon a {
  background: none;
  width: auto;
  height: auto;
  line-height: 1;
  margin-right: 20px;
  font-size: 18px;
}

.social-topbar a {
  font-size: 13px;
  font-weight: 500;
  display: inline-block;
  margin-left: 25px;
}

.social-topbar a:first-child {
  margin-left: 0;
}

.social-topbar a i {
  margin-right: 5px;
}

.block-dropdown-language {
  position: relative;
  z-index: 12;
  font-size: 13px;
  font-weight: 500;
  width: 125px;
  height: 30px;
}

.block-dropdown-language .dropbutton-wrapper {
  position: relative;
}

.block-dropdown-language .dropbutton-wrapper:hover {
  cursor: pointer;
}

.block-dropdown-language .dropbutton-wrapper ul.dropbutton {
  position: absolute;
  top: -5px;
  right: 0;
  display: inline-block;
  float: right;
  z-index: 9;
  padding: 10px 28px 10px 35px;
}

.block-dropdown-language .dropbutton-wrapper ul.dropbutton:after {
  content: "\f0ac";
  font-family: "Font Awesome 5 Free";
  left: 10px;
  top: 8px;
  position: absolute;
  z-index: 1;
  color: var(--ziston-theme-color);
  font-weight: 900;
  font-size: 16px;
}

.block-dropdown-language .dropbutton-wrapper ul.dropbutton > li {
  color: var(--topbar-color);
}

.block-dropdown-language .dropbutton-wrapper ul.dropbutton > li a {
  color: var(--topbar-color);
  text-align: right;
}

.block-dropdown-language .dropbutton-wrapper ul.dropbutton > li.dropbutton-toggle .dropbutton-arrow {
  margin-top: -2px;
  border-width: 5px;
  border-top-color: var(--topbar-color);
}

.block-dropdown-language .dropbutton-wrapper.open {
  background: transparent;
  padding-top: 0;
}

.block-dropdown-language .dropbutton-wrapper.open ul.dropbutton {
  -webkit-box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  background: #fff;
}

.block-dropdown-language .dropbutton-wrapper .dropbutton-toggle button:hover,
.block-dropdown-language .dropbutton-wrapper .dropbutton-toggle button:focus,
.block-dropdown-language .dropbutton-wrapper .dropbutton-toggle button:active {
  -webkit-transform: none !important;
  transform: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

.block-dropdown-language .dropbutton-wrapper.open ul.dropbutton > li {
  color: var(--topbar-color);
  padding: 4px 0;
  font-size: 14px;
}

.block-dropdown-language .dropbutton-wrapper.open ul.dropbutton > li:first-child {
  padding-top: 0;
}

.block-dropdown-language .dropbutton-wrapper.open ul.dropbutton > li > a {
  color: var(--topbar-color);
}

.block-dropdown-language .dropbutton-wrapper.open ul.dropbutton > li > a:hover {
  color: var(--topbar-color) !important;
  background: transparent !important;
}

.block-dropdown-language .dropbutton-wrapper ul.dropbutton > li a:hover,
.block-dropdown-language .dropbutton-wrapper ul.dropbutton > li a:focus,
.block-dropdown-language .dropbutton-wrapper ul.dropbutton > li a:active {
  color: var(--topbar-color) !important;
  background: transparent !important;
  text-decoration: none;
}

.block-dropdown-language .dropbutton-wrapper.open .dropbutton-arrow {
  margin-top: 1px !important;
}

.most-search-block {
  text-align: center;
  margin-top: 20px;
}

.most-search-block a {
  margin-top: 30px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  padding: 0 15px;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  .most-search-block a {
    -webkit-transition: none;
    transition: none;
  }
}

.most-search-block a i {
  margin-right: 10px;
}

.most-search-block a:hover {
  color: var(--ziston-theme-color);
}

.text-with-arrow {
  font-size: 40px;
  color: #fff;
  font-family: "Sacramento";
  text-align: center;
  padding-top: 115px;
  line-height: 40px;
}

@media (max-width: 767.98px) {
  .text-with-arrow {
    padding-top: 68px;
    font-size: 35px;
  }
}

.text-with-arrow span {
  display: inline-block;
  position: relative;
}

.text-with-arrow span:after {
  content: '';
  width: 64px;
  height: 110px;
  position: absolute;
  bottom: 90%;
  left: -85px;
  background: url("../images/line-arrow.png") no-repeat center center transparent;
  background-size: contain;
}

@media (max-width: 767.98px) {
  .text-with-arrow span:after {
    bottom: calc(100% + 6px);
    height: 68px;
    left: -25px;
  }
}

/* #Block grid
--------------------------------------------------------------- */
.item-columns {
  padding: 0 15px;
}

[class*="block-grid-"] {
  display: block;
  margin: 0 -10px;
  padding: 0;
}

[class*="block-grid-"]:before, [class*="block-grid-"]:after {
  display: table;
  content: " ";
}

[class*="block-grid-"]:after {
  clear: both;
}

[class*="block-grid-"] > div {
  display: block;
  float: left;
  height: auto;
  padding: 0 10px;
  width: 100%;
}

[class*="block-grid-"] > div:after {
  display: block;
}

@media (min-width: 640px) {
  .xs-block-grid-1 > div {
    width: 100%;
  }
  .xs-block-grid-1 > div:nth-of-type(1n) {
    clear: none;
  }
  .xs-block-grid-1 > div:nth-of-type(1n):after {
    display: block;
  }
  .xs-block-grid-1 > div:nth-of-type(1n+1) {
    clear: both;
  }
  .xs-block-grid-1 > div:nth-of-type(1n+1):after {
    display: none;
  }
  .xs-block-grid-1 > div:nth-last-child(-n+1):before {
    content: none;
  }
  .xs-block-grid-2 > div {
    width: 50%;
  }
  .xs-block-grid-2 > div:nth-of-type(1n) {
    clear: none;
  }
  .xs-block-grid-2 > div:nth-of-type(1n):after {
    display: block;
  }
  .xs-block-grid-2 > div:nth-of-type(2n+1) {
    clear: both;
  }
  .xs-block-grid-2 > div:nth-of-type(2n+1):after {
    display: none;
  }
  .xs-block-grid-2 > div:nth-last-child(-n+2):before {
    content: none;
  }
  .xs-block-grid-3 > div {
    width: 33.33333%;
  }
  .xs-block-grid-3 > div:nth-of-type(1n) {
    clear: none;
  }
  .xs-block-grid-3 > div:nth-of-type(1n):after {
    display: block;
  }
  .xs-block-grid-3 > div:nth-of-type(3n+1) {
    clear: both;
  }
  .xs-block-grid-3 > div:nth-of-type(3n+1):after {
    display: none;
  }
  .xs-block-grid-3 > div:nth-last-child(-n+3):before {
    content: none;
  }
  .xs-block-grid-4 > div {
    width: 25%;
  }
  .xs-block-grid-4 > div:nth-of-type(1n) {
    clear: none;
  }
  .xs-block-grid-4 > div:nth-of-type(1n):after {
    display: block;
  }
  .xs-block-grid-4 > div:nth-of-type(4n+1) {
    clear: both;
  }
  .xs-block-grid-4 > div:nth-of-type(4n+1):after {
    display: none;
  }
  .xs-block-grid-4 > div:nth-last-child(-n+4):before {
    content: none;
  }
  .xs-block-grid-5 > div {
    width: 20%;
  }
  .xs-block-grid-5 > div:nth-of-type(1n) {
    clear: none;
  }
  .xs-block-grid-5 > div:nth-of-type(1n):after {
    display: block;
  }
  .xs-block-grid-5 > div:nth-of-type(5n+1) {
    clear: both;
  }
  .xs-block-grid-5 > div:nth-of-type(5n+1):after {
    display: none;
  }
  .xs-block-grid-5 > div:nth-last-child(-n+5):before {
    content: none;
  }
  .xs-block-grid-6 > div {
    width: 16.66667%;
  }
  .xs-block-grid-6 > div:nth-of-type(1n) {
    clear: none;
  }
  .xs-block-grid-6 > div:nth-of-type(1n):after {
    display: block;
  }
  .xs-block-grid-6 > div:nth-of-type(6n+1) {
    clear: both;
  }
  .xs-block-grid-6 > div:nth-of-type(6n+1):after {
    display: none;
  }
  .xs-block-grid-6 > div:nth-last-child(-n+6):before {
    content: none;
  }
  .xs-block-grid-7 > div {
    width: 14.28571%;
  }
  .xs-block-grid-7 > div:nth-of-type(1n) {
    clear: none;
  }
  .xs-block-grid-7 > div:nth-of-type(1n):after {
    display: block;
  }
  .xs-block-grid-7 > div:nth-of-type(7n+1) {
    clear: both;
  }
  .xs-block-grid-7 > div:nth-of-type(7n+1):after {
    display: none;
  }
  .xs-block-grid-7 > div:nth-last-child(-n+7):before {
    content: none;
  }
  .xs-block-grid-8 > div {
    width: 12.5%;
  }
  .xs-block-grid-8 > div:nth-of-type(1n) {
    clear: none;
  }
  .xs-block-grid-8 > div:nth-of-type(1n):after {
    display: block;
  }
  .xs-block-grid-8 > div:nth-of-type(8n+1) {
    clear: both;
  }
  .xs-block-grid-8 > div:nth-of-type(8n+1):after {
    display: none;
  }
  .xs-block-grid-8 > div:nth-last-child(-n+8):before {
    content: none;
  }
  .xs-block-grid-9 > div {
    width: 11.11111%;
  }
  .xs-block-grid-9 > div:nth-of-type(1n) {
    clear: none;
  }
  .xs-block-grid-9 > div:nth-of-type(1n):after {
    display: block;
  }
  .xs-block-grid-9 > div:nth-of-type(9n+1) {
    clear: both;
  }
  .xs-block-grid-9 > div:nth-of-type(9n+1):after {
    display: none;
  }
  .xs-block-grid-9 > div:nth-last-child(-n+9):before {
    content: none;
  }
  .xs-block-grid-10 > div {
    width: 10%;
  }
  .xs-block-grid-10 > div:nth-of-type(1n) {
    clear: none;
  }
  .xs-block-grid-10 > div:nth-of-type(1n):after {
    display: block;
  }
  .xs-block-grid-10 > div:nth-of-type(10n+1) {
    clear: both;
  }
  .xs-block-grid-10 > div:nth-of-type(10n+1):after {
    display: none;
  }
  .xs-block-grid-10 > div:nth-last-child(-n+10):before {
    content: none;
  }
  .xs-block-grid-11 > div {
    width: 9.09091%;
  }
  .xs-block-grid-11 > div:nth-of-type(1n) {
    clear: none;
  }
  .xs-block-grid-11 > div:nth-of-type(1n):after {
    display: block;
  }
  .xs-block-grid-11 > div:nth-of-type(11n+1) {
    clear: both;
  }
  .xs-block-grid-11 > div:nth-of-type(11n+1):after {
    display: none;
  }
  .xs-block-grid-11 > div:nth-last-child(-n+11):before {
    content: none;
  }
  .xs-block-grid-12 > div {
    width: 8.33333%;
  }
  .xs-block-grid-12 > div:nth-of-type(1n) {
    clear: none;
  }
  .xs-block-grid-12 > div:nth-of-type(1n):after {
    display: block;
  }
  .xs-block-grid-12 > div:nth-of-type(12n+1) {
    clear: both;
  }
  .xs-block-grid-12 > div:nth-of-type(12n+1):after {
    display: none;
  }
  .xs-block-grid-12 > div:nth-last-child(-n+12):before {
    content: none;
  }
}

@media (min-width: 768px) {
  .sm-block-grid-1 > div {
    width: 100%;
  }
  .sm-block-grid-1 > div:nth-of-type(1n) {
    clear: none;
  }
  .sm-block-grid-1 > div:nth-of-type(1n):after {
    display: block;
  }
  .sm-block-grid-1 > div:nth-of-type(1n+1) {
    clear: both;
  }
  .sm-block-grid-1 > div:nth-of-type(1n+1):after {
    display: none;
  }
  .sm-block-grid-1 > div:nth-last-child(-n+1):before {
    content: none;
  }
  .sm-block-grid-2 > div {
    width: 50%;
  }
  .sm-block-grid-2 > div:nth-of-type(1n) {
    clear: none;
  }
  .sm-block-grid-2 > div:nth-of-type(1n):after {
    display: block;
  }
  .sm-block-grid-2 > div:nth-of-type(2n+1) {
    clear: both;
  }
  .sm-block-grid-2 > div:nth-of-type(2n+1):after {
    display: none;
  }
  .sm-block-grid-2 > div:nth-last-child(-n+2):before {
    content: none;
  }
  .sm-block-grid-3 > div {
    width: 33.33333%;
  }
  .sm-block-grid-3 > div:nth-of-type(1n) {
    clear: none;
  }
  .sm-block-grid-3 > div:nth-of-type(1n):after {
    display: block;
  }
  .sm-block-grid-3 > div:nth-of-type(3n+1) {
    clear: both;
  }
  .sm-block-grid-3 > div:nth-of-type(3n+1):after {
    display: none;
  }
  .sm-block-grid-3 > div:nth-last-child(-n+3):before {
    content: none;
  }
  .sm-block-grid-4 > div {
    width: 25%;
  }
  .sm-block-grid-4 > div:nth-of-type(1n) {
    clear: none;
  }
  .sm-block-grid-4 > div:nth-of-type(1n):after {
    display: block;
  }
  .sm-block-grid-4 > div:nth-of-type(4n+1) {
    clear: both;
  }
  .sm-block-grid-4 > div:nth-of-type(4n+1):after {
    display: none;
  }
  .sm-block-grid-4 > div:nth-last-child(-n+4):before {
    content: none;
  }
  .sm-block-grid-5 > div {
    width: 20%;
  }
  .sm-block-grid-5 > div:nth-of-type(1n) {
    clear: none;
  }
  .sm-block-grid-5 > div:nth-of-type(1n):after {
    display: block;
  }
  .sm-block-grid-5 > div:nth-of-type(5n+1) {
    clear: both;
  }
  .sm-block-grid-5 > div:nth-of-type(5n+1):after {
    display: none;
  }
  .sm-block-grid-5 > div:nth-last-child(-n+5):before {
    content: none;
  }
  .sm-block-grid-6 > div {
    width: 16.66667%;
  }
  .sm-block-grid-6 > div:nth-of-type(1n) {
    clear: none;
  }
  .sm-block-grid-6 > div:nth-of-type(1n):after {
    display: block;
  }
  .sm-block-grid-6 > div:nth-of-type(6n+1) {
    clear: both;
  }
  .sm-block-grid-6 > div:nth-of-type(6n+1):after {
    display: none;
  }
  .sm-block-grid-6 > div:nth-last-child(-n+6):before {
    content: none;
  }
  .sm-block-grid-7 > div {
    width: 14.28571%;
  }
  .sm-block-grid-7 > div:nth-of-type(1n) {
    clear: none;
  }
  .sm-block-grid-7 > div:nth-of-type(1n):after {
    display: block;
  }
  .sm-block-grid-7 > div:nth-of-type(7n+1) {
    clear: both;
  }
  .sm-block-grid-7 > div:nth-of-type(7n+1):after {
    display: none;
  }
  .sm-block-grid-7 > div:nth-last-child(-n+7):before {
    content: none;
  }
  .sm-block-grid-8 > div {
    width: 12.5%;
  }
  .sm-block-grid-8 > div:nth-of-type(1n) {
    clear: none;
  }
  .sm-block-grid-8 > div:nth-of-type(1n):after {
    display: block;
  }
  .sm-block-grid-8 > div:nth-of-type(8n+1) {
    clear: both;
  }
  .sm-block-grid-8 > div:nth-of-type(8n+1):after {
    display: none;
  }
  .sm-block-grid-8 > div:nth-last-child(-n+8):before {
    content: none;
  }
  .sm-block-grid-9 > div {
    width: 11.11111%;
  }
  .sm-block-grid-9 > div:nth-of-type(1n) {
    clear: none;
  }
  .sm-block-grid-9 > div:nth-of-type(1n):after {
    display: block;
  }
  .sm-block-grid-9 > div:nth-of-type(9n+1) {
    clear: both;
  }
  .sm-block-grid-9 > div:nth-of-type(9n+1):after {
    display: none;
  }
  .sm-block-grid-9 > div:nth-last-child(-n+9):before {
    content: none;
  }
  .sm-block-grid-10 > div {
    width: 10%;
  }
  .sm-block-grid-10 > div:nth-of-type(1n) {
    clear: none;
  }
  .sm-block-grid-10 > div:nth-of-type(1n):after {
    display: block;
  }
  .sm-block-grid-10 > div:nth-of-type(10n+1) {
    clear: both;
  }
  .sm-block-grid-10 > div:nth-of-type(10n+1):after {
    display: none;
  }
  .sm-block-grid-10 > div:nth-last-child(-n+10):before {
    content: none;
  }
  .sm-block-grid-11 > div {
    width: 9.09091%;
  }
  .sm-block-grid-11 > div:nth-of-type(1n) {
    clear: none;
  }
  .sm-block-grid-11 > div:nth-of-type(1n):after {
    display: block;
  }
  .sm-block-grid-11 > div:nth-of-type(11n+1) {
    clear: both;
  }
  .sm-block-grid-11 > div:nth-of-type(11n+1):after {
    display: none;
  }
  .sm-block-grid-11 > div:nth-last-child(-n+11):before {
    content: none;
  }
  .sm-block-grid-12 > div {
    width: 8.33333%;
  }
  .sm-block-grid-12 > div:nth-of-type(1n) {
    clear: none;
  }
  .sm-block-grid-12 > div:nth-of-type(1n):after {
    display: block;
  }
  .sm-block-grid-12 > div:nth-of-type(12n+1) {
    clear: both;
  }
  .sm-block-grid-12 > div:nth-of-type(12n+1):after {
    display: none;
  }
  .sm-block-grid-12 > div:nth-last-child(-n+12):before {
    content: none;
  }
}

/* Medium */
@media (min-width: 992px) {
  [class*="block-grid-"] {
    margin: 0 -10px;
  }
  [class*="block-grid-"] > div {
    padding: 0 10px;
  }
  .item-columns {
    padding: 0 10px;
  }
  .md-block-grid-1 > div {
    width: 100%;
  }
  .md-block-grid-1 > div:nth-of-type(1n) {
    clear: none;
  }
  .md-block-grid-1 > div:nth-of-type(1n):after {
    display: block;
  }
  .md-block-grid-1 > div:nth-of-type(1n+1) {
    clear: both;
  }
  .md-block-grid-1 > div:nth-of-type(1n+1):after {
    display: none;
  }
  .md-block-grid-1 > div:nth-last-child(-n+1):before {
    content: none;
  }
  .md-block-grid-2 > div {
    width: 50%;
  }
  .md-block-grid-2 > div:nth-of-type(1n) {
    clear: none;
  }
  .md-block-grid-2 > div:nth-of-type(1n):after {
    display: block;
  }
  .md-block-grid-2 > div:nth-of-type(2n+1) {
    clear: both;
  }
  .md-block-grid-2 > div:nth-of-type(2n+1):after {
    display: none;
  }
  .md-block-grid-2 > div:nth-last-child(-n+2):before {
    content: none;
  }
  .md-block-grid-3 > div {
    width: 33.33333%;
  }
  .md-block-grid-3 > div:nth-of-type(1n) {
    clear: none;
  }
  .md-block-grid-3 > div:nth-of-type(1n):after {
    display: block;
  }
  .md-block-grid-3 > div:nth-of-type(3n+1) {
    clear: both;
  }
  .md-block-grid-3 > div:nth-of-type(3n+1):after {
    display: none;
  }
  .md-block-grid-3 > div:nth-last-child(-n+3):before {
    content: none;
  }
  .md-block-grid-4 > div {
    width: 25%;
  }
  .md-block-grid-4 > div:nth-of-type(1n) {
    clear: none;
  }
  .md-block-grid-4 > div:nth-of-type(1n):after {
    display: block;
  }
  .md-block-grid-4 > div:nth-of-type(4n+1) {
    clear: both;
  }
  .md-block-grid-4 > div:nth-of-type(4n+1):after {
    display: none;
  }
  .md-block-grid-4 > div:nth-last-child(-n+4):before {
    content: none;
  }
  .md-block-grid-5 > div {
    width: 20%;
  }
  .md-block-grid-5 > div:nth-of-type(1n) {
    clear: none;
  }
  .md-block-grid-5 > div:nth-of-type(1n):after {
    display: block;
  }
  .md-block-grid-5 > div:nth-of-type(5n+1) {
    clear: both;
  }
  .md-block-grid-5 > div:nth-of-type(5n+1):after {
    display: none;
  }
  .md-block-grid-5 > div:nth-last-child(-n+5):before {
    content: none;
  }
  .md-block-grid-6 > div {
    width: 16.66667%;
  }
  .md-block-grid-6 > div:nth-of-type(1n) {
    clear: none;
  }
  .md-block-grid-6 > div:nth-of-type(1n):after {
    display: block;
  }
  .md-block-grid-6 > div:nth-of-type(6n+1) {
    clear: both;
  }
  .md-block-grid-6 > div:nth-of-type(6n+1):after {
    display: none;
  }
  .md-block-grid-6 > div:nth-last-child(-n+6):before {
    content: none;
  }
  .md-block-grid-7 > div {
    width: 14.28571%;
  }
  .md-block-grid-7 > div:nth-of-type(1n) {
    clear: none;
  }
  .md-block-grid-7 > div:nth-of-type(1n):after {
    display: block;
  }
  .md-block-grid-7 > div:nth-of-type(7n+1) {
    clear: both;
  }
  .md-block-grid-7 > div:nth-of-type(7n+1):after {
    display: none;
  }
  .md-block-grid-7 > div:nth-last-child(-n+7):before {
    content: none;
  }
  .md-block-grid-8 > div {
    width: 12.5%;
  }
  .md-block-grid-8 > div:nth-of-type(1n) {
    clear: none;
  }
  .md-block-grid-8 > div:nth-of-type(1n):after {
    display: block;
  }
  .md-block-grid-8 > div:nth-of-type(8n+1) {
    clear: both;
  }
  .md-block-grid-8 > div:nth-of-type(8n+1):after {
    display: none;
  }
  .md-block-grid-8 > div:nth-last-child(-n+8):before {
    content: none;
  }
  .md-block-grid-9 > div {
    width: 11.11111%;
  }
  .md-block-grid-9 > div:nth-of-type(1n) {
    clear: none;
  }
  .md-block-grid-9 > div:nth-of-type(1n):after {
    display: block;
  }
  .md-block-grid-9 > div:nth-of-type(9n+1) {
    clear: both;
  }
  .md-block-grid-9 > div:nth-of-type(9n+1):after {
    display: none;
  }
  .md-block-grid-9 > div:nth-last-child(-n+9):before {
    content: none;
  }
  .md-block-grid-10 > div {
    width: 10%;
  }
  .md-block-grid-10 > div:nth-of-type(1n) {
    clear: none;
  }
  .md-block-grid-10 > div:nth-of-type(1n):after {
    display: block;
  }
  .md-block-grid-10 > div:nth-of-type(10n+1) {
    clear: both;
  }
  .md-block-grid-10 > div:nth-of-type(10n+1):after {
    display: none;
  }
  .md-block-grid-10 > div:nth-last-child(-n+10):before {
    content: none;
  }
  .md-block-grid-11 > div {
    width: 9.09091%;
  }
  .md-block-grid-11 > div:nth-of-type(1n) {
    clear: none;
  }
  .md-block-grid-11 > div:nth-of-type(1n):after {
    display: block;
  }
  .md-block-grid-11 > div:nth-of-type(11n+1) {
    clear: both;
  }
  .md-block-grid-11 > div:nth-of-type(11n+1):after {
    display: none;
  }
  .md-block-grid-11 > div:nth-last-child(-n+11):before {
    content: none;
  }
  .md-block-grid-12 > div {
    width: 8.33333%;
  }
  .md-block-grid-12 > div:nth-of-type(1n) {
    clear: none;
  }
  .md-block-grid-12 > div:nth-of-type(1n):after {
    display: block;
  }
  .md-block-grid-12 > div:nth-of-type(12n+1) {
    clear: both;
  }
  .md-block-grid-12 > div:nth-of-type(12n+1):after {
    display: none;
  }
  .md-block-grid-12 > div:nth-last-child(-n+12):before {
    content: none;
  }
}

/* Large */
@media (min-width: 1200px) {
  [class*="block-grid-"] {
    margin: 0 -12px;
  }
  [class*="block-grid-"] > div {
    padding: 0 12px;
  }
  .item-columns {
    padding: 0 12px;
  }
  .lg-block-grid-1 > div {
    width: 100%;
  }
  .lg-block-grid-1 > div:nth-of-type(1n) {
    clear: none;
  }
  .lg-block-grid-1 > div:nth-of-type(1n):after {
    display: block;
  }
  .lg-block-grid-1 > div:nth-of-type(1n+1) {
    clear: both;
  }
  .lg-block-grid-1 > div:nth-of-type(1n+1):after {
    display: none;
  }
  .lg-block-grid-1 > div:nth-last-child(-n+1):before {
    content: none;
  }
  .lg-block-grid-2 > div {
    width: 50%;
  }
  .lg-block-grid-2 > div:nth-of-type(1n) {
    clear: none;
  }
  .lg-block-grid-2 > div:nth-of-type(1n):after {
    display: block;
  }
  .lg-block-grid-2 > div:nth-of-type(2n+1) {
    clear: both;
  }
  .lg-block-grid-2 > div:nth-of-type(2n+1):after {
    display: none;
  }
  .lg-block-grid-2 > div:nth-last-child(-n+2):before {
    content: none;
  }
  .lg-block-grid-3 > div {
    width: 33.33333%;
  }
  .lg-block-grid-3 > div:nth-of-type(1n) {
    clear: none;
  }
  .lg-block-grid-3 > div:nth-of-type(1n):after {
    display: block;
  }
  .lg-block-grid-3 > div:nth-of-type(3n+1) {
    clear: both;
  }
  .lg-block-grid-3 > div:nth-of-type(3n+1):after {
    display: none;
  }
  .lg-block-grid-3 > div:nth-last-child(-n+3):before {
    content: none;
  }
  .lg-block-grid-4 > div {
    width: 25%;
  }
  .lg-block-grid-4 > div:nth-of-type(1n) {
    clear: none;
  }
  .lg-block-grid-4 > div:nth-of-type(1n):after {
    display: block;
  }
  .lg-block-grid-4 > div:nth-of-type(4n+1) {
    clear: both;
  }
  .lg-block-grid-4 > div:nth-of-type(4n+1):after {
    display: none;
  }
  .lg-block-grid-4 > div:nth-last-child(-n+4):before {
    content: none;
  }
  .lg-block-grid-5 > div {
    width: 20%;
  }
  .lg-block-grid-5 > div:nth-of-type(1n) {
    clear: none;
  }
  .lg-block-grid-5 > div:nth-of-type(1n):after {
    display: block;
  }
  .lg-block-grid-5 > div:nth-of-type(5n+1) {
    clear: both;
  }
  .lg-block-grid-5 > div:nth-of-type(5n+1):after {
    display: none;
  }
  .lg-block-grid-5 > div:nth-last-child(-n+5):before {
    content: none;
  }
  .lg-block-grid-6 > div {
    width: 16.66667%;
  }
  .lg-block-grid-6 > div:nth-of-type(1n) {
    clear: none;
  }
  .lg-block-grid-6 > div:nth-of-type(1n):after {
    display: block;
  }
  .lg-block-grid-6 > div:nth-of-type(6n+1) {
    clear: both;
  }
  .lg-block-grid-6 > div:nth-of-type(6n+1):after {
    display: none;
  }
  .lg-block-grid-6 > div:nth-last-child(-n+6):before {
    content: none;
  }
  .lg-block-grid-7 > div {
    width: 14.28571%;
  }
  .lg-block-grid-7 > div:nth-of-type(1n) {
    clear: none;
  }
  .lg-block-grid-7 > div:nth-of-type(1n):after {
    display: block;
  }
  .lg-block-grid-7 > div:nth-of-type(7n+1) {
    clear: both;
  }
  .lg-block-grid-7 > div:nth-of-type(7n+1):after {
    display: none;
  }
  .lg-block-grid-7 > div:nth-last-child(-n+7):before {
    content: none;
  }
  .lg-block-grid-8 > div {
    width: 12.5%;
  }
  .lg-block-grid-8 > div:nth-of-type(1n) {
    clear: none;
  }
  .lg-block-grid-8 > div:nth-of-type(1n):after {
    display: block;
  }
  .lg-block-grid-8 > div:nth-of-type(8n+1) {
    clear: both;
  }
  .lg-block-grid-8 > div:nth-of-type(8n+1):after {
    display: none;
  }
  .lg-block-grid-8 > div:nth-last-child(-n+8):before {
    content: none;
  }
  .lg-block-grid-9 > div {
    width: 11.11111%;
  }
  .lg-block-grid-9 > div:nth-of-type(1n) {
    clear: none;
  }
  .lg-block-grid-9 > div:nth-of-type(1n):after {
    display: block;
  }
  .lg-block-grid-9 > div:nth-of-type(9n+1) {
    clear: both;
  }
  .lg-block-grid-9 > div:nth-of-type(9n+1):after {
    display: none;
  }
  .lg-block-grid-9 > div:nth-last-child(-n+9):before {
    content: none;
  }
  .lg-block-grid-10 > div {
    width: 10%;
  }
  .lg-block-grid-10 > div:nth-of-type(1n) {
    clear: none;
  }
  .lg-block-grid-10 > div:nth-of-type(1n):after {
    display: block;
  }
  .lg-block-grid-10 > div:nth-of-type(10n+1) {
    clear: both;
  }
  .lg-block-grid-10 > div:nth-of-type(10n+1):after {
    display: none;
  }
  .lg-block-grid-10 > div:nth-last-child(-n+10):before {
    content: none;
  }
  .lg-block-grid-11 > div {
    width: 9.09091%;
  }
  .lg-block-grid-11 > div:nth-of-type(1n) {
    clear: none;
  }
  .lg-block-grid-11 > div:nth-of-type(1n):after {
    display: block;
  }
  .lg-block-grid-11 > div:nth-of-type(11n+1) {
    clear: both;
  }
  .lg-block-grid-11 > div:nth-of-type(11n+1):after {
    display: none;
  }
  .lg-block-grid-11 > div:nth-last-child(-n+11):before {
    content: none;
  }
  .lg-block-grid-12 > div {
    width: 8.33333%;
  }
  .lg-block-grid-12 > div:nth-of-type(1n) {
    clear: none;
  }
  .lg-block-grid-12 > div:nth-of-type(1n):after {
    display: block;
  }
  .lg-block-grid-12 > div:nth-of-type(12n+1) {
    clear: both;
  }
  .lg-block-grid-12 > div:nth-of-type(12n+1):after {
    display: none;
  }
  .lg-block-grid-12 > div:nth-last-child(-n+12):before {
    content: none;
  }
}

.no-gutter [class*="block-grid-"] {
  margin: 0 !important;
}

.no-gutter [class*="block-grid-"] > div {
  padding: 0 !important;
}

.no-gutter .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.no-gutter [class*="col-"] {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.no-gutter .portfolio-v1 {
  margin-bottom: 0 !important;
}

@media (min-width: 992px) {
  .no-gutter-2 [class*="block-grid-"] {
    margin: 0 !important;
  }
  .no-gutter-2 [class*="block-grid-"] > div {
    padding: 0 !important;
  }
  .no-gutter-2 .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .no-gutter-2 [class*="col-"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .no-gutter-2 .portfolio-v1 {
    margin-bottom: 0 !important;
  }
}



.uk-slideset-init {
  position: relative;
}

.uk-slideset-init ul {
  list-style-type: none;
  padding: 0;
}

.uk-slideset-init .uk-slideset-nav {
  position: absolute;
  top: 20px;
  right: 0;
  z-index: 1;
  margin: 0;
  padding: 0;
}

@media (max-width: 575.98px) {
  .uk-slideset-init .uk-slideset-nav {
    width: 100%;
  }
}

.uk-slideset-init .uk-slideset-nav li {
  float: left;
  margin-right: 10px;
  list-style-type: none;
}

@media (max-width: 575.98px) {
  .uk-slideset-init .uk-slideset-nav li {
    float: none;
    display: inline-block;
  }
}

.uk-slideset-init .uk-slideset-nav li a {
  width: 22px;
  height: 10px;
  border-radius: 30px;
  display: inline-block;
  border: 2px solid var(--ziston-theme-color);
}

.uk-slideset-init .uk-slideset-nav li a:hover {
  cursor: pointer;
}

.uk-slideset-init .uk-slideset-nav li.uk-active a {
  background: var(--ziston-theme-color);
}

.uk-slideset-init.nav-slideset-top .uk-slideset-nav {
  top: -30px;
}

.uk-slideset-init.nav-slideset-bottom .uk-slideset-nav {
  bottom: -30px;
  top: auto;
  left: 0;
  text-align: center;
}

.uk-slideset-init.nav-slideset-bottom .uk-slideset-nav li {
  display: inline-block;
  float: none;
}

.text-light .uk-slideset-init .uk-slideset-nav li a {
  border-color: #fff;
}

.text-light .uk-slideset-init .uk-slideset-nav li.uk-active a {
  background: #fff;
}

.area-main-menu .menu-toggle {
  display: none;
}

.navigation .gva_menu .gva-nolink {
  cursor: default;
}

@media (min-width: 1025px) {
  .navigation {
    position: static;
    clear: both;
  }
  .navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .navigation .gva_menu {
    float: left;
  }
  .navigation .gva_menu li {
    position: relative;
  }
  .navigation .gva_menu li a {
    text-align: left !important;
  }
  .navigation .gva_menu li .gva-nolink {
    text-align: left !important;
  }
  .navigation .gva_menu li a .icaret {
    margin-left: 4px;
    border: none !important;
    font-size: 9px;
  }
  .navigation .gva_menu li .gva-nolink .icaret {
    margin-left: 4px;
    border: none !important;
    font-size: 9px;
  }
  .navigation .gva_menu > li {
    display: inline-block;
  }
  .navigation .gva_menu > li > .sub-menu:after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 32px;
    width: 16px;
    height: 16px;
    border-width: 8px;
    border-style: solid;
    border-color: transparent transparent #fff transparent;
    display: block;
  }
  .navigation .gva_menu > li.gva-mega-menu {
    position: static !important;
  }
  .navigation .gva_menu > li.gva-mega-menu > .sub-menu {
    width: 100%;
  }
  .navigation .gva_menu > li.gva-mega-menu > .sub-menu:after {
    display: none;
  }
}

@media (min-width: 1025px) and (min-width: 576px) {
  .navigation .gva_menu > li:hover > ul.sub-menu, .navigation .gva_menu > li:hover div.sub-menu {
    display: block;
    visibility: visible;
    opacity: 1;
    filter: alpha(opacity=100);
    top: 100%;
    margin-top: -2px;
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
  }
  .navigation .gva_menu > li:hover > ul.sub-menu > li, .navigation .gva_menu > li:hover div.sub-menu > li {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  .navigation .gva_menu > li:hover > a {
    color: var(--ziston-theme-color);
  }
  .navigation .gva_menu > li:hover > .gva-nolink {
    color: var(--ziston-theme-color);
  }
}

@media (min-width: 1025px) {
  .navigation .gva_menu > li > a {
    display: block;
    position: relative;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 10px;
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
    text-align: center;
    color: #797F89;
    font-family: var(--ziston-heading-font-family);
  }
  .navigation .gva_menu > li > .gva-nolink {
    display: block;
    position: relative;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 10px;
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
    text-align: center;
    color: #797F89;
    font-family: var(--ziston-heading-font-family);
  }
}

@media (min-width: 1025px) and (prefers-reduced-motion: reduce) {
  .navigation .gva_menu > li > a {
    -webkit-transition: none;
    transition: none;
  }
}

@media (min-width: 1025px) and (max-width: 991.98px) {
  .navigation .gva_menu > li > a {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (min-width: 1025px) and (max-width: 767.98px) {
  .navigation .gva_menu > li > a {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (min-width: 1025px) and (max-width: 575.98px) {
  .navigation .gva_menu > li > a {
    padding-left: 8px;
    padding-right: 8px;
  }
}

@media (min-width: 1025px) {
  .navigation .gva_menu > li > a:hover, .navigation .gva_menu > li > a:after, .navigation .gva_menu > li > a:active {
    color: var(--ziston-theme-color);
  }
  .navigation .gva_menu > li > a:hover:before, .navigation .gva_menu > li > a:after:before, .navigation .gva_menu > li > a:active:before {
    opacity: 1;
    filter: alpha(opacity=100);
  }
  .navigation .gva_menu > li > a.is-active {
    color: var(--ziston-theme-color);
  }
  .navigation .gva_menu > li > a.is-active:before {
    opacity: 1;
    filter: alpha(opacity=100);
  }
  .navigation .gva_menu > li > a > span {
    position: relative;
    padding-bottom: 6px;
  }
  .navigation .gva_menu > li > .gva-nolink > span {
    position: relative;
    padding-bottom: 6px;
  }
  .navigation .gva_menu > li.menu-item--active-trail > a {
    color: var(--ziston-theme-color) !important;
  }
  .navigation .gva_menu > li.menu-item--active-trail > .gva-nolink {
    color: var(--ziston-theme-color) !important;
  }
  .navigation .gva_menu > li.megamenu.menu-columns-2 > ul.sub-menu > li {
    width: 50%;
    float: left;
  }
  .navigation .gva_menu > li.megamenu.menu-columns-3 > ul.sub-menu > li {
    width: 33.33%;
    float: left;
  }
  .navigation .gva_menu > li.megamenu.menu-columns-4 > ul.sub-menu > li {
    width: 25%;
    float: left;
  }
  .navigation .gva_menu > li.megamenu.menu-columns-5 > ul.sub-menu > li {
    width: 20%;
    float: left;
  }
  .navigation .gva_menu > li.menu-list ul.sub-menu {
    min-width: 250px;
  }
  .navigation .gva_menu > li.menu-list ul.sub-menu > li {
    border-bottom: 1px solid #dee2e6;
  }
  .navigation .gva_menu > li.menu-list ul.sub-menu > li > a {
    padding: 10px 15px;
    text-transform: uppercase;
  }
  .navigation .gva_menu .megamenu, .navigation .gva_menu .gva-mega-menu {
    position: static;
  }
  .navigation .gva_menu .megamenu > ul > li, .navigation .gva_menu .gva-mega-menu > ul > li {
    -webkit-transition: none;
    transition: none;
    opacity: 1;
    visibility: visible;
    -webkit-transform: none;
    transform: none;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
  }
  .navigation .gva_menu .megamenu > .sub-menu, .navigation .gva_menu .gva-mega-menu > .sub-menu {
    width: 100%;
    padding: 20px;
  }
  .navigation .gva_menu .megamenu > .sub-menu > li, .navigation .gva_menu .gva-mega-menu > .sub-menu > li {
    border: none;
    position: static;
    padding: 0 15px;
  }
  .navigation .gva_menu .megamenu > .sub-menu > li > ul.sub-menu, .navigation .gva_menu .gva-mega-menu > .sub-menu > li > ul.sub-menu {
    position: static;
    border-width: 0;
    padding: 0;
    min-width: inherit;
    width: 100%;
    background-color: transparent;
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}

@media (min-width: 1025px) and (min-width: 768px) {
  .navigation .gva_menu .megamenu > .sub-menu > li > ul.sub-menu, .navigation .gva_menu .gva-mega-menu > .sub-menu > li > ul.sub-menu {
    display: block !important;
    visibility: visible;
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
  }
}

@media (min-width: 1025px) {
  .navigation .gva_menu .megamenu > .sub-menu > li > ul.sub-menu li, .navigation .gva_menu .gva-mega-menu > .sub-menu > li > ul.sub-menu li {
    padding: 10px 0 0;
    margin-bottom: 0;
    border: none;
  }
  .navigation .gva_menu .megamenu > .sub-menu > li > a, .navigation .gva_menu .gva-mega-menu > .sub-menu > li > a {
    display: block;
    font-size: 14px;
    color: #000;
    font-weight: 500;
    text-transform: uppercase;
    padding: 0 0 5px;
    margin-bottom: 5px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
    position: relative;
  }
  .navigation .gva_menu .megamenu > .sub-menu > li > .gva-nolink, .navigation .gva_menu .gva-mega-menu > .sub-menu > li > .gva-nolink {
    display: block;
    font-size: 14px;
    color: #000;
    font-weight: 500;
    text-transform: uppercase;
    padding: 0 0 5px;
    margin-bottom: 5px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
    position: relative;
  }
  .navigation .gva_menu .megamenu > .sub-menu > li > a:after, .navigation .gva_menu .gva-mega-menu > .sub-menu > li > a:after {
    display: none;
  }
  .navigation .gva_menu .megamenu:hover ul.sub-menu > li, .navigation .gva_menu .gva-mega-menu:hover ul.sub-menu > li {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  .navigation .gva_menu .sub-menu {
    top: 101%;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    position: absolute;
    min-width: 280px;
    background-color: #fff;
    z-index: 999;
    left: 0;
    padding: 20px 30px 20px;
    visibility: hidden;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    -webkit-transform: rotateX(-90deg);
    transform: rotateX(-90deg);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }
}

@media (min-width: 1025px) and (prefers-reduced-motion: reduce) {
  .navigation .gva_menu .sub-menu {
    -webkit-transition: none;
    transition: none;
  }
}

@media (min-width: 1025px) {
  .navigation .gva_menu .sub-menu > li {
    position: relative;
    padding: 10px 0;
    -webkit-transition: all 0.2s cubic-bezier(0.4, 0.28, 0.31, 1.28) 0s;
    transition: all 0.2s cubic-bezier(0.4, 0.28, 0.31, 1.28) 0s;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .navigation .gva_menu .sub-menu > li > a {
    display: block;
    line-height: 26px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    position: relative;
    color: #797F89;
  }
  .navigation .gva_menu .sub-menu > li > .gva-nolink {
    display: block;
    line-height: 26px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    position: relative;
    color: #797F89;
  }
}

@media (min-width: 1025px) and (prefers-reduced-motion: reduce) {
  .navigation .gva_menu .sub-menu > li > a {
    -webkit-transition: none;
    transition: none;
  }
}

@media (min-width: 1025px) {
  .navigation .gva_menu .sub-menu > li > a:hover, .navigation .gva_menu .sub-menu > li > a:focus, .navigation .gva_menu .sub-menu > li > a:active {
    color: var(--ziston-theme-color);
  }
  .navigation .gva_menu .sub-menu > li:nth-child(2n+1) {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
  }
  .navigation .gva_menu .sub-menu > li:nth-child(2n+2) {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
  }
  .navigation .gva_menu .sub-menu > li:nth-child(2n+3) {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
  }
  .navigation .gva_menu .sub-menu > li:nth-child(2n+4) {
    -webkit-transition-delay: 0.25s;
    transition-delay: 0.25s;
  }
  .navigation .gva_menu .sub-menu > li:nth-child(2n+5) {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
  }
  .navigation .gva_menu .sub-menu > li:nth-child(2n+6) {
    -webkit-transition-delay: 0.35s;
    transition-delay: 0.35s;
  }
  .navigation .gva_menu .sub-menu > li:nth-child(2n+7) {
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
  }
  .navigation .gva_menu .sub-menu > li:nth-child(2n+8) {
    -webkit-transition-delay: 0.45s;
    transition-delay: 0.45s;
  }
  .navigation .gva_menu .sub-menu > li:nth-child(2n+9) {
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
  }
  .navigation .gva_menu .sub-menu > li:nth-child(2n+10) {
    -webkit-transition-delay: 0.55s;
    transition-delay: 0.55s;
  }
  .navigation .gva_menu .sub-menu > li:nth-child(2n+11) {
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
  }
  .navigation .gva_menu .sub-menu > li:nth-child(2n+12) {
    -webkit-transition-delay: 0.65s;
    transition-delay: 0.65s;
  }
  .navigation .gva_menu .sub-menu > li:nth-child(2n+13) {
    -webkit-transition-delay: 0.7s;
    transition-delay: 0.7s;
  }
  .navigation .gva_menu .sub-menu > li:nth-child(2n+14) {
    -webkit-transition-delay: 0.75s;
    transition-delay: 0.75s;
  }
  .navigation .gva_menu .sub-menu > li:nth-child(2n+15) {
    -webkit-transition-delay: 0.8s;
    transition-delay: 0.8s;
  }
  .navigation .gva_menu .sub-menu > li:last-child {
    border-bottom: 0;
  }
  .navigation .gva_menu .sub-menu > li ul {
    position: absolute;
    top: -20px;
    right: 0;
    min-width: 250px;
    visibility: hidden;
    opacity: 0;
    filter: alpha(opacity=0);
    display: none;
    z-index: 11;
  }
}

@media (min-width: 1025px) and (min-width: 768px) {
  .navigation .gva_menu .sub-menu > li:hover > ul {
    visibility: visible;
    opacity: 1;
    filter: alpha(opacity=100);
    display: block;
    left: 100%;
  }
}

body.header-absolute .navigation ul.gva_menu > li > a {
  color: #fff !important;
}

@media (min-width: 992px) {
  .navigation .gva_menu .sub-menu > li:hover > ul {
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
  }
  .navigation .gva_menu .sub-menu > li > ul li {
    opacity: 1;
    visibility: visible;
  }
}

img.logo-site {
  display: block !important;
}

.gva-view.view-header-right header {
  float: right;
}

@media (max-width: 575.98px) {
  .gva-view.view-header-right header {
    display: none;
  }
}

.item-list ul {
  overflow: hidden;
  padding: 0;
}

.item-list ul li.view-list-item {
  margin: 0 0 30px;
  overflow: hidden;
  list-style-type: none;
}

.item-list ul li.view-list-item .post-block {
  margin: 0;
}

.padding-small .item-list ul li.view-list-item {
  margin-bottom: 20px !important;
}

.padding-small .item-list ul li.view-list-item:last-child {
  margin-bottom: 0 !important;
}

ul[data-drupal-views-infinite-scroll-pager] {
  list-style-type: none;
  padding: 0;
  text-align: center;
}

ul[data-drupal-views-infinite-scroll-pager].pager {
  margin: 20px 0;
}

.views-view-grid .views-row {
  width: auto;
  clear: none;
  float: none !important;
}

.views-view-grid .views-row:last-child {
  margin-bottom: 0;
}

.post-masonry-style > div.views-col {
  margin-bottom: 10px;
}

.no-padding .gva-portfolio-items .row {
  margin: 0 !important;
}

.no-padding .gva-portfolio-items .isotope-items > div {
  padding: 0 !important;
}

.no-padding .gva-portfolio-items .isotope-items > div .isotope-item {
  margin-bottom: 0 !important;
}

.view-box-shadow .gva-view-grid {
  -webkit-box-shadow: 2px 5px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 5px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991.98px) {
  .view-box-shadow .gva-view-grid {
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}

.view-box-shadow .pager {
  padding-top: 20px;
}

.brand-grid .views-view-grid .views-row {
  margin-bottom: 65px;
}

.brand-grid .views-view-grid .views-row .views-field-field-image {
  text-align: center;
}

@media (max-width: 575.98px) {
  .brand-grid .views-view-grid .views-row .views-field-field-image {
    margin-bottom: 20px;
  }
}

.category-list .item-list ul li {
  border: none;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}

.category-list .item-list ul li a {
  padding: 6px 0;
  display: block;
  text-transform: capitalize;
  font-size: 16px;
  overflow: hidden;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  position: relative;
  font-family: var(--ziston-heading-font-family);
  color: #7f8284;
}

@media (prefers-reduced-motion: reduce) {
  .category-list .item-list ul li a {
    -webkit-transition: none;
    transition: none;
  }
}

.category-list .item-list ul li a:hover, .category-list .item-list ul li a:focus, .category-list .item-list ul li a:active {
  color: var(--ziston-theme-color);
}

.testimonial-v1 .testimonial-item {
  text-align: center;
  background: #fff;
  padding: 60px 30px;
}

.testimonial-v1 .testimonial-item .quote {
  line-height: 28px;
  position: relative;
  padding-top: 35px;
}

.testimonial-v1 .testimonial-item .avatar {
  text-align: center;
}

.testimonial-v1 .testimonial-item .avatar img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.testimonial-v1 .testimonial-item .content .title {
  margin: 30px 0 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: #000;
}

.testimonial-v1 .testimonial-item .content .job {
  font-size: 12px;
  color: #bbbbbb;
}

.view-testimonial-v2 {
  position: relative;
  float: left;
  width: 100%;
}

.view-testimonial-v2 .owl-dots {
  text-align: left;
  position: relative;
  margin-top: 20px;
  float: left;
  width: 100%;
}

.view-testimonial-v2 .owl-dots .owl-dot {
  display: inline-block;
  padding: 0;
  margin: 5px;
  background: none;
  width: 45px;
  height: 45px;
  border-radius: 0;
  border: 2px solid #dee2e6;
  -webkit-box-shadow: none;
  box-shadow: none;
  text-align: center;
  position: relative;
  z-index: 9;
}

.view-testimonial-v2 .owl-dots .owl-dot.active {
  border-color: var(--ziston-theme-color);
}

.view-testimonial-v2 .owl-nav {
  display: none;
}

.testimonial-grid .item-grid {
  margin-bottom: 45px;
}

.testimonial-grid .item-grid::after {
  display: block;
  clear: both;
  content: "";
}

.testimonial-grid .item-grid .testimonials-quote {
  font-size: 16px;
  color: #000;
  padding: 30px;
  border: 1px solid #dee2e6;
  font-weight: 300;
  font-style: italic;
}

.testimonial-grid .item-grid .testimonials-profile {
  display: inline-block;
  position: relative;
  margin-left: 30px;
  float: left;
  padding-top: 20px;
}

.testimonial-grid .item-grid .testimonials-profile:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  background: var(--ziston-theme-color);
  top: -1px;
  left: 0;
  z-index: 1;
}

.testimonial-grid .item-grid .testimonials-profile .right {
  padding-left: 70px;
}

.testimonial-grid .item-grid .testimonials-profile .right .name {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  margin: 0;
  text-transform: uppercase;
}

.testimonial-grid .item-grid .testimonials-profile .right .job {
  font-size: 12px;
  font-weight: 900;
  color: var(--ziston-theme-color);
  text-transform: uppercase;
}

.testimonial-grid .item-grid .testimonials-profile .left {
  display: inline-block;
  float: left;
}

.testimonial-grid .item-grid .testimonials-profile .left img {
  border-radius: 50%;
  width: 50px;
  height: auto;
}

.slider-gallery-v1 {
  margin-left: -3px !important;
  margin-right: -3px !important;
}

.slider-gallery-v1 .carousel-item {
  float: left;
  padding-right: 3px !important;
}

.slider-gallery-v1 img {
  -webkit-transform-style: none !important;
  transform-style: none !important;
  -webkit-transform: none !important;
  transform: none !important;
}

.slider-gallery-v1 .gallery-large {
  background: #fff;
}

.slider-gallery-v1 .gallery-large img {
  width: 100%;
  height: auto;
}

.slider-gallery-v1 div > .gallery-small {
  width: 50% !important;
  background: transparent !important;
  float: left;
}

.slider-gallery-v1 div > .gallery-small .gallery-small-item {
  background: #fff;
  width: 100% !important;
  height: auto !important;
  float: left;
  clear: both;
  padding-bottom: 3px;
  margin: 0;
}

.slider-gallery-v1 div > .gallery-small .gallery-small-item:last-child {
  padding-bottom: 0;
}

.slider-gallery-v1 div > .gallery-small .gallery-small-item img {
  width: 100%;
  height: auto;
}

.small-list .item-list ul > li {
  border-bottom: 1px solid #dee2e6;
  margin-bottom: 15px !important;
  padding-bottom: 15px;
}

.small-list .item-list ul > li a {
  font-size: 12px;
  text-transform: uppercase;
  color: #000;
  font-weight: 700;
}

.small-list .item-list ul > li a:hover {
  color: var(--ziston-theme-color);
}

.small-list .item-list ul > li:last-child {
  border: none;
  margin-bottom: 0 !important;
  padding-bottom: 0;
}

.tags-list .item-list > ul > li {
  margin-bottom: 5px;
  display: inline-block;
  float: left;
  margin-right: 10px;
}

.tags-list .item-list > ul > li a {
  padding: 8px 16px;
  overflow: hidden;
  font-size: 14px;
  display: inline-block;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  font-weight: 500;
  background: #fff;
  font-family: var(--ziston-heading-font-family);
}

@media (prefers-reduced-motion: reduce) {
  .tags-list .item-list > ul > li a {
    -webkit-transition: none;
    transition: none;
  }
}

.tags-list .item-list > ul > li a:hover, .tags-list .item-list > ul > li a:focus, .tags-list .item-list > ul > li a:active {
  background: var(--ziston-theme-color);
  color: #fff;
}

.banner-carousel .init-carousel-owl {
  margin-left: 0;
  margin-right: 0;
}

.banner-carousel .init-carousel-owl .item {
  padding: 0;
  border-left: 0;
  text-align: center;
  position: relative;
}

.banner-carousel.v2 .item {
  padding: 0;
  height: auto;
  background: transparent;
}

.banner-carousel.v2 .item > div {
  padding: 15px 20px;
  text-align: center;
  position: relative;
}

.banner-carousel.v2 .item > div:last-child {
  border: none;
}

.block.block-gavias-blockbuilder {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.block.block-gavias-blockbuilder ul > li {
  list-style: none;
}

.pretty * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.pretty input:not([type=checkbox]):not([type=radio]) {
  display: none;
}

.pretty {
  position: relative;
  display: inline-block;
  margin-right: 1em;
  white-space: nowrap;
  line-height: 1;
}

.pretty input {
  position: absolute;
  left: 0;
  top: 0;
  min-width: 1em;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.pretty .state label {
  position: initial;
  display: inline-block;
  font-weight: 400;
  margin: 0;
  text-indent: 1.5em;
  min-width: calc(1em + 2px);
}

.pretty .state label:after, .pretty .state label:before {
  content: '';
  width: calc(1em + 2px);
  height: calc(1em + 2px);
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 0;
  border: 1px solid transparent;
  z-index: 0;
  position: absolute;
  left: 0;
  top: calc((0% - (100% - 1em)) - 8%);
  background-color: transparent;
}

.pretty .state label:before {
  border-color: #bdc3c7;
}

.pretty .state.p-is-hover, .pretty .state.p-is-indeterminate {
  display: none;
}

@-webkit-keyframes zoom {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}

@keyframes zoom {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}

@-webkit-keyframes tada {
  0% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
    -webkit-transform: scale(7);
    transform: scale(7);
  }
  38% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  55% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  72% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  81% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: scale(1.24);
    transform: scale(1.24);
  }
  89% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  95% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: scale(1.04);
    transform: scale(1.04);
  }
  100% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes tada {
  0% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
    -webkit-transform: scale(7);
    transform: scale(7);
  }
  38% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  55% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  72% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  81% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: scale(1.24);
    transform: scale(1.24);
  }
  89% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  95% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: scale(1.04);
    transform: scale(1.04);
  }
  100% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes jelly {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  40% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  50% {
    -webkit-transform: scale3d(0.85, 1.15, 1);
    transform: scale3d(0.85, 1.15, 1);
  }
  65% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  75% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes jelly {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  40% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  50% {
    -webkit-transform: scale3d(0.85, 1.15, 1);
    transform: scale3d(0.85, 1.15, 1);
  }
  65% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  75% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@-webkit-keyframes rotate {
  0% {
    opacity: 0;
    -webkit-transform: translateZ(-200px) rotate(-45deg);
    transform: translateZ(-200px) rotate(-45deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0) rotate(0);
    transform: translateZ(0) rotate(0);
  }
}

@keyframes rotate {
  0% {
    opacity: 0;
    -webkit-transform: translateZ(-200px) rotate(-45deg);
    transform: translateZ(-200px) rotate(-45deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0) rotate(0);
    transform: translateZ(0) rotate(0);
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 #bdc3c7;
    box-shadow: 0 0 0 0 #bdc3c7;
  }
  100% {
    -webkit-box-shadow: 0 0 0 1.5em rgba(189, 195, 199, 0);
    box-shadow: 0 0 0 1.5em rgba(189, 195, 199, 0);
  }
}

@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 #bdc3c7;
    box-shadow: 0 0 0 0 #bdc3c7;
  }
  100% {
    -webkit-box-shadow: 0 0 0 1.5em rgba(189, 195, 199, 0);
    box-shadow: 0 0 0 1.5em rgba(189, 195, 199, 0);
  }
}

.pretty.p-default.p-fill .state label:after {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.pretty.p-default .state label:after {
  -webkit-transform: scale(0.6);
  transform: scale(0.6);
}

.pretty.p-default input:checked ~ .state label:after {
  background-color: #bdc3c7 !important;
}

.pretty.p-default.p-thick .state label:after, .pretty.p-default.p-thick .state label:before {
  border-width: calc(1em / 7);
}

.pretty.p-default.p-thick .state label:after {
  -webkit-transform: scale(0.4) !important;
  transform: scale(0.4) !important;
}

.pretty.p-icon .state .icon {
  position: absolute;
  font-size: 1em;
  width: calc(1em + 2px);
  height: calc(1em + 2px);
  left: 0;
  z-index: 1;
  text-align: center;
  line-height: normal;
  top: calc((0% - (100% - 1em)) - 8%);
  border: 1px solid transparent;
  opacity: 0;
}

.pretty.p-icon .state .icon:before {
  margin: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1;
}

.pretty.p-icon input:checked ~ .state .icon {
  opacity: 1;
}

.pretty.p-icon input:checked ~ .state label:before {
  border-color: #5a656b;
}

.pretty.p-svg .state .svg {
  position: absolute;
  font-size: 1em;
  width: calc(1em + 2px);
  height: calc(1em + 2px);
  left: 0;
  z-index: 1;
  text-align: center;
  line-height: normal;
  top: calc((0% - (100% - 1em)) - 8%);
  border: 1px solid transparent;
  opacity: 0;
}

.pretty.p-svg .state svg {
  margin: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1;
}

.pretty.p-svg input:checked ~ .state .svg {
  opacity: 1;
}

.pretty.p-image .state img {
  opacity: 0;
  position: absolute;
  width: calc(1em + 2px);
  height: calc(1em + 2px);
  top: 0;
  top: calc((0% - (100% - 1em)) - 8%);
  left: 0;
  z-index: 0;
  text-align: center;
  line-height: normal;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}

.pretty.p-image input:checked ~ .state img {
  opacity: 1;
}

.pretty.p-switch input {
  min-width: 2em;
}

.pretty.p-switch .state {
  position: relative;
}

.pretty.p-switch .state:before {
  content: '';
  border: 1px solid #bdc3c7;
  border-radius: 60px;
  width: 2em;
  -webkit-box-sizing: unset;
  box-sizing: unset;
  height: calc(1em + 2px);
  position: absolute;
  top: 0;
  top: calc((0% - (100% - 1em)) - 16%);
  z-index: 0;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.pretty.p-switch .state label {
  text-indent: 2.5em;
}

.pretty.p-switch .state label:after, .pretty.p-switch .state label:before {
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  border-radius: 100%;
  left: 0;
  border-color: transparent;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}

.pretty.p-switch .state label:after {
  background-color: #bdc3c7 !important;
}

.pretty.p-switch input:checked ~ .state:before {
  border-color: #5a656b;
}

.pretty.p-switch input:checked ~ .state label:before {
  opacity: 0;
}

.pretty.p-switch input:checked ~ .state label:after {
  background-color: #5a656b !important;
  left: 1em;
}

.pretty.p-switch.p-fill input:checked ~ .state:before {
  border-color: #5a656b;
  background-color: #5a656b !important;
}

.pretty.p-switch.p-fill input:checked ~ .state label:before {
  opacity: 0;
}

.pretty.p-switch.p-fill input:checked ~ .state label:after {
  background-color: #fff !important;
  left: 1em;
}

.pretty.p-switch.p-slim .state:before {
  height: .1em;
  background: #bdc3c7 !important;
  top: calc(50% - .1em);
}

.pretty.p-switch.p-slim input:checked ~ .state:before {
  border-color: #5a656b;
  background-color: #5a656b !important;
}

.pretty.p-has-hover input:hover ~ .state:not(.p-is-hover) {
  display: none;
}

.pretty.p-has-hover input:hover ~ .state.p-is-hover {
  display: block;
}

.pretty.p-has-hover input:hover ~ .state.p-is-hover .icon {
  display: block;
}

.pretty.p-has-focus input:focus ~ .state label:before {
  -webkit-box-shadow: 0 0 3px 0 #bdc3c7;
  box-shadow: 0 0 3px 0 #bdc3c7;
}

.pretty.p-has-indeterminate input[type=checkbox]:indeterminate ~ .state:not(.p-is-indeterminate) {
  display: none;
}

.pretty.p-has-indeterminate input[type=checkbox]:indeterminate ~ .state.p-is-indeterminate {
  display: block;
}

.pretty.p-has-indeterminate input[type=checkbox]:indeterminate ~ .state.p-is-indeterminate .icon {
  display: block;
  opacity: 1;
}

.pretty.p-toggle .state.p-on {
  opacity: 0;
  display: none;
}

.pretty.p-toggle .state .icon, .pretty.p-toggle .state .svg, .pretty.p-toggle .state img, .pretty.p-toggle .state.p-off {
  opacity: 1;
  display: inherit;
}

.pretty.p-toggle .state.p-off .icon {
  color: #bdc3c7;
}

.pretty.p-toggle input:checked ~ .state.p-on {
  opacity: 1;
  display: inherit;
}

.pretty.p-toggle input:checked ~ .state.p-off {
  opacity: 0;
  display: none;
}

.pretty.p-plain input:checked ~ .state label:before, .pretty.p-plain.p-toggle .state label:before {
  content: none;
}

.pretty.p-plain.p-plain .icon {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.pretty.p-round .state label:after, .pretty.p-round .state label:before {
  border-radius: 100%;
}

.pretty.p-round.p-icon .state .icon {
  border-radius: 100%;
  overflow: hidden;
}

.pretty.p-round.p-icon .state .icon:before {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}

.pretty.p-curve .state label:after, .pretty.p-curve .state label:before {
  border-radius: 20%;
}

.pretty.p-smooth .icon, .pretty.p-smooth .svg, .pretty.p-smooth label:after, .pretty.p-smooth label:before {
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.pretty.p-smooth input:checked + .state label:after {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.pretty.p-smooth input:checked + .state .icon, .pretty.p-smooth input:checked + .state .svg, .pretty.p-smooth input:checked + .state img {
  -webkit-animation: zoom .2s ease;
  animation: zoom .2s ease;
}

.pretty.p-smooth.p-default input:checked + .state label:after {
  -webkit-animation: zoom .2s ease;
  animation: zoom .2s ease;
}

.pretty.p-smooth.p-plain input:checked + .state label:before {
  content: '';
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.pretty.p-tada:not(.p-default) input:checked + .state .icon, .pretty.p-tada:not(.p-default) input:checked + .state .svg, .pretty.p-tada:not(.p-default) input:checked + .state img, .pretty.p-tada:not(.p-default) input:checked + .state label:after, .pretty.p-tada:not(.p-default) input:checked + .state label:before {
  -webkit-animation: tada 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1 alternate;
  animation: tada 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1 alternate;
  opacity: 1;
}

.pretty.p-jelly:not(.p-default) input:checked + .state .icon, .pretty.p-jelly:not(.p-default) input:checked + .state .svg, .pretty.p-jelly:not(.p-default) input:checked + .state img, .pretty.p-jelly:not(.p-default) input:checked + .state label:after, .pretty.p-jelly:not(.p-default) input:checked + .state label:before {
  -webkit-animation: jelly 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: jelly 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 1;
}

.pretty.p-jelly:not(.p-default) input:checked + .state label:before {
  border-color: transparent;
}

.pretty.p-rotate:not(.p-default) input:checked ~ .state .icon, .pretty.p-rotate:not(.p-default) input:checked ~ .state .svg, .pretty.p-rotate:not(.p-default) input:checked ~ .state img, .pretty.p-rotate:not(.p-default) input:checked ~ .state label:after, .pretty.p-rotate:not(.p-default) input:checked ~ .state label:before {
  -webkit-animation: rotate 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: rotate 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 1;
}

.pretty.p-rotate:not(.p-default) input:checked ~ .state label:before {
  border-color: transparent;
}

.pretty.p-pulse:not(.p-switch) input:checked ~ .state label:before {
  -webkit-animation: pulse 1s;
  animation: pulse 1s;
}

.pretty input[disabled] {
  cursor: not-allowed;
  display: none;
}

.pretty input[disabled] ~ * {
  opacity: .5;
}

.pretty.p-locked input {
  display: none;
  cursor: not-allowed;
}

.pretty input:checked ~ .state.p-primary label:after, .pretty.p-toggle .state.p-primary label:after {
  background-color: #428bca !important;
}

.pretty input:checked ~ .state.p-primary .icon, .pretty input:checked ~ .state.p-primary .svg, .pretty.p-toggle .state.p-primary .icon, .pretty.p-toggle .state.p-primary .svg {
  color: #fff;
  stroke: #fff;
}

.pretty input:checked ~ .state.p-primary-o label:before, .pretty.p-toggle .state.p-primary-o label:before {
  border-color: #428bca;
}

.pretty input:checked ~ .state.p-primary-o label:after, .pretty.p-toggle .state.p-primary-o label:after {
  background-color: transparent;
}

.pretty input:checked ~ .state.p-primary-o .icon, .pretty input:checked ~ .state.p-primary-o .svg, .pretty input:checked ~ .state.p-primary-o svg, .pretty.p-toggle .state.p-primary-o .icon, .pretty.p-toggle .state.p-primary-o .svg, .pretty.p-toggle .state.p-primary-o svg {
  color: #428bca;
  stroke: #428bca;
}

.pretty.p-default:not(.p-fill) input:checked ~ .state.p-primary-o label:after {
  background-color: #428bca !important;
}

.pretty.p-switch input:checked ~ .state.p-primary:before {
  border-color: #428bca;
}

.pretty.p-switch.p-fill input:checked ~ .state.p-primary:before {
  background-color: #428bca !important;
}

.pretty.p-switch.p-slim input:checked ~ .state.p-primary:before {
  border-color: #245682;
  background-color: #245682 !important;
}

.pretty input:checked ~ .state.p-info label:after, .pretty.p-toggle .state.p-info label:after {
  background-color: #5bc0de !important;
}

.pretty input:checked ~ .state.p-info .icon, .pretty input:checked ~ .state.p-info .svg, .pretty.p-toggle .state.p-info .icon, .pretty.p-toggle .state.p-info .svg {
  color: #fff;
  stroke: #fff;
}

.pretty input:checked ~ .state.p-info-o label:before, .pretty.p-toggle .state.p-info-o label:before {
  border-color: #5bc0de;
}

.pretty input:checked ~ .state.p-info-o label:after, .pretty.p-toggle .state.p-info-o label:after {
  background-color: transparent;
}

.pretty input:checked ~ .state.p-info-o .icon, .pretty input:checked ~ .state.p-info-o .svg, .pretty input:checked ~ .state.p-info-o svg, .pretty.p-toggle .state.p-info-o .icon, .pretty.p-toggle .state.p-info-o .svg, .pretty.p-toggle .state.p-info-o svg {
  color: #5bc0de;
  stroke: #5bc0de;
}

.pretty.p-default:not(.p-fill) input:checked ~ .state.p-info-o label:after {
  background-color: #5bc0de !important;
}

.pretty.p-switch input:checked ~ .state.p-info:before {
  border-color: #5bc0de;
}

.pretty.p-switch.p-fill input:checked ~ .state.p-info:before {
  background-color: #5bc0de !important;
}

.pretty.p-switch.p-slim input:checked ~ .state.p-info:before {
  border-color: #2390b0;
  background-color: #2390b0 !important;
}

.pretty input:checked ~ .state.p-success label:after, .pretty.p-toggle .state.p-success label:after {
  background-color: var(--ziston-theme-color) !important;
}

.pretty input:checked ~ .state.p-success .icon, .pretty input:checked ~ .state.p-success .svg, .pretty.p-toggle .state.p-success .icon, .pretty.p-toggle .state.p-success .svg {
  color: #fff;
  stroke: #fff;
}

.pretty input:checked ~ .state.p-success-o label:before, .pretty.p-toggle .state.p-success-o label:before {
  border-color: var(--ziston-theme-color);
}

.pretty input:checked ~ .state.p-success-o label:after, .pretty.p-toggle .state.p-success-o label:after {
  background-color: transparent;
}

.pretty input:checked ~ .state.p-success-o .icon, .pretty input:checked ~ .state.p-success-o .svg, .pretty input:checked ~ .state.p-success-o svg, .pretty.p-toggle .state.p-success-o .icon, .pretty.p-toggle .state.p-success-o .svg, .pretty.p-toggle .state.p-success-o svg {
  color: var(--ziston-theme-color);
  stroke: var(--ziston-theme-color);
}

.pretty.p-default:not(.p-fill) input:checked ~ .state.p-success-o label:after {
  background-color: var(--ziston-theme-color) !important;
}

.pretty.p-switch input:checked ~ .state.p-success:before {
  border-color: var(--ziston-theme-color);
}

.pretty.p-switch.p-fill input:checked ~ .state.p-success:before {
  background-color: var(--ziston-theme-color) !important;
}

.pretty.p-switch.p-slim input:checked ~ .state.p-success:before {
  border-color: #357935;
  background-color: #357935 !important;
}

.pretty input:checked ~ .state.p-warning label:after, .pretty.p-toggle .state.p-warning label:after {
  background-color: #f0ad4e !important;
}

.pretty input:checked ~ .state.p-warning .icon, .pretty input:checked ~ .state.p-warning .svg, .pretty.p-toggle .state.p-warning .icon, .pretty.p-toggle .state.p-warning .svg {
  color: #fff;
  stroke: #fff;
}

.pretty input:checked ~ .state.p-warning-o label:before, .pretty.p-toggle .state.p-warning-o label:before {
  border-color: #f0ad4e;
}

.pretty input:checked ~ .state.p-warning-o label:after, .pretty.p-toggle .state.p-warning-o label:after {
  background-color: transparent;
}

.pretty input:checked ~ .state.p-warning-o .icon, .pretty input:checked ~ .state.p-warning-o .svg, .pretty input:checked ~ .state.p-warning-o svg, .pretty.p-toggle .state.p-warning-o .icon, .pretty.p-toggle .state.p-warning-o .svg, .pretty.p-toggle .state.p-warning-o svg {
  color: #f0ad4e;
  stroke: #f0ad4e;
}

.pretty.p-default:not(.p-fill) input:checked ~ .state.p-warning-o label:after {
  background-color: #f0ad4e !important;
}

.pretty.p-switch input:checked ~ .state.p-warning:before {
  border-color: #f0ad4e;
}

.pretty.p-switch.p-fill input:checked ~ .state.p-warning:before {
  background-color: #f0ad4e !important;
}

.pretty.p-switch.p-slim input:checked ~ .state.p-warning:before {
  border-color: #c77c11;
  background-color: #c77c11 !important;
}

.pretty input:checked ~ .state.p-danger label:after, .pretty.p-toggle .state.p-danger label:after {
  background-color: #d9534f !important;
}

.pretty input:checked ~ .state.p-danger .icon, .pretty input:checked ~ .state.p-danger .svg, .pretty.p-toggle .state.p-danger .icon, .pretty.p-toggle .state.p-danger .svg {
  color: #fff;
  stroke: #fff;
}

.pretty input:checked ~ .state.p-danger-o label:before, .pretty.p-toggle .state.p-danger-o label:before {
  border-color: #d9534f;
}

.pretty input:checked ~ .state.p-danger-o label:after, .pretty.p-toggle .state.p-danger-o label:after {
  background-color: transparent;
}

.pretty input:checked ~ .state.p-danger-o .icon, .pretty input:checked ~ .state.p-danger-o .svg, .pretty input:checked ~ .state.p-danger-o svg, .pretty.p-toggle .state.p-danger-o .icon, .pretty.p-toggle .state.p-danger-o .svg, .pretty.p-toggle .state.p-danger-o svg {
  color: #d9534f;
  stroke: #d9534f;
}

.pretty.p-default:not(.p-fill) input:checked ~ .state.p-danger-o label:after {
  background-color: #d9534f !important;
}

.pretty.p-switch input:checked ~ .state.p-danger:before {
  border-color: #d9534f;
}

.pretty.p-switch.p-fill input:checked ~ .state.p-danger:before {
  background-color: #d9534f !important;
}

.pretty.p-switch.p-slim input:checked ~ .state.p-danger:before {
  border-color: #a02622;
  background-color: #a02622 !important;
}

.pretty.p-bigger .icon, .pretty.p-bigger .img, .pretty.p-bigger .svg, .pretty.p-bigger label:after, .pretty.p-bigger label:before {
  font-size: 1.2em !important;
  top: calc((0% - (100% - 1em)) - 35%) !important;
}

.pretty.p-bigger label {
  text-indent: 1.7em;
}

@media print {
  .pretty .state .icon, .pretty .state label:after, .pretty .state label:before, .pretty .state:before {
    color-adjust: exact;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}

@-webkit-keyframes beat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.82);
    transform: scale(0.82);
  }
}

@keyframes beat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.82);
    transform: scale(0.82);
  }
}

/* Flip Horizontally */
@-webkit-keyframes gavias_flip_x {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
    filter: alpha(opacity=0);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

@keyframes gavias_flip_x {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
    filter: alpha(opacity=0);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

/* Flip Vertically */
@-webkit-keyframes gavias_flip_y {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
    filter: alpha(opacity=0);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

@keyframes gavias_flip_y {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
    filter: alpha(opacity=0);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

@-webkit-keyframes pulse-border {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}

@keyframes pulse-border {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}

@-webkit-keyframes pulse-border-2 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes pulse-border-2 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}

#gva-preloader {
  position: fixed;
  background: white;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
}

.cssload-container {
  width: 100%;
  height: 200px;
  overflow: hidden;
  margin: 0px auto;
  position: absolute;
  top: 50%;
  margin-top: -100px;
}

.cssload-container .wait-text {
  text-align: center;
  padding-bottom: 15px;
  color: #000;
}

.cssload-container .cssload-item {
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 131px;
  height: 131px;
  background-color: #fff;
  box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-shadow: 0 0 21px 3px rgba(130, 130, 130, 0.26);
  -o-box-shadow: 0 0 21px 3px rgba(130, 130, 130, 0.26);
  -ms-box-shadow: 0 0 21px 3px rgba(130, 130, 130, 0.26);
  -webkit-box-shadow: 0 0 21px 3px rgba(130, 130, 130, 0.26);
  -moz-box-shadow: 0 0 21px 3px rgba(130, 130, 130, 0.26);
}

.cssload-container .cssload-moon {
  border-bottom: 26px solid var(--ziston-theme-color);
  border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  animation: spin 1.45s ease infinite;
  -o-animation: spin 1.45s ease infinite;
  -ms-animation: spin 1.45s ease infinite;
  -webkit-animation: spin 1.45s ease infinite;
  -moz-animation: spin 1.45s ease infinite;
}

@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}

.blur {
  filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius='3');
  -webkit-filter: url(#blur-filter);
  filter: url(#blur-filter);
  -webkit-filter: blur(3px);
  filter: blur(3px);
}

.blur-svg {
  display: none;
}

.hover-in {
  -webkit-transition: .3s ease-out;
  transition: .3s ease-out;
}

.hover-out {
  -webkit-transition: .3s ease-in;
  transition: .3s ease-in;
}

@media (max-width: 1024.98px) {
  .area-main-menu {
    /* min-height: 60px; */
  }
  .gva-offcanvas-mobile {
    background: #fff;
    position: fixed !important;
    left: 0;
    top: 0;
    width: 100%;
    max-width: 350px;
    top: 0;
    bottom: 0;
    z-index: 999;
    height: auto;
    overflow-y: auto;
    overflow-x: hidden;
    webkit-overflow-scrolling: touch;
    -webkit-box-shadow: 0px 4px 4px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 4px 4px 1px rgba(0, 0, 0, 0.2);
    padding-top: 0;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
  }
  .gva-offcanvas-mobile.show-view {
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    -moz-transform: translateX(0);
  }
}

@media (max-width: 1024.98px) and (prefers-reduced-motion: reduce) {
  .gva-offcanvas-mobile.show-view {
    -webkit-transition: none;
    transition: none;
  }
}

@media (max-width: 1024.98px) {
  .gva-offcanvas-mobile .after-offcanvas {
    display: block !important;
    visibility: visible !important;
  }
  .gva-offcanvas-mobile .after-offcanvas .block {
    float: left;
    width: 100%;
  }
  .gva-offcanvas-mobile .close-offcanvas {
    display: block !important;
    visibility: visible !important;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    width: 100%;
    padding: 15px 0;
    opacity: 1;
    filter: alpha(opacity=100);
    color: #111111;
  }
  .gva-offcanvas-mobile .close-offcanvas span {
    font-size: 24px;
  }
  .gva-offcanvas-mobile .close-offcanvas:hover {
    cursor: pointer;
    color: var(--ziston-theme-color);
  }
  .gva-offcanvas-mobile .block {
    border-bottom: 1px solid #dee2e6;
    padding: 20px;
  }
  .gva-offcanvas-mobile .block .block-content::after {
    display: block;
    clear: both;
    content: "";
  }
  .gva-offcanvas-mobile .main-menu-inner {
    width: 100%;
  }
  .gva-offcanvas-mobile .gva-navigation .gva_menu {
    padding: 10px 0 0;
    width: 100% !important;
    background: none !important;
  }
  .gva-offcanvas-mobile .gva-navigation .gva_menu > li {
    list-style: none;
    display: block;
    clear: both;
    width: 100%;
    margin-bottom: 8px !important;
    padding-bottom: 10px !important;
    padding-top: 5px !important;
    border-bottom: 1px solid #dee2e6;
  }
  .gva-offcanvas-mobile .gva-navigation .gva_menu > li:last-child {
    border-bottom: none;
  }
  .gva-offcanvas-mobile .gva-navigation .gva_menu > li:after, .gva-offcanvas-mobile .gva-navigation .gva_menu > li:before {
    content: none;
    display: none;
  }
  .gva-offcanvas-mobile .gva-navigation .gva_menu > li > a {
    display: block;
    width: 100%;
    line-height: 32px;
    font-size: 17px;
    padding: 0 !important;
    font-weight: 600;
    color: #000 !important;
    font-family: var(--ziston-heading-font-family);
  }
  .gva-offcanvas-mobile .gva-navigation .gva_menu > li > .gva-nolink {
    display: block;
    width: 100%;
    line-height: 32px;
    font-size: 17px;
    padding: 0 !important;
    font-weight: 600;
    color: #000 !important;
    font-family: var(--ziston-heading-font-family);
  }
  .gva-offcanvas-mobile .gva-navigation .gva_menu > li > a:after, .gva-offcanvas-mobile .gva-navigation .gva_menu > li > a:before {
    content: none;
    display: none;
  }
  .gva-offcanvas-mobile .gva-navigation .gva_menu > li > a:hover {
    color: var(--ziston-theme-color) !important;
    background: none !important;
  }
  .gva-offcanvas-mobile .gva-navigation .gva_menu > li > .gva-nolink:hover {
    color: var(--ziston-theme-color) !important;
    background: none !important;
  }
  .gva-offcanvas-mobile .gva-navigation .gva_menu > li.menu-parent:hover .sub-menu {
    display: none;
  }
  .gva-offcanvas-mobile .gva-navigation .gva_menu > li ul.menu.sub-menu {
    padding-left: 20px !important;
    margin-bottom: 10px;
  }
  .gva-offcanvas-mobile .gva-navigation .gva_menu > li ul.menu.sub-menu .icaret {
    display: none;
  }
  .gva-offcanvas-mobile .gva-navigation .gva_menu > li ul.menu.sub-menu li a {
    font-size: 15px;
    line-height: 24px;
    padding-top: 2px !important;
    padding-bottom: 2px !important;
    color: #696969 !important;
  }
  .gva-offcanvas-mobile .gva-navigation .gva_menu > li ul.menu.sub-menu li .gva-nolink {
    font-size: 15px;
    line-height: 24px;
    padding-top: 2px !important;
    padding-bottom: 2px !important;
    color: #696969 !important;
  }
  .gva-offcanvas-mobile .gva-navigation .gva_menu > li ul.menu.sub-menu li a:hover {
    color: var(--ziston-theme-color) !important;
  }
  .gva-offcanvas-mobile .gva-navigation .gva_menu > li ul.menu.sub-menu ul.sub-menu {
    display: block !important;
  }
  .gva-offcanvas-mobile .gva-navigation .gva_menu > li.megamenu .sub-menu > li {
    width: 100% !important;
    float: none !important;
    display: block;
    padding: 0;
  }
  .gva-offcanvas-mobile .gva-navigation .gva_menu > li.megamenu .sub-menu > li > a {
    padding: 0;
    border: 0;
    margin: 6px 0;
  }
  .gva-offcanvas-mobile .gva-navigation .gva_menu > li.megamenu .sub-menu > li.block-image {
    display: none;
  }
  .gva-offcanvas-mobile .gva-navigation .gva_menu > li.megamenu > .sub-menu > li > a {
    color: #000;
    font-weight: 700;
    font-size: 15px;
  }
  .gva-offcanvas-mobile .gva-navigation .gva_menu li a {
    position: relative;
    display: block;
  }
  .gva-offcanvas-mobile .gva-navigation .gva_menu li .gva-nolink {
    position: relative;
    display: block;
    cursor: pointer;
  }
  .gva-offcanvas-mobile .gva-navigation .gva_menu li a:hover {
    color: var(--ziston-theme-color);
  }
  .gva-offcanvas-mobile .gva-navigation .gva_menu li a .icaret {
    position: absolute;
    width: 32px;
    height: 32px;
    top: -1px;
    bottom: 0;
    right: 0;
    font-size: 13px;
    background: #000;
    color: #fff;
  }
  .gva-offcanvas-mobile .gva-navigation .gva_menu li .gva-nolink .icaret {
    position: absolute;
    width: 32px;
    height: 32px;
    top: -1px;
    bottom: 0;
    right: 0;
    font-size: 13px;
    background: #000;
    color: #fff;
  }
  .gva-offcanvas-mobile .gva-navigation .gva_menu li a .icaret.nav-minus:before {
    content: '\f077';
  }
  .gva-offcanvas-mobile .gva-navigation .gva_menu li .gva-nolink .icaret.nav-minus:before {
    content: '\f077';
  }
  .gva-offcanvas-mobile .gva-navigation .gva_menu li a .icaret:before {
    position: absolute;
    text-transform: inherit;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .gva-offcanvas-mobile .gva-navigation .gva_menu li .gva-nolink .icaret:before {
    position: absolute;
    text-transform: inherit;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .gva-offcanvas-mobile .gva-navigation .gva_menu li ul {
    display: none;
  }
  .gva-offcanvas-mobile .gva-navigation .gva_menu .sub-menu {
    -webkit-transition: none;
    transition: none;
    min-width: inherit;
    display: none;
    width: 100%;
    position: static;
    padding: 0 !important;
    visibility: visible;
    border: 0;
    background: none;
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .gva-offcanvas-mobile .gva-navigation .gva_menu .sub-menu:after, .gva-offcanvas-mobile .gva-navigation .gva_menu .sub-menu:before {
    content: none;
  }
  .gva-offcanvas-mobile .gva-navigation .gva_menu .sub-menu li a {
    border-width: 0;
    padding-left: 0;
    padding-right: 0;
    font-size: 14px;
  }
  .gva-offcanvas-mobile .gva-navigation .gva_menu .sub-menu li a:before, .gva-offcanvas-mobile .gva-navigation .gva_menu .sub-menu li a:after {
    content: none !important;
  }
  .gva-offcanvas-mobile .gva-navigation .gva_menu .sub-menu li a:hover {
    text-indent: 0;
  }
  .gva-offcanvas-mobile .gva-navigation .gva_menu .sub-menu ul {
    display: none;
    visibility: visible;
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  .gva-offcanvas-mobile .gva-navigation .gva_menu .sub-menu .block-image {
    display: none;
  }
}

.menu-bar {
  height: 32px;
  width: 36px;
  position: absolute;
  cursor: pointer;
  top: 50%;
  right: 0px;
  margin-top: -16px;
}

.menu-bar span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #000;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

@media (prefers-reduced-motion: reduce) {
  .menu-bar span {
    -webkit-transition: none;
    transition: none;
  }
}

.menu-bar span.one {
  top: 6px;
}

.menu-bar span.two {
  top: 0;
  bottom: 0;
}

.menu-bar span.three {
  bottom: 6px;
}

.menu-bar.show-view span.two {
  opacity: 0;
  filter: alpha(opacity=0);
}

.menu-bar.show-view span.one, .menu-bar.show-view span.three {
  top: 0;
  bottom: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.menu-bar.show-view span.three {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.has-button .menu-bar-mobile {
  right: 165px;
}

@media (max-width: 510px) {
  .col-xs-6 {
    width: 100% !important;
  }
}

body.path-user .user-form-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  min-height: 100vh;
  max-height: 100%;
  background: var(--colorGinLayerBackground);
}

@media (min-width: 800px) {
  body.path-user .user-form-page {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

body.path-user .user-form-page, body.path-user .user-form-page * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body.path-user .user-form-page__user-form, body.path-user .user-form-page__wallpaper {
  width: 100%;
}

@media (min-width: 800px) {
  body.path-user .user-form-page__user-form, body.path-user .user-form-page__wallpaper {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
  }
}

body.path-user .user-form-page__user-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 800px;
}

@media (max-width: 800px) {
  body.path-user .user-form-page__user-form {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -ms-flex-line-pack: start;
    align-content: flex-start;
  }
}

@media (min-width: 800px) {
  body.path-user .user-form-page__user-form {
    min-width: 640px;
  }
}

body.path-user .user-form-page__user-form img {
  max-height: 100px;
}

body.path-user .user-form-page__wallpaper {
  display: none;
  pointer-events: none;
  position: relative;
  background-color: #ccc;
}

@media (min-width: 800px) {
  body.path-user .user-form-page__wallpaper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 70%;
    flex-basis: 70%;
  }
}

body.path-user .user-form-page__wallpaper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

body.path-user .user-form-page__page-title {
  font-size: 20px;
  text-transform: uppercase;
  margin: 10px 0 10px;
  padding-bottom: 15px;
  width: 100%;
  max-width: 100%;
  text-overflow: unset;
  white-space: normal;
  position: relative;
}

@media (min-width: 800px) {
  body.path-user .user-form-page__page-title {
    font-size: 22px;
  }
}

body.path-user .user-form-page__page-title:after {
  content: '';
  width: 60px;
  height: 2px;
  background: var(--ziston-theme-color);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 11;
}

body.path-user .user-form-page .content-header {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  background: transparent;
}

body.path-user .user-form-page .content-header .site-branding-logo {
  /* max-width: 120px !important; */
  display: inline-block;
}

body.path-user .user-form-page .content-header a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

body.path-user .user-form-page .layout-container {
  max-width: 560px;
  margin: 0 auto !important;
  padding-left: 24px;
  padding-right: 24px;
}

@media (min-width: 800px) {
  body.path-user .user-form-page .layout-container {
    padding-left: 48px;
    padding-right: 48px;
  }
}

body.path-user .user-form-page .block-system > form {
  padding: 0;
  border: 0 none;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: transparent;
}

body.path-user .user-form-page .form-type--text input, body.path-user .user-form-page .form-type--password input, body.path-user .user-form-page .form-type--email input {
  width: 100%;
}

body.path-user .user-form-page .form-element {
  width: 100%;
  padding: 1rem;
}

body.path-user .user-form-page .more-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 25px 0;
  margin-top: 25px;
  border-top: 1px solid #dee2e6;
}

body.path-user .user-form-page .more-links a {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 13px;
}

body.path-user .user-form-page .help {
  display: block !important;
}

body.path-user .user-form-page .help .block-local-tasks-block {
  display: none;
}

body.path-user .user-login-form .form-actions {
  display: block;
  margin-bottom: 0;
}

body.path-user .page-wrapper {
  margin-top: 0;
}

.user-login-form .form-item, .user-register-form .form-item, .user-form .form-item, .user-pass .form-item {
  margin-bottom: 15px;
}

#user-login-form input[type="text"],
#user-login-form input[type="tel"],
#user-login-form input[type="password"],
#user-login-form input[type="email"],
#user-login-form textarea, #user-login-form select, #user-register-form input[type="text"],
#user-register-form input[type="tel"],
#user-register-form input[type="password"],
#user-register-form input[type="email"],
#user-register-form textarea, #user-register-form select {
  background-color: #fff;
  border: 1px solid #dee2e6;
  padding: 0 15px;
  border-radius: 4px;
  color: #797F89;
  line-height: 46px;
  max-width: 100%;
}

#user-login-form input[type="text"]:focus, #user-login-form input[type="text"]:active, #user-login-form input[type="text"]:hover,
#user-login-form input[type="tel"]:focus,
#user-login-form input[type="tel"]:active,
#user-login-form input[type="tel"]:hover,
#user-login-form input[type="password"]:focus,
#user-login-form input[type="password"]:active,
#user-login-form input[type="password"]:hover,
#user-login-form input[type="email"]:focus,
#user-login-form input[type="email"]:active,
#user-login-form input[type="email"]:hover,
#user-login-form textarea:focus,
#user-login-form textarea:active,
#user-login-form textarea:hover, #user-login-form select:focus, #user-login-form select:active, #user-login-form select:hover, #user-register-form input[type="text"]:focus, #user-register-form input[type="text"]:active, #user-register-form input[type="text"]:hover,
#user-register-form input[type="tel"]:focus,
#user-register-form input[type="tel"]:active,
#user-register-form input[type="tel"]:hover,
#user-register-form input[type="password"]:focus,
#user-register-form input[type="password"]:active,
#user-register-form input[type="password"]:hover,
#user-register-form input[type="email"]:focus,
#user-register-form input[type="email"]:active,
#user-register-form input[type="email"]:hover,
#user-register-form textarea:focus,
#user-register-form textarea:active,
#user-register-form textarea:hover, #user-register-form select:focus, #user-register-form select:active, #user-register-form select:hover {
  outline: none;
}

#user-login-form .form-item:not(.js-form-type-checkbox) label, #user-register-form .form-item:not(.js-form-type-checkbox) label {
  width: 100%;
  font-weight: 600;
  color: #000;
  margin-bottom: 0;
  font-family: var(--ziston-heading-font-family);
}

#user-login-form .js-form-type-managed-file .form-submit, #user-register-form .js-form-type-managed-file .form-submit {
  padding: 6px 12px;
  font-size: 12px;
}

#user-register-form {
  padding: 0 0 35px;
}

.event-block .event-image {
  position: relative;
  overflow: hidden;
}

.event-block .event-image .date {
  position: absolute;
  top: 15px;
  right: 10px;
  overflow: hidden;
  padding: 5px 10px;
  background: #fff;
  -webkit-box-shadow: 0px 4px 26px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 26px 3px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.event-block .event-image .date .day {
  font-size: 30px;
  text-transform: uppercase;
  color: var(--ziston-theme-color);
  display: block;
  font-weight: 700;
  border-radius: 6px;
  line-height: 1;
}

.event-block .event-image .date .month {
  font-size: 12px;
  font-weight: 700;
  color: #000;
  display: block;
  text-transform: uppercase;
}

.event-block .event-image .date .icon {
  margin-right: 5px;
}

.event-block .event-content {
  background: #fff;
  padding: 15px 20px;
  border: 1px solid #dee2e6;
  border-top: 0;
  min-height: 185px;
}

.event-block .event-content .event-info .title {
  font-size: 14px;
  line-height: 24px;
  display: block;
  margin-bottom: 5px;
  font-weight: 700;
}

.event-block .event-content .event-info .event-meta {
  font-size: 13px;
  color: var(--ziston-theme-color-second);
}

.event-block .event-content .event-info .body {
  margin-top: 10px;
  line-height: 28px;
}

.event-block-2 {
  padding-bottom: 35px;
  margin-bottom: 35px;
  border-bottom: 1px solid #dee2e6;
}

.event-block-2::after {
  display: block;
  clear: both;
  content: "";
}

@media (max-width: 575.98px) {
  .event-block-2 {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}

.event-block-2 .content-inner {
  padding-left: 320px;
  position: relative;
  z-index: 9;
}

@media (max-width: 767.98px) {
  .event-block-2 .content-inner {
    padding-left: 310px;
  }
}

@media (max-width: 575.98px) {
  .event-block-2 .content-inner {
    padding-left: 220px;
  }
}

@media (max-width: 650px) {
  .event-block-2 .content-inner {
    padding-left: 0;
  }
}

.event-block-2 .content-inner .event-content-inner {
  position: relative;
}

.event-block-2 .content-inner .event-content-inner .event-content {
  padding-left: 90px;
}

@media (max-width: 767.98px) {
  .event-block-2 .content-inner .event-content-inner .event-content {
    padding-left: 0;
  }
}

.event-block-2 .post-title {
  font-size: 18px;
}

.event-block-2 .event-image {
  width: 320px;
  float: left;
  position: relative;
  z-index: 1;
}

@media (max-width: 767.98px) {
  .event-block-2 .event-image {
    width: 300px;
  }
}

@media (max-width: 575.98px) {
  .event-block-2 .event-image {
    width: 200px;
  }
}

@media (max-width: 650px) {
  .event-block-2 .event-image {
    width: 100%;
    margin-bottom: 15px;
  }
}

.event-block-2 .event-image .event-date {
  -webkit-box-shadow: 0px 4px 26px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 26px 3px rgba(0, 0, 0, 0.1);
  width: 120px;
  height: 120px;
  float: left;
  text-align: center;
  line-height: 1.1;
  padding-top: 15px;
  position: absolute;
  background: #fff;
  top: 50%;
  right: -60px;
  margin-top: -60px;
}

@media (max-width: 767.98px) {
  .event-block-2 .event-image .event-date {
    top: 10px;
    right: 10px;
    margin-top: 0;
    padding-top: 10px;
    width: 90px;
    height: 90px;
  }
}

.event-block-2 .event-image .event-date .date {
  font-size: 55px;
  font-weight: 700;
  color: var(--ziston-theme-color);
  display: block;
}

@media (max-width: 767.98px) {
  .event-block-2 .event-image .event-date .date {
    font-size: 45px;
  }
}

.event-block-2 .event-image .event-date .month {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  color: #000;
}

.event-block-2 .event-meta {
  font-size: 15px;
  margin-top: 5px;
  line-height: 22px;
}

.event-block-2 .event-line {
  width: 50px;
  height: 2px;
  background: var(--ziston-theme-color);
  margin: 15px 0 15px;
}

@media (max-width: 767.98px) {
  .event-block-2 .post-title {
    margin-top: 0;
    font-size: 18px;
  }
}

.event-list-item .event-date {
  display: inline-block;
  background: var(--ziston-theme-color);
  color: #fff;
  border-radius: 3px;
  padding: 0 15px;
  font-size: 13px;
  line-height: 30px;
  line-height: 24px;
}

.event-list-item .event-title {
  margin-top: 5px;
}

.event-list-item .event-title a {
  font-size: 20px;
  color: #000;
  font-weight: 700;
}

.event-list-item .event-body {
  color: #232526;
}

.event-list-item .event-body p {
  margin-bottom: 0;
}

.events-list .view-content-wrap .item:last-child .event-block-2 {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}

.event-block-list .event-date {
  width: 110px;
  height: auto;
  float: left;
  background: var(--ziston-theme-color);
  color: #fff;
  padding: 12px 10px;
}

.event-block-list .event-date span {
  display: block;
}

.event-block-list .event-date span.day {
  font-size: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  line-height: 1;
  margin-bottom: 3px;
  padding-bottom: 3px;
}

.event-block-list .event-title a {
  font-weight: 700;
  font-size: 14px;
  display: inline-block;
  line-height: 24px;
}

.event-block-list .event-address {
  font-size: 14px;
}

.event-block-list .event-address i {
  font-size: 16px;
  color: var(--ziston-theme-color);
}

.event-block-list .event-content {
  padding-left: 125px;
}

.event-full {
  margin-bottom: 30px;
}

.event-full .event-info {
  background: #f5f5f5;
  padding: 20px;
  font-size: 16px;
}

.event-full .event-info .date > *, .event-full .event-info .address > * {
  float: left;
}

.event-full .event-info .date i, .event-full .event-info .address i {
  margin-right: 10px;
  margin-top: 6px;
}

.portfolio-filter {
  margin-bottom: 35px;
}

.portfolio-filter ul.nav-tabs {
  padding: 5px 0;
  border-bottom: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.portfolio-filter ul.nav-tabs > li {
  display: inline-block;
}

.portfolio-filter ul.nav-tabs > li > a {
  font-weight: 700;
  color: #797F89;
  margin-right: 10px;
  padding: 10px 15px;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  text-transform: uppercase;
  letter-spacing: 0;
  position: relative;
  border: 1px solid #dee2e6;
  font-size: 12px;
  background: #fff;
  font-family: var(--ziston-heading-font-family);
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 10px;
}

@media (prefers-reduced-motion: reduce) {
  .portfolio-filter ul.nav-tabs > li > a {
    -webkit-transition: none;
    transition: none;
  }
}

.portfolio-filter ul.nav-tabs > li > a:hover {
  border-color: var(--ziston-theme-color);
  color: var(--ziston-theme-color);
}

.portfolio-filter ul.nav-tabs > li > a.active {
  border-color: var(--ziston-theme-color);
  background: var(--ziston-theme-color);
  color: #fff;
}

.gva-portfolio-items {
  float: left;
  width: 100%;
}

.gva-portfolio-items .view-portfolio {
  width: 100%;
}

.portfolio-v1 {
  position: relative;
  margin: 0 1px;
  margin-bottom: 40px;
  background: none;
}

.portfolio-v1 .portfolio-images {
  position: relative;
  text-align: center;
}

.portfolio-v1 .portfolio-images:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  opacity: 0;
  filter: alpha(opacity=0);
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

@media (prefers-reduced-motion: reduce) {
  .portfolio-v1 .portfolio-images:after {
    -webkit-transition: none;
    transition: none;
  }
}

.portfolio-v1 .portfolio-images .image-popup {
  opacity: 0;
  filter: alpha(opacity=0);
  width: 32px;
  height: 32px;
  background: #fff;
  line-height: 32px;
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 99;
  text-align: center;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  margin-top: 30px;
}

@media (prefers-reduced-motion: reduce) {
  .portfolio-v1 .portfolio-images .image-popup {
    -webkit-transition: none;
    transition: none;
  }
}

.portfolio-v1 .portfolio-images .image-popup:hover {
  color: #fff;
  background: var(--ziston-theme-color);
}

.portfolio-v1 .portfolio-images .link {
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all 0.45s;
  transition: all 0.45s;
  width: 32px;
  height: 32px;
  background: #fff;
  line-height: 33px;
  position: absolute;
  top: 55px;
  right: 15px;
  z-index: 99;
  text-align: center;
  margin-top: 45px;
}

@media (prefers-reduced-motion: reduce) {
  .portfolio-v1 .portfolio-images .link {
    -webkit-transition: none;
    transition: none;
  }
}

.portfolio-v1 .portfolio-images .link:hover {
  color: #fff;
  background: var(--ziston-theme-color);
}

.portfolio-v1 .content-inner {
  position: relative;
  margin-left: 15px;
  margin-right: 15px;
  z-index: 11;
  margin-top: -35px;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  padding: 25px 25px 30px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.04);
  box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.04);
}

@media (prefers-reduced-motion: reduce) {
  .portfolio-v1 .content-inner {
    -webkit-transition: none;
    transition: none;
  }
}

@media (max-width: 991.98px) {
  .portfolio-v1 .content-inner {
    padding: 25px 20px 30px;
    margin-left: 10px;
    margin-right: 10px;
  }
}

.portfolio-v1 .content-inner .title {
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .portfolio-v1 .content-inner .title {
    -webkit-transition: none;
    transition: none;
  }
}

@media (max-width: 767.98px) {
  .portfolio-v1 .content-inner .title {
    font-size: 18px;
  }
}

.portfolio-v1 .content-inner .category {
  padding-bottom: 10px;
  position: relative;
}

.portfolio-v1 .content-inner .category a {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  color: #797F89;
  letter-spacing: 1px;
}

.portfolio-v1 .content-inner .category a:hover, .portfolio-v1 .content-inner .category a:focus, .portfolio-v1 .content-inner .category a:active {
  text-decoration: underline;
}

.portfolio-v1 .content-inner .category:after {
  content: '';
  width: 15px;
  height: 2px;
  background: var(--ziston-theme-color);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 11;
}

.portfolio-v1:hover .portfolio-images:after, .portfolio-v1:active .portfolio-images:after, .portfolio-v1:focus .portfolio-images:after {
  opacity: 1;
}

.portfolio-v1:hover .portfolio-images .image-popup, .portfolio-v1:active .portfolio-images .image-popup, .portfolio-v1:focus .portfolio-images .image-popup {
  opacity: 1;
  filter: alpha(opacity=100);
  margin-top: 0;
}

.portfolio-v1:hover .portfolio-images a.link, .portfolio-v1:active .portfolio-images a.link, .portfolio-v1:focus .portfolio-images a.link {
  opacity: 1;
  filter: alpha(opacity=100);
  margin-top: 0;
}

.portfolio-v1 ul {
  list-style: none;
  padding: 0;
}

.testimonial-node-1 {
  position: relative;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  padding-left: 65px;
  max-width: 800px;
  margin: 0 auto 45px;
}

@media (max-width: 575.98px) {
  .testimonial-node-1 {
    padding-top: 65px;
    padding-left: 0;
  }
}

.testimonial-node-1 .testimonial-content {
  background: #fff;
  -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.07);
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.07);
  position: relative;
  border-radius: 4px;
}

.testimonial-node-1 .testimonial-content:after {
  content: '';
  background: url("../images/bg-arrow.png") repeat bottom center transparent;
  width: 166px;
  height: 110px;
  position: absolute;
  top: 100%;
  left: 30px;
  z-index: 11;
}

.testimonial-node-1 .testimonial-image {
  border: 10px solid #fff;
  padding: 10px;
  border-radius: 50%;
  position: absolute;
  top: 60px;
  left: -65px;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

@media (max-width: 991.98px) {
  .testimonial-node-1 .testimonial-image {
    left: -60px;
  }
}

@media (max-width: 575.98px) {
  .testimonial-node-1 .testimonial-image {
    top: -60px;
    left: 30px;
  }
}

.testimonial-node-1 .testimonial-image img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
}

@media (max-width: 991.98px) {
  .testimonial-node-1 .testimonial-image img {
    width: 80px;
    height: 80px;
  }
}

.testimonial-node-1 .testimonial-content-inner {
  padding: 50px 45px 55px 95px;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 991.98px) {
  .testimonial-node-1 .testimonial-content-inner {
    padding: 50px 30px 55px 85px;
  }
}

@media (max-width: 575.98px) {
  .testimonial-node-1 .testimonial-content-inner {
    padding: 85px 30px 30px;
  }
}

.testimonial-node-1 .testimonial-content-inner .quote-icon {
  font-size: 60px;
  color: #F0F3F6;
  position: absolute;
  bottom: 50px;
  right: 45px;
  z-index: 1;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

@media (max-width: 991.98px) {
  .testimonial-node-1 .testimonial-content-inner .quote-icon {
    font-size: 45px;
    right: 30px;
  }
}

.testimonial-node-1 .testimonial-content-inner .testimonial-quote {
  font-size: 18px;
  line-height: 34px;
  font-weight: 500;
  margin-bottom: 15px;
  margin: 0 auto;
}

.testimonial-node-1 .testimonial-content-inner .testimonial-information {
  margin: 30px 0 0;
}

.testimonial-node-1 .testimonial-content-inner .testimonial-information span.testimonial-name {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  font-family: var(--ziston-heading-font-family);
}

.testimonial-node-1 .testimonial-content-inner .testimonial-information span.testimonial-job {
  font-size: 14px;
  line-height: 1.1;
  font-weight: 600;
}

.testimonial-node-1:hover .testimonial-image {
  border-color: var(--ziston-theme-color);
}

.testimonial-node-1:hover .testimonial-content-inner .quote-icon {
  color: var(--ziston-theme-color);
}

.owl-item.first .testimonial-node-1 .testimonial-image {
  border-color: var(--ziston-theme-color);
}

.owl-item.first .testimonial-node-1 .testimonial-content-inner .quote-icon {
  color: var(--ziston-theme-color);
}

.testimonial-node-2 {
  max-width: 750px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.testimonial-node-2 .content-body {
  position: relative;
  padding: 0 30px 30px;
}

.testimonial-node-2 .content-body .avatar {
  margin-bottom: 45px;
  max-width: 90px;
  position: relative;
  display: inline-block;
}

.testimonial-node-2 .content-body .avatar img {
  width: 100% !important;
  height: auto;
  border-radius: 50%;
}

.testimonial-node-2 .content-body .avatar .quote-icon {
  font-size: 38px;
  width: 38px;
  height: 38px;
  background: var(--ziston-theme-color);
  color: #fff;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  margin-top: -20px;
  right: -20px;
  line-height: 62px;
  font-style: italic;
  padding-right: 12px;
}

.testimonial-node-2 .content-body .quote {
  font-size: 26px;
  line-height: 48px;
  position: relative;
  padding-bottom: 25px;
  color: #000;
  text-align: center;
  font-family: var(--ziston-heading-font-family);
}

@media (max-width: 767.98px) {
  .testimonial-node-2 .content-body .quote {
    font-size: 22px;
    line-height: 40px;
  }
}

.testimonial-node-2 .content-body .info {
  text-align: center;
}

.testimonial-node-2 .content-body .info .name {
  font-size: 20px;
  font-weight: 700;
  color: var(--ziston-theme-color-second);
  font-family: var(--ziston-heading-font-family);
}

.testimonial-node-2 .content-body .info .job {
  font-size: 16px;
  line-height: 1;
  font-family: var(--ziston-heading-font-family);
}

.testimonial-node-3 {
  background: none;
  max-width: 620px;
  float: left;
  position: relative;
  border-radius: 6px;
  border: 1px solid #dee2e6;
}

.testimonial-node-3 .testimonial-content {
  padding: 20px;
}

.testimonial-node-3 .video {
  margin-bottom: 20px;
}

.testimonial-node-3 .video .popup-video {
  display: inline-block;
  background: url("../images/icon-play-2.png") no-repeat left center transparent;
  height: 55px;
  padding-left: 75px;
  line-height: 55px;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-node-3 .video .popup-video {
    -webkit-transition: none;
    transition: none;
  }
}

.testimonial-node-3 .video .popup-video:hover, .testimonial-node-3 .video .popup-video:focus, .testimonial-node-3 .video .popup-video:active {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}

.testimonial-node-3 .quote {
  font-size: 18px;
  line-height: 32px;
  font-weight: 400;
  font-family: "Georgia";
  color: #838383;
  font-style: italic;
}

.testimonial-node-3 .title {
  font-weight: 700;
  font-size: 18px;
  margin-top: 15px;
  color: #000;
}

.testimonial-node-3 .job {
  font-size: 13px;
}

.testimonial-node-v3 {
  max-width: 600px;
  margin: 0 auto;
  padding: 60px;
  background: #fff;
}

.testimonial-node-v3::after {
  display: block;
  clear: both;
  content: "";
}

@media (max-width: 991.98px) {
  .testimonial-node-v3 {
    padding: 30px;
  }
}

.testimonial-node-v3 .testimonial-content .testimonial-icon {
  margin-bottom: 15px;
}

.testimonial-node-v3 .testimonial-content .testimonial-icon span {
  width: 40px;
  height: 40px;
  color: #fff;
  background: var(--ziston-theme-color);
  border-radius: 50%;
  line-height: 56px;
  display: inline-block;
  font-size: 36px;
  font-style: italic;
  padding-left: 10px;
}

.testimonial-node-v3 .testimonial-content .quote {
  font-size: 22px;
  line-height: 46px;
  position: relative;
  padding-top: 10px;
  color: #000;
  font-family: var(--ziston-heading-font-family);
}

@media (max-width: 991.98px) {
  .testimonial-node-v3 .testimonial-content .quote {
    font-size: 20px;
    line-height: 40px;
  }
}

@media (max-width: 767.98px) {
  .testimonial-node-v3 .testimonial-content .quote {
    font-size: 18px;
    line-height: 36px;
  }
}

.testimonial-node-v3 .content-inner {
  border-top: 1px solid #dee2e6;
  margin-top: 40px;
  padding-top: 40px;
}

.testimonial-node-v3 .content-inner::after {
  display: block;
  clear: both;
  content: "";
}

.testimonial-node-v3 .content-inner .left {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  float: left;
  overflow: hidden;
}

.testimonial-node-v3 .content-inner .right {
  padding-left: 110px;
  padding-top: 20px;
}

.testimonial-node-v3 .content-inner .right .name {
  color: var(--ziston-theme-color);
  font-weight: 700;
  font-size: 18px;
  display: block;
  line-height: 1.1;
  font-family: var(--ziston-heading-font-family);
}

.testimonial-node-v3 .content-inner .right .job {
  color: #b1bec5;
}

.testimonial-grid .item-grid {
  margin-bottom: 45px;
}

.testimonial-grid .item-grid::after {
  display: block;
  clear: both;
  content: "";
}

.testimonial-grid .item-grid .testimonials-quote {
  font-size: 16px;
  color: #000;
  padding: 30px;
  border: 1px solid #dee2e6;
  font-weight: 400;
  font-style: italic;
  font-family: "Georgia";
}

.testimonial-grid .item-grid .testimonials-profile {
  display: inline-block;
  position: relative;
  margin-left: 30px;
  float: left;
  padding-top: 20px;
}

.testimonial-grid .item-grid .testimonials-profile:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  background: var(--ziston-theme-color);
  top: -1px;
  left: 0;
  z-index: 1;
}

.testimonial-grid .item-grid .testimonials-profile .right {
  padding-left: 70px;
}

.testimonial-grid .item-grid .testimonials-profile .right .name {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  margin: 0;
  text-transform: uppercase;
}

.testimonial-grid .item-grid .testimonials-profile .right .job {
  font-size: 12px;
  font-weight: 900;
  color: var(--ziston-theme-color);
  text-transform: uppercase;
}

.testimonial-grid .item-grid .testimonials-profile .left {
  display: inline-block;
  float: left;
}

.testimonial-grid .item-grid .testimonials-profile .left img {
  border-radius: 50%;
  width: 50px;
  height: auto;
}

.colorpicker {
  z-index: 9999999 !important;
}

.permission-save-hidden #gavias_customize_save {
  display: none !important;
}

.gavias-skins-panel {
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  background: #fff;
  right: -403px;
  position: fixed;
  height: auto;
  top: 0px;
  bottom: 0;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  width: 400px;
  z-index: 999;
}

@media (prefers-reduced-motion: reduce) {
  .gavias-skins-panel {
    -webkit-transition: none;
    transition: none;
  }
}

.gavias-skins-panel .gavias-skins-panel-inner {
  bottom: 0;
  padding: 10px 10px 10px;
  height: auto;
  overflow-x: hidden;
  overflow-y: scroll;
  position: absolute;
  top: 0;
  width: 100%;
}

.gavias-skins-panel.active {
  right: 0 !important;
}

.gavias-skins-panel #gavias_profile_customize_name option {
  color: #000;
}

.gavias-skins-panel .control-panel {
  position: absolute;
  top: 150px;
  left: -40px;
  width: 40px;
  height: 40px;
  background: var(--ziston-theme-color);
  color: #fff;
  font-size: 16px;
  line-height: 45px;
  text-align: center;
}

.gavias-skins-panel .control-panel:hover {
  cursor: pointer;
}

.gavias-skins-panel .panel-skins-content {
  padding-bottom: 20px;
  overflow: hidden;
}

.gavias-skins-panel .panel-skins-content:last-child {
  padding-bottom: 0;
}

.gavias-skins-panel .panel-skins-content .title {
  font-size: 14px;
  font-weight: 700;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  color: #000;
  margin-bottom: 10px;
}

#customize-gavias-preivew {
  font-size: 14px;
}

#customize-gavias-preivew .accordion-item .accordion-button {
  -webkit-box-shadow: none;
  box-shadow: none;
  font-weight: 600;
}

#customize-gavias-preivew select, #customize-gavias-preivew input {
  font-size: 14px;
  padding: 10px 10px;
  line-height: 20px;
}

#customize-gavias-preivew .form-group {
  position: relative;
  float: left;
  width: 100%;
  margin-bottom: 10px;
}

#customize-gavias-preivew .form-group label {
  width: 170px;
  float: left;
  padding-top: 10px;
  font-size: 13px;
  color: #161c26;
  font-weight: 400;
}

#customize-gavias-preivew .form-group label.fw {
  width: 100%;
}

#customize-gavias-preivew .form-group input {
  width: calc(100% - 170px);
  float: left;
}

#customize-gavias-preivew .form-group .colorselector {
  width: calc(100% - 170px);
  position: relative;
}

#customize-gavias-preivew .form-group .colorselector input {
  width: 100% !important;
}

#customize-gavias-preivew .form-group .colorselector .input-group-addon {
  border: 1px solid #dee2e6;
  position: absolute;
  width: 30px;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 1;
}

#customize-gavias-preivew .form-group .colorselector .input-group-addon i {
  width: 30px;
  height: 20px;
  display: inline-block;
}

#customize-gavias-preivew .form-group .colorselector .remove {
  width: 34px;
  height: 34px;
  color: #000;
  position: absolute;
  top: 4px;
  right: 25px;
  line-height: 34px;
  text-align: center;
  z-index: 99;
}

#customize-gavias-preivew .form-group .colorselector .remove:hover {
  cursor: pointer;
}

.gavias_customize_form .form-group.action {
  float: left;
  width: 100%;
  margin-top: 20px;
}

.gavias_customize_form .form-group.action input {
  width: 28%;
  margin-left: 10px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 10px;
  padding: 10px 0;
}

.gavias_customize_form .form-group.action input#gavias_customize_save {
  background: theme-color("success");
}

.gavias_customize_form .form-group.action input#gavias_customize_preview {
  background: theme-color("info");
}

.gavias_customize_form .form-group.action input#gavias_customize_reset {
  background: theme-color("warning");
}

.gavias_sliderlayer {
  background: #fff;
}

.tp-parallax-wrap {
  visibility: visible !important;
  -webkit-transform-style: unset !important;
  transform-style: unset !important;
}

.tp-parallax-wrap::after {
  display: block;
  clear: both;
  content: "";
}

.slotholder {
  -webkit-filter: unset !important;
  filter: unset !important;
}

.layer-style-image {
  display: inline-block;
  text-align: center;
}

.layer-style-image img {
  max-width: 100% !important;
  height: auto !important;
}

.gavias_sliderlayer .tp-bullets, #gavias_slider_single .tp-bullets {
  -webkit-opacity: 1 !important;
  -ms-opacity: 1 !important;
  -o-opacity: 1 !important;
  opacity: 1 !important;
  visibility: visible !important;
  margin-left: -40px;
}

.gavias_sliderlayer .tp-bullets .tp-bullet, #gavias_slider_single .tp-bullets .tp-bullet {
  width: 20px;
  height: 5px;
  background: rgba(255, 255, 255, 0.4);
}

.gavias_sliderlayer .tp-bullets .tp-bullet.selected, #gavias_slider_single .tp-bullets .tp-bullet.selected {
  background: #fff;
}

.gavias_sliderlayer .tparrows, #gavias_slider_single .tparrows {
  width: 36px;
  height: 36px;
  background: #fff !important;
  line-height: 36px;
  color: #000;
  font-size: 18px;
  -webkit-box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 575.98px) {
  .gavias_sliderlayer .tparrows, #gavias_slider_single .tparrows {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}

.gavias_sliderlayer .tparrows:hover, .gavias_sliderlayer .tparrows:focus, #gavias_slider_single .tparrows:hover, #gavias_slider_single .tparrows:focus {
  background: var(--ziston-theme-color);
  color: #fff;
}

.gavias_sliderlayer .tparrows:before, #gavias_slider_single .tparrows:before {
  color: #000 !important;
  line-height: 36px !important;
}

.gavias_sliderlayer .tp-caption, #gavias_slider_single .tp-caption {
  z-index: 99;
  line-height: 28px;
  color: #000;
}

.gavias_sliderlayer .tp-caption img, #gavias_slider_single .tp-caption img {
  max-width: 100% !important;
  height: auto !important;
}

.gavias_sliderlayer .slide-style-1, #gavias_slider_single .slide-style-1 {
  font-family: var(--ziston-heading-font-family);
  font-weight: 700;
  letter-spacing: -0.5px;
}

.gavias_sliderlayer .slide-style-2, #gavias_slider_single .slide-style-2 {
  font-family: var(--ziston-heading-font-family);
  font-weight: 400;
}

.gavias_sliderlayer .slide-style-3, #gavias_slider_single .slide-style-3 {
  font-weight: 500;
  letter-spacing: 3px;
  font-family: var(--ziston-heading-font-family);
  border-bottom: 2px solid var(--ziston-theme-color);
}

.gavias_sliderlayer .sub-title, #gavias_slider_single .sub-title {
  text-transform: uppercase;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: #fff;
}

.gavias_sliderlayer .sub-title:after, #gavias_slider_single .sub-title:after {
  content: "";
  width: 5px;
  height: 100%;
  background: var(--ziston-theme-color);
  position: absolute;
  top: -2px;
  left: 0;
  z-index: 99;
}

.gavias_sliderlayer .text-large, #gavias_slider_single .text-large {
  color: #000;
  font-size: 36px;
  line-height: 48px;
  letter-spacing: 1px;
  font-weight: 700;
  text-transform: none;
}

.gavias_sliderlayer .text-big, #gavias_slider_single .text-big {
  color: #000;
  font-size: 48px;
  line-height: 60px;
  letter-spacing: 1px;
  font-weight: 700;
  text-transform: uppercase;
}

.gavias_sliderlayer .text-medium, #gavias_slider_single .text-medium {
  color: rgba(0, 0, 0, 0.6);
  font-size: 20px;
  line-height: 22px;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
}

.gavias_sliderlayer .small-text, #gavias_slider_single .small-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  color: #fff;
  line-height: 18px;
}

.gavias_sliderlayer .text-black, #gavias_slider_single .text-black {
  color: #000 !important;
}

.gavias_sliderlayer .text-theme, #gavias_slider_single .text-theme {
  color: var(--ziston-theme-color) !important;
}

.gavias_sliderlayer .text-theme-second, #gavias_slider_single .text-theme-second {
  color: var(--ziston-theme-color-second) !important;
}

.gavias_sliderlayer .text-white, #gavias_slider_single .text-white {
  color: #fff !important;
}

.gavias_sliderlayer .text-center, #gavias_slider_single .text-center {
  text-align: center;
}

.gavias_sliderlayer .text-left, #gavias_slider_single .text-left {
  text-align: left;
}

.gavias_sliderlayer .inner.btn-slide, .gavias_sliderlayer .btn-slide a, #gavias_slider_single .inner.btn-slide, #gavias_slider_single .btn-slide a {
  font-size: 17px;
  background: var(--ziston-theme-color);
  color: #fff;
  font-weight: 700;
  padding: 24px 45px 24px 45px;
  line-height: 20px;
  position: relative;
  z-index: 9;
  display: inline-block;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  border: none;
  font-family: var(--ziston-heading-font-family);
  text-transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .gavias_sliderlayer .inner.btn-slide, .gavias_sliderlayer .btn-slide a, #gavias_slider_single .inner.btn-slide, #gavias_slider_single .btn-slide a {
    -webkit-transition: none;
    transition: none;
  }
}

@media (max-width: 767.98px) {
  .gavias_sliderlayer .inner.btn-slide, .gavias_sliderlayer .btn-slide a, #gavias_slider_single .inner.btn-slide, #gavias_slider_single .btn-slide a {
    padding: 22px 35px 22px 35px;
    font-size: 15px;
  }
}

.gavias_sliderlayer .inner.btn-slide span, .gavias_sliderlayer .btn-slide a span, #gavias_slider_single .inner.btn-slide span, #gavias_slider_single .btn-slide a span {
  position: relative;
  z-index: 9;
  padding-left: 25px;
  display: inline-block;
}

.gavias_sliderlayer .inner.btn-slide span:after, .gavias_sliderlayer .btn-slide a span:after, #gavias_slider_single .inner.btn-slide span:after, #gavias_slider_single .btn-slide a span:after {
  content: '';
  width: 15px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  margin-top: -1px;
  left: 0;
  z-index: 1;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.gavias_sliderlayer .inner.btn-slide:hover, .gavias_sliderlayer .btn-slide a:hover, #gavias_slider_single .inner.btn-slide:hover, #gavias_slider_single .btn-slide a:hover {
  cursor: pointer;
  -webkit-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
  color: #fff;
  opacity: 0.9;
}

.gavias_sliderlayer .inner.btn-slide:hover span:after, .gavias_sliderlayer .btn-slide a:hover span:after, #gavias_slider_single .inner.btn-slide:hover span:after, #gavias_slider_single .btn-slide a:hover span:after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.gavias_sliderlayer .btn-slide-white.inner, .gavias_sliderlayer .btn-slide-white a, #gavias_slider_single .btn-slide-white.inner, #gavias_slider_single .btn-slide-white a {
  background: #fff;
  color: var(--ziston-theme-color);
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 28px;
  position: relative;
  display: inline-block;
  line-height: 38px;
  z-index: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: var(--ziston-heading-font-family);
  border: none;
}

@media (prefers-reduced-motion: reduce) {
  .gavias_sliderlayer .btn-slide-white.inner, .gavias_sliderlayer .btn-slide-white a, #gavias_slider_single .btn-slide-white.inner, #gavias_slider_single .btn-slide-white a {
    -webkit-transition: none;
    transition: none;
  }
}

@media (max-width: 767.98px) {
  .gavias_sliderlayer .btn-slide-white.inner, .gavias_sliderlayer .btn-slide-white a, #gavias_slider_single .btn-slide-white.inner, #gavias_slider_single .btn-slide-white a {
    padding: 6px 16px;
  }
}

.gavias_sliderlayer .btn-slide-white.inner:hover, .gavias_sliderlayer .btn-slide-white.inner:focus, .gavias_sliderlayer .btn-slide-white.inner:active, .gavias_sliderlayer .btn-slide-white.inner.active, .gavias_sliderlayer .btn-slide-white a:hover, .gavias_sliderlayer .btn-slide-white a:focus, .gavias_sliderlayer .btn-slide-white a:active, .gavias_sliderlayer .btn-slide-white a.active, #gavias_slider_single .btn-slide-white.inner:hover, #gavias_slider_single .btn-slide-white.inner:focus, #gavias_slider_single .btn-slide-white.inner:active, #gavias_slider_single .btn-slide-white.inner.active, #gavias_slider_single .btn-slide-white a:hover, #gavias_slider_single .btn-slide-white a:focus, #gavias_slider_single .btn-slide-white a:active, #gavias_slider_single .btn-slide-white a.active {
  color: var(--ziston-theme-color);
  opacity: 0.9;
}

.gavias_sliderlayer .gavias-overlay:after, #gavias_slider_single .gavias-overlay:after {
  content: "";
  background: url(../images/grid-slide.png) repeat rgba(0, 0, 0, 0.3);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.rs-background-video-layer {
  position: relative;
}

.rs-background-video-layer:after {
  content: "";
  background: url(../images/grid-slide.png) repeat rgba(0, 0, 0, 0.39);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.footer-logo {
  /*max-width: 100%;*/
  height: auto;
  /*max-height: 80px;*/
}

.listing-sidebar {
  margin-top: 0px;
}

@media (min-width: 768px) {
  .listing-sidebar {
    margin-top: 30px;
  }
}
#edit-mail-0-value{
  max-width: 100%;
}

#edit-mail-0-value--description{
  display: none;
}

.captcha__title {
  display: none;
}

#webform-submission-domi-rate-add-form label {
  color: #000;
}

#block-listing-contact-form {
  padding: 30px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  margin-bottom: 30px;
}

.structures-category {
  padding: 20px 20px 0 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  max-width: 260px;
  margin: 20px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
}

.map-structure{
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.structures-category .column-inner,
.structures-category .column-content-inner,
.structures-category .gsc-icon-box,
.structures-category .highlight_content {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
}

.structures-category .desc {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.structures-category .desc p {
  margin: 0;
}

.structures-category .desc p:last-child {
  margin-top: auto;
  margin-bottom: 10px;
}

.structures-category .gsc-icon-box {
  height: 100%;
}

#block-listing-contact-form .block-title,
.node-listing-single .listing-content-main .listing-info-block .title
 {
  font-size: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}
 
.structures-category .btn-inline{
    display: inline-block;
  padding: 10px 35px;
  background-color: var(--ziston-theme-color); /* ή βάλε το theme σου */
  color: #fff !important;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  text-transform: none;
  border-color: var(--ziston-theme-color) !important;
}


.map-structure .gsc-button{
  display: inline-block;
  padding: 10px 35px;
  background-color: var(--ziston-theme-color); /* ή βάλε το theme σου */
  color: #fff !important;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  text-transform: uppercase;
  border-color: var(--ziston-theme-color) !important;
}

/* Hover 
.structures-category .btn-inline:hover,
.map-structure .gsc-button:hover {
   background-color: #d62828;  λίγο πιο σκούρο από το theme 
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15); 
}*/

/* Active (click feel) */
.structures-category .btn-inline:active,
.map-structure .gsc-button:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn-inline, .map-structure .gsc-button, .learn-more {
  position: relative;
}

/* Hover */
.site-ext:hover,.gsc-button .learn-more:hover {
  background-color: var(--ziston-theme-color);
  color: #fff;
  transform: translateY(-2px);
  border-color: var(--ziston-theme-color);
}

.btn-inline:after,
.map-structure .gsc-button:after {
  content: '\f061';
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%); 
  line-height: 1;
  font-weight: 900;
  font-size: 10px;
}

.learn-more:after{
  content: '\f061';
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%); 
  line-height: 1;
  font-weight: 900;
  font-size: 10px;
}

.learn-more:hover::after{
  color: white;
}

.site-ext {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 14px 26px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;

  color: black;
  background-color: transparent;
  border: 1.5px solid black;
  border-radius: 4px;

  text-decoration: none;
  cursor: pointer;

  transition: all 0.25s ease;
}



/* Active */
.site-ext:active,.gsc-button .learn-more:active {
  transform: translateY(0);
  opacity: 0.9;
}

/* Hover arrow animation */
.site-ext:hover::after,.gsc-button .learn-more:hover::after {
  transform: translate(3px, -3px);
}
#block-listing-contact-form .block-title::after,
.node-listing-single .listing-content-main .listing-info-block .title::after
 {
  content: '';
  width: 50px;
  height: 2px;
  background: var(--ziston-theme-color-second);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.avail-cat{
  display: flex;
  flex-direction: column;
  align-items: stretch; 
  text-align: center;
}

.avail-cat .views-element-container {
  width: 100%;
}

.avail-cat .views-view-grid {
  width: 100%;
  text-align: left;
}

.avail-cat .row {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  margin-left: 0;
  margin-right: 0;
}

.avail-cat .views-row {
  width: 100%;
}

.avail-cat .views-col:has(.listing-category-card) {
  /* display: flex; */
  width: calc((100% - 90px) / 4) !important;
  max-width: calc((100% - 90px) / 4);
  flex: 0 0 calc((100% - 90px) / 4);
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 30px;
}

.avail-cat .views-col:has(.listing-category-card):only-child {
  width: calc((100% - 90px) / 4) !important;
  max-width: calc((100% - 90px) / 4);
  flex: 0 0 calc((100% - 90px) / 4);
}

.avail-cat .listing-category-card {
  width: 100%;
}

.avail-cat .listing-category-card h3 {
  overflow-wrap: anywhere;
  word-break: normal;
}

@media (max-width: 991.98px) {
  .avail-cat .views-col:has(.listing-category-card),
  .avail-cat .views-col:has(.listing-category-card):only-child {
    width: calc((100% - 30px) / 2) !important;
    max-width: calc((100% - 30px) / 2);
    flex: 0 0 calc((100% - 30px) / 2);
  }
}

@media (max-width: 575.98px) {
  .avail-cat .row {
    gap: 22px;
  }

  .avail-cat .views-col:has(.listing-category-card),
  .avail-cat .views-col:has(.listing-category-card):only-child {
    width: 100% !important;
    max-width: 100%;
    flex: 0 0 100%;
  }
}

#block-listing-contact-form form.webform-submission-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

#block-listing-contact-form .form-item-message,
#block-listing-contact-form .form-actions {
  grid-column: 1 / -1;
}

@media (max-width: 767.98px) {
  #block-listing-contact-form form.webform-submission-form,
  form.webform-submission-request-call-back-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  #block-listing-contact-form form.webform-submission-form .form-item,
  #block-listing-contact-form form.webform-submission-form .form-actions,
  form.webform-submission-request-call-back-form .form-item,
  form.webform-submission-request-call-back-form .form-actions {
    grid-column: 1 / -1;
    width: 100%;
  }

  form.webform-submission-request-call-back-form .form-item input,
  form.webform-submission-request-call-back-form .form-item textarea {
    width: 100%;
  }
}

.node-listing-single .listing-top .listing-top-content .top-right {
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.node-listing-single .listing-top .listing-top-content .top-right .listing-action {
  flex: 0 0 auto;
  width: auto;
  margin-left: auto;
}

.rate-line{
  padding-bottom: 18px;
}

.rate-line .listing-rating {
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: nowrap;
  display: flex;
}

.rate-line .btn {
  float: none;
  margin-left: auto;
  text-transform: none;
  letter-spacing: 0px;
  line-height: 10px !important;
  padding: 12px 12px !important;
  font-size: 12px !important;
}

/* Κρύψε μόνο το πάνω label row και τα option numbers */
.listing-rating .rating-table-tr:first-child,
.listing-rating .rating-option-result {
  display: none !important;
}

/* Κρύψε submit button */
.listing-rating .form-submit,
.listing-rating input[type="submit"],
.listing-rating .fivestar-rating-submit {
  display: none !important;
}

/* Κρύψε radio inputs */
.listing-rating .rating-input {
  display: none !important;
}

/* Καθάρισε table layout */
.listing-rating table,
.listing-rating tr,
.listing-rating td {
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
  margin-bottom: 0 !important;
}

/* Άφησε σωστά το stars cell */
.listing-rating .rating-table > tbody > tr:last-child > td:first-child {
  display: flex !important;
  align-items: center;
  flex: 0 0 auto;
  vertical-align: middle;
  width: auto;
}

/* Άφησε visible το summary cell */
.listing-rating .rating-table > tbody > tr:last-child > td:last-child {
  display: flex !important;
  align-items: center;
  flex: 0 0 auto;
  vertical-align: middle;
  padding-left: 12px !important;
  padding-top: 6px !important;
}

.listing-rating .rating-table > tbody > tr:last-child {
  display: flex !important;
  align-items: center;
  flex-wrap: nowrap;
}

/* Wrapper των αστεριών */
.listing-rating .fivestar-rating-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

/* Summary style */
.listing-rating .vote-result,
.listing-rating .rating-average,
.listing-rating .rating-count {
  display: inline-flex !important;
  align-items: center;
  vertical-align: middle;
  white-space: nowrap;
}

.listing-rating .vote-result {
  gap: 6px;
  flex-wrap: nowrap;
}

.listing-rating .rating-average {
  font-size: 14px;
  color: #abafb5;
}

.listing-rating .rating-count {
  color: #abafb5;
  font-size: 14px;
}

/* Hover highlight */
.listing-rating .fivestar-rating-label:hover,
.listing-rating .fivestar-rating-label:hover ~ .fivestar-rating-label {
  filter: brightness(1.2);
}

/* Hover animation */
.listing-rating .fivestar-rating-label:hover {
  animation: starPop 0.3s ease;
}

@keyframes starPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.4); }
  100% { transform: scale(1); }
}

@media (max-width: 768px) {
  .rate-line {
    padding-bottom: 18px;
  }

  .rate-line .listing-rating {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .rate-line .btn {
    margin-left: 0;
  }
}

.post-author{
  display: none;
}

.breadcrumb-style {
  position: relative;
  overflow: hidden;
}

.breadcrumb-style::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(36deg, #fd3b3b00 0%, rgb(255 255 255 / 31%) 100%);
  z-index: 1;
}

.breadcrumb-style > * {
  position: relative;
  z-index: 2;
}

.title-edit h2 {
  position: relative;
  display: inline-block;
}

.title-edit h2::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%); /* 👈 τέλειο κέντρο */
  bottom: -12px;

  width: 40px;
  height: 4px;
  background-color: var(--ziston-theme-color-second);
}

.map-structure h2 {
  position: relative;
  display: inline-block;
}

.gsc-icon-box-carousel.style-1 
.icon-box-item-content 
.icon-box-item-inner h3.title {
   /* min-height: 60px;           2 γραμμές περίπου */
    display: flex;
    align-items: center;       /* κάθετη στοίχιση */
    justify-content: center;   /* οριζόντια στοίχιση */
    text-align: center;
    margin-top: 5px;
}


.gsc-icon-box-carousel.style-1 .icon-box-item-inner {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  padding: 30px 20px;
}

.init-carousel-owl .owl-item > .item {
  padding-left: 20px;
  /* padding-right: 15px; */
}


.footer-bottom-custom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  line-height: 1.5;
  color: #4a4a4a;
  flex-wrap: wrap;
}

.footer-bottom-custom__left {
  text-align: left;
  color: #abafb5;
}

.footer-bottom-custom__right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  text-align: right;
}

.footer-bottom-custom__right a {
  color: #4a4a4a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-custom__right a:hover {
  color: #163a70;
  text-decoration: underline;
}

.footer-separator {
  color: #999;
}

/* Tablet */
@media (max-width: 991px) {
  .footer-bottom-custom {
    font-size: 13px;
    gap: 14px;
  }

  .footer-bottom-custom__left,
  .footer-bottom-custom__right {
    flex: 1 1 100%;
  }

  .footer-bottom-custom__right {
    justify-content: flex-start;
    text-align: left;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .footer-bottom-custom {
    padding: 14px 0;
    font-size: 13px;
  }

  .footer-bottom-custom__left,
  .footer-bottom-custom__right {
    width: 100%;
  }

  .footer-bottom-custom__right {
    gap: 8px;
  }

  .footer-separator {
    display: none;
  }

  .footer-bottom-custom__right a {
    display: inline-block;
    margin-right: 12px;
  }
}

.center-divs{
 display: flex;
  justify-content: center;
  align-items: center;
}

.column-content .site-ext{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px
}

.logos {
  display: flex;
  justify-content: space-between; /* 🔥 το βασικό */
  align-items: center;
}

/* .logos img {
  max-width: 300px;
  height: 50px;
} */

.logos-banner {
  max-width: 400px;
}

.logos-banner img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1024px) {
  .state {
    display: none;
  }
}

.listing-share {
  align-items: center;
  display: table;
  margin: 10px 0 0px;
}

/* icons container */
.listing-share .addtoany_list {
  display: flex;
  align-items: center;
}

.listing-share {
  line-height: 1; /* 🔥 κόβει το extra vertical space */
}

/* container */
.listing-share .addtoany_list {
  display: flex;
  align-items: center;
  line-height: 1;
}

/* links */
.listing-share .addtoany_list a {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0 4px; /* remove default padding */
}


.faq .js-hide{
  display: none;
}

.faq fieldset,
.faq .fieldgroup,
.faq .form-composite {
  border: 0;
  margin: 0 0 35px;
  min-width: 0;
  padding: 0;
}

.faq legend,
.faq .fieldset-legend {
  display: none;
}

.faq .form-radios {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0 0 45px;
  width: 100%;
}

.faq .form-type-radio {
  margin: 0;
  min-width: 0;
}

.faq .form-type-radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.faq .form-type-radio label.option {
  width: 100%;
  height: 95px;
  padding: 18px 16px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow-wrap: anywhere;

  background: #fff;
  border: 1px solid #e8edf3;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(159, 144, 144, 0.33);

  color: #1f2933;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

@media (max-width: 991.98px) {
  .faq .form-radios {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .faq .form-radios {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 0 0 35px;
  }

  .faq .form-type-radio label.option {
    height: 88px;
    padding: 14px 10px;
    font-size: 14px;
  }
}

.faq .form-type-radio label.option:hover {
  border-color: var(--ziston-theme-color);
  color: var(--ziston-theme-color);
  transform: translateY(-2px);
}

.faq .form-type-radio input[type="radio"]:checked + label.option {
  background: var(--ziston-theme-color);
  border-color: var(--ziston-theme-color);
  color: #fff;
  box-shadow: 0 12px 28px rgba(159, 144, 144, 0.33);
}

.faq .item {
  border: 1px solid #e5e9ef;
  background: #fff;
  margin-bottom: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
  border-radius: 4px;
}

.faq .item.is-open {
  border-color: #f2f2f2;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.faq .views-field-title {
  position: relative;
  padding: 18px 55px 18px 22px;
  font-weight: 700;
  font-size: 15px;
  color: #1f2933;
  cursor: pointer;
}

.faq .views-field-title::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ziston-theme-color);
  font-size: 22px;
}

.faq .item.is-open .views-field-title::after {
  content: "−";
  transform: translateY(-50%) rotate(180deg);
}

.faq .views-field-field-apantisi {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  color: #6b7280;
  line-height: 1.7;
  font-size: 15px;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.25s ease, padding 0.25s ease;
}

.faq .is-open .views-field-field-apantisi {
  display: block;
}

.faq .item.is-open .views-field-field-apantisi {
  max-height: 500px;
  /* padding: 0 22px 20px; */
  opacity: 1;
}



#print-this-page-link{
  padding: 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  margin-top: 30px;
}

#edit-flexbox{
  align-items: center;
}

.a2a_kit, .a2a_menu, .a2a_modal, .a2a_overlay{
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1) !important;
  padding: 15px 10px 20px 15px;
  border-radius: 4px;
}

.listing-share .a2a_kit, .a2a_menu, .a2a_modal, .a2a_overlay{
  padding: 15px !important;
}

.listing-block.teaser_1 .content-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: flex-start;
  align-items: flex-start;
}

.listing-block.teaser_1 .content-inner .left,
.listing-block.teaser_1 .content-inner .right {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  column-gap: 10px;
}

.listing-block.teaser_1 .content-inner .left > span.listing-category {
  display: contents;
}

.listing-block.teaser_1 .content-inner .icon {
  grid-column: 1;
  justify-self: center;
  margin: 0;
}

.listing-block.teaser_1 .content-inner a {
  grid-column: 2;
}

/* Shared button hover */
.gsc-button,
.gsc-button.learn-more,
.btn,
.btn-inline,
.learn-more,
button,
input[type="submit"],
input[type="button"],
a[class*="button"],
a[class*="btn"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.gsc-button:hover,
.gsc-button.learn-more:hover,
.btn:hover,
.btn-inline:hover,
.learn-more:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
a[class*="button"]:hover,
a[class*="btn"]:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15) !important;
}

.gsc-button:active,
.gsc-button.learn-more:active,
.btn:active,
.btn-inline:active,
.learn-more:active,
button:active,
input[type="submit"]:active,
input[type="button"]:active,
a[class*="button"]:active,
a[class*="btn"]:active {
  transform: translateY(0) !important;
}



.webform-submission-form .form-item input{
  margin: 0 0 20px 0 !important;
}

/* Synced template.css append-only reconciliation */
.init-carousel-owl .owl-item > .item {
  padding-left: 15px !important;
  padding-right: 15px;
}

.webform-submission-form .form-item {
  margin: 0 !important;
}
/* 
.gsc-icon-box-carousel.style-1 {
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
} */

.gsc-icon-box-carousel.style-1 .icon-box-item-content .icon-box-item-inner {
  border-bottom: 2px solid #dee2e6;
}

.map-structure .gsc-button {
  background-color: var(--ziston-theme-color);
  font-size: 12px;
}

.search-funding {
  position: relative;
}

.map-structure .gsc-button:after,
.search-funding::after {
  content: '\f061';
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  line-height: 1;
  font-weight: 900;
  font-size: 10px;
}

.title-edit h2::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -12px;
  width: 40px;
  height: 4px;
  background-color: var(--ziston-theme-color-second);
}

/* .map-structure h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 4px;
  background-color: var(--ziston-theme-color-second);
  margin-top: 8px;
} */




input[type="checkbox"],
.form-checkbox {
    width: auto !important;
}

.webform-submission-form .form-type-checkbox,
.webform-submission-form .js-form-type-checkbox,
.webform-submission-form .webform-type-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding-bottom: 10px;
}

.webform-submission-form .form-type-checkbox input[type="checkbox"],
.webform-submission-form .js-form-type-checkbox input[type="checkbox"],
.webform-submission-form .webform-type-checkbox input[type="checkbox"] {
    flex: 0 0 auto;
    width: 18px !important;
    height: 18px;
    min-width: 18px;
    margin: 3px 0 0 !important;
    padding: 0 !important;
    line-height: 1;
}

.webform-submission-form .form-type-checkbox label.option,
.webform-submission-form .js-form-type-checkbox label.option,
.webform-submission-form .webform-type-checkbox label.option {
    flex: 1 1 auto;
    min-width: 0;
    margin: 0;
    line-height: 1.35;
}

#simplenews-confirm-multi .form-actions,
#simplenews-confirm-removal .form-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

#simplenews-confirm-multi .form-actions .button,
#simplenews-confirm-multi .form-actions .form-submit,
#simplenews-confirm-removal .form-actions .button,
#simplenews-confirm-removal .form-actions .form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 52px;
    padding: 0 32px;

    line-height: 1;
    font-size: 16px;

    box-sizing: border-box;
}

#simplenews-confirm-multi .form-actions a.button,
#simplenews-confirm-removal .form-actions a.button {
    appearance: none;
    text-decoration: none;
}

form[data-drupal-selector="simplenews-confirm-multi"] div[data-drupal-selector="edit-actions"],
form[data-drupal-selector="simplenews-confirm-removal"] div[data-drupal-selector="edit-actions"] {
    display: flex !important;
    gap: 12px;
    align-items: center;
}

form[data-drupal-selector="simplenews-confirm-multi"] div[data-drupal-selector="edit-actions"] input[type="submit"],
form[data-drupal-selector="simplenews-confirm-multi"] div[data-drupal-selector="edit-actions"] a.button,
form[data-drupal-selector="simplenews-confirm-removal"] div[data-drupal-selector="edit-actions"] input[type="submit"],
form[data-drupal-selector="simplenews-confirm-removal"] div[data-drupal-selector="edit-actions"] a.button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    height: 52px !important;
    padding: 0 32px !important;
    line-height: 1 !important;
    box-sizing: border-box;
    margin: 0 !important;
}

.node--view-mode-full .field--name-body {
  padding-top: 40px;
}
/* 
img.funding-banner {
    height: 175px !important;
    width: 370px !important;
    max-width: none !important;
    border-radius: 4px;
} */

.captcha{
  margin-bottom: 20px;
  margin-top: 20px;
}

.listing-info-block .field--name-body {
  padding-top: 0 !important;
}

.node--type-article.node--view-mode-full .field--name-body {
  padding-top: 0 !important;
}

.node--type-enimerotika-deltia.node--view-mode-full .field--name-body {
  padding-top: 0 !important;
}

.fa-filter:before {
  content: "\f0b0";
  padding: 0 15px 0 7px;
}

.pdf-reader,
.pdf-reader-embed {
    width: 100%;
    padding: 40px 0;
}

.pdf-reader object,
.pdf-reader embed,
.pdf-reader iframe {
    width: 100%;
    max-width: 100%;
    height: 80vh; /* responsive height */
    display: block;
    border: none;
}

/* Header spacing */
.annual-reports header {
  padding: 24px;
  margin-bottom: 30px;
  margin-top: 30px;
  line-height: 1.6;
  background-color: #F0F3F6;
  border-radius: 4px;
}

/* Space between each report item */
.annual-reports .item {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e5e5;
}

/* Year title spacing */
.annual-reports .views-field-title {
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 700;
  color: #161c26;
}

/* Paragraph spacing inside content */
.annual-reports .views-field-field-perigrafi p {
  margin-bottom: 16px;
  line-height: 1.7;
}

/* Space above PDF link section */
.annual-reports .file {
  display: inline-block;
  margin-top: 16px;
}

/* Optional spacing for the wrapper */
.annual-reports .view-content-wrap {
  padding: 16px 0;
}

.annual-reports a {
  color: var(--ziston-theme-color);
  text-decoration: underline;
}

.annual-reports a:hover {
  text-decoration: none;
}

/* Main wrapper */
.publications table {
  width: 100%;
  border-collapse: collapse;
}

/* Each row becomes a 3-column grid */
.publications table tr {
  --publication-columns: 1.2fr 1fr 1fr;
  display: grid;
  grid-template-columns: var(--publication-columns);
  gap: 30px;
  padding: 40px 0;
  
  align-items: center;
}

.publications table tr:has(> td:nth-child(2):last-child) {
  --publication-columns: 1.6fr 1.6fr;
}

.publications table {
  border: none !important;
}

/* Remove default table styling */
.publications table td {
  padding: 0;
  border: none;
  vertical-align: top;
  text-align: left;
}

/* Title column */
.publications .views-field-title {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.2;
  color: #2f3742;
}

/* Links */
.publications a {
  color: var(--ziston-theme-color);
  text-decoration: underline;
  font-size: 18px;
  line-height: 1.7;
  transition: 0.2s ease;
}

/* Hover */
.publications a:hover {
  color: var(--ziston-theme-color);
  text-decoration: none;
}

/* Mobile */
@media (max-width: 991px) {
  .publications table tr {
    --publication-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .publications .views-field-title {
    font-size: 19px;
  }
}

.secondary .item{
  margin-bottom: 20px;
}

.secondary {
  margin-top: 30px;
}


.view-list-pdf a{
  color: var(--ziston-theme-color);
  text-decoration: underline;
  font-size: 18px;
  line-height: 1.7;
  transition: 0.2s ease;
}

.view-list-pdf a:hover {
  color: var(--ziston-theme-color);
  text-decoration: none;
}

.view-list-pdf .pdf-reader-embed{
  padding-bottom: 20px !important;
}

.view-list-pdf .pdf-reader{
  padding: 0 !important;
}

.home .funding-banner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 48px;
  align-items: center;
  padding: 58px 48px;
  border-radius: 10px;
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid #dde6ef;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.07);
  font-family: Arial, sans-serif;
}

.home .funding-banner::after {
  display: none;
}

.home .funding-content {
  position: relative;
  z-index: 2;
}

.home .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ziston-theme-color);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.home .eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--ziston-theme-color);
}

.home .funding-content h2 {
  margin: 0 0 18px;
  color: #13213a;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 800;
}

.home .funding-content p {
  max-width: 470px;
  margin: 0 0 28px;
  color: #435064;
  font-size: 16px;
  line-height: 1.7;
}

.home .funding-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  border-radius: 5px;
  background: var(--ziston-theme-color);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  box-shadow: 0 10px 22px rgba(176, 54, 84, 0.22);
}

.home .funding-items {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.home .funding-item {
  --funding-card-accent: #087985;
  min-height: 176px;
  padding: 24px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  border: 1px solid #e1e8ef;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.07);
  overflow: hidden;
}

.home .funding-item .icon {
  display: none;
}

.home .funding-item h3 {
  margin: 0 0 10px;
  order: 2;
  color: #101828;
  font-size: 20px;
  line-height: 1.25;
}

.home .funding-item p {
  margin: 0;
  order: 3;
  color: #596579;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .home .funding-banner {
    grid-template-columns: 1fr;
    padding: 50px 30px;
  }

  .home .funding-items {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }
}

@media (max-width: 860px) {
  .home .funding-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .home .funding-content h2 {
    font-size: 34px;
  }

  .home .funding-items {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home .funding-item {
    min-height: 0;
    padding: 22px 20px;
  }
}

.home .funding-item::before {
  margin-bottom: 10px;
  order: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--funding-card-accent);
  font-size: 12px;
  font-family: inherit;
  font-weight: 800;
  letter-spacing: 1.6px;
  line-height: 1;
}

.home .funding-item::after {
  content: "";
  width: 42px;
  height: 3px;
  margin-bottom: 18px;
  order: 1;
  border-radius: 999px;
  background: var(--funding-card-accent);
}

.home .programs::before {
  content: "01";
}

.home .business::before {
  content: "02";
}

.home .regions::before {
  content: "02";
}

.home .growth::before {
  content: "03";
}

/* Back to top */
.scroll-to-top {
  position: fixed;
  right: max(24px, env(safe-area-inset-right));
  bottom: max(24px, env(safe-area-inset-bottom));
  z-index: 990;
  display: block;
  width: 48px;
  height: 48px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none !important;
  color: var(--ziston-theme-color-second, #89939e);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  visibility: hidden;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s ease;
}

.scroll-to-top.is-visible {
  opacity: 0.55;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.scroll-to-top::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 12px;
  width: 24px;
  height: 24px;
  border-top: 3px solid #89939e;
  border-left: 3px solid #89939e;
  transform: rotate(45deg);
}

.scroll-to-top:hover,
.scroll-to-top:focus-visible {
  background: transparent;
  box-shadow: none !important;
  color: var(--ziston-theme-color, #b03654);
  opacity: 1;
  transform: translateY(-3px) !important;
}

.scroll-to-top:active {
  box-shadow: none !important;
  transform: translateY(0) !important;
}

.scroll-to-top:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

@media (max-width: 991px) {
  .scroll-to-top {
    right: max(20px, env(safe-area-inset-right));
    bottom: max(20px, env(safe-area-inset-bottom));
  }
}

@media (max-width: 575px) {
  .scroll-to-top {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    width: 44px;
    height: 44px;
  }

  .scroll-to-top::before {
    top: 14px;
    left: 11px;
    width: 22px;
    height: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-to-top {
    transition: none;
  }
}


.cky-revisit-bottom-left {
    bottom: 15px;
    left: 20px !important;
}

/* ==========================================================
   Accordion wrapper
   ========================================================== */

.rating-accordion {
  margin: 24px 0;
  overflow: visible;
  border-radius: 6px;
  background: #fff;
  padding: 14px 18px;
  border: 1px solid #e2e6eb;
}

.rating-accordion > summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0;
  padding: 14px 42px;

  border-radius: 6px;
  background: #fff;

  cursor: pointer;
  color: #17243a;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  list-style: none;
  text-align: center;
}

.rating-accordion > summary::-webkit-details-marker {
  display: none;
}

.rating-accordion > summary::marker {
  content: "";
}

.rating-accordion > summary::before {
  content: "\2665";

  display: flex;
  position: absolute;
  left: 0;
  top: 50%;

  align-items: center;
  justify-content: center;

  width: 38px;
  height: 38px;

  border-radius: 50%;

  background: rgba(176, 54, 84, 0.1);
  color: var(--ziston-theme-color, #b03654);

  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-50%);
}

.rating-accordion > summary .summary {
  display: none;
}

.rating-accordion > summary::after {
  content: "";

  position: absolute;
  right: 4px;
  top: 50%;

  width: 7px;
  height: 7px;

  border-right: 2px solid var(--ziston-theme-color, #b03654);
  border-bottom: 2px solid var(--ziston-theme-color, #b03654);

  transform: translateY(-50%) rotate(45deg);
  transition: transform .2s ease;
}

.rating-accordion[open] > summary::after {
  transform: translateY(-50%) rotate(225deg);
}

/* ==========================================================
   Rating rows
   ========================================================== */

.rating-accordion .rating-scale {
  display: grid !important;
  grid-template-columns: minmax(180px,1fr) auto;
  align-items: center;

  margin: 10px 0 !important;
  padding: 14px 16px !important;

  border: 1px solid #e2e6eb !important;
  border-radius: 5px;

  background: #fff;

  overflow: hidden;
}

.rating-accordion .rating-scale:last-child {
  margin-bottom: 0 !important;
}

/* reset Drupal fieldset */

.rating-accordion fieldset.rating-scale {
  min-width: 0;
}

.rating-accordion .rating-scale legend {
  float: none !important;
  width: auto !important;

  margin: 0 !important;
  padding: 0 !important;

  color: #1d2939 !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
}

.rating-accordion .rating-scale .fieldset-legend {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.rating-accordion .rating-scale .fieldset-wrapper {
  margin: 0 !important;
  padding: 0 !important;
}

/* ==========================================================
   Options container
   ========================================================== */

.rating-accordion .js-webform-radios {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;

  align-items: center;
  justify-content: flex-end;

  gap: 9px;

  margin: 0 !important;
  padding: 0 !important;
}

.rating-accordion .form-type-radio,
.rating-accordion .webform-type-radio {
  position: relative;

  display: block !important;

  width: 40px !important;
  min-width: 40px !important;
  max-width: 40px !important;

  height: 40px !important;
  min-height: 40px !important;
  max-height: 40px !important;

  margin: 0 !important;
  padding: 0 !important;

  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* ==========================================================
   Hide native radios
   ========================================================== */

.rating-accordion input[type="radio"] {
  position: absolute !important;

  width: 1px !important;
  height: 1px !important;

  margin: 0 !important;
  padding: 0 !important;

  opacity: 0;
  overflow: hidden;

  border: 0 !important;
  background: transparent !important;
}

/* ==========================================================
   Circle buttons
   ========================================================== */

.rating-accordion label.option {
  display: flex !important;

  align-items: center;
  justify-content: center;

  width: 40px !important;
  min-width: 40px !important;
  max-width: 40px !important;

  height: 40px !important;
  min-height: 40px !important;
  max-height: 40px !important;

  margin: 0 !important;
  padding: 0 !important;

  border: 1px solid #ccd3dc;
  border-radius: 50%;

  background: #fff;

  color: #263244 !important;

  cursor: pointer;

  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1;

  transition:
    border-color .15s ease,
    background-color .15s ease,
    color .15s ease;
}

.rating-accordion label.option:hover {
  border-color: var(--ziston-theme-color, #b03654);
}

.rating-accordion input[type="radio"]:checked + label.option {
  border-color: var(--ziston-theme-color, #b03654);
  background: var(--ziston-theme-color, #b03654);
  color: #fff !important;
}

.rating-accordion input[type="radio"]:focus-visible + label.option {
  outline: 2px solid var(--ziston-theme-color, #b03654);
  outline-offset: 3px;
}

/* ==========================================================
   Mobile
   ========================================================== */

@media (max-width: 767px) {

  .rating-accordion .rating-scale {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .rating-accordion .js-webform-radios {
    justify-content: flex-start;
  }

  .rating-accordion label.option {
    width: 36px !important;
    min-width: 36px !important;
    height: 36px !important;
    min-height: 36px !important;
  }

}

@media (max-width: 380px) {

  .rating-accordion label.option {
    width: 32px !important;
    min-width: 32px !important;
    height: 32px !important;
    min-height: 32px !important;
  }

  .rating-accordion .js-webform-radios {
    gap: 4px;
  }

}

.rating-accordion fieldset.rating-scale {
  border: 1px solid #e2e6eb !important;
  display: grid !important;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.rating-accordion .rating-scale legend {
  display: contents !important;
}

.rating-accordion .rating-scale .fieldset-legend {
  grid-column: 1;
}

.rating-accordion .rating-scale .fieldset-wrapper {
  grid-column: 2;
}

.webform-details-toggle-state-wrapper{
  display: none;
}
