@import url('normalize.css');

@font-face {
    font-family: 'heavy'; 
    src: url('../fonts/derksenfact-h.eot');
    src: url('../fonts/derksenfact-h.eot?#iefix') format('embedded-opentype'),
         url('../fonts/derksenfact-h.woff2') format('woff2'),
         url('../fonts/derksenfact-h.woff') format('woff'),
         url('../fonts/derksenfact-h.ttf') format('truetype'),
         url('../fonts/derksenfact-h.svg#museo') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'medium'; 
    src: url('../fonts/derksenfact-m.eot');
    src: url('../fonts/derksenfact-m.eot?#iefix') format('embedded-opentype'),
         url('../fonts/derksenfact-m.woff2') format('woff2'),
         url('../fonts/derksenfact-m.woff') format('woff'),
         url('../fonts/derksenfact-m.ttf') format('truetype'),
         url('../fonts/derksenfact-m.svg#museo') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'regular'; 
    src: url('../fonts/derksenfact-r.eot');
    src: url('../fonts/derksenfact-r.eot?#iefix') format('embedded-opentype'),
         url('../fonts/derksenfact-r.woff2') format('woff2'),
         url('../fonts/derksenfact-r.woff') format('woff'),
         url('../fonts/derksenfact-r.ttf') format('truetype'),
         url('../fonts/derksenfact-r.svg#museo') format('svg');
    font-weight: normal;
    font-style: normal;
}

body, html{
  font-size:16px;
  background-color:white;
  font-family: 'regular', sans-serif;
  color:#3A342C;
  letter-spacing: 1px;
}

*{
  box-sizing:border-box;
}

.flex{
  display: -webkit-box !important;
  display: -moz-box !important;
  display: -ms-flexbox !important;
  display: -webkit-flex !important;
  display:flex !important;
}

::-moz-selection { background: #BE1F2C; color:white;}
::selection { background: #BE1F2C; color:white;}

header{
  width:100%;
  padding:1em;
  position: fixed;
  top:0;
  left:0;
  right:0;
  z-index:800;
  background-color: white;
  font-size:.7em;
  -webkit-box-align: center;
            -webkit-align-items: center;
                -ms-flex-align: center;
                    align-items: center;
  -webkit-transition: all 400ms ease-out;
    -moz-transition:all 400ms ease-out;
    -ms-transition:all 400ms ease-out;
    -o-transition:all 400ms ease-out;
    transition: all 400ms ease-out;
}

#checkout header{
  background-color: white;
}


header > div{
  width:50%;
  height:100%;
}

header div{
  display: inline-block;
  position: relative;
}

header > div:last-of-type{
  text-align: right;
  position: relative;
}
 header > div:last-of-type > *{
  margin-right:1.6em;
 }

header div.lang, header div.account{
    margin-right:0;
    cursor: pointer;
 }

 header a{
  text-decoration: none;
  color:inherit;
 }

 header > div:last-of-type > *{
  z-index:10;
}

header > div:last-of-type{
  width:70%;
}
header > div:last-of-type > *:nth-child(2), header > div:last-of-type > *:nth-child(3){
  z-index:15;
}

header .lang .arrow, header .account .arrow{
  display: inline-block;
  position: relative;
  top:0;
  right:0;
  width:.6em;
  height:.6em;
  margin:0 .45em .2em .45em;
}

header .search > a{
  display: inline-block;
  width:1.3em;
  height:1.1em;
  background-image: url(../images/search.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 100%;
}

header:not(.init) .search > a:hover{
  background-image: url(../images/search-over.svg);
}

header .search ~.tooltip{
  left:0;
  top:2.3em;
  padding:1.7em .5em;
}

header .search ~.tooltip input{
  border:none;
  border-bottom: 1px solid #BE1F2C;
  color:#BE1F2C;
  font-size: 1.5em;

}

 a{
  text-decoration: none;
  color:inherit;
 }

 a:visited{
  color:inherit;
 }

 .note a{
  color:#666;
 }

 .note a:hover{
  color:#BE1F2C;
  text-decoration: underline;
 }

 span.red{
  color:#BE1F2C;
 }

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

 #logo > a{
  display: inline-block;
  width:5em;
  height:5em;
  background-image:url(../images/logo.png);
  background-size: cover;
 }

nav{
  background-color: #fff;
  width:25em;
  height:100vh;
  font-family: 'medium', sans-serif;
  font-size: .85em;
  color:#4a4740;
  position: fixed;
  top:0;
  left:-50em;
  z-index:900;
   -webkit-transition: all 200ms ease-out;
    -moz-transition:all 200ms ease-out;
    -ms-transition:all 200ms ease-out;
    -o-transition:all 200ms ease-out;
    transition: all 200ms ease-out;
}

nav.open{
  left:0px;
    -webkit-box-shadow: 2px 0px 8px -2px rgba(0,0,0,0.15);
    -moz-box-shadow: 2px 0px 8px -2px rgba(0,0,0,0.15);
    box-shadow: 2px 0px 8px -2px rgba(0,0,0,0.15);
    -webkit-transition: all 200ms ease-out;
    -moz-transition:all 200ms ease-out;
    -ms-transition:all 200ms ease-out;
    -o-transition:all 200ms ease-out;
    transition: all 200ms ease-out;
}

nav > div:first-of-type{
  height:6em;
}

nav > ul{
  height:calc(100% - 6em);
  overflow-y:auto;
}

nav > ul > li {
  border-bottom:.5px solid #e8e8e7;
}

/*nav > ul > li:first-of-type {
  border-top:.5px solid #e8e8e7;
}*/

nav ul, footer ul{
  list-style: none;
  margin:0;
  padding:0;
  display:block;
  width:auto;
}

nav ul li{
  display: block;
  width:auto;
  position: relative;
}

nav a, footer a{
  display: inline-block;
  text-decoration: none;
  color:inherit;
}

nav a{
  display: inline-block;
}

nav ul li a:hover, header a:hover, nav .option.active, header .lang.active, header .account.active, header #cart:hover, header input:hover{
  color:#BE1F2C;
}

nav > ul > li > a {
  text-transform: uppercase;
  padding:1.5em 2em;
  position: relative;
  width:100%;
}

nav > ul > li > ul > li > a{
  padding:.8em 4em .4em 4em;
  font-size: .9em;
}

nav > ul > li > ul{
  padding-bottom: 1em;
}

#cart, .close{
  cursor: pointer;
}

#cart-panel{
  background-color: #fff;
  width:30em;
  height:100vh;
  font-family: 'medium', sans-serif;
  font-size: 1em;
  color:#4a4740;
  position: fixed;
  top:0;
  right:-50em;
  z-index:999;
   -webkit-transition: all 200ms ease-out;
    -moz-transition:all 200ms ease-out;
    -ms-transition:all 200ms ease-out;
    -o-transition:all 200ms ease-out;
    transition: all 200ms ease-out;
}

#cart-panel.open{
  right:0px;
    -webkit-box-shadow: -2px 0px 8px -2px rgba(0,0,0,0.15);
    -moz-box-shadow: -2px 0px 8px -2px rgba(0,0,0,0.15);
    box-shadow: -2px 0px 8px -2px rgba(0,0,0,0.15);
    -webkit-transition: all 200ms ease-out;
    -moz-transition:all 200ms ease-out;
    -ms-transition:all 200ms ease-out;
    -o-transition:all 200ms ease-out;
    transition: all 200ms ease-out;
}

#cart-panel .margin{
  padding:1.5em 1.5em 0 1.5em;
  height:100%;
}

#cart-panel h2, .summary h2{
  text-transform: uppercase;
  margin:.7em 0 1.5em 0;
  font-size: 1.1em;
}

#cart-panel h3, .summary h3{
  font-size: .65em;
  text-transform: uppercase;
  margin-top: .2em;
}

#cart-items {
  position: relative;
  max-height:calc(100vh - 5.5em);
  overflow-y:auto;
}

#cart-items .item:first-of-type{
  border-top:1px solid #e8e8e7;
}

#cart-items .item:last-of-type, #cart-items .item.cost{
  border-top:none;
  -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 1em;
}

#cart-items .item:last-of-type > *, #cart-items .item.cost > *{
  width:auto;
  margin-top: 0 !important;
}

#cart-panel .item, .summary .item{
  padding:1em 0;
  border-bottom:1px solid #e8e8e7;
}

#cart-panel .item.noborder, .summary .item.noborder{
  padding:1em 0 0 0;
  border-bottom:none;
}

#cart-items > div:last-of-type > *:not(.item){
  display: inline-block;
  width:100%;
  text-align: center;
}

#cart-items > div:last-of-type .button{
  margin-top:.7em;
}

#cart-items .item .price{
  margin-top: .8em;
}

#cart-items .item > div:first-of-type{
  width:35%;
  height:100%;
  margin-right:1em;
}

#cart-items .item > div:first-of-type figure{
  margin:0;
  width:100%;
  padding-top: 80%;
  background-color: gray;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#cart-items .item > div:last-of-type{
  width: 100%;
}

#cart-items .selected-material > div{
  width:1.5em;
  height:1.5em;
  border:1px solid #e8e8e7;
  display:inline-block;
}

#cart-items .selected-material > div:not(:last-of-type){
  margin-right:.3em;
}

#cart-items > .item:nth-child(1) .selected-material > div{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.number-input{
  text-align: center;
  border:1px solid #e8e8e7;
  padding:.7em 0;
  width:100%;
  font-size: .8em;
}

.number-input input{
  text-align: center;
  border: none;
  width: 75%;
}

.number-input button {
  outline:none;
  -webkit-appearance: none;
  background-color: transparent;
  border: none;
  -webkit-box-align: center;
            -webkit-align-items: center;
                -ms-flex-align: center;
                    align-items: center;
  webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  width: 1em;
  height: 1em;
  cursor: pointer;
  margin: 0;
  position: relative;
}

.number-input button:before,
.number-input button:after {
  display: inline-block;
  position: absolute;
  content: '';
  width: 1em;
  height: 2px;
  background-color: #bfbebe;
  transform: translate(-50%, -50%);
}

.number-input button:hover:before, .number-input button:hover:after{
  background-color: #C69B54;
}

.number-input button.plus:after {
  transform: translate(-50%, -50%) rotate(90deg);
}

input[type="number"] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

.price{
  display: block;
  width:100%;
  color:#C69B54;
}

#cart-panel .close {
  right: 2em;
  top: 2em;
}

.close {
  position: absolute;
  width: 25px;
  height: 25px;
}

#checkout .summary .close{
  width: 18px;
  height: 18px;
}

.close:before, .close:after {
  position: absolute;
  left: 15px;
  content: '|';
  width: 3px;
  background-color: #BE1F2C;
    color: transparent;
}

#checkout .summary .close:before, #checkout .summary .close:after {
  height: 18px;
}
.close:before {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);

}
.close:after {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}



.arrow{
  width:1em;
  height:1em;
  position:absolute;
  right:1em;
  top:1.5em;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}


nav a:not(.visible) > .arrow{
  display: none;
}

.arrow::after {
  border-bottom-style: solid;
  border-bottom-width: 2px;
  border-right-style: solid;
  border-right-width: 2px;
   border-radius: .1em;
  content: '';
  display: inline-block;
  height: 1em;
  left: 0;
  position: absolute;
  top: 0;
  width: 1em;
    -webkit-transition: all .25s ease-out;
         -moz-transition: all .25s ease-out;
          -ms-transition: all .25s ease-out;
            -o-transition: all .25s ease-out;
              transition: all .25s ease-out;
}

header .lang .arrow::after, header .account .arrow::after {
  height: .6em;
  width: .6em;
}

.arrow::before {
  bottom: 1px;
  content: '';
  height: 2px;
  position: absolute;
  right: 0;
  transform-origin: bottom;
  width: 2px;
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}



.active .arrow:after{
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
  -webkit-transition: all .25s ease-out;
         -moz-transition: all .25s ease-out;
          -ms-transition: all .25s ease-out;
            -o-transition: all .25s ease-out;
              transition: all .25s ease-out;
}

.tooltip-e{
  display: inline-block;
}
.tooltip-e:not(.tooltip){
  position: relative;
  z-index:10;
}
.tooltip{
  visibility: hidden;
  position:absolute;
  padding:1.5em;
  background-color: white;
  border-bottom: 1px solid #e8e8e7;
  z-index:2;
  -webkit-transform: translateY(-12px);
       -moz-transform: translateY(-12px);
        -ms-transform: translateY(-12px);
          -o-transform: translateY(-12px);
            transform: translateY(-12px);
    -webkit-transition: all .25s ease-out;
       -moz-transition: all .25s ease-out;
        -ms-transition: all .25s ease-out;
          -o-transition: all .25s ease-out;
            transition: all .25s ease-out;
}

.tooltip-e.show .tooltip, .tooltip-e.show ~ .tooltip{
  visibility: visible;
  -webkit-transform: translateY(0px);
       -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
          -o-transform: translateY(0px);
            transform: translateY(0px);
    -webkit-transition: all .25s ease-out;
       -moz-transition: all .25s ease-out;
        -ms-transition: all .25s ease-out;
          -o-transition: all .25s ease-out;
            transition: all .25s ease-out;
}

header .lang ~ .tooltip{
  right:-.5em;
  top:2em;
}

header .account ~ .tooltip{
  right:.4em;
  top:2em;
}

header .account ~ .tooltip a, header .account ~ .tooltip input[type=submit]{
  display: inline-block;
  width:100%;
  text-align: center;
    background-color: transparent;
    border: none;
}

header .account ~ .tooltip a:first-of-type{
  margin-bottom: .9em;
}


body:not(.home):not(#checkout) .content{
  margin-top:6em;
}

#checkout .content{
  margin-bottom:2em;
}


.content .margin{
  position: relative;
  width:85%;
  margin:1em auto;
  max-width:70em;  
}

.content{
  min-height:calc(100vh - 7em);
  width:100%;
  display: inline-block;
  position: relative;
  font-size: .85em;
}

body.home .content{
font-size: 1em
}

h1{
  width:100%;
  text-align: center;
}

h1, h2{
  text-transform: uppercase;
  display: inline-block;
}

h1 + p{
  font-size: 1.2em;
}

ol{
  list-style: disc;
  margin: 0;
}

ol li{
  margin-bottom: 1.2em;
}

ol li:last-of-type{
  margin-bottom: 0;
}

.product ~ .details > .margin{
  margin-top:.4em;
  margin-bottom: .4em;
}

.product{
    -webkit-align-items: flex-start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
     -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.flex.thumbs{
  margin-top: .7em;
  width: 100%;
}
.thumbs > div{
  width:5.5em;
  height:5em;
  margin-right: .7em;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image:url(../images/portable-buildings/barns/side-lofted/side-lofted.jpg);

}

.product img{
  width:100%;
  height:auto;
}

.details h2, .details h3{
  width:100%;
  margin:0 !important;
}

.details h3.price{
  margin-top: .7em !important;

}

.details h3.price ~ .note{
  display: inline-block;
  font-size: 1em;
  text-transform: uppercase;
  margin-top: .8em;
  padding-top: 1em;
  width:100%;
  border-top:1px solid #e8e8e7;
}

.details label{
  display:inline-block;
  width:100%;
  font-size: .9em;
  margin-top: 1.2em;
  font-weight: bold;
}

.details .number-input{
  margin:.3em 0;
}

.details .custom-select{
  margin:.3em 0;
}
.details .select-selected{
  width:100%;
  border: 1px solid #e8e8e7;
  color:#3A342C !important;
  text-align: left;
  padding:.8em 4em .5em 1em;
}
.details .select-items{
  z-index:20;
  display: inline-block;
  border: 1px solid #e8e8e7;
    max-height:50vh;
    overflow-y:auto;

}

.details .material{
  display:inline-block;
  width:1em;
  height:1em;
  margin-right: 1em;
  background-color: red;
}
.details .select-items div:not(.same-as-selected){
  padding:.8em 4em .5em 1em;
}

.details .select-items div:hover, .details .same-as-selected{
  text-align: left !important;
  padding: .8em 4em .5em 1em;
}

.details .add{
  width:100%;
  margin-top: 1em;
}

.content h3{
  margin:2em 0;
}

.gray:not(.summary) h2, .gray:not(.summary) h3{
  color:#C69B54;
  font-size: 1.3em;
  width:100%;
  text-align: center;
}

#header .content{
  min-height:100vh;
  position: relative;
}

.divide{
  position: relative;
  width:100%;
}

.divide.flex.text{
  margin:2.5em 0 3em 0;
  font-size: 1em;
}

.divide.flex.text:first-of-type{
  margin-top: 0;
}

.divide.flex.text.gray{
  margin-top: .3em !important;
}

.divide.flex.text.contact{
  margin-bottom:0;
}

.content > *:last-of-type{
  margin-bottom:.3em!important;
}

.content:not(.faqs) > *.margin:last-of-type > p{
  margin:3em 0 !important;
}

.divide.flex.text .margin{
  max-width: 45em;
}

.divide.flex.text.gray .margin{
  max-width: 100%;
  min-width: 100%;
  padding:0 2em;
}

.divide.flex.text .margin{
}

.divide.flex.text > *{
  width:50%;
  padding-top: 40%;
}

.divide.flex.text > div.img ~div.img{
  width:49%;
  margin-left: 1%;
}

.divide.flex.text > div.img{
  position: relative;
  margin: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}


.divide.flex.text > div{
  padding-top:0;
  display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}




.home .divide{
  height:100vh;
}

.divide > div{
  width:50%;
  min-height:100%;
}



.home .content{
  text-align: center;
}

.home .content > div:not(.divide){
  padding:3em 4em 4em 4em;
}

.home .gold > p, .home .gold > div{
  max-width: 50em;
  margin:auto;
}

.home .content > .divide > div{
  background-color: white;
}

.home .content > .divide:first-of-type > div:last-of-type{
  background-color: #BE1F2C;
}

.home .content > .divide > .img{
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.home .content > .divide:nth-child(1) {
  color:white;
}

.home .content > .divide:nth-child(1) .button, .gold .button, .home .content > .divide:nth-child(3) .button, .gold .button {
  color:white !important;
  border:1px solid white;
}

.home .content > .divide:nth-child(1) .button:hover, .home .content > .divide:nth-child(3) .button:hover{
  background-color: white;
  color:#BE1F2C !important;
}

.gold .button:hover{
  background-color: white;
  color:#C69B54 !important;
}

.home .content > .divide > div{
  display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  text-align: center;
  font-size: 1.2em;
  padding:1.5em;
}

.content div.gold{
  background-color: #C69B54;
  color: white;
}

.content div.red{
  background-color: #BE1F2C;
  color: white;
}

.content div.gray{
  background-color: #EFEFEF;
}

.home .content .icons{
  width:100%;
  max-width:60em;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  text-transform: uppercase;
  font-size: .65em;
  margin:5em auto;
  text-align: center;
}

.home .content .icons > div{
  text-align: center;
  margin: .5em;
}

.home .content .icons > div > *{
  display:block;
}

.home .content .icons img{
  height:5em;
  width:auto;
  margin:0 auto .7em auto;
}

.home .brands{
  max-width: 60em;
  margin:0 auto;
}

.home .brands > .flex{
  width:100%;
  position: relative;
  -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.home .brand{
  display: inline-block;
  position: relative;
  background-color: #f4f4f3;
  width:24%;
  padding-top: 24%;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: all .25s ease-out;
         -moz-transition: all .25s ease-out;
          -ms-transition: all .25s ease-out;
            -o-transition: all .25s ease-out;
              transition: all .25s ease-out;
}

.home .brand:hover{
  background-color: white;
  -webkit-transition: all .25s ease-out;
         -moz-transition: all .25s ease-out;
          -ms-transition: all .25s ease-out;
            -o-transition: all .25s ease-out;
              transition: all .25s ease-out;
}

.home .brand:nth-child(1){
  background-image: url(../images/brands/brand-derksen.png);
  background-size: 50% auto;
}

.home .brand:nth-child(2){
  background-image: url(../images/brands/brand-eagle.png);
  background-size: 85% auto;
}

.home .brand:nth-child(3){
  background-image: url(../images/brands/brand-adventure.png);
  background-size: auto 60%;
}

.home .brand:nth-child(4){
    background-size:85%;
}


.breadcrumb, .note{
  font-size: .75em;
  font-weight: lighter;
  color:#a8a7a4;
}

.breadcrumb .current{
  color:#BE1F2C;
}

input[type="button"], .button, .select-selected {
  padding:1.1em 4em .7em 4em;
  color:#C69B54 !important;
  border:1px solid #C69B54;
  background-color: transparent;
  letter-spacing: 1.4px;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

input[type="button"]:hover, .button:hover{
  color:white !important;
  background-color: #C69B54;
  -webkit-transition: all .25s ease-out;
         -moz-transition: all .25s ease-out;
          -ms-transition: all .25s ease-out;
            -o-transition: all .25s ease-out;
              transition: all .25s ease-out;
}

.brand-logo{
  display: inline-block;
  position: relative;
  width:100%;
  height:10em;
  text-align: center;
}

.gallery{
  width:100%;
  -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.gallery a {
  display: inline-block;
  position: relative;
  width:23%;
  margin:1%;
  margin-bottom: 1em !important;
  color: inherit;
}

.gallery a figure{
  display: inline-block;
  position: relative;
  margin:0;
  width:100%;
  padding-top: 100%;
  background-color: gray;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: all .25s ease-out;
         -moz-transition: all .25s ease-out;
          -ms-transition: all .25s ease-out;
            -o-transition: all .25s ease-out;
              transition: all .25s ease-out;
}

.gallery a:hover figure{
  -webkit-box-shadow:inset 0px 0px 0px 10px #BE1F2C;
    -moz-box-shadow:inset 0px 0px 0px 10px #BE1F2C;
    box-shadow:inset 0px 0px 0px 10px #BE1F2C;
  -webkit-transition: all .25s ease-out;
         -moz-transition: all .25s ease-out;
          -ms-transition: all .25s ease-out;
            -o-transition: all .25s ease-out;
              transition: all .25s ease-out;
}

.gallery a .description span{
  display: block;
  width:100%;
  text-align: center;
  margin:.3em 0;
}

.gallery a .description span:first-of-type{
  margin-top: 1em;
  text-transform: uppercase;
  font-family: 'heavy', sans-serif;
}

.gallery a .description span:last-of-type{
  color:#C69B54;
 } 


.custom-select{
  margin:2em 0;
  position: relative;
  display: inline-block;
  text-align: left;
}

.prettydropdown, .prettydropdown ul{
    width:100% !important;
    margin-top: 5px;
}

.custom-select select {
  display: none;
}

.select-selected:after{
  border-bottom-style: solid;
  border-bottom-width: 2px;
  border-right-style: solid;
  border-right-width: 2px;
   border-radius: .1em;
  content: '';
  display: inline-block;
  position: absolute;
  top: 20%;
  right:.5em;
  height: .8em;
  width: .8em;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
    -webkit-transition: all .25s ease-out;
         -moz-transition: all .25s ease-out;
          -ms-transition: all .25s ease-out;
            -o-transition: all .25s ease-out;
              transition: all .25s ease-out;
}

.select-selected.select-arrow-active:after{
  top:40%;
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
    -webkit-transition: all .25s ease-out;
         -moz-transition: all .25s ease-out;
          -ms-transition: all .25s ease-out;
            -o-transition: all .25s ease-out;
              transition: all .25s ease-out;
}

.select-selected{
  position: relative;
  min-width: 16em;
  padding:.8em 4em .5em 4em;
  text-align: center;
  background-color: white;
  z-index:10;

}

.select-selected:after{
  margin-right:.2em;
}


.select-selected.select-arrow-active, .select-selected:hover{
  background-color: #C69B54;
  color:white !important;
  -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out;
  
}


.select-items div:not(.same-as-selected) {  
  border:1px solid transparent;  
  border-color: transparent transparent #EDEDED transparent;
}



.select-items {
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1;
  background-color: white;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display:flex;
  -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  -webkit-transform: translateY(0px);
       -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
          -o-transform: translateY(0px);
            transform: translateY(0px);
    -webkit-transition: all .25s ease-out;
       -moz-transition: all .25s ease-out;
        -ms-transition: all .25s ease-out;
          -o-transition: all .25s ease-out;
            transition: all .25s ease-out;
}

.select-hide {
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  -webkit-transform: translateY(-12px);
       -moz-transform: translateY(-12px);
        -ms-transform: translateY(-12px);
          -o-transform: translateY(-12px);
            transform: translateY(-12px);
    -webkit-transition: all .25s ease-out;
       -moz-transition: all .25s ease-out;
        -ms-transition: all .25s ease-out;
          -o-transition: all .25s ease-out;
            transition: all .25s ease-out;
}

.select-items div:not(.same-as-selected){
  background-color: white;
  color:inherit;
  padding:1.3em 2em;
  -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out;
}

.select-items div:hover, .same-as-selected {
  background-color: rgba(198,155,84,.7);
  color:white;
  border-color: transparent transparent #C69B54 transparent;
  -webkit-transition: all .25s ease-out;
  -moz-transition: all .25s ease-out;
  -ms-transition: all .25s ease-out;
  -o-transition: all .25s ease-out;
  transition: all .25s ease-out;
}

.same-as-selected {
  background-color: white;
  color: #C69B54;
  border:1px solid transparent;  
  border-color: transparent transparent #C69B54 transparent;
  padding:1.3em 2em;
  cursor:pointer;
  text-align: center;
}


[type="radio"]:checked,
  [type="radio"]:not(:checked) {
      position: absolute;
      left: -9999px;
  }

  [type="radio"]:checked + label,
  [type="radio"]:not(:checked) + label
  {
      position: relative;
      padding-left: 1.8em;
      cursor: pointer;
      line-height: 20px;
      display: inline-block;
  }
  [type="radio"]:checked + label:before,
  [type="radio"]:not(:checked) + label:before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      width: 1.1em;
      height: 1.1em;
      border: 1px solid #AAA;
      border-radius: 100%;
      background: white;
  }
  [type="radio"]:checked + label:after,
  [type="radio"]:not(:checked) + label:after {
      content: '';
      width: .9em;
      height: .9em;
      background: #C69B54;
      position: absolute;
      top: 2px;
      left: 2px;
      border-radius: 100%;
      -webkit-transition: all 0.2s ease;
       -moz-transition: all 0.2s ease;
        -ms-transition: all 0.2s ease;
          -o-transition: all 0.2s ease;
            transition: all 0.2s ease;
  }
  [type="radio"]:not(:checked) + label:after {
      opacity: 0;
      -webkit-transform: scale(0);
         -moz-transform: scale(0);
          -ms-transform: scale(0);
           -o-transform: scale(0);
              transform: scale(0);
  }
  [type="radio"]:checked + label:after {
      opacity: 1;
      -webkit-transform: scale(1);
         -moz-transform: scale(1);
          -ms-transform: scale(1);
           -o-transform: scale(1);
              transform: scale(1);
  }


.switch {
  position: relative;
  display: inline-block;
  width: 2.4em;
  height: 1.2em;
}

.switch input {display:none;}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 1em;
  width: 1em;
  left: .09em;
  bottom: .1em;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #C69B54;
}

input:focus + .slider {
  box-shadow: 0 0 1px #C69B54;
}

input:checked + .slider:before {
  -webkit-transform: translateX(1.2em);
  -ms-transform: translateX(1.2em);
  transform: translateX(1.2em);
}

.faqs h3{
  text-align: center;
  background-color: #e8e8e7;
  padding:1em;
  margin:3em 0 0 0;
}

.faqs h3 + p{
  margin: 1.8em 0 2em 0 !important;
}

.faqs h3 + p:last-of-type{
  margin-bottom: 3.5em !important;
}

.contact > div p{
  margin:3em 0;
  font-size: 1.2em;
}

.contact > div p::before{
  content:'';
  display: inline-block;
  width:1.5em;
  height:1.5em;
  margin-right: .5em;
  vertical-align: -35%;
  background-size: auto 98%;
  background-position: center;
  background-repeat: no-repeat;
}

.contact > div p:nth-child(1)::before{
  background-image:url(../images/email.svg);
}
.contact > div p:nth-child(2)::before{
  background-image:url(../images/phone.svg);
}
.contact > div p:nth-child(3)::before{
  background-image:url(../images/map.svg);
}

.gray .form{
  width:90%;
  max-width: 25em;
  margin:auto;
  text-align: right;
  padding:2em 0;
  font-size: 1.1em;
}

.form input:not([type='button']):not(.button), .form textarea{
  border:1px solid #e8e8e7;
  color:#AAA;
}

.divide.flex.gray .margin{
  margin: 3em 0;
}

#checkout header #logo{
  text-align: left;
}
#checkout h1, #checkout h2, #checkout h3{
  text-align: left;
  margin-top:1.5em;
  margin-bottom: 0;
}

#checkout .breadcrumb{
  margin-top: 8em;
}

#checkout .divide.text.flex > div:first-of-type > .margin > *:nth-child(1):not(.breadcrumb){
  margin-top: 4em;
}

#checkout h5{
  padding-top: 1.8em;
  margin:0;
}

#checkout h5:first-of-type{
  border-top: 1px solid #e8e8e7;
}

#checkout .form{
  font-size: .9em;
}

#checkout .summary{
  z-index: 900;
  position: fixed;
  right: 0;
  top: 0;
  height:100vh;
  display: inline-block; 
}

#checkout .summary h2{
  margin-bottom: 1em;
}

#checkout #cart-items .item{
  position: relative;
}

#checkout #cart-items .item > .close{
  position: absolute;
  top:.3em;
  right: .8em;
  display: none;
}

#checkout #cart-items .item.error > .close{
   display: inline-block;
}

.form input.short{
  float: left;
  margin-right:2%;
}
.form input.short.half{
  width:49%;
}

.form input.short.third{
  width:32%;
}

.form input.short.nom{
  margin-right:0 !important;
}

.form input.short:last-of-type + *{
  clear: both;
}

.border{
  border: 1px solid #e8e8e7;
  padding:.7em .5em .5em .5em;
  margin:.7em 0;
}

.border label{
  width: 100%;
}

.border.review{
  font-size: .85em;
  padding:0;
}

.border.review > .flex{
   padding:.7em .5em .5em .5em;
  border-bottom: 1px solid #e8e8e7;
}

.border.review > .flex:last-of-type{
  border-bottom: none;
}

.border.review > .flex > div{
  width:80%;
}

.border.review > .flex > div:first-of-type{
  width:20%;
  color:#AAA;
}

.border.review .price{
  display: inline;
}

label .price{
  display: inline-block;
  width:35%;
  text-align: right;
}

#checkout .form input[type='button'], #checkout .form .button{
  width:100% !important;
    text-transform: uppercase;
}

.center{
  text-align: center;
  width:24em;
  margin:0 auto;
}

.center input, .center .button{
  width:100%;
}

.center input[type='text']{
  margin:1.3em 0;
}

.left, .left h1{
  text-align: left !important;
}

.flex.note{
  -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.center > .flex > div{
  text-align: left;
}

.divider{
  position: relative;
  display: inline-block;
  min-height:100%;
  width:1px !important;
  background-color: #e8e8e7;
  margin:0 3em;
}

hr{
  border:.5px solid #e8e8e7;
  width:100%;
  display:block;
  margin:3em auto !important;
  margin-bottom: 3em !important;
}

#account{
  margin-bottom: 3em;
}

#account input{
  margin-bottom: 1em;
  margin-top: 1em;
}

#account .flex.divide > div input[type="button"], #account .flex.divide > div .button, #account .flex.divide > div input[type="submit"]{
  width:100%;
}

#account .select-selected{
  width:20em;
  max-width:90% !important;
}

#account .item{
  color:#a8a7a4;
}


#account input.data, #account span.data{
  color:#3A342C !important;
}

#account .orders > .flex{
  -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding:1.2em 0;
    border-top: 1px solid #e8e8e7;
}

#account .orders > .flex:last-of-type{
  border-bottom: 1px solid #e8e8e7;
}

#account .orders > .flex > div{
  margin-right:1em;
}

#account .orders > .flex > div:last-of-type{
  margin-right:0 !important;
}

#account .orders.details > .flex > div:last-of-type{
  margin-right:0 !important;
  width:auto !important;
}

#account .orders > .flex > div:nth-child(1){
  width:12em;
}

#account .orders > .flex > div:nth-child(2){
  width:7em;
}

#account .orders > .flex > div:nth-child(3){
  width:13em;
}

#account .orders > .flex a{
  color:#C69B54;
}

.orders.details .item > div h4{
  margin-top:0;
}

.orders.details .item > div:first-of-type{
  color:#3A342C !important;
}

.orders.details > .item figure{
  display: inline-block;
  margin:0 1em .5em 0;
  padding-right:50%;
  height: 7em;
  background-color: gray;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.orders.details > .item .selected-material > div{
  margin-bottom: .3em;
}

.orders.details > .item .selected-material > div > div{
  display: inline-block;
  position: relative;
  margin:0;
  margin-right: .5em;
  height: 1em;
  width:1em;
  background-color: gray;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#account .orders.details > .flex > div:nth-child(1){
  width:20em;
}

#account .orders.details > .flex > div:nth-child(2){
  width:12em;
}

#account .orders.details > .flex:not(.track) > div:nth-child(3){
  width:7em !important;
  text-align: right;
}

.orders.details .gray{
  padding:1.8em 2em;
}

.orders.details .gray h3{
  text-align: left;
  font-size: 1.2em;
  margin-bottom: 1em !important;
}

.total {
  text-align: right;
  border-top: 1px solid #e8e8e7;
  color:#3A342C !important;
}

.total .price{
  display: inline-block;
  width: 5em !important;
}


footer .arrow{
  top:1.3em;
  display: none;
}

footer{
  background-color:#3A342C;
  color:white;
  font-size: .75em;
}

footer > .flex{
  padding:4em 3.5em;
}

footer > .flex > .flex{
  width:50%;
  -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

footer .options a{
  display:block;
}

footer .options > a{
  text-transform: uppercase;
  padding:.3em 0;
  margin-bottom: .7em;
  border-bottom: 1px solid #C69B54;
  cursor:default;
  display:inline-block;
}

footer .options > a .arrow{
  color:#C69B54;
}

footer .options > a.active{
  color:#C69B54;
  -webkit-transition: all 200ms ease-out;
      -moz-transition:all 200ms ease-out;
      -ms-transition:all 200ms ease-out;
      -o-transition:all 200ms ease-out;
      transition: all 200ms ease-out;
}

footer .options{
  width:auto;
  height:auto;
  position: relative;
}

footer .flex > div:not(:last-of-type) .options{
  margin-bottom:1.8em;
  margin-right:1.8em;
}

.subfooter a{
  margin-top:.6em;
}

.subfooter a:hover{
  color:#C69B54;
}

footer .legal{
  color:#C69B54;
  text-align: center;
  font-size:.7em;
  padding:1em;
  background-color: #161514;
}

footer .legal span{
  margin:0 3em;
}

footer .form{
  text-align: right;
}

.form input, .form textarea{
  -webkit-appearance:none;
  -moz-appearance:none;
  appearance:none;
  margin:.7em 0;
}

footer .form input, footer .form textarea{
  color:#C69B54 !important;
  border:1px solid #C69B54 !important;
  background-color: #3A342C !important;
}

.form input[type="text"], .form input[type="password"], .form textarea{
  width:100%;
  padding:.6em .5em;
  display: block;
}

footer .form input[type="text"], footer .form textarea{
  background-color: #25221e !important;
}

footer .options span{
  display: block;
  margin-top:.6em;
}

textarea{
  resize:none;
}

.responsive{
  display:none;
}

.alert{
  font-size: .8em;
  margin-top:.7em;
  color:#BE1F2C;
}


.alert span{
  width:100%;
  display: inline-block;
  margin:.3em 0;
}

.error{
  color:#BE1F2C !important;
}

input.error{
  color:#BE1F2C !important;
  border:1px solid #BE1F2C !important;
}

#cart-items .item.error{
  border:1px solid #BE1F2C !important;
}

#cart-items .item.error .price{
  color:#BE1F2C !important;
}


#cart-items .item.error h3{
  font-size: .8em;
}

.alert, #cart-items .item.error{
  font-family: 'heavy', sans-serif;
}


/*boton menu*/
#menu-btn{
  display: inline-block;
  z-index:990;
  cursor:pointer;
  position: fixed;
  top:1.6em;
  left:4.5em;
}

#menu-btn.left{
  left:1em;
}

.c-hamburger {
  display: block;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 36px;
  height: 25px;
  font-size: 0;
  text-indent: -9999px;
  appearance: none;
  box-shadow: none;
  border-radius: none;
  border: none;
  cursor: pointer;
}

.c-hamburger:focus {
  outline: none;
}

.c-hamburger span {
  display: block;
  position: absolute;
  top: 12px;
  left: 4px;
  right: 4px;
  height: 3px;

}

.c-hamburger span::before,
.c-hamburger span::after {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 3px;

  content: "";
}

.hamburger, .hamburger::before, .hamburger::after{
    background-color: #3A342C;
}

.c-hamburger span::before {
  top: -7px;
}

.c-hamburger span::after {
  bottom: -7px;
}


.c-hamburger--htx span::before,
.c-hamburger--htx span::after {
  -webkit-transition-duration: 0.2s, 0.2s;
  transition-duration: 0.2s, 0.2s;
  -webkit-transition-delay: 0.2s, 0s;
  transition-delay: 0.2s, 0s;
}

.c-hamburger--htx span::before {
-webkit-transition-property: top, -webkit-transform;
  transition-property: top, transform;
}

.c-hamburger--htx span::after {
-webkit-transition-property: bottom, -webkit-transform;
  transition-property: bottom, transform;
}

/* active state, i.e. menu open */
.c-hamburger--htx.is-active {
  
}

.c-hamburger--htx.is-active span {
  background: none;
}

.c-hamburger--htx.is-active span::before {
  top: 0;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  background-color: #BE1F2C;
}

.c-hamburger--htx.is-active span::after {
  bottom: 0;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  background-color: #BE1F2C;
}

.c-hamburger--htx.is-active span::before,
.c-hamburger--htx.is-active span::after {
  -webkit-transition-delay: 0s, 0.2s;
  transition-delay: 0s, 0.2s;
}



 /*background images*/
 .gallery > a:nth-child(1) figure{
  background-image:url(../images/portable-buildings/barns/original/barn-treated.jpg);
 }
 .gallery > a:nth-child(2) figure{
  background-image:url(../images/portable-buildings/barns/original/barn-painted.jpg);
 }
 .gallery > a:nth-child(3) figure{
  background-image:url(../images/portable-buildings/barns/original/barn-metal.jpg);
 }
 .gallery > a:nth-child(4) figure{
  background-image:url(../images/portable-buildings/barns/original/barn-urethane.jpg);
 }

.uppercase{
    text-transform: uppercase;
}

.tt-menu{
margin:1em 0 !important; 
padding:.5em 1em !important; 
background-color: rgba(255,255,255,0.95) !important;
}

.tt-suggestion > div{
margin: 0 !important;
padding: 5px 5px !important;
}

.tt-suggestion > div > a{
color: #C69B54;
}

.tt-suggestion > div > a:hover{
font-weight: bolder;
}

.home .divide.flex.text > div.img {
    padding-top: 0;
}

.divide.flex.text > div.img {
    padding-top: 40%;
}

.details{
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.product{
    display:inline-block;
}

.material-color{
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 15px;
}


.prettydropdown ul > li > .arrow{
    display: none;
}

.prettydropdown ul > li:nth-child(1) > .arrow{
    display: inline-block;
    position: absolute;
    right: 2.5em;
    top: 0.5em;
}

input:read-only {
    background-color: rgb(235, 235, 228);
}

input[type='button'].custom{
  text-transform: uppercase;
  font-size:.7em;
  padding:.8em 2em .5em 2em;
  margin-top:1em;
}

#fscreen{
  position: fixed;
  width:100%;
  height:100%;
  z-index:999;
  webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  -webkit-box-align: center;
            -webkit-align-items: center;
                -ms-flex-align: center;
                    align-items: center;
  background-color:rgba(255, 255, 255, 0.3);
  display: none;
}


.modal{
  background-color: #EFEFEF;
  -webkit-box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.3);
  -moz-box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.3);
  box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.3);
  width:100vw;
  height:90vh;
  max-width:600px;
  padding:2em 1.8em;
  box-sizing: border-box;
  position: relative;
}

.modal .close{
  position: absolute;
  right:1em;
  top:1em;
}

.modal h3{
  margin: 0 !important;
}

.modal h4{
  margin: 1em 0 .5em 0 !important;
  font-size: .9em;
}

.modal h5:first-of-type{
  margin-top:1.5em !important;
}

.modal h5{
  padding-top:.8em !important;
  padding:.8em 0;
  border-top: 1px solid #d4d4d3 !important;
  width:95%;
}

.modal .scroll{
  height:80%;
  overflow-y: auto;
  margin-top:1.5em;
}

.modal .scroll textarea{
  width:95%;
  margin-bottom: .8em;
  display: block;
}

.modal .scroll textarea, .modal .scroll input[type='text']{
    padding:.6em .5em;
    border: 1px solid #e8e8e7;
    color:#AAA;
}

.modal .scroll input[type='button']{
  margin-top: 1.5em;
  margin-bottom: .5em;
  right:0;
}

.modal .scroll ul{
  list-style: none;
}

.modal .scroll ul li{
  margin:.5em 0;
}

.modal .scroll ul li input[type="text"]{
  text-align: center;
  margin:0 .5em;
}

.modal .right{
  width:95%;
}

.right{
  text-align: right;
}

/*.modal .scroll .add, .modal .scroll .delete{
    display: inline-block;
    width:1.6em;
    height:1.6em;
    background-size: 100%;
    background-position: center;
    vertical-align: middle;
    cursor: pointer;

}

.modal .scroll .add{
  background-image: url(../images/add.svg);
    margin-left:.5em;
}

.modal .scroll .delete{
  background-image: url(../images/delete.svg);
}*/



::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: #e3e2e2; 
}
::-webkit-scrollbar-thumb {
  background: #888; 
}
::-webkit-scrollbar-thumb:hover {
  background: #C69B54; 
}

.checkbox {
  display: block;
  position: relative;
  padding-left: 1.7em;
  margin: 1.5em 0;
  cursor: pointer;
  font-size: 1em;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 1.3em;
  width: 1.3em;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.checkbox:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkbox input:checked ~ .checkmark {
  background-color: #C69B54;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox .checkmark:after {
  left: .45em;
  top: .2em;
  width: .2em;
  height: .7em;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*.prettydropdown.arrow{
    display: block;
    width:1em;
    height:1em;
    position:relative;
    right:1em;
    top:1.5em;
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}*/

.modal .number-input{
    display:inline-block;
    width: auto;
    border:none;
    margin-right:.8em;
}

.modal .number-input input{
    width:5em;
}

.modal .number-input button:before,
.modal .number-input button:after{
    background-color:#C69B54;
}

.flex.sum{
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction:column;
}

.flex.sum .flex span:first-of-type{
    width:65%;
    margin-right:1em;
}

.flex.sum .flex .price{
    width:auto;
    display:inline-block;
    margin-left:1em;
}

/* Bbx */
#cart {
    display: none!important;
}

.search.tooltip-e {
    display: none;
}
