@charset "UTF-8";

/*=========================
  1. Start COMMON CSS
=========================*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cantarell:ital,wght@0,400;0,700;1,400;1,700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-color: #FBA31C;
  --secondary-color: #FAD347;
  --heading-color: #FAD347;
  --body-color: #777777;
  --white: #fff;
  --light-bg: #fafafa;
  --light-gray: #F9F9F9;
  --light-blue-gray: #F2F5FE;
  --black: #000;
  --bc: rgba(0, 0, 0, 0.1);
  --roboto: 'Roboto', sans-serif;
  --openSans: 'Open Sans', sans-serif;
}

html {
  font-size: 100%;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a:hover,
a:focus {
  color: inherit;
  text-decoration: none;
}

a:focus,
input:focus,
textarea:focus,
button:focus {
  text-decoration: none;
  outline: none;
}

i,
span,
a {
  display: inline-block;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--openSans);
  color: var(--heading-color);
  margin: 0px;
  font-weight: 600;
}

h1 {
  font-weight: 600;
  font-size: 50px;
  line-height: 60px;
}

h2 {
  font-weight: 600;
  font-size: 32px;
  line-height: 36px;
}

h3 {
  font-size: 30px;
  line-height: 1.4;
}

h4 {
  font-size: 24px;
  line-height: 30px;
}

h5 {
  font-size: 20px;
  line-height: 1;
}

h6 {
  font-size: 16px;
}

ul,
ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

p {
  margin: 0px;
  color: #000000;
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  word-break:break-word;
}

.p_small {
  font-size: 14px;
  line-height: 22px;
}

input,
textarea {
  display: inherit;
}

img {
  max-width: 100%;
}

body {
  font-family: var(--openSans);
  font-weight: normal;
  font-style: normal;
  color: var(--body-color);
  font-size: 16px;
  line-height: 30px;
  overflow-x: hidden;
}

.lh-1 {
  line-height: 1;
}

.bg_cover {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.slick-slide {
  outline: 0;
}

ul.social-link li {
  display: inline-block;
}

.form_group {
  position: relative;
}

.form_control {
  width: 100%;
  padding: 0 20px;
  height: 50px;
  border: none;
}

textarea.form_control {
  padding-top: 15px;
  display: inherit;
}

.loss_damage.hide {
  display: none;

}


.loss_damage.show {
  display: flex;

}

td.available-date a.ui-state-default {
  background:#80d880;

}


.available-date.ui-datepicker-today a.ui-state-default{
  background: #3d4d73;
  color:white;
}

.hide-inner-input-field{
  display: none !important;

}
.ui-widget-header .ui-icon {
  background-image: url(images/ui-icons_444444_256x240.png) !important;
}


.ui-datepicker-inline.ui-datepicker.ui-widget.ui-widget-content.ui-helper-clearfix.ui-corner-all {
  width: 100%;
  margin-top: 8px;
}

.custom_pop .select-dropdown {
  text-align: left;
  width: 100%;
  margin-bottom: 18px;
}
#rentAvailabilty .select-dropdown {
  width: 100%;
  display: inline-block;
}

#rentAvailabilty .modal-dialog {
  max-width: 400px;
} 
.availability-list-element {
  display: inline-block;
  margin-left: 10px;
  width: 12px;
  height: 11px;
  margin-top: 12px;
}
.available-item {
  background-color: #80d880;
}
.unavailable-item {
  background-color: #c5c5c5;
}
ul.info-list {
  word-wrap: break-word;
}
#equipment-list-container li.page-item.active span {
  color: #309341;
  font-weight: 600;
}


@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

.section-title span.sub-title {
  font-size: 18px;
  line-height: normal;
  font-weight: 500;
  display: block;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.section-title span.sub-title span.sub-bg {
  position: relative;
  padding: 5px 10px;
  z-index: 1;
}

.section-title span.sub-title span.sub-bg:before {
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  width: 100%;
  height: 100%;
  background-color: var(--secondary-color);
  z-index: -1;
}

.section-title h2 {
  margin-bottom: 10px;
}

.section-title P {
  padding-top: 10px;
}

.section-title-white h2,
.section-title-white p {
  color: var(--white);
}

/*===== all bg =====*/
.light-bg {
  background-color: var(--light-bg);
}

.light-gray {
  background-color: var(--light-gray);
}

.dark-blue {
  background-color: #180C39;
}

/*===== All Button Style =====*/
button {
  border: none;
}

.main-btn {
  background: #FAD347;
  border-radius: 10px;
  padding: 21px 24px;
  border: 2px solid #FAD347;
  color: #000000;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  font-family: var(--openSans);
}

.main-btn:hover {
  color: var(--heading-color);
}

.btn-grey {
  border: 2px solid #000000;
  background-color: transparent;
}

.main-btn-primary {
  background-color: var(--primary-color);
  color: var(--heading-color);
}

.main-btn-primary:after {
  background-color: var(--white);
}

.main-btn-primary:hover:before {
  background-color: var(--white);
}

.main-btn-primary:hover:after {
  background-color: var(--primary-color);
}

/*
  nice select css
*/
.nice-select {
  width: 100%;
  outline: none;
}

.nice-select.open:after {
  -webkit-transform: none;
  transform: none;
}

.nice-select:after {
  content: "";
  font-family: "Font Awesome 5 Pro";
  right: 20px;
  font-size: 12px;
  font-weight: 400;
  -webkit-transform: none;
  transform: none;
  border: none;
  top: 0;
  margin-top: 0;
  color: #2E2E2E;
}

.nice-select .list {
  width: 100%;
}

/*
  nice number css
*/
.nice-number {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
}

.nice-number input {
  vertical-align: middle;
  -moz-appearance: textfield;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  margin: 0;
  text-align: center;
}

.nice-number input::-webkit-inner-spin-button,
.nice-number input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/*
  search
*/
#search-modal {
  background: rgba(23, 26, 33, 0.85);
}

#search-modal .modal-content {
  background: 0 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
}

#search-modal .modal-content:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

#search-modal .form_control {
  padding-left: 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid #e5e5e5;
  color: var(--white);
  margin-bottom: 0;
  height: 50px;
}

#search-modal .form_control:focus {
  border-color: #fd6350;
}

#search-modal .form_control::-webkit-input-placeholder {
  color: var(--white);
}

#search-modal .form_control::-moz-placeholder {
  color: var(--white);
}

#search-modal .form_control:-ms-input-placeholder {
  color: var(--white);
}

#search-modal .form_control::-ms-input-placeholder {
  color: var(--white);
}

#search-modal .form_control::placeholder {
  color: var(--white);
}

#search-modal .search_btn {
  position: absolute;
  background: transparent;
  top: 10px;
  right: 10px;
  color: var(--white);
}

/*
  start preloader css
*/
.preloader {
  background-color: var(--white);
  bottom: 0;
  height: 100%;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 99999;
}

.lds-ellipsis {
  margin: 0 auto;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 64px;
  text-align: center;
  z-index: 9999;
}

.lds-ellipsis span {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fd6350;
  -webkit-animation: ball-pulse-sync 0.6s 0s infinite ease-in-out;
  animation: ball-pulse-sync 0.6s 0s infinite ease-in-out;
}

.lds-ellipsis span:nth-child(1) {
  -webkit-animation: ball-pulse-sync 0.6s -0.14s infinite ease-in-out;
  animation: ball-pulse-sync 0.6s -0.14s infinite ease-in-out;
}

.lds-ellipsis span:nth-child(2) {
  -webkit-animation: ball-pulse-sync 0.6s -70ms infinite ease-in-out;
  animation: ball-pulse-sync 0.6s -70ms infinite ease-in-out;
}

@-webkit-keyframes ball-pulse-sync {
  33% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

  66% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes ball-pulse-sync {
  33% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

  66% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/*
  end preloader css
*/

/*
  start scroll_up css
*/
.back-to-top {
  background: #FAD347 !important;
  border-radius: 50%;
  bottom: 20px;
  left: 20px;
  color: var(--black);
  cursor: pointer;
  display: none;
  font-size: 20px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  position: fixed;
  text-align: center;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 337;
}

.back-to-top i {
  line-height: 47px;
}

.back-to-top:hover,
.back-to-top:focus {
  background: #070346;
  color: var(--white);
}

/*
  end scroll_up css
*/

/*======================
  End COMMON CSS
======================*/

/*---=======================
  02. Start Header CSS
=======================---*/
header {
  z-index: 1;
}

.transparent-header {
  position: absolute;
  background-color: transparent;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.header-navigation .main-menu ul>li.menu-item-has-children>a:after {
  content: "";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  display: inline-block;
  color: #0C1239;
  font-size: 14px;
  margin-left: 5px;
}

@media (max-width: 767px) {
  .header-navigation .main-menu ul>li.menu-item-has-children>a:after {
    display: none;
  }
}

.header-navigation.breakpoint-on .primary-menu {
  padding: 15px 30px;
}

.header-navigation .nav-menu {
  text-align: right;
  width: 70%;
}

.header-navigation .main-menu ul li {
  display: inline-block;
  position: relative;
}

.header-navigation .main-menu ul li:last-child>a {
  padding-right: 0px;
}

.header-navigation .main-menu ul li>a {
  display: block;
  font-weight: 500;
  font-size: 16px;
  color: #0C1239;
  text-transform: capitalize;
  padding: 41px 20px;
  line-height: 1;
}

.header-navigation .main-menu ul li .sub-menu {
  position: absolute;
  left: 0;
  top: 120%;
  width: 200px;
  background-color: var(--white);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  z-index: 999;
  height: auto;
  text-align: left;
}

.header-navigation .main-menu ul li .sub-menu li {
  display: block;
  margin: 0;
}

.header-navigation .main-menu ul li .sub-menu li:last-child>a {
  border-bottom: none;
}

.header-navigation .main-menu ul li .sub-menu li a {
  display: block;
  padding: 10px 15px;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border-radius: 0;
  line-height: 2;
  margin: 0;
  border-bottom: 1px solid #ececec;
  color: var(--heading-color);
}

.header-navigation .main-menu ul li .sub-menu li a:hover {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: transparent;
}

.header-navigation .main-menu ul li .sub-menu li .sub-menu {
  left: 100%;
  top: 50%;
}

.header-navigation .main-menu ul li .sub-menu li:hover .sub-menu {
  top: 0%;
}

.header-navigation .main-menu ul li .sub-menu li:hover>a {
  background-color: var(--heading-color);
  color: var(--white);
}

.header-navigation .main-menu ul li:hover.menu-item-has-children>a:after {
  color: var(--heading-color);
}

.header-navigation .main-menu ul li:hover>a {
  color: var(--heading-color);
}

.header-navigation .main-menu ul li:hover>.sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.header-navigation .main-menu ul li .dd-trigger {
  display: none;
}

.header-navigation.breakpoint-on .nav-menu .main-menu ul li .dd-trigger {
  display: block;
  position: absolute;
  right: 0;
  height: 42px;
  width: 45px;
  top: 0;
  background-color: #FAD347;
  z-index: 2;
  text-align: center;
  line-height: 45px;
  cursor: pointer;
  color: var(--white);
  font-size: 20px;
}

.header-navigation.breakpoint-on .nav-menu .main-menu ul li .dd-trigger i {
  line-height: 42px;
}

.header-navigation.breakpoint-on .nav-menu {
  text-align: left;
  background-color: var(--white);
  position: fixed;
  top: 0;
  left: -300px;
  z-index: 9999;
  width: 300px;
  height: 100%;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  padding: 0;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  display: block;
  overflow-x: hidden;
  overflow-y: scroll;
  padding-top: 70px;
}

.header-navigation.breakpoint-on .nav-menu.menu-on {
  left: 0;
}

.header-navigation.breakpoint-on .nav-menu .main-menu ul li {
  display: block;
  margin: 0;
}

.header-navigation.breakpoint-on .nav-menu .main-menu ul li:last-child {
  border-bottom: 0;
}

.header-navigation.breakpoint-on .nav-menu .main-menu ul li.active .sub-menu {
  border-top: 1px solid #ececec;
}

.header-navigation.breakpoint-on .nav-menu .main-menu ul li a {
  display: block;
  border-bottom: 1px solid rgba(18, 82, 245, 0.7);
  color: #070346;
  padding: 13px 20px;
}

.header-navigation.breakpoint-on .nav-menu .main-menu ul li .sub-menu {
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
  visibility: visible;
  opacity: 1;
  display: none;
  -webkit-transition: none;
  transition: none;
}

.header-navigation.breakpoint-on .nav-menu .main-menu ul li .sub-menu li a {
  color: #070346;
  padding: 0px 20px 0 40px;
  line-height: 45px;
}

.header-navigation.breakpoint-on .nav-menu .main-menu ul li .sub-menu li a:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.header-navigation.breakpoint-on .nav-menu .main-menu.menu-on {
  left: 0;
}

.header-navigation.breakpoint-on .navbar-close,
.header-navigation.breakpoint-on .navbar-toggler {
  display: block;
}

.header-navigation .navbar-toggler {
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
  display: none;
  margin-left: 10px;
}

.header-navigation .navbar-toggler span {
  position: relative;
  background-color: var(--heading-color);
  border-radius: 3px;
  display: block;
  height: 3px;
  margin-top: 5px;
  padding: 0;
  -webkit-transition-duration: 300ms;
  transition-duration: 300ms;
  width: 30px;
  cursor: pointer;
  display: block;
}

.header-navigation .navbar-toggler.active span:nth-of-type(1) {
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
  transform: rotate3d(0, 0, 1, 45deg);
  top: 8px;
}

.header-navigation .navbar-toggler.active span:nth-of-type(2) {
  opacity: 0;
}

.header-navigation .navbar-toggler.active span:nth-of-type(3) {
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
  transform: rotate3d(0, 0, 1, -45deg);
  top: -8px;
}

.header-navigation .navbar-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 12;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  display: none;
  background: #FAD347;
}

.header-navigation .navbar-close i {
  color: var(--white);
  font-size: 20px;
  line-height: 36px;
}

/* Sticky */
.header-navigation.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  -webkit-animation: sticky 1.2s;
  animation: sticky 1.2s;
}

header .header-navigation.sticky {
  background-color: var(--white);
}

@-webkit-keyframes sticky {
  0% {
    top: -200px;
  }

  100% {
    top: 0;
  }
}

@keyframes sticky {
  0% {
    top: -200px;
  }

  100% {
    top: 0;
  }
}

/* Header Top Bar */
header .header-navigation .primary-menu,
header .container-fluid {
  padding: 0 50px;
}

.header-area-one .header-top-bar {
  background-color: #0C1239;
  padding: 15px 0;
}

.lang-dropdown {
  position: relative;
  display: flex;
}

.lang-dropdown .lang {
  position: absolute;
  top: 50%;
  z-index: 1;
  left: 0;
  transform: translateY(-50%);
}

.lang-dropdown select {
  padding-inline-start: 30px;
  background-color: transparent;
  border: none;
  font-weight: 500;
  font-weight: 16px;
  color: #FFFFFF;
}

.lang-dropdown select option {
  color: var(--primary-color);
}

.lang-dropdown select:focus-visible {
  outline: none;
}

.header-area-one .header-top-bar .lang-dropdown .nice-select:after,
.header-area-one .header-top-bar .lang-dropdown .nice-select {
  color: var(--white);
}

.header-area-one .header-top-bar .lang-dropdown .nice-select .list {
  color: var(--heading-color);
}

.header-area-one .header-top-bar .top-right>ul>li {
  margin-left: 25px;
}

.header-area-two .header-navigation .header-right-nav .cart-button .cart-btn,
.header-area-one .header-top-bar .top-right ul li .cart-btn {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--primary-color);
}

.header-area-two .header-navigation .header-right-nav .cart-button .cart-btn {
  background-color: #272F60;
  margin-right: 25px;
}

.header-area-two .header-navigation .header-right-nav .cart-button .cart-btn span#product-count,
.header-area-one .header-top-bar .top-right ul li .cart-btn span#product-count {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  background-color: var(--primary-color);
  font-size: 12px;
  color: var(--heading-color);
  border-radius: 50%;
}

.header-area-one .dropdown .dropdown-toggle,
.header-area-two .dropdown .dropdown-toggle {
  padding: 0;
  margin: 0;
  background-color: transparent;
  color: #fff;
  font-weight: 500;
}

.header-area-one .dropdown .dropdown-toggle,
.header-area-two .dropdown .dropdown-toggle {
  padding: 0;
  margin: 0;
  background-color: transparent;
  color: #fff;
}

.header-area-two .dropdown .dropdown-toggle {
  color: var(--heading-color);
}

.header-area-one .dropdown-menu,
.header-area-two .dropdown-menu {
  border-radius: 0;
  border: unset;
  box-shadow: 0px 8px 60px rgb(24, 24, 24, .1);
}

.header-area-one .dropdown .dropdown-item:not(:last-child),
.header-area-two .dropdown .dropdown-item:not(:last-child) {
  border-bottom: 1px solid #ececec;
}

.header-area-one .dropdown .dropdown-item,
.header-area-two .dropdown .dropdown-item {
  color: #000;
}

.header-area-two .header-right-nav .user-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* .header-area-one .header-top-bar .top-right ul li a {
  color: var(--white);
} */

.header-area-one .header-top-bar .top-left span {
  color: var(--white);
  margin-right: 25px;
}

.header-area-one .header-top-bar .top-left span i {
  color: var(--primary-color);
}

.header-top-bar .top-left span i {
  margin-right: 5px;
}

.header-area-two .header-top-bar {
  position: relative;
  background-color: #FAFAFA;
  z-index: 1;
  padding: 10px 0;
}

.header-area-two .header-top-bar:before,
.header-area-two .header-top-bar:after {
  position: absolute;
  top: 0;
  content: '';
  height: 100%;
}

.header-area-two .header-top-bar:before {
  left: 0;
  width: 80%;
  background-color: var(--primary-color);
  clip-path: polygon(0 0, 99% 0, 100% 100%, 0% 100%);
  z-index: -1;
}

.header-area-two .header-top-bar:after {
  right: 0;
  width: 22%;
  background-color: var(--heading-color);
  z-index: -2;
}

.header-area-two .header-top-bar .top-left span {
  color: var(--heading-color);
  margin-right: 25px;
}

.header-area-two .header-top-bar .top-right .nice-select:after,
.header-area-two .header-top-bar .top-right .nice-select {
  color: #fff;
}

.header-area-two .header-top-bar .top-right .nice-select .list {
  color: var(--heading-color);
}

.header-area-two .header-top-bar .top-right ul.social-link li {
  margin-left: 15px;
}

.header-area-two .header-top-bar .top-right ul.social-link li a {
  color: var(--white);
}

.header-area-one .header-navigation.breakpoint-on .header-right-nav {
  display: none;
}

.header-area-one .header-navigation.breakpoint-on .nav-menu {
  text-align: left;
}

/* Header Area One */
.header-area-one .primary-menu {
  position: relative;
}

.header-area-one .primary-menu:before,
.header-area-one .primary-menu:after {
  position: absolute;
  top: 0;
  content: '';
  width: 300px;
  height: 100%;
  z-index: -1;
}

.header-area-one .primary-menu:after {
  right: 0;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
}

.header-area-one .primary-menu:before {
  left: 0;
  clip-path: polygon(0 0, 90% 0%, 100% 100%, 0% 100%);
}

.header-area-one .site-branding,
.header-area-two .site-branding {
  max-width: 200px;
}

.header-area-one .header-navigation .nav-menu {
  text-align: center;
}

.header-area-one .header-navigation .header-right-nav ul.social-link li {
  margin-left: 10px;
}

.header-area-one .header-navigation .header-right-nav ul.social-link li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 14px;
  color: var(--white);
  transition: all .3s;
}

@media (max-width: 1300px) and (min-width: 1200px) {
  .header-area-one .header-navigation .header-right-nav ul.social-link li a {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .header-area-one .primary-menu:after {
    width: 200px;
  }

  header .header-navigation .primary-menu,
  header .container-fluid {
    padding: 0 16px;
  }
}

@media (min-width: 1200px) {
  .header-area-two .header-navigation .nav-menu {
    margin-inline-start: -40px;
  }
}

.header-area-one .header-navigation .header-right-nav ul.social-link li a:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

/* Header Area Two */
.header-area-two .header-navigation .header-right-nav .user-info a {
  color: var(--heading-color);
  font-weight: 500;
}

.header-area-two .header-navigation .header-right-nav .user-info a i {
  display: none;
}

.header-area-two .header-navigation .navbar-toggler {
  margin-left: 30px;
}

.header-area-two .header-navigation .navbar-toggler span {
  background-color: var(--heading-color);
}

/*---=======================
  End Header CSS
=======================---*/

/*---=======================
  Start Hero CSS
=======================---*/
.hero-slider-one:hover .slick-arrow {
  visibility: visible;
  opacity: 1;
}

.hero-slider-one:hover .slick-arrow.prev {
  left: 20px;
}

.hero-slider-one:hover .slick-arrow.next {
  right: 20px;
}

.hero-slider-one .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 1;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  color: var(--heading-color);
  background-color: var(--primary-color);
  visibility: hidden;
  opacity: 0;
  transition: all .3s;
}

.hero-slider-one .slick-arrow.prev {
  left: 0;
}

.hero-slider-one .slick-arrow.next {
  right: 0;
}

.single-hero-slider {
  position: relative;
  z-index: 1;
  padding: 245px 0 250px;
}

.single-hero-slider:after {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

.single-hero-slider .hero-content h1 {
  color: var(--white);
  font-size: 64px;
  line-height: 70px;
  margin-bottom: 30px;
}

.single-hero-slider .hero-content p {
  color: var(--white);
  padding: 0 25%;
  margin-bottom: 20px;
}

.single-hero-slider .hero-search-wrapper {
  padding: 25px 30px 5px;
  background: rgba(0, 0, 0, 0.46);
}

.hero-search-wrapper .form_control {
  margin-bottom: 20px;
  color: var(--body-color);
}

.hero-search-wrapper .form_control::placeholder {
  color: var(--body-color);
}

.hero-search-wrapper .nice-select {
  margin-bottom: 20px;
  height: 50px;
  line-height: 50px;
  border-radius: 0px;
  color: var(--body-color);
}

.hero-search-wrapper .search-btn {
  width: 100%;
  height: 50px;
  text-align: center;
  background-color: var(--primary-color);
  font-size: 18px;
  font-weight: 500;
}

.hero-wrapper-two {
  position: relative;
  z-index: 1;
  padding: 180px 0;
}

.hero-wrapper-two:after {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  background: rgb(12, 18, 57);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.83) 23.39%, rgba(12, 18, 57, 0.85) 71.6%);
  z-index: -1;
}

.hero-wrapper-two .hero-content h1 {
  margin-bottom: 20px;
}

.hero-wrapper-two .hero-content p {
  padding-right: 25%;
  margin-bottom: 55px;
}

.hero-wrapper-two .hero-search-wrapper {
  padding: 70px 45px;
  background-color: var(--heading-color);
}

.hero-wrapper-two .hero-search-wrapper h2 {
  color: var(--white);
  margin-bottom: 40px;
}

.hero-wrapper-two .hero-search-wrapper .main-btn {
  width: 100%;
  text-align: center;
  background-color: var(--primary-color);
}

.hero-wrapper-two .hero-search-wrapper .main-btn:hover:before {
  background-color: var(--white);
}

.hero-wrapper-two .hero-search-wrapper .main-btn:hover:after {
  background-color: var(--primary-color);
}

.hero-wrapper-two .hero-search-wrapper .main-btn:after {
  background-color: var(--white);
}

/* breadcrumbs css */
.breadcrumbs-area {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

.breadcrumbs-area:after {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 3, 0.81);
  z-index: -1;
}

.breadcrumbs-area .page-title h1 {
  font-size: 64px;
  line-height: 70px;
  color: var(--white);
  margin-bottom: 20px;
}

.breadcrumbs-area .page-title ul.breadcrumbs-link li:after {
  display: inline-block;
  content: '';
  background: url(../img/chevron-right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  height: 14px;
  width: 7px;
  margin-left: 10px;
  margin-right: 8px;
}

.breadcrumbs-area .page-title ul.breadcrumbs-link li:last-child:after {
  display: none;
}

.breadcrumbs-area .page-title ul.breadcrumbs-link li.active {
  
  color: #309341;
  font-size: 16px;
  font-weight: 400;

}

.breadcrumbs-area .page-title ul.breadcrumbs-link li a {
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
}

/*---========================
  End Hero CSS
========================---*/

/*---========================
  Start About CSS
========================---*/
.about-img-box-one {
  position: relative;
  margin-right: 30px;
  min-height: 680px;
}

.about-img-box-one .about-img {
  position: absolute;
}

.about-img-box-one .about-img-one {
  position: absolute;
  top: 0;
  left: 0;
}

.about-img-box-one .about-img-two {
  right: 0;
  top: 50px;
  min-width: 180px;
  max-width: 180px;
  height: 180px;
}

.about-img-box-one .about-img-three img,
.about-img-box-one .about-img-two img {
  width: 100%;
  border-radius: 50%;
}

.about-img-box-one .about-img-three {
  left: 85px;
  bottom: 0;
  min-width: 130px;
  max-width: 130px;
  height: 130px;
}

.about-img-box-one .about-img-four {
  bottom: 50px;
  right: 10px;
  max-width: 365px;
  max-height: 356px;
}

.about-img-box-one .about-img-four:after {
  position: absolute;
  content: '';
  bottom: -10px;
  right: -10px;
  background-color: var(--primary-color);
  width: 100%;
  height: 100%;
  z-index: -1;
}

.about-content-box-one p {
  margin-bottom: 5px;
}

.about-content-box-one .block-quote {
  padding-left: 20px;
  position: relative;
  margin-bottom: 60px;
}

.about-content-box-one .block-quote:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  content: '';
  background-color: var(--primary-color);
}

.about-content-box-one .block-quote:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 20px;
  content: '';
  background-color: var(--secondary-color);
}

.about-content-box-one .block-quote h5 {
  font-size: 18px;
  line-height: 28px;
  font-style: italic;
  font-weight: 400;
}

.about-content-box-two p {
  margin-bottom: 25px;
}

.about-content-box-two ul.list li {
  padding-left: 35px;
  position: relative;
  z-index: 1;
  line-height: 13px;
  margin-bottom: 20px;
}

.about-content-box-two ul.list li:before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 10px;
  height: 10px;
  background-color: var(--primary-color);
  vertical-align: middle;
  margin-right: 15px;
}

.about-content-box-two ul.list li:after {
  position: absolute;
  bottom: 3px;
  left: 4px;
  content: '';
  width: 6.5px;
  height: 6.5px;
  background-color: var(--heading-color);
}

.about-img-box-two .about-img {
  margin-bottom: 30px;
}

/*---========================
  End About CSS
========================---*/

/*---========================
  Start Work-Process CSS
========================---*/
.process-column:last-child .process-item-one:after {
  display: none;
}

.process-item-one {
  position: relative;
}

.process-item-one:after {
  position: absolute;
  right: -90%;
  top: 40%;
  content: '';
  transform: translateY(-50%);
  width: 80%;
  height: 100%;
  background: url(../img/curve.png) no-repeat center;
  background-size: contain;
}

.process-item-one .count-box {
  position: relative;
  background-color: #0C1239;
  min-height: 135px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.process-item-one .count-box .icon {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  border: 3px solid var(--white);
}

.process-item-one .count-box .icon i {
  font-size: 24px;
  line-height: 1;
  color: var(--heading-color);
}

.process-item-one .count-box .process-count {
  padding-top: 20px;
  font-size: 60px;
  font-weight: 700;
}

.process-item-one .content h4 {
  font-weight: 500;
}

.process-item-two {
  position: relative;
}

.process-item-two .count-box .process-count {
  font-size: 100px;
  -webkit-text-stroke: 1px #c4c4c4;
  -webkit-text-fill-color: #fff;
  font-weight: 700;
  line-height: 75px;
  margin-bottom: 20px;
}

.process-item-two .count-box .icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--primary-color);
  margin: auto;
  margin-bottom: 20px;
}

.process-item-two .count-box .icon i {
  font-size: 20px;
  color: var(--heading-color);
}

.process-item-two .content {
  padding: 0 15px;
}

.process-item-two .content h5 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
}

.process-column .process-item-two {
  position: relative;
}

.process-column .process-item-two:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 1px;
  background-color: var(--bc);
  top: 62%;
  transform: translateY(-62%);
  right: 0;
  z-index: -1;
}

/*---========================
  End Work-Process CSS
========================---*/

/*---========================
  Start Features CSS
========================---*/
.features-item-one {
  border: 1px solid var(--bc);
  padding: 50px 60px 43px;
  transition: all .3s;
}

.features-item-one .icon {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #E7E7ED;
  margin-bottom: 20px;
  transition: all .4s;
}

.features-item-one .icon i {
  font-size: 34px;
  line-height: 1;
  color: var(--heading-color);
}

.features-item-one:hover {
  box-shadow: 0px 4px 18px 10px rgba(0, 0, 0, 0.02);
}

.features-item-one:hover .icon {
  background-color: var(--primary-color);
  border-radius: 30px 0px 30px 30px;
}

.features-item-one .content h4 {
  margin-bottom: 20px;
}

.features-item-two {
  background-color: transparent;
  padding: 50px;
  transition: all .3s;
}

.features-item-two.active-item,
.features-item-two:hover {
  background-color: rgba(255, 255, 255, 0.04);
}

.features-item-two.active-item .icon,
.features-item-two:hover .icon {
  background-color: var(--primary-color);
  color: var(--heading-color);
  transform: none;
}

.features-item-two.active-item .icon i,
.features-item-two:hover .icon i {
  transform: matrix(1, 0, 0, 1, 0, 0);
}

.features-item-two.active-item .content .btn-link,
.features-item-two:hover .content .btn-link {
  color: var(--primary-color);
}

.features-item-two .icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px 0px 30px 30px;
  transform: matrix(1, 0, 0, -1, 0, 0);
  margin: auto;
  background-color: #ffffff0a;
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 25px;
  transition: all .3s;
}

.features-item-two .icon i {
  transform: matrix(1, 0, 0, -1, 0, 0);
}

.features-item-two .content h4 {
  margin-bottom: 15px;
}

.features-item-two .content h4,
.features-item-two .content p {
  color: var(--white);
}

.features-item-two .content .btn-link {
  color: var(--white);
  font-size: 22px;
}

/*---========================
  End Features CSS
========================---*/

/*---========================
  Start Counter CSS
========================---*/
.counter-column:nth-child(odd) .counter-item-one .icon {
  border-radius: 30px 0px 30px 30px;
}

.counter-column:nth-child(even) .counter-item-one .icon {
  border-radius: 30px 30px 30px 0px;
}

.counter-item-one .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  background: #FBA31C;
  margin: auto;
  margin-bottom: 23px;
}

.counter-item-one .icon i {
  line-height: 1;
  color: var(--heading-color);
  font-size: 30px;
}

.counter-item-one .content h2 {
  color: var(--primary-color);
  font-weight: 500;
  font-size: 40px;
  line-height: 55px;
  margin-bottom: 15px;
}

.counter-item-one .content h5 {
  color: var(--white);
  font-weight: 500;
  font-size: 18px;
}

.bg-with-overlay.bg-with-overlay-white:after {
  background-color: rgba(255, 255, 255, 0.9);
  ;
}

.counter-item-two .icon {
  position: relative;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px 0px 0px 0px;
  font-size: 42px;
  color: var(--heading-color);
  background-color: var(--primary-color);
  margin: auto;
  margin-bottom: 30px;
}

.counter-item-two .icon:after {
  position: absolute;
  bottom: 0;
  right: 0;
  content: '';
  width: 20px;
  height: 20px;
  background-color: var(--heading-color);
}

.counter-item-two .content h2 {
  font-weight: 700;
  margin-bottom: 10px;
}

/*---========================
  End Counter CSS
========================---*/

/*---==========================
  Start Equipments Pricing CSS
==========================---*/
ul.rating li {
  display: inline-block;
}

ul.rating li i {
  color: #FBA31C;
}

.pricing-nav-filter .nav-tabs {
  justify-content: center;
  border-bottom: none;
}

.pricing-nav-filter .nav-link {
  border: 1px solid var(--bc);
  border-radius: 0px;
  margin-bottom: 0px;
  margin-left: 10px;
  margin-right: 10px;
  font-size: 14px;
  line-height: 27px;
  font-weight: 500;
  padding: 8px 20px;
}

.pricing-nav-filter .nav-link.active {
  border-color: var(--bc);
}

.pricing-nav-filter .nav-link.active,
.pricing-nav-filter .nav-link:hover {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: transparent;
}

.pricing-item.pricing-item-one .pricing-info .price-info,
.pricing-item.pricing-item-three .pricing-info .price-info {
  padding: 16px 100px 10px 25px;
}

.pricing-item .pricing-info .price-info {
  position: relative;
  padding: 22px 100px 16px 25px;
}

.pricing-item .pricing-info .price-info .price-tag {
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
}

.pricing-item .pricing-info .pricing-body .price-option span.span-btn {
  font-weight: 500;
  font-size: 12px;
  line-height: 27px;
  color: #0C1239;
}

.pricing-item .pricing-info .pricing-body ul.info-list li:before {
  display: inline-block;
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--heading-color);
  margin-right: 10px;
}

Home .pricing-item .pricing-info .pricing-body span.delivary {
  font-size: 14px;
  font-weight: 500;
  line-height: 27px;
}

.pricing-item-one .pricing-info {
  background-color: var(--light-bg);
}

Home .pricing-item-one .pricing-info .price-info {
  border-bottom: 1px solid var(--bc);
}

.pricing-item-one .pricing-info .price-info h5,
.pricing-item-three .pricing-info .price-info h5 {
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 5px;
}

.pricing-item-one .pricing-info .price-info span,
.pricing-item-three .pricing-info .price-info span {
  font-size: 14px;
  line-height: normal;
  display: block;
}

.pricing-item-one .pricing-info .price-info .price-tag {
  background-color: var(--primary-color);
}

.pricing-item-one .pricing-info .pricing-body {
  padding: 16px 0 0;
}

.pricing-item-one .pricing-info .pricing-body h5.title {
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 5px;
}

.pricing-area .pricing-item.pricing-item-one .pricing-info .pricing-body .more-feature-link {
  line-height: 1;
  padding-top: 12px;
}

.pricing-item-one .pricing-info .pricing-body .price-option span.span-btn {
  background-color: #E7E7ED;
  padding: 4px 12px;
  margin-bottom: 15px;
}

.pricing-item-one .pricing-info .pricing-body span.delivary {
  color: var(--heading-color);
}

.pricing-item.pricing-item-one .pricing-info .pricing-body span.delivary {
  line-height: 1;
}

.pricing-item-one .pricing-info .pricing-body ul.info-list {
  margin-top: 15px;
  text-align: left;
  padding-inline-start: 20px;
}

.pricing-item-one .pricing-info .pricing-body .price-option span.span-btn.active-btn {
  background-color: var(--primary-color);
  color: var(--white);
}

.pricing-item-one .pricing-info .pricing-body,
.pricing-item-one .pricing-info .pricing-bottom {
  /* text-align: center; */
}

.pricing-item-one .pricing-info .pricing-bottom {
  padding: 24px 20px 30px;
  border-top: 1px solid var(--bc);
}

.pricing-item-one .pricing-info .pricing-bottom .rating {
  margin-bottom: 31px;
}

/* pricing two */
.pricing-item-two .pricing-info {
  background-color: #FAFAFA;
}

.pricing-item-two .pricing-info .price-info {
  background-color: #0C1239;
}

.pricing-item-two .pricing-info .price-info h5.title {
  color: var(--white);
  margin-bottom: 5px;
}

.pricing-item-two .pricing-info .price-info span {
  color: var(--white);
}

.pricing-item-two .pricing-info .price-info .price-tag {
  background-color: #211641;
}

.pricing-item-two .pricing-info .price-info .price-tag h4 {
  color: var(--white);
}

.pricing-item-two .pricing-info .pricing-body .price-option {
  display: flex;
  justify-content: center;
  text-align: center;
}

.pricing-item-two .pricing-info .pricing-body .price-option span.span-btn {
  padding: 4px 0;
  flex: 0 0 auto;
  width: 33.33%;
  margin-bottom: 15px;
  background-color: var(--primary-color);
}

.pricing-item-two .pricing-info .pricing-body .price-option span.span-btn.active-btn {
  background-color: #EE9308;
}

.pricing-item-two .pricing-info .pricing-body .info-list li {
  padding: 10px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 14px;
}

.pricing-item-two .pricing-info .pricing-body span.delivary {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 15px 0;
  padding-inline-start: 20px;
  color: var(--heading-color);
}

.pricing-item-two .pricing-info .pricing-body span.delivary>a:first-child {
  padding-inline-end: 10px;
  border-inline-end: 1px solid #dfdfdf;
}

.pricing-item-two .pricing-info .pricing-bottom {
  background-color: #0C1239;
  text-align: center;
  padding: 35px 40px 40px;
}

.pricing-item-two .pricing-info .pricing-bottom ul.rating {
  margin-bottom: 32px;
}

.pricing-item-two .pricing-info .pricing-bottom ul.rating li span {
  color: var(--white);
}

.pricing-item-two {
  position: relative;
  overflow: hidden;
}

/* pricing list section css */
.equipments-search-filter {
  overflow: hidden;
}

.equipments-search-filter .search-filter-form {
  background-color: var(--heading-color);
  padding: 25px 30px;
}

.equipments-search-filter .search-filter-form .form_control {
  height: 50px;
}

.equipments-search-filter .search-filter-form .nice-select {
  height: 50px;
  line-height: 50px;
  border-radius: 0px;
}

.equipments-search-filter .search-filter-form .search-btn {
  width: 100%;
  text-align: center;
  padding: 10px 30px;
  font-size: 18px;
  font-weight: 500;
  background-color: var(--primary-color);
}

.pricing-item-three {
  display: flex;
  align-items: stretch;
  background-color: #FAFAFA;
  border: 1px solid #e9e9ee;
}

.pricing-item-three .pricing-img {
  position: relative;
  overflow: hidden;
  max-width: 276px;
  width: 100%;
}

.pricing-item-three .pricing-img img {
  width: 100%;
  height: 100%;
}

.pricing-item-three .pricing-img span.discount {
  background-color: var(--primary-color);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--heading-color);
  position: absolute;
  top: 20px;
  left: 20px;
}

.pricing-item-three .pricing-info {
  width: 100%;
  border-inline-start: 1px solid #e9e9ee;
  border-left: 0;
  padding-bottom: 30px;
}

.pricing-item-three .pricing-info .price-info {
  border-bottom: 1px solid var(--bc);
}

.pricing-item-three .pricing-info .price-info h5 {
  font-weight: 500;
  font-size: 18px;
}

.pricing-item-three .pricing-info .price-info span {
  font-size: 14px;
}

.pricing-item-three .pricing-info .price-info .price-tag {
  background-color: var(--primary-color);
}

.pricing-item-three .pricing-info .pricing-body {
  padding: 15px 30px;
}

.pricing-item-three .pricing-info .pricing-body h3.title {
  font-size: 24px;
  line-height: 27px;
  margin-bottom: 15px;
}

.pricing-item-three .pricing-info .pricing-body .vendor-name {
  margin-bottom: 15px;
}

.vendor-name a:hover {
  color: var(--primary-color);
}

.pricing-item-three .pricing-info .pricing-body .price-option span.span-btn {
  background-color: #E7E7ED;
  padding: 4px 20px;
  margin-bottom: 15px;
  margin-right: 5px;
}

.pricing-item-three .pricing-info .pricing-body span.delivary {
  color: var(--heading-color);
  margin-bottom: 15px;
}

.pricing-item-three .pricing-info .pricing-bottom {
  padding: 0 30px;
}

/* sidebar css */
.sidebar-widget-area .widget.equipment-categories ul.list li {
  line-height: 20px;
  margin-bottom: 10px;
}

.sidebar-widget-area .widget.equipment-categories ul.list li a:hover,
.sidebar-widget-area .widget.equipment-categories ul.list li a.active {
  color: var(--primary-color);
}

.sidebar-widget-area .widget.price-range-widget .ui-widget.ui-widget-content {
  border: none;
  background: #DFDADA;
  height: 8px;
  border-radius: 100px;
}

.sidebar-widget-area .widget.price-range-widget .ui-slider .ui-slider-range {
  background-color: var(--primary-color);
  border-radius: 0px;
}

.sidebar-widget-area .widget.price-range-widget .ui-widget-content .ui-state-default {
  background: var(--primary-color);
  border: none;
  width: 15px;
  height: 15px;
  outline: none;
  border-radius: 50%;
}

.sidebar-widget-area .widget.price-range-widget .price-number {
  justify-content: space-between;
}

.sidebar-widget-area .widget.price-range-widget .price-number span {
  font-weight: 500;
  font-size: 14px;
}

.sidebar-widget-area .widget.price-range-widget .price-number span.text {
  width: 60%;
}

.sidebar-widget-area .widget.price-range-widget .price-number span.amount {
  width: 80%;
}

.sidebar-widget-area .widget.price-range-widget .price-number span.amount input {
  width: 100%;
  border: none;
  background-color: transparent;
  font-weight: 500;
  font-size: 14px;
  color: var(--body-color);
}

/* pricing details */
.equipment-slider-wrap {
  width: 75%;
}

.equipment-gallery-arrow {
  width: 25%;
}

.equipment-gallery-arrow .slick-dots.overflow {
  max-height: calc(498px - 15px);
  overflow-x: hidden;
  overflow-Y: scroll;
}

.equipment-gallery-arrow .slick-dots.overflow::-webkit-scrollbar {
  width: 5px;
}

.equipment-gallery-arrow .slick-dots.overflow::-webkit-scrollbar-track {
  background: #f2f2f2;
}

.equipment-gallery-arrow .slick-dots.overflow::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 6px;
}

.equipment-gallery-arrow ul.slick-dots li {
  display: block;
  margin-bottom: 15px;
  background: transparent !important;
  margin-inline-start: 0;
}

.equipment-gallery-arrow ul.slick-dots li:last-child {
  margin-bottom: 0px;
}

.equipment-gallery-arrow ul.slick-dots li img {
  width: 100%;
}

.equipment-slider-wrap {
  margin-inline-end: 30px;
}

.equipment-gallery-slider .single-gallery-item a {
  display: block;
}

.equipment-gallery-slider .single-gallery-item img {
  width: 100%;
}

.equipment-gallery-slider .slick-arrow {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
  background-color: var(--primary-color);
  color: var(--heading-color);
}

.equipment-gallery-slider .slick-arrow.prev {
  left: 0;
}

.equipment-gallery-slider .slick-arrow.next {
  right: 0;
}

.description-wrapper h3.title {
  margin-bottom: 20px;
}

.description-wrapper .voucher-btn {
  padding: 12px 35px;
  background-color: #FFF0D9;
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 55px;
}

.description-wrapper .voucher-btn i {
  margin-right: 10px;
}

.description-wrapper .features-content-box .content-table .table td {
  padding: 10px 30px;
  border: 1px solid var(--bc);
}

.equipement-sidebar-info .booking-form .price-info {
  position: relative;
  padding: 10px 100px 10px 30px;
  background-color: var(--heading-color);
}

.equipement-sidebar-info .booking-form .price-info .price-tag {
  background-color: var(--primary-color);
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
}

.equipement-sidebar-info .booking-form .price-info .price-tag h4 span {
  font-size: 24px;
  color: var(--heading-color);
}

.equipement-sidebar-info {
  background-color: #F8F8F8;
}

.equipement-sidebar-info .booking-form .price-info span,
.equipement-sidebar-info .booking-form .price-info h5 {
  color: var(--white);
}

.equipement-sidebar-info .booking-form .price-info h5 {
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
}

.equipement-sidebar-info .booking-form .price-info span {
  font-size: 14px;
}

.equipement-sidebar-info .booking-form .pricing-body {
  padding: 35px 25px;
}

.equipement-sidebar-info .booking-form .pricing-body .price-option span.span-btn {
  background-color: #E7E7ED;
  font-weight: 500;
  font-size: 12px;
  line-height: 27px;
  color: #0C1239;
  padding: 4px 12px;
  margin-bottom: 5px;
}

.equipement-sidebar-info .booking-form .pricing-body .price-option span.span-btn:not(:last-child) {
  margin-inline-end: 2px;
}

.equipement-sidebar-info .booking-form .pricing-body .form_group {
  clear: both;
  padding: 30px 0;
  border-bottom: 1px solid var(--bc);
}

.equipement-sidebar-info .booking-form .pricing-body .nice-select {
  background-color: transparent;
  padding: 0;
  border: none;
  height: auto;
  line-height: 1;
  float: none;
}

.equipement-sidebar-info .booking-form .pricing-body .nice-select:after {
  right: 0;
}

.equipement-sidebar-info .booking-form .pricing-body p.available-text {
  color: #019657;
}

.equipement-sidebar-info .booking-form .pricing-body p.available-text i {
  margin-right: 10px;
}

.price-option-table ul .single-price-option .single-method input,
.equipement-sidebar-info .booking-form .pricing-body .reserved-filter .single-method input {
  display: none;
}

.equipement-sidebar-info .booking-form .pricing-body .reserved-filter .single-method input:checked+label::before {
  border-color: transparent;
  background-color: var(--primary-color);
}

.equipement-sidebar-info .booking-form .pricing-body .reserved-filter .single-method label {
  margin-bottom: 0px;
  line-height: 15px;
  line-height: 16px;
  font-size: 14px;
}

.equipement-sidebar-info .booking-form .pricing-body .reserved-filter .single-method label:before {
  display: inline-block;
  content: '';
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1.5px solid var(--body-color);
  margin-right: 10px;
}

.equipement-sidebar-info .booking-form .price-option-table ul .single-price-option .single-method {
  justify-content: space-between;
  margin-bottom: 15px;
}

.equipement-sidebar-info .booking-form .price-option-table ul .single-price-option .single-method label {
  margin-bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #0C1239;
}

.equipement-sidebar-info .booking-form .price-option-table ul .single-price-option .single-method label span.title {
  line-height: 1;
  position: relative;
}

.equipement-sidebar-info .booking-form .price-option-table ul .single-price-option .single-method label span.title:before {
  display: inline-block;
  content: '';
  width: 15px;
  height: 15px;
  border: 1px solid var(--heading-color);
  margin-right: 10px;
  border-radius: 2px;
}

.equipement-sidebar-info .booking-form .price-option-table ul .single-price-option .single-method label span.title:after {
  position: absolute;
  top: 2px;
  left: 2px;
  content: '\f00c';
  font-family: 'Font Awesome 5 Pro';
  font-size: 12px;
  visibility: hidden;
  opacity: 0;
  transition: all .3s;
}

.equipement-sidebar-info .booking-form .price-option-table ul .single-price-option .quantity-total-price span.price,
.equipement-sidebar-info .booking-form .price-option-table ul .single-price-option .single-method label span.price {
  line-height: 25px;
  font-weight: 500;
  color: var(--heading-color);
}

.equipement-sidebar-info .booking-form .price-option-table ul .single-price-option .quantity-total-price span.title {
  color: var(--heading-color);
}

.equipement-sidebar-info .booking-form .price-option-table ul .single-price-option .single-method input:checked+label span.title:after {
  visibility: visible;
  opacity: 1;
}

.equipement-sidebar-info .booking-form .price-option-table ul .single-price-option .quantity-total-price .quantity-input,
.products-details-section .products-details-wrapper .quantity-input {
  display: flex;
  align-items: center;
  margin-bottom: 21px;
}

.equipement-sidebar-info .booking-form .price-option-table ul .single-price-option .quantity-total-price .quantity-down,
.equipement-sidebar-info .booking-form .price-option-table ul .single-price-option .quantity-total-price #quantity,
.equipement-sidebar-info .booking-form .price-option-table ul .single-price-option .quantity-total-price .quantity-up,
.products-details-section .products-details-wrapper .quantity-input .quantity-down,
.products-details-section .products-details-wrapper .quantity-input #product-quantity,
.products-details-section .products-details-wrapper .quantity-input .quantity-up {
  width: 30px;
  height: 30px;
  text-align: center;
  border: 1px solid var(--bc);
  cursor: pointer;
}

.equipement-sidebar-info .booking-form .price-option-table ul .single-price-option .quantity-total-price .quantity-down,
.products-details-section .products-details-wrapper .quantity-input .quantity-down {
  border-right: none;
}

.equipement-sidebar-info .booking-form .price-option-table ul .single-price-option .quantity-total-price .quantity-up,
.products-details-section .products-details-wrapper .quantity-input .quantity-up {
  border-left: none;
}

.equipement-sidebar-info .booking-form .price-option-table ul .single-price-option .quantity-total-price .quantity-up {
  margin-right: 20px;
}

.equipement-sidebar-info .booking-form .price-option-table ul .single-price-option span.title {
  display: block;
}

.equipement-sidebar-info .booking-form .price-option-table ul .single-price-option span.title span.amount {
  float: right;
}

.equipement-sidebar-info .booking-form .price-option-table ul .single-price-option span.title,
.equipement-sidebar-info .booking-form .pricing-body .form_group .input-wrap label {
  font-weight: 500;
  color: var(--heading-color);
}

/*---==========================
  End Equipments Pricing CSS
==========================---*/

/*---========================
  Start Testimonial CSS
========================---*/
.testimonial-area .testimonial-slider-one .slick-dots {
  line-height: 1;
}

.testimonial-item-one {
  padding: 50px 40px 45px;
  background-color: var(--white);
}

.testimonial-item-one .testimonial-content .quote {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #E7E7ED;
  margin-bottom: 33px;
}

.testimonial-item-one .testimonial-content .quote i {
  font-size: 25px;
  color: var(--heading-color);
}

.testimonial-item-one .testimonial-content p {
  margin-bottom: 32px;
}

.testimonial-item-one .testimonial-content h5 {
  font-size: 18px;
  font-weight: 500;
}

.testimonial-item-one .testimonial-content h5 span {
  color: rgba(12, 18, 57, 0.4);
}

.testimonial-item-two .testimonial-content {
  position: relative;
  background-color: #211641;
  padding: 30px 35px 33px;
  margin-bottom: 55px;
}

.testimonial-item-two .testimonial-content:after {
  position: absolute;
  bottom: -25px;
  left: 30px;
  content: '';
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-top: 25px solid #211641;
}

.testimonial-item-two .testimonial-content .quote i {
  color: rgba(255, 255, 255, 0.05);
  font-size: 55px;
  line-height: 1;
}

.testimonial-item-two .testimonial-content p {
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

.testimonial-item-two .testimonial-thumb-title {
  padding-left: 35px;
}

.testimonial-item-two .testimonial-thumb-title .thumb {
  min-width: 65px;
  max-width: 65px;
  height: 65px;
  margin-right: 20px;
}

.testimonial-item-two .testimonial-thumb-title .thumb img {
  width: 100%;
  border-radius: 50%;
}

.testimonial-item-two .testimonial-thumb-title .title h4,
.testimonial-item-two .testimonial-thumb-title .title span {
  color: var(--white);
}

/*---========================
  End Testimonial CSS
========================---*/

/*---========================
  Start CTA CSS
========================---*/
.bg-with-overlay {
  position: relative;
  z-index: 1;
}

.bg-with-overlay:after {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(12, 18, 57, 0.87);
}

.content-white h2,
.content-white h4 {
  color: #fff;
}

.cta-content-box-one h2 {
  margin-bottom: 25px;
}

.cta-content-box-one h4 {
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 47px;
}

/*---========================
  End CTA CSS
========================---*/

/*---========================
  Start Blog CSS
========================---*/
.blog-arrows-one {
  display: flex;
  justify-content: flex-end;
}

.blog-arrows-one .slick-arrow {
  width: 40px;
  height: 40px;
  background-color: var(--secondary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s;
}

.blog-arrows-one .slick-arrow:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.blog-arrows-one .slick-arrow.prev {
  margin-right: 15px;
}

.post-meta ul li {
  display: inline-block;
}

.post-meta ul li span i {
  margin-right: 10px;
}

.blog-post-item-one:hover .entry-content:after {
  background-color: var(--primary-color);
}

.blog-post-item-one .post-thumbnail {
  position: relative;
}

.blog-post-item-one .post-thumbnail .cat-btn {
  position: absolute;
  bottom: -20px;
  left: 20px;
  z-index: 1;
  background-color: var(--primary-color);
  padding: 10px 25px;
  color: var(--heading-color);
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 500;
  line-height: 20px;
  clip-path: polygon(0 0, 95% 0, 100% 100%, 5% 100%);
}

.blog-post-item-one .entry-content {
  position: relative;
  padding: 45px 40px 25px;
  background-color: var(--light-bg);
}

.blog-post-item-one .entry-content:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 5px;
  background-color: rgba(119, 119, 119, 0.2);
  transition: all .3s;
}

.blog-post-item-one .entry-content .post-meta ul li {
  margin-bottom: 13px;
}

.blog-post-item-one .entry-content .post-meta ul li span {
  margin-right: 20px;
}

.blog-post-item-one .entry-content .post-meta ul li span a:hover {
  color: var(--primary-color);
}

.blog-post-item-one .entry-content .post-meta ul li span i {
  color: var(--primary-color);
}

.blog-post-item-one .entry-content h3.title {
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 12px;
}

.blog-post-item-one .entry-content h3.title:hover {
  color: var(--primary-color);
}

.blog-post-item-one .entry-content p {
  margin-bottom: 15px;
}

.blog-post-item-one .entry-content .btn-link {
  color: #0C1239;
  font-weight: 500;
}

.blog-post-item-one .entry-content .btn-link:hover {
  text-decoration: none;
}

.blog-post-item-two .post-thumbnail {
  position: relative;
}

.blog-post-item-two .post-thumbnail .category {
  position: absolute;
  bottom: -30px;
  left: 30px;
  padding: 10px 15px;
  border: 4px solid #FFFFFF;
  border-bottom: none;
  border-radius: 30px 0px 0px 0px;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--heading-color);
  font-size: 14px;
  font-weight: 500;
}

.blog-post-item-two .post-thumbnail .category::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 4px;
  background-color: var(--heading-color);
  bottom: 0;
  left: 0;
}

.blog-post-item-two .entry-content {
  padding: 55px 40px 30px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-top: none;
}

.blog-post-item-two .entry-content h3.title {
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 10px;
}

.blog-post-item-two .entry-content h3.title:hover {
  color: var(--primary-color);
}

.blog-post-item-two .entry-content .post-meta {
  margin-bottom: 10px;
}

.blog-post-item-two .entry-content .post-meta ul li:last-child {
  margin-left: 25px;
}

.blog-post-item-two .entry-content .post-meta ul li span {
  font-size: 14px;
  margin-bottom: 10px;
}

.blog-post-item-two .entry-content .post-meta ul li span i {
  color: var(--primary-color);
}

.blog-post-item-two .entry-content .main-btn {
  padding: 7px 22px;
  font-size: 14px;
}

/* Blog Details CSS */
.blog-details-wrapper .blog-post-item .post-thumbnail {
  margin-bottom: 25px;
}

.blog-details-wrapper .blog-post-item .post-thumbnail img {
  width: 100%;
}

.blog-details-wrapper .blog-post-item .entry-content .post-meta ul li {
  margin-right: 20px;
}

.blog-details-wrapper .blog-post-item .entry-content .post-meta ul li i {
  color: var(--primary-color);
}

.blog-details-wrapper .blog-post-item .entry-content h3 {
  font-size: 40px;
  line-height: 50px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.blog-details-wrapper .blog-post-item .entry-content p {
  margin-bottom: 20px;
}

.blog-share ul li {
  margin-right: 15px;
}

.blog-share ul li a {
  color: var(--white);
  padding: 7px 20px;
  border-radius: 30px;
}

.blog-share ul li a.facebook {
  background-color: #275baa;
}

.blog-share ul li a.twitter {
  background-color: #28c8f0;
}

.blog-share ul li a.linkedin {
  background-color: #0e76a8;
}

.blog-share ul li a i {
  margin-right: 10px;
}

/* sidebar css */
.sidebar-widget-area .widget {
  padding: 25px 30px 30px;
  background-color: #F8F8F8;
  ;
}

.sidebar-widget-area .widget h4.widget-title {
  position: relative;
  font-weight: 500;
  margin-bottom: 25px;
  padding-bottom: 15px;
}

.sidebar-widget-area .widget h4.widget-title:after {
  position: absolute;
  bottom: 0;
  left: 0%;
  content: '';
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
}

.sidebar-widget-area .widget.search-widget .form_control {
  height: 60px;
}

.sidebar-widget-area .widget.search-widget .search-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  color: var(--heading-color);
  background-color: var(--primary-color);
}

.sidebar-widget-area .widget.categories-widget ul.widget-link li {
  padding-bottom: 10px;
  border-bottom: 1px dashed #e5e5e5;
  margin-bottom: 10px;
}

.sidebar-widget-area .widget.categories-widget ul.widget-link li:last-child {
  margin-bottom: 0px;
  padding-bottom: 0px;
  border-bottom: none;
}

.sidebar-widget-area .widget.categories-widget ul.widget-link li a {
  display: block;
  color: #3a416f;
  font-weight: 500;
  font-size: 18px;
}

.sidebar-widget-area .widget.categories-widget ul.widget-link li a span {
  float: right;
}

.sidebar-widget-area .widget.categories-widget ul.widget-link li a:hover,
.sidebar-widget-area .widget.categories-widget ul.widget-link li a.active,
.sidebar-widget-area .widget.product-categories ul.widget-nav li a:hover,
.sidebar-widget-area .widget.product-categories ul.widget-nav li a.active {
  color: var(--primary-color);
}

.sidebar-widget-area .widget.filter-products ul.filter-products-list li div,
.sidebar-widget-area .widget.filter-pricing-type .filter-pricing-list li div {
  transition: all 0.3s ease-out 0s;
}

.sidebar-widget-area .widget.filter-products ul.filter-products-list li div:hover,
.sidebar-widget-area .widget.filter-products ul.filter-products-list li div.active,
.sidebar-widget-area .widget.filter-pricing-type .filter-pricing-list li div:hover,
.sidebar-widget-area .widget.filter-pricing-type .filter-pricing-list li div.active {
  color: var(--primary-color);
}

/*---========================
  End Blog CSS
========================---*/

/*---========================
  Start Sponsor CSS
========================---*/
.sponsor-slider-one .slick-track {
  display: flex;
  align-items: center;
}

.sponsor-item-one {
  padding: 0 20px;
}

.sponsor-item img {
  margin: auto;
}

.sponsor-slider-two {
  margin-left: -15px;
  margin-right: -15px;
}

.sponsor-item-two {
  margin-left: 15px;
  margin-right: 15px;
}

.sponsor-item-two a {
  display: block;
  background-color: #FAFAFA;
  padding: 25px 50px;
}

.sponsor-item-two a:hover {
  background-color: var(--primary-color);
}

.sponsor-item.slick-slide {
  text-align: center;
}

/*---========================
  End Sponsor CSS
========================---*/

/*---========================
  Start Newsletter CSS
========================---*/
.newsletter-wrapper-one {
  position: relative;
  padding: 50px 30px;
  background-color: var(--primary-color);
  transform: skewX(-10deg);
  margin-bottom: -120px;
  position: relative;
  z-index: 2;
}

.newsletter-wrapper-one:after {
  position: absolute;
  top: -50px;
  left: -24px;
  content: '';
  width: 70px;
  height: 175px;
  z-index: -1;
  background: #D38307;
  clip-path: polygon(35% 31%, 34% 100%, 0% 100%);
}

.newsletter-wrapper-one .newsletter-content-box {
  transform: skewX(10deg);
}

.newsletter-wrapper-one .newsletter-form .form_control {
  padding: 0 40px;
  height: 70px;
  clip-path: polygon(2% 0, 100% 0%, 98% 100%, 0% 100%);
}

.newsletter-wrapper-one .newsletter-form .newsletter-btn {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #0C1239;
  padding: 20px 40px;
  color: var(--white);
  clip-path: polygon(5% 0, 100% 0%, 95% 100%, 0% 100%);
}

.newsletter-wrapper-two {
  position: relative;
  z-index: 1;
}

.newsletter-wrapper-two:after {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(251, 163, 28, 0.9);
  z-index: -1;
}

.newsletter-wrapper-two .newsletter-content-box .form_control {
  height: 70px;
}

.newsletter-wrapper-two .newsletter-content-box .newsletter-btn {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 21px 40px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

/*---========================
  End Newsletter CSS
========================---*/

/*---====================
  Start Footer CSS
====================---*/
.footer-area-one {
  position: relative;
  z-index: 1;
}

.footer-area-one:after {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(12, 18, 57, 0.95);
  z-index: -1;
}

.footer-area-one .footer-widget {
  padding-top: 40px;
  padding-bottom: 40px;
  background: #000;
}

.footer-area-one .footer-widget .widget h4.widget-title {
  margin-bottom: 30px;
  color: var(--white);
}

.footer-area-one .footer-widget .widget p {
  color: var(--white);
}

.footer-area-one .footer-widget .widget.about-widget {
  margin-top: 6px;
}

.footer-area-one .footer-widget .widget.about-widget .brand-logo {
  margin-bottom: 35px;
}

.footer-area-one .footer-widget .widget.about-widget p {
  line-height: 32px;
  color: #fff;
  margin-bottom: 25px;
}

.footer-area-one .footer-widget .widget.about-widget .social-box h5 {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 20px;
  color: #fff;
}

.footer-area-one .footer-widget .widget.about-widget .social-box ul.social-link li {
  margin-right: 5px;
}

.footer-area-one .footer-widget .widget.about-widget .social-box ul.social-link li a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #24294C;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}

.footer-area-one .footer-widget .widget.about-widget .social-box ul.social-link li a:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.footer-area-one .footer-widget .widget.footer-widget-nav {
  padding-left: 40%;
}

.footer-area-one .footer-widget .widget.footer-widget-nav ul.widget-nav li {
  margin-bottom: 10px;
}

.footer-area-one .footer-widget .widget.footer-widget-nav ul.widget-nav li:before {
  display: inline-block;
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary-color);
  vertical-align: middle;
  margin-right: 20px;
}

.footer-area-one .footer-widget .widget.footer-widget-nav ul.widget-nav li:last-child {
  margin-bottom: 0px;
}

.footer-area-one .footer-widget .widget.footer-widget-nav ul.widget-nav li a {
  color: var(--white);
}

.footer-area-one .footer-widget .widget.footer-widget-nav ul.widget-nav li a:hover {
  color: var(--primary-color);
}

.footer-area-one .footer-widget .widget.contact-info-widget {
  padding-left: 25px;
}

.footer-area-one .footer-widget .widget.contact-info-widget .contact-info-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.footer-area-one .footer-widget .widget.contact-info-widget .contact-info-list li .icon {
  margin-right: 25px;
}

.footer-area-one .footer-widget .widget.contact-info-widget .contact-info-list li .icon i {
  color: var(--primary-color);
  font-size: 25px;
}

.footer-area-one .footer-widget .widget.contact-info-widget .contact-info-list li .info p {
  margin-bottom: 10px;
}

.footer-area-one .copyright-area {
  padding: 25px 0;
}

.footer-area-one .copyright-area .copyright-text p {
  color: var(--white);
}

.footer-area-two .footer-top {
  padding: 120px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-area-two .footer-top .footer-logo {
  display: block;
  margin-bottom: 60px;
}

.footer-area-two .footer-top ul.social-link li span.title {
  font-size: 20px;
  line-height: 30px;
  color: var(--white);
  margin-right: 10px;
}

.footer-area-two .footer-top ul.social-link li a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #24294C;
  color: var(--white);
  font-size: 14px;
  transition: all .4s;
  margin-left: 5px;
  margin-right: 5px;
}

.footer-area-two .footer-top ul.social-link li a:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.footer-area-two .footer-widget {
  padding-top: 100px;
}

/*---====================
  End Footer CSS
====================---*/

/*---====================
  Start Categories CSS
====================---*/
.categories-item-one {
  position: relative;
  min-height: 330px;
}

.categories-item-one:hover .categories-front {
  transform: perspective(2000px) rotateX(180deg);
}

.categories-item-one:hover .categories-back {
  transform: perspective(2000px) rotateX(0deg);
  z-index: 1;
}

.categories-item-one .categories-front {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  transform: perspective(2000px) rotateX(0deg);
  background-color: var(--light-bg);
  padding: 50px 40px 40px;
  transition: all .5s ease;
}

.categories-item-one .categories-front .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 80px;
  background-color: #FFF0D9;
  border-radius: 40px 0px 40px 40px;
  margin: auto;
  margin-bottom: 20px;
}

.categories-item-one .categories-front .icon i {
  font-size: 34px;
  color: var(--primary-color);
}

.categories-item-one .categories-front .content h5 {
  margin-bottom: 20px;
}

.categories-item-one .categories-back {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transform: perspective(2000px) rotateX(-180deg);
  background-color: var(--secondary-color);
  padding: 60px 40px;
  transition: all .4s ease;
}

.categories-item-one .categories-back .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 80px;
  background-color: #FFF0D9;
  border-radius: 40px 40px 0px 40px;
  margin: auto;
  margin-bottom: 20px;
}

.categories-item-one .categories-back .icon i {
  font-size: 34px;
  color: var(--primary-color);
}

.categories-item-one .categories-back .content h5 {
  margin-bottom: 25px;
  color: var(--white);
}

.categories-item-one .categories-back .content .main-btn {
  background-color: var(--primary-color);
}

.categories-item-one .categories-back .content .main-btn:after {
  background-color: var(--white);
}

.categories-item-one .categories-back .content .main-btn:hover:before {
  background-color: var(--white);
}

.categories-item-one .categories-back .content .main-btn:hover:after {
  background-color: var(--primary-color);
}

/*---====================
  End Categories CSS
====================---*/

/*---====================
  Start Shop CSS
====================---*/
.product-filter .form_group i {
  position: absolute;
  top: 17px;
  right: 20px;
}

.product-filter .form_control {
  border: 1px solid var(--bc);
  border-radius: 4px;
  padding: 0 20px;
  margin-bottom: 20px;
}

.product-filter .nice-select {
  padding: 0 20px;
  border: 1px solid var(--bc);
  border-radius: 4px;
  margin-bottom: 20px;
  height: 50px;
  line-height: 50px;
}

.product-item-one .product-img,
.product-item-two .product-img {
  width: 100%;
  height: 270px;
  position: relative;
  overflow: hidden;
}

.product-item-one .product-img img,
.product-item-two .product-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
}

.product-item-one .product-info {
  border: 1px solid var(--bc);
  border-top: none;
  padding: 25px 30px 30px;
}

.product-item-one .product-info h3.title {
  font-size: 18px;
  line-height: 27px;
  margin-bottom: 5px;
}

.product-item-one .product-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.products-area .product-info .rate,
.pricing-bottom .rate,
.products-details-section .products-details-wrapper .rate,
.pricing-area .pricing-info .pricing-bottom .rate {
  background-image: url('../img/rating-star.png');
  background-position: 0 -13px;
  background-repeat: repeat-x;
  height: 13px;
  width: 95px;
  transition: all 0.5s ease-out 0s;
  -webkit-transition: all 0.5s ease-out 0s;
}

.products-area .product-info .rate {
  margin: 0 auto;
  margin-bottom: 10px;
}

.products-details-section .products-details-wrapper .rate {
  margin-bottom: 17px;
}

.products-area .product-info .rate .rating,
.pricing-bottom .rate,
.products-details-section .products-details-wrapper .rate .rating,
.pricing-area .pricing-info .pricing-bottom .rate .rating {
  background-image: url('../img/rating-star.png');
  background-position: 0 0;
  background-repeat: repeat-x;
  height: 13px;
}

.product-item-one .product-info .rating {
  margin-bottom: 20px;
}

.product-item-one .product-info .rating li {
  font-size: 14px;
}

.filter-products-list .single-method,
.filter-pricing-list .single-method {
  margin-bottom: 15px;
}

.filter-products-list .single-method:last-child,
.filter-pricing-list .single-method:last-child {
  margin-bottom: 0px;
}

.filter-products-list .single-method label,
.filter-pricing-list .single-method label {
  margin-bottom: 0;
  line-height: 15px;
}

.filter-products-list .single-method label span,
.filter-pricing-list .single-method label span {
  margin-left: 10px;
}

.product-item-two:hover .product-img .product-overlay {
  height: 100%;
  visibility: visible;
  opacity: 1;
}

.product-item-two:hover .product-img .product-overlay .product-meta .wishlist-btn,
.product-item-two:hover .product-img .product-overlay .product-meta .cart-btn,
.product-item-two:hover .product-img .product-overlay .product-meta .img-popup {
  transform: translateY(0px);
}

.product-item-two .product-img {
  position: relative;
  overflow: hidden;
}

.product-item-two .product-img .product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5%;
  background-color: rgba(12, 18, 57, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: all .3s;
}

.product-item-two .product-img .product-overlay .product-meta {
  display: flex;
}

.product-item-two .product-img .product-overlay .product-meta a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 14px;
  color: var(--heading-color);
  border-radius: 50%;
  background-color: var(--primary-color);
  margin-left: 7px;
  margin-right: 7px;
}

.product-item-two .product-img .product-overlay .product-meta .img-popup {
  transform: translateY(40px);
  transition: all .4s;
}

.product-item-two .product-img .product-overlay .product-meta .cart-btn {
  transform: translateY(50px);
  transition: all .5s;
}

.product-item-two .product-img .product-overlay .product-meta .wishlist-btn {
  transform: translateY(60px);
  transition: all .6s;
}

.product-item-two .product-info {
  padding-top: 26px;
}

.product-item-two .product-info h3.title {
  font-size: 20px;
  line-height: 30px;
}

.product-item-two .product-info span.price,
.products-area .product-info span.price {
  font-weight: 600;
  color: var(--primary-color);
}

.product-item-two .product-info span.price span.pre-price,
.products-area .product-info span.price span.pre-price {
  margin-left: 5px;
  text-decoration: line-through;
  font-weight: 400;
}

.products-gallery-wrap .products-thumb-slider .slick-arrow,
.products-gallery-wrap .products-big-slider .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 1;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 14px;
  background-color: var(--primary-color);
  color: var(--heading-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}

.products-gallery-wrap .products-thumb-slider .slick-arrow:hover,
.products-gallery-wrap .products-big-slider .slick-arrow:hover {
  background-color: var(--heading-color);
  color: var(--primary-color);
}

.products-gallery-wrap .products-thumb-slider .slick-arrow.prev,
.products-gallery-wrap .products-big-slider .slick-arrow.prev {
  left: 0;
}

.products-gallery-wrap .products-thumb-slider .slick-arrow.next,
.products-gallery-wrap .products-big-slider .slick-arrow.next {
  right: 0;
}

.products-gallery-wrap .products-big-slider a {
  display: block;
}

.products-gallery-wrap .products-big-slider a img {
  width: 100%;
}

.products-gallery-wrap .products-thumb-slider {
  margin-left: -10px;
  margin-right: -10px;
}

.products-gallery-wrap .products-thumb-slider .product-img {
  margin-left: 10px;
  margin-right: 10px;
}

.products-gallery-wrap .products-thumb-slider .product-img img {
  width: 100%;
}

.products-details-wrapper .product-info h2 {
  margin-bottom: 15px;
}

.products-details-wrapper .product-info ul.rating {
  margin-bottom: 5px;
}

.products-details-wrapper .product-info span.price {
  font-weight: 600;
  color: var(--primary-color);
}

.products-details-wrapper .product-info span.price span.pre-price {
  font-weight: 400;
  text-decoration: line-through;
}

.products-details-wrapper .product-info p {
  margin-bottom: 20px;
}

.products-details-wrapper .product-info .button .main-btn {
  margin-right: 10px;
  margin-bottom: 10px;
}

.products-details-wrapper .product-info ul.social-link li {
  margin-right: 10px;
}

.products-details-wrapper .product-info .product-tags a {
  color: var(--heading-color);
  font-weight: 600;
  margin-left: 10px;
}

.products-details-wrapper .product-info .product-tags a:hover {
  color: var(--primary-color);
}

.description-wrapper .description-tabs .nav-link {
  position: relative;
  border-radius: 0px;
  border: none;
  margin-bottom: 0px;
  color: var(--heading-color);
  padding: 0;
  margin-right: 20px;
  font-weight: 600;
  padding-bottom: 10px;
}

.description-wrapper .description-tabs .nav-link::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  visibility: hidden;
  opacity: 0;
  transition: all .3s;
}

.description-wrapper .description-tabs .nav-link.active,
.description-wrapper .description-tabs .nav-link:hover {
  color: var(--primary-color);
}

.description-wrapper .description-tabs .nav-link.active::after {
  visibility: visible;
  opacity: 1;
}

.shop-review-area h4.title,
.equipment-review-content-box h4.title {
  margin-bottom: 20px;
}

.shop-review-area .shop-review-user,
.equipment-review-content-box .equipment-review-user {
  margin-bottom: 30px;
}

.shop-review-area .shop-review-user .thumb,
.equipment-review-content-box .equipment-review-user .thumb {
  min-width: 60px;
  max-width: 60px;
  height: 60px;
  margin-right: 20px;
}

.shop-review-area .shop-review-user .thumb img,
.equipment-review-content-box .equipment-review-user .thumb img {
  width: 100%;
  border-radius: 50%;
}

.shop-review-area .shop-review-user .content .rating li,
.equipment-review-content-box .equipment-review-user .content .rating li {
  font-size: 14px;
  line-height: 20px;
}

.shop-review-area .shop-review-user .content span.date,
.equipment-review-content-box .equipment-review-user .content span.date {
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  color: var(--heading-color);
}

.shop-review-area .form_group .form_control,
.equipment-review-content-box .equipment-review-form .form_group .form_control {
  height: 150px;
  border: 1px solid var(--bc);
  border-radius: 5px;
  margin-bottom: 20px;
}

.shop-review-area .form_group ul.rating li,
.equipment-review-content-box .equipment-review-form .form_group ul.rating li {
  margin-bottom: 10px;
}

.shop-review-area .form_group ul.rating li:hover,
.equipment-review-content-box .equipment-review-form .form_group ul.rating li:hover {
  cursor: pointer;
}

.shop-review-area .form_group ul.rating li::after,
.equipment-review-content-box .equipment-review-form .form_group ul.rating li::after {
  display: inline-block;
  content: '|';
  margin-left: 10px;
  margin-right: 7px;
}

.shop-review-area .form_group ul.rating li:last-child::after,
.equipment-review-content-box .equipment-review-form .form_group ul.rating li:last-child::after {
  display: none;
}

.shop-review-area .form_group ul.rating li:hover span,
.equipment-review-content-box .equipment-review-form .form_group ul.rating li:hover span {
  color: #FBA31C;
  cursor: pointer;
}

/*---====================
  End Shop CSS
====================---*/

/*---====================
  Start Team CSS
====================---*/
.team-item-one:hover .team-img:after {
  width: 100%;
  clip-path: none;
  height: 100%;
}

.team-item-one:hover .team-img .team-social {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}

.team-item-one .team-img {
  position: relative;
  overflow: hidden;
}

.team-item-one .team-img:after {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 80px;
  height: 80px;
  content: '';
  background-color: rgb(251 163 28 / 80%);
  clip-path: polygon(0 0, 100% 0, 0 95%);
  z-index: 1;
  transition: all .3s;
}

.team-item-one .team-img .team-social {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transform: translateY(-20px);
  visibility: hidden;
  opacity: 0;
  transition: all .4s;
}

.team-item-one .team-img .team-social ul.social-link li {
  display: inline-block;
  margin-left: 7.5px;
  margin-right: 7.5px;
}

.team-item-one .team-img .team-social ul.social-link li a {
  color: var(--heading-color);

}

.team-item-one .team-info {
  padding-top: 23px;
}

.team-item-one .team-info h3.title {
  font-size: 22px;
  line-height: 30px;
}

.team-item-one .team-info h3.title:hover {
  color: var(--primary-color);
}

.team-item-one .team-info span.position {
  font-size: 14px;
}

/*---====================
  End Team CSS
====================---*/

/*---=======================
  Sart FAQ CSS
=======================---*/
.widget.faq-nav-widget {
  padding: 45px 20px 50px;
}

.widget.faq-nav-widget .nav-tabs {
  border-bottom: none;
}

.widget.faq-nav-widget .nav-tabs .nav-link {
  display: block;
  border: none;
  background-color: transparent;
  font-weight: 500;
  font-size: 18px;
  color: #3a416f;
}

.widget.faq-nav-widget .nav-tabs .nav-link.active,
.widget.faq-nav-widget .nav-tabs .nav-link:hover {
  color: var(--primary-color);
}

.faq-wrapper-one .card {
  border-radius: 0px;
  border: none;
}

.faq-wrapper-one .card .card-header {
  background-color: #f9f9f9;
  color: #3a416f;
  font-weight: 500;
  border-bottom: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-wrapper-one .card .card-header[aria-expanded=true] {
  background-color: var(--primary-color);
  color: var(--white);
}

.faq-wrapper-one .card .card-header[aria-expanded]:after {
  display: inline-block;
  content: '\f107';
  font-weight: 600;
  font-family: 'Font Awesome 5 Pro';
  font-size: 16px;
  float: right;
  transition: all .3s;
  margin-left: 15px;
}

.faq-wrapper-one .card .card-header[aria-expanded=true]:after {
  transform: rotate(-180deg);
}

.faq-wrapper-one .card .card-body {
  border: 1px solid #f9f9f9;
  border-top: none;
  padding: 15px 20px;
}

/*---=======================
  End FAQ CSS
=======================---*/

/*---====================
  Start Contact CSS
====================---*/
.information-item {
  display: flex;
  align-items: center;
  padding: 40px;
  border: 1px solid #e5e5e5;
}

.information-item .icon {
  transition: all .3s;
}

.information-item .info {
  margin-left: 20px;
}

.information-item .icon i {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  transition: all .7s;
}

.information-item .info p {
  line-height: 26px;
  font-weight: 500;
  color: #3a416f;
}

.information-item .info p a:hover {
  color: var(--primary-color);
}

.contact-wrapper .section-title span.span {
  font-weight: 500;
  font-size: 18px;
  color: var(--primary-color);
}

.contact-wrapper .contact-form .form_control {
  height: 60px;
  border: 1px solid #e5e5e5;
}

.contact-wrapper .contact-form .nice-select {
  height: 60px;
  line-height: 60px;
  border-radius: 0px;
  margin-bottom: 20px;
}

.contact-wrapper .contact-form textarea.form_control {
  height: 150px;
}

/*---====================
  End Contact CSS
====================---*/

/*---====================
  Start Shop CSS
====================---*/
.cart-area-section .total-item-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 20px;
}

.cart-area-section .total-item-info li {
  color: var(--heading-color);
}

.cart-area-section .cart-table {
  width: 100%;
}

.cart-area-section .cart-table thead {
  background-color: #eaeaea;
}

.cart-area-section .cart-table thead tr th {
  padding: 10px 20px;
  color: var(--heading-color);
}

.cart-area-section .cart-table thead tr th.remove {
  text-align: center;
}

.cart-area-section .cart-table tbody tr td {
  padding: 15px 0;
  border-bottom: 1px solid var(--bc);
}

.cart-area-section .cart-table tbody .title h3.prod-title {
  font-size: 20px;
}

.cart-area-section .cart-table tbody .qty .quantity-input {
  max-width: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.cart-area-section .cart-table tbody .qty .quantity-input input,
.cart-area-section .cart-table tbody .qty .quantity-input .quantity-up,
.cart-area-section .cart-table tbody .qty .quantity-input .quantity-down {
  width: 50px;
  height: 40px;
  padding: 0 10px;
  text-align: center;
  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;
  border: 1px solid #e5e5e5;
  cursor: pointer;
}

.cart-area-section .cart-table tbody .qty .quantity-input input {
  border-left: none;
  border-right: none;
}

.cart-area-section .cart-table tbody .unit-price .available-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cart-area-section .cart-table tbody .unit-price .available-info span.icon {
  width: 40px;
  height: 40px;
  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;
  background-color: #ff4a17;
  color: #fff;
  border-radius: 50%;
  margin-right: 10px;
}

.cart-area-section .cart-table tbody .remove {
  text-align: center;
}

.cart-area-section .cart-middle {
  float: right;
  margin-top: 30px;
}

.cart-area-section .cart-middle .cart-btn {
  display: inline-block;
  margin-left: 15px;
  padding: 10px 30px;
  color: #fff;
  background-color: #ff4a17;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.cart-area-section .cart-middle .cart-btn:hover {
  background-color: #14212b;
  color: #fff;
}

.checkout-area-section .shop-title-box h3 {
  margin-bottom: 20px;
}

.checkout-area-section .form_group label {
  display: block;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
}

.checkout-area-section .form_group .form_control {
  border: 1px solid #e5e5e5;
}

.checkout-area-section .bottom {
  margin-top: 30px;
}

.checkout-area-section .bottom .table-one {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 40px;
}

.checkout-area-section .bottom .cart-table {
  width: 100%;
}

.checkout-area-section .bottom .cart-table tbody .product-title .prod-title {
  font-size: 20px;
}

.checkout-area-section .bottom .cart-table tbody input {
  width: 40px;
  height: 40px;
  border: 1px solid #e5e5e5;
  padding: 0 10px;
}

.checkout-area-section .bottom .cart-table tbody input[type=radio] {
  width: 15px;
  height: 15px;
}

.checkout-area-section .bottom .cart-table tbody tr td p {
  line-height: 18px;
}

.checkout-area-section .bottom .cart-total .cart-total-table {
  border: 1px solid #e8e6f4;
  border-radius: 6px;
}

.checkout-area-section .bottom .cart-total .cart-total-table li {
  border-bottom: 1px solid #e8e6f4;
}

.checkout-area-section .bottom .cart-total .cart-total-table li span.col {
  position: relative;
  display: block;
  float: left;
  color: #111;
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
  padding: 10px 18px;
  width: 50%;
}

.checkout-area-section .bottom .cart-total .cart-total-table li span.col.col-title {
  border-right: 1px solid #e8e6f4;
}

.checkout-area-section .coupon {
  position: relative;
  display: block;
  background: #f8f7ff;
  padding: 20px 28px 21px;
  margin-bottom: 60px;
}

.checkout-area-section .coupon .btn,
.equipment-details-section .pricing-body .extra-option .btn {
  background-color: #ff4a17;
  border-radius: 0 .25rem .25rem 0;
}

.checkout-area-section .coupon .form-group input,
.extra-option .form-control {
  border-radius: .25rem 0 0 .25rem;
}

.checkout-area-section .coupon .form-group input:focus,
.extra-option .form-control:focus {
  box-shadow: none;
}

.checkout-area-section .payment-options {
  position: relative;
  display: block;
  overflow: hidden;
  margin-top: 30px;
  border: 1px solid #e8e6f4;
  padding: 23px 20px 35px;
  border-radius: 6px;
}

.checkout-area-section .payment-options h4 {
  margin-bottom: 23px;
}

.checkout-area-section .payment-options .placeorder-button {
  margin-top: 30px;
}

.single-radio {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.single-radio span {
  display: inline-block;
  margin-left: 30px;
  margin-top: -3px;
}

.single-radio .single-input {
  display: none;
}

.single-radio .single-input:checked+.single-input-label::after {
  opacity: 1;
}

.single-radio .single-input:checked+.single-input-label::before {
  border-color: var(--primary-color);
}

.single-radio .single-input-label::after,
.single-radio .single-input-label::before {
  border-radius: 50%;
}

.single-radio .single-input-label::after {
  content: "";
  width: 14px;
  height: 14px;
  line-height: 20px;
  top: 3px;
  left: 3px;
}

.single-input-label {
  display: inline-flex;
  position: relative;
  cursor: pointer;
  margin-bottom: 0;
}

.single-input-label::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  top: 0;
  left: 0;
  display: inline-block;
  border: 1px solid #ddd;
  box-sizing: border-box;
}

.single-input-label::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  width: 20px;
  height: 20px;
  display: block;
  overflow: hidden;
  text-align: center;
  opacity: 0;
  transition: 0.2s opacity;
}

.sigle-input-check::before {
  border-color: #ddd;
}

.sigle-input-check::after {
  background: var(--primary-color);
  color: #FFFFFF;
  border-color: #ddd;
}

/*---====================
  End Shop CSS
====================---*/

/*---====================
  Start Dashboard CSS
====================---*/

@media (max-width: 991px) {
  .user-dashboard .user-sidebar {
    margin-bottom: 60px;
  }
}

.user-dashboard .user-sidebar .links li {

  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}


.user-dashboard .user-sidebar .links li a:hover,
.user-dashboard .user-sidebar .links li a.active {
  color: #309341;
}

.user-dashboard .user-sidebar .links li:last-child {
  border-bottom: none;
}

.user-dashboard .user-sidebar .links li:last-child a {
  padding-bottom: 0;
}

.user-dashboard .user-profile-details .order-details .progress-area-step {
  margin-bottom: 60px;
  display: block;
  overflow: hidden;
}

.user-dashboard .user-profile-details .order-details .progress-area-step .progress-steps li {
  width: 25%;
  float: left;
  text-align: center;
  position: relative;
}

@media (max-width: 767px) {
  .user-dashboard .user-profile-details .order-details .progress-area-step .progress-steps li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    float: unset;
    text-align: left;
    padding-bottom: 20px;
  }

  .user-dashboard .user-profile-details .order-details .progress-area-step .progress-steps li:last-child:after {
    display: none;
  }
}

.user-dashboard .user-profile-details .order-details .progress-area-step .progress-steps li .icon {
  height: 30px;
  width: 30px;
  text-align: center;
  margin: auto;
  background: #efefef;
  border-radius: 50%;
  line-height: 30px;
  font-size: 14px;
  font-weight: 700;
  color: #000000;
  position: relative;
}

@media (max-width: 767px) {
  .user-dashboard .user-profile-details .order-details .progress-area-step .progress-steps li .icon {
    margin: 0;
  }
}

.user-dashboard .user-profile-details .order-details .progress-area-step .progress-steps li .progress-title {
  padding-top: 10px;
}

@media (max-width: 767px) {
  .user-dashboard .user-profile-details .order-details .progress-area-step .progress-steps li .progress-title {
    padding-left: 20px;
    padding-top: 0;
  }

  .login-box .brand-logo img {
    width: 80%;
  }
}

.user-dashboard .user-profile-details .order-details .progress-area-step .progress-steps li:after {
  position: absolute;
  content: "";
  height: 3px;
  width: calc(100% - 30px);
  background: #efefef;
  top: 14px;
  z-index: 0;
  right: calc(50% + 15px);
}

@media (max-width: 767px) {
  .user-dashboard .user-profile-details .order-details .progress-area-step .progress-steps li:after {
    width: 3px;
    height: calc(100% - 30px);
    top: 30px;
    left: 15px;
  }
}

.user-dashboard .user-profile-details .order-details .progress-area-step .progress-steps li.active .icon {
  background: var(--primary-color);
  color: #fff;
}

.user-dashboard .user-profile-details .order-details .progress-area-step .progress-steps li:first-child:after {
  display: none;
}

@media (max-width: 767px) {
  .user-dashboard .user-profile-details .order-details .progress-area-step .progress-steps li:first-child:after {
    display: block;
  }
}

.user-dashboard .user-profile-details .edit-info-area {
  margin-top: 22px;
  overflow: hidden;
}



.user-dashboard .user-profile-details .edit-info-area .btn:hover,
.user-dashboard .user-profile-details .edit-info-area .btn:focus {
  color: #000;
}

.user-dashboard .user-profile-details .edit-info-area .form_control {
  display: inline-block;
  width: 100%;
  height: 45px;
  padding-left: 13px;
  outline: 0;
  background: #FFFFFF;
  border: 1px solid #D9D9D9;
  border-radius: 10px;
  color: #000000;
  font-weight: 400;
  font-size: 15px;
}

.user-dashboard .user-profile-details .edit-info-area textarea.form_control {
  min-height: 150px;
  padding-top: 20px;
}




.user-dashboard .user-profile-details .edit-info-area .file-upload-area .upload-file {
  position: relative;
  cursor: pointer;
}

.user-dashboard .user-profile-details .edit-info-area .file-upload-area input {
  width: 100%;
  height: 100%;
  display: inline-block;
  opacity: 0;
  cursor: pointer;
}

.user-dashboard .user-profile-details .edit-info-area .file-upload-area span {
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 40px;
  background: var(--primary-color);
  z-index: -1;
  cursor: pointer;
  text-align: center;
  line-height: 40px;
  color: #fff;
  font-weight: 600;
}

.user-dashboard .user-profile-details .edit-info-area .nice-select {
  width: 100%;
  height: 50px;
  border-color: #ddd;
  border-radius: 0;
  line-height: 50px;
  margin-bottom: 20px;
}

.user-dashboard .user-profile-details .edit-info-area .nice-select .list {
  width: 100%;
}

.user-dashboard .user-profile-details .edit-info-area .single_radio,
.user-dashboard .user-profile-details .edit-info-area .single_checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}

.user-dashboard .user-profile-details .edit-info-area .single_radio span,
.user-dashboard .user-profile-details .edit-info-area .single_checkbox span {
  display: inline-block;
  margin-left: 30px;
  margin-top: -4px;
}

.user-dashboard .user-profile-details .edit-info-area .single_radio .single_input,
.user-dashboard .user-profile-details .edit-info-area .single_checkbox .single_input {
  display: none;
}

.user-dashboard .user-profile-details .edit-info-area .single_radio .single_input:checked+.single_input_label:after,
.user-dashboard .user-profile-details .edit-info-area .single_checkbox .single_input:checked+.single_input_label:after {
  opacity: 1;
}

.user-dashboard .user-profile-details .edit-info-area .single_radio .single_input:checked+.single_input_label:before,
.user-dashboard .user-profile-details .edit-info-area .single_checkbox .single_input:checked+.single_input_label:before {
  border-color: var(--primary-color);
}

.user-dashboard .user-profile-details .edit-info-area .single_radio .single_input_label:after,
.user-dashboard .user-profile-details .edit-info-area .single_radio .single_input_label:before {
  border-radius: 50%;
}

.user-dashboard .user-profile-details .edit-info-area .single_radio .single_input_label:after {
  content: "";
  width: 14px;
  height: 14px;
  line-height: 20px;
  top: 3px;
  left: 3px;
}

.user-dashboard .user-profile-details .edit-info-area .single_input_label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  cursor: pointer;
  margin-bottom: 0;
}

.user-dashboard .user-profile-details .edit-info-area .single_input_label:before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  top: 0;
  left: 0;
  display: inline-block;
  border: 1px solid #ddd;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.user-dashboard .user-profile-details .edit-info-area .single_input_label:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  width: 20px;
  height: 20px;
  display: block;
  overflow: hidden;
  text-align: center;
  opacity: 0;
  -webkit-transition: 0.2s opacity;
  transition: 0.2s opacity;
}

.user-dashboard .user-profile-details .edit-info-area .sigle_input_check:before {
  border-color: #ddd;
}

.user-dashboard .user-profile-details .edit-info-area .sigle_input_check:after {
  background: var(--primary-color);
  color: #FFFFFF;
  border-color: #ddd;
}

.user-dashboard .card-box {
  position: relative;
  padding: 30px 20px;
}

.user-dashboard .card-box.box-1 {
  background: #6963FF;
}

.user-dashboard .card-box.box-1:after {
  content: "\f073";
  font-weight: 300;
}

.user-dashboard .card-box.box-2 {
  background: #EC7424;
}

.user-dashboard .card-box.box-2:after {
  content: "\f07a";
  font-weight: 300;
}

.user-dashboard .card-box:after {
  position: absolute;
  bottom: 33px;
  right: 10px;
  font-family: "Font Awesome 5 Pro";
  font-size: 90px;
  font-weight: 400;
  color: #fff;
  opacity: 0.7;
}

@media (max-width: 991px) {
  .user-dashboard .card-box:after {
    font-size: 80px;
  }
}

@media (max-width: 767px) {
  .user-dashboard .card-box:after {
    font-size: 100px;
  }
}

.user-dashboard .card-box .card-info h5 {
  color: #fff;
  margin-bottom: 10px;
}

@media (max-width: 991px) {
  .user-dashboard .card-box .card-info h5 {
    font-size: 18px;
  }
}

.user-dashboard .card-box .card-info p {
  color: #fff;
}

.user-dashboard .title {
  padding-bottom: 15px;
  border-bottom: 1px solid #e1e1e1;
  margin-bottom: 20px;
}

.user-dashboard .main-info {
  overflow: hidden;
}

.user-dashboard .main-info h5 {
  margin-bottom: 15px;
}

.user-dashboard .main-info ul.list {
  float: left;
  width: 30%;
}

.user-dashboard .main-info ul.list li {
  line-height: 30px;
}

.user-dashboard .main-info ul.list li p span {
  font-weight: 600;
  margin-right: 10px;
}

.user-dashboard .main-table .dataTables_wrapper .row:first-child,
.user-dashboard .main-table .dataTables_wrapper .row:last-child {
  margin-bottom: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.user-dashboard .main-table .dataTables_wrapper .row:last-child {
  margin-top: 20px;
}

.user-dashboard .main-table .dataTables_wrapper input[type=search] {
  height: 35px;
  outline: none;
}

.user-dashboard .main-table .dataTables_wrapper input[type=search]:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.user-dashboard .main-table .dataTables_wrapper td span {
  padding: 3px 10px;
  font-size: 14px;
  border-radius: 3px;
}

.user-dashboard .main-table .dataTables_wrapper td span.completed {
  background: #28a745;
  color: #fff;
}

.user-dashboard .main-table .dataTables_wrapper td span.pending {
  background: #ffc107;
  color: #000;
}

.user-dashboard .main-table .dataTables_wrapper td span.rejected {
  background: #dc3545;
  color: #fff;
}

.user-dashboard .main-table .dataTables_wrapper td a.btn {
  border: 1px solid var(--primary-color);
  color: #123212;
  background: transparent;
  padding: 5px 20px;
  font-size: 14px;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.user-dashboard .main-table .dataTables_wrapper td a.btn:hover {
  background: var(--primary-color);
  border-color: transparent;
  color: #fff;
}

.user-dashboard .main-table .dataTables_wrapper .dataTables_paginate .paginate_button {
  padding: 0;
  margin-left: 7px;
}

.user-dashboard .main-table .dataTables_wrapper .dataTables_paginate .paginate_button.active .page-link {
  background-color: var(--primary-color) !important;
  border-color: transparent;
}

.user-dashboard .main-table .dataTables_wrapper .dataTables_paginate .paginate_button.active .page-link,
.user-dashboard .main-table .dataTables_wrapper .dataTables_paginate .paginate_button.active .page-link:hover {
  color: var(--heading-color);
}

.user-dashboard .main-table .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  border-color: transparent;
  background: transparent;
  background-color: transparent;
}

.user-dashboard .main-table .dataTables_wrapper .dataTables_paginate .paginate_button .page-link {
  border: 1px solid #e1e1e1;
  color: #123212;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.user-dashboard .main-table .dataTables_wrapper .dataTables_paginate .paginate_button .page-link:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
  color: #fff;
  background-color: var(--primary-color) !important;
}

.user-dashboard .account-info,
.user-dashboard .order-details {
  padding: 30px;
}

.user-dashboard .view-order-page .order-info-area {
  margin-bottom: 40px;
}

.user-dashboard .view-order-page .order-info-area .order-info h3 {
  margin-bottom: 15px;
}

.user-dashboard .view-order-page .order-info-area .download {
  float: right;
}

.user-dashboard .view-order-page .order-info-area .download .btn {
  background: var(--primary-color);
  font-size: 14px;
  padding: 3px 10px;
  color: #fff;
}

.user-dashboard .view-order-page .order-info-area .download .btn i {
  margin-right: 10px;
}

.user-dashboard .billing-add-area {
  margin-bottom: 40px;
}

.user-dashboard .billing-add-area .main-info ul.list {
  width: 100%;
}

@media (max-width: 767px) {
  .user-dashboard .main-info ul.list {
    width: 50%;
  }

  .user-dashboard .view-order-page .order-info-area .download {
    float: none;
    margin-top: 20px;
  }

  .user-dashboard .billing-add-area .main-info {
    margin-bottom: 30px;
  }

  .user-dashboard .billing-add-area .main-info ul.list {
    width: 100%;
  }
}

.user-dashboard .billing-add-area .payment-information h5 {
  margin-bottom: 15px;
}

.user-dashboard .billing-add-area .payment-information p {
  line-height: 35px;
}

.user-dashboard .product-list h5 {
  margin-bottom: 15px;
}

.user-dashboard .product-list table tr td b {
  line-height: 30px;
}

.user-dashboard .product-list table tr td span {
  margin-left: 10px;
}

.user-dashboard .product-list table tr td span.color {
  display: inline-block;
  width: 15px;
  height: 15px;
  background: #222;
}

.user-area-section .user-form .form_group label {
  font-weight: 700;
}

.user-area-section .user-form .form_group .form_control {
  border: 1px solid #D9D9D9;
  border-radius: 10px;
  height: 48px;
  font-size: 15px;
  padding: 0 16px;
}

.user-area-section .user-form .form_checkbox .single-checkbox {
  margin-right: 15px;
}

.user-area-section .user-form input[type=radio] {
  width: 13px;
  height: 13px;
}

.user-area-section .user-form input[type=checkbox] {
  width: 13px;
  height: 13px;
}

.user-area-section .user-form .form_checkbox {
  display: flex;
  margin-bottom: 20px;
}

.user-area-section .user-form .form_checkbox label {
  line-height: 15px;
}

.user-area-section .user-form .form_checkbox label span {
  margin-left: 15px;
}

.user-area-section .user-form .form_text {
  margin-bottom: 25px;
}

@media only screen and (max-width: 767px) {
  .dataTables_length {
    margin-bottom: 20px;
  }

  div.dataTables_wrapper div.dataTables_length,
  div.dataTables_wrapper div.dataTables_filter,
  div.dataTables_wrapper div.dataTables_info,
  div.dataTables_wrapper div.dataTables_paginate {
    float: none;
  }

  div.dataTables_wrapper div.dataTables_paginate ul.pagination {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 20px;
  }
}

/*---====================
  End Dashboard CSS
====================---*/

/*---=========================
  Start Purchase Success CSS
=========================---*/
.purchase-message,
.booking-message {
  padding: 120px 0px;
  max-width: 780px;
  margin: 0 auto;
}

.purchase-success,
.booking-success {
  background: #f1f1f1;
  padding: 40px 0px;
  text-align: center;
  border-radius: 15px;
}

.purchase-success h2,
.booking-success h2 {
  margin-bottom: 15px;
  text-transform: uppercase;
}

.purchase-success p,
.booking-success p {
  line-height: 26px;
}

.purchase-success .icon i,
.booking-success .icon i {
  font-size: 60px;
}

.purchase-success .icon,
.booking-success .icon {
  display: block;
  margin-bottom: 20px;
}

/*---=========================
  End Purchase Success CSS
=========================---*/

.equipment-details-section .pricing-body .form_group input:not(#offline-gateway-attachment) {
  height: 50px;
  font-size: 16px;
  background-color: #fff;
  border: 2px solid #dfe9f4;
  padding: 0 20px;
  border-radius: 5px;
  width: 100%;
}

#date-range {
  cursor: pointer;
}

.equipment-details-section .pricing-body .form_group .input-wrap,
.pricing-area .equipments-search-filter .search-filter-form .form_group .input-wrap,
.hero-area .hero-slider-one .single-hero-slider .hero-content .hero-search-wrapper .form_group .input-wrap,
.hero-area .hero-wrapper-two .hero-search-wrapper .form_group .input-wrap {
  position: relative;
}

.equipment-details-section .pricing-body .form_group .input-wrap i,
.pricing-area .equipments-search-filter .search-filter-form .form_group .input-wrap i,
.hero-area .hero-slider-one .single-hero-slider .hero-content .hero-search-wrapper .form_group .input-wrap i,
.hero-area .hero-wrapper-two .hero-search-wrapper .form_group .input-wrap i {
  position: absolute;
  top: 16px;
  right: 20px;
  color: var(--primary-color);
}

.daterangepicker .drp-buttons .btn {
  background: var(--primary-color);
  border: var(--primary-color);
  color: #212529;
}

.equipment-details-section .pricing-body .extra-option {
  border-bottom: 1px solid var(--bc);
}

.equipment-details-section .pricing-body #login-link {
  color: #007bff;
}

.equipment-details-section .pricing-body #login-link:hover,
.equipment-details-section .pricing-body #login-link:focus {
  color: #0056b3;
}

/*---=========================
  Start 404 Page CSS
=========================---*/
.error-section {
  padding: 90px 0px;
}

.oops-img-section {
  max-width: 100px;
  margin: 0 auto;
}

.oops-img-section img {
  width: 100%;
}

.not-found-image {
  width: 100%;
}

.error-txt {
  text-align: center;
  margin-top: 30px;
}

.error-txt h2 {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 32px;
  margin: 21px 0px 14px;
  color: #0C1239;
}

.error-txt p {
  font-size: 18px;
  line-height: 30px;
  text-transform: uppercase;
  font-weight: 700;
}

/*---=========================
  End 404 Page CSS
=========================---*/

.daterangepicker option.disabled,
.daterangepicker td.disabled {
  color: #FF0000;
}

/*---=========================
  Start Cookie Alert
=========================---*/
.cookie-consent {
  position: fixed;
  background-color: #262938;
  bottom: 0px;
  width: 100%;
  padding: 15px 0px;
  z-index: 10000000000;
  color: #fff;
}

.cookie-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

span.cookie-consent__message {
  background-color: transparent !important;
  color: #fff;
  font-size: 14px;
}

button.cookie-consent__agree {
  padding: 5px 16px;
  border: none;
  background-color: #25D06F;
  color: #fff;
  cursor: pointer;
  border-radius: 3px;
  font-size: 14px;
}

p.cookie-consent__message {
  background-color: transparent !important;
  font-size: 14px;
}

p.cookie-consent__message * {
  color: #fff;
}

@media only screen and (max-width: 991px) {
  .cookie-container {
    display: block;
    text-align: center;
  }

  button.cookie-consent__agree {
    margin-top: 15px;
  }

  p.cookie-consent__message {
    line-height: 20px;
    display: block;
  }
}

/*---=========================
  End Cookie Alert
=========================---*/

/*---=========================
  Start Popup
=========================---*/
.popup-wrapper {
  display: none;
}

.popup_main-content h1 {
  font-size: 40px;
  line-height: 50px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
  background: #FFF;
  opacity: 1;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  line-height: 32px;
  right: -15px;
  top: -15px;
}

.popup-wrapper {
  position: relative;
  width: auto;
  max-width: 960px;
  margin: 0 auto;
}

.popup-wrapper .form_control {
  width: 100%;
  height: 70px;
  padding: 0 30px;
  line-height: 70px;
}

/* popup one */
.popup-one {
  position: relative;
  padding: 138px 120px;
}

.popup-one .popup_main-content {
  position: relative;
  text-align: center;
  border-radius: 10px;
  padding: 90px 55px;
}

.popup-one .popup_main-content h1,
.popup-one .popup_main-content p {
  color: #fff;
}

.popup-one .popup_main-content h1 {
  margin-bottom: 20px;
}

.popup-one .popup_main-content p {
  margin-bottom: 30px;
}

.popup-one .popup_main-content .popup-main-btn {
  padding: 15px 100px;
  display: inline-block;
  color: #fff;
  border-radius: 40px;
  border: 1px solid #fff;
  text-decoration: none;
  transition: .3s;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
}

.popup-one .popup_main-content .popup-main-btn:hover,
.popup-one .popup_main-content .popup-main-btn:focus {
  background-color: #451D53;
  color: #fff;
}

/* popup two */
.popup-two {
  position: relative;
  padding: 120px;
}

.popup-two .popup_main-content {
  position: relative;
  text-align: center;
  border-radius: 10px;
  padding: 90px 55px;
}

.popup-two .popup_main-content h1,
.popup-two .popup_main-content p {
  color: #fff;
}

.popup-two .popup_main-content h1 {
  margin-bottom: 20px;
}

.popup-two .popup_main-content p {
  margin-bottom: 30px;
}

.popup-two .popup_main-content .subscribe-form {
  padding: 0 70px;
}

.popup-two .popup_main-content .subscribe-form .form_control {
  border: none;
  border-radius: 10px;
  font-size: 20px;
  margin-bottom: 20px;
}

.popup-two .popup_main-content .subscribe-form .popup-main-btn {
  width: 100%;
  border: 1px solid #fff;
  background-color: transparent;
  color: #fff;
  font-size: 20px;
  height: 70px;
  border-radius: 10px;
  cursor: pointer;
  transition: all .3s;
}

.popup-two .popup_main-content .subscribe-form .popup-main-btn:hover,
.popup-two .popup_main-content .subscribe-form .popup-main-btn:focus {
  background-color: #FF2865;
  color: #fff;
}

/* popup three */
.popup-three .popup_main-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  background-color: #fff;
}

.popup-three .popup_main-content .left-bg {
  width: 45%;
  height: 100%;
  min-height: 670px;
}

.popup-three .popup_main-content .right-content {
  width: 55%;
  padding: 30px 15px;
  text-align: center;
}

.popup-three .popup_main-content .right-content h1 {
  font-weight: 400;
  margin-bottom: 20px;
}

.popup-three .popup_main-content .right-content p {
  margin-bottom: 20px;
}

.popup-three .popup_main-content .right-content .popup-main-btn {
  padding: 15px 70px;
  color: #fff;
  font-size: 19px;
  border-radius: 35px;
  display: inline-block;
  text-decoration: none;
}

/* popup four */
.popup-four .popup_main-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  background-color: #fff;
}

.popup-four .popup_main-content .left-bg {
  width: 45%;
  height: 100%;
  min-height: 670px;
}

.popup-four .popup_main-content .right-content {
  width: 55%;
  padding: 30px 30px;
  text-align: center;
}

.popup-four .popup_main-content .right-content h1 {
  font-weight: 400;
  margin-bottom: 20px;
}

.popup-four .popup_main-content .right-content p {
  margin-bottom: 20px;
}

.popup-four .popup_main-content .subscribe-form {
  padding: 0 70px;
}

.popup-four .popup_main-content .subscribe-form .form_control {
  border: 2px solid #C5C5C5;
  border-radius: 10px;
  font-size: 20px;
  margin-bottom: 20px;
}

.popup-four .popup_main-content .subscribe-form .popup-main-btn {
  width: 100%;
  color: #fff;
  font-size: 20px;
  height: 70px;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  transition: all .3s;
}

.popup-four .popup_main-content .subscribe-form .popup-main-btn:hover,
.popup-four .popup_main-content .subscribe-form .popup-main-btn:focus {
  background-color: #F8960D;
  color: #fff;
}

/* popup five */
.popup-five .popup_main-content {
  text-align: center;
  padding: 75px;
}

.popup-five .popup_main-content h1 {
  font-size: 42px;
  line-height: 52px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 20px;
  margin: 0 auto 20px;
  max-width: 600px;
}

.popup-five .popup_main-content h4 {
  color: #fff;
  font-size: 25px;
  font-weight: 35px;
  margin-bottom: 40px;
  font-weight: 400;
}

.popup-five .popup_main-content .popup-main-btn {
  padding: 15px 30px;
  display: inline-block;
  color: #fff;
  border-radius: 40px;
  text-decoration: none;
}

/* popup six */
.popup-six .popup_main-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background-color: #fff;
  text-decoration: none;
}

.popup-six .popup_main-content .left-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
}

.popup-six .popup_main-content .right-content {
  width: 50%;
  height: 100%;
  padding: 120px 15px;
  text-align: center;
  margin-left: 50%;
}

.popup-six .popup_main-content .right-content h1 {
  font-size: 40px;
  font-weight: 400;
  line-height: 50px;
  color: #fff;
  margin-bottom: 25px;
}

.popup-six .popup_main-content h4 {
  color: #fff;
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 40px;
  font-weight: 400;
}

.popup-six .popup_main-content .right-content .popup-main-btn {
  padding: 15px 30px;
  display: inline-block;
  color: #fff;
  border-radius: 40px;
  text-decoration: none;
}

/* syotimer css */
.popup-wrapper .syotimer__body {
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.popup-wrapper .syotimer__body p {
  color: #fff;
}

.popup-wrapper .syotimer-cell {
  flex: 0 0 24%;
  padding-left: 10px;
  padding-right: 10px;
}

.popup-wrapper .syotimer-cell__value {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1F3A52;
  border-radius: 10px;
  font-size: 36px;
  color: #fff;
  margin-bottom: 15px;
}

.popup-wrapper .syotimer-cell__unit {
  font-size: 20px;
  color: #fff;
  text-transform: capitalize;
}

/* medium device */
@media only screen and (min-width: 768px) and (max-width : 991px) {

  .popup-one .popup_main-content h1,
  .popup-three .popup_main-content .right-content h1,
  .popup-four .popup_main-content .right-content h1,
  .popup-five .popup_main-content h1,
  .popup-six .popup_main-content .right-content h1 {
    font-size: 40px;
    line-height: 50px;
  }

  .popup-wrapper {
    max-width: 720px;
  }

  .popup-two .popup_main-content .subscribe-form,
  .popup-four .popup_main-content .subscribe-form {
    padding: 0 15px;
  }

  .popup-one,
  .popup-two {
    padding: 80px 30px;
  }

  .syotimer__body {
    margin-bottom: 0px;
  }

  .syotimer-cell {
    flex: 0 0 50%;
    margin-bottom: 20px;
  }
}

/* small devices, tablets */
@media only screen and (max-width : 991px) {
  .popup-wrapper .syotimer-cell {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (max-width : 767px) {
  .popup-wrapper {
    max-width: 500px;
  }

  .popup-five .popup_main-content {
    text-align: center;
    padding: 50px 15px;
  }

  .popup-three .popup_main-content .left-bg,
  .popup-four .popup_main-content .left-bg,
  .popup-six .popup_main-content .left-bg {
    display: none;
  }

  .popup-one,
  .popup-two {
    padding: 30px 15px;
  }

  .popup-one .popup_main-content,
  .popup-two .popup_main-content {
    padding: 20px 15px;
  }

  .popup-one .popup_main-content .main-btn {
    padding: 15px 30px;
  }

  .popup-three .popup_main-content .right-content,
  .popup-four .popup_main-content .right-content,
  .popup-six .popup_main-content .right-content {
    width: 100%;
    padding: 50px 15px;
  }

  .popup-two .popup_main-content .subscribe-form,
  .popup-four .popup_main-content .subscribe-form {
    padding: 0 15px;
  }

  .popup-two .popup_main-content .subscribe-form .form_control,
  .popup-four .popup_main-content .subscribe-form .form_control {
    font-size: 15px;
  }

  .popup-two .popup_main-content h1,
  .popup-one .popup_main-content h1,
  .popup-three .popup_main-content .right-content h1,
  .popup-four .popup_main-content .right-content h1,
  .popup-five .popup_main-content h1,
  .popup-six .popup_main-content .right-content h1 {
    font-size: 24px;
    line-height: 34px;
  }

  .popup-six .popup_main-content .right-content {
    margin-left: 0%;
  }

  .syotimer__body {
    max-width: 380px;
    margin-bottom: 0px;
  }

  .syotimer-cell {
    flex: 0 0 50%;
    margin-bottom: 20px;
  }
}

/* mobile devices, tablets */
@media only screen and (max-width: 400px) {
  .popup-wrapper {
    max-width: 300px;
  }

  .syotimer__body {
    max-width: 300px;
    margin-bottom: 0px;
  }

  .syotimer-cell {
    flex: 0 0 50%;
    margin-bottom: 20px;
  }
}

/* wide mobile devices */
@media only screen and (min-width: 401px) and (max-width : 767px) {
  .popup-wrapper {
    max-width: 380px;
  }
}

/*---=========================
  End Popup
=========================---*/

.pricing-area .equipments-list-wrapper .pricing-item .pricing-info .pricing-body .more-feature-link,
.pricing-area .pricing-item .pricing-info .pricing-body .more-feature-link {
  color: #0C1239;
}

.pricing-area .equipments-list-wrapper .pricing-item .pricing-info .pricing-body .more-feature-link:hover,
.pricing-area .pricing-item .pricing-info .pricing-body .more-feature-link:hover {
  color: #FBA31C;
}

.pricing-area .pricing-item.pricing-item-three .pricing-info .pricing-body .more-feature-link {
  padding: 0;
}

.pricing-area .pricing-item .pricing-info .pricing-body .more-feature-link {
  padding-top: 15px;
  padding-inline-start: 20px;
}

.pricing-area .sidebar-widget-area .equipment-advertise img,
.products-area .sidebar-widget-area .product-advertise img {
  width: 100%;
}

a.bg-img {
  width: 100%;
  height: 100%;
}

/* -----------------------------------------
	Pagination CSS
----------------------------------------- */
.pagination .page-link {
  color: var(--heading-color);
  text-align: center;
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #d2d2d2;
}

.pagination .page-item.disabled {
  cursor: not-allowed;
}

.pagination .page-item.disabled .page-link,
.pagination .page-link {
  color: #FFFFFF;
  background: var(--secondary-color);
}

.pagination .page-item:not(:first-child) {
  margin-inline-start: 5px;
}

.pagination .page-item.active .page-link,
.pagination .page-link:hover {
  color: #FFFFFF;
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.pagination .page-link[aria-label="Next »"],
.pagination .page-link[aria-label="« Previous"],
.pagination .page-item[aria-label="Next »"] .page-link,
.pagination .page-item[aria-label="« Previous"] .page-link {
  border-radius: 50%;
}

.user-dashboard .pagination .page-link {
  width: auto;
  height: auto;
  border-radius: 0;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
  cursor: not-allowed;
}

.user-dashboard .pagination .page-item.disabled .page-link,
.user-dashboard .pagination .page-link {
  background-color: transparent;
}

.product-item-area nav {
  margin-top: 15px;
}

.equipment-slider.slick-slide {
  margin-left: -15px;
  margin-right: -15px;
}

.equipment-slider .slick-slide {
  margin-left: 15px;
  margin-right: 15px;
}

.slick-dots li {
  width: 10px;
  height: 10px;
  background: #E7E7E7;
  border-radius: 50%;
}

.slick-dots li button::before {
  content: '';
}

.slick-dots li.slick-active {
  background: var(--primary-color);
}

.slick-dotted.slick-slider {
  margin-bottom: 20px;
}

.equipment-gallery-arrow .slick-dots {
  position: static;
}

.equipment-gallery-arrow .slick-dots li {
  width: 100%;
  height: 100%;
}

.user-dashboard .user-profile-details .account-info .edit-info-area form .form-btn {
  box-shadow: none;
}

nav ul.pagination {
  margin-top: 13px;
  justify-content: center;
}

.ad-banner img {
  max-width: 100% !important;
}

.facebook-login-btn {
  color: #fff !important;
  background-color: #0069d9 !important;
  border-color: #0062cc !important;
}

.google-login-btn {
  color: #fff !important;
  background-color: #c82333 !important;
  border-color: #bd2130 !important;
}

.whatsapp-btn {
  z-index: 3;
}

.custom-page-area {
  padding-top: 100px;
  padding-bottom: 90px;
}

.pricing-area .equipments-list-wrapper .pricing-info .pricing-bottom .rate,
.equipment-slider .pricing-info .pricing-bottom .rate {
  margin-top: 7px;
}

.pricing-body #request-price-message {
  display: none;
}

.toast-message {
  line-height: initial !important;
}

/**new**/
body {
  font-family: var(--openSans);
}

body.login-body {
  background: #f5f5f5;
}

.user-area-section.user-login-container {
  background: #fff;
  margin: 52px 52px 15px;
  border-radius: 10px;
  min-height: calc(100vh - 104px);
  padding-bottom: 12px;
  position: relative;
}

.user-area-section.user-login-container:after {
  position: absolute;
  background: url("../img/curve-left.svg");
  width: 453px;
  height: 164px;
  left: -60px;
  bottom: -28px;
  content: "";
  background-repeat: no-repeat;
}

.user-area-section.user-login-container:before {
  position: absolute;
  background: url("../img/curve-right.svg");
  width: 355px;
  height: 155px;
  right: -60px;
  top: -28px;
  content: "";
  background-repeat: no-repeat;
}

.login-box {
  /* text-align: center; */
  max-width: 400px;
  margin: 0 auto;
}

.login-box .brand-logo {
  text-align: center;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-box h2 {
  font-weight: 600;
  font-size: 32px;
  line-height: 44px;
  color: #000000;
  text-align: center;
  margin-bottom: 35px;
  margin-top: 42px;
}

.forgotHeadinig {
  margin-top: 25% !important;
}

.main-btn {
  width: 100%;
  border-radius: 10px;
  height: 46px;
  padding: 10px 35px;
  font-size: 14px;
  line-height: 22px;
}

a.link-style {

  color: #309341;
  text-align: right;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  margin-top: 10px;
}

.account-signup a {
  color: #309341;
}

.account-signup {
  text-align: center;
  margin-top: 20px;
  color: #000;
}



/* Navbar CSS Starts */
.header-area-one .primary-menu:before,
.header-area-one .primary-menu:after {
  display: none;
}

.header-navigation {
  border-bottom: 1px solid #D2D2D2;
  padding: 22px 0;
}

.header-navigation .main-menu ul li>a {
  padding: 0 18px;
}

.header_search {
  background-color: #fff;
  color: #000;
}

.header-navigation .cart-btn {
  color: #000;
  position: relative;
}

.header-navigation .cart-btn {
  color: #000;
  position: relative;
}

.header-navigation .cart-btn span {
  position: absolute;
  top: -4px;
  font-size: 12px;
  background: #f9df35;
  height: 15px;
  line-height: 15px;
  width: 15px;
  text-align: center;
  border-radius: 50%;
}

.blue-btn {
  background: #000E3A;
  border-color: #000E3A;
  color: #fff;
  width: auto;
  padding: 13px 32px;
  height: auto;
  line-height: 100%;
  margin-left: 24px;
}

.blue-btn:hover {
  background: #FAD347;
  border-color: #FAD347;
  color: #000E3A;
}

/* Navbar CSS Ends */


/* Custom CSS Starts */
.pricing-img img {
  border-radius: 10px;
}
.equipment-slider .pricing-item .pricing-img img {
  border-radius: 10px;
  height: 220px;
  width: 100%;
  object-fit: cover;
}
.footer-area ul {
  display: flex;
  margin: 0;
  padding: 0;
  justify-content: space-between;
  align-items: center;
}

.footer-area ul li {
  color: #FFFFFF;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
}

.footer-area ul li a {
  color: #fff;
}

.small {
  line-height: 18px;
}

.newCTA_wrapper {
  background: url(../img/home-cta.png);
  background-position: center;
  background-size: 100% 100%;
  padding: 300px 0 120px;
}

.newCTA_wrapper h2 {
  margin-bottom: 50px;
}

.newCTA_wrapper ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 0;
}

.newCTA_wrapper ul li {
  width: 46.3%;
  text-align: left;
  margin-right: 55px;
}

.newCTA_wrapper ul li:nth-child(even) {
  margin-right: 0;
}

.newCTA_wrapper ul li label {
  font-weight: 600;
  font-size: 14px;
  line-height: 140%;
  color: #FFFFFF !important;
  margin: 0 15px 8px;
}

.txt {
  background: #FFFFFF;
  border: 1px solid #D9D9D9;
  border-radius: 10px;
  width: 100%;
  padding: 13px 16px;
  color: #000000;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
}

textarea.txt {
  height: 100px;
}

.wantedItems_wrapper {
  padding: 80px 0 40px;
}

.wantedItems_wrapper ul li {
  background: #F5F5F5;
  border-radius: 20px;
  padding: 32px 20px;
  display: flex;
  align-items: center;
  margin: 35px 0;
  gap: 0 36px;
  width: 80%;
}

.wantedItems_wrapper ul li:nth-child(even) {
  margin-left: auto;
}

.wantedItems_wrapper .img-cont {
  width: 28%;
}

.wantedItems_wrapper .img-cont img {
  width: 100%;
  border-radius: 50%;
}

.wantedItems_wrapper .items-cont {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 72%;
}

.wantedItems_wrapper .items-cont h3 {
  font-size: 22px;
  width: 100%;
}

.video-container {
  position: relative;
  margin: 0 auto;
}

.video-container video {
  width: 100%;
}

@media (min-width: 767px) {
  .video-container video {
    height: 328px;
  }

}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 9px;
}

.play-button {
  font-size: 48px;
  color: white;
  cursor: pointer;
}

.banner-img {
  position: relative;
  padding: 60px 0;
}

.banner-img .img1 {
  width: 85px;
  position: absolute;
  top: 0px;
  right: 80px;
}

.banner-img .img2 {
  position: absolute;
  width: 80px;
  bottom: 0;
  left: 40px;
}

.home_banner {
  padding-bottom: 100px;
  position: relative;
}

.home_banner:after {
  position: absolute;
  content: "";
  background: url(../img/banner-layer.png);
  background-repeat: no-repeat;
  background-size: 720px;
  bottom: -80px;
  right: 0;
  height: 174px;
  width: 720px;
}

.pricing-bg {
  position: relative;
}

.pricing-bg:after {
  content: "";
  position: absolute;
  background: url(../img/newest-bg.png);
  background-repeat: no-repeat;
  background-size: 300px;
  height: 100px;
  width: 300px;
}

/* Custom CSS Ends */



/* Profile Pages CSS Starts */
.user-dashboard,
.bundleDetails_wrapper {
  background: #F5F5F5;
  padding: 50px 0;
}

.user-dashboard .container {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 0 58px;
}

.user-dashboard .container .user-sidebar,
.user-dashboard .profile-cont {
  padding-top: 170px;
  padding-bottom: 170px;
}

.user-dashboard .user-sidebar .links li a {
  display: block;
  padding: 9px 0;
  color: #000000;
  font-weight: 400;
  font-size: 17px;
  line-height: 140%;
  position: relative;
}

.user-dashboard .user-sidebar .links li a.active {
  color: #309341;
  font-weight: 600;
}

.user-dashboard .user-sidebar .links li a.active:before {
  background: #309341;
  content: "";
  width: 2px;
  height: 25px;
  position: absolute;
  left: -12px;
  top: 9px;
}

.user-dashboard .user-sidebar .links {
  margin-left: 36px;
  margin-top: 15px;
}

.user-dashboard .col-lg-4 {
  position: relative;
}

.user-dashboard .col-lg-4:after {
  content: "";
  position: absolute;
  background: rgb(0 0 0 / 36%);
  height: auto;
  width: 1px;
  top: 50px;
  right: 30px;
  bottom: 50px;
}

.user-dashboard .form-wraper {
  display: flex;
  gap: 20px;
}

.user-dashboard .upload-img {
  position: relative;
  width: 25%;
}

.user-dashboard .contact_info {
  width: 75%;
}

.user-dashboard .file-upload-area {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 230px;
  z-index: 2;
  cursor: pointer;
}

.user-dashboard .upload-file {
  height: 100%;
}

.user-dashboard .account-address {
  background: #FFFFFF;
  border: 1px solid #D9D9D9;
  border-radius: 10px;
  padding: 20px 15px;
  margin-bottom: 16px;
}

.user-dashboard .delete-button {
  display: table;
  margin-left: auto;
}

.user-dashboard .delete-button .btn {
  color: #990F02;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0;
}

.user-dashboard .add-info {
  height: 245px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.user-dashboard .add-info button {
  display: table;
  margin: 0 auto;
  color: #000000;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  background: #fff;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.user-dashboard .add-info button img {
  display: table;
  margin: 0 auto 16px;
}

.shipping_wrapper label {
  color: #000000;
  font-weight: 400;
  font-size: 15px;
  width: 34%;
  line-height: 140%;
  margin: 0;
  white-space: nowrap;
  display: flex;
  align-items: center;

}

.shipping_wrapper .form-group {
  display: flex;
}

.shipping_wrapper .modal-content {
  border-radius: 20px;
  padding: 40px;
}

.shipping_wrapper .dft_address,
.shipping_wrapper .checkbox {
  display: flex;
  align-items: center;
}

.shipping_wrapper .dft_address {
  gap: 22px;
}

.shipping_wrapper .checkbox {
  gap: 8px;
}

.shipping_wrapper .dft_address label {
  width: auto;
}

.shipping_wrapper .modal-header .close {
  position: absolute;
  top: 40px;
  right: 40px;
  opacity: 1;
  color: #000;
  font-size: 32px;
  font-weight: 400;
}

.change-password .form-group {
  position: relative;
}

.change-password form .form-group span {
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
}
.profile-cont .change-password form .form-group span {
  top: 21px;
  right: 23px;
}
.user-dashboard .btn-grey {
  border-width: 1px;
}

@media (min-width: 576px) {
  .shipping_wrapper .modal-dialog {
    max-width: 700px;
  }
}

/* Profile Pages CSS Ends */


/* Contact Page Starts */
.contactPage_wrapper {
  background: #F5F5F5;
  padding: 50px 0;
  position: relative;
}

.contactPage_wrapper .container {
  background: #FFFFFF;
  border-radius: 20px;
  padding-top: 100px;
  padding-bottom: 150px;
}

.contactPage_wrapper:after {
  content: "";
  position: absolute;
  background: url(../img/contact-layer1.png);
  background-size: 600px;
  background-repeat: no-repeat;
  top: 22px;
  left: 0;
  width: 700px;
  height: 100px;
}

.contactPage_wrapper:before {
  content: "";
  position: absolute;
  background: url(../img/contact-layer2.png);
  background-repeat: no-repeat;
  background-size: 600px;
  bottom: 18px;
  right: 0;
  width: 600px;
  height: 110px;
}

.contact_landing.contactPage_wrapper:before,
.contact_landing.contactPage_wrapper:after {
  display: none;
}

.contactPage_wrapper .txt {
  background: #F5F5F5;
  border-color: #F5F5F5;
}

.contactPage_wrapper textarea {
  height: 100px;
}

.contactPage_wrapper label {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #000000;
  margin-left: 17px;
}

.px-10 {
  padding-left: 65px;
  padding-right: 65px;
}

/* Contact Page Ends */


/* Bundle List Page Starts */
.bundleList_wrapper {
  background: #F5F5F5;
  padding: 36px 0 25px;
}

.bundleList_wrapper .breadcrumbs-area {
  padding: 0;
  background-image: none;
}

.bundleList_wrapper .breadcrumbs-area:after {
  display: none;
}

.bundleList_wrapper .breadcrumbs-area .page-title ul.breadcrumbs-link li a,
.breadcrumbs-area .page-title ul.breadcrumbs-link li:after {
  color: #000;
}

.form-checkbox {
  display: block;
}

.form-checkbox input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.form-checkbox label {
  position: relative;
  cursor: pointer;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: #000000;
  margin-bottom: 8px;
}

.form-checkbox label:before {
  content: '';
  -webkit-appearance: none;
  background-color: #fff;
  border: 1px solid #929292;
  padding: 9px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 8px;
  border-radius: 5px;
}

.form-checkbox input:checked+label:after {
  content: '';
  display: block;
  position: absolute;
  top: 5px;
  left: 8px;
  width: 6px;
  height: 13px;
  border: solid #000000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.bundleList_ul .card {
  background: #FFFFFF;
  border-radius: 20px;
  border: none;
  padding: 22px;
  display: flex;
  gap: 22px;
  flex-wrap: nowrap;
  flex-direction: unset;
  align-items: flex-start;
  margin-bottom: 24px;
}

.bundleList_ul .card-img {
  width: 48%;
}

.bundleList_ul .card-img img {
  border-radius: 10px;
}

.bundleList_ul .card-cont {
  width: 52%;
}

.bundleList_ul .card-cont ul {
  margin: 14px 0 18px;
}

.bundleList_ul .card-cont button {
  margin-bottom: 16px;
  font-weight: 500;

}

.bundleList_ul .small {
  color: #585858;
  font-weight: 600;
}

.bundleList_ul .card li {
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: #000000;
}

.bundle_sidebar .filter-btn {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #309341;
  background: transparent;
  padding: 0;
}

.bundle_sidebar h5 {
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
  margin: 7px 0 13px;
}

.bundleList_wrapper .dropdown {
  margin: -12px 0 5px;
}

.bundleList_wrapper .dropdown select {
  background: #FFFFFF;
  border-radius: 5px;
  border: none;
  padding: 9px 12px;
  color: #000000;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
}

.bundleList_wrapper .dropdown select:focus-visible {
  outline: none;
}

.bundleList_wrapper .dropdown label {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
  margin-right: 8px;
}

/* Bundle List Page Ends */


/* Bundle Details Page Starts */
.bundleDetails_wrapper .container {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 58px 58px 42px;
}

.bundleDetails_wrapper .bundle_ul {
  list-style: disc;
  padding-left: 1rem;
}

.bundleDetails_wrapper .flickity-enabled {
  position: relative;
}

.bundleDetails_wrapper .flickity-enabled:focus {
  outline: none;
}

.bundleDetails_wrapper .flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.bundleDetails_wrapper .flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */

.bundleDetails_wrapper .flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.bundleDetails_wrapper .flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.bundleDetails_wrapper .flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- previous/next buttons ---- */
.bundleDetails_wrapper .flickity-prev-next-button {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: white;
  background: hsla(0, 0%, 100%, 0.75);
  cursor: pointer;
  /* vertically center */
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.bundleDetails_wrapper .flickity-prev-next-button:hover {
  background: white;
}

.bundleDetails_wrapper .flickity-prev-next-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #09F;
}

.bundleDetails_wrapper .flickity-prev-next-button:active {
  opacity: 0.6;
}

.bundleDetails_wrapper .flickity-prev-next-button.previous {
  left: 10px;
}

.bundleDetails_wrapper .flickity-prev-next-button.next {
  right: 10px;
}

.bundleDetails_wrapper .flickity-prev-next-button:disabled {
  opacity: 0.3;
  cursor: auto;
}

.bundleDetails_wrapper .flickity-prev-next-button svg {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

.bundleDetails_wrapper .flickity-prev-next-button .arrow {
  fill: #333;
}

.bundleDetails_wrapper .carousel {
  background: #FAFAFA;
}

.bundleDetails_wrapper .carousel-main {
  margin-bottom: 8px;
}

.bundleDetails_wrapper .carousel-cell {
  width: 100%;
  height: auto;
  margin-right: 0;
  border-radius: 10px;
}

.bundleDetails_wrapper .carousel-nav .carousel-cell {
  height: 110px;
  width: 120px;
}

/* Atelierbram edit */
.bundleDetails_wrapper .carousel-main img {
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  height: 440px;
  object-fit: cover;
  width: 100%;
}

.bundleDetails_wrapper .flickity-button {
  display: none;
}

.bundleDetails_wrapper .carousel.carousel-nav .carousel-cell {
  margin-right: 10px;
}

.bundleDetails_wrapper .carousel.carousel-nav {
  position: relative;
}

.bundleDetails_wrapper .carousel.carousel-nav .carousel-cell img {
  transform: translateX(10px);
  height: 100px;
    object-fit: cover;
    width: 120px;
}

/* Bundle Details Page Ends */



/* Equipment List Page Starts */
.select-dropdown label {
  font-weight: 600;
  font-size: 15px;
  line-height: 22px;
  color: #000000;
  margin-bottom: 0;
}

.select-dropdown {
  display: flex;
  justify-content: space-between;
  width: 80%;
  margin-top: 14px;
  align-items: center;
}

.select-dropdown .input-datepicker {
  position: relative;
  width: 60%;
  background-color: #fff;
}

.customSelect {
  position: relative;
}

.select-dropdown .input-datepicker input,
.select-dropdown .input-datepicker select,
.customSelect select {
  background: transparent;
  border: 1px solid #F5F5F5;
  border: none !important;
  border-radius: 5px;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  width: 100%;
  -moz-appearance: none;
  -webkit-appearance: none;
  position: relative;
  z-index: 1;
  cursor: pointer;
  padding: 2px;
}

.customSelect select {
  background-color: transparent !important;
  border: 1px solid #D9D9D9 !important;
  border-radius: 10px;
  padding: 12px 15px;
}

.select-dropdown .input-datepicker select::-ms-expand {
  display: none;
}

.select-dropdown .input-datepicker:before,
.customSelect:before {
  content: "";
  background: url(../img/dropdown-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  height: 9px;
  width: 14px;
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 0;
}

.customSelect:before {
  top: 21px;
}

.customSelect select:focus-visible {
  outline: 0;
  outline-offset: none;
}

.sidebar--cont {
  margin: 14px 0 40px;
}

.equipDetails_wrapper .card-cont a {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #309341;
  display: table;
  margin: 0 auto;
}

/* Equipment List Page Ends  */



/* Cart Pages Starts */
.cart_wrapper h3 {
  margin-bottom: 28px;
}

.cart_navigation {
  padding: 50px 0;
}

.cart_navigation ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cart_navigation ul li {
  padding: 0 24px;
  position: relative;
}

.cart_navigation ul li:after {
  content: "";
  background: url(../img/rigt-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 13px;
  height: 20px;
  position: absolute;
  top: 40%;
  right: -6px;
  transform: translateY(-50%);
}

.cart_navigation ul li:last-child::after {
  display: none;
}

.cart_navigation ul li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #868686;
  border-bottom: 3px solid #868686;
  padding: 0 6px 12px;
}

.cart_navigation ul li.active a {
  color: #309341;
  border-color: #309341;
}

.cart-pages {
  background: #F5F5F5;
}

.cart_wrapper .container {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 28px 48px 80px;
}

.cart_wrapper .select-dropdown .datepicker,
.cart_wrapper .select-dropdown select {
  border: 1px solid #EAEAEA !important;
  border-radius: 5px;
  background: #FFF !important;
  color: #000;
  font-size: 14px;
}

.cart_wrapper .select-dropdown .datepicker:focus-visible,
.cart_wrapper .select-dropdown select:focus-visible {
  outline: none;
}

.cart_wrapper .table .product {
  display: flex;
  gap: 24px;
}

.cart-pages .datePicker_ul {
  display: flex;
  gap: 25px;
}

.cart-pages .datePicker_ul li {
  width: 47%;
}

.cart_wrapper .table thead th {
  background: #5ED272;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  border-bottom: none;
  padding: 20px 0 !important;
}

.cart_wrapper .table thead th:first-child {
  padding-left: 50px !important;
  width: 50%;
  text-align: left;
}

.cart_wrapper .table thead th:last-child,
.cart_wrapper .table tbody td:last-child {
  padding-right: 50px;
  width: 8%;
}

.cart_wrapper .table tbody td {
  padding: 24px 0;
  text-align: center;
  vertical-align: middle;
}

.cart_wrapper .table tbody tr {
  border-bottom: 1px solid #626262;
}

.cart_wrapper .table tbody td {
  border-top: none !important;
}

.cart_wrapper .table thead th {
  text-align: center;
}

.cart_wrapper .table tbody td:first-child {
  text-align: left;
}

.cart_wrapper .table thead th:nth-child(2) {
  width: 11%;
}

.cart_wrapper .table thead th:nth-child(3) {
  width: 21%;
}

.cart-pages .select-dropdown .input-datepicker {
  width: auto;
}

.cart_wrapper .table .product button {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
  background-color: #fff;
}

.cart-pages .select-dropdown {
  width: 100%;
  gap: 7px;
}

.cart-pages .duration-select {
  width: 55%;
}

.cart-pages .input-datepicker {
  width: 42% !important;
}

.cart-pages .input-datepicker.w-100 {
  width: 100% !important;
}

.cart-pages .select-dropdown.duration-select .input-datepicker:before {
  background: url(../img/pencle.svg);
  height: 15px;
  width: 15px;
  top: 7px;
  right: 7px;
}

.cart_wrapper .cart-items {
  margin-top: 50px;
}

.cart_wrapper .table {
  margin: 30px 0 50px;
}

.cart_wrapper {
  padding: 0 0 120px;
}

.cart_wrapper .cart-btn,
.comments-cont label,
.cart_footer label {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 6px;
}

.comments-cont {
  margin-top: 20px;
}

.comments-cont textarea {
  border: 1px solid #999999;
  border-radius: 10px;
  width: 90%;
  height: 100px;
  padding: 7px;
  font-size: 15px;
}

.subTotal li {
  display: flex;
  justify-content: space-between;
}

.checkout-btns {
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  align-items: center;
  padding: 50px 0 22px;
}

.checkout-btns .clr-btn {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #990F02;
  padding: 0;
  background-color: transparent;
}

.shipMore {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: #309341;
  padding: 22px 0 0;
  display: table;
  margin-left: auto;
  background-color: transparent;
}

.cart_footer select {
  background: #F5F5F5;
  border-radius: 10px;
  border: none;
  width: 100%;
  padding: 13px;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  margin: 8px 0 100px;
}

.cart_footer .cartSelect_box {
  background-color: #F5F5F5;
  margin: 8px 0 100px;
  border-radius: 10px;
}

.cart_footer .cartSelect_box select {
  border: 1px solid #F5F5F5 !important;
  margin: 0;
}

.creditCard_wrapper label {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #000000;
  margin: 24px 1px 8px;
}

.form-btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
}

.form-btns .secured_btn {
  background: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.credit--checkbox label {
  padding-left: 30px;
}

.credit--checkbox.form-checkbox label:before {
  position: absolute;
  margin-right: 8px;
  border-radius: 5px;
  top: 3px;
  left: 2px;
}

.payment-options {
  margin-top: 22px;
}

.payment-options .order-payment-box {
  display: flex;
  flex-wrap: wrap;
  gap: 0 10px;
  margin: 15px 0;
}

.payment-options .order-payment-box .single-radio {
  width: 23%;
  margin-bottom: 8px;
}

.payment-options .order-payment-box .single-radio .single-input-label {
  margin-top: 0;
  margin-left: 0;
}

.payment-options .order-payment-box .single-radio span {
  margin-left: 0;
}

.creditCard_wrapper .expiry_date {
  gap: 16px;
  width: 65%;
}

.cartDone_wrapper .container {
  padding-top: 190px;
  padding-bottom: 190px;
}

.cart_wrapper .table .content {
  width: 60%;
}

.cart_wrapper .table .content .small {
  margin-bottom: 18px;
  ;
}

.cart_wrapper .cart_footer p {
  margin-bottom: 12px;
}

.cart_wrapper .cart_footer .subTotal p {
  margin-bottom: 2px;
}

.billing_cont {
  padding-left: 50px;
}

.cart_details {
  padding-right: 50px;
}

.empty_cart {
  padding-top: 48px;
  padding-bottom: 48px;
}

.cartEmpty_wrapper {
  padding: 45px 0;
}

/* Cart Pages Starts */


/* Order Page Starts */
.orders_wrapper.contactPage_wrapper:after {
  display: none;
}

.orders_wrapper.contactPage_wrapper .container {
  padding: 48px 52px 250px !important;
}

.orders_wrapper table tbody tr td:last-child {
  width: 20%;
  text-align: left;
}

.orders_wrapper table tr th:last-child {
  text-align: left;
}

.orders_wrapper table td,
.orders_wrapper table th {
  font-size: 16px;
  line-height: 22px;
  color: #000000;
  vertical-align: middle;
  padding-top: 22px;
  padding-bottom: 12px;
  text-align: center;
}

.orders_wrapper table th {
  border-bottom: none;
  border-top: none;
}

.orders_wrapper table tr:last-child td {
  border-bottom: 1px solid #dee2e6;
}

.orders_wrapper table {
  margin: 50px 0 80px;
}

.orders_wrapper.contactPage_wrapper select {
  width: 28%;
  display: table;
  margin-left: auto;
  background: #FFFFFF;
  border: 1px solid #D9D9D9;
  border-radius: 10px;
  padding: 13px 16px;
}

.main-small {
  padding: 10px 24px;
}

.main-menu .blue-btn {
  display: none;
}

.pricing-area .col-md-3 a {
  display: table;
  margin-left: auto;
  padding-right: 20px;
}

/* Order Page Ends */


/* Signup Page Starts */
.user-area-section .form_group .eye-icon {
  background: transparent;
  padding: 0;
  position: absolute;
  top: 13px;
  right: 15px;
  cursor: pointer;
}

.user-area-section .form_group .eye-icon img {
  width: 23px;
  height: 23px;
}

.user-area-section .form_group .text-danger {
  position: absolute;
  font-size: 11px;
  bottom: -24px;
  left: 3px;
}

.signUp_wrapper {
  height: auto !important;
  padding: 60px 0 100px;
}

.signUp_wrapper .login-box {
  max-width: 100%;
}

.form_group input:-internal-autofill-selected {
  background-color: #fff !important;
}

.signUp_wrapper h4 {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  margin: 0 2px 16px;
}

.signUp_wrapper .mb-4 {
  margin-bottom: 1rem !important;
}

[type="radio"]:checked,
[type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}

[type="radio"]:checked+label,
[type="radio"]:not(:checked)+label {
  position: relative;
  padding-left: 22px;
  cursor: pointer;
  display: inline-block;
  font-weight: 400 !important;
  font-size: 16px;
  line-height: 140%;
  color: #000000;
  margin-left: 6px;

}

[type="radio"]:checked+label:before,
[type="radio"]:not(:checked)+label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 14px;
  height: 14px;
  border: 1px solid #000000;
  border-radius: 100%;
  background: #fff;
}

[type="radio"]:checked+label:after,
[type="radio"]:not(:checked)+label:after {
  content: '';
  width: 8px;
  height: 8px;
  background: #000000;
  position: absolute;
  top: 8px;
  left: 3px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

[type="radio"]:not(:checked)+label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

[type="radio"]:checked+label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.signUp_wrapper {
  margin-bottom: 35px !important;
}

.signup_copyRight {
  margin-bottom: 30px;
}

.user-area-section.signUp_wrapper:before {
  top: 12px;
}

.forgotPass_wrapper label {
  font-weight: 400 !important;
  font-size: 16px;
  line-height: 140%;
  color: #000000;
}

.privacy_ul {
  margin-bottom: 32px;
}

.privacy_ul li {
  margin: 0px;
  color: #000000;
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  position: relative;
  padding-left: 18px;
  margin-bottom: 2px;
}

.privacy_ul li img {
  position: absolute;
  top: 7px;
  left: 0;
}

/* Signup Page Ends */




/*========== RESPONSIVE STARTS ==========*/

@media (min-width: 1200px) {
  .menu_Rightside {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: flex-end;
    gap: 18px;
  }
}

@media (max-width: 1199px) {
  .menu_Rightside {
    display: flex;
    justify-content: flex-end;
    gap: 24px;
    align-items: center;
  }
}

@media (min-width: 1024px) and (max-width: 1200px) {
  .newCTA_wrapper ul li {
    width: 45.3%;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .cart_wrapper .billing_cont .main-btn {
    padding: 10px 0;
  }

  h1 {
    font-weight: 600;
    font-size: 38px;
    line-height: 52px;
  }

  .cart_footer .cartSelect_box {
    margin: 6px 0 40px;
  }

  .mt-100 {
    margin-top: 60px;
  }

  .home_banner button {
    margin: 5px 0;
  }

  .home_banner:after {
    background-size: 400px;
    bottom: -80px;
    height: 105px;
    width: 400px;
  }

  .home_banner {
    padding-bottom: 30px;
  }

  .pricing-area .pl-60 {
    padding-left: 0;
  }

  .pb-110 {
    padding-bottom: 80px;
  }

  .pt-120 {
    padding-top: 90px;
  }

  .newCTA_wrapper ul li {
    width: 45.3%;
    margin-right: 30px;
  }

  .newCTA_wrapper ul li label {
    font-size: 13px;
    margin: 0 8px 6px;
  }

  .newCTA_wrapper h2 {
    margin-bottom: 25px;
  }

  .wantedItems_wrapper ul li {
    padding: 22px 12px;
    margin: 25px 0;
    gap: 0 26px;
    width: 85%;
  }

  h2 {
    font-size: 28px;
    line-height: 28px;
  }

  .footer-area ul {
    flex-wrap: wrap;
  }

  .newCTA_wrapper {
    background-size: cover;
    padding: 160px 0 60px;
  }

  .select-dropdown .input-datepicker:before,
  .customSelect:before {
    height: 7px;
    width: 11px;
    top: 22px;
    right: 7px;
  }

  .my_cart .select-dropdown .input-datepicker:before,
  .customSelect:before,
  #rentModal .select-dropdown .input-datepicker:before,
  .customSelect:before,
  .bundle_sidebar .select-dropdown .input-datepicker:before,
  .customSelect:before,
  .product .select-dropdown .input-datepicker:before,
  .customSelect:before {

    top: 11px;

  }

  .cart_details .select-dropdown .input-datepicker:before,
  .customSelect:before {
    top: 22px;
  }

  .cart-pages .duration-select {
    width: 100%;
  }

  .cart_wrapper .select-dropdown label {
    width: 40%;
  }

  .cart-pages .input-datepicker {
    width: 60% !important;
  }

  .cart_footer .customSelect:before {
    top: 22px;
    right: 12px;
  }

  .select-dropdown .input-datepicker {
    width: 60%;
  }

  .pr-150 {
    padding-right: 100px;
  }

  .pl-150 {
    padding-left: 100px;
  }

  .orders_wrapper.contactPage_wrapper select {
    width: 48%;
  }

  .orders_wrapper .customSelect:before {
    top: 24px;
  }
}

@media (max-width: 767px) {
  .payment-options .order-payment-box .single-radio {
    width: 31%;
  }

  .cart_wrapper .table thead th {
    padding: 15px 0 !important;
  }

  .header-navigation .blue-btn {
    display: none;
  }

  .header-navigation .nav-menu .blue-btn {
    display: table !important;
    width: 30%;
    text-align: center;
    line-height: 21px;
  }

  .cart_footer .cartSelect_box {
    margin: 8px 0 35px;
  }

  .header-navigation {
    padding: 4px 0 0;
  }

  .signin--btn {
    display: none;
  }

  h1 {
    font-size: 35px;
    line-height: 48px;
  }

  .mt-100 {
    margin-top: 60px;
  }

  p {
    font-size: 14px;
    line-height: 26px;
  }

  .main-btn {
    height: 40px;
    padding: 6px 20px;
    font-size: 13px;
    line-height: 18px;
  }

  .mt-50 {
    margin-top: 30px;
  }

  .home_banner button {
    margin: 5px 0;
  }

  .home_banner:after {
    background-size: 310px;
    bottom: -20px;
    height: 84px;
    width: 310px;
  }

  .home_banner {
    padding-bottom: 60px;
  }

  .pb-110 {
    padding-bottom: 50px;
  }

  .pt-120 {
    padding-top: 50px;
  }

  .pricing-area h2 {
    text-align: center;
  }

  h2 {
    font-size: 26px;
    line-height: 30px;
  }

  h4 {
    font-size: 20px;
    line-height: 27px;
  }

  .cart_details2 {
    margin-top: 25px;
  }

  .pricing-area .col-lg-2 a {
    display: table;
    margin: 0 auto;
    padding-left: 0;
  }

  .pricing-bg:after {
    background-size: 200px;
    height: 60px;
    width: 200px;
  }

  .pricing-area .pl-15 {
    padding-left: 0;
  }

  .newCTA_wrapper {
    background-size: cover;
    padding: 220px 0 60px;
  }

  .newCTA_wrapper h2 {
    margin-bottom: 20px;
  }

  .newCTA_wrapper ul li {
    width: 100%;
    margin-right: 0;
  }

  .newCTA_wrapper ul {
    gap: 13px 0;
  }

  .txt {
    padding: 10px 12px;
    font-size: 13px;
  }

  .newCTA_wrapper ul li label {
    font-size: 13px;
    margin: 0 6px 6px;
  }

  .wantedItems_wrapper ul li {
    padding: 15px 15px;
    margin: 20px 0;
    gap: 0 0;
    width: 100%;
    flex-wrap: wrap;
  }

  .wantedItems_wrapper .items-cont {
    gap: 11px;
    width: 100%;
  }

  .footer-area-one .footer-widget {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .footer-area ul {
    flex-wrap: wrap;
  }

  .footer-area ul li {
    font-size: 14px;
    line-height: 30px;
  }

  .nav-menu .blue-btn {
    margin-top: 20px;
    margin-left: 12px;
    display: table;
  }

  body {
    font-family: var(--openSans);
    font-weight: normal;
    font-style: normal;
    color: var(--body-color);
    font-size: 14px;
    line-height: 24px;
    overflow-x: hidden;
  }

  body {
    font-size: 14px;
    line-height: 24px;
  }

  .bundleList_wrapper .dropdown {
    margin: 17px 0 5px;
    display: table;
    margin-right: auto;
  }

  .bundleList_wrapper .dropdown label {
    font-size: 14px;
    line-height: 19px;
  }

  .bundle_sidebar h5 {
    font-size: 15px;
    line-height: 22px;
    margin: 4px 0 8px;
  }

  .select-dropdown label {
    font-size: 14px;
    line-height: 20px;
  }

  .select-dropdown .input-datepicker:before,
  .customSelect:before {
    height: 6px;
    width: 10px;
    top: 22px;
    right: 7px;
  }

  .select-dropdown .input-datepicker input,
  .select-dropdown .input-datepicker select,
  .customSelect select {
    font-size: 13px;
  }

  .sidebar--cont {
    margin: 10px 0 20px;
  }

  .bundleList_ul .card {
    padding: 15px;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }

  .bundleList_ul .card-cont {
    width: 100%;
  }

  p {
    font-size: 15px;
    line-height: 25px;
  }

  .bundleDetails_wrapper .container {
    padding: 28px 28px 12px;
  }

  h3 {
    font-size: 22px;
  }

  .contactPage_wrapper .pl-150 {
    padding-left: 0;
  }

  .contactPage_wrapper .pr-150 {
    padding-right: 0;
  }

  .contactPage_wrapper:after {
    background-size: 300px;
    width: 300px;
    height: 46px;
  }

  .contactPage_wrapper:before {
    background-size: 300px;
    width: 300px;
    height: 57px;
  }

  .contactPage_wrapper .container {
    padding-top: 40px;
    padding-bottom: 60px;
    width: 93%;
  }

  .contactPage_wrapper label {
    font-size: 14px;
    margin-left: 10px;
  }

  .form-checkbox label {
    font-size: 14px;
  }

  .orders_wrapper table {
    margin: 10px 0 20px;
  }

  .orders_wrapper table td,
  .orders_wrapper table th {
    font-size: 13px;
    line-height: 18px;
    padding: 0.35rem;
    padding-top: 7px;
    padding-bottom: 6px;
  }

  .orders_wrapper.contactPage_wrapper .container {
    padding: 28px 25px 80px !important;
  }

  .orders_wrapper .customSelect {
    width: 50%;
  }

  .orders_wrapper.contactPage_wrapper select {
    margin-left: 0;
    padding: 9px 13px;
    width: 100%;
  }

  .orders_wrapper .customSelect:before {
    top: 17px;
    right: 9px;
  }
}

.top_green_heading {
  column-gap: 10px;
}

.top_green_heading {
  margin-bottom: 34px !important;
}

.top_green_heading h3 {
  color: #309341;
  font-size: 32px;
  font-weight: 600;
  font-family: Open Sans;
}

.summernote-content h5 {
  font-weight: 600;
  color: #000;
  font-size: 18px;
  display: table;
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 5px;
  margin-top: 32px;
}

.term_condition_page {
  padding-top: 150px;
  padding-bottom: 40px;
}

.signup_btn {
  font-weight: 600;
}

#rentModal .modal-content {
  border-radius: 20px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  border-color: transparent;
}

#rentModal .select-dropdown {
  width: 80%;
}

#rentModal input[type="text"],
#rentModal .select-dropdown .input-datepicker select,
#rentModal input[type="number"] {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #D9D9D9 !important;
  height: 32px;
  padding: 0 10px;
  padding-right: 31px;

}

#rentModal .rent-btn {
  padding: 0 1rem;
}

#rentModal .close {
  font-size: 2rem;
  font-weight: 400;
  line-height: 0;

}

#rentModal input[type="number"] {
  text-align: center;
  padding-right: 10px !important;
}

#equipment-list-container .pagination .page-link {
  width: 100%;
  border-radius: 0px;
  background-color: transparent;
  border: none;
  color: #000000;
  line-height: 27px;

}

#equipment-list-container li.page-item:last-child {
  border-right: none;
}

#equipment-list-container li.page-item {
  border-right: 1px solid;
}

#equipment-list-container li.page-item.active a {
  color: #309341;
  font-weight: 600;
}

#equipment-list-container .pagination-summary {
  margin-top: 10px;
  color: #000;
  font-size: 16px;
  line-height: 24px;
}

#equipment-list-container a.page-link:hover {
  color: green;
}

.resetpass_wrapper img.uploaded-img {
  position: relative;
  top: 0;
}

.user-login-container .main-btn {
  font-weight: 600;
}

.modal .select-dropdown label {
  width: 38%;
  display: table;
}

.modal .select-dropdown .input-datepicker,
.modal .form-controll {
  width: 62%;
}

.checkavbt_btn {
  font-size: 14px;
}

.bundleList_wrapper .pagination .page-item:first-child a,
.bundleList_wrapper .pagination .page-item:last-child a {
  position: relative;
}

.bundleList_wrapper .pagination .page-item:first-child a:before,
.bundleList_wrapper .pagination .page-item:last-child a:before {
  content: "";
  background: url(../img/left-forward.png);
  background-repeat: no-repeat !important;
  background-size: 7px !important;
  height: 9px;
  width: 7px;
  position: absolute;
  top: 18px;
  left: -4px;
}

.bundleList_wrapper .pagination .page-item:last-child a:before {
  background: url(../img/right-forward.png);
  left: auto;
  right: -4px;
}

@media (min-width: 1400px) {

  .login_wrapper .row,
  .login_wrapper .col-lg-8,
  .login_wrapper .login-box {
    /* height: calc(100vh - 104px); */
  }

  .login_wrapper .account-signup {
    /* position: absolute;
    bottom: 42px;
    left: 50%;
    transform: translateX(-50%); */
  }
}


@media (max-width:767px) {
  .summernote-content h5 {
    font-size: 16px;
    padding-bottom: 4px;
    margin-top: 16px;
  }

  .cartEmpty_wrapper .container {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 100px 0 !important;
  }

  .cartEmpty_wrapper .container .row {
    margin: 0;
  }

  .cartEmpty_wrapper {
    padding: 45px 0;
    height: 100vh;
    position: relative;
  }

  .search-container .search-popup {
    bottom: -80px;
    left: 190%;
  }

  .search-container,
  .cart-desk {
    display: none;
  }

  .header-navigation .search-container.search-desk {
    display: none !important;
  }

  .header-navigation .search-container {
    display: block !important;
  }

  .cartMob {
    display: block !important;
  }

  .cart_details .select-dropdown .input-datepicker:before,
  .customSelect:before {
    top: 22px !important;
  }

  .header-navigation.breakpoint-on .primary-menu {
    padding: 15px 27px 15px 7px;
  }

  .header-area-one .site-branding,
  .header-area-two .site-branding {
    margin-right: 18%;
  }

  .header-navigation .navbar-toggler {
    margin-left: 0px;
  }

  .main-btn {
    padding: 6px 14px !important;

  }

  .blue-btn {
    margin-left: 11px;
  }

  .home_banner .mt-100 {
    margin-top: 30px;
  }

  .pricing-area .col-md-3 a {
    margin-top: 10px;
  }

  .wantedItems_wrapper {
    padding: 40px 0 40px;
  }

  .bundleDetails_wrapper {
    padding: 30px 0px;
  }

  .user-area-section.user-login-container {
    margin: 15px;
  }

  .signUp_wrapper {
    padding: 30px 0 70px;
  }

  .dis_none {
    display: none;
  }

  .contactPage_wrapper .contact-form {
    margin-top: 30px;
  }

  .orders_wrapper {
    padding-top: 30px;
  }

  .cart-pages .duration-select {
    width: 100%;
  }

  .cart_wrapper .select-dropdown label {
    width: 40%;
  }

  .cart-pages .input-datepicker {
    width: 60% !important;
  }

  .contactPage_wrapper textarea {
    resize: none;
  }

  .my_cart .select-dropdown .input-datepicker:before,
  .customSelect:before,
  #rentModal .select-dropdown .input-datepicker:before,
  .customSelect:before,
  .bundle_sidebar .select-dropdown .input-datepicker:before,
  .customSelect:before,
  .product .select-dropdown .input-datepicker:before,
  .customSelect:before {
    top: 11px;

  }

  .cart_wrapper .cart-pages .datePicker_ul {
    gap: 0px !important;
    justify-content: space-between !important;
  }

  .cart_wrapper .container {
    padding: 15px;
  }

  .cart_wrapper .table thead th:first-child {
    padding-left: 20px !important;

  }

  .cart_wrapper .table thead th:last-child,
  .cart_wrapper .table tbody td:last-child {
    padding-right: 20px !important;

  }

  .cart_wrapper .table .product,
  .cart-pages .datePicker_ul,
  .cart_navigation ul {
    flex-wrap: wrap;
  }

  .cart_wrapper .table .content,
  .cart-pages .datePicker_ul li,
  .cart_navigation ul li,
  .cart_navigation ul li a {
    width: 100%;
  }

  .cart-pages .datePicker_ul {
    gap: 0px;

  }

  .cart_wrapper .table .product button {
    margin-top: 15px;
  }

  .cart_wrapper .table thead th {
    font-size: 14px;
    line-height: 18px;
  }

  .cart_navigation ul li a {
    padding: 12px 6px 12px;

  }

  .cart_navigation ul li:after {
    display: none;
  }

  .cart_wrapper .col-12 {
    margin-top: 0px !important;
  }

  .cart_wrapper h3 {
    margin-bottom: 0;
  }

  .billing_cont {
    padding-left: 0px;
    margin-top: 25px;
  }

  .cart_details {
    padding-right: 0px;
  }

}

@media (max-width:1024px) {
  #rentModal .modal-dialog {
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .user-area-section.user-login-container:after,
  .user-area-section.user-login-container:before {
    display: none;
  }

}

@media (max-width:1280px) {
  .user-area-section.user-login-container:after {
    left: 0;
    bottom: 0;
    background-size: 355px;
  }

  .user-area-section.user-login-container:before {
    right: 0;
    top: 0;

  }
}

.whatsapp-btn {
  display: none;
}

@media (max-width:1199px) {
  .cart_wrapper .container {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width:991px) {

  .user-dashboard .container .user-sidebar,
  .user-dashboard .profile-cont {
    padding-top: 30px;
    padding-bottom: 0px;
  }

  .user-dashboard .container {
    padding: 0 15px;
  }

  .user-dashboard .user-sidebar .links {
    margin-left: 0px;
  }

  .user-dashboard .user-sidebar {
    margin-bottom: 0px;
  }

  .user-dashboard .account-info {
    padding: 0px;
    padding-bottom: 0px;
  }

  .user-dashboard .col-lg-4:after {
    display: none;
  }

  .user-dashboard .form-wraper {
    flex-wrap: wrap;
  }

  .user-dashboard .contact_info {
    width: 100%;
  }

  .user-dashboard .contact_info .main-btn {
    line-height: 27px;
  }

  .user-dashboard .offset-md-1 {
    margin-left: 0px;
  }

  .user-dashboard .account-address {
    padding: 10px !important;

  }

  .user-profile-details {
    padding-bottom: 30px;
  }
}


/* New Member Registration */
.newMember_form {
  height: auto !important;
  padding: 60px 0 100px;
}

.newMember_form .login-box {
  max-width: 510px;
}

.newMember_form label {
  font-weight: 400 !important;
  color: #000;
  margin-bottom: 4px;
}

.newMember_form .mb-4 {
  margin-bottom: 15px !important;
}

.newMember_form .login-box h2 {
  margin-bottom: 19px;
  margin-top: 20px;
}

.newMember_form .login-box p {
  margin-bottom: 45px;
}

@media (max-width: 767px) {
  .newMember_form {
    padding: 30px 0 70px;
  }

  .newMember_form .login-box p br {
    display: none;
  }
}

/* New Member Registration Ends*/


/* Equipment Details Page */
.breadcrumbs-area:after {
  display: none;
}

.hero-area .breadcrumbs-style {
  background-color: transparent !important;
}

.manufature_name a {
  margin: 0 !important;
}

.bundleDetails_wrapper {
  padding: 20px 0 50px;
}

@media (max-width: 767px) {
  .bundleDetails_wrapper {
    padding: 20px 13px 50px;
  }
}

@media (min-width: 767px) and (max-width: 1023px) {
  .bundleDetails_wrapper .container {
    padding: 38px 40px 35px;
  }
}

/* Equipment Details Page Ends */


/* Vendor Landing Page Starts */
.vendorLanding_page .home_banner h1 {
  font-size: 32px;
  line-height: 43px;
  font-weight: 700;
}

.vendorLanding_page .home_banner p {
  margin: 32px 0 40px;
}

.vendorLanding_page .banner-img {
  padding: 8px 0 0;
}

.vendorLanding_page .banner-img .img1 {
  width: 95px;
  top: -59px;
}

.vendorLanding_page .banner-img .img2 {
  width: 95px;
  bottom: -37px;
  left: 40px;
  z-index: -1;
}

.vendorLanding_page .home_banner:after {
  background: url(../img/doller-icon.png);
  background-repeat: no-repeat;
  background-size: 60px;
  right: 120px;
  width: 60px;
  height: 69px;
  bottom: 0;
}

.vendorCTA_wrapper {
  background: url(../img/vendor-cta1.png);
  background-size: 100% 100%;
  background-position: center;
  padding: 225px 0;
}

.vendorCTA_wrapper h2 {
  color: #fff;
  margin-bottom: 25px;
  font-weight: 700;
  font-size: 30px;
}

.vendorCTA_wrapper li {
  color: #fff;
  font-weight: 600;
  position: relative;
}

.vendorCTA_wrapper li:before {
  content: "";
  background-color: #fff;
  height: 6px;
  width: 6px;
  display: inline-table;
  border-radius: 50%;
  position: relative;
  top: -2px;
  left: -7px;
}

.vendorLanding_page .main-btn {
  font-weight: 700;
  padding: 10px 45px;
  white-space: nowrap;
}

.company_wrapper {
  padding: 100px 0 200px;
  position: relative;
}

.company_wrapper:after {
  content: "";
  background: url(../img/eqp-workLayer1.png);
  background-repeat: no-repeat;
  background-size: 800px;
  height: 246px;
  width: 800px;
  background-position: center;
  position: absolute;
  bottom: -32px;
  z-index: -1;
  left: 0;
}

.company_wrapper ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px 0;
}

.company_wrapper ul li {
  width: 25%;
}

.vendorLanding_page h2 {
  font-weight: 700;
  font-size: 30px;
}

.equipmentWork_wrapper ul {
  display: flex;
  align-items: center;
}

.equipmentWork_wrapper ul li {
  width: 50%;
  padding: 60px 0;
}

.equipmentWork_wrapper ul li h5 {
  color: #000;
  font-family: var(--inter);
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  position: relative;
  padding-left: 70px;
}

.equipmentWork_wrapper ul li h5 img {
  position: absolute;
  top: 0;
  left: 0;
}

.vendorLanding_page .btn-group1 {
  display: flex;
  justify-content: center;
}

.vendorLanding_page .home_banner .btn-group1 {
  display: unset;
}

.tecMember_wrapper {
  background: #81CDA1;
  padding: 90px 0;
}

.tecMember_wrapper h2 {
  color: #fff;
  font-size: 42px;
}

.tecMember_wrapper p {
  color: #fff;
  margin: 20px 0 50px;
}

.tecMember_wrapper .member_form {
  width: 40%;
  margin: 0 auto;
}

.tecMember_wrapper .txt {
  margin-bottom: 20px;
}

.tecMember_wrapper .main-btn {
  margin-top: 30px;
}

.vendorLanding_page .stars {
  display: flex;
  gap: 6px;
}

.vendorLanding_page .stars li {
  gap: 0;
  margin: 0;
  width: auto;
  padding: 0;
}

.vendorLanding_page .stars li i {
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  font-style: normal;
  color: #FFC053;
}

.vendorLanding_page .wantedItems_wrapper .stars li:nth-child(even) {
  margin-left: 0;
}

.vendorLanding_page .wantedItems_wrapper .testi_Header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.equpmentCTA_section {
  background: url(../img/vendorCTA-last.png);
  background-size: 100% 100%;
  background-position: center;
  padding: 330px 0 125px;
}

.equpmentCTA_section h2 {
  color: #fff;
  margin-bottom: 50px;
}

.equpmentCTA_section .btn-grey {
  border-color: #fff;
  color: #fff;
}

.vendorLanding_page .wantedItems_wrapper .img-cont {
  width: 18%;
}

.vendorLanding_page .vendorLanding_page h2 {
  font-size: 23px;
}

.vendorLanding_page .testi_Header p {
  font-size: 15px;
  font-style: italic;
}

.vendorLanding_page .wantedItems_wrapper .items-cont {
  gap: 14px;
}

.vendorLanding_page .wantedItems_wrapper ul li {
  width: 68%;
}

.vendorLanding_page .wantedItems_wrapper .header-main {
  margin-bottom: 80px;
}

.vendorLanding_page .testi_Header h2 {
  font-size: 24px;
}

.vendorLanding_page .equipmentWork_wrapper {
  position: relative;
  padding-bottom: 380px;
}

.vendorLanding_page .equipmentWork_wrapper:before {
  content: "";
  background: url(../img/eqp-workLayer2.png);
  background-size: 700px;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: 280px;
  height: 200px;
  width: 700px;
}

.vendorLanding_page .equipmentWork_wrapper .btn-group1 {
  margin-top: 20px;
}

.vendorLanding_page .equipmentWork_wrapper:after {
  content: "";
  background: url(../img/vendor-layers.png);
  background-size: 100% auto;
  background-position: center;
  bottom: 90px;
  left: 0;
  right: 0;
  height: 290px;
  position: absolute;
  width: 100%;
  background-repeat: no-repeat;
}

.vendorLanding_page .btn-group1 .main-btn:hover {
  background-color: #000;
  border-color: #000;
  color: #fff;
}


@media (min-width: 767px) {
  .vendorLanding_page .video-container video {
    height: 298px;
  }
}

@media (max-width: 767px) {
  .equipmnetModal .modal-dialog{
    position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%,-50%) !important;
      width: 74%;
      max-width: unset;
      margin-top: 0; 
      margin-left: 0;
      margin-right: 0;
  }
  .equipmnetModal .modal-dialog .select-dropdown {
    width: 100%;
    justify-content: unset;
}
.equipmnetModal .mr-2 {
  width: 31%;
}
.equipmnetModal .input-duration {
  width: 100%;
}
  .bundleList_ul .card-img {
    width: 100%;
  }

  .company_wrapper:after,
  .vendorLanding_page .equipmentWork_wrapper:before,
  .vendorLanding_page .equipmentWork_wrapper:after {
    display: none;
  }

  .vendorLanding_page .home_banner h1 {
    font-size: 26px;
    line-height: 34px;
  }

  .vendorLanding_page .home_banner p {
    margin: 15px 0 20px;
  }

  .vendorLanding_page .banner-img {
    margin-top: 35px;
  }

  .vendorLanding_page .banner-img .img1 {
    width: 55px;
    top: -27px;
  }

  .vendorLanding_page .banner-img .img2 {
    width: 55px;
    bottom: -25px;
  }

  .vendorLanding_page .home_banner:after {
    background-size: 45px;
    width: 45px;
    height: 47px;
    bottom: 14px;
  }

  .vendorLanding_page h2 {
    font-size: 25px;
  }

  .vendorCTA_wrapper li {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 6px;
  }

  .vendorCTA_wrapper {
    background-size: cover;
    padding: 100px 0;
  }

  .company_wrapper {
    padding: 40px 0 70px;
  }

  .vendorLanding_page h2 br {
    display: none;
  }

  .company_wrapper ul {
    margin: 38px 0;
    flex-wrap: wrap;
    gap: 20px;
  }

  .company_wrapper ul li {
    width: 40%;
  }

  .equipmentWork_wrapper ul {
    flex-wrap: wrap;
    margin: 40px 0;
  }

  .equipmentWork_wrapper ul li {
    width: 100%;
    padding: 21px 0 0;
  }

  .equipmentWork_wrapper ul:nth-child(even) {
    flex-direction: column-reverse;
  }

  .vendorLanding_page .equipmentWork_wrapper {
    padding-bottom: 80px;
  }

  .tecMember_wrapper {
    padding: 50px 0;
  }

  .tecMember_wrapper .member_form {
    width: 85%;
  }

  .tecMember_wrapper .txt {
    margin-bottom: 12px;
  }

  .tecMember_wrapper .main-btn {
    margin-top: 10px;
  }

  .vendorLanding_page .wantedItems_wrapper ul li {
    width: 100%;
  }

  .vendorLanding_page .wantedItems_wrapper .testi_Header {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }

  .vendorLanding_page .main-btn {
    padding: 8px 14px !important;
  }

  .equpmentCTA_section {
    background-size: cover;
    padding: 140px 0 45px;
  }

  .equpmentCTA_section h2 {
    margin-bottom: 20px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .bundleList_ul .card {
    align-items: flex-start;
  }

  .vendorLanding_page .home_banner h1 {
    font-size: 24px;
    line-height: 35px;
  }

  .vendorLanding_page .home_banner p {
    margin: 18px 0 20px;
  }

  .vendorLanding_page .video-container video {
    height: 197px;
  }

  .vendorLanding_page .banner-img .img1 {
    width: 59px;
    top: -32px;
  }

  .vendorLanding_page .banner-img .img2 {
    width: 65px;
    bottom: -25px;
  }

  .vendorCTA_wrapper {
    background-size: cover;
    padding: 115px 0;
  }

  .vendorLanding_page h2 {
    font-size: 25px;
    line-height: 30px;
  }

  .company_wrapper:after {
    background-size: 470px;
    height: 147px;
    width: 470px;
    bottom: -12px;
  }

  .company_wrapper ul li {
    padding: 0 15px;
  }

  .company_wrapper ul {
    margin: 40px 0;
  }

  .vendorLanding_page .main-btn {
    padding: 10px 24px;
  }

  .company_wrapper {
    padding: 60px 0 150px;
  }

  .vendorLanding_page .equipmentWork_wrapper:before {
    background-size: 400px;
    top: 280px;
    height: 130px;
    width: 400px;
  }

  .equipmentWork_wrapper ul li {
    padding: 40px 0;
  }

  .vendorLanding_page .equipmentWork_wrapper {
    padding-bottom: 220px;
  }

  .vendorLanding_page .equipmentWork_wrapper:after {
    bottom: 60px;
    height: 160px;
    width: 100%;
  }

  .tecMember_wrapper {
    padding: 50px 0;
  }

  .tecMember_wrapper p {
    margin: 10px 0 30px;
  }

  .tecMember_wrapper p br {
    display: none;
  }

  .tecMember_wrapper .member_form {
    width: 55%;
  }

  .tecMember_wrapper .txt {
    margin-bottom: 15px;
  }

  .tecMember_wrapper .main-btn {
    margin-top: 15px;
  }

  .wantedItems_wrapper {
    padding: 60px 0 30px;
  }

  .vendorLanding_page .wantedItems_wrapper ul li {
    width: 90%;
  }

  .equpmentCTA_section {
    background-size: cover;
    padding: 200px 0 65px;
  }
}

@media (min-width: 1024px) and (max-width: 1200px) {
  .vendorLanding_page .main-btn {
    padding: 10px 35px;
  }
}

.header-navigation .blue-btn {
  padding: 13px 27px;
  white-space: nowrap;
}

.header-navigation .nav-menu .blue-btn {
  display: none;
}

.header-navigation .search-container.search-desk {
  display: block;
}

.header-navigation .nav-menu .search-container {
  display: none;
}

.cartMob {
  display: none;
}

/* Vendor Landing Page Ends */
#editModal .dft_address strong {
  font-weight: 700;
  margin-left: 5px;
}
.card-img .discount {
  background-color: var(--primary-color);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--heading-color);
  position: absolute;
  top: 20px;
  left: 20px;
}

.card-img .discount {
  color: #0C1239;
}
label.bold-label {
  font-weight: bold;
  opacity: 1;
}

.greyed-out-label {
  opacity: 0.5; 
}


.bookingPage_wrapper.user-dashboard .container {
  padding: 10px 16px;
}
.bookingPage_wrapper .dataTables_length{
  display: none;
}
.bookingPage_wrapper.user-dashboard .title{  
  border-bottom: none !important;
  padding-bottom: 0;
  margin-bottom: -28px;
  padding-left: 18px;
}
.bookingPage_wrapper table th
{
  color: #000;
  font-size: 16px;
}
.bookingPage_wrapper table td{
  padding-left: 18px !important;
  padding-right: 18px !important;
}
.bookingPage_wrapper table td, .bookingPage_wrapper table td a
{
  color: #000 !important;
  font-size: 16px;
  font-weight: 400;
}
.bookingPage_wrapper .table-striped tbody tr:nth-of-type(odd){
  background-color: #fff;;
}
.bookingPage_wrapper .table-striped tbody tr{
  border-bottom: 1px solid rgb(0 0 0 / 10%) !important;
}
.bookingPage_wrapper .table-striped tbody tr:last-child{
  border-bottom: none !important;
}
.bookingPage_wrapper table{
  border-collapse: collapse !important;
  border-bottom: none !important;
}
.bookingPage_wrapper.user-dashboard .main-table .dataTables_wrapper .dataTables_paginate .paginate_button .page-link{
  font-size: 12px;
}
.bookingPage_wrapper.user-dashboard .main-table .dataTables_wrapper .dataTables_paginate .paginate_button{
  margin-left: 0;
}
.bookingPage_wrapper.user-dashboard .main-table .dataTables_wrapper .dataTables_paginate .paginate_button.active .page-link, .bookingPage_wrapper.user-dashboard .main-table .dataTables_wrapper .dataTables_paginate .paginate_button.active .page-link:hover {
  color: #fff !important;
  background-color: #00b847 !important;
}
.bookingPage_wrapper .account-info{
  padding-left: 12px;
}
.bookingPage_wrapper .dataTables_info
{
  color: #000;
  font-size: 14px;
  padding-left: 18px;
}
.bookingPage_wrapper.user-dashboard .main-table .dataTables_wrapper td a.btn {
  border: 1px solid #FAD347;
}
.bookingPage_wrapper.user-dashboard .main-table .dataTables_wrapper td a.btn:hover {
  background-color: #FAD347 !important;
}
.bookingPage_wrapper.user-dashboard .view-order-page .order-info-area .download .btn {
  background: #FAD347;
  color: #000
 }
 .bookingPage_wrapper.user-dashboard .billing-add-area li a{
  color: #000 !important;
 }

 .bookingPage_wrapper.user-dashboard .main-info .badge-success {
    background-color: #28a745;
}
 
@media (max-width: 767px){
  .bookingPage_wrapper .dataTables_filter{
    text-align: left !important;
    margin-top: 15px !important;
  }
  .bookingPage_wrapper.user-dashboard .title {
    padding-bottom: 0;
    margin-bottom: 0;
    padding-left: 0;
  }
  .bookingPage_wrapper table th {
    font-size: 14px;
    padding: 10px 10px;
  }
  .bookingPage_wrapper table td, .bookingPage_wrapper table td a {
    font-size: 13px;
    line-height: 20px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .bookingPage_wrapper div.dataTables_wrapper div.dataTables_info{
    margin-top: 0;
    margin-bottom: 0;
  }
  .bookingPage_wrapper div.dataTables_wrapper div div.dataTables_paginate ul.pagination {
    margin-top: 0;
  }
}
.view_as_radio{
  position: unset !important;
  margin: 10px;
}
.view_as_main{
  display: flex;
}




/**map-view**/
.bundleList_ul.list-group.map_view{
  display: -ms-flexbox;
  display: grid;
  -ms-flex-direction: column;
  flex-direction: row;
  padding-left: 0;
  margin-bottom: 0;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
}

.bundleList_ul.list-group.map_view .card {
  flex-direction: column;
  padding: 0;
  gap: 0;
}
.bundleList_ul.list-group.map_view .card p.mx-2.my-5.text-sm {
  min-height: 182px;
}

.bundleList_ul.list-group.map_view .card h5.mb-2 {
  min-height: 45px;
}
.bundleList_ul.list-group.map_view .card .per_day{
  min-height: 30px;
}
.bundleList_ul.list-group.map_view .card-cont {
  width: 100%;
  padding: 20px;
}

.bundleList_ul.list-group.map_view .card-img {
  width: 100%;
  height: 270px;
  overflow: hidden;
  border-radius: 0 0 10px 10px;
}

.bundleList_ul.list-group.map_view card-img img {
  border-radius: 10px 10px 0 0;
}

.bundleList_ul.list-group.map_view .card-img .discount {
  top: 4px;
  left: 5px;
}

.map_view {
  margin-top: 15px;
}


.user-profile-details .edit-info-area #deleteProfileImageBtn
{
  color: red;
  cursor: pointer;
}
@media (min-width: 1023px){

.user-profile-details .edit-info-area #deleteProfileImageBtn
{
  color: red;
  position: absolute;
  bottom: 70px;
  left: 90px;
  cursor: pointer;
  z-index: 999;
}
}


/* Cart Rental Page Starts */
.cartRental_wrapper ul{
  padding-left: 21px;
}
.cartRental_wrapper li{
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  list-style: disc;
  margin-bottom: 15px;
}
.cartRental_wrapper li strong{
  font-weight: 700;
}
.cartRental_wrapper .form_details hr{
  border-color: #333;
  margin-top: 50px;
  margin-bottom: 8px;
}
.cartRental_wrapper .form_details{
  margin-bottom: 50px;
}
.cartRental_wrapper h5{
  color: #000;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%; 
}
.cartRental_wrapper .rental_tables ul{
  list-style: none;
  display: flex;
  justify-content: space-between;
  width: 57%;
  margin: 25px 0;
  padding-left: 0;
}
.cartRental_wrapper .rental_tables ul li{
list-style: none;
}
.cartRental_wrapper .rental_tables table{
  border: 1px solid #000;
  width: 100%;
}
.cartRental_wrapper .rental_tables table th, .cartRental_wrapper .rental_tables table td{
  border: 1px solid #000;
  text-align: center;
}
.cartRental_wrapper .rental_tables table th:nth-child(2), .cartRental_wrapper .rental_tables table td:nth-child(2){
  text-align: right;
}
.cartRental_wrapper .rental_tables table th{
  padding: 37px 24px 14px;
}
.cartRental_wrapper .rental_tables table td{
  padding: 12px 24px;
}
.cartRental_wrapper .rental_tables table th, .cartRental_wrapper .rental_tables table td{
  color: #000;
  font-size: 16px;
  font-style: italic;
  font-weight: 700;
  line-height: 150%; 
}
.cartRental_wrapper .rental_tables table td{
  font-style: normal;
  font-weight: 400;
  height: 49px;
}
.cartRental_wrapper .rental_tables table tfoot td:first-child{
  border-color: transparent;
  border-right-color: #000;
}
.cartRental_wrapper .rental_tables table td div{
  display: flex;
}
.cartRental_wrapper .rental_tables table td div span{
  color: #6B6B6B;
  font-style: italic;
  display: table;
  margin: 0 auto;
}
.delivered_badge{
  background-color: #309341 !important;
}
.checkbox_plusMinus .location-label{
  padding-left: 30px;
}
.checkbox_plusMinus .categories-label{
  padding-left: 30px;
}
.checkbox_plusMinus .plus-box, .checkbox_plusMinus .minus-box{
  position: absolute;
  top: 1px;
  left: 0;
  border-radius: 5px;
  border: 1px solid #929292;
    width: 20px;
    height: 20px;
    background-color: white;
    text-align: center;
    line-height: 20px;
    margin-right: 5px;
    font-size: 16px;
    color: black;
}
.checkbox_plusMinus input:checked+label:after {
  left: 37px;
}
.checkbox_plusMinus .state-list input:checked+label:after
{
  left: 8px;
}
.checkbox_plusMinus .sub-category-list input:checked+label:after
{
  left: 8px;
}
.checkbox_plusMinus .sidebar--cont
{
    /* DC: Location and Categories Sidebar */ 
  margin: 0px 0 0px 60px;
}
.thumb--img{
  height: 200px;
  object-fit: cover;
  
}
.venCard_details
{
  margin: 9px 0 20px;
  padding: 19px;
  list-style: none;
  border: 1px solid #b7b7b7;
  border-radius: 6px;
  width: 60%;
}
#rentAvailabilty .select-dropdown {
  width: 75%;
}
#rentAvailabilty .form-controll .form-control{
  display: inline-block;
    height: 45px;
    padding-left: 13px;
    outline: 0;
    background: #FFFFFF;
    border: 1px solid #D9D9D9;
    border-radius: 10px;
    color: #000000;
    font-weight: 400;
    font-size: 15px;
    text-align: center;
}
#rentAvailabilty .select-dropdown .input-datepicker:before{
  display: none;
}
#rentAvailabilty .input-datepicker{
  display: inline-block;
    height: 45px;
    padding-left: 13px;
    outline: 0;
    background: #FFFFFF;
    border: 1px solid #D9D9D9;
    border-radius: 10px;
    color: #000000;
    font-weight: 400;
    font-size: 15px;
    padding-right: 9px;
    width: 82%;
}
#rentAvailabilty .form-controll{
  width: 100%;
}
#rentAvailabilty .select-dropdown {
  width: 100%;
}
#rentAvailabilty  .select-dropdown label {
  width: 35%;
  display: table;
}
#rentAvailabilty  .close {
  position: absolute;
  top: 0px;
  right: 10px;
}
@media (max-width: 767px){
  .cartRental_wrapper .rental_tables .tableResponsive {
    overflow-x: auto;
    width: 100%;
    -webkit-overflow-scrolling: touch;
  }
  .cartRental_wrapper li {
    font-size: 15px;
  }
  .cartRental_wrapper .form_details hr {
    margin-top: 36px;
    margin-bottom: 6px;
  }
  .cartRental_wrapper .rental_tables table th, .cartRental_wrapper .rental_tables table td {
    font-size: 14px;
  }
  .cartRental_wrapper .rental_tables table th {
    padding: 7px 12px 8px;
  }
  .logo-header .logo{
    height: auto;
  }
}
/* Cart Rental Page Ends */