/*
  Default Pattern:
  Source:  http://heropatterns.com
  License: CC BY 4.0 (https://creativecommons.org/licenses/by/4.0/)
*/
html, body,
h1, h2, h3, h4, h5, h6,
a, p, span,
em, small, strong,
sub, sup,
mark, del, ins, strike,
abbr, dfn,
blockquote, q, cite,
code, pre,
ol, ul, li, dl, dt, dd,
div, section, article,
main, aside, nav,
header, hgroup, footer,
img, figure, figcaption,
address, time,
audio, video,
canvas, iframe,
details, summary,
fieldset, form, label, legend,
table, caption,
tbody, tfoot, thead,
tr, th, td {
  font-size: 100%;
  font-weight: inherit;
  font-style: inherit;
  font-family: inherit;
  vertical-align: baseline;
  padding: 0;
  margin: 0;
  border: 0;
  outline: 0; }

html {
  text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility; }

a, u {
  text-decoration: underline; }

a:hover {
  text-decoration: none; }

em, i {
  font-style: italic; }

b, strong {
  font-weight: bold; }

code, kbd, samp {
  -moz-osx-font-smoothing: auto;
  -webkit-font-smoothing: auto;
  font-family: SFMono-Regular, Consolas, 'Liberation Mono', Menlo, Courier, monospace; }

main, article, aside, footer,
header, nav, section {
  display: block; }

* {
  box-sizing: border-box; }

*:before,
*:after {
  box-sizing: inherit; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

ol,
ul {
  list-style: none; }

img,
video {
  max-width: 100%; }

img {
  border-style: none; }

blockquote, q {
  quotes: none; }

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none; }

[hidden] {
  display: none !important; }

[disabled] {
  cursor: not-allowed; }

:focus:not(:focus-visible) {
  outline: none; }

body {
  color: #222;
  font-family: 'Noto Sans', Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 27px; }

a {
  color: #222;
  transition: all .3s; }

input, textarea {
  color: #222;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 27px; }
  input:focus, textarea:focus {
    outline: none; }

.wrapper {
  width: 100%;
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 18px;
  padding-left: 18px; }

.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start; }
  .row .column {
    display: block; }
  .row .span-12 {
    width: 100%; }
  .row .span-6 {
    width: calc(50% - 30px); }
  .row .span-4 {
    width: calc(33.333% - 30px); }
  .row .span-6-center {
    width: 70%;
    margin: 0 auto; }
  @media only screen and (max-width: 800px) {
    .row .span-12,
    .row .span-6,
    .row .span-6-center,
    .row .span-4 {
      width: 100%; } }
.button,
input[type="submit"] {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 27px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  height: 42px;
  background: #eaa74f;
  padding-right: 14px;
  padding-left: 14px;
  border: none;
  border-radius: 4px;
  transition: background-color .2s; }
  .button:hover,
  input[type="submit"]:hover {
    background: #e79c38; }

.animation-fade-in-fast {
  animation: fadeIn ease 1s;
  -webkit-animation: fadeIn ease 1s; }

@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.animation-fade-in-up {
  opacity: 0;
  animation-duration: .6s;
  -webkit-animation-duration: .6s;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
  animation-name: fadeInUp;
  -webkit-animation-name: fadeInUp; }

@keyframes fadeInUp {
  from {
    transform: translate3d(0, 80px, 0); }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1; } }

@-webkit-keyframes fadeInUp {
  from {
    transform: translate3d(0, 80px, 0); }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1; } }

.site-socials {
  margin-left: 30px; }
  .site-socials ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start; }
  .site-socials li {
    margin-right: 12px; }
    .site-socials li:last-child {
      margin-right: 0; }
    .site-socials li a {
      display: block;
      width: 42px;
      height: 42px;
      font-size: 0;
      line-height: 0;
      background: #eaa74f;
      border-radius: 50%;
      transition: background-color .2s; }
      .site-socials li a:hover {
        background-color: #e79c38; }
  .site-socials .social-eetnu a {
    background-image: url("../images/icons/icon-eetnu.svg"); }
  .site-socials .social-instagram a {
    background-image: url("../images/icons/icon-instagram.svg"); }
  .site-socials .social-facebook a {
    background-image: url("../images/icons/icon-facebook.svg"); }
  .site-socials .social-twitter a {
    background-image: url("../images/icons/icon-twitter.svg"); }

.site-header {
  position: relative;
  position: sticky;
  z-index: 99;
  top: 0;
  left: 0;
  padding-top: 18px;
  padding-bottom: 18px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: rgba(0, 0, 0, 0.16) 0 1px 6px; }
  .site-header .wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center; }
  .site-header .site-identity .site-name {
    font-size: 21px;
    line-height: 30px;
    font-weight: 700; }
    .site-header .site-identity .site-name img {
      display: block;
      max-height: 80px; }
    .site-header .site-identity .site-name a {
      color: #222;
      text-decoration: none; }
    .site-header .site-identity .site-name a:hover {
      text-decoration: underline; }
  .site-header .site-identity .site-slogan {
    display: block;
    margin-top: 6px; }
  .site-header .site-identity .site-name + .site-slogan {
    background: #FF0000; }
  .site-header .site-navigation {
    margin-left: auto; }
    .site-header .site-navigation .navigation-toggle {
      display: none; }
    .site-header .site-navigation ul {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: flex-start;
      align-items: flex-start; }
    .site-header .site-navigation li {
      margin-right: 24px; }
    .site-header .site-navigation li:last-child {
      margin-right: 0; }
    .site-header .site-navigation li a {
      display: block;
      color: #222;
      text-decoration: none;
      text-transform: uppercase;
      padding-bottom: 3px;
      border-bottom: 2px solid #121212; }
      .site-header .site-navigation li a:hover {
        text-decoration: none;
        border-bottom: 2px solid #eaa74f; }
    .site-header .site-navigation li.current a {
      border-bottom: 2px solid #eaa74f; }
  @media only screen and (max-width: 1100px) {
    .site-header .site-socials {
      display: none; } }
  @media only screen and (max-width: 880px) {
    .site-header .site-navigation {
      margin-left: 24px; }
      .site-header .site-navigation .navigation-toggle {
        appearance: none;
        -webkit-appearance: none;
        display: block;
        cursor: pointer;
        width: 30px;
        height: 24px;
        background-image: url("../images/icons/navigation-toggle.svg");
        border: none;
        border-radius: none; }
        .site-header .site-navigation .navigation-toggle:checked {
          position: absolute;
          background-position: 0 -36px;
          top: 12px;
          right: 12px;
          z-index: 9999; }
      .site-header .site-navigation ul {
        display: none; }
      .site-header .site-navigation .navigation-toggle:checked + ul {
        position: fixed;
        display: block;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        height: 100vh;
        width: 100%;
        text-align: center;
        background: url("/images/patterns/default_pattern.jpg") repeat;
        background-size: 25px 25px;
        background-color: #121212;
        padding-top: 102px; }
      .site-header .site-navigation li {
        margin: 0;
        margin-bottom: 12px; }
      .site-header .site-navigation li a {
        color: #fff;
        border-bottom: 0; }
        .site-header .site-navigation li a:hover {
          text-decoration: underline;
          border-bottom: 0; }
      .site-header .site-navigation li.current a {
        font-weight: 700;
        border-bottom: 0; } }
.site-content {
  min-height: 80vh;
  background: url("/images/patterns/default_pattern.jpg") repeat;
  background-size: 25px 25px;
  background-color: #fff;
  padding-top: 60px;
  padding-bottom: 90px; }
  .site-content .wrapper,
  .site-content .wrapper-fullscreen {
    margin-bottom: 60px; }
    .site-content .wrapper:last-child,
    .site-content .wrapper-fullscreen:last-child {
      margin-bottom: 0; }
  .site-content .wrapper-fullscreen:first-child {
    margin-top: -60px; }
  .site-content .widget .widget-header {
    margin-bottom: 18px; }
  .site-content .widget .widget-header-title {
    font-size: 27px;
    font-weight: 700;
    line-height: 38px; }
    .site-content .widget .widget-header-title a {
      color: #222;
      text-decoration: none; }
  .site-content .widget + .widget {
    margin-top: 36px; }
  @media only screen and (max-width: 800px) {
    .site-content {
      padding-top: 48px;
      padding-bottom: 60px; }
      .site-content .wrapper-fullscreen:first-child {
        margin-top: -48px; }
      .site-content .column + .column {
        margin-top: 36px; } }
.site-footer {
  color: #fff;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 72px;
  background: url("/images/patterns/default_pattern.jpg") repeat;
  background-size: 25px 25px;
  background-color: #121212; }
  .site-footer a {
    color: #fff; }
  .site-footer .footer-identity {
    display: block;
    font-size: 21px;
    line-height: 30px;
    margin-bottom: 6px; }
  .site-footer .footer-address {
    margin-bottom: 24px; }
  .site-footer .site-socials {
    display: none;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 30px;
    margin-left: 0; }
    .site-footer .site-socials ul {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center; }
    .site-footer .site-socials li {
      margin-right: 6px;
      margin-left: 6px; }
    @media only screen and (max-width: 1100px) {
      .site-footer .site-socials {
        display: block; } }
  .site-footer .go-to-top {
    display: inline-block;
    width: 42px;
    height: 42px;
    font-size: 0;
    background-color: #444;
    background-image: url("../images/icons/icon-to-top.svg");
    border-radius: 50%; }
    .site-footer .go-to-top:hover {
      background-color: #333; }

.widget-call-to-action {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  position: relative; }
  .widget-call-to-action:before {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: '';
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover; }
  .widget-call-to-action .widget-call-to-action-body {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    padding-top: 25%;
    padding-right: 30px;
    padding-bottom: 25%;
    padding-left: 30px; }
    .widget-call-to-action .widget-call-to-action-body .widget-call-to-action-content {
      text-align: center; }
    .widget-call-to-action .widget-call-to-action-body .widget-call-to-action-title,
    .widget-call-to-action .widget-call-to-action-body .widget-call-to-action-caption {
      display: block;
      color: #fff;
      font-weight: 700;
      text-shadow: rgba(0, 0, 0, 0.4) 0 3px 6px; }
    .widget-call-to-action .widget-call-to-action-body .widget-call-to-action-title,
    .widget-call-to-action .widget-call-to-action-body .widget-call-to-action-caption {
      font-size: 27px;
      line-height: 38px;
      transition: opacity .3s; }
    .widget-call-to-action .widget-call-to-action-body .widget-call-to-action-title + .widget-call-to-action-caption {
      font-size: 21px;
      line-height: 30px; }
    .widget-call-to-action .widget-call-to-action-body .widget-call-to-action-title + .widget-call-to-action-caption {
      margin-top: 6px; }
    .widget-call-to-action .widget-call-to-action-body .widget-call-to-action-title + .widget-call-to-action-button-wrapper,
    .widget-call-to-action .widget-call-to-action-body .widget-call-to-action-caption + .widget-call-to-action-button-wrapper {
      margin-top: 24px; }

.wrapper-fullscreen .widget-call-to-action {
  width: 100vw;
  height: 80vh; }
  .wrapper-fullscreen .widget-call-to-action .widget-call-to-action-body {
    padding-top: 0;
    padding-bottom: 0; }
    .wrapper-fullscreen .widget-call-to-action .widget-call-to-action-body .widget-call-to-action-title,
    .wrapper-fullscreen .widget-call-to-action .widget-call-to-action-body .widget-call-to-action-caption {
      font-size: 48px;
      line-height: 59px; }
      @media only screen and (max-width: 768px) {
        .wrapper-fullscreen .widget-call-to-action .widget-call-to-action-body .widget-call-to-action-title,
        .wrapper-fullscreen .widget-call-to-action .widget-call-to-action-body .widget-call-to-action-caption {
          font-size: 38px;
          line-height: 49px; } }
    .wrapper-fullscreen .widget-call-to-action .widget-call-to-action-body .widget-call-to-action-title + .widget-call-to-action-caption {
      font-size: 27px;
      line-height: 38px; }
      @media only screen and (max-width: 768px) {
        .wrapper-fullscreen .widget-call-to-action .widget-call-to-action-body .widget-call-to-action-title + .widget-call-to-action-caption {
          font-size: 21px;
          line-height: 30px; } }
    .wrapper-fullscreen .widget-call-to-action .widget-call-to-action-body img {
      display: none; }
  @media only screen and (max-width: 768px) {
    .wrapper-fullscreen .widget-call-to-action {
      min-height: 80vh;
      height: auto;
      padding-top: 100px;
      padding-bottom: 100px; } }
@media (pointer: fine) {
  .wrapper-fullscreen .widget-call-to-action:before {
    background-attachment: fixed;
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    will-change: transform; }
  .span-4 .widget-call-to-action .widget-call-to-action-button-wrapper {
    display: none; }
  .span-4 .widget-call-to-action:hover .widget-call-to-action-title,
  .span-4 .widget-call-to-action:hover .widget-call-to-action-caption {
    opacity: 0; }
  .span-4 .widget-call-to-action:hover .widget-call-to-action-button-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 99;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0; } }

.widget-text h1, .widget-text h2, .widget-text h3 {
  font-weight: 700; }
  .widget-text h1 strong, .widget-text h2 strong, .widget-text h3 strong {
    color: #FF0000; }

.widget-text h1 {
  font-size: 38px;
  line-height: 49px; }

.widget-text h2 {
  font-size: 27px;
  line-height: 38px; }

.widget-text h3 {
  font-size: 21px;
  line-height: 30px; }

.widget-text blockquote {
  font-size: 38px;
  font-weight: 700;
  line-height: 49px;
  text-align: center; }
  .widget-text blockquote:before, .widget-text blockquote:after {
    color: #666; }
  .widget-text blockquote:before {
    content: '"'; }
  .widget-text blockquote:after {
    content: '"'; }

.widget-text hr {
  max-width: 100%;
  display: block;
  margin-top: 24px;
  margin-bottom: 24px;
  border-top: 2px solid #121212; }

.widget-text h1,
.widget-text h2,
.widget-text h3,
.widget-text p,
.widget-text ol,
.widget-text ul,
.widget-text blockquote {
  margin-bottom: 18px; }
  .widget-text h1:last-child,
  .widget-text h2:last-child,
  .widget-text h3:last-child,
  .widget-text p:last-child,
  .widget-text ol:last-child,
  .widget-text ul:last-child,
  .widget-text blockquote:last-child {
    margin-bottom: 0; }

.span-6-center .widget-text {
  text-align: center; }
  .span-6-center .widget-text hr {
    max-width: 30%; }

.widget-photo {
  position: relative; }
  .widget-photo .widget-photo-body {
    text-align: center; }
  .widget-photo img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto; }
  .widget-photo .widget-photo-caption {
    display: block;
    color: #fff;
    background: #000;
    padding-top: 12px;
    padding-right: 18px;
    padding-bottom: 12px;
    padding-left: 18px; }

@media (pointer: fine) {
  .widget-photo .widget-photo-caption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity .3s;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); } }
  @media only screen and (pointer: fine) and (max-width: 768px) {
    .widget-photo .widget-photo-caption {
      position: static;
      display: block;
      background: #000;
      opacity: 1; } }
@media (pointer: fine) {
  .widget-photo:hover .widget-photo-caption {
    opacity: 1; } }

.widget-gallery {
  overflow: hidden; }
  .widget-gallery .widget-gallery-body {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    padding-right: 6px;
    padding-left: 6px;
    margin-top: -6px;
    margin-bottom: -6px; }
    .widget-gallery .widget-gallery-body .widget-gallery-block {
      position: relative;
      display: block;
      width: 33.3333%;
      border: 6px solid rgba(0, 0, 0, 0); }
      .widget-gallery .widget-gallery-body .widget-gallery-block img {
        display: block;
        width: 100%;
        max-width: 100%;
        height: auto; }
      @media only screen and (max-width: 768px) {
        .widget-gallery .widget-gallery-body .widget-gallery-block {
          width: 100%;
          margin-bottom: 36px;
          border: 0; }
          .widget-gallery .widget-gallery-body .widget-gallery-block:last-child {
            margin-bottom: 0; } }
    .widget-gallery .widget-gallery-body .widget-gallery-caption {
      display: block;
      color: #fff;
      background: #000;
      padding-top: 12px;
      padding-right: 18px;
      padding-bottom: 12px;
      padding-left: 18px; }
    @media only screen and (max-width: 768px) {
      .widget-gallery .widget-gallery-body {
        padding-right: 18px;
        padding-left: 18px; } }
  .wrapper-fullscreen .widget-gallery .widget-header {
    display: none; }

@media (pointer: fine) {
  .widget-gallery .widget-gallery-block .widget-gallery-caption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity .3s;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); } }
  @media only screen and (pointer: fine) and (max-width: 768px) {
    .widget-gallery .widget-gallery-block .widget-gallery-caption {
      position: static;
      display: block;
      background: #000;
      opacity: 1; } }
@media (pointer: fine) {
  .widget-gallery .widget-gallery-block:hover .widget-gallery-caption {
    opacity: 1; } }

.widget-custom-form fieldset {
  display: block;
  margin-bottom: 18px; }
  .widget-custom-form fieldset label {
    display: block;
    font-weight: 700;
    margin-bottom: 6px; }
  .widget-custom-form fieldset input,
  .widget-custom-form fieldset textarea {
    display: block;
    width: 100%;
    background: #fff;
    padding-top: 8px;
    padding-right: 12px;
    padding-bottom: 8px;
    padding-left: 12px;
    border: 1px solid #ccc;
    border-radius: 4px; }
  .widget-custom-form fieldset textarea {
    height: 120px; }
  .widget-custom-form fieldset input[type="file"] {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
    border: none; }
  .widget-custom-form fieldset select {
    width: 100%; }

.widget-custom-form input[type="submit"] {
  display: block;
  margin-top: 24px; }

.widget-custom-form .widget-custom-form_radios p,
.widget-custom-form .widget-custom-form_checkboxes p {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center; }
  .widget-custom-form .widget-custom-form_radios p input[type="radio"],
  .widget-custom-form .widget-custom-form_radios p input[type="checkbox"],
  .widget-custom-form .widget-custom-form_checkboxes p input[type="radio"],
  .widget-custom-form .widget-custom-form_checkboxes p input[type="checkbox"] {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    padding: 0;
    margin-right: 6px; }
    .widget-custom-form .widget-custom-form_radios p input[type="radio"]:checked,
    .widget-custom-form .widget-custom-form_radios p input[type="checkbox"]:checked,
    .widget-custom-form .widget-custom-form_checkboxes p input[type="radio"]:checked,
    .widget-custom-form .widget-custom-form_checkboxes p input[type="checkbox"]:checked {
      background: #eaa74f;
      border: 1px solid #eaa74f; }
  .widget-custom-form .widget-custom-form_radios p input[type="radio"],
  .widget-custom-form .widget-custom-form_checkboxes p input[type="radio"] {
    border-radius: 50%; }
  .widget-custom-form .widget-custom-form_radios p label,
  .widget-custom-form .widget-custom-form_checkboxes p label {
    font-weight: 400;
    margin: 0; }

.widget-reviews .widget-header {
  width: 100%; }

.widget-reviews .widget-reviews-form-wrapper {
  margin-bottom: 24px; }
  .widget-reviews .widget-reviews-form-wrapper .widget-reviews-thanks {
    display: none; }
  .widget-reviews .widget-reviews-form-wrapper form {
    display: none;
    width: 100%;
    background: #fff;
    padding: 18px;
    margin-bottom: 36px;
    border: 1px solid #ccc;
    border-radius: 4px; }
    .widget-reviews .widget-reviews-form-wrapper form .review-ratings {
      margin-right: 48px; }
      .widget-reviews .widget-reviews-form-wrapper form .review-ratings label {
        width: 130px; }
      .widget-reviews .widget-reviews-form-wrapper form .review-ratings .rating {
        width: 100%;
        margin-bottom: 18px; }
        .widget-reviews .widget-reviews-form-wrapper form .review-ratings .rating label {
          display: block;
          font-weight: 700;
          margin-bottom: 6px; }
        .widget-reviews .widget-reviews-form-wrapper form .review-ratings .rating .stars {
          display: flex;
          flex-direction: row;
          flex-wrap: wrap;
          justify-content: flex-start;
          align-items: center;
          position: relative;
          height: 30px; }
          .widget-reviews .widget-reviews-form-wrapper form .review-ratings .rating .stars span {
            display: block;
            cursor: pointer;
            width: 15px;
            height: 30px;
            text-indent: -9999px; }
          .widget-reviews .widget-reviews-form-wrapper form .review-ratings .rating .stars .left-star {
            background-image: url("../images/icons/stars-sprite.svg"); }
            .widget-reviews .widget-reviews-form-wrapper form .review-ratings .rating .stars .left-star.highlighted {
              background-image: url("../images/icons/stars-sprite.svg");
              background-position: 0 -30px; }
          .widget-reviews .widget-reviews-form-wrapper form .review-ratings .rating .stars .right-star {
            background-image: url("../images/icons/stars-sprite.svg");
            background-position: -15px 0px; }
            .widget-reviews .widget-reviews-form-wrapper form .review-ratings .rating .stars .right-star.highlighted {
              background-image: url("../images/icons/stars-sprite.svg");
              background-position: -15px -30px; }
          .widget-reviews .widget-reviews-form-wrapper form .review-ratings .rating .stars .value {
            display: inline-block;
            font-weight: 700;
            text-align: right;
            width: 30px; }
    .widget-reviews .widget-reviews-form-wrapper form .review-right {
      flex: 1; }
    .widget-reviews .widget-reviews-form-wrapper form .review-reviewer,
    .widget-reviews .widget-reviews-form-wrapper form .review-description {
      margin-bottom: 18px; }
      .widget-reviews .widget-reviews-form-wrapper form .review-reviewer li,
      .widget-reviews .widget-reviews-form-wrapper form .review-description li {
        margin-bottom: 18px; }
        .widget-reviews .widget-reviews-form-wrapper form .review-reviewer li:last-child,
        .widget-reviews .widget-reviews-form-wrapper form .review-description li:last-child {
          margin-bottom: 0; }
      .widget-reviews .widget-reviews-form-wrapper form .review-reviewer label,
      .widget-reviews .widget-reviews-form-wrapper form .review-description label {
        display: block;
        font-weight: 700;
        margin-bottom: 6px; }
      .widget-reviews .widget-reviews-form-wrapper form .review-reviewer input,
      .widget-reviews .widget-reviews-form-wrapper form .review-reviewer textarea,
      .widget-reviews .widget-reviews-form-wrapper form .review-description input,
      .widget-reviews .widget-reviews-form-wrapper form .review-description textarea {
        display: block;
        width: 100%;
        padding-top: 8px;
        padding-right: 12px;
        padding-bottom: 8px;
        padding-left: 12px;
        margin: 0;
        border: 1px solid #ccc;
        border-radius: 4px; }
      .widget-reviews .widget-reviews-form-wrapper form .review-reviewer .inline-hints,
      .widget-reviews .widget-reviews-form-wrapper form .review-description .inline-hints {
        font-size: 13px;
        margin-top: 6px; }
        .widget-reviews .widget-reviews-form-wrapper form .review-reviewer .inline-hints a,
        .widget-reviews .widget-reviews-form-wrapper form .review-description .inline-hints a {
          color: #222; }
    .widget-reviews .widget-reviews-form-wrapper form .review-description li {
      margin-bottom: 0; }
    .widget-reviews .widget-reviews-form-wrapper form .review-images {
      margin-bottom: 12px; }
      .widget-reviews .widget-reviews-form-wrapper form .review-images legend {
        font-weight: 700;
        margin-bottom: 6px; }
      .widget-reviews .widget-reviews-form-wrapper form .review-images .input {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: center; }
      .widget-reviews .widget-reviews-form-wrapper form .review-images .review-image {
        cursor: pointer;
        height: auto;
        position: relative;
        margin-right: 18px;
        margin-bottom: 18px; }
        .widget-reviews .widget-reviews-form-wrapper form .review-images .review-image.is-hidden {
          display: none; }
        .widget-reviews .widget-reviews-form-wrapper form .review-images .review-image.is-attached .file {
          border-radius: 0;
          height: 120px; }
          .widget-reviews .widget-reviews-form-wrapper form .review-images .review-image.is-attached .file label {
            display: none; }
          .widget-reviews .widget-reviews-form-wrapper form .review-images .review-image.is-attached .file:before {
            top: -8px; }
        .widget-reviews .widget-reviews-form-wrapper form .review-images .review-image .file label {
          position: relative;
          display: block;
          cursor: pointer;
          width: 48px;
          height: 48px;
          font-size: 0;
          background-color: #d9d9d9;
          background-image: url("../images/icons/icon-add.svg");
          border-radius: 4px;
          transition: background-color .3s; }
        .widget-reviews .widget-reviews-form-wrapper form .review-images .review-image .file:hover label {
          background-color: #cccccc; }
        .widget-reviews .widget-reviews-form-wrapper form .review-images .review-image .file input {
          position: absolute;
          top: 0;
          right: 0;
          display: block;
          width: 48px;
          height: 48px;
          opacity: 0;
          font-size: 0;
          cursor: pointer;
          padding: 0;
          overflow: hidden; }
        .widget-reviews .widget-reviews-form-wrapper form .review-images .review-image span.delete-image {
          position: absolute;
          z-index: 13;
          top: 6px;
          right: 6px;
          overflow: hidden;
          display: none;
          height: 24px;
          width: 24px;
          cursor: pointer;
          background: #FF0000;
          background-image: url("../images/icons/icon-remove.svg");
          background-position: center;
          font-size: 0;
          border-radius: 100%;
          border: 1px solid #fff; }
        .widget-reviews .widget-reviews-form-wrapper form .review-images .review-image.is-attached span.delete-image {
          display: block; }
        .widget-reviews .widget-reviews-form-wrapper form .review-images .review-image .review-image-preview {
          position: relative;
          z-index: 12;
          width: auto;
          height: 120px;
          cursor: default;
          margin-top: -120px;
          text-align: center; }
          .widget-reviews .widget-reviews-form-wrapper form .review-images .review-image .review-image-preview img {
            display: block;
            width: auto;
            height: 100%; }

.widget-reviews .widget-reviews-body .widget-reviews-review {
  display: none;
  background: #fff;
  padding-top: 12px;
  padding-right: 18px;
  padding-bottom: 12px;
  padding-left: 18px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 4px; }
  .widget-reviews .widget-reviews-body .widget-reviews-review:nth-child(1), .widget-reviews .widget-reviews-body .widget-reviews-review:nth-child(2), .widget-reviews .widget-reviews-body .widget-reviews-review:nth-child(3), .widget-reviews .widget-reviews-body .widget-reviews-review:nth-child(4), .widget-reviews .widget-reviews-body .widget-reviews-review:nth-child(5) {
    display: block; }
  .widget-reviews .widget-reviews-body .widget-reviews-review .widget-reviews-header {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 18px; }
    .widget-reviews .widget-reviews-body .widget-reviews-review .widget-reviews-header img {
      max-width: 48px;
      height: auto;
      border-radius: 50%;
      margin-right: 12px; }
    .widget-reviews .widget-reviews-body .widget-reviews-review .widget-reviews-header .widget-reviews-author {
      font-weight: 700; }
  .widget-reviews .widget-reviews-body .widget-reviews-review .widget-reviews-text {
    max-width: 600px;
    margin-bottom: 12px; }
  .widget-reviews .widget-reviews-body .widget-reviews-review .widget-reviews-scores {
    max-width: 400px; }
    .widget-reviews .widget-reviews-body .widget-reviews-review .widget-reviews-scores ul li {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: flex-start;
      align-items: flex-start; }
      .widget-reviews .widget-reviews-body .widget-reviews-review .widget-reviews-scores ul li span {
        display: inline-block;
        width: 130px; }
        .widget-reviews .widget-reviews-body .widget-reviews-review .widget-reviews-scores ul li span:after {
          content: ':'; }
      .widget-reviews .widget-reviews-body .widget-reviews-review .widget-reviews-scores ul li em {
        width: 30px;
        font-style: normal;
        font-weight: 700;
        text-align: right; }
    .widget-reviews .widget-reviews-body .widget-reviews-review .widget-reviews-scores ul li:last-child {
      margin-top: 12px; }

.widget-reviews .widget-reviews-body .widget-reviews-review-active {
  display: block; }

.widget-reviews .widget-reviews-body .widget-reviews-load {
  margin-top: 6px; }

.span-6 .widget-reviews .widget-reviews-body .widget-reviews-review .widget-reviews-scores ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start; }
  .span-6 .widget-reviews .widget-reviews-body .widget-reviews-review .widget-reviews-scores ul li {
    width: 190px; }
  @media only screen and (max-width: 960px) {
    .span-6 .widget-reviews .widget-reviews-body .widget-reviews-review .widget-reviews-scores ul {
      display: block; } }
.span-12 .widget-reviews .widget-reviews-form-wrapper form .review-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start; }
  @media only screen and (max-width: 768px) {
    .span-12 .widget-reviews .widget-reviews-form-wrapper form .review-wrapper {
      display: block; } }
.span-12 .widget-reviews .widget-reviews-body .widget-reviews-review .widget-reviews-scores ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start; }
  .span-12 .widget-reviews .widget-reviews-body .widget-reviews-review .widget-reviews-scores ul li {
    width: 190px; }
  @media only screen and (max-width: 768px) {
    .span-12 .widget-reviews .widget-reviews-body .widget-reviews-review .widget-reviews-scores ul {
      display: block; } }
.widget-map .widget-map-canvas {
  padding-bottom: 66%; }

.widget-openinghours table th {
  font-weight: 700; }

.widget-openinghours table th,
.widget-openinghours table td {
  padding-right: 24px; }

.widget-openinghours table td:first-child {
  font-weight: 700;
  text-transform: uppercase; }

.widget-contact p {
  margin-bottom: 18px; }
  .widget-contact p:last-child {
    margin-bottom: 0; }

.widget-contact label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px; }

.widget-contact input[type="text"],
.widget-contact input[type="email"],
.widget-contact textarea {
  display: block;
  width: 100%;
  background: #fff;
  padding-top: 8px;
  padding-right: 12px;
  padding-bottom: 8px;
  padding-left: 12px;
  border: 1px solid #ccc;
  border-radius: 4px; }

.widget-contact textarea {
  height: 120px; }

.widget-video a {
  color: #222; }

.widget-menu .widget-header {
  display: none; }

.widget-menu .widget-menu-selector {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  background: #eaa74f;
  padding-top: 18px;
  padding-bottom: 28px;
  margin-bottom: 48px; }
  .widget-menu .widget-menu-selector ul {
    width: 100%;
    max-width: 860px;
    margin-right: auto;
    margin-left: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    padding-right: 18px;
    padding-left: 18px; }
  .widget-menu .widget-menu-selector li {
    margin-right: 18px; }
  .widget-menu .widget-menu-selector li a {
    text-transform: uppercase;
    color: #fff;
    padding-bottom: 6px;
    border-bottom: 2px solid rgba(0, 0, 0, 0);
    text-decoration: none; }
  .widget-menu .widget-menu-selector li a.current {
    border-bottom: 2px solid #fff; }
  @media only screen and (max-width: 768px) {
    .widget-menu .widget-menu-selector {
      padding-top: 18px;
      padding-bottom: 18px;
      margin-bottom: 30px; }
      .widget-menu .widget-menu-selector ul {
        display: block; }
      .widget-menu .widget-menu-selector li {
        margin-bottom: 6px; }
        .widget-menu .widget-menu-selector li:last-child {
          margin-bottom: 0; }
      .widget-menu .widget-menu-selector li a {
        padding: 0; }
      .widget-menu .widget-menu-selector li a.current {
        font-weight: 600;
        border-bottom: 0; } }
.widget-menu .widget-menu-body {
  width: 100%;
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 18px;
  padding-left: 18px; }
  .widget-menu .widget-menu-body .widget-menu-title {
    font-size: 27px;
    font-weight: 700;
    line-height: 38px;
    margin-bottom: 18px; }
  .widget-menu .widget-menu-body .widget-menu-section {
    margin-bottom: 24px; }
    .widget-menu .widget-menu-body .widget-menu-section .widget-menu-section-title {
      font-size: 21px;
      font-weight: 700;
      line-height: 30px;
      margin-bottom: 18px; }
    .widget-menu .widget-menu-body .widget-menu-section:last-child {
      margin-bottom: 0; }
  .widget-menu .widget-menu-body .widget-menu-dish {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    background: #fff;
    padding-top: 12px;
    padding-right: 12px;
    padding-bottom: 12px;
    padding-left: 18px;
    margin-bottom: 24px;
    border: 1px solid #ccc;
    border-radius: 4px; }
    .widget-menu .widget-menu-body .widget-menu-dish:last-child {
      margin-bottom: 0; }
    .widget-menu .widget-menu-body .widget-menu-dish .widget-menu-dish-title,
    .widget-menu .widget-menu-body .widget-menu-dish .widget-menu-dish-description,
    .widget-menu .widget-menu-body .widget-menu-dish .widget-menu-dish-price {
      display: block;
      margin-bottom: 6px; }
    .widget-menu .widget-menu-body .widget-menu-dish .widget-menu-dish-price,
    .widget-menu .widget-menu-body .widget-menu-dish .widget-menu-dish-title {
      font-weight: 700; }
    .widget-menu .widget-menu-body .widget-menu-dish .widget-menu-dish-description p, .widget-menu .widget-menu-body .widget-menu-dish .widget-menu-dish-description ol, .widget-menu .widget-menu-body .widget-menu-dish .widget-menu-dish-description ul {
      margin-bottom: 6px; }
      .widget-menu .widget-menu-body .widget-menu-dish .widget-menu-dish-description p:last-child, .widget-menu .widget-menu-body .widget-menu-dish .widget-menu-dish-description ol:last-child, .widget-menu .widget-menu-body .widget-menu-dish .widget-menu-dish-description ul:last-child {
        margin-bottom: 0; }
    .widget-menu .widget-menu-body .widget-menu-dish .widget-menu-dish-description ol, .widget-menu .widget-menu-body .widget-menu-dish .widget-menu-dish-description ul {
      list-style-position: inside; }
    .widget-menu .widget-menu-body .widget-menu-dish .widget-menu-dish-description ol {
      list-style-type: decimal; }
    .widget-menu .widget-menu-body .widget-menu-dish .widget-menu-dish-description ul {
      list-style-type: square; }
    .widget-menu .widget-menu-body .widget-menu-dish .widget-menu-dish-left {
      width: calc(100% - (140px + 30px)); }
      .widget-menu .widget-menu-body .widget-menu-dish .widget-menu-dish-left .widget-menu-dish-options {
        display: block;
        padding: 12px 18px;
        border: 1px solid #ccc;
        border-radius: 4px;
        margin-top: 12px;
        margin-bottom: 6px; }
        .widget-menu .widget-menu-body .widget-menu-dish .widget-menu-dish-left .widget-menu-dish-options .widget-menu-dish-option {
          display: flex;
          flex-direction: row;
          flex-wrap: wrap;
          justify-content: flex-start;
          align-items: flex-start;
          margin-bottom: 12px; }
          .widget-menu .widget-menu-body .widget-menu-dish .widget-menu-dish-left .widget-menu-dish-options .widget-menu-dish-option .widget-menu-dish-option-title {
            font-weight: 700; }
          .widget-menu .widget-menu-body .widget-menu-dish .widget-menu-dish-left .widget-menu-dish-options .widget-menu-dish-option .widget-menu-dish-option-price {
            margin-left: auto; }
          .widget-menu .widget-menu-body .widget-menu-dish .widget-menu-dish-left .widget-menu-dish-options .widget-menu-dish-option:last-child {
            margin-bottom: 0; }
          @media only screen and (max-width: 768px) {
            .widget-menu .widget-menu-body .widget-menu-dish .widget-menu-dish-left .widget-menu-dish-options .widget-menu-dish-option {
              display: block; }
              .widget-menu .widget-menu-body .widget-menu-dish .widget-menu-dish-left .widget-menu-dish-options .widget-menu-dish-option .widget-menu-dish-price {
                margin-top: 6px; } }
      @media only screen and (max-width: 768px) {
        .widget-menu .widget-menu-body .widget-menu-dish .widget-menu-dish-left {
          width: calc(100% - (60px + 30px)); } }
    .widget-menu .widget-menu-body .widget-menu-dish .widget-menu-dish-right {
      width: 140px; }
      .widget-menu .widget-menu-body .widget-menu-dish .widget-menu-dish-right img {
        display: block; }
      @media only screen and (max-width: 768px) {
        .widget-menu .widget-menu-body .widget-menu-dish .widget-menu-dish-right {
          width: 60px; } }
  .widget-menu .widget-menu-body .widget-menu-dish.dish-without-img {
    padding: 12px 18px; }
    .widget-menu .widget-menu-body .widget-menu-dish.dish-without-img .widget-menu-dish-left {
      width: 100%; }

.widget-menu .widget-menu-embed-frame {
  width: 100%;
  height: 780px;
  margin-top: 6px; }

.site-content .widget-article .widget-header h2 {
  font-size: 38px;
  line-height: 49px; }

.widget-article {
  width: 70%;
  margin: 0 auto; }
  .widget-article .widget-article-list {
    margin-top: 24px; }
    .widget-article .widget-article-list article {
      padding-bottom: 18px;
      margin-bottom: 18px;
      border-bottom: 1px solid #ccc; }
      .widget-article .widget-article-list article:last-child {
        padding-bottom: 0;
        margin-bottom: 0;
        border-bottom: 0; }
      .widget-article .widget-article-list article h2 {
        font-size: 21px;
        line-height: 30px;
        font-weight: 700;
        margin-bottom: 6px; }
      .widget-article .widget-article-list article time {
        display: block; }
      .widget-article .widget-article-list article .excerpt {
        margin-top: 6px; }
    .widget-article .widget-article-list article:last-child {
      margin-bottom: 0; }
  .widget-article .widget-article-meta {
    margin-bottom: 30px; }
  .widget-article .widget-article-body {
    margin-bottom: 60px; }
    .widget-article .widget-article-body .wrapper {
      padding: 0;
      margin-bottom: 30px; }
    .widget-article .widget-article-body .span-6 {
      width: calc(50% - 15px); }
    .widget-article .widget-article-body .span-4 {
      width: calc(33.333% - 15px); }
    .widget-article .widget-article-body .widget-header {
      display: none; }
    .widget-article .widget-article-body .wrapper-fullscreen {
      margin-top: 0;
      margin-bottom: 30px; }
      .widget-article .widget-article-body .wrapper-fullscreen .widget-call-to-action {
        width: 100%;
        height: auto;
        padding-top: 25%;
        padding-bottom: 25%; }
        .widget-article .widget-article-body .wrapper-fullscreen .widget-call-to-action:before {
          background-attachment: local; }
    .widget-article .widget-article-body .span-6-center {
      width: 100%; }
      .widget-article .widget-article-body .span-6-center .widget-text {
        text-align: left; }
    .widget-article .widget-article-body .widget-gallery {
      margin-right: -12px;
      margin-left: -12px; }
    .widget-article .widget-article-body .widget-menu .widget-menu-selector {
      margin-bottom: 30px; }
    .widget-article .widget-article-body .widget-menu .widget-menu-body {
      width: 100%;
      max-width: 100%;
      padding: 0;
      margin: 0; }
  .widget-article .widget-article-pagination {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 24px;
    padding-bottom: 24px;
    margin-bottom: 60px;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc; }
    .widget-article .widget-article-pagination .next label,
    .widget-article .widget-article-pagination .prev label {
      display: block;
      font-weight: 700; }
    .widget-article .widget-article-pagination .next {
      margin-left: auto; }
  .widget-article .widget-article-comments h2 {
    font-size: 27px;
    font-weight: 700;
    line-height: 38px;
    margin-bottom: 18px; }
  .widget-article .widget-article-comments .comment li {
    list-style: none; }
  .widget-article .widget-article-comments .comment label {
    display: block;
    font-weight: 700;
    margin-bottom: 6px; }
  .widget-article .widget-article-comments .comment textarea {
    display: block;
    width: 100%;
    height: 120px;
    margin-bottom: 18px; }
  .widget-article .widget-article-comments .comment input[type="submit"] {
    margin: 0; }
  .widget-article .widget-article-comments .existing-comments {
    margin-top: 42px; }
    .widget-article .widget-article-comments .existing-comments li {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: flex-start;
      align-items: flex-start;
      margin-bottom: 24px; }
    .widget-article .widget-article-comments .existing-comments li:last-child {
      margin-bottom: 0; }
    .widget-article .widget-article-comments .existing-comments .avatar {
      width: 60px;
      border-radius: 50%;
      margin-right: 18px; }
    .widget-article .widget-article-comments .existing-comments .comment {
      width: calc(100% - 78px); }
    .widget-article .widget-article-comments .existing-comments .author {
      display: block;
      margin-bottom: 6px; }
      .widget-article .widget-article-comments .existing-comments .author span {
        font-weight: 700; }
  @media only screen and (max-width: 800px) {
    .widget-article {
      width: 100%; }
      .widget-article .widget-article-body {
        margin-bottom: 30px; }
        .widget-article .widget-article-body .span-6 {
          width: 100%; }
        .widget-article .widget-article-body .column + .column {
          margin-top: 30px; }
        .widget-article .widget-article-body .widget-gallery .widget-gallery-body {
          padding-right: 12px;
          padding-left: 12px; }
      .widget-article .widget-article-pagination {
        display: block;
        margin-bottom: 30px; }
        .widget-article .widget-article-pagination li {
          margin-bottom: 12px; }
        .widget-article .widget-article-pagination li:last-child {
          margin-bottom: 0; }
      .widget-article .widget-article-comments .existing-comments .avatar {
        width: 42px; } }
/* Preload images */
body:after {
  display: none; }

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none; }

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal; }

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit; }

.lightbox a img {
  border: none; }

.lb-outerContainer {
  position: relative;
  background-color: white;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto; }

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both; }

.lb-container {
  padding: 4px; }

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0; }

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(../images/loading.gif) no-repeat; }

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10; }

.lb-container > .nav {
  left: 0; }

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%; }

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both; }

.lb-data {
  padding: 0 4px;
  color: #ccc; }

.lb-data .lb-details {
  display: none;
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em; }

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em; }

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999; }

.lb-data .lb-closeContainer {
  position: fixed;
  top: 18px;
  right: 18px; }
  @media only screen and (max-width: 768px) {
    .lb-data .lb-closeContainer {
      top: 8px;
      right: 8px; } }
.lb-data .lb-close {
  display: block;
  float: right;
  width: 18px;
  height: 18px;
  background: url(/images/lightbox/close.png) top right no-repeat;
  background-size: 18px 18px;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s; }

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1; }
