/*!
Theme Name: Pixelprint
Author: NAVINMEDIA OÜ
Author URI: http://www.navin.ee
Description: Description
Version: 1.0.0
License URI: LICENSE
Text Domain: pixelprint */

/* Main */

/* Fonts */

@font-face {
  font-family: "Arial";
  src: url(../fonts/Arial.ttf) format("truetype");
}

@font-face {
  font-family: "LeagueSpartan";
  src: url(../fonts/LeagueSpartan-Bold.otf) format("opentype");
}

:root {
  --pc: #f15b27;
  --sc: #010101;
  --fc: #989898;
  --red: #ed1c24;
  --white: #ffffff;
}

html {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #fff;
}

a {
  border-color: transparent;
}

a:hover {
  text-decoration: none;
}

img {
  border-style: none;
  height: auto;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "LeagueSpartan";
  font-weight: bold;
}

#content {
  min-height: 73.2vh;
}

/* Navbar */

#masthead {
  height: 138px;
  width: 100%;
}

#primary-menu {
  float: right;
  font-family: "LeagueSpartan";
  margin: auto;
}

#primary-menu li {
  display: inline-flex;
  padding: 0 10px;
  margin-top: 5px;
}

#primary-menu a {
  color: var(--white);
}

#primary-menu a:hover {
  color: var(--pc);
}

.menu-primary-menu-container {
  width: 100%;
}

.menu-primary-menu-fin-container {
  width: 100%;
}

#site-navigation {
  background: var(--sc);
  height: 46px;
}

#site-navigation .container {
  height: 46px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
}

#site-navigation h2 {
  font-size: 18px;
  color: var(--white);
  position: absolute;
  letter-spacing: 0.1rem;
  height: 46px;
  margin: 0;
}

#site-navigation h2 span.tel:hover,
#site-navigation h2 span.phone-icon:hover {
  cursor: pointer;
}

#site-navigation h2 span.tel {
  color: var(--pc);
  font-size: 20px;
  padding-left: 5px;
}
#site-navigation h2 span.phone-icon {
  content: url(../img/telephone.svg);
  height: 30px;
  width: 30px;
  transform: translateY(20%);
}

.sidebar-mobile {
  width: 100%;
  height: 60px;
  background: var(--sc);
  display: none;
}

.sidebar-btn {
  background-color: transparent;
  cursor: pointer;
  padding: 10px 20px;
  border: none;
  font-size: 15px;
  position: absolute;
  z-index: 1;
  color: var(--white);
}

.sidebar-btn:active,
.sidebar-btn:focus {
  outline: none;
  -moz-outline-style: none;
}

.sidebar {
  width: 212px;
}

button > h5 {
  margin-top: 4px !important;
}

.mobile-menu-text {
  height: 60px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-text h6 {
  color: var(--white);
  font-size: 26px;
  margin: 0;
  text-transform: uppercase;
}

#nav-icon {
  width: 40px;
  height: 37px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

#nav-icon span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: var(--white);
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

#nav-icon span:nth-child(1) {
  top: 4px;
}

#nav-icon span:nth-child(2),
#nav-icon span:nth-child(3) {
  top: 18px;
}

#nav-icon span:nth-child(4) {
  top: 32px;
}

#nav-icon.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

#nav-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav-icon.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

/* Search bar */

.search-form {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  transform: translateX(300%);
}

.search-form label {
  margin: auto 0;
}

.screen-reader-text,
input.search-field::-webkit-search-cancel-button {
  display: none;
}

input.search-field,
input.search-submit {
  border: none;
  outline: none;
  margin: 0 5px;
  height: 23px;
}

input.search-field {
  width: 141px;
  font-family: "Arial";
}

input.search-submit {
  width: 37px;
  background: #b4b4b4;
  color: transparent;
  background-image: url(../img/search.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px;
}

input.search-submit:hover {
  transform: scale(1.1);
}

input.search-submit:before {
  content: "";
  width: 30px;
  height: 30px;
  display: block;
}

@media (max-width: 1200px) {
  .search-form {
    display: none;
  }
  .fp-banner {
    height: 545px !important;
  }
}

@media (max-width: 992px) {
  .menu-primary-menu-container {
    display: none;
  }
  .menu-primary-menu-fin-container {
    display: none;
  }
  .fp-banner {
    height: 410px !important;
    margin-top: 70px;
  }
  .site-branding img {
    height: 100px;
  }
}

@media (max-width: 768px) {
  #masthead {
    height: 184px;
  }
  #site-navigation h2 {
    font-size: 16px;
  }
  #site-navigation,
  #site-navigation .container {
    height: 92px;
    padding: 0;
  }
  .sidebar-mobile {
    display: block;
  }
  .sidebar {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }
  .sidebar,
  #menu-page-menu li {
    width: 100% !important;
  }

  #menu-page-menu-fin li {
    width: 100% !important;
  }
  .fp-banner {
    height: 310px !important;
    background-size: auto 310px !important;
  }
  .fp-banner {
    margin-top: 51px;
  }
}

@media (max-width: 576px) {
  #site-navigation h2 {
    font-size: 18px;
    text-align: center;
    line-height: 30px;
    height: 76px;
    padding: 0 10px;
  }
  #site-navigation h2 span.phone-icon {
    width: 30px;
    height: 30px;
  }
  #site-navigation h2 span.tel {
    font-size: 24px;
  }
}

/* ======================== */
/* =======FRONT PAGE======= */
/* ======================== */

.white-bg {
  background: var(--white);
  /*max-width: 100%;*/
  overflow: hidden;
}

.fp-banner {
  background: url(../img/tooted.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
  height: 600px;
  width: 100%;
  border-bottom: 5px solid var(--pc);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(20%, 1fr));
  margin: 0 -15px;
  border-left: 1px solid var(--fc);
}

.menu-grid-item {
  position: relative;
  box-sizing: border-box;
  border-right: 1px solid var(--fc);
  border-bottom: 1px solid var(--fc);
}

.menu-grid-item::before {
  content: "";
  display: block;
  padding-top: 100%;
}

.menu-grid-item > a {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.menu-thumbnail {
  height: calc(100% - 45px);
  text-align: center;
}

.menu-thumbnail > img {
  max-height: 100%;
  margin: auto;
}

#post-38 > div:nth-child(21) > div > div > p {
  text-align: center;
  padding: 25px 0;
}

.wp-block-columns.has-3-columns {
  width: 100%;
  justify-content: center;
}

.wp-block-columns.has-3-columns > .wp-block-column:nth-child(1) {
  margin: 0;
}

.menu-title {
  color: var(--pc);
  font-size: 1rem;
  font-family: "LeagueSpartan";
  text-transform: uppercase;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
}

.cta {
  height: 450px;
  width: 100%;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cta,
.cta-btn {
  text-transform: uppercase;
  text-align: center;
}
.cta h1 {
  color: var(--pc);
  font-size: 40px;
}

.block-seperator-front {
  background: #fff;
  -webkit-box-shadow: 0px 3px 43px 0px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 3px 43px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 3px 43px 0px rgba(0, 0, 0, 0.16);
  display: flex;
  justify-content: center;
  padding: 25px;
  position: relative;
  z-index: 1;
  padding-bottom: 40px;
}

.block-seperator-front img {
  height: auto;
  width: 100%;
  max-width: 100px;
  display: flex;
  margin-left: auto;
  margin-right: auto;
}

.block-seperator-front h6 {
  text-align: center;
  padding-top: 25px;
}

.block-seperator-front i {
  position: absolute;
  right: 0;
  top: 20%;
  font-size: 50px;
  color: var(--pc);
}

@media (max-width: 768px) {
  .block-seperator-front i {
    display: none;
  }
}

.veel-tehtuid {
  margin-bottom: 100px;
  margin-top: 15px;
}

.cta-btn {
  height: 42px;
  width: 175px;
  background: var(--pc);
  border: none;
  color: var(--white);
  font-family: "LeagueSpartan";
  font-size: 31px;
}

.cta-btn,
.cta-btn:active,
.cta-btn:focus,
.kusi-btn,
.kusi-btn:active,
.kusi-btn:focus {
  outline: none;
}

/* Meta box */

.main-meta-box {
  background: var(--red);
  position: absolute;
  top: 0;
  z-index: 1;
}

.main-meta-box h3 {
  padding: 10px;
  font-size: 14px;
  color: var(--white);
  margin: 0;
}

@media (max-width: 992px) {
  .menu-title {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .menu-grid {
    grid-template-columns: repeat(auto-fill, minmax(50%, 1fr));
  }
}

@media (max-width: 576px) {
  .fp-banner {
    height: 210px;
  }
  .cta {
    height: auto;
    margin: 15% 0;
  }
  .cta h1 {
    font-size: 32px;
  }
  .cta-btn {
    height: 65px;
    width: 190px;
    font-size: 24px;
  }
}

/* ======================== */
/* =========SIDEBAR======== */
/* ======================== */

.menu-page-menu-container ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  text-align: center;
  background: var(--white);
}

.menu-page-menu-fin-container ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  text-align: center;
  background: var(--white);
}

.menu-page-menu-container ul li {
  height: 40px;
  border-bottom: 1px solid #f3f3f3;
}

.menu-page-menu-fin-container ul li {
  height: 40px;
  border-bottom: 1px solid #f3f3f3;
}

.menu-page-menu-container ul li a {
  color: var(--fc);
  font-family: "LeagueSpartan";
  font-size: 17px;
  text-decoration: none;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
}

.menu-page-menu-fin-container ul li a {
  color: var(--fc);
  font-family: "LeagueSpartan";
  font-size: 17px;
  text-decoration: none;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
}

.menu-page-menu-container ul li:hover,
.menu-page-menu-container ul li a:hover {
  background: var(--pc);
  color: var(--white);
}

.menu-page-menu-fin-container ul li:hover,
.menu-page-menu-fin-container ul li a:hover {
  background: var(--pc);
  color: var(--white);
}

.aktiivne {
  background: var(--pc);
  color: var(--white) !important;
}

/* ======================== */
/* =========POSTITUS======= */
/* ======================== */

article {
  border-left: 5px solid var(--pc);
}

.page-title,
.category-title {
  font-family: "LeagueSpartan";
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  color: var(--white);
}

.category-title {
  height: 88px;
  width: 100%;
  background: var(--pc);
  font-size: 36px;
}
.page-title {
  background: var(--sc);
  height: 45px;
  width: 100%;
  margin: 0;
  font-size: 22px;
  text-align: center;
  position: relative;
}

i.fas.fa-chevron-down,
i.fas.fa-chevron-up {
  font-size: 32px;
  padding-left: 25px;
  position: absolute;
  right: 20px;
  bottom: 8.5px;
}

@media (min-width: 576px) {
  i.fas.fa-chevron-down,
  i.fas.fa-chevron-up {
    display: none;
  }
}

@media (max-width: 576px) {
  .tooted-content > div > div > img {
    width: auto;
    max-height: 375px;
    display: block;
    margin: auto;
  }
  article {
    border-left: none;
  }
  .tooted-content > div > div:nth-child(2) {
    padding: 35px;
  }
  .category-title {
    font-size: 30px;
  }
  .page-title {
    font-size: 20px;
  }
}

/* ======================== */
/* =========TOOTED========= */
/* ======================== */

div.tooted-content {
  font-family: "Arial";
  color: var(--fc);
}

div.tooted-content > div > .col-8 {
  padding: 30px 20px;
}

.tooted-content h3 {
  font-size: 18px;
  color: var(--pc);
  text-transform: uppercase;
}

.tooted-content ul {
  list-style-type: none;
  padding: 0;
}

.tooted-content > div > div:nth-child(1) {
  padding: 0;
}

#main > div > div > div.col {
  padding: 0;
}

/* ======================== */
/* ==========LIPUD========= */
/* ======================== */

/* TABLE */

table {
  border-top: 1px solid var(--fc);
  border-left: 1px solid var(--fc);
}

table td {
  border-right: 1px solid var(--fc);
  border-bottom: 1px solid var(--fc);
  text-align: center;
  padding: 5px 15px;
  font-size: 14px;
  font-family: "LeagueSpartan";
}

table tbody tr:first-child td:not(:first-child),
table tbody tr:not(:first-child) td:first-child {
  background: var(--fc);
  color: var(--white);
}

table tbody tr:not(:first-child) td:nth-child(2) {
  color: var(--pc);
}

/* ======================== */
/* =========TRÜKISED======= */
/* ======================== */

.tooted-content h4 {
  color: var(--pc);
  font-size: 16px;
  font-family: "Arial";
}

.tooted-content p {
  font-size: 14px;
}

.inline {
  margin-bottom: 15px;
}

.tooted-content .inline h4,
.tooted-content .inline p {
  display: inline;
}

/* 3 COLUMN */

.wp-block-columns.has-3-columns > div > figure {
  margin-top: 20px;
}

.wp-block-columns.has-3-columns > div > figure > img {
  margin-left: auto;
  margin-right: auto;
  display: block;
  height: 80px;
  width: auto;
}

.wp-block-columns.has-3-columns > div > h3,
.wp-block-columns.has-3-columns > div > p {
  text-align: center;
}

.wp-block-columns.has-3-columns > div > p {
  font-size: 16px;
}

@media (min-width: 1199.98px) {
  .wp-block-gallery .blocks-gallery-item {
    flex-grow: 0;
  }
}

/* Meta box */

.meta-box {
  width: 100%;
  height: auto;
  max-height: 120px;
  background: var(--red);
  margin: 20px 0;
  padding: 10px;
}

.meta-box h3,
.meta-box h4,
.meta-box h5 {
  color: var(--white);
  font-family: "LeagueSpartan";
  text-align: center;
  margin-bottom: 4px;
}

.meta-box h3 {
  font-size: 29px;
  text-transform: lowercase;
}

.meta-box h4 {
  font-size: 15px;
  text-transform: uppercase;
}

.meta-box h5 {
  font-size: 10px;
}

/* ======================== */
/* ======PVC MATERJALID==== */
/* ======================== */

.wp-block-gallery .blocks-gallery-item figcaption {
  position: absolute;
  bottom: none;
  width: 100%;
  top: 0;
  max-height: 100%;
  overflow: auto;
  padding: 0;
  color: var(--fc);
  text-align: left;
  font-size: 12px;
  background: none;
  font-family: "LeagueSpartan";
  transform: translateY(-5%);
}

.blocks-gallery-item figure {
  padding: 15px 0;
  width: 130px;
  height: 130px;
}

.wp-block-gallery.is-cropped .blocks-gallery-item img {
  object-fit: fill;
}

/* ======================== */
/* =========TELGID======= */
/* ======================== */

/* TABLE */

table.telgid-table > tbody > tr:nth-child(1) {
  background: var(--fc);
  color: var(--white);
  text-transform: uppercase;
}

table.telgid-table tbody tr:not(:first-child) td:nth-child(2) {
  color: var(--fc);
}

table.telgid-table > tbody > tr:not(:first-child) td:nth-child(1) {
  color: var(--pc);
  background: var(--white);
}

/* ======================== */
/* =====ESITLUSTARVIKUD==== */
/* ======================== */

/* Start */
/* Spetsiifiline just kindlale postitusele */

#post-38 > div:nth-child(21) > div > div > div.col-12 {
  padding: 0;
}

#post-38 > div:nth-child(21) > div > div > div.col-12 > p {
  margin: 50px;
  text-align: center;
}

/* End */

/* ======================== */
/* ========TRÜKISED======= */
/* ======================== */

/* Start */
/* Spetsiifiline just kindlale postitusele */

#post-27 > div:nth-child(15) > div > div > div.col-12 > div {
  flex-wrap: nowrap;
}

/* End */

.kusi-btn {
  background: var(--pc);
  height: 45px;
  width: 130px;
  color: var(--white);
  font-family: "LeagueSpartan";
  font-size: 12px;
  border: none;
  border-radius: 0;
  display: flex;
  justify-content: center;
  margin: 50px auto;
  text-transform: uppercase;
}

/* Kontakt page */

.contact-page-heading,
.firmast-page-heading {
  background: var(--pc);
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  padding: 20px 0;
}

.contact-page-container > .container,
.firmast-page-container > .container {
  padding: 0;
  background: var(--white);
}

form input,
form textarea {
  width: 100%;
  padding: 10px;
  font-family: "Arial";
  color: var(--sc);
  border: none;
  background: #f1f1f1;
}

input:focus,
input:active,
textarea:active,
textarea:focus {
  outline: none;
}

textarea {
  resize: none;
}

.wpcf7-submit {
  font-family: "LeagueSpartan";
  color: var(--white);
  background: var(--pc);
}

div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing {
  border: 2px solid var(--pc);
}

span.wpcf7-not-valid-tip {
  color: var(--pc);
}

ul#contact-info {
  margin: 0;
  padding: 0;
}

ul#contact-info > li {
  list-style-type: none;
}

ul#contact-info > li > img {
  width: 20px;
  margin-bottom: 0.3em;
}

ul#contact-info > li > a {
  color: var(--pc);
  font-family: "LeagueSpartan";
  padding: 0 15px;
  line-height: 30px;
}

/* Firmast page */

.firmast-content {
  padding: 50px 0;
  height: auto;
}

.firmast-content p {
  text-align: center;
  width: 75%;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */

#colophon {
  position: relative;
}

.footer-container .cta-btn {
  width: auto;
  height: auto;
}

.footer-container {
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-box-shadow: 0px 3px 43px 0px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 3px 43px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 3px 43px 0px rgba(0, 0, 0, 0.16);
}

.footer-container h3 {
  margin: 0;
  padding: 15px;
  text-align: center;
  font-size: 16px;
}

@media (max-width: 375px) {
  table td {
    padding: 5px 10px;
  }
  table {
    margin: 10px 0;
  }
}

/* Search page */

nav.navigation.posts-navigation {
  display: none;
}

.search-page .entry-title {
  background: var(--pc);
  padding: 10px;
}

.search-page .entry-title {
  margin: 0;
}

.search-page .entry-title a {
  color: var(--white);
  padding: 10px;
}

.search-page > .tooted-content > .container {
  background: var(--white);
}

.search-summary > .entry-summary > p {
  padding-right: 5%;
}

.search-page .tooted-content > .container > .row .col-8 {
  padding: 20px 0;
}

.search-page .tooted-content > .container > .row .col-4 {
  padding: 0;
  padding-right: 20px;
}
.search-page > .container {
  padding: 0;
}

@media (max-width: 400px) {
  .search-page .entry-title {
    font-size: 24px;
  }
}

@media (max-width: 578px) {
  .search-page > .tooted-content > div > div > div > .meta-box {
    display: none;
  }
}

.displayNone {
  display: none;
}

.prev,
.next {
  background: none;
  border: none;
  color: #121212;
  padding: 10px 20px;
  position: absolute;
  top: 50%;
}

@media (max-width: 578px) {
  .prev,
  .next {
    display: none !important;
  }
  .no-pad {
    padding: 0 !important;
  }
}

.next {
  right: 0;
}

.prev i,
.next i {
  font-size: 28px;
}

.prev:focus,
.prev:active,
.next:focus,
.next:active {
  outline: none;
}

.blocks-gallery-item figure {
  width: 100%;
}

.wp-block-gallery .blocks-gallery-item figure {
  justify-content: center;
}

div.portfoolio-block > div {
  background: var(--white);
  color: #121212;
  margin-top: 25px;
}

.portfoolio-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}

.portfoolio-heading h1 {
  margin: 0;
  line-height: unset;
  font-family: "LeagueSpartan";
  font-size: 24px;
  text-transform: uppercase;
}

.slick-buttons {
  margin-left: auto;
  margin-right: auto;
}

.slick-track {
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.wp-block-gallery .blocks-gallery-item {
  margin: 0;
}

.tooted-content > .row > p {
  margin: auto;
}

.slick .wp-block-gallery .blocks-gallery-item figcaption {
  top: auto;
  display: flex;
  justify-content: center;
  transform: translateY(65%);
  color: #0c0d0d;
  visibility: hidden;
  font-family: "Arial";
}

.slick .wp-block-gallery .blocks-gallery-item figure > img {
  height: 300px;
  object-fit: cover;
  padding: 0 2.5px;
}

.slick-slide {
  outline: none;
}

.slick-list,
.draggable {
  min-height: 360px;
  width: 95%;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (max-width: 578px) {
  .slick-list,
  .draggable {
    width: 100%;
  }
}

.visible {
  visibility: visible !important;
}

#slb_viewer_wrap
  .slb_theme_slb_default
  .slb_content
  .slb_prev
  .slb_template_tag,
[dir="rtl"]
  #slb_viewer_wrap
  .slb_theme_slb_default
  .slb_content
  .slb_next
  .slb_template_tag {
  background-image: url(http://pixelprint.ee/wp-content/uploads/2019/05/left-arrow.svg) !important;
}

#slb_viewer_wrap
  .slb_theme_slb_default
  .slb_content
  .slb_next
  .slb_template_tag,
[dir="rtl"]
  #slb_viewer_wrap
  .slb_theme_slb_default
  .slb_content
  .slb_prev
  .slb_template_tag {
  background-image: url(http://pixelprint.ee/wp-content/uploads/2019/05/right-arrow.svg) !important;
}

#slb_viewer_wrap
  .slb_theme_slb_default
  .slb_content
  .slb_next
  .slb_template_tag,
#slb_viewer_wrap
  .slb_theme_slb_default
  .slb_content
  .slb_prev
  .slb_template_tag {
  width: 4% !important;
}

.slb_data_content {
  align-items: center;
  justify-content: center;
  display: flex;
  margin-top: 10px;
}

#slb_viewer_wrap .slb_theme_slb_default .slb_data_title {
  font-family: "Arial" !important;
}

#slb_viewer_wrap
  .slb_theme_slb_default
  .slb_controls
  .slb_slideshow
  .slb_template_tag,
.slb_close {
  display: none !important;
}

@media (min-width: 992px) {
  #masthead > div > div > div.col > figure > img {
    height: 92px;
  }
}

#masthead > div > div > div.col > figure {
  height: 100%;
  margin: 0;
  padding-left: 18px;
}

#masthead > div > div > div.col > figure > img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

@media (max-width: 768px) {
  #masthead > div > div > div.col > figure {
    display: none;
  }
}

.menu-grid-item:nth-child(5) img {
  padding: 15px;
}

#colophon {
  position: fixed;
  bottom: 0;
  width: 100%;
}
#main {
  padding-bottom: 150px;
}

.slick .slick-slider {
  max-width: 100% !important;
}
