#mainContent .gallery-section {
    transition: all .1s ease-in-out;
    background: var(--black);
    color: var(--white);
}

.gallery-section {
    overflow: hidden;
    position: relative;
}

.gallery-section .explore-prompt {
    background-color: var(--brand-color);
    border-radius: 2px;
    box-shadow: 0 0 5px #777;
    color: #1f1f1f;
    font-size: 12px;
    font-weight: 500;
    height: 115px;
    opacity: .9;
    padding-top: 65px;
    position: absolute;
    right: 0;
    text-align: center;
    text-decoration: none;
    top: calc(50% - 58px);
    transition: right .3s, background-color .3s;
    width: 70px;
}

.gallery-section .explore-prompt:hover { opacity: .97; }

    .gallery-section .explore-prompt .decor {
        border-bottom: solid 3px #4a4a4a;
        border-right: solid 3px #4a4a4a;
        height: 30px;
        position: absolute;
        left: 15px;
        right: 25px;
        top: 20px;
        transform: rotate(-45deg);
    }

.gallery-section.open .explore-prompt {
    background-color: #ffffff;
    opacity: .97;
    right: 518px;
    transition: right .3s, background-color .3s;
}

.gallery-section.open .explore-prompt .decor { border-color: #a0a0a0; }

#mainContent section.gallery-section > h1,
#mainContent section.gallery-section > h1 > select {
    font-family: var(--main-font-family);
    font-size: 20px;
    font-weight: 300;
    letter-spacing: -.5px;
    line-height: 115%;
    margin: 3px 20px 5px 0;
}

#mainContent section.gallery-section > h1 > select {
    font-size: 90%;
    font-weight: 300;
    height: 36px;
    letter-spacing: 0;
    margin: 0 0 0 10px;
    padding: 0 5px;
}

section.gallery-section {
    -webkit-transition-duration: .1s;
    border-radius: 2px;
    padding: 0;
    position: relative;
    transition-duration: .1s;
    transition-property: opacity;
}

section.gallery-section .background {
    background-position: 50% 50%;
    background-size: cover;
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
}

section.gallery-section.open .background { }

section.gallery-section img { max-height: 600px; }

section.gallery-section .toolbar {
    align-items: center;
    background: white;
    border-style: dashed;
    display: flex;
    justify-content: space-between;
    opacity: .95;
    padding: 10px;
    position: absolute;
    top: 0;
    width: 100%;
}

section.gallery-section .toolbar > * { flex-grow: 1; }

section.gallery-section .toolbar select {
    border: solid 2px #6ba2b9 !important;
    color: #0067a5;
    display: inline-block;
    font-family: var(--main-font-family);
    font-size: 16px;
    font-weight: 700;
    height: 35px !important;
    vertical-align: middle;
}

section.gallery-section .toolbar .step2 {
    display: inline-block;
    margin-left: 20px;
    max-width: 200px;
    vertical-align: middle;
}

section.gallery-section .toolbar h1 {
    font-family: var(--main-font-family);
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -1px;
    margin: 0 0 10px 0;
    padding: 0;
}



section.gallery-section .toolbar .build-progress-panel {
    position: relative;
    top: -2px;
}

section.gallery-section .toolbar .build-progress-panel h2 {
    color: #019801;
    font-size: 15px;
    font-weight: 400;
    position: relative;
    top: -2px;
}

section.gallery-section .toolbar .build-progress-panel .build-progress {
    align-items: flex-start;
    background: gray;
    display: flex;
    height: 2px;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
    top: 2px;
    width: 100%;
}

section.gallery-section .toolbar .build-progress-panel .build-progress .s {
    flex-grow: 1;
    font-family: 'roboto condensed', roboto, sans-serif;
    font-size: 11px;
    line-height: 100%;
    padding-top: 12px;
    position: relative;
}

section.gallery-section .toolbar .build-progress-panel .build-progress .s.next-step a { text-decoration: underline; }

section.gallery-section .toolbar .build-progress-panel .build-progress .s label {
    display: block;
    text-align: center;
}

section.gallery-section .toolbar .build-progress-panel .build-progress .s .n {
    background: white;
    border: solid 1.5px black;
    border-radius: 30px;
    display: block;
    font-size: 16px;
    height: 20px;
    left: calc(50% - 10px);
    line-height: 18px;
    position: absolute;
    text-align: center;
    top: -10px;
    width: 20px;
    z-index: 11;
}

section.gallery-section .toolbar .build-progress-panel .build-progress .s.completed .n {
    background-color: #03b103;
    border-color: #03b103;
    color: white;
}

section.gallery-section .toolbar .build-progress-panel .actual-progress {
    background: #03b103;
    border-radius: 2px;
    display: block;
    height: 6px;
    position: absolute;
    width: 25%;
    z-index: 10;
}

#mainContent .gallery-section ul.possible-designs {
    margin: 0;
    padding: 0;
}

#mainContent .gallery-section ul.possible-designs li {
    display: inline-block;
    margin: 0;
    padding: 0;
}

#mainContent .gallery-section ul.possible-designs.multiple li img {
    border-radius: 3px;
    height: 207px;
    transition: filter .5s;
    width: 160px;
}

#mainContent .gallery-section ul.possible-designs.single li img {
    border-radius: 2px;
    opacity: .9;
}

#mainContent .gallery-section ul.possible-designs { margin-top: 12px; }

#mainContent .gallery-section:not(:hover) .possible-designs.multiple {
    filter: grayscale(100%);
    position: relative;
    transition: all .1s ease-in-out;
}

#mainContent .gallery-section ul.possible-designs.multiple li img:hover {
    cursor: zoom-in;
    transform: scale(1.1);
    transition: all .1s ease-in-out;
    z-index: 10;
}

#mainContent .gallery-section ul.possible-designs.multiple li img:active {
    cursor: pointer;
    cursor: zoom-out;
    transform: scale(4);
    transition: all .1s ease-in-out;
    z-index: 10;
}


.gallery-section a.active-option {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAIUlEQVQoU2O8ffu2LwMRgBGkUFVVdTMhtaMK8YYQ0cEDAO63JulOwqN5AAAAAElFTkSuQmCC) repeat;
    border-radius: 2px;
    display: inline-block;
    font-size: 90%;
    font-weight: 400;
    height: 31px;
    margin-left: 20px;
    padding: 5px 30px;
}