/* HC Service Booking Stylesheet */

/* variable */
:root{
	--hcsb-primary-color: #e67e22;
	--hcsb-secondary-color: #ccc;
	--hcsb-black-color: #333;
}

/* typography */
.text-center{
	text-align: center;
}
.block{
	display: block;
}
.inline-block{
	display: inline-block;
}
.grid{
	display: -ms-grid;
	display: grid;
}
.none{
	display: none;
}
.flex{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.item-center{
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.justify-between{
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.capitalize{
	text-transform: capitalize;
}
.uppercase{
	text-transform: uppercase;
}


/* main css start */
.hcsb-hidden{
	display: none;
}
.hc-service-booking{
	text-align: center;
	margin: 15px auto;
}
.hc-service-booking a:focus,
.hc-service-booking a:hover{
	outline: none;
	border: none;
}
.hc-service-booking .hc-service-booking-searchform form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.hc-service-booking .hc-service-booking-searchform form input{
    border: none;
    outline: none;
    -webkit-box-shadow: 0 0 5px 1px var(--hcsb-secondary-color);
    box-shadow: 0 0 5px 1px var(--hcsb-secondary-color);
    padding: 5px 12px;
    width: 320px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
	border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.hc-service-booking .hc-service-booking-searchform form button{
	background: var(--hcsb-primary-color);
	padding: 8px;
	border-radius: 5px;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	-webkit-box-shadow: 0 0 5px 1px var(--hcsb-secondary-color);
	box-shadow: 0 0 5px 1px var(--hcsb-secondary-color);
	transition: .4s ease all;
	-webkit-transition: .4s ease all;
	-moz-transition: .4s ease all;
	-ms-transition: .4s ease all;
	-o-transition: .4s ease all;
}
.hc-service-booking .hc-service-booking-searchform form button:hover{
	background: var(--hcsb-black-color);
}
.hc-service-booking .hc-service-booking-searchform form button:hover > img{
	filter: invert(1);
	-webkit-filter: invert(1);
}
.hc-service-booking .hc-service-booking-searchform form button img{
	height: 20px;
	transition: .4s ease all;
	-webkit-transition: .4s ease all;
	-moz-transition: .4s ease all;
	-ms-transition: .4s ease all;
	-o-transition: .4s ease all;
}

/* search result service */
.hc-service-booking  .hcsb-search-results {
    position: relative;
}
.hc-service-booking .hcsb-search-results .hcsb-search-list{
    width: 50%;
    border: 2px solid var(--hcsb-secondary-color);
    border-radius: 5px;
    padding: 6px;
    margin: 20px auto 0;
    position: absolute;
    z-index: 5;
    background: #fff;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
.hc-service-booking .hcsb-search-results .hcsb-search-list li{
	display: block;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--hcsb-secondary-color);
}
.hc-service-booking .hcsb-search-results .hcsb-search-list li:last-child{
	border-bottom: 0;
}
.hc-service-booking .hcsb-search-results .hcsb-search-list li .hcsbtitle-thumbnail{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	gap: 15px;
}
.hc-service-booking .hcsb-search-results .hcsb-search-list li .hcsbtitle-thumbnail .hcsb-title a{
    text-decoration: none;
}
.hc-service-booking .hcsb-search-results .hcsb-search-list li .hcsbtitle-thumbnail .hcsb-title h4{
	transition: .4s ease all;
	-webkit-transition: .4s ease all;
	-moz-transition: .4s ease all;
	-ms-transition: .4s ease all;
	-o-transition: .4s ease all;
}
.hc-service-booking .hcsb-search-results .hcsb-search-list li .hcsbtitle-thumbnail .hcsb-title h4:hover{
	color: var(--hcsb-primary-color);
}
.hc-service-booking .hcsb-search-results .hcsb-search-list .hcsb-service-image img{
    width: 120px;
    border-radius: 5px;
}
.hc-service-booking .hcsb-search-results .hcsb-search-list li .hcsb-prices{
	text-align: left;
    margin-top: -30px;
}
.hc-service-booking .hcsb-search-results .hcsb-search-list li .hcsb-prices .price{
    font-size: 20px;
    font-weight: bold;
}
.hc-service-booking .hcsb-search-results .hcsb-search-list li .hcsb-prices .selling-price{
    font-size: 17px;
    font-weight: 600;
}

/* single services */
.hc-service-booking .hc-service-booking-details{
	margin: 40px 0 0 0;
}
.hc-service-booking .hc-service-booking-details .hc-services{
	list-style: none;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 20px 1fr;
	grid-template-columns: 1fr 1fr;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	gap: 20px;
}
.hc-service-booking .hc-service-booking-details .hc-services .single-service{
	text-align: left;
	margin-bottom: 15px;
	border: 2px solid var(--hcsb-secondary-color);
    border-radius: 5px;
    padding: 10px;
    -webkit-box-shadow: 0 5px 10px 0 var(--hcsb-secondary-color);
            box-shadow: 0 5px 10px 0 var(--hcsb-secondary-color);
}
.hc-service-booking .hc-service-booking-details .single-service .hcsb-service-image{
	overflow: hidden;
	border-radius: 5px;
	position: relative;
}
/* addtocart, buynow, view cart */
.hc-service-booking .hc-service-booking-details .single-service .hcsb-service-image .addtocart-buynow-viewcart{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: -ms-grid;
    display: grid;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
}
/* view cart */
.hc-service-booking .hc-service-booking-details .single-service .hcsb-service-image a.hcsb-viewcart-btn{
	text-decoration: none;
    color: var(--hcsb-primary-color);
    margin-bottom: 4px;
	margin-left: 5px;
	font-size: 17px;
	font-weight: 600;
}
/* add to cart */
.hc-service-booking .hc-service-booking-details .single-service .hcsb-service-image a.hcsb-addto-cartbtn{
	text-decoration: none;
	padding: 5px;
	text-align: center;
	text-transform: capitalize;
	font-size: 17px;
	font-weight: 600;
	background: var(--hcsb-primary-color);
	border-radius: 4px;
	color: #fff;
	transition: .4s ease all;
	-webkit-transition: .4s ease all;
	-o-transition: .4s ease all;
	-moz-transition: .4s ease all;
	-ms-transition: .4s ease all;
}
.hc-service-booking .hc-service-booking-details .single-service .hcsb-service-image a.hcsb-buynow-tbtn:hover,
.hc-service-booking .hc-service-booking-details .single-service .hcsb-service-image a.hcsb-addto-cartbtn:hover{
	background: var(--hcsb-black-color);
}
/* buy now */
.hc-service-booking .hc-service-booking-details .single-service .hcsb-service-image a.hcsb-buynow-tbtn{
	text-decoration: none;
    padding: 5px;
    text-align: center;
    text-transform: capitalize;
    font-size: 17px;
    font-weight: 600;
    background: var(--hcsb-primary-color);
    border-radius: 4px;
    color: #fff;
    transition: .4s ease all;
    -webkit-transition: .4s ease all;
    -o-transition: .4s ease all;
    -moz-transition: .4s ease all;
    -ms-transition: .4s ease all;
}
.hc-service-booking .hc-service-booking-details .single-service .hcsb-service-image a img{
	margin-bottom: 0;
	transition: .6s ease all;
	-webkit-transition: .6s ease all;
	-o-transition: .6s ease all;
	-moz-transition: .6s ease all;
	-ms-transition: .6s ease all;
}
.hc-service-booking .hc-service-booking-details .single-service .hcsb-service-image a:hover img{
	transform: scale(1.2);
	-webkit-transform: scale(1.2);
	-ms-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-o-transform: scale(1.2);
}
.hc-service-booking .hc-service-booking-details .single-service .hcsb-service-title a {
    text-decoration: none;
}
.hc-service-booking .hc-service-booking-details .single-service .hcsb-service-title h2{
	margin: 5px 0;
	line-height: 1.2em;
	transition: .4s ease all;
	-webkit-transition: .4s ease all;
	-o-transition: .4s ease all;
	-moz-transition: .4s ease all;
	-ms-transition: .4s ease all;
}
.hc-service-booking .hc-service-booking-details .single-service .hcsb-service-title h2:hover{
	color: var(--hcsb-primary-color);
}
.hc-service-booking .hc-service-booking-details .single-service .hcsb-service-prices .selling-price{
	font-size: 20px;
	font-weight: bold;
	margin-right: 3px;
}
.hc-service-booking .hc-service-booking-details .single-service .hcsb-service-prices .regular-price{
	opacity: .8;
}
.hc-service-booking .hc-service-booking-details .single-service .hcsb-service-prices .regular-price .sepa{
	font-size: 20px;
	margin: 0 3px;
}
.hc-service-booking .hc-service-booking-details .single-service .hcsb-service-prices .price{
    font-size: 24px;
    font-weight: 600;
    margin-right: 10px;
}
.hc-service-booking .hc-service-booking-details .single-service .hcsb-service-prices{
    margin-bottom: 5px;
}
.hc-service-booking .hc-service-booking-details .single-service .hcsb-service-shortdescription ul li{
    list-style: inherit;
    display: block;
}
.hc-service-booking .hc-service-booking-details .single-service .hcsb-service-shortdescription ul{
    list-style: auto;
}

/* view more btn */
.hc-service-booking .hcsb-search-results .view-morebtn{
	display: inline-block;
	margin: 5px 0;
	background: var(--hcsb-primary-color);
	color: #fff;
	padding: 6px 30px;
	text-transform: capitalize;
	text-decoration: none;
	transition: .4s ease all;
	-webkit-transition: .4s ease all;
	-o-transition: .4s ease all;
	-moz-transition: .4s ease all;
	-ms-transition: .4s ease all;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
}
.hc-service-booking .hcsb-search-results .view-morebtn:hover{
	background: var(--hcsb-black-color);
}

/* pagination */
.hc-service-booking .hc-service-booking-details ul.page-numbers{
	margin-top: 15px;
	list-style: none;
}
.hc-service-booking .hc-service-booking-details ul.page-numbers li{
	display: inline-block;
}
.hc-service-booking .hc-service-booking-details ul.page-numbers li span,
.hc-service-booking .hc-service-booking-details ul.page-numbers li a{ 
	text-decoration: none;
	padding: 5px 10px;
	margin: 0 1px;
	background: var(--hcsb-black-color);
	color: #fff;
	transition: .4s ease all;
	-webkit-transition: .4s ease all;
	-o-transition: .4s ease all;
	-moz-transition: .4s ease all;
	-ms-transition: .4s ease all;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
}
.hc-service-booking .hc-service-booking-details ul.page-numbers li span:hover,
.hc-service-booking .hc-service-booking-details ul.page-numbers li a:hover{
	background: var(--hcsb-primary-color);
}
.hc-service-booking .hc-service-booking-details ul.page-numbers li .current{
	background: var(--hcsb-primary-color);
}

/* //////////// Single Page Style ////////// */
.hcsb_service-section{
	margin: 20px 0;
}
.hcsb_service-section .container{
	margin: auto;
}
.hcsb_service-section .service-title{
    margin-bottom: 5px;
}
.hcsb_service-section .service-title h2{
    line-height: 1.2em;
}
.hcsb_service-section .hcsb_service-details article{
	margin-bottom: 10px;
}
.hcsb_service-section .hcsb_service-details .srvice_image_description{
	-ms-grid-columns: 1fr 20px 1fr;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: start;
	padding-bottom: 10px;
    border-bottom: 2px solid var(--hcsb-secondary-color);
    margin-bottom: 15px;
}
.hcsb_service-section .hcsb_service-details .srvice_image_description ul.social-share li{
    display: inline-block;
    margin-right: 4px;
}
.hcsb_service-section .hcsb_service-details .srvice_image_description ul.social-share li a{
    text-decoration: none;
}
.hcsb_service-section .hcsb_service-details .srvice_image_description ul.social-share li img{
	height: 35px;
	width: 35px;
	border-radius: 5px;
	background-color: var(--hcsb-primary-color);
	transition: .4s ease all;
	-webkit-transition: .4s ease all;
	-moz-transition: .4s ease all;
	-ms-transition: .4s ease all;
	-o-transition: .4s ease all;
}
.hcsb_service-section .hcsb_service-details .srvice_image_description ul.social-share li a img:hover{
	background-color: var(--hcsb-black-color);
}
.hcsb_service-section .hcsb_service-details .srvice_image_description ul.social-share{
    margin: 15px 0 0;
}
.hcsb_service-section .srvice_image_description .hcsb-service-prices{
    margin-bottom: 5px;
}
.hcsb_service-section .srvice_image_description .hcsb-service-prices .price{
    font-size: 22px;
    font-weight: bold;
}
.hcsb_service-section .srvice_image_description .hcsb-service-prices .selling-price{
    font-size: 18px;
    font-weight: 600;
    margin: 0 4px;
}
.hcsb_service-section .srvice_image_description .hcsb-service-prices .regular-price .sepa{
    margin-right: 3px;
}
.hcsb_service-section .srvice_image_description .hcsb-service-prices .regular-price del{
    opacity: .8;
}
.hcsb_service-section .hcsb_service_description .addtocart-buynow-viewcart{
	margin: 25px 0 20px;
	-ms-grid-columns: 1fr 1fr 1fr 1fr;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding-bottom: 18px;
	border-bottom: 2px solid var(--hcsb-secondary-color);
}
.hcsb_service-section .hcsb_service_description .addtocart-buynow-viewcart a.hcsb-addto-cartbtn{
	display: inline-block;
	text-decoration: none;
    padding: 7px 20px;
    text-align: center;
    text-transform: capitalize;
    font-size: 17px;
    font-weight: 600;
    background: var(--hcsb-primary-color);
    border-radius: 4px;
    color: #fff;
    transition: .4s ease all;
    -webkit-transition: .4s ease all;
    -o-transition: .4s ease all;
    -moz-transition: .4s ease all;
    -ms-transition: .4s ease all;
}
.hcsb_service-section .hcsb_service_description .addtocart-buynow-viewcart a.hcsb-buynow-tbtn{
	display: inline-block;
	text-decoration: none;
    padding: 7px 20px;
    text-align: center;
    text-transform: capitalize;
    font-size: 17px;
    font-weight: 600;
    background: var(--hcsb-primary-color);
    border-radius: 4px;
    color: #fff;
    transition: .4s ease all;
    -webkit-transition: .4s ease all;
    -o-transition: .4s ease all;
    -moz-transition: .4s ease all;
    -ms-transition: .4s ease all;
}
.hcsb_service-section .hcsb_service_description .addtocart-buynow-viewcart .hcsb-addto-cartbtn:hover,
.hcsb_service-section .hcsb_service_description .addtocart-buynow-viewcart .hcsb-buynow-tbtn:hover{
	background-color: var(--hcsb-black-color);
}
.hcsb_service-section .hcsb_service_description .addtocart-buynow-viewcart a.hcsb-viewcart-btn {
    font-weight: 600;
    margin-left: 10px;
    color: var(--hcsb-primary-color);
    text-decoration: underline;
}
.hcsb_service-section .hcsb_service-details .srvice_image_description .date-category-tags-author .author{
    gap: 6px;
	margin-bottom: 5px;
}
.hcsb_service-section .hcsb_service-details .srvice_image_description .date-category-tags-author .author a{
    transition: .4s ease all;
    -webkit-transition: .4s ease all;
    -moz-transition: .4s ease all;
    -ms-transition: .4s ease all;
    -o-transition: .4s ease all;
}
.hcsb_service-section .hcsb_service-details .srvice_image_description .date-category-tags-author .author a:hover{
	color: var(--hcsb-primary-color);
}
.hcsb_service-section .hcsb_service-details .srvice_image_description .date-category-tags-author .author img{
	height: 22px;
	width: 22px;
	display: inline-block;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}
.hcsb_service-section .hcsb_service-details .srvice_image_description .date-category-tags-author .categories{
    font-weight: 600;
	margin: 4px 0;
}
.hcsb_service-section .hcsb_service-details .srvice_image_description .date-category-tags-author .categories a{
	font-weight: normal;
	transition: .4s ease all;
	-webkit-transition: .4s ease all;
	-moz-transition: .4s ease all;
	-ms-transition: .4s ease all;
	-o-transition: .4s ease all;
}
.hcsb_service-section .hcsb_service-details .srvice_image_description .date-category-tags-author .categories a:hover{
	color: var(--hcsb-primary-color);
}
.hcsb_service-section .hcsb_service-details .srvice_image_description .date-category-tags-author .tags{
    font-weight: 600;
}
.hcsb_service-section .hcsb_service-details .srvice_image_description .date-category-tags-author .tags a{
	font-weight: normal;
	transition: .4s ease all;
	-webkit-transition: .4s ease all;
	-moz-transition: .4s ease all;
	-ms-transition: .4s ease all;
	-o-transition: .4s ease all;
}
.hcsb_service-section .hcsb_service-details .srvice_image_description .date-category-tags-author .tags a:hover{
	color: var(--hcsb-primary-color);
}
.hcsb_service-section .hcsb_service-details .srvice_image_description .date-category-tags-author .date{
    margin-top: 4px;
}
.hcsb_service-section .hcsb_service-details .srvice_image_description .date-category-tags-author .date p{
    font-weight: 600;
	display: inline-block;
}
.hcsb_service-section .hcsb_service-details .service-content h6{
	margin-bottom: 5px;
}
.hcsb_service-section .hcsb_service-details .service-content ul{
	list-style: inherit;
	margin: 5px 0;
}
.hcsb_service-section .hcsb_service-details .service-content li{
	display: block;
}
.hcsb_service-section .hcsb_service-details .service-content a{
	color: var(--hcsb-primary-color);
}


/* related services */
.hcsb_service-section .hcsb-related-services{
	margin-top: 24px;
}
.hcsb_service-section .hcsb-related-services .related-title {
    margin-bottom: 10px;
}
.hcsb_service-section .hcsb-related-services .related-service-details{
	-ms-grid-columns: 1fr 18px 1fr 18px 1fr;
	grid-template-columns: 1fr 1fr 1fr;
    gap: 18px;
	margin-bottom: 10px;
}
.hcsb_service-section .hcsb-related-services .related-service-details article{
    text-align: left;
    margin-bottom: 15px;
    border: 2px solid var(--hcsb-secondary-color);
    padding: 10px;
    box-shadow: 0 4px 8px 0 var(--hcsb-secondary-color);
    -webkit-box-shadow: 0 4px 8px 0 var(--hcsb-secondary-color);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.hcsb_service-section .hcsb-related-services .related-service-details article .hcsb-related-thumb{
    overflow: hidden;
    position: relative;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.hcsb_service-section .hcsb-related-services .related-service-details article .hcsb-related-thumb img{
    margin-bottom: 0;
    transition: .6s ease all;
    -webkit-transition: .6s ease all;
    -o-transition: .6s ease all;
    -moz-transition: .6s ease all;
    -ms-transition: .6s ease all;
}
.hcsb_service-section .hcsb-related-services .related-service-details article .hcsb-related-thumb a:hover img{
	transform: scale(1.2);
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-ms-transform: scale(1.2);
	-o-transform: scale(1.2);
}
.hcsb_service-section .hcsb-related-services .related-service-details article .hcsb-related-thumb .addtocart-buynow-viewcart{
	position: absolute;
	bottom: 0;
	left: 0;
}
.hcsb_service-section .hcsb-related-services .related-service-details article a.hcsb-addto-cartbtn{
	text-decoration: none;
    padding: 7px 20px;
    text-align: center;
    text-transform: capitalize;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    background: var(--hcsb-primary-color);
    border-radius: 4px;
    color: #fff;
    transition: .4s ease all;
    -webkit-transition: .4s ease all;
    -o-transition: .4s ease all;
    -moz-transition: .4s ease all;
    -ms-transition: .4s ease all;
}
.hcsb_service-section .hcsb-related-services .related-service-details article a.hcsb-addto-cartbtn:hover{
	background-color: var(--hcsb-black-color);
}
.hcsb_service-section .hcsb-related-services .related-service-details article a.hcsb-viewcart-btn{
	margin-left: 10px;
	font-size: 16px;
	font-weight: 600;
	color: var(--hcsb-primary-color);
}
.hcsb_service-section .hcsb-related-services .related-service-details .service-title{
	margin-top: 5px;
}
.hcsb_service-section .hcsb-related-services .related-service-details .service-title h2{
	font-size: 25px;
	line-height: 1.2em;
	transition: .4s ease all;
	-webkit-transition: .4s ease all;
	-moz-transition: .4s ease all;
	-ms-transition: .4s ease all;
	-o-transition: .4s ease all;
}
.hcsb_service-section .hcsb-related-services .related-service-details .service-title h2:hover{
	color: var(--hcsb-primary-color);
}
.hcsb_service-section .hcsb-related-services .related-service-details .hcsb-related-prices{
    margin-bottom: 5px;
}
.hcsb_service-section .hcsb-related-services .related-service-details .hcsb-related-prices .price{
    font-size: 18px;
    font-weight: bold;
}
.hcsb_service-section .hcsb-related-services .related-service-details .hcsb-related-prices .selling-price{
    font-size: 16px;
    font-weight: 600;
    margin: 0 4px;
}
.hcsb_service-section .hcsb-related-services .related-service-details .hcsb-related-prices .regular-price .sepa{
    margin-right: 3px;
}
.hcsb_service-section .hcsb-related-services .related-service-details .hcsb-related-prices del{
    opacity: .8;
}


/* Comment Style */
.hcsb_service-section .comments-area{
	
}
.hcsb_service-section .comments-area li{
	display: block;
}
.hcsb_service-section .comments-area .comment-list .comment-text > li{
    margin-bottom: 14px;
    border-bottom: 2px solid var(--hcsb-secondary-color);
}
.hcsb_service-section .comments-area .comment-list .comment-text > li:last-child{
    border-bottom: none;
}
.hcsb_service-section .comments-area .comments-title{
	text-transform: capitalize;
	margin-bottom: 5px;
}
.hcsb_service-section .comments-area .comment-author img {
    border-radius: 50%;
    height: 40px;
    width: 40px;
}
.hcsb_service-section .comments-area .reply a.comment-reply-link{
	text-decoration: underline;
	transition: .3s ease all;
	-webkit-transition: .3s ease all;
	-moz-transition: .3s ease all;
	-ms-transition: .3s ease all;
	-o-transition: .3s ease all;
}
.hcsb_service-section .comments-area .reply a.comment-reply-link:hover{
	color: var(--hcsb-primary-color);
}
.hcsb_service-section .comments-area ul.children{
	margin-left: 50px;
}
.hcsb_service-section .comments-area .comment-list{
	margin-bottom: 15px;
}
.hcsb_service-section .comments-area .comment-respond .reply-title{
	text-transform: capitalize;
}
.hcsb_service-section .comments-area .comment-respond form textarea,
.hcsb_service-section .comments-area .comment-respond form input{
	border: 2px solid var(--hcsb-secondary-color);
}
.hcsb_service-section .comments-area .comment-respond form .form-submit{
	overflow: hidden;
}
.hcsb_service-section .comments-area .comment-respond form input[type="submit"]{
	border: none;
	text-transform: capitalize;
	float: right;
	overflow: hidden;
	color: #fff;
	background-color: var(--hcsb-primary-color);
	transition: .4s ease all;
	-webkit-transition: .4s ease all;
	-moz-transition: .4s ease all;
	-ms-transition: .4s ease all;
	-o-transition: .4s ease all;
}
.hcsb_service-section .comments-area .comment-respond form input[type="submit"]:hover{
	background-color: var(--hcsb-black-color);
}


/* Previous and Next Service */
.hcsb_service-section .hcsb_service-details .previous_next-service{
    text-align: center;
    margin: 20px 0;
}
.hcsb_service-section .hcsb_service-details .previous-service{
    display: inline-block;
    margin-right: 10px;
}
.hcsb_service-section .hcsb_service-details .next-service{
    display: inline-block;
    margin-left: 10px;
}
.hcsb_service-section .hcsb_service-details .previous-service a{
    text-decoration: none;
    font-weight: bold;
    transition: .4s ease all;
    -webkit-transition: .4s ease all;
    -moz-transition: .4s ease all;
    -ms-transition: .4s ease all;
    -o-transition: .4s ease all;
}
.hcsb_service-section .hcsb_service-details .next-service a{
    text-decoration: none;
    font-weight: bold;
    transition: .4s ease all;
    -webkit-transition: .4s ease all;
    -moz-transition: .4s ease all;
    -ms-transition: .4s ease all;
    -o-transition: .4s ease all;
}
.hcsb_service-section .hcsb_service-details .previous-service a:hover,
.hcsb_service-section .hcsb_service-details .next-service a:hover{
    color: var(--hcsb-primary-color);
}


/* responsive design */
@media (max-width: 1024px){
	.hc-service-booking .hc-service-booking-details .single-service .hcsb-service-image a.hcsb-buynow-tbtn,
	.hc-service-booking .hc-service-booking-details .single-service .hcsb-service-image a.hcsb-viewcart-btn,
	.hc-service-booking .hc-service-booking-details .single-service .hcsb-service-image a.hcsb-addto-cartbtn{font-size: 14px;}
	.hcsb_service-section .hcsb_service_description .addtocart-buynow-viewcart{-ms-grid-columns: 1fr 1fr 1fr;grid-template-columns: 1fr 1fr 1fr;}
	.hcsb_service-section .hcsb_service_description .addtocart-buynow-viewcart a.hcsb-addto-cartbtn{padding: 5px 15px;}
}
@media (max-width: 768px){
	.hc-service-booking .hc-service-booking-details .hc-services{-ms-grid-columns: 1fr 1fr;grid-template-columns: 1fr 1fr;}
	.hcsb_service-section .hcsb_service-details .srvice_image_description{-ms-grid-columns: 1fr;grid-template-columns: 1fr;}
	.hcsb_service-section .hcsb-related-services .related-service-details{-ms-grid-columns: 1fr 1fr;grid-template-columns: 1fr 1fr;}
}
@media (max-width: 500px){
	.hc-service-booking .hc-service-booking-details .hc-services{-ms-grid-columns: 1fr;grid-template-columns: 1fr;}
	.hc-service-booking .hc-service-booking-details .single-service .hcsb-service-image .addtocart-buynow-viewcart{
		display: block;
	}
	.hc-service-booking .hc-service-booking-details .single-service .hcsb-service-image a.hcsb-viewcart-btn,
	.hc-service-booking .hc-service-booking-details .single-service .hcsb-service-image a.hcsb-buynow-tbtn,
	.hc-service-booking .hc-service-booking-details .single-service .hcsb-service-image a.hcsb-addto-cartbtn{
		width: 100%;
		display: block;
		font-size: 15px;
		text-align: center;
	}
	.hcsb_service-section .hcsb-related-services .related-service-details{-ms-grid-columns: 1fr;grid-template-columns: 1fr;}
	.hcsb_service-section .hcsb_service_description .addtocart-buynow-viewcart {-ms-grid-columns: 1fr;grid-template-columns: 1fr;gap: 12px; text-align: center; }
}
