html, body{
    position:relative;
    padding:0;
    margin:0;
    width:100%;
    min-height:100vh;
    color:rgba(0,0,0,1);
}

body *{
    font-family: 'Poiret One';
}

a{
    text-decoration:none;
    color:inherit;
}
p{
    margin:18px 8px;
    font-size:22px;
}

h1, h2, h3, h4, h5, h6{
    font-weight:normal;
    text-align:center;
}

h1{
    font-size:1.6em;
}
h3{
    /*background-color:rgba(26,32,42,1);*/
    font-size:30px;
    margin-top:30px;
    padding:4px 0;
    color:rgba(16,22,32,1);
}
article{
    margin:4px 12px 26px 12px;
}

.flex-col, .flex-row{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient:horizontal;
    -webkit-box-direction:normal;
    -ms-flex-direction:row;
    flex-direction:row;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center;
    -webkit-box-pack:center;
    -ms-flex-pack:center;
    justify-content:center;
}

.flex-col{
    -webkit-box-orient:vertical;
    -webkit-box-direction:normal;
    -ms-flex-direction:column;
    flex-direction:column;
    -webkit-box-pack:start;
    -ms-flex-pack:start;
    justify-content:flex-start;
}

#page-head{
    width:100%;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient:vertical;
    -webkit-box-direction:normal;
    -ms-flex-direction:column;
    flex-direction:column;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center;
    -webkit-box-pack:center;
    -ms-flex-pack:center;
    justify-content:center;
    background-color:rgba(245,245,250,1);
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
}
#head-content{
    width:100%;
    max-width:1100px;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient:vertical;
    -webkit-box-direction:normal;
    -ms-flex-direction:column;
    flex-direction:column;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center;
    -webkit-box-pack:center;
    -ms-flex-pack:center;
    justify-content:center;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
}
#page-head h1{
    margin: 4px;
}
#banner-image{
    width:50%;
    max-width:400px;
    margin:4px 0 12px 0;
}
#nav-bar{
    position:relative;
    width:100%;
    height:44px;
    background-color:rgba(16,22,32,1);
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient:horizontal;
    -webkit-box-direction:normal;
    -ms-flex-direction:row;
    flex-direction:row;
    -webkit-box-pack:justify;
    -ms-flex-pack:justify;
    justify-content:center;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center;
    color:white;
    padding:0;
}
#nav-content{
    position:relative;
    width:100%;
    max-width:1100px;
    height:44px;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient:horizontal;
    -webkit-box-direction:normal;
    -ms-flex-direction:row;
    flex-direction:row;
    -webkit-box-pack:justify;
    -ms-flex-pack:justify;
    justify-content:space-between;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center;
    color:white;
    padding:0;
}

#page-title{
    font-size:32px;
    margin:0 8px;

}
#nav-bar div span{
    font-size:22px;
    line-height:12px;
    padding-bottom:4px;
    text-transform: lowercase;
    margin-right:4px;
}
.nav-btn{
    cursor:pointer;
}
svg.nav-btn{
    height:18px;
    margin-right:6px;
}
#nav{
    background-color:rgba(16,22,32,1);
    color:white;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient:vertical;
    -webkit-box-direction:normal;
    -ms-flex-direction:column;
    flex-direction:column;
    width:100%;
    /*display:none;*/
}
#nav-links{
    position:absolute;
    right:0;
    top:46px;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient:vertical;
    -webkit-box-direction:normal;
    -ms-flex-direction:column;
    flex-direction:column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack:center;
    -ms-flex-pack:center;
    justify-content:center;
    background-color:rgba(16,22,32,1);
    min-width:140px;
    z-index:10;
    -webkit-box-shadow: 0 3px 4px rgba(0,0,0,0.5);
    box-shadow: 0 3px 4px rgba(0,0,0,0.5);
}
.nav-link{
    height:30px;
    min-height:30px;
}
.nav-link > * {
    margin:3px;
}
#fav-count, #cart-count{
    /*display:none;*/
    font-family:'Arial';
    font-size:11px;
    margin-left:-2px;
    margin-top:-6px;
}
.link-icon{
    height:22px;
}

body.top-margin{
    padding-top:250px;
}

.fixed-head{
    position:fixed !important;
    z-index:10;
    top:0;
    left:0;
    -webkit-transition:1s all;
    -o-transition:1s all;
    transition:1s all;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height:50px;
    -webkit-box-orient:horizontal !important;
    -webkit-box-direction:normal !important;
    -ms-flex-direction:row !important;
    flex-direction:row !important;
}
.fixed-head  img{
    display:none !important;
}
.fixed-nav{
    position:fixed !important;
    z-index:10;
    top:50px;
    left:0;
    -webkit-box-shadow:0 3px 5px 0 rgba(0,0,0,0.4);
    box-shadow:0 3px 5px 0 rgba(0,0,0,0.4);
    -webkit-transition:1s all;
    -o-transition:1s all;
    transition:1s all;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.gallery{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient:horizontal;
    -webkit-box-direction:normal;
    -ms-flex-direction:row;
    flex-direction:row;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center;
    -ms-flex-pack:distribute;
    justify-content:space-around;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
}
.gallery-image{
    position:relative;
    padding:12px;
    margin:20px 40px 40px 40px;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
    max-width:290px;
    -webkit-box-shadow:0 0 8px rgba(0,0,0,0.4);
    box-shadow:0 0 8px rgba(0,0,0,0.4);
}

.gallery-image.deleted{
    background-color:rgba(200,50,50,1);
}

img[class^='thumb-']{
    cursor:pointer;
}
.thumb-1{
    width:220px;
}
.thumb-2{
    width:100%;
}
.gallery-image h3{
    margin:8px 2px;
    font-size:1.6em;
    color:rgba(120,120,130,1);
    text-decoration:underline;
    text-align:center;
}
.gallery-image p{
    color:rgba(16,22,32,1);
    margin:3px 2px;
}
.gallery p.price{
    font-size:0.8em;
}

.gallery-image .location{
    font-size:14px;
    margin-bottom:10px;
}
img.favorite-btn{
    position:absolute;
    bottom:2px;
    right:2px;
    width:24px;
    cursor:pointer;
    background-color:rgba(180,180,180,1);
}
img.favorite-btn.favorite{
    background-color:rgba(100, 150, 120,1);
}
img.remove-favorite-btn{
    position:absolute;
    bottom:2px;
    right:2px;
    width:24px;
    cursor:pointer;
}
section.info{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient:vertical;
    -webkit-box-direction:normal;
    -ms-flex-direction:column;
    flex-direction:column;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center;
    -webkit-box-pack:center;
    -ms-flex-pack:center;
    justify-content:center;
}
section.info>*{
    -webkit-box-flex:1;
    -ms-flex:1;
    flex:1;
}

input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]), select, textarea {
    font-size: 16px;
    line-height: 1.1em;
    height: 22px;
    border: 0;
    background-color: white;
    position: relative;
    color: rgba(51,63,87,1);
    text-align: left;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    padding-left: 3px;
    /*min-width:280px;*/
    /*min-width:110px;*/
    border: 1px solid rgba(190,190,190,1);
}

div.input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    position: relative;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    border: 1px solid rgba(190,190,190,1);
    background-color: #FFFFFF;
    min-height: 36px !important;
    line-height: 36px;
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
    margin: 3px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index:3;
}

#contact-form > *{
    max-width:800px;
}
#contact-form .input{
    max-width:284px;
}
#contact-form input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]),#contact-form select,#contact-form textarea {
    width:280px;
    max-width:280px;
}

div.input>input[type="text"],div.input>input[type="password"],div.input>input[type="email"],div.input>textarea,div.input>select {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 0 !important;
    outline: none !important;
    background-color: transparent !important;
    height: 34px !important;
    font-size: 16px !important;
    color: rgba(90,90,90,1) !important;
    width: 100%; /*calc(100% - 2px);*/
    padding-left: 3px;
    margin: 0 !important;
    z-index: 2;
}

div.input>textarea {
    padding-top: 6px;
    min-height:200px;
    overflow-y:auto;
}

div.input>input[type="text"]:focus,div.input>input[type="password"]:focus,div.input>input[type="email"]:focus,div.input>textarea,div.input>select:focus {
    -webkit-box-shadow: none !important;
    box-shadow: none !important
}

div.input.populated>input[type="text"],div.input.populated>input[type="password"],div.input.populated>input[type="email"] {
    padding-top: 10px;
    padding-left: 6px
}

div.input>select {
    padding-top: 11px
}

div.input.populated>textarea {
    padding-top: 14px
}

.gallery-image input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]),.gallery-image select,.gallery-image textarea {
    width:280px !important;
    max-width:280px !important;
}
.gallery-image textarea {
    height:80px !important;
    min-height:60px !important;
}


label {
    -ms-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: bold;
    padding: 0;
    margin: 6px 2px 6px 4px;
    display: inline-block;
    border: 0;
}

div.input>label {
    position: absolute;
    left: 3px;
    top: 0;
    color: rgba(170,170,170,1) !important;
    -webkit-text-shadow: none !important;
    -moz-text-shadow: none !important;
    text-shadow: none !important;
    letter-spacing: 2px !important;
    font-size: 14px !important;
    margin: 0 !important;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
    z-index: 1;
}

div.input.populated>label {
    top: 2px;
    font-size: 9px !important;
    line-height: 8px !important;
    color: rgba(135,135,135,1) !important
}

.btn{
    border:none;
    outline:none;
    background-color:rgba(16,22,32,1);
    font-size:20px;
    color:white;
    padding:10px 20px;
    min-width:180px;
    cursor:pointer;
    text-align:center;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
}

.modal-container {
    position: fixed;
    height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.25);
    z-index: 102;
}

#modal {
    background-color: white;
    width: 270px;
    height: calc(100% - 40px);
    max-width: 800px;
    max-height: 600px;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
#modal-title{
    background-color:rgba(16,22,32,1);
    color:#FFFFFF;
}

.close-btn {
    top: -20px;
    right: -20px;
    height: 32px;
    width: 32px;
    border-radius: 100%;
    position: absolute;
    background-color:rgba(26,32,42,1);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.close-svg {
    height: 20px;
    width: 20px;
    position: absolute;
    cursor: pointer;
}

.close-x {
    fill: #FFFFFF;
}

#modal h3 {
    color: #ffffff;
    margin: 0;
    padding: 10px 4px;
    display: block;
    background-color: rgba(120, 120, 120, 1);
}

#modal-body {
    overflow-y: auto;
    color: rgba(120, 120, 120, 1);
    /*height: calc(100% - 78px);*/
    /*padding-right: 20px;*/
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.modal-error {
    max-width: 300px !important;
    height: auto !important;
    tex-align: center;
}

.modal-error #modal-body {
    text-align: center;
    padding: 12px;
}

#preview-img{
    -webkit-transition:1s all;
    -o-transition:1s all;
    transition:1s all;
}
.r90{
    -webkit-transform: rotateZ(90deg);
    -ms-transform: rotate(90deg);
    transform: rotateZ(90deg);
}
.r90cc{
    -webkit-transform: rotateZ(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotateZ(-90deg);
}
.r180{
    -webkit-transform: rotateZ(180deg);
    -ms-transform: rotate(180deg);
    transform: rotateZ(180deg);
}


#perspective-wrapper{
    position:relative;
    -webkit-transition: 2s ease-in; /* Safari */
    -o-transition:2s ease-in;
    transition:2s ease-in;
}

.pushback{
    opacity:0;
    -ms-transform: scale(0.05) rotateX(-180deg); /* IE 9 */
    -webkit-transform: scale(0.05) rotateX(-180deg); /* Chrome, Safari, Opera */
    transform: scale(0.05) rotateX(-180deg);
    -webkit-transition: all 2s ease-in-out; /* Safari */
    -o-transition: all 2s ease-in-out;
    transition: all 2s ease-in-out;
}
.pullout{
    opacity:0;
    -ms-transform: scale(30) rotateX(0deg); /* IE 9 */
    -webkit-transform: scale(30) rotateX(0deg); /* Chrome, Safari, Opera */
    transform: scale(30) rotateX(0deg);
    -webkit-transition: all 0.1s; /* Safari */
    -o-transition: all 0.1s;
    transition: all 0.1s;
}


@media (min-width: 450px){
    #modal {
        width: 425px;
    }
    .nav-btn{
        display:none;
    }
    #nav-links{
        position:relative;
        right:0;
        top:0;
        display:-webkit-box !important;
        display:-ms-flexbox !important;
        display:flex !important;
        -webkit-box-orient:horizontal;
        -webkit-box-direction:normal;
        -ms-flex-direction:row;
        flex-direction:row;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack:center;
        -ms-flex-pack:center;
        justify-content:center;
        background-color:rgba(16,22,32,1);
        min-width:140px;
        z-index:10;
        -webkit-box-shadow: 0 3px 4px rgba(0,0,0,0.5);
        box-shadow: 0 3px 4px rgba(0,0,0,0.5);
    }
    .nav-link{
        margin-right:16px;
    }
    .nav-link span.link-label{
        display:none;
    }

    input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]), select, textarea {
        min-width:120px;
    }

}
#info{
    max-width:1100px;
}

@media (min-width: 650px) {
    #modal {
        width: 625px;
    }
}

@media (min-width:750px){
    .gallery-image{
        margin:20px 40px 40px 40px;
    }
}
@media (min-width: 800px) {
    #page-head{
        -webkit-box-orient:horizontal;
        -webkit-box-direction:normal;
        -ms-flex-direction:row;
        flex-direction:row;
        -webkit-box-pack:justify;
        -ms-flex-pack:justify;
        justify-content:center;
    }

    #head-content{
        width:100%;
        max-width:1100px;
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
        -webkit-box-orient:horizontal;
        -webkit-box-direction:normal;
        -ms-flex-direction:row;
        flex-direction:row;
        -webkit-box-pack:justify;
        -ms-flex-pack:justify;
        justify-content:space-between;
        -webkit-box-sizing:border-box;
        box-sizing:border-box;
    }

    #head-content>*{
        margin:12px;
    }
    #head-content>h1{
        /*margin-left:80px;*/
        font-size:32px;
    }
    section.info{
        -webkit-box-orient:horizontal;
        -webkit-box-direction:normal;
        -ms-flex-direction:row;
        flex-direction:row;
    }
    h3{
        text-align:left;
    }
    #modal {
        width: 780px;
    }
}
@media (min-width: 1000px) {
    #head-content>h1{
        /*margin-left:130px;*/
        font-size:38px;
    }
    #modal {
        width: 780px;
    }
}