body.labelCalculator .imageselector {
    width: 102%;
    display: flex;
    flex-wrap: wrap;
    margin: -2% -1%;
    justify-content: center;
}
body.labelCalculator .imageselector > a {
    width: 31%;
    margin: 2% 1%;
}

/* PREVIEW */

.labelPreview {
    width: 60%;
    margin: 0 auto;
    margin-top: 50px;
    position: relative;
    margin-bottom: 30px;
}
.labelPreview > img {
    width: 100%;
    display: block;
    max-height: none !important;
}
.labelPreview > .labelPreviewCanvas {
    position: absolute;
    width: 68%;
    height: 70%;
    left: 0;
    bottom: 0;
    padding: 10px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.labelPreview > .labelPreviewCanvas > .canvasFade {
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, rgba(242, 242, 242, 1), rgba(242, 242, 242, 0));
    position: absolute;
    top: 0;
    left: 0;
}
.labelPreview > .labelPreviewCanvas > #theLabel {
    width: 100%;
    padding-top: 100%;
    background-color: #266bad;
    border: 1px solid #1f578b;
    border-left: none;
    border-top: none;
    border-radius: 5px;
}
.labelPreview > .labelPreviewCanvas > #theLabel.oval{
	border-radius: 100px / 52px;
    height: 80px;
    padding-top: unset;
}
.labelPreview > .labelPreviewCanvas > #theLabel.circle {
    border-radius: 100%;
}
.labelPreview > .labelPreviewCanvas > #theLabel.circle {
    padding-top: 100% !important;
}
/* .labelPreview > .labelPreviewCanvas > #theLabel.square {
    border-radius: 5px;
} */
/* SECTION */
#labelMaker > .labelMakerSection {
    width: 100%;
    padding: 15px;
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 0 5px 0 rgba(0,0,0,.1);
}
#labelMaker > .labelMakerSection > h3 {
    width: 100%;
    margin: 0 0 15px 0;
}
#labelMaker > .labelMakerSection input {
    width: 100%;
    padding: 5px;
    border-radius: 3px;
    border: 1px solid #dfdfdf;
    margin-top: 8px;
}
/* SHAPES */
#labelMaker > .labelMakerShapes {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
#labelMaker > .labelMakerShapes > label {
    width: 60px;
    height: 60px;
    background-color: #efefef;
    border: 1px solid #dfdfdf;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: background ease .35s;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 10px;
    word-break: break-all;
    padding: 5px;
}
#labelMaker > .labelMakerShapes > input:checked + label {
    background-color: #266bad;
    border: none;
    color: #fff;
}
#labelMaker > .labelMakerShapes > label:last-child {
    margin-right: 0;
}
#labelMaker > .labelMakerShapes > label.square {
    border-radius: 0;
}
#labelMaker > .labelMakerShapes > label.oval {
    width: 80px;
    border-radius: 100%;
}
#labelMaker > .labelMakerShapes > label.circle {
    border-radius: 100%;
}
#labelMaker > .labelMakerShapes > label.fantasistans {
    position: relative;
    background: transparent;
    border: none;
}
#labelMaker > .labelMakerShapes > label.fantasistans > span {
    z-index: 1;
    position: relative;
    transition: color ease .35s;
}
#labelMaker > .labelMakerShapes > label.fantasistans::before {
    content: '';
    background-color: #efefef;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    width: 120%;
    height: auto;
    aspect-ratio: 1/1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    transition: background ease .35s;
}
#labelMaker > .labelMakerShapes > input:checked + label.fantasistans {
    background-color: transparent;
    color: #000;
}
#labelMaker > .labelMakerShapes > input:checked + label.fantasistans::before {
    background-color: #266bad;
}
#labelMaker > .labelMakerShapes > input:checked + label.fantasistans > span {
    color: #fff;
}
/* SIZE */
#labelMaker > .labelMakerSize > .labelMakerSizeSquare {
    display: flex;
    width: 104%;
    margin: 0 -2%;
}
#labelMaker > .labelMakerSize > .labelMakerSizeSquare > label {
    width: 46%;
    margin: 0 2%;
    text-align: left;
}

#labelMaker > .labelMakerSize > .labelMakerSizeSquare.endless > label {
    width: 96%;
    margin: 0 2%;
    text-align: center;
}
/* BULK */
#labelMaker > .labelMakerBulk {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 7.5px;
}
#labelMaker > .labelMakerBulk > h3 {
    margin-top: 15px;
}
#labelMaker > .labelMakerBulk > .labelMakerBulkItem {
    width: calc(50% - 15px);
    margin: 7.5px;
    border: 1px solid #dfdfdf;
    padding: 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background ease .35s;
}
#labelMaker > .labelMakerBulk > .labelMakerBulkItem:hover {
    background-color: #f4f4f4;
}
#labelMaker > .labelMakerBulk > .labelMakerBulkItem > span,
#labelMaker > .labelMakerBulk > .labelMakerBulkItem > small {
    display: block;
    margin-bottom: 5px;
}
#labelMaker > .labelMakerBulk > .labelMakerBulkItem > b {
    font-size: 24px;
}
#labelMaker > .labelMakerBulk > .labelMakerBulkItem > span.labelMakerBulkItemFooter {
    margin: 15px -15px -15px -15px;
    width: calc(100% + 30px);
    background-color: #dfdfdf;
    padding: 5px;
}
/* PRICE */
.labelMakerRollPrice {
    display:none;
    font-size: 14px !important;
    color: #484848 !important;
    font-weight: normal !important;
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    background-color: #dfdfdf;
    margin-top: 15px;
}

@media(max-width: 480px) {
    #labelMaker > .labelMakerBulk {
        flex-direction: column;
    }
    #labelMaker > .labelMakerBulk > .labelMakerBulkItem {
        width: calc(100% - 15px);
    }
    .labelPreview > .labelPreviewCanvas {
        padding: 5px;
    }
}

/******************** CHECKOUT **************************/

.webshop-showbasket .variantContainer {
    border: 1px solid #efefef;
    border-radius: 3px;
    padding: 5px;
    display: flex;
    flex-wrap: wrap;
    margin: 1% -1% 1% -1%;
}
.webshop-showbasket .variantContainer > li {
    border: 1px solid #efefef;
    border-radius: 3px;
    padding: 5px;
    display: flex;
    align-items: center;
    margin: 1%;
}
.webshop-showbasket .variantContainer > li > span {
    display: block;
    margin-right: 5px;
    font-weight: normal;
}