/*
Theme Name: OceanWP Child
Theme URI: https://oceanwp.org/
Description: OceanWP WordPress theme example child theme.
Author: Nick
Author URI: https://oceanwp.org/
Template: oceanwp
Version: 1.0
*/

/* Parent stylesheet should be loaded from functions.php not using @import */

/***** Home Header Search form *****/
form.oceanwp-searchform {
    height: 39px;
}

form.oceanwp-searchform button {
    background-color: #622d11 !important;
}


/* sidebar/body line color */
.content-area {
    border-right-width: 1px;
    border-style: solid;
    border-color: #000000;
}

/**** Sidebar Tripsadvisor widget size ****/
#custom_html-2 div#TA_excellent740.TA_excellent .widEXC{
    font: normal 16px Verdana,Bitstream Vera Sans,Arial,Helvetica,sans-serif !important;
    width: 100% !important;
}


/******  Woocommerce Booking Calender Color *******/
#wc-bookings-booking-form .wc-bookings-date-picker .ui-datepicker td.bookable a  {
	background-color: #2e57cc !important;
}



/* Woocommerce Price color */
.price, .woocommerce-Price-amount, .amount{
	
    color: #666666 !important;
}
/* Woocommerce Active Tabs color */
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: #b363a0 !important;
    border-color: #b363a0 !important;
}


/* Remove Footer menu separator and change font size */
#menu-footer li {
    border-bottom: 0;
    border-top: 0;
	font-size: 1.3em;
}



/*****  Remove Woocommerce single Product tabs **/
ul.tabs.wc-tabs {
	display: none !important;
}

/* sidebar featured image **/
.recent-posts-thumbnail{
	display: none !important;
	}

/***********
.wcmenucart-cart-icon .wcmenucart-count:after{

    border: none !important;
 
	
/*
	content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    width: 14px;
    height: 8px;
    margin-left: -7px;
    margin-bottom: 0;
    border: 2px solid #333;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    border-bottom: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
*/
/******
}

.wcmenucart-cart-icon .wcmenucart-count {
	
	border: none !important;
/*
    position: relative;
    display: inline-block;
    min-width: 2em;
    height: 2em;
    font-size: 1em;
    line-height: 1.7em;
    font-weight: bold;
    border: 2px solid #333;
    color: #333;
    padding: 0 3px;
    vertical-align: middle;
    text-align: center;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
*/
/***********
}

.wcmenucart-count:before{
	content: '(';
}
.wcmenucart-count:after{
	content: ')' !important;
	/* content: ''; */ /*****************
    position: absolute !important;
    bottom: 100% !important;
    left: 50% !important;
    width: 32px !important;
    height: 0px !important;
    margin-left: -7px !important;
    /* margin-bottom: 0; */
    /* border: none !important; */
    /* border-top-left-radius: 100px; */
    /* border-top-right-radius: 100px; */
    /* border-bottom: 0; */
    /* -webkit-transition: all 0.2s ease-in-out; */ /******
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.wcmenucart-total {
    margin-right: -6px !important;
}
*/

add_filter('woocommerce_email_subject_new_order', 'change_admin_email_subject', 1, 2);

function change_admin_email_subject( $subject, $order ) {
	global $woocommerce;

	$blogname = wp_specialchars_decode(get_option('blogname'), ENT_QUOTES);

	$subject = sprintf( '[%s] New Order (# %s) from Name %s %s', $blogname, $order->id, $order->billing_first_name, $order->billing_last_name );

	return $subject;
}








