/*!
Theme Name: Orange Hire
Theme URI: https://chrisharold.com/
Author: Nilesh chipdey
Author URI: https://chrisharold.com/
Description: Custom theme for Orange Hire
Version: 1.0.8
Requires at least: 5.0
Tested up to: 5.5
Requires PHP: 7.2
License: GPL version 2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0
Tags: custom-background, custom-colors, featured-images, flexible-header, microformats, post-formats, rtl-language-support, theme-options, translation-ready, accessibility-ready
Text Domain: orange-hire
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
# Woocommerce
# Footer
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
body {
  margin: 0;
  -webkit-font-smoothing: auto;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
  transition: all 0.2s ease-in-out;
}

a:active,
a:hover {
  outline: 0;
  transition: all 0.2s ease-in-out;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 2.5rem;
}

hr {
  box-sizing: content-box;
  height: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  /* -webkit-appearance: button; */
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  clear: both;
  color: #0A2257;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 15px;
}
h1 {
  font-size: 32px;
  padding-bottom: 10px;
}
h2 {
  font-size: 24px;
  padding-bottom: 0.3em;
  line-height: 1.25;
}
h3 {
  font-size: 18px;
  line-height: 25px;
}
h4 {
  font-size: 16px;
  line-height: 20px;
}
h5 {
  font-size: 14px;
  line-height: 17.5px;
}

p {
  margin-bottom: 1.5em;
}
h1.entry-title {
  font-size: 1.31rem;
  border-bottom: 1px solid #eaecef;
}
h2.entry-title {
  border-bottom: 1px solid #eaecef;
}
h3.widget-title {
  font-size: 1.2rem;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
body {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.2;
    overflow-x: hidden;
    letter-spacing: normal;
    background: #fff;
    font-family: 'Roboto';
  /* Fallback for when there is no custom background color defined. */
}

img {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */
}

figure {
  margin: 1em 0;
  /* Extra wide images within figure tags don't overflow the content area. */
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

.btn {
  padding: 19px 15px;
  min-width: 175px;
  min-height: 60px;
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #FFFFFF;
  display: inline-block;
  text-decoration: none;
  background: #FF7D00;
  border: 1px solid #FF7D00;
  font-weight: 700;
  cursor: pointer;
  border-radius: 0;
  position: relative;
  z-index: 2;
  font-family: 'Roboto';
  transition: 0.4s all cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn:after {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  background: #fff;
  top: 0;
  left: 0;
  z-index: -1;
  transition: 0.4s all cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn:hover{
  color: #FF7D00;
}

.btn:hover:after {
  width: 100%;
}

.btn-blue {
  background: #0A2257;
  border: 1px solid #0A2257;
}
.btn-blue:hover{
  color: #0A2257;
}
.btn-blue:after{
  background: #fff;
}

.full-width-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

/*---------------------------------------------------------
## Custom styles
-----------------------------------------------------------*/
/* .woocommerce div.product .woocommerce-content-detail .panel>h2:first-child {
  display: none;
}
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product{margin: 0 14px} */

.woocommerce nav.woocommerce-breadcrumb {
  font-size: 16px;
  color: #798087;
  margin-bottom: 0;
}

.woocommerce div.product .product_title {
  font-family: Roboto;
  font-size: 36px;
  font-weight: 600;
  color: #0A2257;
  border-bottom: none;
}
/* .woocommerce-content-detail.wc-tabs-wrapper {
  width: 90%;
} */

.woocommerce-content-detail p,.woocommerce-content-detail ul {
  font-size: 20px;
  color: #798087;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 25px;
}
.woocommerce-content-detail h2:first-child {
  font-size: 32px;
  font-weight: 600;
  padding: 0;
}
.woocommerce-content-detail h3 {
  font-size: 28px;
}

.woocommerce-content-detail h3 {
  font-size: 26px;
}

.woocommerce-content-detail h3 {
  font-size: 24px;
}

.woocommerce-content-detail h4 {
  font-size: 22px;
}

.woocommerce-content-detail h5 {
  font-size: 20px;
}

.woocommerce-content-detail h6 {
  font-size: 18px;
}

.woocommerce-content-detail a {
  color: #FF7D00;
}

/* .woocommerce-product-details__short-description > p:first-child>strong {
  font-family: Roboto;
  font-size: 18px;
  font-weight: 900;
  font-stretch: normal;
  font-style: normal;
  line-height: 3.33;
  color: #798087;
} */

.woocommerce-product-details__short-description ul,
.acc_pro_content ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.woocommerce-product-details__short-description ul li,
.acc_pro_content ul li {
  padding-left: 25px;
  position: relative;
  font-family: 'Roboto';
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.52px;
  color: #798087;
  margin-bottom: 15px;
}

.acc_pro_content li:before {
  fill: #ff7d00;
  content: "";
  width: 10px;
  height: 18px;
  background: url("data:image/svg+xml;utf8,<svg width='14' height='24' aria-hidden='true' focusable='false' data-prefix='far' data-icon='angle-right' class='svg-inline--fa fa-angle-right fa-w-6' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 192 512'><path fill='%23ff7d00' d='M187.8 264.5L41 412.5c-4.7 4.7-12.3 4.7-17 0L4.2 392.7c-4.7-4.7-4.7-12.3 0-17L122.7 256 4.2 136.3c-4.7-4.7-4.7-12.3 0-17L24 99.5c4.7-4.7 12.3-4.7 17 0l146.8 148c4.7 4.7 4.7 12.3 0 17z'></path></svg>");
  position: absolute;
  left: 0px;
  top: 3px;
  color: #ff7d00;
  background-size: contain;
}

.woocommerce-product-details__short-description li:before {
  fill: #ff7d00;
  content: "";
  width: 12px;
  height: 18px;
  position: absolute;
  left: 0px;
  top: 8px;
  color: #ff7d00;
  background-image: url("data:image/svg+xml,%0A%3Csvg width='14' height='11' viewBox='0 0 14 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 1.5L4.75 9.75L1 6' stroke='%23F58220' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: center;
}

/* .woocommerce-product-details__short-description>p:first-child {
  margin-bottom: 0px;
} */

.woocommerce div.product div.images #product-thumbnails .woocommerce-product-gallery__image {
  margin-right: 14px !important;
  margin-top: 9px;
}

.woocommerce ul.glide__slides.products li.product a img {
  width: 150px;
  margin-left: auto;
  margin-right: auto;
}

.woocommerce #content div.product div.images, .woocommerce div.product div.images, 
.woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images {
  width: 100%;
  float: none;
  margin: 30px auto 50px;
}
/* .fl-f {
  float: left;
  width: 72%;
} */
.woocommerce #content div.product div.summary, .woocommerce div.product div.summary, 
.woocommerce-page #content div.product div.summary, .woocommerce-page div.product div.summary {
  width: 100%;
  float: none;
}


.woocommerce div.product p.price, 
.woocommerce div.product span.price {
  font-family: 'Roboto';
  font-size: 36px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: -0.82px;
  color: #ff7d00;
  margin-top: -16px;
}
p.price:after {
  content: " + GST";
}


/* h2.sidebar-title {
  font-family: Roboto;
  font-size: 43px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: 50px;

  text-align: center;
  color: #fff;
  margin: 0;
  padding: 0;
} */


/* ============================================================= 
							CART PAGE 
================================================================*/

body.woocommerce-cart td.product-name {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;

  /* identical to box height, or 150% */
  color: #251F23;
}

body.woocommerce-cart td.product-name,
td.product-name a {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px !important;
  color: #251F23;
}

body.woocommerce-cart .cutomer_reviews {
  display: none;
}


body.woocommerce-cart main#main {
  margin-bottom: 100px;
}



body.woocommerce-cart div#content {
  padding-top: 74px;
}

body.woocommerce-cart h1.entry-title {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  color: #002C70;
  border: none;
}

body.woocommerce-cart .woocommerce table.shop_table {
  border: none;
  margin: unset;
  border-radius: 10px;
  border-spacing: 0 10px;
}

body.woocommerce-cart .woocommerce table.shop_table th {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #0A2257;
}

body.woocommerce-cart tr.woocommerce-cart-form__cart-item.cart_item {
  background: #FFFFFF;

  /* Drop Shadow 1 */
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
}

dl.variation {
  display: none
}

body.woocommerce-cart td.product-quantity {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;

  /* identical to box height, or 150% */
  color: #767676;
}

body.woocommerce-cart td.product-price {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;

  /* identical to box height, or 150% */
  color: #767676;
}

body.woocommerce-cart table.shop_table td {
  border: none !important;
  padding: 10px 12px;
}

body.woocommerce-cart td.product-thumbnail {
  width: 120px !important;
}

body.woocommerce-cart td.product-quantity {
  text-align: center;
  width: 100px;
}

body.woocommerce-cart td.product-name {
  width: 401px;
}

body.woocommerce-cart a.remove {
  display: block;
  font-size: 32px;
  height: 24px;
  width: 24px;
  text-align: center;
  line-height: 24px;
  border-radius: 100%;
  color: #FF7C03 !important;
  text-decoration: none;
  font-weight: 400;
  border: 0;
  margin-left: 15px;
  margin-right: 0px;
}

body.woocommerce-cart a.remove:hover {
  color: #fff !important;
  background: #FF7C03;
}

body.woocommerce-cart td.start-date {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;

  /* identical to box height, or 150% */
  color: #767676;
}

.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
  float: right;
  margin-right: 62px;
  max-width: 297px;
  width: 100%;
}

body.woocommerce-cart div.shop_table.shop_table_responsive {
  width: 100%;
}

body.woocommerce-cart .table-row.d-flex {
  justify-content: space-between;
  margin-top: 10px;
}

body.woocommerce-cart .calc-title {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;

  /* identical to box height, or 150% */
  color: #767676;
}

body.woocommerce-cart .calc-val {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;

  /* identical to box height, or 150% */
  color: #767676;
}

body.woocommerce-cart .table-row.d-flex.cart-subtotal {
  margin-top: 10px;

}

body.woocommerce-cart .table-row.d-flex.fee {
  padding-bottom: 10px;
  border-bottom: 1px solid;
}

body.woocommerce-cart .table-row.d-flex.order-total {
  margin-top: 10px;
}



body.woocommerce-cart .table-row.d-flex.order-total .calc-title,
body.woocommerce-cart .table-row.d-flex.order-total .calc-val {
  font-weight: 700;
  color: #000;
}



body.woocommerce-cart .table-row.d-flex.excludingtext {
  margin-top: 0px;
}

body.woocommerce-cart span.rateexp svg {
  width: 14.63px;
  fill: #767676;
}

body.woocommerce-cart .calc-title.tool {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #767676;
  vertical-align: middle;
}

body.woocommerce-cart span.rateexp {
  margin-right: 5.4px;
  position: relative;
  top: -2px;
}



body.woocommerce-cart .table-row.d-flex.toolinfo {
  margin-top: 13px;
}

body.woocommerce-cart a.checkout-button.wc-forward {
  width: 100% !important;
  max-width: unset;
  background: #FF7C03;
  border-radius: 0;
  margin-bottom: 0px;
  font-size: 16px;
  letter-spacing: 1px;
}

body.woocommerce-cart .wc-proceed-to-checkout {
  padding-top: 27px;
}

body.woocommerce-cart a.checkout-button.wc-forward:hover {
  background: #FF7C03;
}

body.woocommerce-cart .addmore {
  float: left;
  width: 100%;
  max-width: 205px;
}

body.woocommerce-cart a.addmorebn {
  height: 40px;
  width: 100%;
  display: block;
  border: 1px solid #002C70;
  box-sizing: border-box;
  border-radius: 0;
  background: #fff;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  color: #002C70;
  transition: .3s all;
  line-height: 40px;
  text-align: center;
  text-decoration: none;
}

body.woocommerce-cart a.addmorebn:hover {
  background: #002C70;
  color: #fff;
}

.bc-mnc__cart-link--cart-icon i {
  color: #ffffff !important;
}

@media(min-width:768px) {
  .bc-mnc__cart-link--cart-icon:after {
    content: 'CART';
    top: -2px;
    position: relative;
    margin-left: 4px;
  }
}

@media(max-width:768px) {

  .bc-mnc__cart-link--container.bc-mnc__cart-link-layout-01 {
    margin-top: 13px;
  }
}

.bc-mnc__cart-link--container .bc-mnc__cart-link--count-circle {
  background: #fff !important;
  color: #012c70 !important;
}

.bc-mnc .bc-mnc__cart-link--container.bc-mnc__cart-link-layout-01 .bc-mnc__cart-link--count-circle {
  left: 27px;
}

.bc-mnc__cart-link--container .bc-mnc__cart-link--count-circle {
  color: #012c70;
}

body:not(.theme-preset-active) #masthead .navbar-nav>li:last-child>a.bc-mnc__cart-link {
  display: flex;
  height: 100%;
  justify-content: center;
}

li.bc-mnc.bc-mnc__float-none {
  align-self: unset;
}


body.woocommerce-cart .table-row.d-flex.fee:first-child {
  padding-bottom: 0px;
  border: unset;
}



/* ADD Insert */
.add_widget_container {
  display: flex;
  background: #FF7D00;
}
.add-widget-text {
  padding: 40px 0 40px 50px;
  text-align: left;
  width: 40%;
}
.add-widget-text .widget-title {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}
.add-widget-text p {
  color: #fff !important;
  margin-bottom: 25px;
}
.entry-content a.add-widget-btn-link {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}
.entry-content a.add-widget-btn-link:hover {
  color: #0A2257;
}
.add-widget-image {
  position: relative;
  width: 60%;
}
.add-widget-image img {
  transform: scale(1.2);
  margin: 45px 0 0px 0;
}
.ai-viewport-1 {
  margin: 50px 0;
}

/**** Quotes Slide In ***/
 .quotesSlideIn .fade-in {
  font-family: Roboto;
	 height: 150px;
	 width: 1px;
	 opacity: 0;
	 transition: all 0.75s ease;
}

.quotesSlideIn .fade-in.show {
	opacity: 1;
	transform: none;
}

.quotesSlideIn .quote {
	position: absolute;
	width: 0;
	transform: translateX(-100%);
	opacity: 1;
	background: #fff;
	bottom: 0px;
	display: flex;
	flex-direction: row;
	align-items: center;
	box-shadow: 0px 9px 18px rgba(0, 0, 0, 0.2);
	height: auto;
  padding: 6px 15px 6px 12px;
  width: fit-content;
  max-width: 80vw;
  gap: 10px;
}

.quotesSlideIn {
	position: fixed;
	/* left: 0; */
	bottom: 20px;
	z-index: 99;
}

.quotesSlideIn .quote img {
  width: 44px;
  height: auto;
  max-width: unset;
}

.quotesSlideIn .textWrapper {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.quotesSlideIn .textWrapper p {
	margin: 0;
}

.quotesSlideIn .textWrapper p.timeAgo {
	color: gray;
  font-size: 10px;
  font-weight: 400;
  line-height: 12px;
  letter-spacing: 0em;
  text-align: left;
  margin: 0;
  color: #798087;
}

.quotesSlideIn .textWrapper p.contentText {
	color: #000;
  font-weight: bold;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0em;
  text-align: left;
  margin: 0;
}

.quotesSlideIn a{
	color: #000;
	cursor: pointer;
	text-decoration: none;
}

.quotesSlideIn a:hover{
	text-decoration: underline;
}
span.branchName {
    text-transform: capitalize;
}
.quotesSlideIn .textWrapper p {
  white-space: nowrap;
}

.quotesSlideIn .textWrapper p.notBold {
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 0em;
  text-align: left;
  color: #788087;
  margin: 0;
}
/**** Quotes Slide In End***/