/* line 8, ../scss/jquery.modalBox.scss */
#legoLP div.modal-box-scroll-bar {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}
/* line 16, ../scss/jquery.modalBox.scss */
body.modal-box-open {
    overflow: hidden;
}

/* line 19, ../scss/jquery.modalBox.scss */
#legoLP div.modal-box {
    opacity: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.4);
    overflow-x: hidden;
    overflow-y: auto;
    visibility: hidden;
    -moz-transition: visibility 0.3s linear 0.5s, opacity 0.5s linear;
    -o-transition: visibility 0.3s linear 0.5s, opacity 0.5s linear;
    -webkit-transition: visibility 0.3s linear, opacity 0.5s linear;
    -webkit-transition-delay: 0.5s, 0s;
    transition: visibility 0.3s linear 0.5s, opacity 0.5s linear;
    transition-delay: 0s;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}


@media (max-width: 1280px) {
    #legoLP div.modal-box {
        font-size: -webkit-calc(100vw / 80);
        font-size: calc(100vw / 80);
    }
}

@media (max-width: 960px) {
    #legoLP div.modal-box {
        font-size: -webkit-calc(100vw / 60);
        font-size: calc(100vw / 60);
    }
}

@media (max-width: 640px) {
    #legoLP div.modal-box {
        font-size: -webkit-calc(100vw / 20);
        font-size: calc(100vw / 20);
    }
}
/* line 33, ../scss/jquery.modalBox.scss */
#legoLP div.modal-box.active {
    visibility: visible;
    opacity: 1;
}
/* line 35, ../scss/jquery.modalBox.scss */
#legoLP div.modal-box > .inner {
    background: #fbfbfb;
    color: #101010;
    margin: 100px auto;
    width: 38em;
    height: auto;
    box-sizing: border-box;
    position: relative;
    padding: 6.8em 3.2em !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 50px;
}
@media (max-width: 640px) {
    #legoLP div.modal-box > .inner {
        padding: 2.8em 1.2em !important;
    }
}
@media (max-width: 640px) {
    #legoLP div.modal-box > .inner {
        width: 19em;
    }
}

#legoLP div.modal-box > .inner  h2 {
    font-family: OpenSans-ExtraBold, Arial, sans-serif;
    font-size: 2em;
    line-height: 1.15;
    color: #00ABAA;
    text-align: center;
    margin-bottom: 2em !important;
}

@media (max-width: 640px) {
    #legoLP div.modal-box > .inner  h2 {
        font-size: 1.3em;
        margin-bottom: 1em !important;
    }
}

/* line 44, ../scss/jquery.modalBox.scss */
#legoLP div.modal-box > .inner .controls button {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0.625em;
    width: 14.875em;
    height: 3.625em;
    -webkit-border-radius: 3.125em;
    border-radius: 3.125em;
    background: #E41F0F;
    -webkit-box-shadow: 0 0.1875em 0.5em rgba(0, 37, 37, 0.2);
    box-shadow: 0 0.1875em 0.5em rgba(0, 37, 37, 0.2);
    color: #fff;
    font-family: OpenSans-Bold, Arial, sans-serif;
    font-size: 1em;
    line-height: 1.375;
    cursor: pointer;
    outline: none;
    border: none;
}

@media (max-width: 640px) {
    #legoLP div.modal-box > .inner .controls button {
        width: 14.875em;
        height: 3em;
        font-size: 0.9em;
    }
}
/* line 46, ../scss/jquery.modalBox.scss */
#legoLP div.modal-box > .inner button.close {
    display: block;
    position: absolute;
    font-size: 40px;
    line-height: 11px;
    right: 30px;
    top: 30px;
    opacity: 0.5;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
}
/* line 56, ../scss/jquery.modalBox.scss */
#legoLP div.modal-box > .inner button.close.close:hover {
    opacity: 1;
}
/* line 59, ../scss/jquery.modalBox.scss */
#legoLP div.modal-box > .inner.default-in {
    -webkit-animation-name: defaultIn;
    animation-name: defaultIn;
}
/* line 64, ../scss/jquery.modalBox.scss */
#legoLP div.modal-box > .inner.default-out {
    -webkit-animation-name: defaultOut;
    animation-name: defaultOut;
}
/* line 70, ../scss/jquery.modalBox.scss */
#legoLP div.modal-box.stylized > .inner {
    border: 1px solid #dcdee0;
    border-radius: 5px;
    -moz-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
}

@keyframes defaultIn {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes defaultOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}
