/*
 Theme Name:     ChuloInteriors
 Theme URI:      https://premiumweb.com.ua/
 Description:    Chulo Interior Design
 Author:         Premiumweb
 Author URI:     https://premiumweb.com.ua/
 Template:       Divi
 Version:        1.0.0
*/
 
 
/* =Theme customization starts here
------------------------------------------------------- */

@font-face {
  font-family: 'Cabrito Didone';
  src: url('/wp-content/uploads/fonts/CabritoDidone-NorReg.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Objektiv';
  src: url('/wp-content/uploads/fonts/Objektiv-Mk1.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

.product .cart {
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	margin-top: 10px;
}

.product .cart button[type="submit"] {
    margin: 0 10px !important;
}

/*Styling the Add to cart*/
.woocommerce ul.products li.product .button {
	font-size: 0;
	width: 50px;
	position: relative;
	height: 50px;
	border:none;
	display: flex;
	justify-content: center;
	align-items: center;
}
.woocommerce ul.products li.product .button:after {
	display: block !important;
	content: "\e013";
	color: #969696; /* buttonicon color */
	padding: 2px!important;
	border-radius: 5px;
	text-align: center;
	transition: .3s ease;
	position: absolute;
	font-size: 25px;
	transform: none !important;
	opacity: 1 !important;
	left: 30px;
}

.woocommerce ul.products li.product .button:hover:after {
	color: #000; /* buttonicon color */
	left: 11px;
}

/*Adding some Hover effect to buttons*/

.woocommerce ul.products li.product .button:hover {
	background: #efefef; /* button background color on hover */
	color: #fff; /* button icon color on hover */
	box-shadow: 0px 2px 5px #07B98A36;
}


/*Disables the icon appear when you hover to add to cart button*/

.woocommerce ul.products li.product .button:after {
	display: none
}