@import url(https://fonts.googleapis.com/css?family=Space+Mono:400,700);
@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700);

* {
    box-sizing: border-box;
}

body {
    font-family: Source Sans Pro,sans-serif;
}

body, html {
    width: 100%;
    height: 100%;
}

body {
    margin: 0;
    overflow: hidden;
}

#app {
    width: 100%;
    height: 100%;
    position: relative;
}

.helper {
    background: red;
}

button {
    border: 0;
}

.renderer {
    width: 100%;
    height: 100%;
    position: absolute;
}

    .renderer > canvas {
        position: absolute;
        top: 0;
    }

.transparentBG {
    background-image: -moz-linear-gradient(45deg,#eee 25%,transparent 25%),-moz-linear-gradient(-45deg,#eee 25%,transparent 25%),-moz-linear-gradient(45deg,transparent 75%,#eee 75%),-moz-linear-gradient(-45deg,transparent 75%,#eee 75%);
    background-image: -webkit-gradient(linear,0 100%,100% 0,color-stop(.25,#eee),color-stop(.25,transparent)),-webkit-gradient(linear,0 0,100% 100%,color-stop(.25,#eee),color-stop(.25,transparent)),-webkit-gradient(linear,0 100%,100% 0,color-stop(.75,transparent),color-stop(.75,#eee)),-webkit-gradient(linear,0 0,100% 100%,color-stop(.75,transparent),color-stop(.75,#eee));
    -moz-background-size: 15px 15px;
    background-size: 15px 15px;
    -webkit-background-size: 15px 15px;
    background-position: 0 0,15px 0,15px -15px,0 15px;
}

.dropzone-holder {
    background: rgba(73,23,222,.15);
    z-index: 2;
    bottom: 1rem;
    right: 1rem;
}

    .dropzone-holder, .dropzone-holder .dropzone {
        width: 100%;
        display: flex;
        justify-content: center;
    }

        .dropzone-holder .dropzone {
            color: #fff;
            font-size: 80%;
            text-align: center;
            align-items: center;
        }

            .dropzone-holder .dropzone.loading {
                background: linear-gradient(105deg,rgba(73,23,222,.15),rgba(73,23,222,.15) 35%,rgba(73,23,222,.35) 0,rgba(73,23,222,.35) 74%,rgba(73,23,222,.15) 75%,rgba(73,23,222,.15)) repeat;
                background-size: 6% 100%;
                animation-name: moving-gradient;
                animation-duration: 10s;
                animation-iteration-count: infinite;
                animation-timing-function: linear;
            }

        .dropzone-holder p {
            margin: 0;
            display: inline-block;
            vertical-align: middle;
        }

        .dropzone-holder .dropzone-inner {
            flex: 1;
        }

        .dropzone-holder svg {
            width: 40px;
            margin: auto;
            display: inline-block;
            vertical-align: middle;
            margin-right: 1rem;
        }

            .dropzone-holder svg * {
                fill: #fff;
            }

@keyframes moving-gradient {
    0% {
        background-position: 0 100%;
    }

    to {
        background-position: 100% 100%;
    }
}

.thumb-holder {
    text-align: center;
    padding: 1rem;
    overflow-y: hidden;
    overflow-x: auto;
}

.thumb {
    width: 50px;
    margin-right: .5rem;
    background: transparent;
    height: 89px;
    margin-bottom: 10px;
    overflow: hidden;
    padding: 0;
    background: rgba(0,0,0,.25);
}

    .thumb img {
        width: 100%;
        display: block;
    }

button, input, textarea {
    outline: none;
}

nav.sidebar-holder {
    display: flex;
    width: 1000px;
    background: rgba(0,0,0,.25);
    top: 0;
    padding: 1rem;
    padding-bottom: 4rem;
    overflow: auto;
    display: none;
}

.sidebar-holder h2 {
    font-size: 1rem;
    margin-top: 0;
}

.sidebar-item {
    padding: 1rem 0;
}

.position-holder {
    display: flex;
}

.color-holder button {
    width: 50px;
    height: 50px;
    text-indent: -99999px;
    overflow: hidden;
}

.ui-input {
    border: none;
    outline: none;
    border-radius: 17px;
    padding: 0 15px;
    height: 30px;
    margin-left: 10px;
    max-width: 80px;
}

svg {
    cursor: pointer;
}

.uploaded-image-holder {
    display: flex;
    flex-flow: row wrap;
}

    .uploaded-image-holder .thumb {
        margin-right: 1%;
        margin-bottom: 1%;
        max-width: 32.3%;
    }

    .uploaded-image-holder img {
        width: 100%;
        height: auto;
        display: block;
    }

.ui-button {
    cursor: pointer;
}

.iphone-scene {
    width: 100vw;
    height: 100%;
    position: relative;
    flex-direction: column;
}

.panel {
    margin: 0 20px;
    padding: 0;
    height: 100%;
}

.panel-holder {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 30px;
    left: 0;
    z-index: 9999;
}

.panel {
    border-radius: 8px;
    position: relative;
    padding: 0 15px;
    height: 55px;
}

.panelColor {
    margin-right: 20px;
}

.panel .logo {
    display: none;
}

.panelPerspective button {
    background: transparent;
    border: 0;
}

    .panelPerspective button svg {
        width: 21px;
        height: auto;
        display: block;
        margin: 0 .25rem;
    }

        .panelPerspective button svg * {
            fill: #0047ff;
        }

.panelPerspective-positions {
    margin-right: 1rem;
    display: flex;
}

.panelColor > button {
    height: 35px;
    width: 35px;
    padding: 0;
    border-radius: 100%;
    margin: 0 5px;
    cursor: pointer;
    transition: .2s ease;
    box-shadow: 0 0 .4rem 0 rgba(0,0,0,.2);
}

    .panelColor > button:hover {
        transform: scale(1.05);
    }

button.transparent-color {
    background: #fff;
}

    button.transparent-color:after {
        content: "";
        display: block;
        width: 100%;
        height: 2px;
        background: tomato;
        transform: rotate(-45deg);
    }

.settings-holder button {
    background: transparent;
    width: 50px;
}

    .settings-holder button svg * {
        fill: #fff;
    }

.button-holder {
    position: absolute;
    bottom: 0;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.button-row {
    display: flex;
}

.video-controls {
    width: 100%;
}

.bigButton {
    background: -webkit-linear-gradient(left,#4917de,#4917de);
    color: #fff;
    font-size: 18px;
    padding: 1rem;
    display: inline-block;
    outline: none;
    border: 0;
    white-space: nowrap;
    box-shadow: 0 3px 7px rgba(0,0,0,.1);
    position: relative;
    font-family: Space Mono,monospace;
    cursor: pointer;
    transition: .2s ease;
}

    .bigButton:hover, .smallButton:hover {
        background: -webkit-linear-gradient(left,#ff047a 1%,#ffd80d);
    }

.table-cell.video-controls {
    min-width: 50%;
    width: 50%;
}

.videoControls {
    position: relative;
    bottom: 0;
    z-index: 9;
    background: rgba(0,0,0,.3);
    width: 100%;
    padding: 0;
    display: inline-block;
    vertical-align: middle;
}

button.playButton {
    width: 35px;
    height: 35px;
    line-height: 45px;
    background: transparent;
}

    button.playButton svg {
        display: block;
        width: 100%;
        height: auto;
    }

.seek {
    width: calc(100% - 50px);
    height: 5px;
    right: 1rem;
}

.seek, .seek-time {
    background: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}

.seek-time {
    width: 15px;
    height: 15px;
    border-radius: 50%;
}

.smallButton {
    font-size: 12px;
    background: #979797;
    border-radius: 17px;
    height: 35px;
    padding: 0 20px;
    line-height: 29px;
    margin-left: 14px;
    position: relative;
    cursor: pointer;
    color: #fff;
    font-weight: 500;
    transition: .2s ease;
}

.file-upload {
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
}

svg.LogoIcon {
    width: 150px;
    height: auto;
    display: block;
}

svg.rotateIcon {
    width: 37px;
}

svg.frameIcon, svg.rotateIcon {
    height: auto;
    display: block;
    margin: auto;
}

svg.frameIcon {
    width: 30px;
}

svg.iPhone-environmentIcon, svg.iPhone_black_white {
    width: 20px;
    height: auto;
    display: block;
    margin: auto;
}

.button-holder {
    position: relative;
    width: auto;
}

.download-button, .panel-inner {
    width: auto;
    display: flex;
    background: #fff;
    box-shadow: 0 4px 54px rgba(0,0,0,.15);
    border-radius: 24px;
    height: 70px;
    justify-content: center;
    align-items: center;
}

.download-button {
    width: 70px;
    color: #fff;
    margin-left: 20px;
    cursor: pointer;
}

    .download-button > img {
        width: 23px;
        margin-bottom: -3px;
        transition: .2s ease;
    }

    .download-button:hover > img {
        transform: translateY(1px);
    }

.thumb {
    width: 30px;
    border-radius: 6px;
    height: 50px;
    margin-bottom: 0;
}

.dropzone-inner, .upload-design {
    padding: 0 20px;
    background: #0047ff;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    border-radius: 50px;
    height: 42px;
}

    .dropzone-inner > p {
        height: 100%;
        line-height: 42px !important;
        font-weight: 400;
        line-height: normal;
        font-size: 14px;
        letter-spacing: 1px;
    }

.thumb-holder {
    padding: 0;
    margin-right: 15px;
    margin-left: 15px;
}

.panel {
    margin: 0;
    border-left: 1px solid rgba(0,71,254,.26);
    border-radius: 0;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dropzone-holder {
    background: transparent;
}

.dragNumber {
    display: none;
}

.panelPerspective-positions {
    margin-right: 0;
}

.panel-inner {
    padding: 0 0 0 20px;
}

#logo-home {
    width: 150px;
    height: 150px;
    margin-top: -50px;
}

    #logo-home > img {
        width: 100%;
    }

.home-section {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f9f9f9;
    flex-direction: column;
    height: 100%;
}

    .home-section > p {
        max-width: 90vw;
        width: 500px;
        font-size: 20px;
        text-align: center;
        margin: 40px 0;
    }

.introLeft > div > div.contactus {
    font-size: 28px;
    background: #0047ff;
    color: #fff;
    padding: 10px 5px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 3px 7px rgba(0,0,0,.13);
    transition: .3s ease;
    display: inline-block;
    font-family: Source Sans Pro;
    letter-spacing: 2px;
    padding-left: 20px;
    padding-right: 20px;
}

    .introLeft > div > div.contactus p {
        margin: 0;
    }

    .introLeft > div > div.contactus:hover {
        transform: translateY(-3px);
        box-shadow: 0 3px 14px rgba(0,0,0,.2);
    }

div.contact-info {
    text-align: left;
}

button.disabled {
    opacity: .2 !important;
    pointer-events: none !important;
}

.undText {
    color: #0047ff;
    font-size: 10px;
    margin-top: 5px;
    font-weight: 300;
}

.settings-holder > button > svg {
    margin-bottom: 4px;
}

.settings-holder-button {
    width: 55px;
}

button {
    cursor: pointer !important;
}

@keyframes fadeInIntro {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#pickWrapper {
    position: relative;
}

#cPickButton {
    height: 35px;
    width: 35px;
    padding: 0;
    border-radius: 100%;
    margin: 0 5px;
    cursor: pointer;
    transition: .2s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1.2px solid #0047ff;
}

    #cPickButton > img {
        width: 19px;
    }

::-webkit-input-placeholder {
    color: rgba(0,0,0,.19);
}

#pickInner {
    position: absolute;
    left: -80px;
    top: -170px;
    z-index: 20;
}

.colorButton {
    height: 30px;
    width: 30px;
    padding: 0;
    border-radius: 100%;
    margin: 0 5px;
    cursor: pointer;
    transition: .2s ease;
    border: 1px solid #e3e3e3;
}

.ColorPicker {
    background: #fff;
    border-radius: 10px;
    border: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 130px;
    box-shadow: 4px 0 1rem 0 rgba(0,0,0,.4);
    padding: 0 30px;
}

#applyHex {
    width: 70px;
    height: 30px;
    padding: 9px 14px;
    background: #43414f;
    color: #fff;
    border-radius: 10px;
    margin-top: 20px;
    margin-left: 20px;
    font-size: 13px;
    line-height: 10px;
}

.panelColor > button {
    border: 1px solid #e3e3e3;
    box-shadow: none;
}

.bottomColorPicker, .topColorPicker {
    display: flex;
}

#colorHexInput {
    height: 30px;
    margin-top: 20px;
    border-radius: 10px;
    border: 0;
    box-shadow: 0 0 .4rem 0 rgba(0,0,0,.2);
    width: 140px;
    padding: 0 10px;
    color: #000;
    font-size: 13px;
    text-align: center;
    letter-spacing: 2px;
}

#infoLogo {
    position: fixed;
    left: 30px;
    bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    z-index: 999999;
}

    #infoLogo > img {
        width: 42px;
        margin-bottom: 5px;
        transition: .3s ease;
    }

    #infoLogo:hover > img {
        transform: translateY(-5px);
    }

    #infoLogo > span {
        line-height: normal;
        font-size: 16px;
        font-weight: 600;
        color: #0047ff;
        text-decoration-line: underline;
    }

#burger {
    cursor: pointer;
    z-index: 9999;
    transition: .5s ease;
    width: 25px;
    height: 25px;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 999999;
    display: none;
    transform: scale(1.1);
}

    #burger > span {
        width: 25px;
        height: 4px;
        background: #0047ff;
        display: block;
        border-radius: 3px;
        transition: .4s ease;
    }

        #burger > span:nth-child(2) {
            margin: 3px 0;
            width: 21px;
            margin-left: 2px;
        }

.burgerActive {
    transform: scale(1.4) !important;
}

    .burgerActive > span:first-child {
        transform: rotate(45deg) translate(5px,6px);
        width: 21px;
    }

    .burgerActive > span:nth-child(2) {
        opacity: 0;
    }

    .burgerActive > span:nth-child(3) {
        transform: rotate(-45deg) translate(3px,-5px);
    }

.settings-holder > button > img {
    width: 35px;
}

#infoPanel {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    background: hsla(0,0%,42%,.9);
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

    #infoPanel > div {
        width: 650px;
        height: auto;
        padding: 40px;
        background: #fff;
        border-radius: 20px;
        box-shadow: 0 0 96px rgba(0,0,0,.3);
        text-align: center;
        max-width: 90%;
        max-height: 70%;
        overflow-y: auto;
    }

        #infoPanel > div::-webkit-scrollbar-track {
            border-radius: 10px;
            background-color: transparent;
        }

        #infoPanel > div::-webkit-scrollbar {
            width: 8px;
            background-color: transparent;
        }

        #infoPanel > div::-webkit-scrollbar-thumb {
            box-sizing: border-box;
            border-radius: 5px;
            background-color: #cdcdce;
        }

        #infoPanel > div > div {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 30px;
        }

        #infoPanel > div p {
            text-align: left;
        }

        #infoPanel > div > h2 > a, #infoPanel > div > h2 > a:visited {
            color: #0047ff;
        }

        #infoPanel > div > div > a {
            margin: 0 20px;
            color: #0047ff;
        }

            #infoPanel > div > div > a:visited {
                color: #0047ff;
            }

        #infoPanel > div > h1 {
            color: #0047ff;
            margin: 0;
            font-size: 40px;
            margin-bottom: 20px;
        }

        #infoPanel > div > h2 {
            font-size: 1.3rem;
        }

        #infoPanel > div > p {
            font-size: 1.2rem;
        }

#surveyPanel {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999999;
    background: hsla(0,0%,42%,.9);
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
    flex-direction: column;
}

    #surveyPanel .survePanelWrapper {
        border-radius: 6px;
        overflow-x: hidden;
        width: 95%;
        max-width: 630px;
        overflow: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }

        #surveyPanel .survePanelWrapper iframe {
            overflow-x: hidden;
            border: 0;
        }

    #surveyPanel .surveyButtonWrapper {
        flex-direction: row;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 16px;
    }

        #surveyPanel .surveyButtonWrapper p {
            margin: 0;
        }

        #surveyPanel .surveyButtonWrapper .survey-never-show {
            background-color: rgba(0,71,255,.7);
            margin-right: 8px;
        }

        #surveyPanel .surveyButtonWrapper .survey-close {
            background-color: #0047ff;
            margin-left: 8px;
        }

.hide {
    display: none !important;
}

#infoLogo > span, .show {
    display: flex !important;
}

    #infoLogo > span.hide:before, #infoLogo > span:before {
        content: "About";
        display: flex !important;
    }

    #infoLogo > span.show:before {
        content: "Close";
        color: #fff;
    }

h1, h2, h3 {
    margin: 0;
    padding: 0;
}

.introLeft > div h2 {
    font-weight: 700;
    font-size: 32px;
    color: #0047ff;
}

    .introLeft > div h2 > span {
        color: #2c2c2c;
        font-weight: 300;
        font-size: 18px;
    }

.introLeft > div h1 {
    font-size: 43px;
    color: #2c2c2c;
    max-width: 470px;
    font-weight: 700;
    margin: 20px 0 30px;
}

.home-section {
    background: linear-gradient(180deg,#ffd467 0,#ff794f);
}

.introLeft > div h3 {
    text-align: left;
    font-weight: 300;
    color: #464646;
    margin-bottom: 30px;
    font-size: 20px;
}

.introLeft {
    width: 53vw;
    left: 0;
    background: #fff;
    max-width: none;
    border-radius: 0 50px 50px 0;
    display: inline-flex;
    z-index: 9999;
    box-shadow: 19px 0 34px rgba(0,0,0,.1);
}

.introLeft, .introRight {
    position: fixed;
    top: 0;
    height: 100%;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.introRight {
    width: 47vw;
    right: 0;
    display: flex;
}

    .introRight > img {
        width: 50%;
        max-width: 420px;
    }

.introLeft > div {
    max-width: 85%;
    width: 670px;
    margin-bottom: 60px;
}

.bottomIntro, .bottomIntro > a {
    color: rgba(0,0,0,.3);
    font-weight: 600;
    font-size: 1.25rem;
}

    .bottomIntro > a {
        text-decoration: none;
        padding-bottom: 0;
        border-bottom: 2px solid rgba(0,0,0,.2);
    }

        .bottomIntro > a:hover {
            color: rgba(0,0,0,.8);
            border-bottom: 2px solid rgba(0,0,0,.5);
        }

.bottomIntro {
    position: absolute;
    bottom: 55px;
}

#img2 {
    display: none;
}

.optionalBreak {
    display: block;
}

@media (min-width:1600px) {
    .introLeft > div h1 {
        font-size: 3.9rem;
        max-width: 100%;
        width: 100%;
        line-height: 1.17;
    }

    .introLeft > div {
        width: 70%;
    }

        .introLeft > div h2 {
            font-weight: 700;
            font-size: 2.8rem;
            color: #0047ff;
        }

            .introLeft > div h2 > span {
                font-weight: 400;
                font-size: 2.1rem;
            }

        .introLeft > div h3 {
            font-size: 1.8rem;
            color: #2c2c2c;
            max-width: 90%;
            font-weight: 400;
        }

            .introLeft > div h3.contact {
                font-size: 1.1rem;
            }
}

@media (max-width:1599px) {
    .introLeft > div h1 {
        font-size: 3.5rem;
        max-width: 100%;
        width: 100%;
        line-height: 1.17;
    }

    .introLeft > div {
        width: 70%;
    }

        .introLeft > div h2 {
            font-weight: 700;
            font-size: 2.5rem;
            color: #0047ff;
        }

            .introLeft > div h2 > span {
                font-weight: 400;
                font-size: 2.5rem;
            }

        .introLeft > div h3 {
            font-size: 1.4rem;
            color: #2c2c2c;
            font-weight: 400;
        }
}

@media (max-width:1450px) {
    .introLeft > div h1 {
        font-size: 2.7rem;
        max-width: 100%;
        width: 100%;
        line-height: 1.17;
    }

    .introLeft > div {
        width: 70%;
    }

        .introLeft > div h2 {
            font-weight: 700;
            font-size: 2.2rem;
            color: #0047ff;
        }

            .introLeft > div h2 > span {
                font-weight: 400;
                font-size: 2.2rem;
            }

        .introLeft > div h3 {
            font-size: 1.4rem;
            color: #2c2c2c;
            font-weight: 400;
        }

            .introLeft > div h3.contact {
                font-size: 1.1rem;
            }
}

#hint {
    z-index: 999;
    position: absolute;
    width: 200px;
    left: calc(50% - 100px);
    font-size: 13px;
    top: 20px;
    color: #797979;
    display: none;
    text-align: center;
}

.showHint {
    display: block !important;
}

.hideHint {
    display: none !important;
}

@media (max-width:1150px) {
    .introLeft > div h1 {
        font-size: 43px;
        max-width: 470px;
        font-weight: 700;
        margin: 20px 0 30px;
    }

    .introLeft > div {
        max-width: 85%;
        width: 670px;
    }

        .introLeft > div h2 {
            font-weight: 700;
            font-size: 32px;
            color: #0047ff;
        }

            .introLeft > div h2 > span {
                color: #2c2c2c;
                font-weight: 400;
                font-size: 32px;
            }

        .introLeft > div h3 {
            font-weight: 400;
            color: #464646;
            margin-bottom: 30px;
            font-size: 1.2rem;
        }

    .panel-holder {
        justify-content: flex-end;
        padding-right: 20px;
    }
}

@media (max-width:1000px) {
    .introLeft > div > h1 {
        font-size: 40px;
    }

    .introLeft > div > h2, .introLeft > div h2 > span {
        font-size: 22px;
    }

    .introLeft > div > h3 {
        font-size: 20px;
    }

    .introLeft > div > div.contactus {
        padding: 15px 25px;
        width: auto;
    }

    .introRight {
        width: 40vw;
    }

    .introLeft {
        width: 60vw;
    }

    .introRight > img {
        width: 90%;
    }

    .panelPerspective {
        display: none;
    }
}

@media (max-width:850px) {
    .panelPerspective {
        display: flex;
    }

    .panel-holder {
        justify-content: center;
        padding-right: 0;
    }

    #panelWrap, .panel-inner {
        flex-wrap: wrap;
        height: 100%;
        width: 270px;
        position: fixed;
        right: 0;
        top: 0;
        display: none;
        flex-direction: column;
        z-index: 2;
    }

    .ColorPicker {
        width: 110% !important;
    }

    div#innerPannel:before {
        content: "Adjustments";
        color: #0047ff;
        font-weight: 600;
        border-bottom: 1px solid #0047ff;
        padding-bottom: 9px;
        text-align: center;
        width: 90%;
        margin-bottom: 20px;
        margin-top: -20px;
    }

    #infoPanel > div {
        padding: 20px;
        margin-top: -20px;
    }

    #panelWrap {
        display: flex !important;
        transform: translateX(110%);
        transition: .5s ease;
        pointer-events: none;
    }

        #panelWrap.show {
            transform: translateX(0) !important;
            pointer-events: auto !important;
        }

    .panel-inner {
        display: flex;
        border-radius: 0;
        align-items: flex-start;
        background: hsla(0,0%,100%,.93);
    }

    .panel {
        margin: 10px 0;
        border: none;
        padding: 0;
        padding-top: 20px;
        width: 90%;
        border-top: 1px solid rgba(0,71,254,.26);
    }

    .button-row {
        width: 90%;
        margin-bottom: 10px;
    }

    #burger {
        display: block;
    }

    .download-button {
        right: 20px;
    }

    #infoLogo, .download-button {
        position: fixed;
        bottom: 22px;
        width: 60px;
        height: 60px;
        border-radius: 20px;
    }

    #infoLogo {
        left: 20px;
        background: #fff;
        box-shadow: 0 4px 54px rgba(0,0,0,.15);
    }

        #infoLogo > img {
            width: 30px;
        }

        #infoLogo > span {
            font-size: 13px;
            text-decoration: none;
        }

            #infoLogo > span, #infoLogo > span.show:before {
                color: #0047ff !important;
            }

        #infoLogo:hover > img {
            transform: translateY(0);
        }

    .home-section > p {
        font-size: 16px;
    }

    #logo-home {
        width: 130px;
        height: 130px;
    }

    #hint {
        right: inherit;
        left: 20px;
        text-align: left;
    }
}

@media (max-width:650px) {
    .optionalBreak {
        display: inline-block;
    }

    .introLeft {
        width: 100vw;
        border-radius: 40px;
        top: 15px;
        justify-content: flex-start;
        box-sizing: border-box;
        padding-top: 25px;
        height: 136vw;
    }

        .introLeft > div {
            text-align: center;
            width: 100%;
        }

            .introLeft > div > h1 {
                font-size: 2.5rem;
                margin: 20px 0 25px;
                line-height: 1.1;
            }

            .introLeft > div > h3 {
                font-size: 18px;
            }

            .introLeft > div > div.contactus {
                margin-top: 0;
            }

    .introRight {
        width: 100vw;
        z-index: 9999;
        height: 100vw;
        top: 310vw;
        transform: translateY(-120vw);
    }

        .introRight > img {
            width: 95%;
            max-width: none;
            pointer-events: none;
        }

    .bottomIntro {
        position: absolute;
        bottom: -75vw;
        width: 100%;
        text-align: center;
        left: -12px;
    }

    #img2 {
        display: block;
    }

    #img1 {
        display: none;
    }

    body {
        overflow-y: auto;
    }

    .introLeft, .introRight {
        position: absolute;
    }

    .home-section {
        height: 220vw;
    }

    .fade-holder {
        position: fixed !important;
    }

    .bottomIntro, .bottomIntro > a {
        color: #fff;
        font-weight: 400;
        font-size: 19px;
    }

        .bottomIntro > a {
            border-bottom: 2px solid hsla(0,0%,100%,.5);
        }

            .bottomIntro > a:hover {
                color: hsla(0,0%,100%,.8);
                border-bottom: 2px solid hsla(0,0%,100%,.8);
            }

    .introLeft > div > div.contactus {
        font-size: 24px;
    }
}

@media (max-width:360px) {
    .introLeft > div > h1 {
        font-size: 2.2rem;
    }

    .introLeft > div > div.contactus {
        font-size: 1.2rem;
    }

    .introLeft > div > h3 {
        font-size: 16px;
    }

    .introRight {
        top: 238vw;
    }

    .introLeft {
        height: 143vw;
        border-radius: 30px;
    }
}

.showPanel {
    display: flex !important;
}

.dragNumber-holder {
    width: 50px;
    height: 35px;
    position: absolute;
    overflow: hidden;
    display: inline-block;
}

    .dragNumber-holder input[type=range], .dragNumber-holder input[type=text] {
        position: absolute;
    }

    .dragNumber-holder input[type=text] {
        width: 50px;
        height: 35px;
        outline: 0;
        text-align: center;
        background: transparent;
        border: 0;
        z-index: 0;
        position: absolute;
        color: #fff;
        left: 0;
    }

    .dragNumber-holder input[type=range] {
        z-index: 3;
        width: 1200px;
        height: 35px;
        --thumb-width:50px;
        --thumb-height:35px;
        -webkit-appearance: none;
        position: absolute;
        top: 0;
        left: 0;
        margin: 0;
        background: none;
        pointer-events: none;
        outline: 0;
        color: #fff;
    }

        .dragNumber-holder input[type=range]:active {
            z-index: 999;
        }

        .dragNumber-holder input[type=range]:hover {
            cursor: col-resize;
        }

        .dragNumber-holder input[type=range]::-webkit-slider-thumb {
            -webkit-appearance: none;
            box-sizing: border-box;
            background-color: hsla(0,0%,100%,0);
            width: var(--thumb-width);
            height: var(--thumb-height);
            pointer-events: all;
            cursor: grab;
        }

.dragNumber {
    font-family: Space Mono,monospace;
}

    .dragNumber input, .dragNumber label {
        font-size: 13px;
        font-family: Space Mono,monospace;
    }

    .dragNumber label {
        line-height: 35px;
        display: inline-block;
        vertical-align: top;
        color: #fff;
    }

.mockup, .mockup-holder {
    width: 100%;
    height: 100%;
    position: absolute;
}

.mockup-holder {
    top: 0;
    bottom: 0;
}

    .mockup-holder.active {
        z-index: 99;
    }

        .mockup-holder.active .mockupArea {
            border: 5px dotted transparent;
        }

        .mockup-holder.active .mockupArea-handler {
            width: 20px;
            height: 20px;
            position: absolute;
            cursor: move;
        }

    .mockup-holder.in-active {
        z-index: 1;
        pointer-events: none;
    }

        .mockup-holder.in-active .mockupArea {
            position: absolute;
            box-shadow: 0 0 0 15px rgba(0,0,0,.1);
        }

.mockupArea-handler svg {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
}

    .mockupArea-handler svg * {
        fill: #000;
    }

.mockupArea {
    position: absolute;
    z-index: 999;
}

#top-left {
    top: -5px;
    left: -5px;
}

#top-right {
    top: -5px;
    right: -5px;
}

#bottom-left {
    bottom: -5px;
    left: -5px;
}

#bottom-right {
    bottom: -5px;
    right: -5px;
}

.passpartout {
    position: absolute;
    width: 100%;
    background: rgba(0,0,0,.6);
    z-index: 1;
}

button.close-mockup {
    width: 50px;
    height: 30px;
    background: #fff;
    z-index: 999;
    position: absolute;
    right: 0;
    top: 30px;
}

.fade-holder {
    width: 100%;
    position: relative;
}

.fade-appear {
    opacity: .01;
}

    .fade-appear.fadeDown-appear-active {
        opacity: 1;
        transition: all .5s ease-in;
    }

.fade-enter {
    opacity: .01;
}

    .fade-enter.fade-enter-active {
        opacity: 1;
        transition: opacity .5s ease-in;
    }

.fade-leave {
    opacity: 1;
}

    .fade-leave.fade-leave-active {
        opacity: .01;
        transition: opacity .5s ease-in;
    }

.home-loading {
    position: fixed;
    z-index: 9999999999;
    height: 7px;
    transition: .2s ease;
    width: 100%;
}

.home-loading-holder {
    position: absolute;
    height: 100%;
    background: blue;
}

.home-loading-front {
    width: 6px;
    height: 100%;
    position: absolute;
    right: -6px;
}

section.home {
    width: 100%;
    height: 100%;
    position: relative;
}

.backgroundGreen {
    background-color: green;
}

.start-nav {
    background: #fff;
    padding: 2rem 3rem;
    display: flex;
    box-shadow: 0 0 2rem 0 rgba(0,0,0,.1);
    justify-content: space-between;
    align-items: center;
}

    .start-nav svg.LogoIcon {
        width: 150px;
        height: auto;
        display: block;
        height: 50px;
    }

    .start-nav a {
        text-decoration: none;
        color: #444;
        font-size: 1.1rem;
    }

.header-headline {
    display: flex;
    margin-bottom: 3rem;
}

svg.iPhone_header {
    width: 50%;
    display: block;
}

    svg.iPhone_header * {
        stroke-width: 5px;
        stroke-dashoffset: 100%;
        stroke-dasharray: 140%;
        animation: stroker 5s infinite;
    }

    svg.iPhone_header :nth-child(2n) {
        animation-delay: .5s;
    }

@keyframes stroker {
    0% {
        stroke-dashoffset: -350%;
        stroke-dasharray: 1000%;
    }

    50% {
        stroke-dashoffset: 0%;
        stroke-dasharray: 1000%;
    }

    to {
        stroke-dashoffset: -350%;
        stroke-dasharray: 1000%;
    }
}

.start-button {
    font-family: Space Mono,monospace;
    padding: .5rem 2rem;
    font-size: 1.5rem;
    background: transparent;
    border: 3px solid;
    border-radius: 35px;
    font-weight: 700;
}

header {
    padding-top: 5rem;
}

.header-inner {
    width: 80%;
    margin: auto;
    max-width: 780px;
    text-align: right;
}

header h1 {
    font-size: 4rem;
    color: #4917de;
    margin: 0;
    margin-bottom: 3rem;
    text-align: left;
}
/*# sourceMappingURL=main.css.map*/