/*
Theme Name: TheSleepCompany
Theme URI: #
Author: TheSleepCompany
Author URI: #
Description: A beautiful theme created by an awesome team.
Version: 1.0.0
Requires at least: 5.0
Tested up to: 5.6
Requires PHP: 7.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: thesleepcompany

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/* Root */
:root {
	--tsc-primary-color:    #122A46;
	--tsc-secondary-color:  #A2CFE4;
	--tsc-light-gray-color: #E3E6E9;
	--tsc-dark-gray-color:  #AFAFAF;
	--tsc-success-color:    #4caf50;
	--tsc-danger-color:     #CF2027;
	--tsc-white-color:      #ffffff;

	--tsc-breakpoint-sm:  640px;
	--tsc-breakpoint-md:  768px;
	--tsc-breakpoint-lg:  1024px;
	--tsc-breakpoint-xl:  1280px;
	--tsc-breakpoint-2xl: 1536px;
}

body {
	font-family: 'Work Sans', sans-serif;
	font-size: 18px;
	font-weight: 400;
	color: var(--tsc-primary-color);
	overflow-x: hidden;
}

/* Typography */
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
	font-family: 'Work Sans', sans-serif;
	line-height: 1;
}

h1, .h1 {
	font-size: 48px;
	font-weight: 300;
}

h2, .h2 {
	font-size: 30px;
	font-weight: 500;
}
h3, .h3 {
	font-size: 24px;
	font-weight: 500;
}
h4, .h4 {
	font-size: 18px;
	font-weight: 400;
}
h5, .h5 {
	font-size: 16px;
	font-weight: 400;
}
h6, .h6 {
	font-size: 14px;
	font-weight: 400;
}

p {
	font-size: 18px;
	line-height: 1.4;
	margin-bottom: 20px;
}

a {
	color: var(--tsc-secondary-color);
}

b, strong {
	font-weight: 500;
}

@media ( max-width: 1024px ) {
	h1, .h1 { font-size: 30px; }
	h2, .h2 { font-size: 22px; }
	h3, .h3 { font-size: 18px; }
	h4, .h4 { font-size: 16px; }
	h5, .h5 { font-size: 12px; }
	h6, .h6 { font-size: 10px; }

	p {
		line-height: 1.4;
		margin-bottom: 15px;
	}
}

/* Form */
input[type="text"],
input[type="number"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea,
select {
	width: 100%;
	height: 2.5rem;
	padding-left: 2rem;
    padding-right: 2rem;
	background-color: #fff;
	border: 1px solid var(--tsc-dark-gray-color);
}

select {
	width: auto;
}

table th,
table td {
	border: 1px solid var(--tsc-light-gray-color)
}

table th {
	background: var(--tsc-light-gray-color);
	font-weight: 500;
}

/* list */
ul.list {
	list-style: disc;
	margin-top: 10px;
	margin-bottom: 10px;
}

ul.list > li {
	margin-bottom: 10px;
}

/* Buttons */
.button {
	display: inline-block;
	background: var(--tsc-primary-color);
	color: var(--tsc-white-color);
	font-size: 18px;
	font-weight: 500 !important;
	padding: .555em 2.222em;
	text-transform: uppercase;
	cursor: pointer;
	border-style: solid;
	border-width: 1px;
	border-radius: 0 !important;
}

.button.button--danger {
	background: var(--tsc-danger-color);
	color: var(--tsc-white-color);
	border-color: var(--tsc-danger-color);
}

.button.button--secondary {
	background: var(--tsc-secondary-color) !important;
	color: var(--tsc-white-color) !important;
	border-color: var(--tsc-secondary-color) !important;
}

.button.button--primary {
	background: var(--tsc-primary-color) !important;
	color: var(--tsc-white-color) !important;
	border-color: var(--tsc-primary-color) !important;
}

.button.button--outline {
	background: initial;
	color: var(--tsc-dark-gray-color);
	border-color: var(--tsc-dark-gray-color);
}

.button.button--small {
	font-size: 14px;
}


/* Theme footer widgets */
#footer .footer-widget nav {
	margin-bottom: 10px;
}

#footer .footer-widget ul li a {
	color: #fff;
	font-size: ;
}

/* Top header navigation */
#menu-header-menu > li > a {
	color: var(--tsc-white-color);
}

/* Primary navigation */
#menu-primary-menu > li {
	position: relative;
}

#menu-primary-menu > li > a {
	color: var(--tsc-primary-color);
	padding: 15px 0;
}

#menu-primary-menu > li.menu-item-has-children > a::after {
	content: "\f107";
	display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
	margin-left: 10px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	transition: all 200ms ease-in-out;
}

#menu-primary-menu > li.menu-item-has-children > a:hover::after,
#menu-primary-menu > li.menu-item-has-children:hover > a::after {
	content: "\f106";
	display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
	margin-left: 10px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#menu-primary-menu > li > ul {
	position: absolute;
	top: 32px;
	left: -14px;
	z-index: 9999999;
	background: rgba(255, 255, 255, .9);
	width: 230px;
	box-shadow: 0px 14px 30px rgb(0 0 0 / 30%);
	border-radius: 4px;
	overflow: hidden;
	visibility: hidden;
	opacity: 0;
	transition: all 200ms ease-in-out;
	backdrop-filter: blur(4px);
}

#menu-primary-menu > li:hover > ul {
	visibility: visible;
	opacity: 1;
}

#menu-primary-menu > li > ul > li > a {
	display: block;
	padding: 15px;
	font-size: 14px;
	color: var(--tsc-primary-color);
	text-transform: capitalize;
}

#menu-primary-menu > li > ul > li > a:hover {
	background: var(--tsc-primary-color);
	color: #fff;
}

/* Mobile menu */
.mobile-menu {
	padding: 15px 30px;
	position: fixed;
	left: -1200px;
	visibility: hidden;
	opacity: 0;
	transition: all 200ms ease-in-out;
	z-index: 9999999999;
}

.mobile-menu.active {
	visibility: visible;
	opacity: 1;
	left: 0;
}


.mobile-menu__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
    padding: 8px 6px;
}

#mobile-menu a {
	color: var(--tsc-primary-color);
}

#mobile-menu > li {
	position: relative;
}

#mobile-menu > li > a {
	padding: 10px 0;
    display: block;
	border-bottom: 1px solid var(--tsc-light-gray-color);
	font-size: 16px;
}

#mobile-menu > li > .mobile-submenu-toggle {
	position: absolute;
    right: 0px;
    top: 0px;
	color: var(--tsc-primary-color);
    padding: 7px ​20px;
	font-size: 21px;
	cursor: pointer;
	width: 100%;
    text-align: right;
}

#mobile-menu > li > ul {
	position: absolute;
	visibility: hidden;
	opacity: 0;
	padding-left: 14px;
	margin-bottom: 20px;
}

#mobile-menu > li > ul.active {
	position: relative;
	visibility: visible;
	opacity: 1;
}

#mobile-menu > li > ul > li > a {
	padding: 8px 0;
	display: block;
	font-size: 16px;
}

/* Hide Review on mobile menu */
#mobile-menu .menu-item-1290 {
	display: none;
}

/* Mobile quick menu */
#mobile-quick-menu {
	display: flex;
    flex-wrap: wrap;
	margin-top: 10px;
}

#mobile-quick-menu li {
	width: 50%;
	margin-bottom: 10px;
}

#mobile-quick-menu li a {
	color: var(--tsc-primary-color);
	opacity: .7;
	font-size: 16px;
}

/* WooCommerce CSS */
.woocommerce .quantity .qty {
	width: 8.631em !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: initial;
    width: 100%;
}

.woocommerce div.product div.images .flex-control-thumbs {
    display: flex;
	justify-content: space-between;
    margin-top: 10px;
}

.woocommerce div.product div.images .flex-control-thumbs li {
	width: 24%;
}


/* Blog page CSS */
.tsc-blog-heading {
	margin-bottom: 20px;
}

.tsc-blog-title {
	color: var(--tsc-secondary-color);
	text-align: center;
}

.tsc-blog-meta {
	text-align: center;
	color: var(--tsc-dark-gray-color);
}

.tsc-blog-detail {
	display: flex;
	align-items: center;
	border-bottom: 2px solid var(--tsc-light-gray-color);
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.tsc-blog-detail__image {
	margin-right: 5px;
	border-radius: 50%;
	overflow: hidden;
}

.tsc-blog-detail__date,
.tsc-blog-detail__author {
	color: var(--tsc-dark-gray-color);
}

.tsc-blog-detail__author span {
	color: var(--tsc-primary-color);
}

/* WooCommerce */
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
	color: var(--tsc-white-color);
	background-color: var(--tsc-secondary-color);
	border-radius: 999px;
}

.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
	color: var(--tsc-white-color);
	background-color: var(--tsc-secondary-color);
	border-radius: 999px;
}

.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
	color: var(--tsc-white-color);
	background-color: var(--tsc-danger-color);
}

.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
	color: var(--tsc-white-color);
	background-color: var(--tsc-danger-color);
}

.woocommerce #content table.cart td.actions .input-text,
.woocommerce table.cart td.actions .input-text,
.woocommerce-page #content table.cart td.actions .input-text,
.woocommerce-page table.cart td.actions .input-text {
	width: 200px;
}

.woocommerce table.shop_table,
.woocommerce table.shop_table td {
	border: none;
}

#add_payment_method .cart-collaterals .cart_totals tr td,
#add_payment_method .cart-collaterals .cart_totals tr th,
.woocommerce-cart .cart-collaterals .cart_totals tr td,
.woocommerce-cart .cart-collaterals .cart_totals tr th,
.woocommerce-checkout .cart-collaterals .cart_totals tr td,
.woocommerce-checkout .cart-collaterals .cart_totals tr th {
	border: none;
}

#add_payment_method table.cart img,
.woocommerce-cart table.cart img,
.woocommerce-checkout table.cart img {
	width: 90px;
}

/* TSC products grid shortcode CSS */
.tsc-product-grid .attachment-woocommerce_thumbnail {
	width: 100%;
}

.tsc-product-grid .woocommerce-loop-product__title {
	margin: 10px 0;
	font-size: 18px;
	font-weight: 500;
	color: var(--tsc-primary-color);
}

.tsc-product-grid .price {
	color: var(--tsc-primary-color);
}

.tsc-product-grid .variations .button-variable-item  {
	padding: 0 !important;
	width: 48% !important;
    height: 25px !important;
	text-align: left !important;
}

.tsc-product-grid .variations .button-variable-item span {
	font-size: 15px;
}

.tsc-product-grid .variations select {
	width: 100%;
    padding: 0 5px;
    font-size: 15px;
    height: 32px;
}

.tsc-product-grid .add_to_cart_button {
	margin-top: 10px !important;
    width: 100%;
    text-align: center;
}

.tsc-product-grid .slick-next, .slick-prev {
	z-index: 999999;
}

.tsc-product-grid .slick-next { right: 10px; }
.tsc-product-grid .slick-prev { left: 10px; }

.tsc-product-grid .slick-next:before, .tsc-product-grid .slick-prev:before {
	font-size: 30px;
}

.tsc-product-grid .slick-list li {
	padding: 10px;
	margin: 0 10px;
	border-radius: 6px;
}

/* Slick slider CSS */
.slick-next:before,
.slick-prev:before {
	filter: drop-shadow(0 0 6px rgba(0,0,0,0.5));
}

.slick-next { right: 10px; }
.slick-prev { left: 10px; }

/* Variations */
.tsc-product-grid .variations li {
    padding: 0;
    margin: 0;
}

/* TSC Variable Selector */
.single_variation_wrap .woocommerce-variation-price, .single_variation_wrap .woocommerce-variation-add-to-cart{
	display: none !important;
}

.tsc-variation-selector {}

.tsc-variation-wrap {
	margin-bottom: 30px;
}

.tsc-variation-wrap label {
	display: block;
	font-weight: 500;
	margin-bottom: 5px;
}

.tsc-variation[data-tsc-variation-type="radio"] {
	display: inline-flex;
	align-items: center;
}
.tsc-variation[data-tsc-variation-type="radio"] > div {
	padding: 2px 10px;
	margin-right: 10px;
	border: 1px solid var(--tsc-dark-gray-color);
	cursor: pointer;
	user-select: none;
}

.tsc-variation[data-tsc-variation-type="radio"] .tsc-variation--activate {
	border: 1px solid var(--tsc-secondary-color);
	color: #fff;
	background-color: var(--tsc-secondary-color);
}

/* Review page CSS */
.testimonials-filter {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

.testimonials-filter > div {
	border: 1px solid var(--tsc-dark-gray-color);
	padding: 4px 20px;
	background-color: #fff;
	margin: 0 10px;
	margin-bottom: 10px;
	cursor: pointer;
}

.testimonials-filter > div.testimonials-filter--selected {
	border: 1px solid var(--tsc-secondary-color);
	background-color: var(--tsc-secondary-color);
	color: #fff;
}

.all-testimonials {
	display: flex;
	justify-content: space-evenly;
	align-items: flex-start;
	flex-wrap: wrap;
	height: 2000px;
    overflow: hidden;
	position: relative;
}

.all-testimonials > div {
	width: 32.333%;
	margin-bottom: 20px;
	height: 400px;
    overflow-y: auto;
}

.all-testimonials__load_all {
	display: block;
	position: absolute;
	bottom: 0;
	background: rgba(255,255,255,0.7);
	width: 98%;
	text-align: center;
	margin: 0;
	padding: 20px;
	backdrop-filter: blur(5px);
	cursor: pointer;
}

@media ( max-width: 1024px ) {
	.all-testimonials > div {
		width: 48%;
	}
}

@media ( max-width: 768px ) {
	.all-testimonials > div {
		width: 100%;
	}
}

/* Single product page */
.tsc-product-price {
	margin: 20px 0;
}

.tsc-product-price__sale {

}

.tsc-product-price__sale-amount {
	text-decoration: line-through;
}

.tsc-product-price__sale-precentage {
	font-weight: 500;
}

.tsc-product-price__regular {
	font-weight: 500;
	font-size: 30px;
}

.tsc-product-price__meta {
	margin: 5px 0;
}

.tsc-product-price__saving {
	font-size: 14px;
	border: 1px solid var(--tsc-secondary-color);
    padding: 5px 10px;
    border-radius: 30px;
	background-color: var(--tsc-secondary-color);
}

.tsc-product-price__offer-timer {
	font-size: 14px;
}

.tsc-single-add-to-cart {
	background-color: rgba(255,255,255,.8);
    z-index: 999999999 !important;
	backdrop-filter: blur(8px);
	padding: 15px 0;
}

.is-sticky .tsc-single-add-to-cart {
	left: 0px;
    right: 0px;
	top: auto !important;
	bottom: 0 !important;
	width: 100% !important;
	justify-content: center;
	box-shadow: 0 0 30px rgba(0,0,0,.2);
	display: flex;
	padding: 5px 10px;
}

/* WooCommerce Variable Swatches CSS */
.variations tbody tr td.woo-variation-items-wrapper {
    margin-bottom: 16px;
}

.woocommerce div.product form.cart .variations select {
	width: auto;
    max-width: auto;
    min-width: auto;
}

.woocommerce div.product form.cart .reset_variations {
	display: block;
    color: var(--tsc-primary-color);
    text-decoration: underline;
    font-size: 18px;
}

.variations .woo-selected-variation-item-name {
	display: none !important;
}

.woocommerce div.product form.cart .variations label {
	font-weight: 500;
}

/* Custom mattress size */
#tsc-custom-mattress-size {
    width: 100%;
    margin-top: 16px;
	justify-content: flex-start;
    align-items: center;
	display: flex;
}

#tsc-custom-mattress-size > div {
	margin-right: 10px;
}

#tsc-custom-mattress-size p {
	margin-bottom: 5px;
    font-size: 15px;
}

.tsc-mattress-custom-selector {
	display: none;
}

.tsc-mattress-custom-selector ul li {
    display: inline-block;
    padding: 4px 20px;
    border: 1px solid var(--tsc-dark-gray-color);
    margin-right: 0px;
    font-size: 16px;
    cursor: pointer;
}

.tsc-mattress-custom-selector ul li.selected {
	border: var(--tsc-secondary-color);
	background-color: var(--tsc-secondary-color);
	color: #fff;
}


ul.flex-direction-nav {
    position: absolute;
    top: 30%;
    z-index: 99999;
    width: 100%;
    left: 0;
    margin: 0;
    padding: 0px;
    list-style: none;}

li.flex-nav-prev {float: left;}
li.flex-nav-next {float: right;}
a.flex-next {visibility:hidden;}
a.flex-prev {visibility:hidden;}

a.flex-next::after {
	visibility:visible;
	content: '\f0a9';
	font-family: 'FontAwesome';
	margin-right: 10px;
	font-size: 30px;
	font-weight: bold;
	color: #fff;
	filter: drop-shadow(0 0 6px rgba(0,0,0,0.5));
}
a.flex-prev::before {
    visibility:visible;
    content: '\f0a8';
	font-family: 'FontAwesome';
	margin-left: 10px;
	font-size: 30px;
	font-weight: bold;
	color: #fff;
	filter: drop-shadow(0 0 6px rgba(0,0,0,0.5));
}
ul.flex-direction-nav li a {
	color: #ccc;
}
ul.flex-direction-nav li a:hover {
	text-decoration: none;
}

/* Cart page CSS */

.cart_totals tbody th {
	background-color: transparent !important;
}
.woocommerce-cart-form .product-name a {
	color: var(--tsc-primary-color);
	font-weight: 500;
}

.woocommerce-cart-form tbody td {
	border-bottom: 1px solid var(--tsc-light-gray-color) !important;
}

.woocommerce-cart-form .variation dt,
.woocommerce-cart-form .variation dd,
.woocommerce-cart-form .variation dd p {
    font-size: 15px;
    line-height: 1.5;
}

.woocommerce-cart-form .coupon {
	background: var(--tsc-light-gray-color);
    padding: 0 10px;
}

.woocommerce-cart-form .coupon [name="apply_coupon"] {
    background: transparent;
    color: var(--tsc-primary-color);
}

.woocommerce-cart-form .coupon [name="apply_coupon"]:hover {
	background: transparent;
    color: var(--tsc-primary-color);
}

.woocommerce-cart-form .coupon #coupon_code {
    background: transparent;
    border: none;
    color: var(--tsc-primary-color);
}

.woocommerce button[name="update_cart"],
.woocommerce input[name="update_cart"] {
	display: none;
}

.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
	width: 100%;
	float: initial;
}

.woocommerce-cart .wc-proceed-to-checkout {
	padding: 0 !important;
}

.woocommerce-cart .wc-proceed-to-checkout a {
	margin: 0 !important;
}

.woo-variation-swatches.wvs-style-squared .variable-items-wrapper .variable-item.button-variable-item[data-value="1-pillow"],
.woo-variation-swatches.wvs-style-squared .variable-items-wrapper .variable-item.button-variable-item[data-value="2-pillows"] {
	height: 45px !important;
}

@media ( max-width: 768px ) {
	.woocommerce #content table.cart .product-thumbnail,
	.woocommerce table.cart .product-thumbnail,
	.woocommerce-page #content table.cart .product-thumbnail,
	.woocommerce-page table.cart .product-thumbnail {
		display: block !important;
	}

	.woocommerce table.shop_table_responsive tr td::before,
	.woocommerce-page table.shop_table_responsive tr td::before {
		content: "" !important;
	}

	.woocommerce table.shop_table_responsive tr,
	.woocommerce-page table.shop_table_responsive tr {
		display: flex !important;
		flex-wrap: wrap !important;
		justify-content: space-around !important;
		align-items: center !important;
		margin-bottom: 10px;
	}

	.woocommerce-cart-form .coupon {
		padding-bottom: 0 !important;
		margin-bottom: 5px;
	}
}

/* Single product page css */
.tsc-add-to-cart {
    display: flex;
    align-items: flex-end;
	width: 550px;
    max-width: 100%;
}

.tsc-add-to-cart__qty {
    margin-right: 16px;
}

.tsc-add-to-cart__qty p {
    margin-bottom: 8px;
    font-weight: 500;
}

.tsc-add-to-cart__button {
	display: inline-flex;
    justify-content: center;
    align-items: center;
    background: var(--tsc-danger-color);
    color: #fff;
    width: 100%;
    text-align: center;
    height: 40px;
    text-transform: uppercase;
}

.variations_form.cart,
.variations,
.woocommerce div.product form.cart table td {
	margin-bottom: 0 !important;
}

.woocommerce div.product form.cart table td:nth-child(2) {
    margin-bottom: 10px !important;
	margin-top: -5px !important;
}

.variations .reset_variations {
	display: none !important;
}

#tsc-reset-variations {
    color: var(--tsc-primary-color);
    text-decoration: underline;
	display: none;
}


@media ( max-width: 1024px ) {
	.woo-variation-swatches.wvs-style-squared .variable-items-wrapper li,
	.woo-variation-swatches.wvs-style-squared .variable-items-wrapper div {
		width: 46% !important;
    	margin: 4px 1% !important;
	}
}


.woo-variation-swatches.wvs-style-squared .variable-items-wrapper .variable-item.button-variable-item {
    padding: 4px 20px;
    font-size: 16px;
    cursor: pointer;
	border-radius: 0;
}

/* WooCommerce My Account Page */
.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
	width: 100%;
    float: initial;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
	padding: 20px 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
	display: flex;
    justify-content: space-evenly;
    align-items: center;
	flex-wrap: wrap;
	font-size: 15px;
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
	border: 1px solid var(--tsc-dark-gray-color);
    flex: 1;
    text-align: center;
    padding: 5px 10px;
    margin: 0 10px;
}

.woocommerce-account .woocommerce-MyAccount-navigation li.is-active {
	background-color: var(--tsc-secondary-color);
    border: 1px solid var(--tsc-secondary-color);
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
	color: var(--tsc-primary-color);
}

.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
	color: #fff;
}

.woocommerce-account .woocommerce-MyAccount-content {
    padding: 10px;
    margin-top: 30px;
    margin-bottom: 30px;
}

@media ( max-width: 768px ) {
	.woocommerce table.shop_table_responsive tbody th,
	.woocommerce-page table.shop_table_responsive tbody th {
		display: block;
	}

	.woocommerce-account .woocommerce table.my_account_orders {
		font-size: .70em !important;
	}
	.woocommerce-account .woocommerce table.shop_table_responsive tr,
	.woocommerce-account .woocommerce-page table.shop_table_responsive tr {
		display: flex !important;
		flex-wrap: inherit !important;
		margin-left: -25px !important;
		margin-bottom: 20px !important;
	}

	.woocommerce-cart .shop_table tbody tr td {
		padding: 2px;
		border: none !important;
		background: #fff !important;
	}

	#add_payment_method table.cart img,
	.woocommerce-cart table.cart img,
	.woocommerce-checkout table.cart img {
		width: 60px;
	}

	.woocommerce-cart .shop_table tbody tr td.product-name {
		font-size: 11px;
		margin: 0;
		padding: 0;
		text-align: left !important;
		width: 112px;
	}

	.woocommerce-cart .shop_table tbody tr td.product-quantity {
		width: 58px !important;
	}

	.woocommerce-cart .shop_table tbody tr td.product-quantity input {
		padding: 0;
		width: 58px !important;
		height: 24px !important;
		font-size: 11px;
	}

	.woocommerce-cart .shop_table tbody tr td.product-subtotal {
		font-size: 13px;
    	font-weight: 500;
		width: 50px;
	}

}


/* Checkout page CSS */
.woocommerce-checkout #billing_first_name_field,
.woocommerce-checkout #billing_last_name_field,
.woocommerce-checkout #billing_phone_field,
.woocommerce-checkout #billing_email_field,
.woocommerce-checkout #order_review .shop_table {
	display: none !important;
}

.woocommerce-checkout #payment,
.woocommerce-checkout .payment_box {
	background-color: transparent !important;
}

.woocommerce-checkout .payment_box {
	padding: 0 !important;
	margin: 0 !important;
}

.woocommerce-checkout .payment_box::before {
	display: none !important;
}

.woocommerce-checkout .payment_box p {
	color: var(--tsc-primary-color);
}

.woocommerce-checkout [for="payment_method_payubiz"] img {
    width: 120px;
    vertical-align: middle;
    display: inline-block;
}

.woocommerce-checkout #place_order {
	float: initial !important;
    margin: 0 auto;
    display: block;
}

/* Select2 height fix */
.select2-container .select2-selection--single {
	height: 40px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 40px !important;
	padding: 0 2em !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 40px !important;
}
