html,
body{
    width:100%;
    overflow-x:hidden;
}

/* ****************************************************************************************************************** */
/* ************************************************  MOBILE CSS   *************************************************** */
/* ****************************************************************************************************************** */

/* Smartphones (portrait and landscape) ----------- */
@media only screen
    and (min-device-width : 320px)
    and (max-device-width : 480px)
    and (min-width : 320px)
    and (max-width : 480px)
    and (-webkit-min-device-pixel-ratio: 2) {
    /* Styles */

    :root {
        --product-img-container-width: 250px;
        --product-img-container-height: 250px;
        --simple-product-img-landscape-max: 500px;
        --simple-product-img-portrait-max: 400px;
    }

    .gallery-image-class-wrapper{
        display: inherit !important;
    }

    select{
        font-size: 10px;
    }

    .woocommerce .woocommerce-result-count {
        margin-left: 1px !important;
    }

    #fware-image-wrapper{
        margin-bottom: 0px !important;
    }

    /* this is the div wrapper for the product thumbnail for Mobile */
    .product-image-wrapper-cls{
        position: relative;
        height: 170px;
        width: auto;
        margin: auto;
    }

    /* same as previous class but for mobile */
    .fware-product-img-class-landscape {
        max-height: 90% !important;
        width: auto !important;
        margin: auto !important;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .simple-product-portrait-class {
        max-height: 100% !important;
        height: auto !important;
        width: auto !important;
        margin: auto !important;
    }

    .simple-product-landscape-class {
        max-width: 80% !important;
        width: auto !important;
        height: auto !important;
        margin: auto !important;
    }

    /* same as previous class but for mobile */
    .fware-product-img-class-portrait {
        max-height: 90% !important;
        width: auto !important;
        margin: auto !important;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

/* Smartphones (portrait) ----------- */
@media only screen
    and (max-device-width : 320px)
    and (max-width : 320px)
    and (-webkit-min-device-pixel-ratio: 2) {
    .woocommerce-page ul.products li.product .button {
        width: 120px !important;
    }
}

/* ****************************************************************************************************************** */
/* ************************************************  DESKTOP CSS  *************************************************** */
/* ****************************************************************************************************************** */
/* Desktops and laptops ----------- */
@media only screen
    and (min-device-width: 768px)
    and (min-width: 768px)
    and (orientation : landscape){

    :root {
        --product-img-container-width: 250px;
        --product-img-container-height: 250px;
        --simple-product-img-landscape-max: 575px;
        --simple-product-img-portrait-max: 575px;
    }

    #fware-image-wrapper{
        margin-bottom: 0px !important;
        max-width: 700px;
    }

    .product-image-wrapper-cls{
        position: relative;
        height: var( --product-img-container-width ) !important;
        width: var( --product-img-container-height ) !important;
        margin: auto;
    }

    /* this is applied to the product thumbnail image if portrait */
    .fware-product-img-class-portrait {
        height: var( --product-img-container-height ) !important;
        min-height: var( --product-img-container-height ) !important;
        width: auto !important;
        margin: auto !important;
        position: absolute;
        left: 0;
        right: 0;
    }

    /* this is applied to the product thumbnail image if landscape */
    .fware-product-img-class-landscape {
        height: auto !important;
        width: var( --product-img-container-width ) !important;
        min-width: var( --product-img-container-height ) !important;
        margin: auto !important;
        position: absolute;
        top: 0;
        bottom: 0;
    }

    .simple-product-portrait-class {
        max-height: var( --simple-product-img-portrait-max ) !important;
        height: auto !important;
        width: auto !important;
        margin: auto !important;
    }

    .simple-product-landscape-class {
        max-width: var( --simple-product-img-landscape-max ) !important;
        width: auto !important;
        height: auto !important;
        margin: auto !important;
    }

}

/************ HELPER CLASS **************/
.helper-class {
    display: inline-block !important;
}
/************ HELPER CLASS **************/

body {
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* This works instead of display: none */
.hide {
    position: absolute !important;
    top: -9999px !important;
    left: -9999px !important;
}

select{
    font-size: 13px;
    font-family: Arial, Helvetica, sans-serif;
}

@media only screen and (max-device-width: 480px) {
    select {
        background: #000000;
        border: 1px solid #ccc;
        color: white;
        padding: 2px;
    }
}

.qq-edit-filename{
    width: 210px !important;
    font-size: 12pt !important;
    margin-bottom: 0px !important;
}

#konva-container {
    border: none !important;
}

#upload-crop-image-container{
    max-width: 800px;
}

#image-upload-container{
    max-width: 500px; min-width: 300px;
}

#loader {
    z-index: 1;
    width: 100px;
    height: 100px;
    margin: -60px 0 0 -60px;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Add animation to "page content" */
.animate-bottom {
    position: relative;
    -webkit-animation-name: animatebottom;
    -webkit-animation-duration: 1s;
    animation-name: animatebottom;
    animation-duration: 1s
}

@-webkit-keyframes animatebottom {
    from { bottom:-100px; opacity:0 }
    to { bottom:0px; opacity:1 }
}

@keyframes animatebottom {
    from{ bottom:-100px; opacity:0 }
    to{ bottom:0; opacity:1 }
}

#myDiv {
    display: none;
    text-align: center;
}

.input-text-form-control {
    margin-bottom: 0px !important;
    padding: 8px 12px !important;
    min-height: 35px !important;
    font-size: 12pt !important;
    height: 35px !important;
}

.input-form-group{
    margin-bottom: 5px !important;
}

.has-error, .form-control-feedback {
    color: #E74C3C;
}
.has-success .form-control-feedback {
    color: #18BCA0;
}

.has-error input{
    border-color: #E74C3C !important;
}

#order-request-card-body-form{
    /* height: 400px;
    overflow-y: scroll; */

}

.cursor-pointer{
    cursor: pointer;
}

.fware-select-picker{
    margin-bottom: 0px !important;
    display: block !important;
    padding: 2px 10px !important;
    font-size: 12pt !important;
}

.other-bindery-description {
    padding: 2px 10px !important;
    font-size: 12pt !important;
    min-height: 60px !important;
    height: 60px !important;
}


.blinking{
    animation:blinkingText 1.2s infinite;
}
@keyframes blinkingText{
    0%{     color: #000;    }
    49%{    color: transparent; }
    50%{    color: transparent; }
    99%{    color:transparent;  }
    100%{   color: #000;    }
}

.pad-sides-0{
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.list-item-pricing {
    color: #d27341 !important;
    padding-left: 15px;
    text-align: left;
}

.dye-sub-listitem-price{
    width: 75px;
    display: inline-flex;
    padding-right: 20px;
    font-size: 10pt;
    color: #d27341;
    font-weight: bold;
}
.dye-sub-listitem-size{
    width: 120px !important;
    display: inline-flex;
    font-size: 10pt;
    color: #000000;
    font-weight: bold;
}

#panel-sizes{
    width: 300px !important;
    overflow-y: scroll;
    border-radius: 3px !important;
}

.dye-sub-list-items{
    cursor: pointer;
    width: 100% !important;
    height: 40px !important;
    border: none !important;
    font-size: 12pt !important;
}
.price_size_wrapper:hover{
    border: 1px solid #d27341 !important;
}

.selected-list-item > .price_size_wrapper{
    border: 1px solid #ff6600 !important;
}

.selected-list-item > .sizer-button{
    border: 1px solid #ff6600 !important;
}

.card-footer-no-borders{
    border-top: none !important;
    background-color: #ffffff !important;
}

.vertical-center {
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.frame-box-wrapper:hover, .frame-box-wrapper:focus, .frame-box-wrapper:active, .frame-box-wrapper.active, .open>.dropdown-toggle.frame-box-wrapper {
    border: 1px solid #9f9f9f !important; /*set the color you want here*/
    border-radius: 5px;
}

.frame-box-wrapper-selected{
    border: 1px solid #ad33bc !important; /*set the color you want here*/
}

.frame-box-wrapper{
    display: inline-block;
    border: 1px solid #dfdfdf;
    border-radius: 0px !important;
    width: 80px;
    padding: 6px;

}

.frame-image-box{
    width: 65px;
    height: 60px;
}

.product-image-label-class {
    margin-top: -15px;
    font-size: 10pt;
}

#div1 > .frame-box-wrapper{
    margin-right: 5px;
    margin-bottom: 5px;
    border-radius: 5px !important;
}

.cls-product-description{
    padding: 0px 0px 0px 5px !important;
}

.cls-img-dimension-block-wrapper {
}

.cls-configurator-product-title-description{
    font-size: 10pt !important;
}

.btn-number{
    height: 30px !important;
    width: 30px !important;
    padding: 1px 4px 4px 4px !important;
    color: #ffffff !important;
    border-radius: 50% !important;
}

.btn-primary.btn-number-plus{
    -webkit-box-shadow: 0px 0px 3px 1px #245580;
    -moz-box-shadow:    0px 0px 3px 1px #245580;
    box-shadow:         0px 0px 3px 1px #245580;
}

.btn-number-plus{
    border: 3px solid #007bff !important;
}

.btn-primary.btn-number-minus{
    -webkit-box-shadow: 0px 0px 3px 1px #b92c28;
    -moz-box-shadow:    0px 0px 3px 1px #b92c28;
    box-shadow:         0px 0px 3px 1px #b92c28;
}

.btn-number-minus{
    border: 3px solid #c5535e !important;
}

.input-number {
    width:70px; padding: 5px 5px 5px 5px !important
}

.product-label-class {
    font-size: 10pt !important;
}

.product-item-property{
    font-size: 10pt !important;
    border: none !important;
    padding: 3px 0px 0px 0px !important;
}

.configurator-btn-class{
    width: 140px !important;
    margin: 0px auto 10px auto !important;
    padding: 8px !important;
    font-size: 10pt !important;
    font-weight: bold !important;
}

.shopping-cart-btn{
    width: 110px !important;
    font-size: 10pt !important;
    margin: auto 10px auto 10px !important;
}

#shopping-cart-header-icon:hover{
    cursor: pointer;
}

.grid {
    position: relative;
    padding-top: 30px;
    /* border: 1px solid #afafaf; */
}

/************* New Sub-Category Items  *************/
.board-item {
    /* this is the class for the wrapper around the product block
       which is signified by the gray border */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border: 1px solid #dddddd;

    padding: 5px;
    position: absolute;

    height: 300px;
    width: 100%;

    max-width: 315px;

    margin: 5px;
    z-index: 1;
    color: #fff;
}

.mobile-board-item {
    align-items: center !important;
    justify-content: center !important;
    display: flex !important;

    margin-bottom: 10px !important;

    border: 1px solid #dddddd;

    padding: 5px;
    position: absolute;

    width: 48% !important;
    height: 200px !important;

    z-index: 1;
    color: #fff;
}

.mobile-board-item-margin {
    margin-right: 10px !important;
}

/* this is the class for the product title */
.product-link-anchor-cls {
    display: block !important;
    text-align: center;
}

/* this is the class for the wrapper for all the items in a category */
.item-product-block{
    position: relative;
    display: block !important;
    margin: auto;
    min-height: 25px;
}

/* this is the class for the image for the product */
.product-preview-img-class{
    max-height: 270px;
    width: auto !important;
}

/* this is the class for the title of the category */
.board-column-content-title {
    text-align: center;
    font-weight: bold;
}

.board-column-content-description {
    text-align: center;
    font-size: smaller;
}

.category-block {
    margin-bottom: 20px;
}

/************* Item  *************/
.item {
    padding: 5px;
    display: inline-block;
    position: absolute;

    height: 310px;
    width: 100%;

    max-width: 325px;

    margin: 0px;
    z-index: 1;
    color: #fff;
}

/************* Item  *************/
.limited-item {
    padding: 5px;
    display: inline-block;
    position: absolute;

    width: 100%;

    max-width: 900px;

    margin: 0px;
    z-index: 1;
    color: #fff;
}

.mobile-item {
    padding: 5px;
    display: inline-block;
    position: absolute;

    height: 200px;

    max-width: 180px;

    margin: 0px;
    z-index: 1;
    color: #fff;
}

.row-spacing-cls {
    margin-top: 30px;
}

.item-content {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
}

#grid-wrapper{
    margin: auto !important;
}

.mobile-grid-item-landscape-img-class{
    max-width: 165px;
    height: 200px;
}

.mobile-grid-item-portrait-img-class{
    height: 175px !important;
}

.mobile-grid-item-square-img-class{
    max-width: 150px !important;
}

.grid-item-landscape-img-class{
    max-width: 290px !important;
}

.grid-item-limited-landscape-img-class{
    max-width: 700px !important;
}

.grid-item-square-img-class{
    max-width: 240px !important;
}

.grid-item-portrait-img-class{
    max-width: 190px !important;
    max-height: 240px;
}

.grid-item-limited-portrait-img-class{
    /* max-width: 300px !important; */
    max-height: 600px;
}

.grid-item-img-class{
    display: block;
    margin: auto;
    padding: 5px;
}

.product-limited-div-cls {
    display: flex;
    justify-content: center;
    padding-bottom: 250px;
    max-width: 1000px;
    margin: auto;
}

.product-limited-landscape-div-cls{
    display: grid;
    justify-content: center;
    padding-bottom: 250px;
    max-width: 1000px;
    margin: auto;
}


.product-div-cls {
    padding-top: 10px;
    height: 100%;
    max-height: 290px;
    text-align: center;
}

.portrait-left-div-cls{
    width: 40%;
    border: 1px solid #5f5f5f;

}

.limited-landscape-top-cls {

    display: block;

}

.limited-image-wrapper-cls {
    box-shadow: 3px 5px 10px rgba(0,0,0, .5) !important;
}

.portrait-right-div-cls{
    display: block;
    width: 60%;
    display: flex;
    justify-content: center;

}

.limited-landscape-bottom-cls {
    margin-top: 50px;
    min-height: 250px;
    padding: 15px;
    border: 1px solid #5f5f5f;

}

.product-div-wrapper-cls{
    position: relative;
    text-align: center;
    transform: translateX(0px) translateY(30%);
}

.product-div-wrapper-cls:hover .button-wrapper-div-cls{
    /* display: block; */
}

.product-link-anchor-cls {
    color: #5f5f5f;
    text-transform: capitalize;
}

.button-wrapper-div-cls{
    /* display: none; */
    display: block;
    position: absolute;
    z-index: 99;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -25%);
    -ms-transform: translate(-50%, -25%);
}

.product-overlay-button-cls, .product-overlay-preview-button-cls {
    text-align: center;
    width: 120px;
    display: block;
    background:rgba(0,0,0,0.5);
    color: #ffffff !important;
    font-weight: bold;
    border: 2px solid #ffffff;
    padding: 10px;
}

.product-overlay-button-cls:hover, .product-overlay-preview-button-cls:hover {
    background:rgba(255,255,255,0.80);
    color: #252525 !important;
    cursor: pointer;
}

.product-overlay-preview-button-cls{
    margin-top: 7px;
}


.grid-cls {
    width: 100%;
    width: auto;
}

#canvas-configurator-size-options{
    height: 161px !important;
    overflow-y: scroll !important;
}

#configurator-size-options{
    width: 247px;

}

.uploader-material-header-cls{
    display: inline-block;
    width: 100%;
}
.uploader-material-header-material-cls{
    padding-left: 15px;
    display: inline-block;
    width: 33%;
}
.uploader-material-header-cost-cls{
    text-align: center;
    display: inline-block;
    width: 20%;
}
.uploader-material-header-mult-cls{
    text-align: center;
    display: inline-block;
    width: 22%;
}
.uploader-material-header-rate-cls{
    display: inline-block;
    text-align: center;
    width: 20%;
}

.uploader-material-wrapper-cls {
    width: 100%;
    border: 1px solid #bfbfbf;
    padding: 4px;
}

.uploader-material-wrapper-checkbox-cls{
    display: inline-block;
    padding: 3px;
    margin-left: 8px;
    width: 30%;
}
.uploader-cost-div-cls{
    width: 20%;
    display: inline-block;
    text-align: center;
}
.uploader-mult-div-cls{
    width: 22%;
    display: inline-block;
    text-align: center;
}
.uploader-rate-div-cls{
    width: 22%;
    display: inline-block;
    text-align: center;
}
.upload-mult-input-cls {
    width: 60px;
    text-align: center;
}
.upload-rate-input-cls {
    width: 60px;
    text-align: center;
}
.input-on-cls {
    border: 1px solid #afafaf;
}
.input-off-cls {
    border: none;
}

/* modal fixes issue of close X partially hidden  */
.modal { overflow: initial; }

.visualizer-modal-content{
    width: 902px;
}

.visualizer-container {
    position: relative !important;
    overflow: hidden !important;
    height: 500px;
}

.konvajs-content-cls{
    position: absolute !important;
    bottom: 0;
}

.disabled_button{
    pointer-events: none;
    opacity: 0.4;
}

.cropper-modal {
    background-color: #ffffff !important;
}

.no-close .ui-dialog-titlebar-close {
    display: none;
}

.current-material-option-text{
    font-weight: bold;
    color: #000000;
    font-size: 12pt;
}

/************************** HEADER STYLES ****************************/

#shopping-cart-wrapper:hover {
    cursor: pointer;
}

.shopping-cart-icon-cls{
    color: #ffffff;
    font-weight: normal !important;
    font-stretch: normal !important;
    font-variant: normal !important;
    font-family: FontAwesome !important;
    font-size: 16pt !important;
    -webkit-font-smoothing: antialiased;
    pointer: cursor !important;
}

.shopping-cart-header-icon-cls{
    font-size: 16pt !important;
}

.shopping-cart-circle-icon-cls{
    color: #ff0000;
    position: absolute;
    right: -15px;
    bottom: -15px;
    font-size: 30px;
}

.shopping-cart-qty-cls{
    padding-left: 4px;
    font-size: 20px;
    display: inline-block;
    color: #007bff;
}


#shopping-cart-wrapper, #mobile-home-icon-wrapper{
    transition: all .2s ease-in-out;
    position: relative;
}

#shopping-cart-wrapper:hover, #home-icon-wrapper:hover {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
}

.main-nav-link{
    color: #ffffff;
    font-weight: bold;
}

.navbar-nav > .active > .main-nav-link {
    font-size: 1.1rem !important;

}

.nav-item-div {
    transition: all 0.1s ease-in-out 0.1s !important;
}

.nav-item-div:hover {
    color: #ffffff;
    transition: all 0.1s ease-in-out 0.1s !important;
    transform: scale( 1.3 ) !important;
}

.main-nav-link:hover {
    color: #ffffff;
}

.shopping-cart-mobile-icon-cls{
    font-size: 22px;
}

.mobile-shopping-cart-icon-cls{
    display: inline-block;
}

/********************************* MODAL CLASSES *********************************/
.modal-content-class{
    max-width: 500px;
    min-width: 300px;
    margin: auto;
}

/************************** PORTAL BULK UPLOADER PAGE ****************************/

.file-list-upload-preview-img-div-wrapper-cls{
    width: 75px;
    text-align: center;
    display: inline-block;
}

.file-list-preview-img-cls{
    max-width: 50px;
    max-height: 30px;
    width: auto;
    height: auto;
    display: inline-block;
    padding-right: 10px;
}

.bulk-upload-file-list-cls{
    padding: 10px 10px;
    border: 1px solid #bfbfbf;
}

.dye-sub-eligible-cls {
    color: #ff0000;
    padding-left: 10px;
    font-size: 1.5rem;
}

.bulk-upload-file-list-text{
    display: inline !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    width: 390px !important;
    border: none;
}

/************************** PORTAL HOME PAGE ****************************/
.show-overlay-button-close-cls {
    display: none;
}

.home-page-selection-wrapper-class{
    font-size: 20px !Important;
}

.portal-home-category-cls{
    text-transform: uppercase;
    border: 2px solid #555555;
    border-radius: 5px;
    font-size: 14px;
    padding: 1px 30px 4px 30px;
    cursor: pointer;
    margin-right: 7px;
    margin-bottom: 14px;

}

.portal-home-category-cls:hover{

}

.cart-detail-label-cls{
    width: 120px !important;
    display: inline-block !important;
}

.shopping-cart-product-detail-cls{
    list-style-type: none;
    padding-left: 0px;
    margin-left: 0px !important;
}

.hide-mobile-cls{
    display: none !important;
}

.show-mobile-cls{
    display: block !important;
}

/************************** PORTAL SHOPPING CART PAGE ****************************/
#jsCartGrid > .jsgrid-grid-header > .jsgrid-table {
    margin-bottom: 0px !important;
}

#jsCartGrid > .jsgrid-grid-header > .jsgrid-table .jsgrid-header-cell {
    vertical-align: middle !important;
    font-size: 10pt !important;
}

.shopping-cart-column-cls{
    vertical-align: middle !important;
    font-size: 10pt !important;
    color: #505050;
}

.shopping-cart-product-detail-cls {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    font-size: 10pt;
}

.cart-detail-text-cls {
    font-weight: bold;
    color: #000000;
    display: inline !important;
}

.shopping-cart-subtotal-text-cls{
    text-align: right;
    font-size: 10pt;
    font-weight: bold;
}

.shopping-cart-subtotal-cls{
    text-align: center;
    font-size: 11pt;
    font-weight: bold;
    width: 120px;
    border: none;
}

/************************** PORTAL PRODUCT ADMIN PAGE ****************************/
.admin-button-text-cls {
    font-size: 13px;
}

tr.jsgrid-filter-row{
    height: 30px !important;
}

.nav-link.active {
    font-weight: bold !important;
    font-size: 1.1rem !important;
    color: #000000 !important;
}

.nav-link {
    color: #9f9f9f !important;
}

#jsAdminGrid > table{
    height: 550px !important;
    overflow-y: scroll;
}

#jsAdminGrid > .jsgrid-grid-body{
    border: 1px solid #bfbfbf;
    border-radius: 5px;
}

#jsProductOptionsGrid > .jsgrid-grid-body > .jsgrid-table{
    margin-bottom: 15px !important;
}

.product-detail-dialogs-class {
    background: #ffffff !important;
    border: 1px solid black !important;

}

#product-option-button-enable-all{
    color: #28a745;
}

#product-option-button-disable-all{
    color: #dc3545;
}

.bootstrapiso .btn {
    font-size: .9rem !important;
}

.portal-buttons-addtl-class{
    font-size: 10pt !important;
    font-weight: normal;
    text-transform: capitalize;
    border-color: #d2d2d2 !important;
    padding-left: 7px;
}

.jsgrid-selected-row-border-class{
    border: 2px solid #5f5f5f;
}

.jsgrid-selected-row{
    background-color: #cfcfcf !important;
}

.jsgrid-row > td:nth-child(1), .jsgrid-alt-row > td:nth-child(1){
    text-align: center !important;
}

#jsCategoryListGrid > div > table{
    margin-bottom: 0px !important;
}

.d-flex-col-1{
    flex: 1;
}

.bulk-selectpicker-cls {
    font-size: 9pt !important;
}

.disabled-size-class{
    color: #ff0000;
}

.bulk-operation-selected{
    color: #ff0000 !important;
}

.action-button-disable-sizes{
    margin-left: 15px;
    font-size: .9rem !important;
}

.action-button-enable-sizes{
    margin-right: 15px;
    font-size: .9rem !important;
}

.set-default-pricing-button-cls{
    height: 35px;
    margin-top: 10px;
    margin-right: 20px;
    font-size: .9rem !important;
}

#dye-sub-disabled-message{
    color: #ff0000 !important;
}

.portal-admin-grid-item-cls{
    font-size: 13px;
    font-weight: normal;
}

.portal-admin-product-detail-wrapper-cls{
    max-width: 800px;
    min-width: 500px;
    margin: auto;
}

.portal-admin-action-button-cls:hover{
    background-color: #efefef !important;
}

.portal-admin-action-button-cls:hover > .nav-link{
    color: #000000 !important;
}

.portal-admin-action-button-dropdown-cls{
    font-size: 14px;
    margin-bottom: 7px;
}

.portal-admin-action-button-dropdown-cls:hover{
    background-color: #efefef !important;
    text-decoration: underline !important;
}

.portal-admin-product-nav-tabs-cls .nav-link{
    font-size: 13px !important;
}

.portal-admin-product-nav-tabs-cls .nav-link.active{
    font-size: 13px !important;
}

/******* PORTAL ADMIN BUTTONS ********/
#single-upload-button { width: 150px }
#bulk-upload-button { width: 150px }
#select-all-admin-action-button { width: 130px }
#unselect-all-admin-action-button { width: 140px }
#delete-admin-action-button { width: 140px }
#set-category-admin-action-button { width: 180px }
#manage-category-admin-action-button{ width: 170px }
#manage-galleries-admin-action-button { width: 170px }

/****************************** PORTAL PRODUCT PAGE ******************************/
.portal-product-page-main-img-cls {
    max-height: 400px;
    cursor: pointer;
    min-width: 100px;
    min-height: 100px;
}

.portal-product-title-cls {
    text-transform: capitalize;
    font-weight: bold;
    margin-bottom: 10px;
}

.portal-product-description-cls {
    max-width: 600px;
}

/******************************* CONFIGURATOR PAGE *******************************/
#custom-sizing-modal-content-wrapper-cls{
    max-width: 400px !important;
}

.config-product-option-cls{
    vertical-align: top;
    width: 55px;
}

.mobile-menu-button-wrapper {
    display: none;
}

#visualizer-desktop-wrapper {
    text-align: center;
}

.configurator-size-options-text {
    padding-top: 15px;
    text-align: center;
    font-size: 10pt;
}

.option-button-image-cls {
    height: 35px;
    width: 35px;
}

.option-button-text-cls {
    font-size: 10pt;
}

.mobile-option-button-wrapper-div-cls{
    display: inline-block;
    width: 49%;

}

/************* CANVAS CONFIGURATOR ***********/
#unwrapped-canvas-white{
    margin-left: 5px;
    margin-right: 5px;
}

#wrapped-canvas-mirrored{
    margin-left: 5px;
}
#canvas-gloss-coating{
    margin-left: 5px;
}

/************* ACRYLIC CONFIGURATOR ***********/
#acrylic-mounting-standoffs{
    margin-right: 5px;
}
#product-variant{
    display: none;
}
/************* WHITE ALUMINUM CONFIGURATOR ***********/
#white-aluminum{
    margin-right: 5px;
}

/************* FINE PAPER CONFIGURATOR ***********/
#fine-paper-product-smoothe{
    margin-right: 5px;
}

/************* PHOTO PAPER CONFIGURATOR ***********/
#photo-paper-gloss{
    margin-right: 5px;
    margin-left: 5px;
}

/************* FRAMED CONFIGURATOR ***********/
.framed-matt-cls {
    height: 38px;
    width: 100px;
    cursor: pointer;
    margin-right: 5px;
}
.product-framed-matt-label-class {
    width: 90px;
    text-align: center;
    font-size: 10pt;
}

#image-upload-container {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

#frame-selection-wrapper {
    max-width: 320px !important;
    margin: auto;
}

.framed-list-item-price{
    width: 40%;
    display: inline-flex;
    font-size: 10pt;
    color: #d27341;
    font-weight: bold;
}
.framed-list-item-size{
    display: inline-flex;
    font-size: 10pt;
    color: #d27341;
    font-weight: bold;
}
#configurator-size-options{
    width: 277px !important;
    margin: auto !important;
}
.framed-list-item-price{
    width: 49%;
    display: inline-flex;
    font-size: 10pt;
    color: #d27341;
    font-weight: bold;
}
.framed-list-items{
    cursor: pointer;
    width: 100% !important;
    height: 35px !important;
    border: none !important;
    font-size: 12pt !important;
    padding-top: 2px !important;
    padding-bottom: 2px !important;
}

/******************************** VISUALIZER PAGE ********************************/
.preview-object-thumbnail-cls{
    max-width: 40px;
    padding-top: 10px;
    position: relative;
}

.preview-object-details-overlay-cls {
    background-color:  rgba(256, 256, 256, .5); ;
    height: 75px;
    width: 200px;
    position: absolute;
}

.border-cls {
    border: 2px solid #ffffff;
}

.preview-object-details-overlay-cls{
    text-align: center;
}

/******************************** FOOTER PAGE ********************************/
.footer-contact-me-link-wrapper-cls{
    padding-top: 30px;
    padding-bottom: 30px;
}

.portal-footer-contact-me-email-cls{
    color: #ffffff !important;
    font-size: 1.2rem !important;
    text-shadow: 2px 2px #555555;

}

.current-version-id-cls{
    margin: auto;
    text-align: center;
    color: #efefef !important;
    font-size: 8pt !important;
}

.powered-by-id-cls{
    color: #efefef !important;
    text-align: center;
    font-size: 9pt !important;
}

/******************************** MASONRY GRID *******************************/
.grid-sizer, .grid-item{
    width: 24%;
}

.gutter-sizer { width: 5px; }

.grid-item img{
    display: block !important;
    max-width: 100% !important;
}
label {
    font-weight: inherit;
}
input[type=checkbox], input[type=radio] {
    margin: 4px 0 0;

    line-height: normal;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
}


.switch-input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    box-sizing: content-box;
}
.switch-left-right .switch-input:checked ~ .switch-label {
    background: inherit;
}
.switch-input:checked ~ .switch-label {
    background: #E1B42B;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15), inset 0 0 3px rgba(0, 0, 0, 0.2);
}
.switch-left-right .switch-label {
    overflow: hidden;
}
.switch-label, .switch-handle {
    transition: All 0.3s ease;
    -webkit-transition: All 0.3s ease;
    -moz-transition: All 0.3s ease;
    -o-transition: All 0.3s ease;
}
.switch-label {
    position: relative;
    display: block;
    height: inherit;
    font-size: 10px;
    text-transform: uppercase;
    background: #eceeef;
    border-radius: inherit;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.12), inset 0 0 2px rgba(0, 0, 0, 0.15);
    box-sizing: content-box;
}
.switch-left-right .switch-input:checked ~ .switch-label:before {
    opacity: 1;
    left: 100px;
}
.switch-input:checked ~ .switch-label:before {
    opacity: 0;
}
.switch-left-right .switch-label:before {
    background: #eceeef;
    text-align: left;
    padding-left: 80px!important;
}
.switch-left-right .switch-label:before, .switch-left-right .switch-label:after {
    width: 20px;
    height: 20px;
    top: 4px;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 11px 0 0 0;
    text-indent: -12px;
    border-radius: 20px;
    box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.2), inset 0 0 3px rgba(0, 0, 0, 0.1);
}
.switch-label:before {
    content: attr(data-off);
    right: 11px;
    color: #aaaaaa;
    text-shadow: 0 1px rgba(255, 255, 255, 0.5);
}

span.switch-label:after {
    content: attr(data-on);
    left: 11px;
    color: #FFFFFF;
    text-shadow: 0 1px rgba(0, 0, 0, 0.2);
    position: absolute;

}

.switch-label:before, .switch-label:after {
    position: absolute;
    top: 50%;
    margin-top: -5px;
    line-height: 1;
    -webkit-transition: inherit;
    -moz-transition: inherit;
    -o-transition: inherit;
    transition: inherit;
    box-sizing: content-box;
}

.switch-left-right .switch-input:checked ~ .switch-label:after {
    left: 0!important;
    opacity: 1;
    padding-left: 20px;
}


.switch-input:checked ~ .switch-label:after {
    opacity: 1;
}


.switch-left-right .switch-label:after {
    text-align: left;
    text-indent: 9px;
    background: #FF7F50!important;
    left: -100px!important;
    opacity: 1;
    width: 100%!important;

}
.switch-left-right .switch-label:before, .switch-left-right .switch-label:after {
    width: 20px;
    height: 20px;
    top: 4px;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 11px 0 0 0;
    text-indent: -12px;
    border-radius: 20px;
    box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.2), inset 0 0 3px rgba(0, 0, 0, 0.1);
}
.switch-input:checked ~ .switch-handle {
    left: 74px;
    box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2);
}
.switch-label, .switch-handle {
    transition: All 0.3s ease;
    -webkit-transition: All 0.3s ease;
    -moz-transition: All 0.3s ease;
    -o-transition: All 0.3s ease;
}

.switch-handle {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 28px;
    height: 28px;
    background: linear-gradient(to bottom, #FFFFFF 40%, #f0f0f0);
    background-image: -webkit-linear-gradient(top, #FFFFFF 40%, #f0f0f0);
    border-radius: 100%;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

.switch-handle:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -6px 0 0 -6px;
    width: 12px;
    height: 12px;
    background: linear-gradient(to bottom, #eeeeee, #FFFFFF);
    background-image: -webkit-linear-gradient(top, #eeeeee, #FFFFFF);
    border-radius: 6px;
    box-shadow: inset 0 1px rgba(0, 0, 0, 0.02);
}

/******** HELPER QUESTION CLASSES ************/
.what-does-this-mean-cls {
    font-size: 16px !important;
    color: #bebebe !important;
    padding-left: 10px !important;
    vertical-align: middle !important;
}
.what-does-this-mean-cls:hover{
    cursor: pointer;
    cursor: help !important;
}

.what-does-this-mean-02-cls {
    font-size: 16pt !important;
    color: #bebebe !important;
    padding-left: 5px !important;
    vertical-align: middle !important;
}

.helper-class:hover {
    cursor: help !important;
}

/********* QA WRAPPER CLASS **********/
.portal-qa-wrapper-class{
    padding: 20px 40px 40px 20px !important;

}

.bootbox-modal-content{
    margin: auto !important;
}

.bootbox-modal-content > .modal-dialog > .modal-content {
    max-width: 902px;
    min-width: 300px;
    margin: auto;
}

.helper-class {
    /* display: none !important; */
}

.aspect {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    overflow: hidden;
}

.aspect__inner {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

/* Add more aspect ratios here */
.aspect--16x9 {
    padding-bottom: 56.25%;
}

/********************* JUSTIFIED MOSAIC GRID ************************/


/********************* PORTAL ADMIN GRID ************************/

.portal-home-admin-category-cls{
    text-transform: uppercase;
    border: 2px solid #555555;
    color: #55555 !important;
    border-radius: 5px;
    font-size: 14px;
    padding: 1px 30px 4px 30px;
    cursor: pointer;
    margin-right: 7px;
    margin-bottom: 14px;
}

/********************* ADMIN DIALOG BOXES ************************/

.admin-form-buttons-cls {
    font-size: 12px !important;
}

.ui-widget-content {
    background: #ffffff !important;
}

.shop-pages-class{
    max-height: 250px !important;
    width: auto !important;
    margin: auto !important;
}

.star-rating{
    display: inline-block !important;
}

.astra-shop-summary-wrap{
    text-align: center !important;
}

.add_to_cart_button {
    display: block !important;
}

#shop-categories > li {
    display: inline-block !important;
}

.woocommerce-loop-category__title{
    text-align: center;
}

.woocommerce-loop-category__title > mark{
    display: block !important;
    text-align: center !important;
    font-size: 13pt !important;
}

.jstree-button-cls{
    padding: 3px 10px;
    border-radius: 5px !important;
}

#category-options-container-wrapper {
    font-size: 0.9em;
    border: 1px solid #e0e0e0;
    padding: 5px 15px;
    border-radius: 5px;
}

#media-options-container-wrapper {
    margin-top: 20px;
    font-size: 0.9em;
    border: 1px solid #e0e0e0;
    padding: 5px 15px;
    border-radius: 5px;
}

/* ****************************************************************************************************************** */
/* ************************************************  000 GENERAL   ************************************************** */
/* ****************************************************************************************************************** */

.woocommerce {
    padding-bottom: 100px;
}

.form-control::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: rgba( 0,0,0, 0.3 ) !important;
    font-size: 13px;
    opacity: 1; /* Firefox */
}

.form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #efefef;
    font-size: 13px;
}

.form-control::-ms-input-placeholder { /* Microsoft Edge */
    color: #efefef;
    font-size: 13px;
}

/* ****************************************************************************************************************** */
/* *********************************************  000 PORTAL ADMIN   ************************************************ */
/* ****************************************************************************************************************** */

.jsAdminGrid > table, th, tr, td {
    font-family: 'Helvetica', Arial, serif !important;
    font-weight: 400 !important;
}

.portal-admin-action-button-cls, .portal-admin-action-button-cls a{
    font-size: 12px !important;
    margin-bottom: 0px !important;
    margin-right: 0px !important;
    color: #000000;
}

#order_admin_form{
    padding-bottom: 20px;
}

.jsgrid-header-cell {
    border-style: hidden !important;
    font-size: 0.8em;
}

.jsgrid-header-row {
    border-style: hidden !important;
}

.admin-pricing-detail-cls, admin-pricing-detail-profit-cls, .admin-pricing-detail-header-cls{
    font-size: 0.9em;
}

.material-not-eligible-for-pricing-cls{
    font-size: 1.25em;
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 15px;
    font-weight: 800;
}

/* ****************************************************************************************************************** */
/* *************************************************  000JSTREE   *************************************************** */
/* ****************************************************************************************************************** */
.jstree-node, .jstree-children, .jstree-container-ul{
    font-size: 13px !important;
}

/* ****************************************************************************************************************** */
/* ***********************************************  000 HOME PAGE   ************************************************* */
/* ****************************************************************************************************************** */

/* ****************************************************************************************************************** */
/* *******************************************  000 CATALOG/SHOP PAGE   ********************************************* */
/* ****************************************************************************************************************** */

#primary{
    margin-bottom: 1px !important;
}

.sold_cls{
    background-color: #e40808;
    width: 120px;
    margin: auto;
    padding: 3px;
    color: #ffffff;
    font-weight: 900;
}

.woocommerce ul.products li.product .ast-shop-product-out-of-stock, .woocommerce-page ul.products li.product .ast-shop-product-out-of-stock{
    display: none !important;
}

.product-thumbnail-wrapper-cls{
    /* min-width: 290px; */
}

.category-button-class{
    font-family: 'Gruppo',display !important;
    font-size: 0.9em;
    margin: 10px 5px;
    border: 2px solid #808080;
    border-radius: 5px;
    padding: 5px 15px 5px 15px;
    color: #ffffff;
    font-weight: 800;
    -webkit-text-stroke-width: 1px;
    letter-spacing: 2px;
}

.soldout, .sold{
    display: block;
    background-color: red;
    width: 100px;
    margin: auto;
    text-align: center;
    font-weight: 900;
}

.coming-soon{
    display: block;
    background-color: red;
    width: 130px;
    margin: auto;
    text-align: center;
    font-weight: 900;
}

.sub-category-description{
    text-align: center;
    padding-bottom: 20px;
    max-width: 750px;
    margin: auto;
}

.sub-category-heading{
    text-align: center;
    font-size: 1.3em;
    font-weight: 600;
    padding-bottom: 5px;
    max-width: 300px;
    margin: auto;
}

.sub-category-class{
    max-width: 1200px !important;
    margin: auto !important;
}

.woocommerce-ordering-wrapper-cls {
    float: none !important;
}

.woocommerce .woocommerce-result-count{
    font-size: 0.8em;
    padding-top: 3px;
}

.woocommerce-breadcrumb{
    text-align: center;
    font-size: 0.8em;
}

.shop-loop-add-to-cart-link > a {
    margin: auto !important;
}

.gallery-image-class-overlay-play-button{
    position: absolute;
    z-index: 99;
}

/* ****************************************************************************************************************** */
/* *********************************************  000 CONFIGURATOR   ************************************************ */
/* ****************************************************************************************************************** */

.wc-tabs-wrapper{
    margin-top: 35px !important;
}

/* this is the class for the short description under the image */
.short-description-for-simple-products{
    max-width: 500px;
    margin: auto;
    text-align: left;
    padding-top: 20px;
}

/* this is the wrapper for the custom fields in the configurator */
/* these fields are backend fields */
#custom-fields{
    /* display: none; */
}

/* content-single-product.php template */
/* wrapper around the image and summary in the product page */
#product-image-summary-wrapper{
    text-align: center !important;
}

/* product-image.php template */
/* fware image wrapper class */
.fware-image-wrapper-class{
    width: auto !important;
    float: none !important;
    vertical-align: top !important;
    display: inline-block !important;
}

/*
#fware-image-wrapper{
    margin-bottom: 0px !important;
    max-width: 500px;

}*/

/* this is a conditional class in the product-image.php template */
/* keeps the image div partly filled until Konva displays the image */
/* configurator */
.fware-image-wrapper-class-width{
    min-width: 375px !important;
    padding-top: 30px;
}

#konva-container-wrapper{
    padding: 20px;
    /* border: 1px solid #9f9f9f; */
}

.checkout-button{
    color: #ffffff !important;
    font-weight: bold !important;
}

#configurator-contact-me-href-wrapper{
    display: inline-block;
    padding-top: 20px;
}

.custom-product-size-description{
    display: block;
    padding: 0px 0px 10px 0px;
}

.custom-product-feature-description{
    display: block;
    padding: 0px 0px 10px 0px;
    margin-bottom: 10px;
    text-align: left;
}

.background-img-class{
    display: inline-block;
    padding: 4px 0px;
}

.selected-background-img-thumb{
    border: 2px solid #ff0000;
}

#add-custom-size-button{
    /* display: none; */
}

/* this displays the pricing under the konva image */
#pricing-table{
    width: 200px;
    margin: 10px 0px 0px 0px;
    font-size: 0.9em;
}

#pricing-table table{
    margin-bottom: 0px;
}

/* This is the class for the selected price in the pricing table */
.pricing-table-selected-price {
    font-weight: bold;
    font-size: 1em;
}

#product-preview-button-wrapper{
    font-size: 1em;
    padding: 10px 5px;
}

.button-wrapper-div-cls{
    /* display: none; */
    display: none;
    position: absolute;
    z-index: 99;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -25%);
    -ms-transform: translate(-50%, -25%);
}



.gallery-image-class-wrapper{
    vertical-align: top;
    margin-top: -8px;
    max-width: 500px;
    margin: auto;
}

.fware-main-product-wrapper-class{
    display: inline-block;
}

.gallery-image-class-wrapper{
    display: block;
}

.woocommerce-Tabs-panel--description > p{
    max-width: 900px;
}

.pricing-table-option-btn-wrapper-cls{
    width: 100% !important;
    display: inline-block;
}

.pricing-table-option-btn-cls{
    width: 100% !important;
    padding: 3px 0px !important;
    background-color: inherit;
    border: none;
}

.pricing-table-option-btn-cls :hover {
    
}

.gallery-image-wrapper-class{
    width: 80px;
    height: 80px !important;
    display: inline-block;
    display: inline-block;
    object-fit: cover;
    overflow: hidden;
    border: 1px solid #7cccc661;
    margin: 1px 2px 1px 2px;
}

.gallery-image-class{
    width: 80px !important;
    height: 80px !important;
    object-fit: cover;
}

#gallery-images{
    margin-top: 4px;
}

.gallery-image-wrapper-class:hover{
    opacity: 0.5 !important;
}

.label > label{
    margin-bottom: 0px !important;
}

td.label{
    margin-top: 0px !important;
}
.woocommerce div.product form.cart .variations label {
    font-size: 0.9em;
}

.woocommerce div.product form.cart .variations select {
    font-size: 0.9em;
}

.woocommerce div.product form.cart .variations select option{
    height: 35px !important;
}

.product-options-displayed-wrapper {
    font-size: 0.9em;
    line-height: 1.75em;
}

.waitingAddToCart {
    font-size: 0.9em;
    font-weight: 500;
    animation: blinker 0.7s cubic-bezier(.5, 0, 1, 1) infinite alternate;
}
@keyframes blinker { to { opacity: 0; } }

.woocommerce div.product .product_title{
    max-width: 300px;
}

#pseudo-add-to-cart-simple-btn{
    float: none !important;
}

/* Product Preview button in the configurator */
#product-preview-button{
}

/* *************************  CONFIGURATOR - detail/more info  ************************* */

.attribute-more-info-cls{
    padding-left: 10px;
}

h2.detail-info-option-header-cls{
    padding-left: 13px;
}

.detail-info-text-content-cls{
    padding-left: 13px;
}

ul.nav.nav-tabs.detail-info-nav{
   margin-left: 0px;
}

.detail-info-tab-content-cls{
    padding-top: 10px;
}

li.detail-info-tab-label-cls{
    margin: 5px 7px 5px 7px;
    width: 200px;
}

.a-href-detail-label-cls {
    font-weight: bold;
    font-size: 1em;
    padding: 0.5em 0.5em 0.5em 1.25em;
    margin: 5px 7px 5px 7px;
    border-radius: 5px;
    display: block;
    text-decoration: none;
}

.currently-selected-detail-label-cls{
    
}

/* Smartphones (portrait) ----------- */
@media only screen and (max-width : 640px) {

    li.detail-info-tab-label-cls {
        width: 45%;
    }

    .a-href-detail-label-cls {
        padding: 0.5em 0.5em 0.5em .75em;
        display: block;
        width: 100%;
    }
}

.room-preview-img-cls{
    width: 70px !important;
    margin: auto !important;
}

.room-preview-overlay-drag-n-drop-cls{
    color: #ff0000;
}

.product-page-preview-thumbnail-cls{
    width: 100px !important;
    height: 100px !important;
    object-fit: contain;
}

.detail-info-product-image-close-button{
    float: right;
    padding: 0px 13px 9px 0px;
    display: inline;
}

.a-href-detail-label-cls{
    text-align: center;
}

/* ****************************************************************************************************************** */
/* ********************************************  000 SHOPPING CART   ************************************************ */
/* ****************************************************************************************************************** */

.select2-results__option{
    color: #000000;
}

.cart-item-thumbnail-wrapper-cls{
    background-color: inherit;
    max-height: 100px !important;
    max-width: 100px !important;
    margin: auto;
    display: inline-block;
}

.cart-item-portrait-image-thumbnail-cls{
    max-height: 100px !important;
}

.cart-item-landscape-image-thumbnail-cls{
    max-width: 70px !important;
}

.item-thumbnail-cls{
    max-height: 84px;
}

.elementor-menu-cart__product-name{
    font-size: 1em !important;
}

.elementor-menu-cart__product-name a{
    font-size: 1.1em !important;
}

.elementor-widget-woocommerce-menu-cart .elementor-menu-cart__product-price{
    font-size: 1em !important;
}

.elementor-menu-cart__footer-buttons{
    font-size: .7em !important;
}

/* ****************************************************************************************************************** */
/* ***********************************************  000 CHECKOUT   ************************************************** */
/* ****************************************************************************************************************** */

.woocommerce table.shop_table, .woocommerce-page table.shop_table{
    padding: 10px !important;
}

    /* ****************************************************************************************************************** */
/* ********************************************  000 ORDER CONFIRM   ************************************************ */
/* ****************************************************************************************************************** */
.woocommerce-table__product-name{
    max-width: 350px !important;
}

/* ****************************************************************************************************************** */
/* **********************************************  800 PORTAL ADMIN   *********************************************** */
/* ****************************************************************************************************************** */
.product-detail-simple-form-fields {
    display: block;
}

.product-detail-simple-form-fields.product-param-field {
    text-align: left;
}

.js-admin-grid-cls {
    min-height: 100px;
}

.portal-product-panel-admin-action-button-wrapper-cls{
    height: 100px;
}

.template-admin-size-cls{
    width: 200px !important;
    display: inline !important;
}

.product-sizing-template-wrapper-cls{
    max-width: 500px !important;
}

.readonly-fields{
    background-color: #eeeeee82 !important;
    border: 1px solid #eeeeee !important;
}

.template-input-sizing-cls{
    width: 100px !important;
}

.no-style-button-cls{
    background-color: #e7e7e7 !important;
    padding: 7px 15px 7px 15px !important;
    font-weight: 100 !important;
    font-size: .8em !important;
    border-radius: 5px !important;
    color: #444444 !important;
}

.no-style-button-cls:hover{
    background-color: #9a9a9a !important;
    color: #ffffff !important;
}

/* ****************************************************************************************************************** */
/* **********************************************  800 ORDER ADMIN   ************************************************ */
/* ****************************************************************************************************************** */
#woocommerce-order-items .woocommerce_order_items_wrapper table.woocommerce_order_items td.thumb .wc-order-item-thumbnail {
    min-width: 120px !important;
    width: 120px;
}
.thumb td{
    width: 120px !important;
}

/* ****************************************************************************************************************** */
/* *********************************************  800 BULK UPLOADER   *********************************************** */
/* ****************************************************************************************************************** */

.bulk-upload-category-container-cls{
    max-width: 320px;
    overflow-y: scroll;
}

/* ****************************************************************************************************************** */
/* *******************************************  800 VARIABLE UPLOADER   ********************************************* */
/* ****************************************************************************************************************** */

/* ****************************************************************************************************************** */
/* ********************************************  800 SIMPLE UPLOADER   ********************************************** */
/* ****************************************************************************************************************** */

/* ****************************************************************************************************************** */
/* *****************************************  TEMPLATE SPECIFIC CSS CHANGES   *************************************** */
/* ****************************************************************************************************************** */

.woocommerce-loop-category__title > mark {
    font-size: 10pt !important;
    font-weight: normal !important;
}

.woocommerce-checkout-review-order-table{
    border: 2px solid !important;
}

/* ****************************************************************************************************************** */
/* *****************************************  TEMPLATE SPECIFIC CSS CHANGES   *************************************** */
/* ****************************************************************************************************************** */

/* this is the left sidebar area in the product category pages */
.shop-page-category-sidebar-cls{
    min-width: 200px;
}

.woocommerce .product .cart .quantity.buttons_added{
    margin: auto;
}

/* ****************************************************************************************************************** */
/* ************************************************  ACCOUNT PAGE   ************************************************* */
/* ****************************************************************************************************************** */


/* this is the login button of the wc account page */
.woocommerce-form-login__submit{
    padding-left: 20px;
}

#customer_login {
    font-weight: 300 !important;
}

.woocommerce form .input-text {
    padding: .25em !important;
}

.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1 {
    float: left;
    width: 48%;
    max-width: 100% !important;
}

.woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2 {
    float: right;
    width: 48%;
    max-width: 100% !important;
}

/* Smartphones (portrait) ----------- */
@media only screen and (max-width : 640px) {
    .woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1 {
        width: 100% !important;
        max-width: 100% !important;
    }

    .woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2 {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* ****************************************************************************************************************** */
/* ******************************************************  FOOTER  ************************************************** */
/* ****************************************************************************************************************** */
#form-field-contact_page_shortcode{
    margin: auto;
}

/* ****************************************************************************************************************** */
/* ****************************************  ELEMENTOR SPECIFIC CSS CHANGES   *************************************** */
/* ****************************************************************************************************************** */
.elementor-message-success{
    text-align: center;
}

/* ****************************************************************************************************************** */
/* ***************************************************  EMAILS   **************************************************** */
/* ****************************************************************************************************************** */
#template_container{
    width: 100%;
    min-width: 600px;
    max-width: 900px;
}

/* ****************************************************************************************************************** */
/* **********************************************  Refactor Changes   *********************************************** */
/* ****************************************************************************************************************** */
.modal-dialog{
    max-width: 902px;
}

/* ****************************************************************************************************************** */
/*   Changes to the Variable template to put thumbnails at bottom                                                     */
/*   1/20/2022                                                                                                        */
/* ****************************************************************************************************************** */

/* Smartphones (portrait and landscape) ----------- */
@media only screen
and (min-device-width : 320px)
and (max-device-width : 480px)
and (min-width : 320px)
and (max-width : 480px)
and (-webkit-min-device-pixel-ratio: 2) {
    /* Styles */
    .summary.entry-summary {
        width: 100% !important;
    }

    #product-image-summary-wrapper{
        width: 100% !important;
        display: block !important;
    }

    .summary.entry-summary{
        max-width: 100% !important;
    }

    .woocommerce div.product div.images .woocommerce-product-gallery__image {
        width: 50px !important;
    }

    .woocommerce div.product{
        padding: 10px 10px 10px 10px;
    }

}

/* Desktops and laptops ----------- */
@media only screen
and (min-device-width: 768px)
and (min-width: 768px)
and (orientation : landscape){

    #product-image-summary-wrapper{
        display: inline-block !important;
        width: 100% !important;
    }

    .summary.entry-summary{
        max-width: 300px !important;
    }

    .woocommerce div.product div.images .woocommerce-product-gallery__image {
        width: 80px !important;
    }

}

.woocommerce #content div.product div.images, .woocommerce div.product div.images, .woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images{
    width: 100% !important;
}

.woocommerce #content div.product div.images, .woocommerce div.product div.images, .woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images{
    float: none !important;
}

.woocommerce div.product div.images .woocommerce-product-gallery__image {
    margin: 7px !important;
}

.woocommerce div.product div.images .woocommerce-product-gallery__image{
    display: inline-block !important;
}

.woocommerce div.product div.images.woocommerce-product-gallery {
    margin: auto !important;
}

#product-image-summary-wrapper{
    vertical-align: top;
}