:root {
    --customcol-off-fore:rgb(22, 22, 22);
    --customcol-off-shadow:rgb(0, 0, 0);
    --customcol-red-fore:rgb(255, 219, 219);
    --customcol-red-shadow:rgb(255, 80, 80);
    --customcol-blue-fore:rgb(219, 221, 255);
    --customcol-blue-shadow:rgb(83, 80, 255);
    --customcol-green-fore:rgb(219, 255, 222);
    --customcol-green-shadow:rgb(86, 255, 80);
    --customcol-white-fore:rgb(255, 255, 255);
    --customcol-white-shadow:rgb(133, 133, 133);
    --customcol-yellow-fore:rgb(253, 255, 219);
    --customcol-yellow-shadow:rgb(251, 255, 0);
    --customcol-cyan-fore:rgb(219, 254, 255);
    --customcol-cyan-shadow:rgb(0, 217, 255);
    --customcol-pink-fore:rgb(255, 219, 252);
    --customcol-pink-shadow:rgb(255, 80, 240);
    --varcol-fore:var(--customcol-off-fore);
    --varcol-shadow:var(--customcol-off-shadow);
    --shadow-blur:7px;
    --cctransition-duration: 1s;
    --header-font: 'Quicksand', sans-serif;
    --content-font: 'Montserrat', sans-serif;
    --standard-border-radius:50px;
}
*{
    box-sizing: border-box;
}
html {
	height:100%;
}
body {
	font-family: var(--content-font);
    background-color: rgb(0, 0, 0);
    color: var(--varcol-fore);
    height:100%;
    margin:0;
}
.container {
    display:flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    filter: drop-shadow(0px 0px var(--shadow-blur) var(--varcol-shadow));
    transition: color var(--cctransition-duration), filter var(--cctransition-duration), border var(--cctransition-duration);
    height:100%;
    margin:auto 5px;
}
.header {
    border: 2px solid var(--varcol-fore);
    border-top-right-radius: 20vw;
    border-top-left-radius: 20vw;
    border-bottom-width: 0;
    flex:0 1 auto;
    -webkit-flex:0 1 auto;
    padding:0 30px;
    transition: border var(--cctransition-duration);
}
.videoContainer{
    width:80%;
    display:block;
    border:2px solid var(--varcol-fore);
    transition: border var(--cctransition-duration);
    margin:auto;
    border-radius: 15px;
}
.navigation {
    display:block;
    justify-content: space-around;
}
.navigation a{
    font-family: var(--header-font);
    font-size:16pt;
    display:block;
    text-align:center;
    padding:5px 8px;
    margin:4px 10px;
    border-radius: var(--standard-border-radius);
    border: 2px solid var(--varcol-fore);
    text-decoration: none;
    color: var(--varcol-fore);
    transition: color var(--cctransition-duration), border var(--cctransition-duration);
}
.navigation a:hover {
    color: var(--varcol-shadow);
}
.body{
    border: 2px solid var(--varcol-fore);
    border-top-width: 0;
    border-bottom-width: 0;
    flex: 1 1 auto;
    -webkit-flex: 1 1 auto;
    padding:0 30px;
    transition: border var(--cctransition-duration);
}
.footer{
    border: 2px solid var(--varcol-fore);
    border-top-width: 0;
    border-bottom-width: 0;
    flex: 0 1 40px;
    -webkit-flex: 0 1 40px;
    text-align: center;
    padding:0 30px;
    transition: border var(--cctransition-duration);
}
.container img {
    border-radius: 15px;
    border: 2px solid var(--varcol-fore);
    transition: border var(--cctransition-duration);
}
.img_gallery {
    display:flex;
    justify-content: center;
    flex-wrap:wrap;
    -webkit-flex-wrap:wrap;
}
.img_gallery img{
    margin:2px;
    cursor: pointer;
    width:90px;
    height:90px;
    flex-basis: 90px;
    -webkit-flex-basis: 90px;
}
.container a{
    color:inherit;
}
h1, h2, h3{
    text-align: center;
    font-family: var(--header-font);
}
.logoContainer {
    width: 50%;
    margin:auto;
}
.address-block {
    text-align: center;
}
.contact-form {
    font-size:14pt;
}
input, textarea, select{
    background-color: transparent;
    font-size: 14pt;
    color: var(--varcol-fore);
    border: 2px solid var(--varcol-fore);
    padding: 5px 10px;
    border-radius:25px;
    transition: color var(--cctransition-duration), border var(--cctransition-duration);
}
input:disabled {
    border: 2px solid rgba(255,255,255,0.1);
}
input[type=button] {
    font-family: var(--header-font);
    font-weight: bold;
}
.contact-form.success, .infoHeader {
    text-align: center;
    border: 2px solid var(--varcol-fore);
    padding: 10px;
    border-radius: var(--standard-border-radius);
    margin: 5px auto;
}
.errorInfo {
    text-align: center;
    border: 2px solid var(--varcol-fore);
    padding: 10px;
    border-radius: var(--standard-border-radius);
    background-color: rgba(255,0,0,0.2);
}
.errorInfo:empty{
    display:none;
}
.errorHighlight {
    background-color: rgba(255,0,0,0.2) !important;
}
select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right:30px;
    font-family: var(--content-font);
}
select::-ms-expand {
    display:none;
}
select option{
    background-color: black;
}
textarea {
    width:100%;
    height:8em;
}
.infoButton {
    cursor:pointer;
    font-family:var(--header-font);
}
.infoButton:hover {
    color: var(--varcol-shadow);
}
.selectline::after {
    content:"⯆";
    position: relative;
    right: 25px;
    pointer-events: none;
}
.formline {
    margin: 8px 0;
}
.storePage {
    display:block;
}
.interface {
    text-align: center;
    padding:10px;
    border: 2px solid var(--varcol-fore);
    border-radius: var(--standard-border-radius);
    margin:5px auto;
}
.interface .price {
    font-size:20pt;
    font-family:var(--header-font);
}
.mainImgDiv img{
    width:80%;
    display: block;
    margin:auto;
    cursor:pointer;
}
.gallery {
    display:flex;
    justify-content: center;
}
.gallery img {
    width:90px;
    height:90px;
    flex-basis: 90px;
    -webkit-flex-basis: 90px;
    cursor:pointer;
}
.designName {
    font-weight:bold;
    font-family: var(--header-font);
}
.cPickContainer {
    display:flex;
    justify-content: center;
    align-items: center;
    position:fixed;
    top:0px;
    left:-195px;
    padding:4px 0;
    background-color: rgba(0,0,0,0.7);
    border-bottom-right-radius:12px;
    transition: left 0.5s;
    z-index:99;
}
#cPickToggle:checked + .cPickContainer {
    left:0px;
}
.cPickContainer label {
    font-size:16pt;
    text-align: center;
    width:25px;
    color:rgba(255,255,255,0.3);
    cursor:pointer;
    transition: color 0.5s;
}
.cPickContainer label:hover {
    color:rgba(255,255,255,1);
}
.cPick{
    width:20px;
    height:20px;
    border-radius:20px;
    cursor: pointer;
    display: inline-block;
    margin:0 4px;
}
.cPick.red{
    background-color: var(--customcol-red-shadow);
}
.cPick.blue{
    background-color: var(--customcol-blue-shadow);
}
.cPick.green{
    background-color: var(--customcol-green-shadow);
}
.cPick.white{
    background-color: var(--customcol-white-shadow);
}
.cPick.yellow{
    background-color: var(--customcol-yellow-shadow);
}
.cPick.cyan{
    background-color: var(--customcol-cyan-shadow);
}
.cPick.pink{
    background-color: var(--customcol-pink-shadow);
}
#cPickToggle {
    display:none;
}
.interface{
    display:flex;
    flex-direction: column;
    -webkit-flex-direction: column;
}
.interface > div {
    flex:0 1 auto;
    -webkit-flex:0 1 auto;
}
.interface > div:last-child{
    display:flex;
    flex: 1 1 auto;
    -webkit-flex: 1 1 auto;
    justify-content: center;
    align-items: end;
}
@media screen and (min-width: 610px) {
    .navigation {
        display:flex;
    }
    
}
@media screen and (min-width: 765px) {
    .display {
        display:flex;
        justify-content: space-between;
    }
    .imageDiv{
        width:60%;
    }
    .mainImgDiv img{
        width:100%;
    }
    .videoContainer{
        width:400px;
    }
}
@media screen and (min-width: 1000px) {
    .container {
        width:990px;
        margin: auto;
    }
    .header {
        border-top-right-radius: 200px;
        border-top-left-radius: 200px;
    }
    .img_gallery img{
        flex-basis: 150px;
        -webkit-flex-basis: 150px;
        width:150px;
        height:150px;
    }
}