/*   
Theme Name: Hrusha
*/

@font-face {
	font-family: "Train One";
	src: url("./assets/fonts/OFL.txt");
	src: url("./assets/fonts/TrainOne-Regular.ttf")
}

/* Global variables */
:root {
	--custom-white: #fff;
    --custom-light-gray: #D7D6E2;
	--custom-gray: #5D5D5D;
	--custom-dark-gray: #383838;
	--custom-black: #000;
	--custom-light-pink: #FAB8D0;
	--custom-pink: #F693B5;
	--custom-dark-pink: #FF0061;
	--font-motserrat: 'Montserrat', sans-serif;
	--font-train: 'Train One';
	--font-roboto: 'Roboto Condensed', sans-serif;
}

/* Global styles */
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
html {
  	scroll-behavior: smooth;
}

ul,
ol {
	list-style-type: none;
}

html body {
	overflow-x: hidden;
	font-weight: 500;
	font-size: 14px;
}

h1,h2,h3,h4,h5,h6 {
	font-weight: 500;
}
*::-webkit-scrollbar {
	width: 5px;
    height: 5px;
}
*::-webkit-scrollbar-track {
	box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.3);
}
*::-webkit-scrollbar-thumb {
	background-color: gray;
}
img {
	max-width: 100%;
}
@media (min-width: 992px) {
	html body {
		font-size: 16px;
	}
}
@media (min-width: 1200px) {
	html body {
		font-size: 18px;
	}
}
@media (min-width: 1600px) {
	html body {
		font-size: 20px;
	}
}

/* Header */
.header {
	box-shadow: 0px 4px 8px rgb(0 0 0 / 20%);
	position: relative;
    z-index: 1;
}
.header-top {
	padding: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header-top__logo {
	max-width: 300px;
	width: 100%;
	margin-right: 28%;
	text-align: center;
	transition: all .3s ease;
}
.header-top.menu-active .header-top__logo{
	/* margin-left: 33%; */
	max-width: 90%;
}
.header-top__logo img {
	height: auto;
}
.header-top__btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 20px;
	height: 20px;
	position: relative;
	cursor: pointer;
}
.header-top__btn span,
.header-top__btn span::before,
.header-top__btn span::after {
	position: absolute;
	content: '';
	width: 16px;
	height: 2px;
	background: var(--custom-black);
	transition: all .3s ease;
}
.header-top.menu-active .header-top__btn span {
	transform: rotate(-45deg);
}
.header-top.menu-active .header-top__btn span::before,
.header-top.menu-active .header-top__btn span::after {
	transform: rotate(90deg);
	top: 0;
}
.header-top__btn span::before {
	top: -6px;
}
.header-top__btn span::after {
	top: 6px;
}
.header-bottom {
	height: 0;
	overflow: hidden;
	transition: all .3s ease;
}
.header-bottom__menu {
	padding: 20px 0;
	display: flex;
    justify-content: space-between;
    align-items: center;
	flex-direction: column;
    margin: 0;
}
.header-top.menu-active + .header-bottom {
	height: calc(100vh - 130px);
	overflow-y: auto;
}
.header-bottom__menu a {
	font-family: var(--font-motserrat);
	font-weight: normal;
	font-size: 16px;
	line-height: 20px;
	text-transform: uppercase;
	color: var(--custom-gray);
	text-decoration: none;
	transition: all .2s ease;
	display: inline-block;
	margin-bottom: 30px;
}
.header-bottom__menu .current-menu-item a {
	border-bottom: 2px solid var(--custom-light-pink);
}
.header-bottom__menu a:hover {
	text-decoration: none;
	color: var(--custom-black);
}
.menu-search {
	display: none;
}
.menu-search svg {
	cursor: pointer;
}
.menu-search input {
	box-shadow: none;
	border: 1px solid var(--custom-gray);
	transition: all .2s ease;
	opacity: 0;
	outline: none;
}
.menu-search button,
.menu-search button:focus,
.menu-search button:hover {
	box-shadow: none;
	border: none;
	background: transparent;
	outline: none;
}
.menu-search input:focus,
.menu-search input:hover {
	box-shadow: none;
	opacity: 1;
	outline: none;
}
@media (min-width: 768px) {
	.header-top.menu-active .header-top__logo {
		/* margin-left: 35%; */
	}
}
@media (min-width: 992px) {
	.header-top {
		justify-content: center;
	}
	.header-top__logo {
		max-width: 800px;
		margin: 0 auto;
	}
	.header-top__btn {
		display: none;
	}
	.header-bottom {
		border-top: 1px solid #D7D6E2;
		height: initial;
	}
	.header-bottom__menu {
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-direction: row;
		margin: 0;
	}
	.header-bottom__menu li {
		order: 1;
		margin: 0 10px;
	}
	.header-bottom__menu li:first-child {
		order: 2;
		margin-right: 0;
	}
	.header-bottom__menu li:last-child {
		margin-left: 0;
	}
	.header-bottom__menu a {
		font-size: 16px;
		line-height: 20px;
		margin: 0;
	}
	.header-bottom__menu a:hover {
		text-decoration: none;
		color: var(--custom-black);
	}
	.menu-search {
		display: block;
	}
	.menu-search svg {
		cursor: pointer;
	}
	.menu-search input {
		box-shadow: none;
		border: 1px solid var(--custom-gray);
		transition: all .2s ease;
		opacity: 0;
		outline: none;
	}
	.menu-search input:focus,
	.menu-search input:hover {
		box-shadow: none;
		opacity: 1;
		outline: none;
	}
	.menu-search svg {
		cursor: pointer;
	}
	.menu-search input {
		box-shadow: none;
		border: 1px solid var(--custom-gray);
		transition: all .2s ease;
		opacity: 0;
		outline: none;
	}
	.menu-search input:focus,
	.menu-search input:hover {
		box-shadow: none;
		opacity: 1;
		outline: none;
	}
}

/* Breadcrumbs */
.breadcrumbs {
	background: var(--custom-pink);
	padding-top: 30px;
	padding-bottom: 30px;
}
.breadcrumbs-title {
	font-family: var(--font-motserrat);
	font-weight: normal;
	font-size: 18px;
	line-height: 22px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--custom-white);
	margin: 0 0 10px;
}
.breadcrumbs-list {
	display: flex;
    flex-wrap: wrap;
    align-items: center;
	margin: 0;
	padding: 0;
	font-family: var(--font-roboto);
	font-weight: normal;
	font-size: 18px;
	line-height: 21px;
	text-transform: lowercase;
	color: var(--custom-white);
}
.breadcrumbs-list a,
.breadcrumbs-list a:hover {
	color: var(--custom-white);
}
.breadcrumbs-list__separator {
	margin: 0 5px 0 3px;
}
.shop-content__title {
	font-family: var(--font-motserrat);
	font-weight: 500;
	font-size: 12px;
	line-height: 15px;
	text-transform: uppercase;
	color: var(--custom-dark-gray);
	margin: 25px 0;
}
.sorting-btn {
	padding: 8px 20px;
    background: transparent;
	color: var(--custom-dark-gray);
	border: 1px solid var(--custom-pink);
	box-shadow: none;
	outline: none;
	margin: 0 0 35px;
}
.sorting-btn:focus,
.sorting-btn:hover {
	background: transparent;
	color: var(--custom-dark-gray);
	border: 1px solid var(--custom-pink);
	box-shadow: none;
	outline: none;
}
.shop-pagination {
	display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}
.shop-pagination .page-numbers {
	padding: 5px 10px;
    border: 1px solid var(--custom-pink);
    margin: 0 5px;
    background: var(--custom-pink);
    color: var(--custom-white);
}
.shop-pagination .page-numbers.current {
	background: transparent;
	color: var(--custom-dark-gray);
}
.shop-pagination .page-numbers:hover {
	text-decoration: none;
}
@media (min-width: 992px) {
	.breadcrumbs-title {
		font-size: 24px;
		line-height: 29px;
	}
	.shop-content__title {
		font-size: 18px;
		line-height: 22px;
		margin: 35px 0;
	}
}

/* Product single */
.product-gallery {
	background: var(--custom-white);
	box-shadow: 2px 2px 20px rgba(124, 123, 134, 0.25);
	padding: 10px;
	position: relative;
}
.gallery-img-view {
	padding-bottom: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.gallery-img-view .product-status {
	font-family: var(--font-roboto);
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
    text-transform: uppercase;
    color: var(--custom-white);
    position: absolute;
    left: 0;
    top: 0;
    padding: 10px 30px;
    background: var(--custom-dark-pink);
    border-radius: 50%;
}
.gallery-thumbs {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -5px;
}
.gallery-thumbs li {
	flex: 0 0 25%;
	max-width: 25%;
	width: 100%;
	padding: 10px 5px 0;
}
.gallery-thumbs li div {
	padding-bottom: 100%;
	cursor: pointer;
	background-size: contain;
}
.product-container {
	padding-top: 50px;
	padding-bottom: 50px;
}
.product-content {
	box-shadow: 2px 2px 20px rgba(124, 123, 134, 0.25);
	padding: 20px 25px;
    height: 100%;
}
.product-content__subtitle {
	font-family: var(--font-motserrat);
	font-weight: 500;
	font-size: 12px;
	text-transform: uppercase;
	text-align: center;
	color: var(--custom-gray);
	margin: 20px 0 40px;
}
.product-content__title {
	font-family: var(--font-motserrat);
	font-weight: 500;
	font-size: 18px;
	line-height: 140%;
	text-align: center;
	color: var(--custom-black);
	margin: 0 0 20px;
}
.product-content__price {
	font-family: var(--font-roboto);
	font-weight: bold;
	font-size: 24px;
	line-height: 140%;
	color: var(--custom-black);
	text-align: center;
}
.product-content__price > div {
	margin-bottom: 20px;
}
.price-regular.sale {
	font-weight: 300;
	font-size: 18px;
	line-height: 140%;
	color: var(--custom-gray);
	text-decoration: line-through;
}
.product-btn__multiple {
	border: 1px solid var(--custom-black);
	border-radius: 50px;
	display: inline-flex;
	align-items: center;
	overflow: hidden;
	background: var(--custom-black);
	margin: 0 0 30px;
}
.product-btn__multiple .product-card__btn {
	margin: 0;
    padding: 10px 25px;
	color: var(--custom-black);
	background: var(--custom-white);
}
.product-btn__multiple .product-card__btn:hover {
	margin: 0;
    padding: 10px 25px;
	color: var(--custom-black);
	background: var(--custom-white);
}
.product-number {
	padding-left: 25px;
    padding-right: 10px;
    width: 70px;
    background: transparent;
    color: var(--custom-white);
    border: none;
}
.product-categories {
	display: flex;
	flex-wrap: wrap;
	font-family: var(--font-roboto);
	font-weight: bold;
	font-size: 14px;
	line-height: 140%;
	color: var(--custom-black);
	margin: 0 0 30px;
}
.product-categories > * {
	margin-right: 5px;
}
.product-categories a {
	font-weight: normal;
	color: var(--custom-dark-pink);
}
.product-categories a:hover {
	color: var(--custom-dark-pink);
}
.product-tabs {
	margin: 0 -25px;
	font-family: var(--font-roboto);
	color: var(--custom-gray);
}
.product-tabs .tab-content {
	padding-top: 10px;
}
.product-tabs #respond input#submit.submit {
    display: inline-block;
    font-family: var(--font-roboto);
    font-weight: 300;
    font-size: 14px;
    line-height: 16px;
    text-transform: uppercase;
    color: var(--custom-black);
    padding: 15px 25px;
    border: 1px solid var(--custom-light-pink);
    transition: all .2s ease;
    text-decoration: none;
	background: transparent;
}
.product-tabs #respond input#submit.submit:hover,
.product-tabs #respond input#submit.submit:focus {
	color: var(--custom-black);
    background: var(--custom-light-pink);
    text-decoration: none;
}
.product-tabs .nav.nav-tabs {
	padding: 0 10px;
}
.product-tabs input,
.product-tabs textarea {
	display: block;
}
.row.product-row > [class*="col-"] {
	margin-bottom: 30px;
}
.related-products {
	background: var(--custom-white);
	box-shadow: 2px 2px 20px rgba(124, 123, 134, 0.25);
	padding: 25px;
}
.related-products__title {
	margin: 0 0 20px;
	font-family: var(--font-motserrat);
	font-weight: 500;
	font-size: 18px;
	line-height: 140%;
	text-transform: uppercase;
	color: var(--custom-black);
}
@media (min-width: 992px) {
	.product-content__subtitle {
		font-size: 18px;
		line-height: 22px;
		margin: 60px 0;
	}
	.product-content__title {
		font-size: 24px;
		margin: 0 0 20px;
	}
	.product-content__price {
		font-size: 24px;
	}
	.product-content__price > div {
		margin-bottom: 20px;
	}
	.price-regular.sale {
		font-size: 18px;
	}
	.product-btn__multiple {
		margin: 0 0 70px;
	}
	.product-categories {
		font-size: 18px;
		margin: 0 0 30px;
	}
	.related-products__title {
		font-size: 24px;
	}
}

/* Gutenberg banner */
.banner	{
	margin: 20px 0;
	display: flex;
	flex-wrap: wrap;
}
.banner-img {
	flex: 0 0 100%;
	max-width: 100%;
	width: 100%;
	background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 400px;
}
.banner-separator {
	flex: 0 0 100%;
	max-width: 100%;
	width: 100%;
	height: 20px;
}
.banner-info {
	flex: 0 0 100%;
	max-width: 100%;
	width: 100%;
	display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
	padding: 30px;
}
.banner-info__title {
	font-family: var(--font-train);
	font-weight: normal;
	font-size: 24px;
	line-height: 35px;
	text-transform: uppercase;
	color: var(--custom-black);
	margin: 0 0 15px;
}
.banner-info__subtitle {
	font-family: var(--font-motserrat);
	font-weight: bold;
	font-size: 24px;
	line-height: 29px;
	text-transform: uppercase;
	color: var(--custom-black);
	margin: 0 0 30px;
	text-align: center;
}
.banner-info__btn {
	font-family: var(--font-roboto);
	font-weight: 300;
	font-size: 14px;
	line-height: 16px;
	text-align: center;
	text-transform: uppercase;
	color: var(--custom-black);
	padding: 15px 45px;
	border: 1px solid var(--custom-light-pink);
	text-decoration: none;
	transition: all .3s ease;
}
.banner-info__btn:hover {
	text-decoration: none;
	transition: all .3s ease;
	background: var(--custom-light-pink);
	color: var(--custom-black);
}
.banner-info__text {
	font-family: var(--font-motserrat);
	font-weight: 300;
	font-size: 18px;
	line-height: 22px;
	text-align: center;
	text-transform: uppercase;
	color: var(--custom-black);
	margin-bottom: 40px;
}
.banner-info__form {
	margin-bottom: 30px;
}
.banner-info__form .subscribe-form {
	display: flex;
}
.banner-info__form .subscribe-input * {
	max-width: 100%;
    width: 100%;
}
.banner-info__form .subscribe-input input {
	font-family: var(--font-roboto);
	font-weight: normal;
	font-size: 10px;
	line-height: 16px;
	text-transform: uppercase;
	color: #828282;
	padding: 15px;
	background: #fff;
	border: 0;
	box-shadow: none;
	outline: none;
}
.banner-info__form .subscribe-btn input {
	font-family: var(--font-roboto);
	font-weight: normal;
	font-size: 14px;
	line-height: 16px;
	text-align: center;
	text-transform: uppercase;
	color: var(--custom-white);
	padding: 15px 0;
	text-align: center;
	border: none;
	border-radius: 0;
	box-shadow: none;
	outline: none;
	background: var(--custom-black);
	max-width: 100%;
	width: 100%;
}
.banner-info__form .subscribe-input {
	flex: 0 0 70%;
    max-width: 70%;
    width: 100%;
}
.banner-info__form .subscribe-btn {
	flex: 0 0 30%;
    max-width: 30%;
    width: 100%;
}
.banner-info__form .ajax-loader {
	display: none;
}
@media (min-width: 992px) {
	.banner	{
	margin: 50px 0;
}
	.banner-info__form .subscribe-input input {
		font-size: 14px;
	}
	.banner-img {
		flex: 0 0 calc(50% - 10px);
		max-width: calc(50% - 10px);
		min-height: 400px;
	}
	.banner-separator {
		flex: 0 0 20px;
		max-width: 20px;
		width: 100%;
		height: initial;
	}
	.banner-info {
		flex: 0 0 calc(50% - 10px);
		max-width: calc(50% - 10px);
		padding: 30px;
	}
}

/* Gutenberg woo products list */
.products {
	padding-top: 20px;
	padding-bottom: 20px;
}
.products-title {
	position: relative;
	text-align: center;
	font-family: var(--font-motserrat);
	font-weight: bold;
	font-size: 20px;
	line-height: 24px;
	text-transform: uppercase;
	color: var(--custom-gray);
	margin: 0 0 10px;
	padding-top: 30px;
}
.products-title span {
	background: var(--custom-white);
	z-index: 1;
	position: relative;
	display: inline-block;
    padding: 0 20px;
}
.products-title span br {
	display: none;
}
.products-title::before {
	position: absolute;
	content: '';
	background: var(--custom-light-pink);
	width: 100%;
	height: 1px;
	left: 0;
	top: 0;
}
.products-subtitle {
	margin: 0 0 15px;
	font-family: var(--font-motserrat);
	font-weight: 500;
	font-size: 12px;
	line-height: 15px;
	text-transform: uppercase;
	color: var(--custom-dark-gray);
	text-align: center;
}
.row.products-list {
	margin: 0 -7.5px;
}
.row.products-list [class*='col-'] {
	padding: 0 7.5px;
}
.product-card.sale {
	position: relative;
	padding-top: 15px;
	padding-right: 10px;
	display: flex;
	flex-direction: column;
	height: 100%;
}
.product-card__label {
	font-family: var(--font-roboto);
	font-weight: bold;
	font-size: 12px;
	line-height: 14px;
	text-transform: uppercase;
	color: var(--custom-white);
	position: absolute;
	right: 0;
	top: 0;
	padding: 10px 15px;
	background: var(--custom-dark-pink);
	z-index: 1;
}
.product-card__img {
	padding-bottom: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	display: block;
	margin-bottom: 10px;
}
.product-card__title {
	font-family: var(--font-motserrat);
	font-weight: 500;
	font-size: 15px;
	line-height: 140%;
	text-align: center;
	margin: 0 0 20px;
}
.product-card__title a,
.product-card__title a:hover {
	color: var(--custom-black);
}
.product-card__description {
	font-family: var(--font-motserrat);
	font-weight: 400;
	font-size: 14px;
	line-height: 140%;
	text-align: center;
	color: var(--custom-black);
	margin: 0 0 20px;
}
.product-card__price {
	font-family: var(--font-roboto);
	font-weight: bold;
	font-size: 14px;
	line-height: 140%;
	color: var(--custom-dark-gray);
	margin: auto 0 20px;
	text-align: center;
}
.product-card__price span {
	margin: 0 5px;
}
.product-card.sale .price-regular {
	color: var(--custom-gray);
	font-weight: 300;
	text-decoration: line-through;
}
.product-card__btn {
	font-family: var(--font-motserrat);
	font-weight: normal;
	font-size: 14px;
	line-height: 140%;
	text-transform: uppercase;
	color: var(--custom-black);
	margin-bottom: 20px;
	display: inline-block;
	padding: 10px;
	transition: all .2s ease;
	cursor: pointer;
	position: relative;
}
.product-card__btn:hover {
	background: var(--custom-light-pink);
	color: var(--custom-white);
}
.product-card__btn img {
	display: none;
	width: 16px;
	height: 16px;
}
.product-card__btn.loading img {
	display: inline-block;
}
.product-card__btn.added::after {
	content: '\2713';
}
.products-btn {
	margin-top: 10px;
}
@media (min-width: 1200px) {
	.products {
		padding-top: 50px;
		padding-bottom: 50px;
	}
	.products-title {
		font-size: 24px;
		line-height: 29px;
		margin: 0 0 30px;
		padding-top: 0;
	}
	.products-title span {
		padding: 0 20px;
	}
	.products-title span br {
		display: block;
	}
	.products-title::before {
		top: 50%;
	}
	.products-subtitle {
		margin: 0 0 45px;
		font-size: 18px;
		line-height: 22px;
	}
	.row.products-list {
		margin: 0 -10px;
	}
	.row.products-list [class*='col-'] {
		padding: 0 10px;
	}
	.product-card.sale {
		padding-top: 15px;
		padding-right: 10px;
	}
	.product-card__label {
		font-size: 18px;
		line-height: 21px;
		padding: 15px 25px;
	}
	.product-card__img {
		margin-bottom: 25px;
	}
	.product-card__title {
		font-size: 16px;
		margin: 0 0 20px;
	}
	.product-card__description {
		font-size: 16px;
		margin: 0 0 20px;
	}
	.product-card__price {
		font-size: 18px;
		margin: auto 0 20px;
	}
	.product-card__btn {
		font-size: 14px;
		margin-bottom: 20px;
		padding: 10px;
	}
	.products-btn {
		margin-top: 30px;
	}
}

/* WooCommerce categories */
.woo-category__card {
	display: block;
    padding-bottom: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
	margin-bottom: 20px;
}
.category-card__title {
	display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--custom-dark-pink);
    padding: 10px;
    text-align: center;
    color: var(--custom-white);
    text-decoration: none;
    text-transform: uppercase;
}

/* Footer */
.footer-title {
	font-family: var(--font-motserrat);
	font-weight: 300;
	font-size: 16px;
	line-height: 20px;
	text-transform: uppercase;
	color: var(--custom-black);
	margin: 15px 0;
}
.footer-text {
	font-family: var(--font-motserrat);
	font-weight: 500;
	font-size: 16px;
	line-height: 17px;
	color: var(--custom-gray);
	margin: 0 0 12px;
}
.footer-socials {
	display: flex;
	margin: 0 -10px;
    justify-content: center;
}
.footer-socials a {
	margin: 0 10px 10px;
	text-decoration: none;
}
.footer-socials a:hover {
	text-decoration: none;
}
.footer-bottom {
	margin-top: 50px;
	border-top: 1px solid var(--custom-light-gray);;
}
.copyrights {
	font-family: var(--font-roboto);
	font-weight: 300;
	font-size: 14px;
	line-height: 16px;
	color: var(--custom-black);
	margin: 0;
	padding: 12px 0 25px;
	text-align: center;
}
.copyrights a,
.copyrights a:hover {
	color: var(--custom-black);
}

/* Custom */
.custom-container {
	padding-left: 20px;
	padding-right: 20px;
}
.custom-btn {
	display: inline-block;
	font-family: var(--font-roboto);
	font-weight: 300;
	font-size: 14px;
	line-height: 16px;
	text-transform: uppercase;
	color: var(--custom-black);
	padding: 15px 25px;
	border: 1px solid var(--custom-light-pink);
	transition: all .2s ease;
	text-decoration: none;
}
.custom-btn:hover {
	color: var(--custom-black);
	background: var(--custom-light-pink);
	text-decoration: none;
}
.bg-img__card {
	display: block;
	padding-bottom: 120%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	margin-bottom: 20px;
}
@media (min-width: 992px) {
	.custom-container {
		padding-left: 30px;
		padding-right: 30px;
	}
}
@media (min-width: 1200px) {
	.footer-title {
		font-size: 22px;
	}
}

/* WooCommerce Cart */
.woocommerce-cart > .woocommerce {
	padding: 40px 20px;
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
}
.woocommerce-cart > .woocommerce .woocommerce-cart-form .actions {
	display: none;
}
.woocommerce-cart > .woocommerce .woocommerce-cart-form a:not(.remove) {
	font-family: var(--font-motserrat);
    font-weight: 500;
    font-size: 15px;
    line-height: 140%;
	color: var(--custom-black);
}
.woocommerce-cart > .woocommerce .cart-collaterals .cart_totals {
	float: none;
	margin-left: auto;
	margin-right: auto;
}
.woocommerce-cart > .woocommerce .cart-collaterals .cart_totals h2 {
    text-align: center;
    font-family: var(--font-motserrat);
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
    text-transform: uppercase;
    color: var(--custom-gray);
    margin: 30px 0 20px;
}
.woocommerce-cart > .woocommerce .cart-collaterals .cart_totals th,
.woocommerce-cart > .woocommerce .cart-collaterals .cart_totals td {
	width: 50%;
}
.woocommerce-cart > .woocommerce .cart-collaterals .cart_totals td {
	text-align: right;
}
.woocommerce-cart .cart_totals .wc-proceed-to-checkout .checkout-button {
	background: var(--custom-light-pink);
	transition: all .2s ease;
}
.woocommerce-cart .cart_totals .wc-proceed-to-checkout .checkout-button:hover {
	background: var(--custom-pink);
}
@media (min-width: 992px) {
	.woocommerce-cart > .woocommerce {
		padding: 50px 30px 40px;
	}
	.woocommerce-cart > .woocommerce .cart-collaterals .cart_totals h2 {
		margin: 40px 0 30px;
	}
}

/* WooCommerce Custom Checkout */
.custom-checkout [role="presentation"] {
	display: none;
}
.custom-checkout .checkout .row p,
.custom-checkout .checkout .row div,
.custom-checkout .checkout .row span,
.custom-checkout .checkout .row input,
.custom-checkout .checkout .row table {
	float: none!important;
	max-width: 100%;
	width: 100%!important;
	margin-left: 0;
	margin-right: 0;
}
.custom-checkout .checkout input[type="checkbox"] {
	width: auto!important;
}
.custom-checkout input,
.custom-checkout select,
.custom-checkout textarea,
.custom-checkout .select2-dropdown,
.custom-checkout .select2-selection {
	padding: 7px 10px!important;
    border-radius: 4px!important;
    border: 1px solid var(--custom-pink)!important;
	height: initial!important;
}
.custom-checkout input,
.custom-checkout select,
.custom-checkout textarea,
.custom-checkout input:hover,
.custom-checkout select:hover,
.custom-checkout textarea:hover,
.custom-checkout input:focus,
.custom-checkout select:focus,
.custom-checkout textarea:focus {
	outline: none;
}
.custom-checkout .select2-dropdown {
	border-top: none!important;
}
.custom-checkout label {
	font-size: 14px;
}
.custom-checkout h3,
.custom-checkout h3 label {
	font-size: 16px;
	margin: 0 0 10px;
	font-weight: 600;
}
.custom-checkout .product-name {
	font-size: 14px;
	font-weight: 500;
}
.custom-checkout .required {
	color: var(--custom-dark-pink);
}
.custom-checkout tr {
	height: 30px;
}
.custom-checkout td:last-child,
.custom-checkout .product-total {
	text-align: right;
}
.custom-checkout .checkout .row .save-source-checkbox {
	width: 20px!important;
}
.custom-checkout [name="apply_coupon"],
.custom-checkout #payment #place_order {
	font-family: var(--font-motserrat);
    font-weight: 500;
    font-size: 16px;
    line-height: 160%;
    text-transform: uppercase;
    color: var(--custom-white);
    background: var(--custom-light-pink);
    padding: 7px 30px;
    transition: all .2s ease;
    text-decoration: none;
    position: relative;
    align-self: center;
    cursor: pointer;
    outline: none;
	border: none;
	box-shadow: none;
	transition: all .2s ease;
}
.custom-checkout [name="apply_coupon"]:hover,
.custom-checkout [name="apply_coupon"]:focus,
.custom-checkout #payment #place_order:hover,
.custom-checkout #payment #place_order:focus {
	outline: none;
	border: none;
	box-shadow: none;
	opacity: 0.8;
}
.custom-checkout .woocommerce-info {
	border-top-color: var(--custom-dark-pink);
}
.custom-checkout .woocommerce-info::before {
	color: var(--custom-dark-pink);
}
@media (min-width: 992px) {
	.custom-checkout h3 {
		font-size: 18px;
		margin: 0 0 15px;
	}
}
@media (min-width: 1200px) {
	.custom-checkout h3 {
		font-size: 20px;
	}
}
@media (min-width: 1600px) {
	.custom-checkout h3 {
		font-size: 24px;
		margin: 0 0 20px;
	}
}

/* Delete after done */
html #wpadminbar {
	display: none;
}
html.js-focus-visible {
	margin: 0!important;
}