@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Nunito:400,700&display=swap');

body {
    margin: 30px;
}

body,
input,
textarea,
select,
button {
    font-family: 'Nunito', sans-serif;
    color: #484848;
    font-size: 14px;
    font-weight: normal;
}

a {
    color: #000;
}

a:hover {
    color: #858585;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

input[type="submit"],
button {
    display: inline-block;
    padding: 10px 20px;
    font-weight: bold;
    background-color: rgba(52, 132, 47, 1.00);
    color: rgba(255, 255, 255, 1.00);
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#cookieConsent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, .80);
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
    z-index: 100;
    padding: 30px;
}

h1 {
    margin: 0 0 20px;
    padding: 0;
}

.designer {
    display: flex;
    overflow: hidden;
}

.previewHeaderContainer {
    display: none;
}

/* .size,
.shape,
.color {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    margin: 1% 1%;
    width: 23%;
    cursor: pointer;
    text-align: center;
    position: relative;
} */
.size,
.shape,
.color {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.size.active::before,
.shape.active::before,
.color.active::before {
    /* position: absolute;
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    z-index: 30;
    font-size: 30px;
    top: 50%;
    left: 15%;
    transform: translate(-50%, -50%);
    color: rgb(118, 211, 0); */
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    display: block;
    border-radius: 5px;
    top: 0px;
    left: 0px;
    box-shadow: 0px 0px 8px green;
}

.size.active,
.shape.active,
.color.active {
    font-weight: bold;
}

.shape>img {
    width: 100%;
}

.colorContainerUploadBackground {
    display: none;
}

.colorContainerUploadBackground>input {
    display: none;
}

.designerContainer {
    display: flex;
    flex-direction: column;
}

.previewContainer {
    width: 25%;
}

.previewBtnContainer {
    display: flex;
    width: 670px;
    border-bottom: solid 2px rgba(74, 74, 74, 1.00);
}

.previewBtn {
    flex: auto;
    cursor: pointer;
    text-align: center;
    padding: 10px;
    position: relative;
    background-color: rgba(234, 234, 234, 1.00);
}

.previewBtn.active {
    background-color: rgba(74, 74, 74, .50);
    color: white;
}

/* .previewBtn.active::before {
    position: absolute;
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    z-index: 30;
    font-size: 30px;
    top: 13%;
    left: 14%;
    transform: translate(-50%, -50%);
    color: rgb(118, 211, 0);
} */
.sizeContainerHeader::before {
    content: "1";
    display: inline-block;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    font-family: arial;
    text-align: center;
    border: 1px solid black;
    font-weight: bold;
    font-size: 18px;
    line-height: 1;
    padding: 3px 0 0 0;
    margin-right: 10px;
}

.shapeContainerHeader::before {
    content: "2";
    display: inline-block;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    font-family: arial;
    text-align: center;
    border: 1px solid black;
    font-weight: bold;
    font-size: 18px;
    line-height: 1;
    padding: 3px 0 0 0;
    margin-right: 10px;
}

.colorContainerHeader::before {
    content: "3";
    display: inline-block;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    font-family: arial;
    text-align: center;
    border: 1px solid black;
    font-weight: bold;
    font-size: 18px;
    line-height: 1;
    padding: 3px 0 0 0;
    margin-right: 10px;
}

.logosContainerHeader::before {
    content: "4";
    display: inline-block;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    font-family: arial;
    text-align: center;
    border: 1px solid black;
    font-weight: bold;
    font-size: 18px;
    line-height: 1;
    padding: 3px 0 0 0;
    margin-right: 10px;
}

.sizeContainerSizes,
.shapeContainerShapes,
.colorContainerColors {
    display: flex;
    flex: 1 0 auto;
    margin: 0 -1%;
    flex-wrap: wrap;
}

.sizeContainerSizes>div,
.shapeContainerShapes>div,
.colorContainerColors>div {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    margin: 1% 1%;
    width: 23%;
    cursor: pointer;
    text-align: center;
    position: relative;
}

.sizeContainerHeader,
.shapeContainerHeader,
.colorContainerHeader,
.logosContainerHeader {
    font-size: 120%;
    font-weight: bold;
}

.config {
    display: flex;
    flex-direction: column;
    flex: auto;
    padding-left: 3%;
    margin-left: 3%;
    border-left: solid 5px rgba(235, 235, 235, 1.00);
}

.config>div {
    margin: 1% 0;
}

.drawing {
    flex: none;
    position: relative;
    touch-action: none;
}

.canvas {
    width: 670px;
    height: 670px;
    position: relative;
    overflow: hidden;
}

.logo {
    position: absolute;
    width: 300px;
    height: 150px;
    box-sizing: border-box;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    padding: 10px;
    background-origin: content-box;
    z-index: 10000;
}

.logo>img,
.background>img,
.foreground>img {
    max-width: 100%;
    max-height: 100%;
}

.backgroundThumb>img,
.btn-logo>img {
    max-width: 200px;
    max-height: 200px;
}

.btn-logo.logo1Thumb,
.btn-logo.logo2Thumb {
    justify-content: flex-start;
    overflow: hidden;
}

.btn-logo.logo1Thumb>*,
.btn-logo.logo2Thumb>* {
    /* margin: 0 2%; */
}

.logo1 {
    /* background-image: url(/img/1_2_000.png); */
    /*width: 120px;
    height: 25px;
    top: 400px;
    left: 271px;*/
}

.logo2 {
    /* background-image: url(/img/1_3_090.png); */
    /*height: 120px;
    width: 25px;
    top: 180px;
    left: 557px;*/
}

.logoBtnContainer {
    display: flex;
}

.logo1Thumb {
    /* background-image: url(/img/1_2_000.png); */
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    min-height: 30px;
}

.logo2Thumb {
    /* background-image: url(/img/1_2_000.png); */
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    min-height: 30px;
}

/* .logo1ThumbRemove,
.logo2ThumbRemove {
    position: absolute;
} */

.additionalLogoContainer {
    border-top: 1px solid #ddd;
    padding-top: 10px;
}

.background {
    /*width: 580px;
    height: 440px;
    left: 40px;
    top: 20px;*/
    position: absolute;
    /* background-color: rgba(153, 0, 0, 1); */
    box-sizing: border-box;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.backgroundThumb {
    max-width: 150px;
    max-height: 50px;
    color: black;
    display: none;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.foreground {
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 100;
    opacity: 1;
    position: absolute;
    width: 670px;
    height: 670px;
    background-repeat: no-repeat;
}

.red {
    color: white;
}

.blue {
    color: white;
}

.green {
    color: white;
}

.black {
    color: white;
}

.white {
    color: black;
}

.colorContainerCustom {
    width: 232px;
    display: none;
}

.switchContainer {
    display: flex;
    flex: 1 0 auto;
    margin: 10px 0;
}

.onoffswitch {
    position: relative;
    width: 35px;
    margin-left: 10px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.onoffswitch-checkbox {
    display: none;
}

.onoffswitch-label {
    display: block;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid #E3E3E3;
    border-radius: 35px;
}

.onoffswitch-inner {
    display: block;
    width: 200%;
    margin-left: -100%;
    transition: margin 0.3s ease-in 0s;
}

.onoffswitch-inner:before,
.onoffswitch-inner:after {
    display: block;
    float: left;
    width: 50%;
    height: 14px;
    padding: 0;
    line-height: 14px;
    font-size: 20px;
    color: white;
    font-family: Trebuchet, Arial, sans-serif;
    font-weight: bold;
    box-sizing: border-box;
}

.onoffswitch-inner:before {
    content: "";
    padding-left: 10px;
    background-color: rgba(52, 132, 47, 1.00);
    color: #FFFFFF;
}

.onoffswitch-inner:after {
    content: "";
    padding-right: 10px;
    background-color: #FFFFFF;
    color: #666666;
    text-align: right;
}

.onoffswitch-switch {
    display: block;
    width: 18px;
    margin: 0px;
    background: #FFFFFF;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 17px;
    border: 2px solid #E3E3E3;
    border-radius: 35px;
    transition: all 0.3s ease-in 0s;
}

.onoffswitch-checkbox:checked+.onoffswitch-label .onoffswitch-inner {
    margin-left: 0;
}

.onoffswitch-checkbox:checked+.onoffswitch-label .onoffswitch-switch {
    right: 0px;
}

.sjx-rotator {
    background-image: url(/img/undo-solid.svg);
    border-radius: 0px;
    background-color: transparent;
    border: 0px;
    left: calc(100% + 20px);
}

.sjx-normal {
    width: 20px;
}

.a-color-picker-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.a-color-picker {
    width: 500px !important;
    flex-direction: row !important;
}

.containerHeader {
    margin: 0 0 10px 0;
}

.btn-logo {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px;
    margin: 1% 1%;
    /* width: 15%; */
    min-width: 200px;
    cursor: pointer;
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.actionBtnContainer {
    display: flex;
}

.actionBtnContainer>div {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px;
    margin: 1% 1%;
    width: 33%;
    background-color: white;
    color: black;
    cursor: pointer;
    text-align: center;
    position: relative;
}

.shareContainer {
    display: flex;
    flex-wrap: wrap;
}

.shareContainer>input {
    padding: 0px 10px;
    font-size: 15px;
    margin: 1%;
    border-radius: 5px;
    flex: auto;
    border: 1px solid #ddd;
}

.shareContainer>div {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px;
    margin: 1% 1%;
    width: 15%;
    background-color: white;
    color: black;
    cursor: pointer;
    text-align: center;
    position: relative;
}

.actionBtnContainer>div.btnOrder {
    background-color: rgba(52, 132, 47, 1.00);
    color: rgba(255, 255, 255, 1.00);
}

.orderFormModal,
.orderSuccessModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999999999999;
}

iframe .orderFormModel {
    border-radius: 15px;
}

.alert {
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 3rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}

.alert.error {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.orderSuccess {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.orderSuccessInner {
    text-align: center;
    font-size: 30px;
}

.orderFormModalInner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1600px;
    height: 1600px;
    max-width: 50%;
    max-height: 90%;
    transform: translate(-50%, -50%);
    border: 0;
    border-radius: 15px;
    background-color: white;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.orderForm_header_text {
    font-size: 22px;
    font-weight: bold;
}

.orderForm {
    margin: 5%;
}

.orderForm>div {
    margin: 10px 0;
}

.orderForm label {
    display: block;
}

.orderForm input,
.orderForm select,
.orderForm textarea {
    width: 100%;
    border-radius: 3px;
}

.orderForm label.required:after {
    content: "*";
    color: red;
}

.orderForm_submit {
    display: flex;
    justify-content: space-between;
}

.btnRequestQuote {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px;
    margin: 5% 0;
    background-color: rgba(52, 132, 47, 1.00);
    color: rgba(255, 255, 255, 1.00);
    cursor: pointer;
    text-align: center;
    position: relative;
    width: 45%;
}

.btnCancel {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px;
    margin: 5% 0;
    cursor: pointer;
    text-align: center;
    position: relative;
    width: 45%;
}

.btnRotate {
    flex: auto;
    cursor: pointer;
    text-align: center;
    padding: 0px;
    position: relative;
    /* background-color: rgba(234, 234, 234, 1.00); */
    /* border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    cursor: pointer;
    width: 10px;
    margin: 0 0 10px 0; */
}

.btnRotate:before {
    width: 60px;
    height: 60px;
    background-image: url(/img/rotate.png);
    content: "";
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    transform: translate(-50%, 0);
}

.designer.blur,
.previewContainer.blur {
    filter: blur(5px) grayscale(0.8);
}

.message {
    margin-top: 20px;
}

@media only screen and (max-width: 1025px) {
    .config {
        width: 100%;
        border-left: 0px;
        border-top: 5px solid rgba(235, 235, 235, 1.00);
        margin-left: 0px;
        margin-top: 25px;
        padding-top: 25px;
        padding-left: 0px;
    }

    .previewContainer {
        width: unset;
    }

    .designer {
        justify-content: center;
        flex-wrap: wrap;
    }

    .orderFormModalInner {
        max-width: 75%;
    }

    .previewBtnContainer {
        width: unset;
    }
}

@media print {

    .config,
    .previewContainer,
    .sjx-wrapper {
        display: none;
    }

    .canvas {
        display: block;
        width: 100%;
        height: 100%;
    }
}