div.saider-bar-title {
    color: #658591;
    display: block;
    font-size: 13px;
    font-weight: 700;
    border-bottom: 1px #ddd solid;
    margin-bottom: 10px;
    padding-bottom: 5px;
    margin-top: 10px;
    text-align: left;
    font-family: "Inter var", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
    line-height: 12px;
}


.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.switch .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

.switch input:checked + .slider {
    background-color: #2196F3;
}

.switch input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

.switch input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.switch .slider.round {
    border-radius: 34px;
}

.switch .slider.round:before {
    border-radius: 50%;
}


/*Logo section*/

.logo-container{
    display: flex;
}

.logo-child {
    flex: 1;
}

.logo-child:first-child {
    margin-right: 20px;
}

#artwork_instruction {
    padding-top: 3%;
    margin-top: 3%;
}

#artwork_instruction_label{
    font-size: 18px;
    margin-top: 2%;
}

.verticalLine {
    height: 300px;
    /*border-style:  none solid none none;*/
    position: absolute;
    right: 50%;
    border: #fff3f3 solid 1px;
    margin-top: -0.2%;
}

#bnb__variation td input{
    width: 50px;
}

/* Upload Widget*/

.file-upload {
    background-color: #ffffff;
    width: 600px;
    /*margin: 0 auto;*/
    padding: 20px;
}

.file-upload-btn {
    width: 100%;
    margin: 0;
    color: #fff;
    background: #1FB264;
    border: none;
    padding: 10px;
    border-radius: 4px;
    border-bottom: 4px solid #15824B;
    transition: all .2s ease;
    outline: none;
    text-transform: uppercase;
    font-weight: 700;
}

.file-upload-btn:hover {
    background: #1AA059;
    color: #ffffff;
    transition: all .2s ease;
    cursor: pointer;
}

.file-upload-btn:active {
    border: 0;
    transition: all .2s ease;
}

.file-upload-content {
    display: none;
    text-align: center;
}

.file-upload-input {
    position: absolute;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    outline: none;
    opacity: 0;
    cursor: pointer;
}

.image-upload-wrap {
    margin-top: 20px;
    border: 4px dashed #1FB264;
    position: relative;
}

.image-dropping,
.image-upload-wrap:hover {
    background-color: #1FB264;
    border: 4px dashed #ffffff;
}

.image-title-wrap {
    padding: 0 15px 15px 15px;
    color: #222;
}

.drag-text {
    text-align: center;
}

.drag-text h3 {
    font-weight: 100;
    text-transform: uppercase;
    color: #15824B;
    padding: 60px 0;
}

.file-upload-image {
    max-height: 200px;
    max-width: 200px;
    margin: auto;
    padding: 20px;
}

.remove-image {
    width: 200px;
    margin: 0;
    color: #fff;
    background: #cd4535;
    border: none;
    padding: 10px;
    border-radius: 4px;
    border-bottom: 4px solid #b02818;
    transition: all .2s ease;
    outline: none;
    text-transform: uppercase;
    font-weight: 700;
}

.remove-image:hover {
    background: #c13b2a;
    color: #ffffff;
    transition: all .2s ease;
    cursor: pointer;
}

.remove-image:active {
    border: 0;
    transition: all .2s ease;
}


.flex-container-img {
    display: flex;
    align-items: center;
}

.flex-child-img {
    flex: 1;
    /*border: 2px solid;*/
}

.flex-child-img:first-child {
    margin-right: 20px;
}

/*.dummy-sample {*/
/*    float: left;*/
/*    width: 25%;*/
/*    height: auto;*/
/*    border: 2px solid #fff;*/
/*    -webkit-transition: -webkit-transform .15s ease;*/
/*    -moz-transition: -moz-transform .15s ease;*/
/*    -o-transition: -o-transform .15s ease;*/
/*    -ms-transition: -ms-transform .15s ease;*/
/*    transition: transform .15s ease;*/
/*    position: relative;*/
/*}*/

.bounceball {
    position: relative;
    display: inline-block;
    height: 37px;
    width: 15px;
}
.bounceball:before {
    position: absolute;
    content: "";
    display: block;
    top: 0;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #0fa34c;
    transform-origin: 50%;
    -webkit-animation: bounce 500ms alternate infinite ease;
    animation: bounce 500ms alternate infinite ease;
}

@-webkit-keyframes bounce {
    0% {
        top: 30px;
        height: 5px;
        border-radius: 60px 60px 20px 20px;
        transform: scaleX(2);
    }
    35% {
        height: 15px;
        border-radius: 50%;
        transform: scaleX(1);
    }
    100% {
        top: 0;
    }
}

@keyframes bounce {
    0% {
        top: 30px;
        height: 5px;
        border-radius: 60px 60px 20px 20px;
        transform: scaleX(2);
    }
    35% {
        height: 15px;
        border-radius: 50%;
        transform: scaleX(1);
    }
    100% {
        top: 0;
    }
}

#add-to-cart-wrapper {
    display: flex;
    justify-content: center;
    /*padding: 3%;*/
    width: 80%;
}

.grid-child { padding-right: 4%;  }

#image-picker-print-side{
    display: none;
}

.parent {
    margin: 1rem;
    padding: 2rem 2rem;
    /*text-align: center;*/
}
.child {
    display: inline-block;
    padding: 1rem 1rem;
    vertical-align: middle;
}

.single-breadnbutter form.variations_form.cart {
    display: none;
}


/*.single-breadnbutter .woocommerce-variation-add-to-cart.variations_button.woocommerce-variation-add-to-cart-disabled{*/
/*    display: none;*/
/*}*/


dt.variation-Logo {
    margin-right: 16px !important;
}