@charset "UTF-8";
/* --> Responsive <-- */
/*Npr imaš container 1400px. Notri pa želiš postaviti 400px element definiran v procentih. Zapišeš samo toPercent(400,1400)*/
*, body {
  color: #1d2d38;
  font-family: "Source Sans Pro"; }

html, body {
  font-size: 16px; }

p {
  font-size: 1rem;
  line-height: 1.875;
  margin: 0; }

.no-bullets {
  list-style-type: none; }

h1 {
  font-size: 3.125rem;
  line-height: 1.08;
  margin: 0; }

h2 {
  font-size: 3.125rem;
  line-height: 1.08;
  margin: 0; }

.h2 {
  font-size: 3.125rem;
  line-height: 1.08;
  display: block;
  font-weight: bold; }

h3 {
  font-size: 1.75rem;
  line-height: 1.5;
  margin: 0; }

h4 {
  font-size: 1.3125rem;
  line-height: 1.04762; }

.heading-paragraph {
  font-size: 1.125rem;
  line-height: 1.55556; }

.bold {
  font-weight: 700; }

.font-color--rainbow {
  background: linear-gradient(217.01deg, #F7D04E 36.59%, #D33C4A 47.04%, #449EDD 56.97%, #94BB44 66.89%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; }

.font-color--red {
  color: #e40046; }

.font-color--green {
  color: #94bb44; }

.font-color--blue {
  color: #449EDD; }

.font-color--purple {
  color: #882581; }

.font-color--yellow {
  color: #FFCD34; }

.rainbow-text {
  background: -webkit-linear-gradient(217.01deg, #F7D04E 36.59%, #D33C4A 47.04%, #449EDD 56.97%, #94BB44 66.89%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; }

a {
  text-decoration: none; }
  a:hover {
    text-decoration: underline !important; }

html.disable-scroll {
  overflow: hidden !important; }

@media only screen and (max-width: 767px), only screen and (max-width: 989px) {
  #menu {
    display: none; } }

@media only screen and (max-width: 767px), only screen and (max-width: 989px) {
  .header-divider-line {
    display: none; } }

.mobile-menu-wrapp {
  display: none; }
  @media only screen and (max-width: 767px), only screen and (max-width: 989px) {
    .mobile-menu-wrapp {
      display: -webkit-box !important;
      display: -webkit-flex !important;
      display: -ms-flexbox !important;
      display: flex !important;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      width: 40px;
      vertical-align: middle;
      margin-left: 5px; } }
  .mobile-menu-wrapp #menu-mobile {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: none;
    overflow: hidden;
    opacity: 0;
    background: rgba(0, 0, 0, 0.3); }
    .mobile-menu-wrapp #menu-mobile .dropdown-hover > a {
      text-decoration: none !important; }
    .mobile-menu-wrapp #menu-mobile .mobile-menu-drower {
      width: 350px;
      right: 0;
      max-width: 100%;
      -webkit-transform: translateX(100%);
      transform: translateX(100%);
      -webkit-transition: all 0.5s cubic-bezier(0.75, 0, 0.25, 1);
      transition: all 0.5s cubic-bezier(0.75, 0, 0.25, 1);
      overflow: scroll;
      position: absolute;
      display: block;
      height: 100%;
      z-index: 10;
      -webkit-overflow-scrolling: touch;
      background: white;
      padding: 70px 0 40px; }
    .mobile-menu-wrapp #menu-mobile.show-menu {
      display: block;
      opacity: 1; }
      .mobile-menu-wrapp #menu-mobile.show-menu .mobile-menu-drower.show-menu-open-drower {
        -webkit-transform: translateX(0);
        transform: translateX(0); }
    .mobile-menu-wrapp #menu-mobile .menu {
      list-style: none;
      margin: 0;
      padding: 0; }
      .mobile-menu-wrapp #menu-mobile .menu li {
        display: block;
        margin: 0;
        padding: 0; }
        .mobile-menu-wrapp #menu-mobile .menu li a {
          color: black;
          text-decoration: none;
          display: block;
          padding: 15px 50px;
          border-bottom: 1px solid rgba(0, 0, 0, 0.2); }
        .mobile-menu-wrapp #menu-mobile .menu li li a {
          padding-left: 70px; }
        .mobile-menu-wrapp #menu-mobile .menu li li li a {
          padding-left: 90px; }
        .mobile-menu-wrapp #menu-mobile .menu li.menu-item-has-children > a {
          position: relative; }
          .mobile-menu-wrapp #menu-mobile .menu li.menu-item-has-children > a:after {
            content: "";
            display: block;
            position: absolute;
            right: 20px;
            top: calc(50% - 5px);
            border-top: 5px solid transparent;
            border-bottom: 5px solid transparent;
            border-left: 6px solid black;
            -webkit-transition: all 0.3s;
            transition: all 0.3s; }
          .mobile-menu-wrapp #menu-mobile .menu li.menu-item-has-children > a.ow-show-submenu:after {
            -webkit-transform: rotate(90deg);
                    transform: rotate(90deg); }
        .mobile-menu-wrapp #menu-mobile .menu li .sub-menu {
          display: none;
          padding: 0; }
          .mobile-menu-wrapp #menu-mobile .menu li .sub-menu li:last-child {
            border-bottom: none; }
  .mobile-menu-wrapp .mobile-hamburger-toggle {
    display: block;
    width: 38px;
    height: 38px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    cursor: pointer;
    padding: 5px;
    clear: both;
    z-index: 999999; }
    .mobile-menu-wrapp .mobile-hamburger-toggle div {
      background: black;
      width: 100%;
      height: 3px;
      margin: 5px auto;
      border-radius: 10px;
      -webkit-transition: 0.3s cubic-bezier(0.28, 0.55, 0.385, 1.65);
      transition: 0.3s cubic-bezier(0.28, 0.55, 0.385, 1.65);
      -webkit-transition-timing-function: cubic-bezier(0.28, 0.55, 0.385, 1.65);
      transition-timing-function: cubic-bezier(0.28, 0.55, 0.385, 1.65);
      -webkit-transform: none;
      transform: none;
      -webkit-transform-origin: center;
      transform-origin: center; }
    .mobile-menu-wrapp .mobile-hamburger-toggle.toggled {
      position: fixed;
      top: 56px; }
      .mobile-menu-wrapp .mobile-hamburger-toggle.toggled div {
        width: 100%;
        -webkit-animation-duration: 0.6s;
        animation-duration: 0.6s;
        -webkit-animation-timing-function: cubic-bezier(0.28, 0.55, 0.385, 1.65);
        animation-timing-function: cubic-bezier(0.28, 0.55, 0.385, 1.65); }
        .mobile-menu-wrapp .mobile-hamburger-toggle.toggled div:first-child {
          -webkit-animation-name: T1S3DF;
          animation-name: T1S3DF;
          -webkit-transform: translateY(8px) rotate(45deg);
          transform: translateY(8px) rotate(45deg); }
        .mobile-menu-wrapp .mobile-hamburger-toggle.toggled div:nth-child(2) {
          opacity: 0; }
        .mobile-menu-wrapp .mobile-hamburger-toggle.toggled div:last-child {
          -webkit-animation-name: T1S3L;
          animation-name: T1S3L;
          -webkit-transform: translateY(-7px) rotate(-45deg);
          transform: translateY(-7px) rotate(-45deg); }

@-webkit-keyframes T1S3DF {
  0% {
    -webkit-transform: none;
            transform: none; }
  40% {
    -webkit-transform: translateY(8px);
            transform: translateY(8px); }
  80% {
    -webkit-transform: translateY(8px) rotate(45deg);
            transform: translateY(8px) rotate(45deg); } }

@keyframes T1S3DF {
  0% {
    -webkit-transform: none;
            transform: none; }
  40% {
    -webkit-transform: translateY(8px);
            transform: translateY(8px); }
  80% {
    -webkit-transform: translateY(8px) rotate(45deg);
            transform: translateY(8px) rotate(45deg); } }

@-webkit-keyframes T1S3L {
  0% {
    -webkit-transform: none;
            transform: none; }
  40% {
    -webkit-transform: translateY(-7px);
            transform: translateY(-7px); }
  80% {
    -webkit-transform: translateY(-7px) rotate(-45deg);
            transform: translateY(-7px) rotate(-45deg); } }

@keyframes T1S3L {
  0% {
    -webkit-transform: none;
            transform: none; }
  40% {
    -webkit-transform: translateY(-7px);
            transform: translateY(-7px); }
  80% {
    -webkit-transform: translateY(-7px) rotate(-45deg);
            transform: translateY(-7px) rotate(-45deg); } }

.show {
  display: block !important; }

.hide {
  display: none !important; }

.col-heading.rotate:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg); }

.pointer {
  cursor: pointer; }

.btn {
  padding: 8px 24px 10px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 3px;
  color: #fff; }
  .btn-wrapp {
    line-height: normal; }
  .btn__color--red {
    background-color: #e40046; }
  .btn__color--green {
    background-color: #94bb44; }
  .btn__color--purple {
    background-color: #882581; }
  .btn__color--blue {
    background-color: #449EDD; }
  .btn__color--yellow {
    background-color: #FFCD34; }

.link {
  text-decoration: none;
  font-weight: 700;
  color: #882581; }

.submit-btn {
  /*
    &--red #gform_submit_button_1{
        background-color: $red !important;
    }

    &--green #gform_submit_button_1{
        background-color: $green !important;
    }

    &--purple #gform_submit_button_1{
        background-color: $purple !important;
    }

    &--blue #gform_submit_button_1{
        background-color: $blue !important;
    }

    &--yellow #gform_submit_button_1{
        background-color: $yellow !important;
    }
     */ }
  .submit-btn--red input[type="submit"] {
    background-color: #e40046 !important; }
  .submit-btn--green input[type="submit"] {
    background-color: #94bb44 !important; }
  .submit-btn--purple input[type="submit"] {
    background-color: #882581 !important; }
  .submit-btn--blue input[type="submit"] {
    background-color: #449EDD !important; }
  .submit-btn--yellow input[type="submit"] {
    background-color: #FFCD34 !important; }

.breadcrumbs {
  margin-top: 16px; }
  .breadcrumbs a {
    text-transform: none !important; }
    .breadcrumbs a:not(:last-child):after {
      display: inline-block;
      content: '';
      width: 7px;
      height: 13px;
      background-size: 7px 13px;
      background-image: url(./assets/breadcrumbs-arrow.svg);
      background-repeat: no-repeat;
      background-position: center;
      padding: 0px 16px; }

.logotip img {
  width: 168px;
  height: 72px; }

#logo > .custom-logo-link > img {
  width: 168px; }

#menu .sub-menu li {
  padding-left: 16px !important;
  list-style-type: none;
  border-bottom: 3px solid #fff; }

#header {
  background: #fff; }
  #header a {
    font-family: "Roboto";
    text-decoration: none;
    text-transform: uppercase; }
  #header .header-elements, #header .header-right {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between; }
  #header .header-right {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    #header .header-right .search {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-flow: row nowrap;
          -ms-flex-flow: row nowrap;
              flex-flow: row nowrap; }
  #header #menu-main-menu li {
    position: relative;
    padding: 10px 0; }
  #header .main-menu {
    width: 100%; }

#menu .sub-menu {
  display: none;
  padding: 0;
  width: 169px; }
  #menu .sub-menu a {
    color: #fff;
    text-transform: uppercase; }

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99; }

.sitewide-search-form {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  /*
    .search-field:-internal-autofill-selected {
        background-color: transparent;
    }
     */ }
  .sitewide-search-form .search-submit {
    display: none;
    /*
        color: transparent;
        text-decoration: none !important;
        user-select: none;
        //background:url(/var/www/html/wordpress/web/app/themes/noodle-child/images/search-icon.svg);
        cursor: pointer;
        border:0;
        width: 24px;
        height: 25px;
         */ }
  .sitewide-search-form__submit-button {
    cursor: pointer; }
  .sitewide-search-form .search-field {
    border: none;
    border-bottom: 1px solid #1d2d38; }
    .sitewide-search-form .search-field::-webkit-input-placeholder {
      visibility: hidden; }
    .sitewide-search-form .search-field::-moz-placeholder {
      visibility: hidden; }
    .sitewide-search-form .search-field:-ms-input-placeholder {
      visibility: hidden; }
    .sitewide-search-form .search-field::-ms-input-placeholder {
      visibility: hidden; }
    .sitewide-search-form .search-field::placeholder {
      visibility: hidden; }
  .sitewide-search-form .search-form {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 20px 0px; }

.sticky + .container {
  padding-top: 102px; }

.header-wrapper {
  background: #fff; }

.top-bar {
  background-color: #4D4D4D;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .top-bar p {
    font-family: "Roboto";
    font-size: 14px;
    line-height: 21px;
    color: #fff; }

#ow-menu-mobile .sub-menu {
  width: 100%; }

#ow-menu-mobile .dropdown-hover:focus .sub-menu {
  display: block;
  background-color: #f9fcff;
  position: absolute;
  top: 100%; }
  #ow-menu-mobile .dropdown-hover:focus .sub-menu a {
    color: #1d2d38; }

#menu .dropdown-hover:hover .sub-menu {
  display: block;
  background-color: #f9fcff;
  position: absolute;
  top: 100%; }
  #menu .dropdown-hover:hover .sub-menu a {
    color: #1d2d38; }

.flex-line {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }

input[type=text] {
  border: none;
  border-bottom: 1px solid #1d2d38; }

/*
.search-form2 {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}
 */
.header-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between; }

@media only screen and (min-width: 989px) {
  .only-show-on-mobile {
    display: none; } }

.container {
  padding: 0 25px;
  margin: 0 auto;
  max-width: 1440px; }

.mb96 {
  margin-bottom: 96px; }

.izvajalske-organizacije__image {
  min-height: 86px; }

.izvajalske-organizacije__text {
  width: 82%;
  margin: auto;
  margin-top: 32px !important; }

body {
  background-color: #fff;
  /* .content - doda padding na content div v ow-section bloku */
  /* .content - doda padding na content div v ow-section bloku */
  /* .content - doda padding na content div v ow-section bloku */
  /* .content - doda padding na content div v ow-section bloku */
  /* .content - doda padding na content div v ow-section bloku */
  /* .content - doda padding na content div v ow-section bloku */
  /* .content - doda padding na content div v ow-section bloku */
  /* .content - doda padding na content div v ow-section bloku */
  /* .content - doda padding na content div v ow-section bloku */
  /* .content - doda padding na content div v ow-section bloku */
  /* .content - doda padding na content div v ow-section bloku */
  /* .content - doda padding na content div v ow-section bloku */
  /* .content - doda padding na content div v ow-section bloku */
  /* .content - doda padding na content div v ow-section bloku */
  /* .content - doda padding na content div v ow-section bloku */
  /* .content - doda padding na content div v ow-section bloku */ }
  body .ml0 {
    margin-left: 0px; }
    @media (max-width: 990px) {
      body .ml0 {
        margin-left: 0px; } }
    @media (max-width: 767px) {
      body .ml0 {
        margin-left: 0px; } }
  body .mr0 {
    margin-right: 0px; }
    @media (max-width: 990px) {
      body .mr0 {
        margin-right: 0px; } }
    @media (max-width: 767px) {
      body .mr0 {
        margin-right: 0px; } }
  body .mt0 {
    margin-top: 0px; }
    @media (max-width: 990px) {
      body .mt0 {
        margin-top: 0px; } }
    @media (max-width: 767px) {
      body .mt0 {
        margin-top: 0px; } }
  body .mb0 {
    margin-bottom: 0px; }
    @media (max-width: 990px) {
      body .mb0 {
        margin-bottom: 0px; } }
    @media (max-width: 767px) {
      body .mb0 {
        margin-bottom: 0px; } }
  body .pl0 {
    padding-left: 0px; }
    @media (max-width: 990px) {
      body .pl0 {
        padding-left: 0px; } }
    @media (max-width: 767px) {
      body .pl0 {
        padding-left: 0px; } }
  body .pr0 {
    padding-right: 0px; }
    @media (max-width: 990px) {
      body .pr0 {
        padding-right: 0px; } }
    @media (max-width: 767px) {
      body .pr0 {
        padding-right: 0px; } }
  body .pt0 {
    padding-top: 0px; }
    @media (max-width: 990px) {
      body .pt0 {
        padding-top: 0px; } }
    @media (max-width: 767px) {
      body .pt0 {
        padding-top: 0px; } }
  body .pt-content0 .content {
    padding-top: 0px; }
    @media (max-width: 990px) {
      body .pt-content0 .content {
        padding-top: 0px; } }
    @media (max-width: 767px) {
      body .pt-content0 .content {
        padding-top: 0px; } }
  body .pb0 {
    padding-bottom: 0px; }
    @media (max-width: 990px) {
      body .pb0 {
        padding-bottom: 0px; } }
    @media (max-width: 767px) {
      body .pb0 {
        padding-bottom: 0px; } }
  body .pb-content0 .content {
    padding-bottom: 0px; }
    @media (max-width: 990px) {
      body .pb-content0 .content {
        padding-bottom: 0px; } }
    @media (max-width: 767px) {
      body .pb-content0 .content {
        padding-bottom: 0px; } }
  body .gap0 {
    gap: 0px; }
  body .ml8 {
    margin-left: 8px; }
    @media (max-width: 990px) {
      body .ml8 {
        margin-left: 6px; } }
    @media (max-width: 767px) {
      body .ml8 {
        margin-left: 4px; } }
  body .mr8 {
    margin-right: 8px; }
    @media (max-width: 990px) {
      body .mr8 {
        margin-right: 6px; } }
    @media (max-width: 767px) {
      body .mr8 {
        margin-right: 4px; } }
  body .mt8 {
    margin-top: 8px; }
    @media (max-width: 990px) {
      body .mt8 {
        margin-top: 6px; } }
    @media (max-width: 767px) {
      body .mt8 {
        margin-top: 4px; } }
  body .mb8 {
    margin-bottom: 8px; }
    @media (max-width: 990px) {
      body .mb8 {
        margin-bottom: 6px; } }
    @media (max-width: 767px) {
      body .mb8 {
        margin-bottom: 4px; } }
  body .pl8 {
    padding-left: 8px; }
    @media (max-width: 990px) {
      body .pl8 {
        padding-left: 6px; } }
    @media (max-width: 767px) {
      body .pl8 {
        padding-left: 4px; } }
  body .pr8 {
    padding-right: 8px; }
    @media (max-width: 990px) {
      body .pr8 {
        padding-right: 6px; } }
    @media (max-width: 767px) {
      body .pr8 {
        padding-right: 4px; } }
  body .pt8 {
    padding-top: 8px; }
    @media (max-width: 990px) {
      body .pt8 {
        padding-top: 6px; } }
    @media (max-width: 767px) {
      body .pt8 {
        padding-top: 4px; } }
  body .pt-content8 .content {
    padding-top: 8px; }
    @media (max-width: 990px) {
      body .pt-content8 .content {
        padding-top: 6px; } }
    @media (max-width: 767px) {
      body .pt-content8 .content {
        padding-top: 4px; } }
  body .pb8 {
    padding-bottom: 8px; }
    @media (max-width: 990px) {
      body .pb8 {
        padding-bottom: 6px; } }
    @media (max-width: 767px) {
      body .pb8 {
        padding-bottom: 4px; } }
  body .pb-content8 .content {
    padding-bottom: 8px; }
    @media (max-width: 990px) {
      body .pb-content8 .content {
        padding-bottom: 6px; } }
    @media (max-width: 767px) {
      body .pb-content8 .content {
        padding-bottom: 4px; } }
  body .gap8 {
    gap: 8px; }
  body .ml16 {
    margin-left: 16px; }
    @media (max-width: 990px) {
      body .ml16 {
        margin-left: 12px; } }
    @media (max-width: 767px) {
      body .ml16 {
        margin-left: 8px; } }
  body .mr16 {
    margin-right: 16px; }
    @media (max-width: 990px) {
      body .mr16 {
        margin-right: 12px; } }
    @media (max-width: 767px) {
      body .mr16 {
        margin-right: 8px; } }
  body .mt16 {
    margin-top: 16px; }
    @media (max-width: 990px) {
      body .mt16 {
        margin-top: 12px; } }
    @media (max-width: 767px) {
      body .mt16 {
        margin-top: 8px; } }
  body .mb16 {
    margin-bottom: 16px; }
    @media (max-width: 990px) {
      body .mb16 {
        margin-bottom: 12px; } }
    @media (max-width: 767px) {
      body .mb16 {
        margin-bottom: 8px; } }
  body .pl16 {
    padding-left: 16px; }
    @media (max-width: 990px) {
      body .pl16 {
        padding-left: 12px; } }
    @media (max-width: 767px) {
      body .pl16 {
        padding-left: 8px; } }
  body .pr16 {
    padding-right: 16px; }
    @media (max-width: 990px) {
      body .pr16 {
        padding-right: 12px; } }
    @media (max-width: 767px) {
      body .pr16 {
        padding-right: 8px; } }
  body .pt16 {
    padding-top: 16px; }
    @media (max-width: 990px) {
      body .pt16 {
        padding-top: 12px; } }
    @media (max-width: 767px) {
      body .pt16 {
        padding-top: 8px; } }
  body .pt-content16 .content {
    padding-top: 16px; }
    @media (max-width: 990px) {
      body .pt-content16 .content {
        padding-top: 12px; } }
    @media (max-width: 767px) {
      body .pt-content16 .content {
        padding-top: 8px; } }
  body .pb16 {
    padding-bottom: 16px; }
    @media (max-width: 990px) {
      body .pb16 {
        padding-bottom: 12px; } }
    @media (max-width: 767px) {
      body .pb16 {
        padding-bottom: 8px; } }
  body .pb-content16 .content {
    padding-bottom: 16px; }
    @media (max-width: 990px) {
      body .pb-content16 .content {
        padding-bottom: 12px; } }
    @media (max-width: 767px) {
      body .pb-content16 .content {
        padding-bottom: 8px; } }
  body .gap16 {
    gap: 16px; }
  body .ml24 {
    margin-left: 24px; }
    @media (max-width: 990px) {
      body .ml24 {
        margin-left: 18px; } }
    @media (max-width: 767px) {
      body .ml24 {
        margin-left: 12px; } }
  body .mr24 {
    margin-right: 24px; }
    @media (max-width: 990px) {
      body .mr24 {
        margin-right: 18px; } }
    @media (max-width: 767px) {
      body .mr24 {
        margin-right: 12px; } }
  body .mt24 {
    margin-top: 24px; }
    @media (max-width: 990px) {
      body .mt24 {
        margin-top: 18px; } }
    @media (max-width: 767px) {
      body .mt24 {
        margin-top: 12px; } }
  body .mb24 {
    margin-bottom: 24px; }
    @media (max-width: 990px) {
      body .mb24 {
        margin-bottom: 18px; } }
    @media (max-width: 767px) {
      body .mb24 {
        margin-bottom: 12px; } }
  body .pl24 {
    padding-left: 24px; }
    @media (max-width: 990px) {
      body .pl24 {
        padding-left: 18px; } }
    @media (max-width: 767px) {
      body .pl24 {
        padding-left: 12px; } }
  body .pr24 {
    padding-right: 24px; }
    @media (max-width: 990px) {
      body .pr24 {
        padding-right: 18px; } }
    @media (max-width: 767px) {
      body .pr24 {
        padding-right: 12px; } }
  body .pt24 {
    padding-top: 24px; }
    @media (max-width: 990px) {
      body .pt24 {
        padding-top: 18px; } }
    @media (max-width: 767px) {
      body .pt24 {
        padding-top: 12px; } }
  body .pt-content24 .content {
    padding-top: 24px; }
    @media (max-width: 990px) {
      body .pt-content24 .content {
        padding-top: 18px; } }
    @media (max-width: 767px) {
      body .pt-content24 .content {
        padding-top: 12px; } }
  body .pb24 {
    padding-bottom: 24px; }
    @media (max-width: 990px) {
      body .pb24 {
        padding-bottom: 18px; } }
    @media (max-width: 767px) {
      body .pb24 {
        padding-bottom: 12px; } }
  body .pb-content24 .content {
    padding-bottom: 24px; }
    @media (max-width: 990px) {
      body .pb-content24 .content {
        padding-bottom: 18px; } }
    @media (max-width: 767px) {
      body .pb-content24 .content {
        padding-bottom: 12px; } }
  body .gap24 {
    gap: 24px; }
  body .ml32 {
    margin-left: 32px; }
    @media (max-width: 990px) {
      body .ml32 {
        margin-left: 24px; } }
    @media (max-width: 767px) {
      body .ml32 {
        margin-left: 16px; } }
  body .mr32 {
    margin-right: 32px; }
    @media (max-width: 990px) {
      body .mr32 {
        margin-right: 24px; } }
    @media (max-width: 767px) {
      body .mr32 {
        margin-right: 16px; } }
  body .mt32 {
    margin-top: 32px; }
    @media (max-width: 990px) {
      body .mt32 {
        margin-top: 24px; } }
    @media (max-width: 767px) {
      body .mt32 {
        margin-top: 16px; } }
  body .mb32 {
    margin-bottom: 32px; }
    @media (max-width: 990px) {
      body .mb32 {
        margin-bottom: 24px; } }
    @media (max-width: 767px) {
      body .mb32 {
        margin-bottom: 16px; } }
  body .pl32 {
    padding-left: 32px; }
    @media (max-width: 990px) {
      body .pl32 {
        padding-left: 24px; } }
    @media (max-width: 767px) {
      body .pl32 {
        padding-left: 16px; } }
  body .pr32 {
    padding-right: 32px; }
    @media (max-width: 990px) {
      body .pr32 {
        padding-right: 24px; } }
    @media (max-width: 767px) {
      body .pr32 {
        padding-right: 16px; } }
  body .pt32 {
    padding-top: 32px; }
    @media (max-width: 990px) {
      body .pt32 {
        padding-top: 24px; } }
    @media (max-width: 767px) {
      body .pt32 {
        padding-top: 16px; } }
  body .pt-content32 .content {
    padding-top: 32px; }
    @media (max-width: 990px) {
      body .pt-content32 .content {
        padding-top: 24px; } }
    @media (max-width: 767px) {
      body .pt-content32 .content {
        padding-top: 16px; } }
  body .pb32 {
    padding-bottom: 32px; }
    @media (max-width: 990px) {
      body .pb32 {
        padding-bottom: 24px; } }
    @media (max-width: 767px) {
      body .pb32 {
        padding-bottom: 16px; } }
  body .pb-content32 .content {
    padding-bottom: 32px; }
    @media (max-width: 990px) {
      body .pb-content32 .content {
        padding-bottom: 24px; } }
    @media (max-width: 767px) {
      body .pb-content32 .content {
        padding-bottom: 16px; } }
  body .gap32 {
    gap: 32px; }
  body .ml40 {
    margin-left: 40px; }
    @media (max-width: 990px) {
      body .ml40 {
        margin-left: 30px; } }
    @media (max-width: 767px) {
      body .ml40 {
        margin-left: 20px; } }
  body .mr40 {
    margin-right: 40px; }
    @media (max-width: 990px) {
      body .mr40 {
        margin-right: 30px; } }
    @media (max-width: 767px) {
      body .mr40 {
        margin-right: 20px; } }
  body .mt40 {
    margin-top: 40px; }
    @media (max-width: 990px) {
      body .mt40 {
        margin-top: 30px; } }
    @media (max-width: 767px) {
      body .mt40 {
        margin-top: 20px; } }
  body .mb40 {
    margin-bottom: 40px; }
    @media (max-width: 990px) {
      body .mb40 {
        margin-bottom: 30px; } }
    @media (max-width: 767px) {
      body .mb40 {
        margin-bottom: 20px; } }
  body .pl40 {
    padding-left: 40px; }
    @media (max-width: 990px) {
      body .pl40 {
        padding-left: 30px; } }
    @media (max-width: 767px) {
      body .pl40 {
        padding-left: 20px; } }
  body .pr40 {
    padding-right: 40px; }
    @media (max-width: 990px) {
      body .pr40 {
        padding-right: 30px; } }
    @media (max-width: 767px) {
      body .pr40 {
        padding-right: 20px; } }
  body .pt40 {
    padding-top: 40px; }
    @media (max-width: 990px) {
      body .pt40 {
        padding-top: 30px; } }
    @media (max-width: 767px) {
      body .pt40 {
        padding-top: 20px; } }
  body .pt-content40 .content {
    padding-top: 40px; }
    @media (max-width: 990px) {
      body .pt-content40 .content {
        padding-top: 30px; } }
    @media (max-width: 767px) {
      body .pt-content40 .content {
        padding-top: 20px; } }
  body .pb40 {
    padding-bottom: 40px; }
    @media (max-width: 990px) {
      body .pb40 {
        padding-bottom: 30px; } }
    @media (max-width: 767px) {
      body .pb40 {
        padding-bottom: 20px; } }
  body .pb-content40 .content {
    padding-bottom: 40px; }
    @media (max-width: 990px) {
      body .pb-content40 .content {
        padding-bottom: 30px; } }
    @media (max-width: 767px) {
      body .pb-content40 .content {
        padding-bottom: 20px; } }
  body .gap40 {
    gap: 40px; }
  body .ml48 {
    margin-left: 48px; }
    @media (max-width: 990px) {
      body .ml48 {
        margin-left: 36px; } }
    @media (max-width: 767px) {
      body .ml48 {
        margin-left: 24px; } }
  body .mr48 {
    margin-right: 48px; }
    @media (max-width: 990px) {
      body .mr48 {
        margin-right: 36px; } }
    @media (max-width: 767px) {
      body .mr48 {
        margin-right: 24px; } }
  body .mt48 {
    margin-top: 48px; }
    @media (max-width: 990px) {
      body .mt48 {
        margin-top: 36px; } }
    @media (max-width: 767px) {
      body .mt48 {
        margin-top: 24px; } }
  body .mb48 {
    margin-bottom: 48px; }
    @media (max-width: 990px) {
      body .mb48 {
        margin-bottom: 36px; } }
    @media (max-width: 767px) {
      body .mb48 {
        margin-bottom: 24px; } }
  body .pl48 {
    padding-left: 48px; }
    @media (max-width: 990px) {
      body .pl48 {
        padding-left: 36px; } }
    @media (max-width: 767px) {
      body .pl48 {
        padding-left: 24px; } }
  body .pr48 {
    padding-right: 48px; }
    @media (max-width: 990px) {
      body .pr48 {
        padding-right: 36px; } }
    @media (max-width: 767px) {
      body .pr48 {
        padding-right: 24px; } }
  body .pt48 {
    padding-top: 48px; }
    @media (max-width: 990px) {
      body .pt48 {
        padding-top: 36px; } }
    @media (max-width: 767px) {
      body .pt48 {
        padding-top: 24px; } }
  body .pt-content48 .content {
    padding-top: 48px; }
    @media (max-width: 990px) {
      body .pt-content48 .content {
        padding-top: 36px; } }
    @media (max-width: 767px) {
      body .pt-content48 .content {
        padding-top: 24px; } }
  body .pb48 {
    padding-bottom: 48px; }
    @media (max-width: 990px) {
      body .pb48 {
        padding-bottom: 36px; } }
    @media (max-width: 767px) {
      body .pb48 {
        padding-bottom: 24px; } }
  body .pb-content48 .content {
    padding-bottom: 48px; }
    @media (max-width: 990px) {
      body .pb-content48 .content {
        padding-bottom: 36px; } }
    @media (max-width: 767px) {
      body .pb-content48 .content {
        padding-bottom: 24px; } }
  body .gap48 {
    gap: 48px; }
  body .ml56 {
    margin-left: 56px; }
    @media (max-width: 990px) {
      body .ml56 {
        margin-left: 42px; } }
    @media (max-width: 767px) {
      body .ml56 {
        margin-left: 28px; } }
  body .mr56 {
    margin-right: 56px; }
    @media (max-width: 990px) {
      body .mr56 {
        margin-right: 42px; } }
    @media (max-width: 767px) {
      body .mr56 {
        margin-right: 28px; } }
  body .mt56 {
    margin-top: 56px; }
    @media (max-width: 990px) {
      body .mt56 {
        margin-top: 42px; } }
    @media (max-width: 767px) {
      body .mt56 {
        margin-top: 28px; } }
  body .mb56 {
    margin-bottom: 56px; }
    @media (max-width: 990px) {
      body .mb56 {
        margin-bottom: 42px; } }
    @media (max-width: 767px) {
      body .mb56 {
        margin-bottom: 28px; } }
  body .pl56 {
    padding-left: 56px; }
    @media (max-width: 990px) {
      body .pl56 {
        padding-left: 42px; } }
    @media (max-width: 767px) {
      body .pl56 {
        padding-left: 28px; } }
  body .pr56 {
    padding-right: 56px; }
    @media (max-width: 990px) {
      body .pr56 {
        padding-right: 42px; } }
    @media (max-width: 767px) {
      body .pr56 {
        padding-right: 28px; } }
  body .pt56 {
    padding-top: 56px; }
    @media (max-width: 990px) {
      body .pt56 {
        padding-top: 42px; } }
    @media (max-width: 767px) {
      body .pt56 {
        padding-top: 28px; } }
  body .pt-content56 .content {
    padding-top: 56px; }
    @media (max-width: 990px) {
      body .pt-content56 .content {
        padding-top: 42px; } }
    @media (max-width: 767px) {
      body .pt-content56 .content {
        padding-top: 28px; } }
  body .pb56 {
    padding-bottom: 56px; }
    @media (max-width: 990px) {
      body .pb56 {
        padding-bottom: 42px; } }
    @media (max-width: 767px) {
      body .pb56 {
        padding-bottom: 28px; } }
  body .pb-content56 .content {
    padding-bottom: 56px; }
    @media (max-width: 990px) {
      body .pb-content56 .content {
        padding-bottom: 42px; } }
    @media (max-width: 767px) {
      body .pb-content56 .content {
        padding-bottom: 28px; } }
  body .gap56 {
    gap: 56px; }
  body .ml64 {
    margin-left: 64px; }
    @media (max-width: 990px) {
      body .ml64 {
        margin-left: 48px; } }
    @media (max-width: 767px) {
      body .ml64 {
        margin-left: 32px; } }
  body .mr64 {
    margin-right: 64px; }
    @media (max-width: 990px) {
      body .mr64 {
        margin-right: 48px; } }
    @media (max-width: 767px) {
      body .mr64 {
        margin-right: 32px; } }
  body .mt64 {
    margin-top: 64px; }
    @media (max-width: 990px) {
      body .mt64 {
        margin-top: 48px; } }
    @media (max-width: 767px) {
      body .mt64 {
        margin-top: 32px; } }
  body .mb64 {
    margin-bottom: 64px; }
    @media (max-width: 990px) {
      body .mb64 {
        margin-bottom: 48px; } }
    @media (max-width: 767px) {
      body .mb64 {
        margin-bottom: 32px; } }
  body .pl64 {
    padding-left: 64px; }
    @media (max-width: 990px) {
      body .pl64 {
        padding-left: 48px; } }
    @media (max-width: 767px) {
      body .pl64 {
        padding-left: 32px; } }
  body .pr64 {
    padding-right: 64px; }
    @media (max-width: 990px) {
      body .pr64 {
        padding-right: 48px; } }
    @media (max-width: 767px) {
      body .pr64 {
        padding-right: 32px; } }
  body .pt64 {
    padding-top: 64px; }
    @media (max-width: 990px) {
      body .pt64 {
        padding-top: 48px; } }
    @media (max-width: 767px) {
      body .pt64 {
        padding-top: 32px; } }
  body .pt-content64 .content {
    padding-top: 64px; }
    @media (max-width: 990px) {
      body .pt-content64 .content {
        padding-top: 48px; } }
    @media (max-width: 767px) {
      body .pt-content64 .content {
        padding-top: 32px; } }
  body .pb64 {
    padding-bottom: 64px; }
    @media (max-width: 990px) {
      body .pb64 {
        padding-bottom: 48px; } }
    @media (max-width: 767px) {
      body .pb64 {
        padding-bottom: 32px; } }
  body .pb-content64 .content {
    padding-bottom: 64px; }
    @media (max-width: 990px) {
      body .pb-content64 .content {
        padding-bottom: 48px; } }
    @media (max-width: 767px) {
      body .pb-content64 .content {
        padding-bottom: 32px; } }
  body .gap64 {
    gap: 64px; }
  body .ml72 {
    margin-left: 72px; }
    @media (max-width: 990px) {
      body .ml72 {
        margin-left: 54px; } }
    @media (max-width: 767px) {
      body .ml72 {
        margin-left: 36px; } }
  body .mr72 {
    margin-right: 72px; }
    @media (max-width: 990px) {
      body .mr72 {
        margin-right: 54px; } }
    @media (max-width: 767px) {
      body .mr72 {
        margin-right: 36px; } }
  body .mt72 {
    margin-top: 72px; }
    @media (max-width: 990px) {
      body .mt72 {
        margin-top: 54px; } }
    @media (max-width: 767px) {
      body .mt72 {
        margin-top: 36px; } }
  body .mb72 {
    margin-bottom: 72px; }
    @media (max-width: 990px) {
      body .mb72 {
        margin-bottom: 54px; } }
    @media (max-width: 767px) {
      body .mb72 {
        margin-bottom: 36px; } }
  body .pl72 {
    padding-left: 72px; }
    @media (max-width: 990px) {
      body .pl72 {
        padding-left: 54px; } }
    @media (max-width: 767px) {
      body .pl72 {
        padding-left: 36px; } }
  body .pr72 {
    padding-right: 72px; }
    @media (max-width: 990px) {
      body .pr72 {
        padding-right: 54px; } }
    @media (max-width: 767px) {
      body .pr72 {
        padding-right: 36px; } }
  body .pt72 {
    padding-top: 72px; }
    @media (max-width: 990px) {
      body .pt72 {
        padding-top: 54px; } }
    @media (max-width: 767px) {
      body .pt72 {
        padding-top: 36px; } }
  body .pt-content72 .content {
    padding-top: 72px; }
    @media (max-width: 990px) {
      body .pt-content72 .content {
        padding-top: 54px; } }
    @media (max-width: 767px) {
      body .pt-content72 .content {
        padding-top: 36px; } }
  body .pb72 {
    padding-bottom: 72px; }
    @media (max-width: 990px) {
      body .pb72 {
        padding-bottom: 54px; } }
    @media (max-width: 767px) {
      body .pb72 {
        padding-bottom: 36px; } }
  body .pb-content72 .content {
    padding-bottom: 72px; }
    @media (max-width: 990px) {
      body .pb-content72 .content {
        padding-bottom: 54px; } }
    @media (max-width: 767px) {
      body .pb-content72 .content {
        padding-bottom: 36px; } }
  body .gap72 {
    gap: 72px; }
  body .ml80 {
    margin-left: 80px; }
    @media (max-width: 990px) {
      body .ml80 {
        margin-left: 60px; } }
    @media (max-width: 767px) {
      body .ml80 {
        margin-left: 40px; } }
  body .mr80 {
    margin-right: 80px; }
    @media (max-width: 990px) {
      body .mr80 {
        margin-right: 60px; } }
    @media (max-width: 767px) {
      body .mr80 {
        margin-right: 40px; } }
  body .mt80 {
    margin-top: 80px; }
    @media (max-width: 990px) {
      body .mt80 {
        margin-top: 60px; } }
    @media (max-width: 767px) {
      body .mt80 {
        margin-top: 40px; } }
  body .mb80 {
    margin-bottom: 80px; }
    @media (max-width: 990px) {
      body .mb80 {
        margin-bottom: 60px; } }
    @media (max-width: 767px) {
      body .mb80 {
        margin-bottom: 40px; } }
  body .pl80 {
    padding-left: 80px; }
    @media (max-width: 990px) {
      body .pl80 {
        padding-left: 60px; } }
    @media (max-width: 767px) {
      body .pl80 {
        padding-left: 40px; } }
  body .pr80 {
    padding-right: 80px; }
    @media (max-width: 990px) {
      body .pr80 {
        padding-right: 60px; } }
    @media (max-width: 767px) {
      body .pr80 {
        padding-right: 40px; } }
  body .pt80 {
    padding-top: 80px; }
    @media (max-width: 990px) {
      body .pt80 {
        padding-top: 60px; } }
    @media (max-width: 767px) {
      body .pt80 {
        padding-top: 40px; } }
  body .pt-content80 .content {
    padding-top: 80px; }
    @media (max-width: 990px) {
      body .pt-content80 .content {
        padding-top: 60px; } }
    @media (max-width: 767px) {
      body .pt-content80 .content {
        padding-top: 40px; } }
  body .pb80 {
    padding-bottom: 80px; }
    @media (max-width: 990px) {
      body .pb80 {
        padding-bottom: 60px; } }
    @media (max-width: 767px) {
      body .pb80 {
        padding-bottom: 40px; } }
  body .pb-content80 .content {
    padding-bottom: 80px; }
    @media (max-width: 990px) {
      body .pb-content80 .content {
        padding-bottom: 60px; } }
    @media (max-width: 767px) {
      body .pb-content80 .content {
        padding-bottom: 40px; } }
  body .gap80 {
    gap: 80px; }
  body .ml88 {
    margin-left: 88px; }
    @media (max-width: 990px) {
      body .ml88 {
        margin-left: 66px; } }
    @media (max-width: 767px) {
      body .ml88 {
        margin-left: 44px; } }
  body .mr88 {
    margin-right: 88px; }
    @media (max-width: 990px) {
      body .mr88 {
        margin-right: 66px; } }
    @media (max-width: 767px) {
      body .mr88 {
        margin-right: 44px; } }
  body .mt88 {
    margin-top: 88px; }
    @media (max-width: 990px) {
      body .mt88 {
        margin-top: 66px; } }
    @media (max-width: 767px) {
      body .mt88 {
        margin-top: 44px; } }
  body .mb88 {
    margin-bottom: 88px; }
    @media (max-width: 990px) {
      body .mb88 {
        margin-bottom: 66px; } }
    @media (max-width: 767px) {
      body .mb88 {
        margin-bottom: 44px; } }
  body .pl88 {
    padding-left: 88px; }
    @media (max-width: 990px) {
      body .pl88 {
        padding-left: 66px; } }
    @media (max-width: 767px) {
      body .pl88 {
        padding-left: 44px; } }
  body .pr88 {
    padding-right: 88px; }
    @media (max-width: 990px) {
      body .pr88 {
        padding-right: 66px; } }
    @media (max-width: 767px) {
      body .pr88 {
        padding-right: 44px; } }
  body .pt88 {
    padding-top: 88px; }
    @media (max-width: 990px) {
      body .pt88 {
        padding-top: 66px; } }
    @media (max-width: 767px) {
      body .pt88 {
        padding-top: 44px; } }
  body .pt-content88 .content {
    padding-top: 88px; }
    @media (max-width: 990px) {
      body .pt-content88 .content {
        padding-top: 66px; } }
    @media (max-width: 767px) {
      body .pt-content88 .content {
        padding-top: 44px; } }
  body .pb88 {
    padding-bottom: 88px; }
    @media (max-width: 990px) {
      body .pb88 {
        padding-bottom: 66px; } }
    @media (max-width: 767px) {
      body .pb88 {
        padding-bottom: 44px; } }
  body .pb-content88 .content {
    padding-bottom: 88px; }
    @media (max-width: 990px) {
      body .pb-content88 .content {
        padding-bottom: 66px; } }
    @media (max-width: 767px) {
      body .pb-content88 .content {
        padding-bottom: 44px; } }
  body .gap88 {
    gap: 88px; }
  body .ml96 {
    margin-left: 96px; }
    @media (max-width: 990px) {
      body .ml96 {
        margin-left: 72px; } }
    @media (max-width: 767px) {
      body .ml96 {
        margin-left: 48px; } }
  body .mr96 {
    margin-right: 96px; }
    @media (max-width: 990px) {
      body .mr96 {
        margin-right: 72px; } }
    @media (max-width: 767px) {
      body .mr96 {
        margin-right: 48px; } }
  body .mt96 {
    margin-top: 96px; }
    @media (max-width: 990px) {
      body .mt96 {
        margin-top: 72px; } }
    @media (max-width: 767px) {
      body .mt96 {
        margin-top: 48px; } }
  body .mb96 {
    margin-bottom: 96px; }
    @media (max-width: 990px) {
      body .mb96 {
        margin-bottom: 72px; } }
    @media (max-width: 767px) {
      body .mb96 {
        margin-bottom: 48px; } }
  body .pl96 {
    padding-left: 96px; }
    @media (max-width: 990px) {
      body .pl96 {
        padding-left: 72px; } }
    @media (max-width: 767px) {
      body .pl96 {
        padding-left: 48px; } }
  body .pr96 {
    padding-right: 96px; }
    @media (max-width: 990px) {
      body .pr96 {
        padding-right: 72px; } }
    @media (max-width: 767px) {
      body .pr96 {
        padding-right: 48px; } }
  body .pt96 {
    padding-top: 96px; }
    @media (max-width: 990px) {
      body .pt96 {
        padding-top: 72px; } }
    @media (max-width: 767px) {
      body .pt96 {
        padding-top: 48px; } }
  body .pt-content96 .content {
    padding-top: 96px; }
    @media (max-width: 990px) {
      body .pt-content96 .content {
        padding-top: 72px; } }
    @media (max-width: 767px) {
      body .pt-content96 .content {
        padding-top: 48px; } }
  body .pb96 {
    padding-bottom: 96px; }
    @media (max-width: 990px) {
      body .pb96 {
        padding-bottom: 72px; } }
    @media (max-width: 767px) {
      body .pb96 {
        padding-bottom: 48px; } }
  body .pb-content96 .content {
    padding-bottom: 96px; }
    @media (max-width: 990px) {
      body .pb-content96 .content {
        padding-bottom: 72px; } }
    @media (max-width: 767px) {
      body .pb-content96 .content {
        padding-bottom: 48px; } }
  body .gap96 {
    gap: 96px; }
  body .ml104 {
    margin-left: 104px; }
    @media (max-width: 990px) {
      body .ml104 {
        margin-left: 78px; } }
    @media (max-width: 767px) {
      body .ml104 {
        margin-left: 52px; } }
  body .mr104 {
    margin-right: 104px; }
    @media (max-width: 990px) {
      body .mr104 {
        margin-right: 78px; } }
    @media (max-width: 767px) {
      body .mr104 {
        margin-right: 52px; } }
  body .mt104 {
    margin-top: 104px; }
    @media (max-width: 990px) {
      body .mt104 {
        margin-top: 78px; } }
    @media (max-width: 767px) {
      body .mt104 {
        margin-top: 52px; } }
  body .mb104 {
    margin-bottom: 104px; }
    @media (max-width: 990px) {
      body .mb104 {
        margin-bottom: 78px; } }
    @media (max-width: 767px) {
      body .mb104 {
        margin-bottom: 52px; } }
  body .pl104 {
    padding-left: 104px; }
    @media (max-width: 990px) {
      body .pl104 {
        padding-left: 78px; } }
    @media (max-width: 767px) {
      body .pl104 {
        padding-left: 52px; } }
  body .pr104 {
    padding-right: 104px; }
    @media (max-width: 990px) {
      body .pr104 {
        padding-right: 78px; } }
    @media (max-width: 767px) {
      body .pr104 {
        padding-right: 52px; } }
  body .pt104 {
    padding-top: 104px; }
    @media (max-width: 990px) {
      body .pt104 {
        padding-top: 78px; } }
    @media (max-width: 767px) {
      body .pt104 {
        padding-top: 52px; } }
  body .pt-content104 .content {
    padding-top: 104px; }
    @media (max-width: 990px) {
      body .pt-content104 .content {
        padding-top: 78px; } }
    @media (max-width: 767px) {
      body .pt-content104 .content {
        padding-top: 52px; } }
  body .pb104 {
    padding-bottom: 104px; }
    @media (max-width: 990px) {
      body .pb104 {
        padding-bottom: 78px; } }
    @media (max-width: 767px) {
      body .pb104 {
        padding-bottom: 52px; } }
  body .pb-content104 .content {
    padding-bottom: 104px; }
    @media (max-width: 990px) {
      body .pb-content104 .content {
        padding-bottom: 78px; } }
    @media (max-width: 767px) {
      body .pb-content104 .content {
        padding-bottom: 52px; } }
  body .gap104 {
    gap: 104px; }
  body .ml112 {
    margin-left: 112px; }
    @media (max-width: 990px) {
      body .ml112 {
        margin-left: 84px; } }
    @media (max-width: 767px) {
      body .ml112 {
        margin-left: 56px; } }
  body .mr112 {
    margin-right: 112px; }
    @media (max-width: 990px) {
      body .mr112 {
        margin-right: 84px; } }
    @media (max-width: 767px) {
      body .mr112 {
        margin-right: 56px; } }
  body .mt112 {
    margin-top: 112px; }
    @media (max-width: 990px) {
      body .mt112 {
        margin-top: 84px; } }
    @media (max-width: 767px) {
      body .mt112 {
        margin-top: 56px; } }
  body .mb112 {
    margin-bottom: 112px; }
    @media (max-width: 990px) {
      body .mb112 {
        margin-bottom: 84px; } }
    @media (max-width: 767px) {
      body .mb112 {
        margin-bottom: 56px; } }
  body .pl112 {
    padding-left: 112px; }
    @media (max-width: 990px) {
      body .pl112 {
        padding-left: 84px; } }
    @media (max-width: 767px) {
      body .pl112 {
        padding-left: 56px; } }
  body .pr112 {
    padding-right: 112px; }
    @media (max-width: 990px) {
      body .pr112 {
        padding-right: 84px; } }
    @media (max-width: 767px) {
      body .pr112 {
        padding-right: 56px; } }
  body .pt112 {
    padding-top: 112px; }
    @media (max-width: 990px) {
      body .pt112 {
        padding-top: 84px; } }
    @media (max-width: 767px) {
      body .pt112 {
        padding-top: 56px; } }
  body .pt-content112 .content {
    padding-top: 112px; }
    @media (max-width: 990px) {
      body .pt-content112 .content {
        padding-top: 84px; } }
    @media (max-width: 767px) {
      body .pt-content112 .content {
        padding-top: 56px; } }
  body .pb112 {
    padding-bottom: 112px; }
    @media (max-width: 990px) {
      body .pb112 {
        padding-bottom: 84px; } }
    @media (max-width: 767px) {
      body .pb112 {
        padding-bottom: 56px; } }
  body .pb-content112 .content {
    padding-bottom: 112px; }
    @media (max-width: 990px) {
      body .pb-content112 .content {
        padding-bottom: 84px; } }
    @media (max-width: 767px) {
      body .pb-content112 .content {
        padding-bottom: 56px; } }
  body .gap112 {
    gap: 112px; }
  body .ml120 {
    margin-left: 120px; }
    @media (max-width: 990px) {
      body .ml120 {
        margin-left: 90px; } }
    @media (max-width: 767px) {
      body .ml120 {
        margin-left: 60px; } }
  body .mr120 {
    margin-right: 120px; }
    @media (max-width: 990px) {
      body .mr120 {
        margin-right: 90px; } }
    @media (max-width: 767px) {
      body .mr120 {
        margin-right: 60px; } }
  body .mt120 {
    margin-top: 120px; }
    @media (max-width: 990px) {
      body .mt120 {
        margin-top: 90px; } }
    @media (max-width: 767px) {
      body .mt120 {
        margin-top: 60px; } }
  body .mb120 {
    margin-bottom: 120px; }
    @media (max-width: 990px) {
      body .mb120 {
        margin-bottom: 90px; } }
    @media (max-width: 767px) {
      body .mb120 {
        margin-bottom: 60px; } }
  body .pl120 {
    padding-left: 120px; }
    @media (max-width: 990px) {
      body .pl120 {
        padding-left: 90px; } }
    @media (max-width: 767px) {
      body .pl120 {
        padding-left: 60px; } }
  body .pr120 {
    padding-right: 120px; }
    @media (max-width: 990px) {
      body .pr120 {
        padding-right: 90px; } }
    @media (max-width: 767px) {
      body .pr120 {
        padding-right: 60px; } }
  body .pt120 {
    padding-top: 120px; }
    @media (max-width: 990px) {
      body .pt120 {
        padding-top: 90px; } }
    @media (max-width: 767px) {
      body .pt120 {
        padding-top: 60px; } }
  body .pt-content120 .content {
    padding-top: 120px; }
    @media (max-width: 990px) {
      body .pt-content120 .content {
        padding-top: 90px; } }
    @media (max-width: 767px) {
      body .pt-content120 .content {
        padding-top: 60px; } }
  body .pb120 {
    padding-bottom: 120px; }
    @media (max-width: 990px) {
      body .pb120 {
        padding-bottom: 90px; } }
    @media (max-width: 767px) {
      body .pb120 {
        padding-bottom: 60px; } }
  body .pb-content120 .content {
    padding-bottom: 120px; }
    @media (max-width: 990px) {
      body .pb-content120 .content {
        padding-bottom: 90px; } }
    @media (max-width: 767px) {
      body .pb-content120 .content {
        padding-bottom: 60px; } }
  body .gap120 {
    gap: 120px; }

.mepi-zemljevid-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center; }

.mepi-zemljevid {
  height: 660px;
  width: 1390px; }

.no-padding {
  padding: 0; }

.no-margin {
  margin: 0; }

.mr-auto {
  margin-right: auto; }

.ml-auto {
  margin-left: auto; }

.width--20 {
  width: 20%;
  margin: 0 auto; }

.width--30 {
  width: 30%;
  margin: 0 auto; }

.width--40 {
  width: 40%;
  margin: 0 auto; }

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

.width--60 {
  width: 60%;
  margin: 0 auto; }

.width--65 {
  width: 65%;
  margin: 0 auto; }

.width--70 {
  width: 70%;
  margin: 0 auto; }

.width--75 {
  width: 75%;
  margin: 0 auto; }

.width--80 {
  width: 80%;
  margin: 0 auto; }

.width--85 {
  width: 85%;
  margin: 0 auto; }

.width--90 {
  width: 90%;
  margin: 0 auto; }

.bg__color--light-blue {
  background-color: #f9fcff; }

.bg__color--trasparent {
  background-color: transparent; }

.bg__repeat--no-repeat {
  background-repeat: no-repeat; }

.bg__position--top-right {
  background-position: top right; }

.bg__position--top-left {
  background-position: top left; }

.bg__position--bottom-right {
  background-position: bottom right; }

.bg__position--bottom-left {
  background-position: bottom left; }

.gform_wrapper {
  /* Errors styles */ }
  .gform_wrapper .gform_title {
    text-align: center;
    margin-top: 0;
    margin-bottom: 16px; }
  .gform_wrapper .gform_description {
    font-size: 1rem;
    line-height: 1.875;
    display: block;
    text-align: center;
    width: 40%;
    margin: 0 auto 16px; }
  .gform_wrapper #gform_fields_1 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
        -ms-flex-align: baseline;
            align-items: baseline; }
  @media only screen and (max-width: 640px) {
    .gform_wrapper .gform_body {
      margin-left: 0; }
    .gform_wrapper #field_submit {
      margin: 0 auto; } }
  .gform_wrapper .gfield .ginput_container input[type="text"],
  .gform_wrapper .gfield .ginput_container input[type="email"] {
    padding: 9px 18px;
    font-size: 1rem;
    line-height: 1.5;
    color: #1d2d38;
    background: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 6px; }
    .gform_wrapper .gfield .ginput_container input[type="text"]::-webkit-input-placeholder, .gform_wrapper .gfield .ginput_container input[type="email"]::-webkit-input-placeholder {
      color: rgba(0, 0, 0, 0.25); }
    .gform_wrapper .gfield .ginput_container input[type="text"]::-moz-placeholder, .gform_wrapper .gfield .ginput_container input[type="email"]::-moz-placeholder {
      color: rgba(0, 0, 0, 0.25); }
    .gform_wrapper .gfield .ginput_container input[type="text"]:-ms-input-placeholder, .gform_wrapper .gfield .ginput_container input[type="email"]:-ms-input-placeholder {
      color: rgba(0, 0, 0, 0.25); }
    .gform_wrapper .gfield .ginput_container input[type="text"]::-ms-input-placeholder, .gform_wrapper .gfield .ginput_container input[type="email"]::-ms-input-placeholder {
      color: rgba(0, 0, 0, 0.25); }
    .gform_wrapper .gfield .ginput_container input[type="text"]::placeholder,
    .gform_wrapper .gfield .ginput_container input[type="email"]::placeholder {
      color: rgba(0, 0, 0, 0.25); }
  .gform_wrapper .gfield input[type=submit], .gform_wrapper .gform_button {
    background: #882581;
    padding: 8px 24px 10px;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: bold;
    border-radius: 3px;
    color: #fff;
    border: none;
    cursor: pointer; }
  .gform_wrapper .gform_footer {
    padding-bottom: 0 !important; }
  .gform_wrapper .gform_required_legend {
    display: none; }
  .gform_wrapper .gform_validation_errors {
    display: none; }
  .gform_wrapper .gfield.gfield_error .ginput_container input,
  .gform_wrapper .gfield.gfield_error .ginput_container textarea {
    border: 1px solid #e40046; }
  .gform_wrapper .gfield.gfield_error .validation_message {
    color: #e40046;
    background: transparent;
    border: none;
    margin: 0;
    padding: 0; }

.border-radius40 {
  border-radius: 40px !important; }

.wp-block-columns {
  margin: 0; }

.single-zgodbe .sidebar .widget-area .post-recents {
  display: none; }

.fotogalerija .current-image-index,
.fotogalerija .dogodek-post-id,
.fotogalerija .number-of-images-to-load {
  display: none; }

.flex-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row; }

@media only screen and (max-width: 600px) {
  .mepi-zemljevid {
    height: 400px; } }

.mfp-figure {
  max-width: 90% !important;
  width: 100%;
  max-height: 90%;
  margin: 0 auto; }

.mfp-figure:after {
  -webkit-box-shadow: unset !important;
          box-shadow: unset !important;
  background: unset !important; }

#footer {
  background-color: #f9fcff; }
  #footer .social-icons {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 32px; }
    #footer .social-icons img {
      height: 32px;
      width: 32px; }
  #footer .footer-logo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center; }
    #footer .footer-logo img {
      max-height: 125px;
      width: auto; }
  #footer .main-footer-wrapper {
    border-bottom: 0.2px solid #0a4d68; }
  #footer .main-footer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 96px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center; }
    #footer .main-footer .col1 .icons {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-flow: row nowrap;
          -ms-flex-flow: row nowrap;
              flex-flow: row nowrap; }
      #footer .main-footer .col1 .icons img {
        width: 32px;
        height: 32px; }
    #footer .main-footer .col-heading {
      font-size: 18px;
      line-height: 28px;
      font-weight: 700; }
    #footer .main-footer .col-menu a {
      text-decoration: none; }
    #footer .main-footer .col3 li, #footer .main-footer .col4 li {
      margin-bottom: 16px; }
    #footer .main-footer .col1 li, #footer .main-footer .col2 li {
      margin-bottom: 8px; }
    #footer .main-footer .col1 li:first-child, #footer .main-footer .col2 li:first-child {
      margin-bottom: 16px; }
  #footer .footer-bottom {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    #footer .footer-bottom .copyright {
      color: #969696; }
    #footer .footer-bottom #menu-footer-menu {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-flow: row nowrap;
          -ms-flex-flow: row nowrap;
              flex-flow: row nowrap;
      gap: 20px; }
      #footer .footer-bottom #menu-footer-menu a {
        text-decoration: none;
        color: #969696; }

@media only screen and (max-width: 780px) {
  #footer .main-footer {
    gap: 12px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column; }
  .col-menu, .social-icons {
    display: none;
    text-align: center; }
  .mobile-collapsible {
    cursor: pointer; }
  .col-heading {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    .col-heading:after {
      content: "";
      background-image: url(./assets/faq-accordion-arrow.svg);
      background-size: 14px 8px;
      background-repeat: no-repeat;
      width: 14px;
      height: 8px; }
  .social-icons {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center; } }

.slick-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style-type: none;
  margin: 0;
  padding: 0; }
  .slick-dots button {
    border-radius: 100%;
    border: none;
    margin-left: 16px;
    font-size: 0;
    padding: 8px; }
  .slick-dots li.slick-active button {
    background-color: #969696; }

.slick-arrow {
  border: none;
  position: absolute;
  top: 50%;
  background-color: transparent; }

.slick-prev, .slick-next {
  cursor: pointer; }

.slick-next {
  right: -3%; }

.slick-prev {
  left: -3%; }

.arrow-ontop {
  z-index: 4; }

.slick-slide {
  margin: 24px; }

.red__curve--top-left {
  background-image: url(./assets/red-curve-left.png);
  background-repeat: no-repeat;
  background-position: top left; }

.red__curve--top-right {
  background-image: url(./assets/red-curve-right.png);
  background-repeat: no-repeat;
  background-position: top right; }

.red__curve--bottom-left {
  background-image: url(./assets/red-curve-left.png);
  background-repeat: no-repeat;
  background-position: bottom left; }

.red__curve--bottom-right {
  background-image: url(./assets/red-curve-right.png);
  background-repeat: no-repeat;
  background-position: bottom right; }

.green {
  /*
    &__overlay-filter {
        background: linear-gradient(270deg, rgba(148, 187, 68, 0.21) 0.06%, rgba(148, 187, 68, 0.03) 51.56%, rgba(148, 187, 68, 0.21) 100%);
    }
     */ }
  .green__curve--top-left {
    background-image: url(./assets/green-curve-left.png);
    background-repeat: no-repeat;
    background-position: top left; }
  .green__curve--top-right {
    background-image: url(./assets/green-curve-right.png);
    background-repeat: no-repeat;
    background-position: top right; }
  .green__curve--bottom-left {
    background-image: url(./assets/green-curve-left.png);
    background-repeat: no-repeat;
    background-position: bottom left; }
  .green__curve--bottom-right {
    background-image: url(./assets/green-curve-right.png);
    background-repeat: no-repeat;
    background-position: bottom right; }

.purple {
  /*
    &__overlay-filter {
        background: linear-gradient(270deg, rgba(136, 37, 129, 0.35) 0.06%, rgba(136, 37, 129, 0.05) 51.56%, rgba(136, 37, 129, 0.35) 100%);
    }
     */ }
  .purple__curve--top-left {
    background-image: url(./assets/purple-curve-left.png);
    background-repeat: no-repeat;
    background-position: top left; }
  .purple__curve--top-right {
    background-image: url(./assets/purple-curve-right.png);
    background-repeat: no-repeat;
    background-position: top right; }
  .purple__curve--bottom-left {
    background-image: url(./assets/purple-curve-left.png);
    background-repeat: no-repeat;
    background-position: bottom left; }
  .purple__curve--bottom-right {
    background-image: url(./assets/purple-curve-right.png);
    background-repeat: no-repeat;
    background-position: bottom right; }

.blue {
  /*
    &__overlay-filter {
        background: linear-gradient(270deg, rgba(68, 158, 221, 0.49) 0.06%, rgba(68, 158, 221, 0.07) 51.56%, rgba(69, 159, 222, 0.49) 100%);
    }
     */ }
  .blue__curve--top-left {
    background-image: url(./assets/blue-curve-left.png);
    background-repeat: no-repeat;
    background-position: top left; }
  .blue__curve--top-right {
    background-image: url(./assets/blue-curve-right.png);
    background-repeat: no-repeat;
    background-position: top right; }
  .blue__curve--bottom-left {
    background-image: url(./assets/blue-curve-left.png);
    background-repeat: no-repeat;
    background-position: bottom left; }
  .blue__curve--bottom-right {
    background-image: url(./assets/blue-curve-right.png);
    background-repeat: no-repeat;
    background-position: bottom right; }

.yellow__curve--top-left {
  background-image: url(./assets/yellow-curve-left.png);
  background-repeat: no-repeat;
  background-position: top left; }

.yellow__curve--top-right {
  background-image: url(./assets/yellow-curve-right.png);
  background-repeat: no-repeat;
  background-position: top right; }

.yellow__curve--bottom-left {
  background-image: url(./assets/yellow-curve-left.png);
  background-repeat: no-repeat;
  background-position: bottom left; }

.yellow__curve--bottom-right {
  background-image: url(./assets/yellow-curve-right.png);
  background-repeat: no-repeat;
  background-position: bottom right; }

.red-lines {
  background-image: url(./assets/red-line-left-short.png), url(./assets/red-line-right-short.png);
  background-position: bottom 109px left, bottom 109px right;
  background-repeat: no-repeat, no-repeat; }

.red-rainbow-lines {
  background-image: url(./assets/red-line-left.png), url(./assets/red-line-right.png), url(./assets/rainbow-line.png);
  background-position: top 75px left, top 75px right, bottom center;
  background-repeat: no-repeat, no-repeat, no-repeat; }

.bottom-rainbow {
  background-image: url(./assets/rainbow-line.png);
  background-position: bottom;
  background-size: 100% 12px;
  background-repeat: no-repeat; }

.lines--red {
  background-image: url(./assets/red-line-left.png), url(./assets/red-line-right.png);
  background-position: top 25px left, top 25px right;
  background-repeat: no-repeat, no-repeat; }

.lines--blue {
  background-image: url(./assets/blue-line-left.png), url(./assets/blue-line-right.png);
  background-position: top 25px left, top 25px right;
  background-repeat: no-repeat, no-repeat; }

.lines--purple {
  background-image: url(./assets/purple-line-left.png), url(./assets/purple-line-right.png);
  background-position: top 25px left, top 25px right;
  background-repeat: no-repeat, no-repeat; }

.lines--green {
  background-image: url(./assets/green-line-left.png), url(./assets/green-line-right.png);
  background-position: top 25px left, top 25px right;
  background-repeat: no-repeat, no-repeat; }

.lines--yellow {
  background-image: url(./assets/yellow-line-left.png), url(./assets/yellow-line-right.png);
  background-position: top 25px left, top 25px right;
  background-repeat: no-repeat, no-repeat; }

.wp-block-image {
  margin-bottom: 0; }

@media only screen and (max-width: 1000px) {
  .not-fullwidth {
    width: 100%; }
    .not-fullwidth .container {
      padding: 0; }
  .accordion__item__answer > p {
    width: 95% !important; }
  .red__curve--top-left {
    background-image: none !important; }
  .red__curve--top-right {
    background-image: none !important; }
  .red__curve--bottom-left {
    background-image: none !important; }
  .red__curve--bottom-right {
    background-image: none !important; }
  .green__curve--top-left {
    background-image: none !important; }
  .green__curve--top-right {
    background-image: none !important; }
  .green__curve--bottom-left {
    background-image: none !important; }
  .green__curve--bottom-right {
    background-image: none !important; }
  .purple__curve--top-left {
    background-image: none !important; }
  .purple__curve--top-right {
    background-image: none !important; }
  .purple__curve--bottom-left {
    background-image: none !important; }
  .purple__curve--bottom-right {
    background-image: none !important; }
  .blue__curve--top-left {
    background-image: none !important; }
  .blue__curve--top-right {
    background-image: none !important; }
  .blue__curve--bottom-left {
    background-image: none !important; }
  .blue__curve--bottom-right {
    background-image: none !important; }
  .yellow__curve--top-left {
    background-image: none !important; }
  .yellow__curve--top-right {
    background-image: none !important; }
  .yellow__curve--bottom-left {
    background-image: none !important; }
  .yellow__curve--bottom-right {
    background-image: none !important; } }

@media only screen and (max-width: 1880px) {
  .red-lines {
    background-image: none !important; } }

@media only screen and (max-width: 1500px) {
  .not-fullwidth {
    width: 95%; }
    .not-fullwidth .container {
      padding: 0; }
  .accordion__item__answer > p {
    width: 95% !important; }
  .lines--red {
    background-image: none !important; }
  .lines--blue {
    background-image: none !important; }
  .lines--purple {
    background-image: none !important; }
  .lines--green {
    background-image: none !important; }
  .lines--yellow {
    background-image: none !important; } }

.dropdown {
  /*
  option{
    color: $form-grey-text;
  }
   */ }
  .dropdown select {
    color: #00000040;
    padding: 14px 14px !important;
    gap: 10px;
    height: 56px;
    background: #fff;
    border: 1px solid #DCDCDC;
    border-radius: 6px; }
  .dropdown option:first-child {
    display: none; }

.gform_confirmation_wrapper {
  text-align: center; }

.oneline-textinput input {
  padding: 14px 18px !important;
  gap: 10px;
  height: 56px;
  border: 1px solid #DCDCDC;
  border-radius: 6px; }

.gfield_contains_required {
  position: relative; }
  .gfield_contains_required:before {
    position: absolute;
    top: 18px;
    left: 12px;
    content: '*';
    color: #e40046; }

.textarea-large textarea {
  resize: none;
  padding: 18px 18px !important;
  gap: 10px;
  height: 300px;
  border: 1px solid #DCDCDC;
  border-radius: 6px; }
  .textarea-large textarea::-webkit-input-placeholder {
    color: #00000040; }
  .textarea-large textarea::-moz-placeholder {
    color: #00000040; }
  .textarea-large textarea:-ms-input-placeholder {
    color: #00000040; }
  .textarea-large textarea::-ms-input-placeholder {
    color: #00000040; }
  .textarea-large textarea::placeholder {
    color: #00000040; }

.consent-center {
  text-align: center; }

.gform_footer input {
  margin: 0 auto; }

input[type="submit"]:hover {
  text-decoration: underline;
  -webkit-text-decoration-color: #fff;
          text-decoration-color: #fff; }

.gfield_signature_container {
  width: 100% !important; }
  .gfield_signature_container canvas {
    width: 100% !important;
    border-radius: 6px; }

.signature-field {
  position: relative; }
  .signature-field .gfield_label {
    position: absolute;
    top: 8%;
    left: 18px;
    font-weight: normal !important;
    margin-bottom: 0 !important;
    color: #00000040; }
  .signature-field .gfield_required {
    display: none; }

.consent-check--dohodnina:before {
  top: 0px;
  left: 17px; }

.consent-check--dohodnina .gfield_required_text {
  display: none; }

.consent-check--kontakt:before {
  top: 0px;
  left: 17px; }

@media only screen and (max-width: 640px) {
  .gform_description {
    width: 100% !important; }
  #gform_fields_1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column; } }

.fotogalerija {
  text-align: center; }
  .fotogalerija h1 {
    margin: 32px 0px 64px 0px; }

.fotogalerija-grid {
  display: grid;
  grid-row-gap: 96px;
  grid-column-gap: 174px;
  grid-template-columns: repeat(3, 1fr); }
  .fotogalerija-grid img {
    margin-left: auto;
    margin-right: auto;
    height: 220px;
    border-radius: 0;
    -o-object-fit: scale-down;
       object-fit: scale-down; }
  .fotogalerija-grid p {
    width: 80%;
    margin: 0 auto;
    text-align: center; }

.fotogalerija-link {
  text-align: center;
  margin-top: 32px; }
  .fotogalerija-link a {
    font-weight: 700; }

.slick-prev, .slick-next {
  cursor: pointer;
  position: absolute;
  top: 45%; }

@media only screen and (max-width: 1000px) {
  .fotogalerija-grid {
    grid-template-columns: 1fr; } }

/*.seznam-izvajalcev-grid{

}
*/
.seznam-izvajalcev-grid .izvajalec-dropdown {
  margin: 0 auto; }

@media only screen and (max-width: 1200px) {
  .seznam-izvajalcev-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important; } }

@media only screen and (max-width: 600px) {
  .seznam-izvajalcev-grid {
    display: grid !important;
    grid-template-columns: 1fr !important; } }

.show-izvajalec-dropdown {
  opacity: 1 !important;
  top: 64px !important;
  visibility: visible !important; }

.izvajalec-dropdown-active {
  height: 64px;
  width: 85%;
  border-radius: 15px 15px 0px 0px;
  background: #F0E3EF; }

.post-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row; }

.post-title {
  text-align: center;
  margin-bottom: 32px; }

.title-date {
  margin-bottom: 64px; }

.post-image {
  margin-bottom: 32px; }
  .post-image img {
    margin: 0 auto; }

.post-content {
  margin-bottom: 32px; }

#sidebar {
  display: inline-block;
  margin-left: 32px;
  min-width: 280px;
  border-radius: 16px;
  background: #f9fcff; }
  #sidebar h2 {
    font-size: 24px;
    text-decoration: none;
    margin-bottom: 16px; }
  #sidebar .widget-container, #sidebar .cat-item {
    list-style-type: none; }
  #sidebar .post_kategorije {
    margin-top: 32px; }
  #sidebar .wp-block-categories-list {
    padding: 0; }

.nav-next, .nav-previous {
  display: inline-block;
  background: #882581;
  line-height: normal;
  padding: 8px 24px 10px;
  font-weight: bold;
  border-radius: 3px;
  color: #fff; }
  .nav-next a, .nav-previous a {
    color: #fff; }

.nav-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 32px; }
  .nav-links .nav-previous, .nav-links .nav-next {
    font-weight: bold; }
    .nav-links .nav-previous span, .nav-links .nav-next span {
      color: #fff; }

@media only screen and (max-width: 1500px) {
  #sidebar {
    display: none; } }

@media only screen and (max-width: 600px) {
  .nav-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px; }
  .nav-previous, .nav-next {
    text-align: center; } }

.posts-archive article {
  margin-bottom: 12px; }

.search-results-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }
  .search-results-container article {
    margin-bottom: 32px;
    max-width: 700px;
    -webkit-box-shadow: 0 4px 25px rgba(37, 81, 98, 0.15);
            box-shadow: 0 4px 25px rgba(37, 81, 98, 0.15);
    border-radius: 16px;
    padding: 16px 20px; }
    .search-results-container article .entry-title {
      font-size: 28px;
      margin-bottom: 16px; }
    .search-results-container article .entry-meta {
      margin-bottom: 16px; }
    .search-results-container article .entry-summary > p {
      margin-top: 16px; }
  .search-results-container article.type-page {
    background: #f9fcff; }
    .search-results-container article.type-page .entry-title {
      margin-bottom: 0; }

.container-404 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 32px;
  max-width: 500px;
  -webkit-box-shadow: 0 4px 25px rgba(37, 81, 98, 0.15);
          box-shadow: 0 4px 25px rgba(37, 81, 98, 0.15);
  border-radius: 16px;
  padding: 16px 20px; }
  .container-404 #sidebar {
    margin: 0;
    background: none; }
    .container-404 #sidebar .xoxo {
      padding: 0;
      text-align: center; }
  .container-404 .entry-content {
    margin-top: 24px; }
    .container-404 .entry-content .search-form {
      margin: 16px 0px; }

.search-no-results .search-results-container .header, .search-no-results .search-results-container .entry-content {
  text-align: center; }

.search-no-results .search-results-container .search-form {
  display: none; }

#message-404 {
  text-align: center; }

.archive-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }
  .archive-container .article-wrapper {
    margin-bottom: 32px;
    width: 700px;
    -webkit-box-shadow: 0 4px 25px rgba(37, 81, 98, 0.15);
            box-shadow: 0 4px 25px rgba(37, 81, 98, 0.15);
    border-radius: 16px;
    padding: 16px 20px; }
    .archive-container .article-wrapper .entry-title {
      font-size: 28px;
      margin-bottom: 16px; }
    .archive-container .article-wrapper .entry-meta {
      margin-bottom: 16px; }
    .archive-container .article-wrapper .entry-summary > p {
      margin-top: 16px; }
  .archive-container article.type-page {
    background: #f9fcff; }
    .archive-container article.type-page .entry-title {
      margin-bottom: 0; }


/*# sourceMappingURL=global-ow-script.css.map*/