/**
 * Remove Scrollbar Track for All Pages
 */
*::-webkit-scrollbar {
    width: 0;
}

/**
 * Root Color for Site
 */
:root {
	/*--primary: #fc2779;*/
	--primary: #e80071;
	--primaryDark: #b60058;
	--secondary: #ffdd00;
	--third: #ffea00;
	--red: #ff0015;
	--white: #ffffff;
	--green: #009a44;
	--black: #000000;
	--black2nd: #141414;
	--black3rd: #1f1f1f;
	--black4th: #292929;
	--gray1st: #f5f5f5;
	--gray2nd: #e6e6e6;
	--gray: #c4c4c4;
	--darkGray: #808080;
}

/** 
 * Root Color for Rating
 */
:root {
	--tmwStarZero: #ff0000;
	--tmwStarOne: #ff6161;
	--tmwStarTwo: #ff9f00;
	--tmwStarThree: #00b200;
	--tmwStarFour: #009900;
	--tmwStarFive: #007f00;
}

/**
 * Price Styles
 */
.tmw-price {
    display: grid;
    line-height: normal;
    gap: 3px;
}.tmw-price .tmw-sale-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #242424;
}.tmw-price .tmw-mrp {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 400;
    color: #969696;
    gap: 4px;
}.tmw-price .tmw-mrp del {
    order: 0;
    font-size: 100%;
    font-weight: 400;
    opacity: 0.9;
}.tmw-price .tmw-mrp .tmw-disc {
    font-size: 100%;
    font-weight: 600;
    color: #00994C;
}.tmw-price .tmw-mrp .tmw-disc:before {
    content: "|";
    padding-right: 4px;
    font-weight: 100;
    color: #969696;
}.tmw-price .tmw-incl {
    font-size: 0.75rem;
    font-weight: 400;
    color: #969696;
    opacity: 0.8;
}.woocommerce-variation-price {
    display: none;
}

/**
 * Css for Product Tabs
 */
.tmw-tabs .tmw-tab-item:first-child {
    border-top: 7.5px solid lightgray;
}.tmw-tabs .tmw-tab-item {
    border-bottom: 7.5px solid lightgray;
}.tmw-tabs .tmw-tab-item h3 {
    margin: 0;
    padding: 10px 15px;
    font-size: 125%;
    border-bottom: 1px solid lightgray;
}.tmw-tabs .tmw-tab-item .tmw-content {
    max-height: 250px;
    overflow: hidden;
    padding: 10px 15px;
}.tmw-tabs .tmw-tab-item .tmw-shadow {
    position: relative;
    content: '';
    width: 100%;
    height: 20px;
    margin-top: -20px;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), #ffffff);
}.tmw-tabs .tmw-tab-item .tmw-read-more {
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 0.7px solid lightgray;
}.tmw-tabs .tmw-tab-item .tmw-read-more a {
    display: flex;
    align-items: center;
}.tmw-modal-box .modal-header h3 {
    border: none;
}/*** For Review Tab Only ***/
.tmw-modal-box.product-reviews-tab {
    max-height: 100%;
    border-radius: 0;
}.tmw-modal-box.product-reviews-tab .modal-header {
    background: var(--primary);
    color: #ffffff;
    z-index: 1;
}.tmw-modal-box.product-reviews-tab .modal-header h3 {
    color: #ffffff;
}
