/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

nav.inispiration-filters li.parent{
    cursor: pointer;
    color: #555555;
}
.insp-nav li a {
      color: #555555;
      margin-right: 40px;
      font-weight: 300;
}
.insp-nav li a:hover {
      color: #232323;
}
.inspiration-body h4 {
  text-transform: uppercase;
  padding: 40px 0;
  font-size: 16px;
}
nav.inispiration-filters  > ul {
    margin: 0;
    display: flex;
    justify-content: space-between;
}

nav.inispiration-filters > ul li {
    list-style: none;
    position: relative;
    padding: 5px 0 0 0;
}

nav.inispiration-filters  ul.submenu {
    margin: 0;
    position: absolute;
    width: 200px;
    z-index: 999;
    background-color: rgba(255,255,255, .8);
    padding: 8px;
    display: none;
}

nav.inispiration-filters input[type=checkbox] {
    cursor:pointer;
    position: relative;
        content: "";
         display: block;
         width: 20px;
         height: 20px;
         top: 0;
         left: 0;
         outline: 1px solid #CCC;
         border-radius: 0px;
         background-color: white;
         -moz-appearance:none;
         -webkit-appearance:none;
         -o-appearance:none;
}

nav.inispiration-filters input[type=checkbox]:checked::before {
      content: "";
    position: absolute;
       display: block;
       width: 5px;
       height: 10px;
       border: solid black;
       border-width: 0 2px 2px 0;
       -webkit-transform: rotate(45deg);
       -ms-transform: rotate(45deg);
       transform: rotate(45deg);
       top: 2px;
       left: 6px;
}
.cancel-filters {
    font-weight: 300;
    color: #232323;
    float: right;
    padding: 0px 0;
}
nav.inispiration-filters label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-transform: none;
    font-weight: 300;
}
.product-box-background {
    z-index: -100;
    width: 100vw;
    height: 100vh;
    position: fixed;
    cursor: pointer;
    background-color: rgba(255,255,255,0.8)
}

.product-box-loader {
    position: fixed;
    z-index: 0;
    width: 50vw;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    text-align: center;
}
.product-box {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    z-index: 0;
    width: 50vw;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    border: 1px solid #EAEAEA;
    transition: visibility 0s, opacity 0.3s ease-in;
}

.box-show {
    opacity: 1;
    visibility: visible;
}

.product-box img {
    width: 100%;
}
.product-title {
  font-weight: 300;
  color: #232323;
  padding-right: 10px
}
.product-share i {
  color: #322323;
  padding-left: 10px;
}
.product-share i:hover {
  color: #CCCCCC
}
.product-box .product-box-footer {
    padding: 8px;
    display: flex;
    justify-content: space-between;
}

.stop-scroll {
    margin: 0; height: 100%; overflow: hidden
}

nav.inispiration-filters ul.submenu {
  width: 200px;
  padding: 8px 15px;
}
.inspiration-body p {
  font-size: 12px;
  color: #232323;
  font-weight: 300;
}

.inspiration-body {
    min-height: 60vh;
    margin-bottom: 20px;
}
.inspiration-body .col {
    padding: 6px;
}
.fullscreen{
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: translate(0%, 0%);
}
.fullscreen .product-image {
    text-align: center;
}
.fullscreen .product-image img{
    width: auto;
    height: 88vh;
}
nav.inispiration-filters > .filtri {
    display: none;
}
@media only screen and (max-width: 768px) {
    nav.inispiration-filters > .insp-nav {
        display: none;
    }
    nav.inispiration-filters > ul {
        flex-wrap: wrap;
    }
    nav.inispiration-filters > ul li {
        flex: 1 100%;
    }
    nav.inispiration-filters ul.submenu {
        display: block;
        position: relative;
        width: 100%;
        display: none;
    }
    nav.inispiration-filters li.parent span {
        float: right;
    }
    nav.inispiration-filters > .filtri {
        display: block;
    }
}