/*
Welcome to Custom CSS!

To learn how this works, see http://wp.me/PEmnE-Bt
*/
/* remove black box around site branding */
.site-branding {
    background: none;
}

/* Hide Posted Date */
.entry-meta {
	display: none;
}

/* Testimonial Column Width Adjust */
.page-id-106 .testimonial-entry-column-2 {
	margin-right: 10%;
	width: 40%;
}

/* change font on checkout page */
.woocommerce h3{
	font-family:'Courgette';
}

/* hide unstyled text */
.wf-loading body { visibility: hidden; }

/* hide sorting drop down */
.woocommerce-ordering .orderby {
	display: none;
}

/* hide second description */
.woocommerce-product-details__short-description{
	display: none !important;
}

/* Remove magnifying glass on product images */

.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
	display: none;
}

/* re-order testimonial content */
div.testimonial-entry {
  display: flex;
	flex-flow: column;  
}

span.testimonial-entry-title {
  order: 1;
}

a.testimonial-featured-image {
  order: 2;
}

div.testimonial-entry-content {
  order: 3;
}

/* fix testimonials on mobile */
.page-id-106 .testimonial-entry-column-2 {
    margin-right: 10%;
    width: 45%;
}
 
.page-id-106 .testimonial-entry-column-2:nth-of-type(2n) {
    margin-right: 0;
}
 
@media screen and (max-width: 600px) {
	.page-id-106 .testimonial-entry-column-2 {
  	margin: 0;
		width: 100%;    
	}
}

.woocommerce .woocommerce-result-count {
  display: none;
}

/* Button code */
button, .button {
    display: inline-block;
    padding: .75em 1.5em 1em;
	margin:auto;
}
html input[type=button], input[type=reset], input[type=submit], button, .button, #infinite-handle span {
    background-color: #000;
    color: #fff;
    border: none;
    font-size: 18px;
    font-size: 1.8rem;
    font-style: inherit;
    background-clip: padding-box;
    padding: .375em .75em .5em;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    text-align: center;
    transition: .2s;
}
.button, .button:visited, .button:hover {
    color: white;
}

#header-search-toggle {
	display: none;
}

h1, h1.entry-title, .wf-active .entry-title {
	text-align:center;
}

a, a:visited {
	color: #4169e1;
}

.site-title a {
	color: white;
}

/* add content to site header
*/
.site-header-image::before {
  content: "         ";
	color: white;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 40%;
}

/* Change sale button color/font */
.woocommerce span.onsale {
	background-color: #e7abeb;
	font-family: "open-sans"
}
/* increase size of header on mobile #14513803-hc | CC */
@media screen and (max-width: 800px){
.site-header-image {
    background-size: cover;
    min-height: 300px;
}
}
/* Hide Placeholder Woo Image | 14706950-hc (KK) */
.woocommerce ul.products li.product .woocommerce-placeholder, .woocommerce-product-gallery__image--placeholder {
    display: none;
}
/*Hide Product Image | 14706950-hc (SY)*/
.woocommerce ul.products li.product a img {
display: none;
}
.woocommerce ul.products li.product .onsale {
    top: -30px;
}
.woocommerce ul.products li.product .onsale {
    top: -30px;
	right:inherit;
	left:-20px;
 }

/*
.site-header-image {
    background-image: url( https://spiritualgoddess.io/wp-content/uploads/2019/08/Spiritual-Goddess-logo-FIN-clean-1-1280x416.jpg );
}
*/
/* hide second description title on product pages NP 19423486-hc */
.woocommerce div.product .woocommerce-tabs .panel h2 {
    display: none;
}
/*Move bullets inside on product pages | 19423486-hc sb*/
.product ul {
  list-style-position: inside;
}
/*Change footer widget back to white and smaller and not bold 38027172- JW*/
#text-7 .textwidget a{
	color: white;
}

/* Add ‘From’ before price on post ID 5894 | 6418893-zen (DR) */
.postid-5894 .price::before {
	content: 'From ';
}
