.span-products-warning {
    font-size: 24px;
    line-height: 28px;
    text-transform: uppercase;
    color: #d4a26f;
}

.div-products-warning-container {
    text-align: center;
    padding: 10px;
}

.div-products-container {
    margin-top: 25px;
}

.product-variation-button {
    display: block;
    padding: 10px 0;
}

.select-variation-button {
    border: 1px solid gray;
    border-radius: 5px;
    margin-top: 10px;
    display: inline-table;
    width: 100%;
}

#category-page-title {
    position: relative;
    background-color: var(--theme-products-list-category-header-background-color);
    padding: 0;
    min-height: 251px;
    height: auto;
}

#category-page-title img {
    width: 100%;
    opacity: 1;
    vertical-align: top;
}

.category-title {
    position: absolute;
    bottom: 0;
    left: 30px;
    font-size: 40px;
    margin: 15px 0;
    color: var(--theme-primary-text-color) !important;
}

#products-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style-type: none;
}

.list-product-container {
    margin-bottom: 30px;
}

.product-wrapper {
    background-color: var(--theme-products-list-product-container-background-color) !important;
    padding-bottom: 10px;
    position: relative;
}

.product-title-wrapper {
    padding: 10px 0;
    cursor: pointer;
}

.product-image-overlay-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.product-image-overlay-wrapper:hover .product-details-btn {
    opacity: 1;
}

.product-details-btn {
    background-color: var(--theme-primary-color);
    border: 1px solid var(--theme-primary-color);
    color: #fff;
    border-radius: 5px;
    opacity: 1;
}

.product-details-btn:hover {
    background-color: rgba(255,255,255,0);
    border: 1px solid var(--theme-primary-color);
    color: var(--theme-primary-color);
}

.product-image-wrapper {
    position: relative;
    margin-bottom: 10px;
    min-height: 306px;
    /*max-height: 500px;*/
    max-height: 100%;
    height: 100%;
    display: flex;
    flex-flow: row;
}
.product-image-wrapper:before {
	content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background: #151515;
    opacity: 0;
    filter: alpha(opacity=50);
    -webkit-transition: all .6s ease;
    -moz-transition: all .6s ease;
    -o-transition: all .6s ease;
    -ms-transition: all .6s ease;
    transition: all .6s ease;
}

.product-image-wrapper:hover:before {
	opacity: var(--theme-products-list-hover-opacity);
    filter: alpha(opacity=85);
    border-radius: 0;
}

.product-image-wrapper .product-image-overlay-wrapper {
	position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.product-image-wrapper .product-image-overlay-wrapper:before {
	content: "";
    position: absolute;
    left: 0;
    bottom: 25px;
    height: 1px;
    width: 100%;
    background: gray;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5s ease;
}

/* .product-image-wrapper:hover .product-image-overlay-wrapper:before {
	width: 100%;
} */

.product-image-wrapper .product-image-overlay-wrapper:after {
	content: "";
    position: absolute;
    left: 0;
    bottom: 25px;
    height: 1px;
    width: 25px;
    background: var(--theme-primary-color);
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5s ease;
}

/* .product-image-wrapper:hover .product-image-overlay-wrapper:after {
	width: 25px;
	background: var(--theme-primary-color);
} */

.product-image-wrapper .product-image-overlay-wrapper span:before {
	content: "";
    position: absolute;
    left: 25px;
    bottom: 0;
    height: 0;
    width: 1px;
    background: gray;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5s ease;
}

.product-image-wrapper:hover .product-image-overlay-wrapper span:before {
	height: 100%;
}

.product-image-wrapper .product-image-overlay-wrapper span:after {
	content: "";
    position: absolute;
    left: 25px;
    bottom: 0;
    height: 25px;
    width: 1px;
    background: var(--theme-primary-color);
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5s ease;
}

/* .product-image-wrapper:hover .product-image-overlay-wrapper span:after {
	background: var(--theme-primary-color);
	height: 25px;
} */

.product-image-wrapper .product-image-overlay-wrapper .product-details{
	display: block;
    position: absolute;
    bottom: 45px;
    left: 45px;
    opacity: 0;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    padding: 10px;
    border: 1px solid #fff;
    text-decoration: none;
    text-transform: uppercase;
    opacity: 0;
    -webkit-transition: opacity .5s ease-in-out;
	-ms-transition: opacity .5s ease-in-out;
    -o-transition: opacity .5s ease-in-out;
    transition: opacity .5s ease-in-out;
	visibility: hidden;
}
.product-image-wrapper:hover .product-image-overlay-wrapper .product-details {
	opacity: 1;
	-webkit-transition: opacity .5s ease-in-out;
	-ms-transition: opacity .5s ease-in-out;
	-o-transition: opacity .5s ease-in-out;
	-webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    visibility: initial;
}

.product-image-wrapper:hover .product-image-overlay-wrapper .product-details:hover {
	border: 1px solid var(--theme-primary-color);
	color: var(--theme-primary-color);
	-webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.product-description{
	white-space: pre-line;
}

.product-description-wrapper {
    padding: 0 20px;
    margin-bottom: 10px;
    /* height: 40px; */
    min-height: 40px;
    overflow: hidden;
}

.product-controls-wrapper {
    display: flex;
    padding: 0 10px;
    align-items: center;
}

.product-atc-button-wrapper {
    width: 40%;
}

.product-variation-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    background: rgba(0,0,0,1);
    border: 1px solid var(--theme-primary-color);
    border-radius: 5px;
    text-align: center;
    -webkit-transition: opacity .15s ease-in-out;
    -ms-transition: opacity .15s ease-in-out;
    -o-transition: opacity .15s ease-in-out;
    transition: opacity .15s ease-in-out;
}

.product-variation-overlay:hover {
	opacity: 1;
	-webkit-transition: opacity .5s ease-in-out;
	-ms-transition: opacity .5s ease-in-out;
    -o-transition: opacity .5s ease-in-out;
    transition: opacity .5s ease-in-out;
}

.product-size-wrapper {
    border: 1px solid gray;
    border-radius: 5px;
    position: relative;
    width: 60%;
    margin-right: 2%;
    height: 45px;
    display: inline-table;
}

.product-variation-select-wrapper {
    padding: 0 10px;
    width: 59%;
    height: 0;
    z-index: 3;
    overflow: hidden;
    background: rgba(0,0,0,1);
    position: absolute;
    bottom: 60px;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.shown-variation-select-wrapper {
    padding-bottom: 10px;
    height: auto;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.variation-overlay-tooltip {
    font-size: 14px;
    margin-left: 9px;
    line-height: 3;
    color: var(--theme-primary-color);
    font-weight: 600;
    text-transform: uppercase;
}

.product-atc-button-wrapper {
    width: 45%;
}

.add-to-cart-button,
.redirect-to-category-button {
    width: 100%;
    /*font-size: 12px;*/
    font-size: 13px;
    padding: 10px;
}

.product-title {
    margin: 0;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    height: 35px;
    overflow: hidden;
    padding: 0 5px;
}

.product-details-btn {
    position: absolute;
    bottom: 45px;
    left: 45px;
    padding: 10px;
    opacity: 1;
}

.product-image {
    /* width: 100%; */
    vertical-align: top;
}

.variation-price {
    margin-right: 5px;
    color: var(--theme-primary-text-color);
    font-size: 17px;
}

.variation-type {
    color: var(--theme-primary-text-color);
    font-size: 13px;
    margin-left: 5px;
} 

.variation-size {
    font-size: 12px;
    color: gray;
}

#category-page-title {
    margin-bottom: 20px;
}

.fa-angle-double-up {
    display: inline-block;
    position: relative;
    margin-top: 9px;
    margin-right: 5px;
    -moz-animation: bounce .8s infinite linear;
    -o-animation: bounce .8s infinite linear;
    -webkit-animation: bounce .8s infinite linear;
    animation: bounce .8s infinite linear;
}

.shown-variation-overlay {
    opacity: 1;
}

@-webkit-keyframes bounce {
    0% { top: 0; }
    50% { top: -0.2em; }
  /*  70% { top: -0.3em; }*/
    100% { top: 0; }
}
@-moz-keyframes bounce {
    0% { top: 0; }
    50% { top: -0.2em; }
   /* 70% { top: -0.3em; }*/
    100% { top: 0; }
}
@-o-keyframes bounce {
    0% { top: 0; }
    50% { top: -0.2em; }
    /*70% { top: -0.3em; }*/
    100% { top: 0; }
}
@-ms-keyframes bounce {
    0% { top: 0; }
    50% { top: -0.2em; }
  /*  70% { top: -0.3em; }*/
    100% { top: 0; }
}
@keyframes bounce {
    0% { top: 0; }
    50% { top: -0.2em; }
 /*   70% { top: -0.3em; }*/
    100% { top: 0; }
}

.simple-product-details-wrapper {
    width: 60%;
    margin-right: 2%;
    display: flex;
    align-items: center;
}

.div-offers-selector-summary-container {
    display: block;
    float: left;
    width: 100%;
    margin-top: 10px;
}

.div-offers-summary-position-wrapper {
    display: flex;
    padding-top: 5px;
    padding-bottom: 5px;
}

.anchor-offers-position-top-navigation {
    background: #fff;
    width: 20px;
    height: 20px;
    display: block;
    border-radius: 50%;
    text-align: center;
    color:#333;
}

.label-offers-position-selection-text {
    overflow: hidden;
    height: 20px;
    width: calc(100% - 19px);
    display: block;
    margin-left: 5px;
}

.selected-term {
    background: forestgreen !important;
    color: #fff !important;
}

/* -------- Media Queries --------*/

@media screen and (max-width: 991px) {
    #category-page-title {
        display: none;
    }

    #category-details-wrapper {
        margin-top: 50px !important;
        padding: 0;
    }
    
    #products-wrapper {
        margin-top: 62px;
        padding: 0;
    }

    .product-variation-overlay:hover {
        opacity: 0;
    }

    .shown-variation-overlay {
        opacity: 1 !important;
    }

    .div-offers-selector-summary-container {
        display: block;
    }

    .div-offers-summary-position-wrapper {
        width: 100%;
    }

    .div-offers-summary-position-wrapper:nth-child(3n+2) {
        margin: 0;
    }

}

.div-offers-selector-positions-container {
    display: -webkit-box;
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
}

.ul-offers-selector-list::-webkit-scrollbar {
    width: 10px;
}

.ul-offers-selector-list::-webkit-scrollbar-track {
    background: rgba(128, 128, 128, 0.2);
}

.ul-offers-selector-list::-webkit-scrollbar-thumb {
    background: var(--theme-primary-color);
    border-radius: 15px;
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.ul-offers-selector-list::-webkit-scrollbar-thumb:hover {
    background: var(--theme-primary-color);
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.div-offers-selector-position-container {
    width: 100%;
    /* height: 100%; */
}

.div-offers-selector-position-container ul {
    padding-left: 0;
    width: 100%;
    list-style-type: none;
}

.div-offers-selector-positions-items-container {
    width: 100%;
    display: block;
    margin-bottom: 20px;
}

.li-offers-product-wrapper {
    width: 100%;
    cursor: pointer;
    border: 2px solid transparent;
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.selected-offers-product:hover {
    border: 2px solid var(--theme-primary-color);
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.li-offers-product-wrapper:hover {
    /*border: 2px solid var(--theme-primary-color);*/
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.li-offers-product-wrapper:hover .div-offers-product-details {
    background: rgba(128, 128, 128, 0.4);
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.li-offers-product-wrapper:hover .img-offers-product {
    opacity: 0.2;
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.selected-offers-product {
    border: 2px solid var(--theme-primary-color);
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.selected-offers-product .img-offers-product {
    opacity: 0.2;
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.selected-offers-product .div-offers-product-details {
    background: rgba(128, 128, 128, 0.4);
}

.modal-content {
    background-color: rgba(0,0,0,0.8);
    color: #fff !important;
}

.div-offers-product-check-wrapper {
    text-align: right;
    float: left;
    width: 15%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.span-offers-product-title {
    display: block;
    font-size: 18px;
    font-weight: 100;
    margin-bottom: 10px;
    height: 20px;
    overflow: hidden;
}

.span-offers-product-description {
    display: block;
    height: 20px;
    overflow: hidden;
    font-size: 11px;
}

.span-offers-product-details {
    font-size: 11px;
}

.span-offers-product-toppings-string {
    font-size: 11px;
}

.div-offers-product-image-wrapper {
    float: left;
    width: 70px;
    align-self: center;
    background: rgba(0,0,0,0.8);
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.div-offers-product-details {
    float: left;
    width: calc(100% - 70px);
    padding: 10px;
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    display: flex;
}

.div-offers-product-title-wrapper {
    float: left;
    width: 60%;
}

.div-offers-product-title-wrapper-full {
    width: 100%;
}

.div-offers-product-price-wrapper {
    float: left;
    /*width: 25%;*/
    width: 35%;
    text-align: center;
    display: flex;
    justify-content: center;
    position: relative;
}

.div-offers-selector-personalize-container {
    position: absolute;
    left: 0;
    top: 30px;
}

.div-offers-product-conainer {
    display: flex;
}

.modal-title {
    float: left;
    font-weight: 900;
    text-transform: uppercase;
}

.close {
    color: var(--theme-primary-color);
    text-shadow: none;
    opacity: 1;
}

.span-offers-product-price {
    font-size: 18px;
    justify-content: center;
    font-weight: 900;
}

.step {
    font-size: 20px;
}

.anchor-offers-selector-personalize:hover {
    color: var(--theme-primary-color);
}

.unselected-offers-step {
    color: lightgray;
}

.selected-offers-step {
    color: var(--theme-primary-color);
}

.switchery {
    height: 20px;
    width: 40px;
}

.switchery small {
    width: 20px;
    height: 20px;
}

#div-offers-selector-modal-body {
    height: 376px;
    padding: 10px;
}

@media screen and (max-width: 479px) { 
    #div-offers-selector-modal-body {
        padding-bottom: 0px;
    }
    
}

a.step.unselected-offers-step:visited {
    color: lightgray;
}

a.step.unselected-offers-step:hover {
    color: lightgray;
}

a.step.selected-offers-step:visited {
    color: var(--theme-primary-color);
}

a.step.sselected-offers-step:hover {
    color: var(--theme-primary-color);
}

.orders-selector-summary-section {
    font-weight: bold;
    color: var(--theme-primary-color);
}

#anchor-offers-selector-navigate-left, #anchor-offers-selector-navigate-right {
    font-size: 40px;
    display: block;
    width: 100%;
    text-align: center;
    color: lightgray;
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

#anchor-offers-selector-navigate-left:hover, #anchor-offers-selector-navigate-right:hover {
    color: var(--theme-primary-color);
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.ul-offers-selector-list {
    height: 356px;
    margin-bottom: 0;
    /* height: calc(100% - 20px); */
}

.offers-selector-bottom-total-label {
    color: var(--theme-primary-color);
    font-size: 22px;
}

.offers-selector-bottom-total-value {
    color: white;
    font-size: 22px;
}

.i-orders-selector-summary-check {
    color: green;
    margin-right: 5px;
}

#button-offers-selector-confirm {
    padding: 10px 15px;
    margin-left: auto;
}

.div-offers-product-details-no-img {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 10px;
}

.div-offers-product-details-no-img .div-offers-product-title-wrapper {
    width: 60%;
}

.div-offers-product-details-no-img .div-offers-product-check-wrapper {
    float: right;
}

.div-offers-selector-navigation-wrapper {
    display: none;
    align-items: center;
    margin-bottom: 15px;
}

.div-offers-selector-bullets-container {
    text-align: center;
}
 
.div-navigation-left-wrapper, .div-navigation-right-wrapper {
    width: 15%;
}

.div-offers-selector-bullets-container {
    width: 70%;
}

.div-offers-selector-positions-items-container:last-child {
    margin-bottom: 0;
}

.scrollable-list {
    overflow-y: scroll;
}

.div-offers-selector-bottom-modal-footer-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* .div-offers-selector-left-modal-footer-wrapper {
    width: 70%;
    padding: 5px;
} */

.div-offers-selector-right-modal-footer-wrapper {
    width: 100%;
    padding: 5px;
    display: flex;
}

#div-offers-selector-total-container {
    text-align: left;
    margin-bottom: 10px;
}

#div-offers-selector-selection-text {
    text-align: left;
}

.modal-offers-selector {
    padding: 0 !important;
}

.modal-offers-selector .modal-header {
    border-bottom: 2px solid var(--theme-primary-color) !important;
}

.modal-offers-selector .modal-footer {
    border-top: 2px solid var(--theme-primary-color) !important;
}

@media screen and (max-width: 479px) {
    .div-offers-product-image-wrapper {
        display: none;
    }

    .div-offers-product-details {
        width: 100%;
    }

    .switchery {
        height: 15px;
        width: 30px;
    }

    .switchery small {
        height: 15px;
        width: 15px;
    }

    .span-offers-product-title {
        /*font-size: 13px;*/
        font-size: 14px;
        margin-bottom: 13px;
        height: 17px;
    }

    .span-offers-product-price {
        /*font-size: 12px;*/
        font-size: 14px;
    }

    #modal-offers-selector {
        padding-left: 0;
    }

    .step {
        font-size: 15px;
    }

    #anchor-offers-selector-navigate-left, #anchor-offers-selector-navigate-right {
        font-size: 30px;
    }

    .div-offers-selector-bottom-modal-footer-wrapper {
        margin-top: 0;
        display: block;
    }

    .div-offers-selector-left-modal-footer-wrapper {
        width: 100%;
    }

    .div-offers-selector-right-modal-footer-wrapper {
        width: 100%;
    }

    .div-offers-selector-right-modal-footer-wrapper {
        display: flex;
        align-items: center;
        width: 100%;
    }

    #div-offers-selector-total-container {
        text-align: left;
        width: 50%;
    }

    #button-offers-selector-confirm {
        width: 50%;
        font-size: 16px;
    }

    .anchor-offers-selector-personalize {
        /*font-size: 8px;*/
        font-size: 11px;
    }

    .span-offers-product-details {
        /*font-size: 9px;*/
        font-size: 10px;
    }

    .ul-offers-selector-list {
        height: calc(100% - 20px);
    }

    .list-product-container {
        min-width: 100%;
    }
}

.anchor-offers-selector-personalize {
    color: var(--theme-primary-color);
}

.hidden-offers-product-description {
    display: none;
}

.hidden-offers-product-personalize-anchor {
    display: none;
}

.div-products-description-container {
    padding-bottom: 0px;
    margin-bottom: 0px;
    /*text-align: center;*/
    text-align: left;
    padding: 10px;
    margin-bottom: 10px;
    position: absolute;
    bottom: 0;
    right: 0;
    min-height: 0 !important;
}

.span-products-description {
    font-size: 15px;
    color: var(--theme-primary-text-color);
}

.category-description-span-container {
    padding-bottom: 0px;
    text-align: right;
    white-space: pre-line;
}

.personalized-product-selector-title-container {
    font-size: 13px !important;
}

.personalized-product-selector-quantity-button {
    height: 30px !important;
    width: 35px !important;
    font-size: 10px;
}

.personalized-product-topping-quantity {
    height: 30px !important;
    padding: 5px !important;
}

.personalized-product-selector-info-container {
    background-color: black !important;
}

.label-personalized-product-selector-position-selection-text {
    overflow: hidden;
    width: calc(100% - 19px);
    display: block;
    margin-left: 5px;
}

.personalized-product-selector-top-label-active {
    color: var(--theme-primary-color) !important;
}

.personalized-product-selector-top-bullet-selected {
    background-color: forestgreen !important;
    color: white !important;
}

#button-prsonalized-product-selector-confirm:disabled {
    background: #777 !important;
    color: #333 !important;
    border: 1px solid #333 !important;
}

.personalized-product-selector-topping-total {
    color: red;
}


@media screen and (min-width: 991px) {
    #personalized-product-selector-modal-content {
        width: 650px;
    }
}

@media screen and (max-width: 991px) {
    .topping-select-info-title {
        font-size: 12px !important;
    }

    #button-prsonalized-product-selector-confirm {
        height: 40px;
        width: 50%;
    }

    .offers-selector-bottom-total-label {
        /*font-size: 18px !important;*/
        font-size: 20px !important;
    }

    #div-personalized-product-selector-modal-body {
        height: 320px;
    }
}

#div-personalized-product-selector-modal-body {
    height: 375px;
    padding: 10px;
}

.personalized-product-base-product-description {
    font-weight: 100;
}

.div-personalized-product-base-product-price {
    text-align: left;
}

.span-personalized-product-base-product-price {
    font-size: 16px;
    color: white;
}

.product-image-wrapper-for-offer {
    max-height: 441px !important;
}

.product-image-for-offer {
    width: auto !important;
    max-height: 441px !important;
}

#div-offers-selector-modal-header {
    display: flow-root;
}

@media screen and (min-width: 479px) {
    #div-offers-selector-modal-content,
    #div-offers-selector-modal-dialog {
        width: 598px;
        max-width: 598px !important;
    }

    #div-offers-selector-modal-body {
        max-width: 598px !important;
    }
    
    #div-offers-selector-modal-content {
        height: 585px;
    }
    
    #div-offers-selector-modal-dialog {
        height: 583px;
    }
}

@media screen and (max-width: 479px) {
    .div-offers-selector-position-container {
        height: 100% !important;
    }

    .mpoo-ot-modal-header {
        height: auto !important;
    }

    #div-personalized-product-popup-modal-body {
        padding-bottom: 0px !important;
    }
}

#div-offers-selector-modal-header {
    position: initial !important;
}

#div-personalized-product-popup-modal-body {
    padding: 10px !important;
}

#div-personalized-product-selector-positions-container {
    height: 100%;
}

#category-details-wrapper {
    margin-top: -19px;
}

.span-category-details-warning {
    color: #fff;
    /* color: var(--theme-primary-color); */
    word-spacing: inherit;
    white-space: pre-wrap;
    font-size: 16px;
}

.div-category-details-warning-container {
    padding-top: 10px;
    padding-bottom: 10px;
}

.div-products-list-header-container {
    max-height: 354px;
    min-height: 251px;
}

@media (min-width: 991px) and (max-width: 1153px) {
    .variation-type {
        font-size: 11px;
    }

    .variation-size {
        font-size: 10px;
    }

    .variation-price {
        font-size: 11px;
    }
} 

@media (min-width: 1153px) and (max-width: 1366px) {
    .variation-type {
        font-size: 11px;
    }

    .variation-size {
        font-size: 11px;
    }

    .variation-price {
        font-size: 15px;
    }
}

.product-list-center {
    text-align: center;
    align-self: center;
    margin: 0 auto;
}