@import url(https://fonts.googleapis.com/css?family=Roboto:400,300,500,700,900,400italic);

@media screen and (-webkit-min-device-pixel-ratio:0) { 
  select:focus,
  textarea:focus,
  input:focus {
    font-size: 16px;
    background: #eee;
  }
}

html {
    overflow-x: hidden;
    background-color: rgb(32,32,32);
}

b {
    font-weight: 500;
}

a {
    color: rgb(32,32,32);
    -text-decoration: none;
    font-weight: 400;
}

a:hover {
    text-decoration: underline;
}

a.back {
    display: block;
    padding: 10px 10px 20px 10px;
}

a.back i {
    margin-right: 5px;
    font-size: 12px;
}

.clear {
    clear: both;
}

#bgcontainer {
    width: 100%;
    -height: 100%;
}

#overlay {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: rgba(64,64,64,.4);
    display: none;
    transition: opacity;
}

#side-dialog {
    position: fixed;
    width: 480px;
    top:  0px;
    bottom: 0px;
    height: 100%;
    right: 0px;
    background: rgb(255,255,255);
    z-index: 12;
    padding: 0px 20px 20px 20px;
    overflow: auto;
    -webkit-transition: -webkit-transform 250ms cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: -webkit-transform 250ms cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: transform 250ms cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: transform 250ms cubic-bezier(0.165, 0.84, 0.44, 1), 
    -webkit-transform 250ms cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
}

#side-dialog .header {
    position: sticky;
    top:  0;
    width: 100%;
    background: rgb(255,255,255);
    padding-top: 20px;
    z-index: 1;
}

#side-dialog h2 {
    line-height: 40px;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 20px;
    margin-top: 0px;
    border-bottom: 1px solid rgb(200,200,200);
}

#side-dialog h3 {
    text-transform: none;
    font-weight: 500;
    margin: 10px 0px 2px 0px;
}

#side-dialog p {
    margin:  0px 0px 9px 0px;
    line-height: 28px;
}

#side-dialog #cart p {
    margin:  0px 0px 5px 0px;
    line-height: 24px;
}


#side-dialog .fa-remove {
    cursor: pointer;
    transition: all .2s ease-in-out;
    display: block;
    padding: 2px 5px;
    color: rgb(200,0,0);
}

#side-dialog .fa-remove:hover {
    color: rgb(200,0,0);
    transform: scale(1.3,1.3);
}

#side-dialog .ideal {
    text-align: center;
    margin-top: 20px;
}

#side-dialog .ideal img {
    width: 25px;
    margin-left: 5px;
    vertical-align: middle;
}

.video {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    margin-bottom: 20px;
}

.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.dialog-open #side-dialog {
    -webkit-transform: translateX(0);
    box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.2);
}

.dialog-open #overlay {
    display: block;
    z-index: 11;
}

.dialog-open {
    overflow: hidden;
}

.nowrap {
    white-space: nowrap;
}

.nowrap img {
    vertical-align: middle;
    width: 24px;
    margin-top: -4px;
}

@keyframes show-scale {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.show-scale {
    animation: show-scale .5s;
    opacity: 1 !important;
}

@keyframes fadebottom {
    0% {
        opacity: 0;
        transform: translateY(120px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-bottom {
    animation: fadebottom .75s;
    opacity: 1 !important;
}

.fade-bottom.delay {
    animation-duration: 1.5s;
    font-size: 24px;
    font-weight: 100;
}

.text {
    position: relative;
    padding: 60px 0px 60px 0px;
    -max-width: 970px;
    background: rgb(255,255,255);
}

.text.top {
    padding-top: 120px;
}

.text-container {
    max-width: 970px;
    margin: 0px auto;
    padding: 0px 10px;
}

.text.small .text-container, .text .text-container.small {
    max-width: 840px;
}

.text h1 {
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
    line-height: 32px;
}

.text .column h1 {
    font-size: 24px;
}

.text h2 {
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 8px;
    margin-top: 30px;
    letter-spacing: 1px;
    font-weight: 600;
}


.text .cashback h2 {
    background: rgba(64,64,64,8);
    background: rgb(50,170,40);
    color: rgb(255,255,255);
    display: inline-block;
    padding: 2px 10px;
    transform: rotate(-5deg);
    margin-left: -20px;
}


.text h3 {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 4px;
    margin-top: 10px;
    letter-spacing: 1px;
    font-weight: 500;
}

.text p, .text ul {
    font-weight: 100;
    font-size: 15px;
    margin-bottom: 20px;
    letter-spacing: 0px;
    line-height: 28px;
}

.text ul {
    margin-bottom: 0px;
}

.text .fa-youtube-play {
    color: rgb(200,0,0);
    font-size: 24px;
    vertical-align: middle;
    margin: 0px 5px;
}

/*
.text ul li {
    margin-left: 15px;
}
*/

.column {
    position: relative;
}
.text .column {
    width: 50%;
    float: left;
    padding: 0px 20px;
    list-style-type: none;
}

.text .row .column h2 {
    margin-top: 0px;
    margin-bottom: 36px;
}

.text .column-3 {
    width: 33.33333%;
    float: left;
    padding: 0px 20px;
    list-style-type: none;
}

.text .column-3.package {
    color: rgb(64,64,64);
    padding: 0px 20px;
}

.text .column-3.package p {
    margin-bottom: 0px;
}

.text .column-3.package h2 {
    text-align: center;
    text-transform: none;
    font-weight: 400;
    background: rgb(64,64,64);
    color: rgb(220,220,220);
    line-height: 40px;
    border-radius: 8px 8px 0px 0px;
    margin-bottom: 0px;
}

.text .column-3.package h2 i.fa {
    color: rgb(255,255,255);
    margin-right: 10px;
}

.text .column-3.package div.details {
    border: 1px solid rgb(64,64,64);   
    padding: 20px 15px;
    background: rgb(240,240,240);
}

.text .column-3.package div.details li {
    margin-left: 15px;
}

.text .column-3.package div.price {
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    background: rgb(64,64,64);
    color: rgb(220,220,220);
    line-height: 40px;
    border-radius: 0px 0px 8px 8px;
}

.text .column-3.package:hover {
    cursor: pointer;
}


.text .column-3.package:hover h2, .text .column-3.package:hover .price {
    color: rgb(255,255,255);
}

.text .column-3.package:hover div.details {
    background: rgb(255,255,255);    
}

.text img {
    width: 100%;
}

.text.small img {
    margin: 40px 0px;
}

.editable .text img {
    min-width: 120px;
    min-height: 120px;
    background: rgb(240,240,240);
}

form {
    position: relative;
}

.form i.fa-angle-down {
    margin-top: 10px;
}

#form_prints {
    margin-top: 20px;
    margin-bottom: 40px;
}

.form .lr input,
.form .lr select, 
.form .lr textarea {
    font-family: "Roboto",Helvetica,Arial,sans-serif;
    font-size: 16px;
}

.form .lr textarea {
    font-size: 14px;
}

.form .lr {
    border-bottom: 1px solid rgba(64,64,64,.2);
}
.form .lr label {
    top: 2px;
}

.text form label {
    top: 0px;    
}

.text .form i.fa-angle-down {
  margin-top: 2px;
}
/*
.text form label {
    display: block;
    color: rgb(32,32,32);
    font-weight: 100;
    margin: 10px 0px 2px 0px;
}

 .text form input, .text form textarea, .text form select {
    font-family: "Roboto",Helvetica,Arial,sans-serif;
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 16px;
    line-height: 1.42857143;
    color: rgb(64,64,64);
    background-color: #FDFDFD;
    background-image: none;
    border: 1px solid #9C9C9C;
    border-radius: 5px;
    -webkit-transition: border-color ease-in-out .15s;
    -webkit-box-shadow: ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.text form select {

}
*/
#cart form input.invalid, 
#cart form select.invalid, 
#cart form textarea.invalid, 

.text form input.invalid, 
.text form select.invalid, 
.text form textarea.invalid {
    background: rgb(255,230,230);
    color: rgb(128,64,64);
    border-color: rgb(160,128,128);
}

.table tbody td{
    line-height: 24px;
}

 .table tbody td span {
    display: block;
    font-size: 12px;
}

.table tfoot {
    border: none;
    background: none;
}

.table tfoot tr {
    background: none;
}

.table tfoot td {

}

 .table.small {
    font-size: 14px;
}


#cart form.small {

}

.btn.submit,  button[type="submit"] {
    background: rgba(255, 180, 0,.9);
    color: rgb(0,0,0);
}

.btn.submit,  button[type="submit"] {
    background: rgba(255, 180, 0,.9);
    color: rgb(0,0,0);    
}

.btn.submit:hover, button[type="submit"]:hover, .no-touch button[type="submit"]:hover {
    background: rgb(255, 180, 0);
    color: rgb(0,0,0);    
}

.btn, button {
    padding: 0px 20px;
    border-radius: 5px;
}

.text form button:hover {
    -border: 1px solid rgb(32,32,32);
    -color: rgb(32,32,32);
    -background: rgb(255,255,255);
   -background: rgb(0,140,40);
}

.text li {
    margin-left: 15px;
}

.text .row li {
    margin-left: 0px;
}

.verhalen a {
    margin-bottom: 40px;
}

.text .verhalen li {
    margin: 0px;
}

.bg {
    -webkit-transition: height .5s;
    transition: height .5s;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

#main_bg_next {
    opacity: 0;
    height: 100%;
    width: 100%;
}

#main_bg {
    position: relative;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

.bg .bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    height: 150px;
    color: rgb(255,255,255);
    background: linear-gradient(0deg, rgba(0,0,0,.8) 0%, rgba(0,0,0,0) 100%);
}

.bg h1 {
    opacity: 0;  
    font-size: 36px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 40px;
}
.bg h2 {
    opacity: 0;
    font-size: 24px;
    font-weight: 100;
    color: rgb(220,220,220);
}

body, html {
    height: 100%;
    margin: 0;
  }  

body {
    font-family: "Roboto",Helvetica,Arial,sans-serif;
    line-height: 24px;
    font-weight: 100;
    font-size: 15px;
    color: rgb(64,64,64);
    opacity: 0;
    transition: opacity .5s;
    -position: fixed;   
    -overflow: hidden;
}

body.ready {
    opacity: 1;
}

header {
    width: 100%;
    position: fixed;
    z-index: 10;
    opacity: 1;
    top: 0;
    
}

header nav {
    -transition: all .5s;
    width: 100%;
    color: rgb(32,32,32);
    min-height: 80px;
    padding: 5px 40px;
    -background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}

header .logo img {
    position: absolute;
    width: 150px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

header .fa-bars {
    display: none;
}

header nav .social {
    float: right;
    line-height: 80px;
}

header nav .social div {
    display: inline-block;
}

header nav.white {
    background: rgba(255,255,255,.95);
    border-bottom: 1px solid rgb(200,200,200);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
}

header nav.white .logo img {
    filter: inherit;
}

header nav .logo img {
    filter: brightness(0) invert(1);
}

header #type {
    width: 100%;
    margin: 0px auto;
    -color: rgb(255,255,255);
    padding: 0px;
    text-align: center;
    display: none;
}
header nav ul {
    line-height: 66px;
}
nav ul {
    list-style: none;
}

header #type li {
    list-style-type: none;
    display: inline-block;
    background: rgb(230,230,230);
    line-height: 24px;
    padding: 0px 5px;
    border-radius: 4px;
    font-size: 10px;
    text-transform: uppercase;
    width: 72px;
    cursor: pointer;
    transition: all .5s;
}

header #type li:hover {
    color: rgb(0,0,0);
    background: rgb(200,200,200);
}

header #type li.selected {
    color: rgb(255,255,255);
    background: rgb(128,128,128);
    font-weight: 600;
}


#gallery {
    position: relative;
    width: 100%;
    padding: 0px 45px;
    background: rgb(255,255,255);
}

#gallery:after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    overflow: hidden;
}

#gallery.dragover {
    opacity: .5;
}

.masonry.loaded img {
    display: inline-block;
    max-width: 100%;
    float: left;
    outline: 5px solid white;
    outline-offset: -5px;
}

footer {
    position: relative;
    background: rgb(32,32,32);
    color: rgb(255,255,255);
}

footer div {
    margin: 0px auto;
    max-width: 970px;
    padding: 60px 0px;
    text-align: center;
}

.social a, header .fa-bars {
    color: rgb(255,255,255);
}


header .fa-bars, header .fa-shopping-cart, .social a.menu-item, .social a .fa {
    line-height: 30px;
    width: 30px;
    background: rgb(48,48,48);
    transition: all 250ms;
    border-radius: 5px;
    text-align: center;
}

header .fa-shopping-cart {
    display: none;
}

header .cart .fa-shopping-cart {
    display: inline-block;
}

header .cart .fa-shopping-cart.hidden {
    display: none;
}


header .fa-bars:hover, .social a.menu-item:hover, .social a .fa:hover {
    background: rgba(255,255,255,8);
    color: rgb(32,32,32);
}

.social a.menu-item {
    margin-right: 0px;
    display: inline-block;
    text-decoration: none;
    -text-transform: uppercase;
    padding: 0px 10px;
    width: auto;
}

.social a.menu-item.cta {
    background: rgb(50,170,40);
    font-weight: 500;
}

.social a.menu-item.cta.Ukraine {
    background: linear-gradient(180deg, rgba(58,117,196,1) 50%, rgba(249,221,21,1) 50%);
    color: rgb(0,0,0);
}

.social a.menu-item.cta:hover {
    color: rgb(50,170,40);
    background: rgb(255,255,255);
    border: 1px solid rgb(50,170,40);
}

.social a.menu-item.cta.Ukraine:hover {
    background: rgb(58,117,196);
    border: 1px solid rgb(58,117,196);
    color: rgb(249,221,21);
}

.social a .fa-send {
    margin-left: 40px;
}

header nav.white .social a {
    color: rgb(32,32,32);
}

header nav.white .social a.menu-item, header nav.white .social a .fa {
    background: rgb(230,230,230);
}

header nav.white .social a.menu-item:hover, header nav.white .social a .fa:hover {
    color: rgb(255,255,255);
    background: rgba(32,32,32,.8);
}

header nav.white .social a.menu-item.cta {
    color: rgb(255,255,255);
    background: rgb(50,170,40);
}

header nav.white .social a.menu-item.cta:hover {
    color: rgb(50,170,40);
    background: rgb(255,255,255);
    border: 1px solid rgb(50,170,40);
}

header nav.white .social a.menu-item.cta.Ukraine {
    background: linear-gradient(180deg, rgba(58,117,196,1) 50%, rgba(249,221,21,1) 50%);
    color: rgb(0,0,0);
}

header nav.white .social a.menu-item.cta.Ukraine:hover {
    background: rgb(58,117,196);
    border: 1px solid rgb(58,117,196);
    color: rgb(249,221,21);
}

header nav .social a.cart .fa {
    background: rgba(0,128,0,.8); 
    background: rgba(255, 180, 0,.9);
    -color: rgb(255,255,255);
    width: 45px; 
}

.discount {
    text-align: center;
    padding: 10px 20px;
    background: rgb(64,64,64);
    color: rgb(255,255,255);
}

.discount p {
    line-height: 20px;
    margin: 0px;
    padding: 0px;
    font-size: 18px;
    font-weight: 600;
}

.discount i {
    line-height: 20px;
    font-size: 12px;
}

.price-original {
    color: rgb(220,0,0);
    text-decoration: line-through;
}

@media only screen and (max-width: 640px) {
    
    .bg .bottom {
        height: 170px;
        padding: 0px 5% 20px 5%;        
    }

    .bg h1 {
        font-size: 30px;
        line-height: 1.2em;
        margin: 0px 0px 20px 0px;
    }

    .text.small, .text-container.small {
        padding: 40px 20px;
    }
    
    .text .column, .text .column-3 {
        width: 100%;
    }

    #gallery {
        padding: 0px 20px;
     }   

    header .fa-bars, header .fa-shopping-cart {
        display: block;
        position: absolute;
        right: 25px;
        top: 25px;
    }

    header .fa-shopping-cart {
        width: 45px;
    }
    header .fa-shopping-cart {
        right: 75px;
        background: rgb(255,180,0);
        display: none;
    }

    header nav .social {
        display: none;
        position: fixed;
        left: 0px;
        right: 0px;
        top: 0px;
        bottom: 0px;
        background: rgb(255,255,255);
        text-align: center;
        line-height: 40px;
        padding-top: 90px;
    }
    
    .menu-open {
        overflow: hidden;
        height: 100%;
    }

    .menu-open header .logo img {
        z-index: 1;
        position: relative;
        filter: inherit;
    }

    .menu-open header nav .social {
        display: block;
    }

    .menu-open header .fa-bars {
        display: none;
    }   

    .menu-open header .fa-shopping-cart {
        display: block;
        position: absolute;
        right: 25px;
        top: 25px;

    }

    .menu-open header .fa-shopping-cart.hidden {
        display: none;
    }

    header nav .social a.menu-item {
        margin: 0px;
    }

    header nav .social div {
        display: block;
    }

    header nav .social div.icons {
        margin-top: 50px;
        display: inline-block;
    }

    header nav .social a .fa {
        -display: none;
        margin: 0px;
    }  

    header nav .social a.phone {
        -margin-right: 0px;
    }   

    header .fa-shopping-cart {
        display: inline-block;
    }

    header nav .social a.cart .fa {
        display: none;
    }

    #side-dialog {
        width: 100%;
    }

}