html body {
    font-family: 'Futura Lt BT';
    font-weight: 400;
    margin: 0;
    height: 100vh;
    /* background: #f8f8f8; */
}

.page .container {
    max-width: 1200px;
    overflow: hidden;
    padding: 0;
}

.ac {
    display: none;
}

canvas ~ div {
    display: none;
}

.page {
    padding: 0 20px;
}

input {
    margin-bottom: 15px;
}

.header h2 {
    text-align: center;
    font-weight: 400;
    margin: 15px 0;
}

.container .toolbar {
    padding: 20px 20px 0px 20px;
    width: 30%;
    float: left;
    min-height: 520px;
    height: calc(100vh - 225px);
    border: 1px solid #eaeaea;
    display: flex;
    flex-wrap: wrap;
}

.toolbar-wrapper,
.group-outner-cart {
    flex: 0 0 100%;
    max-width: 100%;
    position: relative;
}

#canvas {
    width: 70%;
    float: right;
    cursor: crosshair;
    position: relative;
    height: calc(100vh - 225px);
    background-color: #000;
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    cursor: url(../../assets/images/curseur_fleche.cur), move;
    outline: none;
}

label {
    color: #222;
    padding-left: 5px;
    font-size: 13px;
}

.group-inner {
    padding: 0px 15px 0 10px;
    margin-bottom: 10px;
}

.form-item {
    border-top: 1px solid #eaeaea;
}

.form-item:first-child {
    border-top: none;
}

.form-item:last-child .mainNav {
    margin-bottom: 0;
}

.form-item h2 {
    color: #333;
    font-size: 14px;
    margin: 0;
    padding: 15px 0;
    font-weight: 500;
    cursor: pointer;
    text-transform: uppercase;
}

.form-item.show h2 {
    color: #c49c5c;
}

.form-item h2:after {
    content: '✕';
    float: right;
    transition: all 0.3s ease-in-out;
    font-size: 13px;
    transform: rotate(45deg);
}

.form-item.show h2:after {
    transform: rotate(0deg);
}
.form-item .mainNav {
    display: none;
}
.form-item .mainNav >div {
    margin-bottom: 5px;
}

.ico-create {
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 10;
    width: 40px;
}

.ico-create > * {
    color: #fff;
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 10px;
    height: 40px;
    border: 1px solid #000;
}

.ico-create .active {
    border-color: #fff;
}

.ico-create img {
    width: 100%;
}

.price {
    position: absolute;
    bottom: 10px;
    right: 0;
    width: 70px;
    z-index: 10;
    font-size: 12px;
}

.price input {
    background: transparent;
    color: #c49c5c;
    border: none;
    margin: 0;
    font-size: 16px;
    pointer-events: none;
}

.price input:focus {
    outline: none;
}

.add-to-cart {
    text-decoration: none;
    background: #dbbb86;
    border: 1px solid #dbbb86;
    text-align: center;
    color: #000;
    padding: 10px;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    min-width: 120px;
}

.add-to-cart:hover {
    color: #c49c5c;
    background-color: #fff;
    text-decoration: none;
}

.full-screen,
.close-full-sr {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 35px;
    background: url(../../assets/images/btn_gofullscreen.svg) no-repeat;
    height: 30px;
    cursor: pointer;
    z-index: 10;
    z-index: 10;
    transition: all 0.3s ease-in-out;
}

.full-screen:hover,
.close-full-sr:hover {
    transform: scale(0.9);
}

#full.close-full-sr {
    background: url(../../assets/images/btn_quitfullscreen.svg) no-repeat;
    display: none;
}

#canvas.close .full-screen {
    display: none;
}

#canvas.close #full.close-full-sr {
    display: block;
}

#progess-bar {
    color: #fff;
    position: absolute;
    top: 50%;
    z-index: 50;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    margin-top: 50px;
}

#progess-bar.hide {
    display: none;
}

.smenu-create {
    background-color: #f8f8f8;
    border: 1px solid #eaeaea;
    text-align: center;
    border-bottom: none;
}

.smenu-create .desc-line {
    padding: 30px 15px 5px;
    display: inline-block;
    color: #17213a;
    font-size: 12px;
    text-align: center;
    min-width: 120px;
    border: none;
}

.smenu-create .desc-line:focus {
    outline: none;
}

.smenu-create .desc-line.active {
    text-decoration: underline;
}

.smenu-create .lsmenu1 {

    background: transparent url(../../assets/images/picto_solitaire.png) no-repeat top 7px center;
}

.smenu-create .lsmenu2 {
    border-left: 1px solid grey;
    background: transparent url(../../assets/images/picto_halo.png) no-repeat top 7px center;
}

/* ====== check-box custom style ====== */
.render-attributes input {
    opacity: 0;
    position: absolute;
}

.render-attributes label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
}

.render-attributes input[type='radio']:checked ~ label::after {
    display: block;
    transition: all 0.3s ease-in-out;
}

.render-attributes input[type='radio']:checked ~ label::before {
    border-color: #3Eb370;
    transition: all 0.3s ease-in-out;
}

.render-attributes label::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 1px solid #b4b4b4;
    position: absolute;
    top: 0;
    left: 0px;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.render-attributes label::after {
    content: '';
    width: 10px;
    height: 10px;
    background: url(../../assets/images/checkbox.svg) no-repeat;
    background-size: 10px 10px;
    position: absolute;
    top: 6px;
    left: 5px;
    display: none;
    transition: all 0.3s ease-in-out;
}

.form-cart {
    display: flex;
    border: 1px solid #c49c5c;
    padding: 10px;
    flex-wrap: wrap;
    justify-content: space-between;
    position: absolute;
    bottom: 0;
    left: -20px;
    width: calc(100% + 40px);
    align-items: center;
}

.form-cart .price {
    position: static;
    width: auto;
    padding-right: 20px;
}
.hide {
    display: none;
}



/* ================ responsive ================ */
@media(max-width: 767px) {
    .page-3d .container{
        display: flex;
        flex-direction: column;
    }
    .container .toolbar {
        width: 100%;
        height: auto;
        min-height: auto;
        order: 1;
    }
    #canvas {
        width: 100%;
    }
    .group-outner-cart {
        margin-top: 100px;
    }
}