.description p {
    margin-top: 10px;
}

.size-selector{
    width: var(--input-width-lg);
    padding-bottom: var(--dimen-md) !important;
}

/* images */
.product .img-hover {
    display: none;
}

.product .img-normal {
    display: block;
}

.product:hover .img-normal {
    display: none;
}

.product:hover .img-hover {
    display: block;
}

/* FancyBox CSS */
.product .image-expand {
    position: relative;
    z-index: 5000;
    float: right;
    right: 35px;
}

.product .image-expand .image-expand-icon {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    top: 5px;
    left: 0;
    background: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    right: 11px;
    font-size: 12px;
    -webkit-box-shadow: 1px 1px 6px #ffffff;
    box-shadow: 1px 1px 6px #ffffff;
}

.product .expand-icon {
    color: #717D7E;
}


.addon-item {
    /*width: 50px;*/
    padding: 5px;
    height: 35px;
    border: 1px solid var(--color-line);
    background: #ffffff;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    &.selected {
        border: 1px solid #111;
    }
}

.addon-img-wrapper {
    position: relative;
    width: 100%;
    max-height: 100px;
    overflow: hidden;
}

.addon-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.addon-title {
    font-weight: 400;
    letter-spacing: 0.3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.addon-price {
    font-weight: 500;
    letter-spacing: 0.3px;
}

.addon-action-hint {
    letter-spacing: 1px;
    margin-top: 8px;
    font-weight: 500;
    text-align: center;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.modal-window {
    background: #ffffff;
    width: 90%;
    max-width: 520px;
    -webkit-box-shadow: 0 20px 50px rgba(0,0,0,0.1);
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    position: relative;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-animation: slideUp 0.3s cubic-bezier(0.25, 1, 0.5, 1);
            animation: slideUp 0.3s cubic-bezier(0.25, 1, 0.5, 1);

    .modal-item-list-grid {
        max-height: 300px;
        overflow-y: auto;
    }
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}

.modal-close-btn:hover {
    color: #111111;
}

.modal-body {
    padding: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.modal-header-section {
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 10px;
}

.modal-action-btn {
    width: 100%;
    background: #111111;
    color: #ffffff;
    border: 1px solid #111111;
    padding: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    cursor: pointer;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.modal-action-btn:hover {
    background: #ffffff;
    color: #111111;
}

.modal-action-btn:disabled {
    background: #cccccc;
    border-color: #cccccc;
    color: #ffffff;
    cursor: not-allowed;
}

@media screen and (max-width: 768px) {
    .product .image {
        padding-bottom: 0;
    }
    .product .content {
        padding-top: var(--dimen-lg);
        border-top: 1px solid var(--color-line);
    }

    .z-indexed {
        z-index: 2;
        position: relative;
        background-color: #fff;
    }

    .icon-scroll {
        top: 16px;
        right: 16px;
        position: absolute;
    }

}

.product-breadcrumb-wrapper {
    max-width: 1050px;
    margin: 0 auto 26px;
    padding-top: 8px;
    font-size: 11px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #999;
}

.product-breadcrumb-wrapper nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 7px;
}

.product-breadcrumb-wrapper .breadcrumb-item,
.product-breadcrumb-wrapper .breadcrumb-separator {
    color: #999;
    font-weight: 400;
}

.product-breadcrumb-wrapper .breadcrumb-item a {
    color: #888;
    text-decoration: none;
}

.product-breadcrumb-wrapper .breadcrumb-item a:hover {
    color: #111;
}

.product-breadcrumb-wrapper .breadcrumb-item.active {
    color: #555;
}

@media screen and (max-width: 768px) {
    .product-breadcrumb-wrapper {
        margin-bottom: 16px;
        font-size: 10px;
        overflow-x: auto;
        white-space: nowrap;
    }

    .product-breadcrumb-wrapper nav {
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    }

    .product-breadcrumb-wrapper,
    .listing-breadcrumb-wrapper {
        overflow-wrap: break-word;
        white-space: normal;
    }
}
