/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
:root {
  --main-color-one: #685be7;
  --main-color-one-rgb: 104, 91, 231;
  --main-color-two: #fce700;
  --main-color-two-rgb: 252, 231, 0;
  --secondary-color: #57CAF7;
  --secondary-color-rgb: 87, 202, 247;
  --secondary-color-two: #4D77FF;
  --secondary-color-two-rgb: 77, 119, 255;
  --success-color: #65C18C;
  --success-color-rgb: 101, 193, 140;
  --delete-color: #F44336;
  --delete-color-rgb: 244, 67, 54;
  --provide-1: #FEAC00;
  --provide-1-rgb: 254, 172, 0;
  --provide-2: #685BE7;
  --provide-2-rgb: 104, 91, 231;
  --provide-3: #FF008E;
  --provide-3-rgb: 255, 0, 142;
  --section-bg-1: #f8f8f8;
  --section-bg-2: #f1f1f1;
  --section-bg-3: #F8FAFF;
  --heading-color: #1D2635;
  --body-color: #777D86;
  --input-color: #464646;
  --border-color: #cccccc;
  --border-color-two: #ececec;
  --white: #fff;
  --white-rgb: 255, 255, 255;
  --black: #111;
  --black-rgb: 17, 17, 17;
  --paragraph-color: #464646;
  --light-color: #464646;
  --heading-font: "Plus Jakarta Sans", sans-serif;
  --body-font: "Manrope", sans-serif;
  --plusJakarta-font: "Plus Jakarta Sans", sans-serif;
  --manrope-font: "Manrope", sans-serif;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-x: hidden;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  -moz-osx-font-smoothing: grayscale;
  /* Firefox */
  -webkit-font-smoothing: antialiased;
  /* WebKit  */
}

body {
  margin: 0;
  color: var(--body-color);
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 26px;
}
@media only screen and (max-width: 480px) {
  body {
    font-size: 15px;
  }

  .navbar-area .nav-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .custom-container-one  .show-nav-content {
    margin: 0;
    margin-top: 7px;
    font-size: 13px;
  }


}
@media only screen and (max-width: 375px) {
  body {
    font-size: 14px;
  }
}

h1 {
  font-size: 60px;
  line-height: 1.0833333333;
}

h2 {
  font-size: 36px;
  line-height: 1.4444444444;
}
@media (min-width: 200px) and (max-width: 991.98px) {
  h2 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 575.98px) {
  h2 {
    font-size: 27px;
  }
}
@media only screen and (max-width: 480px) {
  h2 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 375px) {
  h2 {
    font-size: 24px;
  }
}

h3 {
  font-size: 28px;
  line-height: 1.0833333333;
}
@media (min-width: 200px) and (max-width: 991.98px) {
  h3 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 575.98px) {
  h3 {
    font-size: 25px;
  }
}
@media only screen and (max-width: 480px) {
  h3 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 375px) {
  h3 {
    font-size: 22px;
  }
}

h4 {
  font-size: 24px;
  line-height: 1.0833333333;
}
@media only screen and (max-width: 575.98px) {
  h4 {
    font-size: 23px;
  }
}
@media only screen and (max-width: 375px) {
  h4 {
    font-size: 21px;
  }
}

h5 {
  font-size: 20px;
  line-height: 1.2380952381;
}
@media only screen and (max-width: 375px) {
  h5 {
    font-size: 18px;
  }
}

h6 {
  font-size: 18px;
  line-height: 1.2380952381;
}
@media only screen and (max-width: 375px) {
  h6 {
    font-size: 16px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  margin: 0;
  -webkit-transition: 300ms;
  transition: 300ms;
}

p {
  color: var(--light-color);
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  margin-bottom: 0;
  line-height: 26px;
  font-size: 16px;
}

a {
  color: inherit;
  text-decoration: none;
  color: var(--extra-light-color);
  -webkit-transition: 300ms;
  transition: 300ms;
}

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

pre {
  word-break: break-word;
}

a i {
  padding: 0 2px;
}

img {
  max-width: 100%;
  height: auto;
}

.list-style-none {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list-none {
  margin: 0;
  padding: 0;
  list-style: none;
}

ol {
  counter-reset: counter;
  padding-left: 0;
}

ol li:before {
  counter-increment: counter;
  content: counter(counter);
  font-weight: 500;
  margin-right: 10px;
}

span {
  display: inline-block;
}

.desktop-center {
  text-align: center;
}

.form--control {
  width: 100%;
}

/* Common Style */
.margin-0 {
  margin: 0 !important;
}

.padding-0 {
  padding: 0 !important;
}

.radius-percent-50 {
  border-radius: 50% !important;
}

.radius-50 {
  border-radius: 50px !important;
}

.radius-40 {
  border-radius: 40px !important;
}

.radius-35 {
  border-radius: 35px !important;
}

.radius-30 {
  border-radius: 30px !important;
}

.radius-20 {
  border-radius: 20px !important;
}

.radius-15 {
  border-radius: 15px !important;
}

.radius-10 {
  border-radius: 10px !important;
}

.radius-5 {
  border-radius: 5px !important;
}

.radius-0 {
  border-radius: 0px !important;
}

.no-shadow {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.single-border-top {
  border-top: 1px solid rgba(221, 221, 221, 0.3);
}

.single-border {
  border: 1px solid rgba(221, 221, 221, 0.3);
}

.color-light {
  color: var(--light-color) !important;
}

.color-extra-light {
  color: var(--extra-light-color) !important;
}

.color-heading {
  color: var(--heading-color);
}

.section-bg-main {
  background-color: var(--main-color-one);
}

.section-bg-secondary {
  background-color: var(--secondary-color);
}

.section-bg-secondary2 {
  background-color: var(--secondary-color-two);
}

.section-bg-1 {
  background-color: var(--section-bg-1);
}

.section-bg-2 {
  background-color: #ffffff;
}

.section-bg-3 {
  background-color: var(--section-bg-3);
}

.color-one {
  color: var(--main-color-one);
}

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

.no-margin {
  margin: 0;
}

.lazyloads {
  display: block;
}

.center-text {
  text-align: center;
}

.tab-content-item {
  display: none;
}

.tab-content-item.active {
  display: block;
  -webkit-animation: 1s fade-effects;
          animation: 1s fade-effects;
}

@-webkit-keyframes fade-effects {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes fade-effects {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
.slider-inner-margin .slick-slide {
  margin: 12px;
}
.slider-inner-margin .slick-list {
  margin: -12px;
}

.slider-inner-margin-10 .slick-slide {
  margin: 5px;
}
.slider-inner-margin-10 .slick-list {
  margin: -5px;
}

.slick-slider-items.margin-reverse-24 {
  margin: -24px 0 0;
}

/*--------------------------------------------------------------
# Global
--------------------------------------------------------------*/
.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-800 {
  font-weight: 800 !important;
}

.fw-900 {
  font-weight: 900 !important;
}

.fs-12 {
  font-size: 12px !important;
}

.fs-13 {
  font-size: 13px !important;
}

.fs-14 {
  font-size: 14px !important;
}

.fs-15 {
  font-size: 15px !important;
}

.fs-16 {
  font-size: 16px !important;
}

.fs-17 {
  font-size: 17px !important;
}

.fs-18 {
  font-size: 18px !important;
}

.fs-19 {
  font-size: 19px !important;
}

.fs-20 {
  font-size: 20px !important;
}

.fs-22 {
  font-size: 22px !important;
}

.fs-24 {
  font-size: 24px !important;
}

.fs-25 {
  font-size: 25px !important;
}

.fs-26 {
  font-size: 26px !important;
}

.fs-27 {
  font-size: 27px !important;
}

.fs-28 {
  font-size: 28px !important;
}

.fs-30 {
  font-size: 30px !important;
}

.fs-32 {
  font-size: 32px !important;
}

.fs-36 {
  font-size: 36px !important;
}

.fs-46 {
  font-size: 46px !important;
}

.fs-65 {
  font-size: 65px !important;
}

.padding-top-10 {
  padding-top: 10px;
}

.padding-top-20 {
  padding-top: 20px;
}

.padding-top-25 {
  padding-top: 25px;
}

.padding-top-30 {
  padding-top: 30px;
}

.padding-top-35 {
  padding-top: 35px;
}

.padding-top-40 {
  padding-top: 40px;
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .padding-top-40 {
    padding-top: 30px !important;
  }
}

.padding-top-45 {
  padding-top: 45px;
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .padding-top-45 {
    padding-top: 30px !important;
  }
}

.padding-top-55 {
  padding-top: 55px;
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .padding-top-55 {
    padding-top: 40px !important;
  }
}

.padding-top-50 {
  padding-top: 50px;
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .padding-top-50 {
    padding-top: 35px !important;
  }
}

.padding-top-60 {
  padding-top: 60px;
}

.padding-top-65 {
  padding-top: 65px;
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .padding-top-65 {
    padding-top: 35px !important;
  }
}

.padding-top-70 {
  padding-top: 70px;
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .padding-top-70 {
    padding-top: 40px !important;
  }
}

.padding-top-75 {
  padding-top: 75px;
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .padding-top-75 {
    padding-top: 45px !important;
  }
}

.padding-top-80 {
  padding-top: 80px;
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .padding-top-80 {
    padding-top: 60px !important;
  }
}

.padding-top-85 {
  padding-top: 85px;
}

.padding-top-90 {
  padding-top: 90px;
}

.padding-top-95 {
  padding-top: 95px;
}

.padding-top-100 {
  padding-top: 100px;
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .padding-top-100 {
    padding-top: 70px !important;
  }
}

.padding-top-105 {
  padding-top: 105px;
}

.padding-top-110 {
  padding-top: 110px;
}

.padding-top-115 {
  padding-top: 115px;
}

.padding-top-120 {
  padding-top: 120px;
}

.padding-top-125 {
  padding-top: 125px;
}

.padding-top-130 {
  padding-top: 130px;
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .padding-top-130 {
    padding-top: 80px !important;
  }
}

.padding-top-135 {
  padding-top: 135px;
}

.padding-top-140 {
  padding-top: 140px;
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .padding-top-140 {
    padding-top: 80px !important;
  }
}

.padding-top-145 {
  padding-top: 140px;
}

.padding-top-150 {
  padding-top: 150px;
}

.padding-top-160 {
  padding-top: 160px;
}

.padding-top-190 {
  padding-top: 190px;
}

.padding-top-210 {
  padding-top: 210px;
}

.padding-top-260 {
  padding-top: 260px;
}

.padding-top-300 {
  padding-top: 300px;
}

.padding-bottom-10 {
  padding-bottom: 10px;
}

.padding-bottom-15 {
  padding-bottom: 15px;
}

.padding-bottom-20 {
  padding-bottom: 20px;
}

.padding-bottom-25 {
  padding-bottom: 25px;
}

.padding-bottom-30 {
  padding-bottom: 30px;
}

.padding-bottom-35 {
  padding-bottom: 35px;
}

.padding-bottom-40 {
  padding-bottom: 40px;
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .padding-bottom-40 {
    padding-bottom: 30px !important;
  }
}

.padding-bottom-45 {
  padding-bottom: 45px;
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .padding-bottom-45 {
    padding-bottom: 30px !important;
  }
}

.padding-bottom-50 {
  padding-bottom: 50px;
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .padding-bottom-50 {
    padding-bottom: 35px !important;
  }
}

.padding-bottom-55 {
  padding-bottom: 55px;
}

.padding-bottom-60 {
  padding-bottom: 60px;
}

.padding-bottom-65 {
  padding-bottom: 65px;
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .padding-bottom-65 {
    padding-bottom: 40px !important;
  }
}

.padding-bottom-70 {
  padding-bottom: 70px;
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .padding-bottom-70 {
    padding-bottom: 40px !important;
  }
}

.padding-bottom-75 {
  padding-bottom: 75px;
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .padding-bottom-75 {
    padding-bottom: 45px !important;
  }
}

.padding-bottom-80 {
  padding-bottom: 80px;
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .padding-bottom-80 {
    padding-bottom: 60px !important;
  }
}

.padding-bottom-85 {
  padding-bottom: 85px;
}

.padding-bottom-90 {
  padding-bottom: 90px;
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .padding-bottom-90 {
    padding-bottom: 60px !important;
  }
}

.padding-bottom-95 {
  padding-bottom: 95px;
}

.padding-bottom-100 {
  padding-bottom: 100px;
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .padding-bottom-100 {
    padding-bottom: 70px !important;
  }
}

.padding-bottom-110 {
  padding-bottom: 110px;
}

.padding-bottom-105 {
  padding-bottom: 105px;
}

.padding-bottom-115 {
  padding-bottom: 115px;
}

.padding-bottom-120 {
  padding-bottom: 120px;
}

.padding-bottom-125 {
  padding-bottom: 125px;
}

.padding-bottom-130 {
  padding-bottom: 130px;
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .padding-bottom-130 {
    padding-bottom: 80px !important;
  }
}

.padding-bottom-140 {
  padding-bottom: 140px;
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .padding-bottom-140 {
    padding-bottom: 80px !important;
  }
}

.padding-bottom-135 {
  padding-bottom: 135px;
}

.padding-bottom-200 {
  padding-bottom: 200px;
}

.padding-bottom-280 {
  padding-bottom: 280px;
}

.padding-bottom-285 {
  padding-bottom: 285px;
}

.padding-bottom-150 {
  padding-bottom: 150px;
}

.padding-bottom-160 {
  padding-bottom: 160px;
}

.padding-bottom-165 {
  padding-bottom: 165px;
}

.padding-bottom-170 {
  padding-bottom: 170px;
}

.padding-bottom-180 {
  padding-bottom: 180px;
}

.padding-bottom-215 {
  padding-bottom: 215px;
}

.padding-bottom-300 {
  padding-bottom: 300px;
}

.padding-bottom-460 {
  padding-bottom: 460px;
}

.margin-top-minus-90 {
  margin-top: -90px;
}

.margin-top-minus-100 {
  margin-top: -100px;
}

.margin-top-120 {
  margin-top: 120px;
}

.margin-top-150 {
  margin-top: 150px;
}

.margin-top-160 {
  margin-top: 160px;
}

.padding-120 {
  padding-top: 120px;
  padding-bottom: 120px;
}

.padding-110 {
  padding-top: 110px;
  padding-bottom: 110px;
}

.padding-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.padding-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.padding-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.padding-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.padding-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.padding-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.padding-65 {
  padding-top: 65px;
  padding-bottom: 65px;
}

.padding-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.padding-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.padding-90 {
  padding-top: 90px;
  padding-bottom: 90px;
}

.padding-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.margin-top-10 {
  margin-top: 10px;
}

.margin-top-15 {
  margin-top: 15px;
}

.margin-top-20 {
  margin-top: 20px;
}

.margin-top-30 {
  margin-top: 30px;
}

.margin-top-35 {
  margin-top: 35px;
}

.margin-top-40 {
  margin-top: 40px;
}

.margin-top-45 {
  margin-top: 45px;
}

.margin-top-50 {
  margin-top: 50px;
}

.margin-top-55 {
  margin-top: 55px;
}

.margin-top-60 {
  margin-top: 60px;
}

.margin-top-65 {
  margin-top: 65px;
}

.margin-top-70 {
  margin-top: 70px;
}

.margin-top-80 {
  margin-top: 80px;
}

.margin-top-90 {
  margin-top: 90px;
}

.margin-top-100 {
  margin-top: 100px;
}

.margin-top-110 {
  margin-top: 110px;
}

.margin-top-120 {
  margin-top: 120px;
}

.margin-bottom-0 {
  margin-bottom: 0px !important;
}

.margin-bottom-10 {
  margin-bottom: 10px;
}

.margin-bottom-15 {
  margin-bottom: 15px;
}

.margin-bottom-20 {
  margin-bottom: 20px;
}

.margin-bottom-25 {
  margin-bottom: 25px;
}

.margin-bottom-30 {
  margin-bottom: 30px;
}

.margin-bottom-35 {
  margin-bottom: 35px;
}

.margin-bottom-40 {
  margin-bottom: 40px;
}

.margin-bottom-50 {
  margin-bottom: 50px;
}

.margin-bottom-55 {
  margin-bottom: 55px;
}

.margin-bottom-60 {
  margin-bottom: 60px;
}

.margin-bottom-70 {
  margin-bottom: 70px;
}

.margin-bottom-80 {
  margin-bottom: 80px;
}

.margin-bottom-90 {
  margin-bottom: 90px;
}

.margin-bottom-100 {
  margin-bottom: 100px;
}

.margin-bottom-110 {
  margin-bottom: 110px;
}

.margin-bottom-120 {
  margin-bottom: 120px;
}

.margin-bottom-150 {
  margin-bottom: 150px;
}

.margin-top-100 {
  margin-bottom: 100px;
}

.margin-top-120 {
  margin-top: 120px;
}

.min-height-600 {
  min-height: 600px;
}

.overflow-hidden {
  overflow: hidden;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/*---------------------------------------
    ## Button
---------------------------------------*/
.btn_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.hive_btn {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--body-font);
  display: inline-block;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
  line-height: 22px;
  padding: 12px 35px;
  border: 2px solid transparent;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  position: relative;
  z-index: 2;
}
.hive_btn::before {
  height: 0%;
  width: 0%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #FE7747;
  content: "";
  position: absolute;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  border-radius: 50%;
  z-index: -1;
}
@media only screen and (max-width: 575.98px) {
  .hive_btn {
    padding: 10px 25px;
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .hive_btn {
    padding: 7px 15px;
    font-size: 14px;
  }
}
.hive_btn.btn_underline {
  padding: 0 7px;
  border-bottom: 2px solid var(--heading-color);
  border-radius: 2px;
}
.hive_btn.btn_underline::before {
  background-color: unset;
}
.hive_btn.btn_underline.color_white {
  color: var(--white);
  border-bottom: 2px solid var(--white);
}
.hive_btn.btn_underline.color_1 {
  color: var(--main-color-one);
  border-bottom: 2px solid var(--main-color-one);
}
.hive_btn.btn_underline.color_1:hover {
  color: var(--main-color-one);
  border-color: var(--main-color-one);
}
.hive_btn.btn_underline.color_2 {
  color: var(--secondary-color);
  border-bottom: 2px solid var(--secondary-color);
}
.hive_btn.btn_underline:hover {
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}
.hive_btn.btn_underline_2 {
  padding: 0 7px;
  border-bottom: 2px solid var(--main-color-two);
  border-radius: 2px;
  color: var(--main-color-two);
}
.hive_btn.btn_underline_2::before {
  background-color: unset;
}
.hive_btn.btn_underline_2.color_white {
  color: var(--white);
  border-bottom: 2px solid var(--white);
}
.hive_btn.btn_underline_2.color_1 {
  color: var(--main-color-one);
  border-bottom: 2px solid var(--main-color-one);
}
.hive_btn.btn_underline_2.color_1:hover {
  color: var(--main-color-one);
  border-color: var(--main-color-one);
}
.hive_btn.btn_underline_2.color_2 {
  color: var(--main-color-two);
  border-bottom: 2px solid var(--main-color-two);
}
.hive_btn.btn_underline_2:hover {
  color: var(--main-color-two);
  border-color: var(--main-color-two);
}
.hive_btn.btn_medium {
  padding: 10px 25px;
}
.hive_btn.btn_small {
  padding: 8px 20px;
}
.hive_btn.btn_bg_white {
  background-color: var(--white);
  border-color: transparent;
  color: var(--main-color-one);
}
.hive_btn.btn_bg_white.color_2 {
  color: var(--secondary-color);
}
.hive_btn.btn_bg_white:hover {
  color: var(--white);
}
.hive_btn.btn_bg_1 {
  background-color: #5F52DF;
  border-color: #5F52DF;
  color: var(--white);
}
.hive_btn.btn_bg_1:hover {
  color: #FFFFFF;
  background-color: #FE7747;
  border-color: #FE7747;
}

.hive_btn.btn_bg_2 {
  background-color: var(--main-color-two);
  border-color: transparent;
  color: var(--heading-color);
}
.hive_btn.btn_bg_2:hover {
  color: var(--main-color-two);
}
.hive_btn.btn_bg_2::before {
  background-color: var(--main-color-one);
}
.hive_btn.btn_bg_delete {
  background-color: var(--delete-color);
  border-color: var(--delete-color);
  color: var(--white);
}
.hive_btn.btn_bg_delete:hover {
  color: var(--delete-color);
}
.hive_btn.btn_bg_delete::before {
  background-color: var(--white);
}
.hive_btn.btn_outline_delete {
  background-color: unset;
  border-color: var(--delete-color);
  color: var(--delete-color);
}
.hive_btn.btn_outline_delete:hover {
  color: var(--white);
}
.hive_btn.btn_outline_delete::before {
  background-color: var(--delete-color);
}
.hive_btn.btn_outline_1 {
  background-color: unset;
  border-color: var(--main-color-one);
  color: var(--main-color-one);
}
.hive_btn.btn_outline_1:hover {
  color: var(--white);
}
.hive_btn.btn_outline_1::before {
  background-color: var(--main-color-one);
}
.hive_btn.color_1 {
  color: var(--main-color-one);
}
.hive_btn:hover.color_1 {
  color: var(--white);
}
.hive_btn:hover::before {
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
.hive_btn.radius-10:hover::before {
  border-radius: 10px;
}
.hive_btn.radius-20:hover::before {
  border-radius: 20px;
}
.hive_btn.radius-30:hover::before {
  border-radius: 30px;
}

.current__plan .hive_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
  border: 1px solid var(--border-color-two);
  color: var(--heading-color);
  background-color: unset;
  padding: 9px 15px;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 16px;
  line-height: 1.3;
}
.current__plan .hive_btn::before {
  background-color: unset;
}
.current__plan .hive_btn::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  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;
  height: 22px;
  width: 22px;
  font-size: 12px;
  background-color: var(--success-color);
  border-radius: 50%;
  color: var(--white);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.current__plan .hive_btn:hover {
  background-color: var(--success-color);
  color: var(--white);
  border-color: var(--success-color);
}
.current__plan .hive_btn:hover::after {
  background-color: var(--white);
  color: var(--success-color);
}

/*---------------------------------------
    ## Back Top
---------------------------------------*/
.back_toTop {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--main-color-one);
  color: #fff;
  text-align: center;
  line-height: 50px;
  border-radius: 5px;
  z-index: 99;
  font-size: 25px;
  cursor: pointer;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  display: none;
}
@media only screen and (max-width: 575.98px) {
  .back_toTop {
    height: 40px;
    width: 40px;
    font-size: 22px;
    line-height: 40px;
    bottom: 20px;
    right: 20px;
  }
}
.back_toTop.bg-color-two {
  background: var(--main-color-two);
}
.back_toTop.bg-color-three {
  background: var(--main-color-three);
}
.back_toTop.bg-color-four {
  background: var(--main-color-four);
}
.back_toTop.bg-color-five {
  background: var(--main-color-five);
}

/*-------------------------
    Section Title
-------------------------*/
.section_title {
  max-width: 750px;
  margin: auto;
}
.section_title.text_left {
  text-align: left;
}
.section_title.white-color {
  color: var(--white);
}
.section_title.white-color .title {
  color: var(--white);
}
.section_title.center-text {
  text-align: center;
}
.section_title.section_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  margin: unset;
  max-width: 100%;
}
.section_title.section_flex .title {
  -ms-flex-preferred-size: 55%;
      flex-basis: 55%;
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .section_title.section_flex .title {
    -ms-flex-preferred-size: 70%;
        flex-basis: 70%;
  }
}
.section_title .title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--heading-color);
  font-family: var(--heading-font);
  position: relative;
  margin: -6px 0 0;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .section_title .title {
    font-size: 45px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .section_title .title {
    font-size: 42px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .section_title .title {
    font-size: 36px;
  }
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .section_title .title {
    font-size: 28px;
    line-height: 32px;
  }
}
@media only screen and (max-width: 575.98px) {
  .section_title .title {
    font-size: 26px;
    line-height: 30px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
  }
}
@media only screen and (max-width: 375px) {
  .section_title .title {
    font-size: 24px;
    line-height: 28px;
  }
}
.section_title .section_para {
    font-size: 18px;
    line-height: 28px;
    margin-top: 20px;
    color: #464646;
}
@media only screen and (max-width: 767.98px) {
  .section_title .section_para {
    font-size: 16px;
    line-height: 24px;
  }
}

/* Nice Select Style */
.js_nice_select {
  width: 100%;
  height: 55px;
  line-height: 55px;
  font-size: 15px;
  font-weight: 400;
  color: var(--paragraph-color);
  border: 1px solid var(--border-color);
  -webkit-box-shadow: 0 0 10px rgba(255, 255, 255, 0.01);
          box-shadow: 0 0 10px rgba(255, 255, 255, 0.01);
  -webkit-transition: 300ms;
  transition: 300ms;
  padding: 0 30px 0 15px;
}
.js_nice_select:focus {
  border: 1px solid var(--body-color);
}
.js_nice_select .nice-select-search-box {
  height: 100%;
}
.js_nice_select .nice-select-search-box .nice-select-search {
  vertical-align: top;
}
.js_nice_select:after {
  border-bottom: 2px solid var(--body-color);
  border-right: 2px solid var(--body-color);
  height: 7px;
  margin-top: -2px;
  right: 20px;
  width: 7px;
}
@media only screen and (max-width: 375px) {
  .js_nice_select:after {
    right: 10px;
  }
}
.js_nice_select.open {
  border: 1px solid #ddd;
}
.js_nice_select.open .list {
  width: 100%;
}
.js_nice_select .list {
  width: 100%;
  margin-top: 10px;
}
.js_nice_select .list .selected.focus {
  background-color: rgba(var(--main-color-one-rgb), 0.1);
  color: var(--main-color-one);
}
.js_nice_select .list .option:hover {
  background-color: rgba(var(--main-color-one-rgb), 0.1);
  color: var(--main-color-one);
  font-weight: 500;
}

.js-select.select-style-two {
  display: block;
  color: var(--paragraph-color);
  border: 1px solid var(--body-color);
  -webkit-box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
          box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}
.js-select.select-style-two.open::after {
  border-color: transparent transparent var(--paragraph-color);
  border-width: 0px 4px 5px 4px;
}
.js-select.select-style-two:after {
  border-color: var(--paragraph-color) transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: auto;
  right: 11px;
  margin-top: 0px;
  position: absolute;
  top: 50%;
  width: 0;
  /* IE 9 */
  -webkit-transform: rotate(0deg);
  /* Chrome, Safari, Opera */
  transform: rotate(0deg);
}
@media only screen and (max-width: 375px) {
  .js-select.select-style-two:after {
    right: 10px;
  }
}

/* Select2 Css */
.select2-container {
  position: relative;
  display: -ms-grid;
  display: grid;
  width: 100% !important;
}
.select2-container.select2-container--open.select2-container--default .select2-selection--single .select2-selection__arrow::after {
  -webkit-transform: translate(50%, -50%) rotate(-135deg) !important;
          transform: translate(50%, -50%) rotate(-135deg) !important;
  margin-top: 0;
}
.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid var(--border-color-two);
  border-radius: 4px;
  position: relative;
  height: 50px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--paragraph-color);
  height: 50px;
  line-height: 50px;
  padding-right: 30px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  bottom: 0px;
  right: 5px;
  height: 50px;
  line-height: 50px;
  position: absolute;
}
.select2-container--default .select2-selection--single .select2-selection__arrow::after {
  content: "";
  position: absolute;
  right: 50%;
  -webkit-transform: translate(50%, -50%) rotate(45deg);
          transform: translate(50%, -50%) rotate(45deg);
  top: 50%;
  font-size: 14px;
  height: 8px;
  width: 8px;
  border-right: 2px solid var(--body-color);
  border-bottom: 2px solid var(--body-color);
  background-color: transparent;
  margin-top: -3px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}
.select2-container .dropdown-wrapper {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.without_border .select2-container {
  display: inline-block;
}
.without_border .select2-container--default .select2-selection--single {
  border: 0;
  height: 24px;
}
.without_border .select2-container--default .select2-selection--single .select2-selection__rendered {
  height: 24px;
  line-height: 24px;
  padding: 0 50px 0 0;
}
.without_border .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 24px;
  line-height: 24px;
}
.without_border .select2-container--default .select2-selection--single .select2-selection__arrow::after {
  border-right: 2px solid var(--body-color);
  border-bottom: 2px solid var(--body-color);
}
.without_border .select2-container .dropdown-wrapper {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/* Multiple select  */
.select2.select2-container .select2-selection--multiple {
  height: 50px;
  overflow-y: auto;
}

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid var(--border-color-two);
  border-radius: 4px;
  cursor: text;
  padding-bottom: 5px;
  padding-right: 5px;
  position: relative;
}
.select2-container--default .select2-selection--multiple:focus {
  border: 1px solid var(--border-color-two);
}
.select2-container--default .select2-selection--multiple .select2-search--inline .select2-search__field {
  margin-top: 0;
  height: 32px;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  display: block;
  padding: 0 4px;
  margin: 0;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #f8f8f8;
  border: 1px solid #ccc;
  border-radius: 3px;
  margin: 4px 4px 0 0;
  padding: 0 6px 0 22px;
  height: 24px;
  line-height: 24px;
  font-size: 12px;
  position: relative;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove {
  position: absolute;
  top: 0;
  left: 0;
  height: 22px;
  width: 22px;
  margin: 0;
  text-align: center;
  color: #e74c3c;
  font-weight: bold;
  font-size: 16px;
}

.checkbox-inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  cursor: pointer;
  gap: 10px;
}
.checkbox-inline .check-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  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;
  height: 18px;
  width: 18px;
  cursor: pointer;
  background: #fff;
  border: 1px solid #dddddd;
  border-radius: 0px;
  margin-top: 4px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.checkbox-inline .check-input::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 10px;
  color: #fff;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(1.6) rotate(90deg);
  transform: scale(1.6) rotate(90deg);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.checkbox-inline .check-input:checked {
  background: var(--main-color-one);
  border-color: var(--main-color-one);
  background: var(--main-color-one);
}
.checkbox-inline .check-input:checked::after {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1.2) rotate(0deg);
  transform: scale(1.2) rotate(0deg);
}
.checkbox-inline .checkbox-label {
  cursor: pointer;
  text-align: left;
  line-height: 26px;
  font-size: 16px;
  font-weight: 400;
  color: var(--heading-color);
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media only screen and (max-width: 575.98px) {
  .checkbox-inline .checkbox-label {
    font-size: 15px;
  }
}
.checkbox-inline .checkbox-label a {
  color: var(--main-color-one);
  font-weight: 500;
}

/* Custom Radio Css */
.custom-radio-single {
  padding: 10px;
  border-radius: 5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid transparent;
}
.custom-radio-single.active {
  border: 1px solid rgba(var(--main-color-one-rgb), 0.3);
  background-color: rgba(var(--main-color-one-rgb), 0.1);
}
.custom-radio-single.active label {
  font-weight: 600;
  color: var(--heading-color);
}
.custom-radio-inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.custom-radio label {
  font-size: 16px;
  color: var(--paragraph-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 14px 0;
}
.custom-radio input[type=radio] {
  border: 2px solid #DDD;
  background: #fff;
  clear: none;
  cursor: pointer;
  display: inline-block;
  margin: 0;
  outline: 0;
  padding: 0 !important;
  text-align: center;
  vertical-align: middle;
  height: 24px;
  width: 24px;
  -webkit-appearance: none;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  border-radius: 50%;
  position: relative;
  margin-right: 3px;
}
.custom-radio input[type=radio]:checked {
  border-color: var(--main-color-one);
}
.custom-radio input[type=radio]:checked::before {
  width: calc(100% - 9px);
  height: calc(100% - 9px);
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  content: "";
  border-radius: 50%;
  background-color: var(--main-color-one);
  margin: 0px 0px 0;
  padding: 0px;
  line-height: 1;
}

/* Custom Switch */
.custom-switch .switch {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 24px;
}
.custom-switch .switch.round-switch .slider {
  border-radius: 34px;
}
.custom-switch .switch.round-switch .slider::before {
  border-radius: 50%;
}
.custom-switch .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.custom-switch .switch input:checked + .slider {
  background-color: var(--main-color-one);
}
.custom-switch .switch input:focus + .slider {
  -webkit-box-shadow: 0 0 1px var(--main-color-one);
          box-shadow: 0 0 1px var(--main-color-one);
}
.custom-switch .switch input:checked + .slider:before {
  -webkit-transform: translateX(20px);
  transform: translateX(20px);
}
.custom-switch .switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.custom-switch .switch .slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

/* Slider Custom Css */
.nav-style-one {
  position: relative;
}
.nav-style-one:hover .prev-icon,
.nav-style-one:hover .next-icon {
  visibility: visible;
  opacity: 1;
}
.nav-style-one.nav-color-two .prev-icon,
.nav-style-one.nav-color-two .next-icon {
  background: var(--border-color);
}
.nav-style-one.nav-color-two .prev-icon:hover,
.nav-style-one.nav-color-two .next-icon:hover {
  background-color: var(--secondary-color);
  color: #fff;
}
.nav-style-one .prev-icon,
.nav-style-one .next-icon {
  position: absolute;
  left: -70px;
  bottom: 0%;
  left: 50%;
  /* IE 9 */
  -webkit-transform: translateX(-50%);
  /* Chrome, Safari, Opera */
  transform: translateX(-50%);
  font-size: 30px;
  cursor: pointer;
  z-index: 9;
  background: var(--border-color);
  color: var(--heading-color);
  -webkit-transition: 300ms;
  transition: 300ms;
  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;
  height: 50px;
  width: 50px;
  visibility: visible;
  opacity: 0;
}
.nav-style-one .prev-icon:hover,
.nav-style-one .next-icon:hover {
  background-color: var(--main-color-one);
  color: #fff;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .nav-style-one .prev-icon,
.nav-style-one .next-icon {
    left: -25px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .nav-style-one .prev-icon,
.nav-style-one .next-icon {
    left: -25px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .nav-style-one .prev-icon,
.nav-style-one .next-icon {
    left: -25px;
  }
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .nav-style-one .prev-icon,
.nav-style-one .next-icon {
    left: -25px;
  }
}
@media only screen and (max-width: 575.98px) {
  .nav-style-one .prev-icon,
.nav-style-one .next-icon {
    left: 0px;
  }
}
.nav-style-one .next-icon {
  left: auto;
  right: -70px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .nav-style-one .next-icon {
    right: -25px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .nav-style-one .next-icon {
    right: -25px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .nav-style-one .next-icon {
    right: -25px;
  }
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .nav-style-one .next-icon {
    right: -25px;
  }
}
@media only screen and (max-width: 575.98px) {
  .nav-style-one .next-icon {
    right: 0px;
  }
}

.append-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 5px;
}

.append_testimonial {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px;
  border-radius: 30px;
}
.append_testimonial .prev_icon,
.append_testimonial .next_icon {
  font-size: 30px;
  cursor: pointer;
  border: 1px solid var(--border-color);
  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;
  height: 35px;
  width: 35px;
  font-size: 16px;
  z-index: 9;
  color: var(--heading-color);
  background-color: rgba(var(--main-color-one-rgb), 0.05);
  border-radius: 50%;
  -webkit-transition: 300ms;
  transition: 300ms;
}
.append_testimonial .prev_icon:hover,
.append_testimonial .next_icon:hover {
  border-color: var(--main-color-one);
  color: #fff;
  background-color: var(--main-color-one);
}
.append_testimonial .prev-icon {
  right: 55px;
}

.append-nav {
  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;
  gap: 20px;
  position: relative;
}
.append-nav:hover .prev-icon,
.append-nav:hover .next-icon {
  visibility: visible;
  opacity: 1;
}
.append-nav .prev-icon,
.append-nav .next-icon {
  font-size: 20px;
  cursor: pointer;
  z-index: 9;
  background: var(--border-color);
  color: var(--main-color-one);
  -webkit-transition: 300ms;
  transition: 300ms;
  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;
  height: 40px;
  width: 40px;
  background-color: rgba(var(--main-color-one-rgb), 0.1);
  border-radius: 5px;
}
.append-nav .prev-icon:hover,
.append-nav .next-icon:hover {
  background-color: var(--main-color-one);
  color: #fff;
}
.append-nav .next-icon {
  background-color: var(--main-color-one);
  color: #fff;
}

.append-dot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.append-dot .slick-dots {
  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;
  padding: 0;
  margin: 0;
}
.append-dot .slick-dots li {
  text-indent: -9999px;
  height: 10px;
  width: 10px;
  background: #DDD;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
}
.append-dot .slick-dots li::before {
  content: "";
  position: absolute;
  height: calc(100% + 8px);
  width: calc(100% + 8px);
  background-color: transparent;
  border: 1px solid var(--main-color-one);
  top: -4px;
  left: -4px;
  border-radius: 50%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.append-dot .slick-dots li.slick-active {
  background: var(--main-color-one);
}
.append-dot .slick-dots li.slick-active::before {
  visibility: visible;
  opacity: 1;
}
.append-dot .slick-dots li button {
  border: 0;
  outline: none;
}

/* Dot Style */
.dot-style-one.white-dot .slick-dots li {
  background-color: rgba(255, 255, 255, 0.6);
}
.dot-style-one.white-dot .slick-dots li.slick-active {
  background: #fff;
}
.dot-style-one.dot-absolute .slick-dots {
  position: absolute;
  bottom: 30px;
  right: 0px;
}
@media only screen and (max-width: 480px) {
  .dot-style-one.dot-absolute .slick-dots {
    bottom: 20px;
  }
}
@media only screen and (max-width: 375px) {
  .dot-style-one.dot-absolute .slick-dots {
    bottom: 10px;
  }
}
.dot-style-one.dot-color-two .slick-dots li {
  background-color: #DDD;
}
.dot-style-one.dot-color-two .slick-dots li.slick-active {
  background: var(--main-color-two);
}
.dot-style-one .slick-dots {
  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;
  margin-top: 30px;
  padding: 10px 0 0;
}
.dot-style-one .slick-dots li {
  text-indent: -9999px;
  height: 10px;
  width: 10px;
  background: #DDD;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.dot-style-one .slick-dots li.slick-active {
  background: var(--main-color-one);
  width: 30px;
  border-radius: 10px;
}
.dot-style-one .slick-dots li button {
  border: 0;
  outline: none;
}

.slider-inner-margin .slick-slide,
.slider_inner_margin .slick-slide {
  margin: 12px;
}
.slider-inner-margin .slick-list,
.slider_inner_margin .slick-list {
  margin: -12px;
}

.slider-inner-margin-10 .slick-slide {
  margin: 5px;
}
.slider-inner-margin-10 .slick-list {
  margin: -5px;
}

.slider-inner-padding .slick-slide {
  padding: 12px;
}
.slider-inner-padding .slick-list {
  padding: -12px;
}

/*---------------------------------------
    Faq Css
---------------------------------------*/
.hive_faq_contents.colum_count2 {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hive_faq_contents.colum_count2 {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
  }
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .hive_faq_contents.colum_count2 {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
  }
}
.hive_faq_contents .hive_faq_item {
  padding: 0;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  background-color: var(--white);
}
.hive_faq_contents .hive_faq_item.open {
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  padding: 0px;
  -webkit-box-shadow: 0px 2px 0px 3px var(--main-color-one);
  box-shadow: 0px 2px 0px 3px var(--main-color-one);
  border: 0;
}
.hive_faq_contents .hive_faq_item.open .hive_faq_title {
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.hive_faq_contents .hive_faq_item.open .hive_faq_title::after {
  content: "\f068";
  background-color: var(--main-color-one);
  color: var(--white);
}
.hive_faq_contents .hive_faq_item.active .hive_faq_panel {
  display: block;
}
.hive_faq_contents .hive_faq_item:not(:first-child) {
  margin-top: 24px;
}
.hive_faq_contents .hive_faq_item .hive_faq_title {
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  color: var(--heading-color);
  font-family: var(--heading-font);
  padding: 20px;
  background: none;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  z-index: 0;
  -webkit-transition: 300ms;
  transition: 300ms;
  margin-right: 30px;
  background-color: var(--white);
}
.hive_faq_contents .hive_faq_item .hive_faq_title::after {
  content: "+";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: -10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 300ms;
  transition: 300ms;
  font-size: 16px;
  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;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background-color: var(--section-bg-2);
}
.hive_faq_contents .hive_faq_item .hive_faq_panel {
  padding: 20px;
  display: none;
  border-top: 1px solid var(--border-color);
}
.hive_faq_contents .hive_faq_item .hive_faq_panel .hive_faq_para {
  font-size: 16px;
  line-height: 28px;
  color: var(--paragraph-color);
}
@media only screen and (max-width: 767.98px) {
  .hive_faq_contents .hive_faq_item .hive_faq_panel .hive_faq_para {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .hive_faq_contents .hive_faq_item .hive_faq_panel .hive_faq_para {
    font-size: 14px;
  }
}

.hive_faq_question {
  background-color: var(--white);
  padding: 20px;
  border-radius: 10px;
  position: sticky;
  top: 0;
  z-index: 8;
}
.hive_faq_question__subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--paragraph-color);
  display: block;
}
.hive_faq_question__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--heading-color);
}

/* Custom Form */
.single-flex-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media only screen and (max-width: 480px) {
  .single-flex-input {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media only screen and (max-width: 480px) {
  .single-flex-input .single-input {
    -ms-flex-preferred-size: 100% !important;
        flex-basis: 100% !important;
  }
}

.custom-form .single-flex-input:not(:first-child) {
  margin-top: 24px;
}
.signUp__wrapper .single-input {
  margin-top: 24px;
}
.custom-form .single-flex-input .single-input,
.custom-form .single-flex-input .form-group {
  margin-top: 0 !important;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.custom-form .single-flex-input .single-input .js_nice_select,
.custom-form .single-flex-input .form-group .js_nice_select {
  width: 100%;
}
.custom-form .single-input,
.custom-form .form-group {
  width: 100%;
}
.custom-form .single-input:not(:first-child),
.custom-form .form-group:not(:first-child) {
  margin-top: 24px;
}
.custom-form .single-input .label-title,
.custom-form .form-group .label-title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
  color: var(--heading-color);
}
@media only screen and (max-width: 480px) {
  .custom-form .single-input .label-title,
.custom-form .form-group .label-title {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .custom-form .single-input .label-title,
.custom-form .form-group .label-title {
    font-size: 14px;
  }
}
.custom-form .single-input .iti,
.custom-form .form-group .iti {
  width: 100%;
}
.custom-form .single-input .form--control,
.custom-form .single-input .form-control,
.custom-form .form-group .form--control,
.custom-form .form-group .form-control {
  -moz-appearance: textfield;
  width: 100%;
  height: 55px;
  line-height: 55px;
  padding: 0 15px;
  border: 1px solid var(--border-color);
  outline: none;
  background-color: var(--white);
  color: var(--paragraph-color);
  -webkit-transition: 300ms;
  transition: 300ms;
  -webkit-box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}
.custom-form .single-input .form--control.input-padding-left,
.custom-form .single-input .form-control.input-padding-left,
.custom-form .form-group .form--control.input-padding-left,
.custom-form .form-group .form-control.input-padding-left {
  padding-left: 45px;
}
.custom-form .single-input .form--control#phone,
.custom-form .single-input .form-control#phone,
.custom-form .form-group .form--control#phone,
.custom-form .form-group .form-control#phone {
  width: 100%;
  padding-left: 50px;
}
.custom-form .single-input .form--control::-webkit-outer-spin-button, .custom-form .single-input .form--control::-webkit-inner-spin-button,
.custom-form .single-input .form-control::-webkit-outer-spin-button,
.custom-form .single-input .form-control::-webkit-inner-spin-button,
.custom-form .form-group .form--control::-webkit-outer-spin-button,
.custom-form .form-group .form--control::-webkit-inner-spin-button,
.custom-form .form-group .form-control::-webkit-outer-spin-button,
.custom-form .form-group .form-control::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
  -moz-appearance: textfield;
}
.custom-form .single-input .form--control:focus,
.custom-form .single-input .form-control:focus,
.custom-form .form-group .form--control:focus,
.custom-form .form-group .form-control:focus {
  border-color: rgba(var(--main-color-one-rgb), 0.3);
  -webkit-box-shadow: 0 0 10px rgba(var(--main-color-one-rgb), 0.1);
  box-shadow: 0 0 10px rgba(var(--main-color-one-rgb), 0.1);
}
@media only screen and (max-width: 480px) {
  .custom-form .single-input .form--control,
.custom-form .single-input .form-control,
.custom-form .form-group .form--control,
.custom-form .form-group .form-control {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .custom-form .single-input .form--control,
.custom-form .single-input .form-control,
.custom-form .form-group .form--control,
.custom-form .form-group .form-control {
    font-size: 14px;
  }
}
#edd_login_form label, #edd_register_form label {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
    color: #222;
}
#edd_login_form fieldset, #edd_register_form fieldset p {
    margin-bottom: 10px;
}
#edd_login_form .edd-input, #edd_register_form .edd-input{
	width: 100%;
    height: 50px;
    line-height: 50px;
    padding: 0 15px;
    border: 1px solid var(--border-color);
    outline: none;
    background-color: var(--white);
    color: var(--paragraph-color);
    -webkit-transition: 300ms;
    transition: 300ms;
    -webkit-box-shadow: 0 0 10px rgb(255 255 255 / 10%);
    box-shadow: 0 0 10px rgb(255 255 255 / 10%);
	border-radius: 5px;
}
.custom-form .single-input.input-padding-left .form--control,
.custom-form .single-input.input-padding-left .form-control,
.custom-form .form-group.input-padding-left .form--control,
.custom-form .form-group.input-padding-left .form-control {
  padding-left: 45px;
}
.custom-form .single-input .input-icon,
.custom-form .form-group .input-icon {
  position: absolute;
  bottom: 15px;
  left: 15px;
}
.custom-form .single-input textarea,
.custom-form .form-group textarea {
  height: auto !important;
}
.custom-form .single-input-icon,
.custom-form .form-group-icon {
  position: relative;
}
.custom-form .single-input-icon::after,
.custom-form .form-group-icon::after {
  content: "";
  position: absolute;
  height: 55px;
  width: 2px;
  background-color: #f3f3f3;
  bottom: 0;
  left: 40px;
}
.custom-form .single-input-icon .form--control,
.custom-form .single-input-icon .form-control,
.custom-form .form-group-icon .form--control,
.custom-form .form-group-icon .form-control {
  padding-left: 50px;
  position: relative;
}
.custom-form .submit-btn {
  margin-top: 25px;
}

textarea {
  height: auto !important;
}
.edd-submit, [type=submit].edd-submit{
	width: 100%;
}
.edd-submit, [type=submit].edd-submit,
.submit-btn {
  border: 2px solid var(--main-color-one);
  background-color: var(--main-color-one);
  color: #fff;
  padding: 10px 25px;
  font-size: 15px;
  line-height: 22px;
  -webkit-transition: 300ms;
  transition: 300ms;
}
.edd-submit, [type=submit].edd-submit:hover,
.submit-btn:hover {
  background-color: rgba(var(--main-color-one-rgb), 0.9);
}

.forgot-password {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: var(--heading-color);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.forgot-password:hover {
  color: var(--main-color-one);
}

/* Toggle Password hide Show */
.single-input {
  position: relative;
}

.toggle-password {
  position: absolute;
  bottom: 13px;
  right: 20px;
  cursor: pointer;
}

.hide-icon {
  display: none;
}

.toggle-password.show-pass .hide-icon {
  display: block;
}

.toggle-password.show-pass .show-icon {
  display: none;
}

/* Tabs Design */
.tabs,
.tab-parents,
.tabs-two,
.tabs-three,
.tabs-four {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.tabs li,
.tabs .tab-list,
.tab-parents li,
.tab-parents .tab-list,
.tabs-two li,
.tabs-two .tab-list,
.tabs-three li,
.tabs-three .tab-list,
.tabs-four li,
.tabs-four .tab-list {
  font-size: 16px;
  font-weight: 400;
  color: var(--light-color);
  line-height: 28px;
  cursor: pointer;
  -webkit-transition: 300ms;
  transition: 300ms;
  position: relative;
}
.tabs li::before,
.tabs .tab-list::before,
.tab-parents li::before,
.tab-parents .tab-list::before,
.tabs-two li::before,
.tabs-two .tab-list::before,
.tabs-three li::before,
.tabs-three .tab-list::before,
.tabs-four li::before,
.tabs-four .tab-list::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 0%;
  left: 50%;
  /* IE 9 */
  -webkit-transform: translateX(-50%);
  /* Chrome, Safari, Opera */
  transform: translateX(-50%);
  bottom: 0;
  background-color: var(--main-color-one);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.tabs li.active,
.tabs .tab-list.active,
.tab-parents li.active,
.tab-parents .tab-list.active,
.tabs-two li.active,
.tabs-two .tab-list.active,
.tabs-three li.active,
.tabs-three .tab-list.active,
.tabs-four li.active,
.tabs-four .tab-list.active {
  color: var(--main-color-one);
}
.tabs li.active::before,
.tabs .tab-list.active::before,
.tab-parents li.active::before,
.tab-parents .tab-list.active::before,
.tabs-two li.active::before,
.tabs-two .tab-list.active::before,
.tabs-three li.active::before,
.tabs-three .tab-list.active::before,
.tabs-four li.active::before,
.tabs-four .tab-list.active::before {
  width: 100%;
}

.tabs-two li::before,
.tabs-two .tab-list::before {
  display: none;
}

/* Job Tabs Css */
.myJob-tabs .tabs,
.myJob-tabs .tabs-two,
.myJob-tabs .tabs-three,
.myJob-tabs .tabs-four {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px 30px;
}
@media only screen and (max-width: 480px) {
  .myJob-tabs .tabs,
.myJob-tabs .tabs-two,
.myJob-tabs .tabs-three,
.myJob-tabs .tabs-four {
    gap: 10px 20px;
  }
}
.myJob-tabs .tabs li,
.myJob-tabs .tabs-two li,
.myJob-tabs .tabs-three li,
.myJob-tabs .tabs-four li {
  font-size: 16px;
  font-weight: 500;
  color: var(--paragraph-color);
  position: relative;
  padding-bottom: 5px;
}
@media only screen and (max-width: 480px) {
  .myJob-tabs .tabs li,
.myJob-tabs .tabs-two li,
.myJob-tabs .tabs-three li,
.myJob-tabs .tabs-four li {
    padding-bottom: 2px;
  }
}
.myJob-tabs .tabs li::before,
.myJob-tabs .tabs-two li::before,
.myJob-tabs .tabs-three li::before,
.myJob-tabs .tabs-four li::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 0%;
  left: 50%;
  /* IE 9 */
  -webkit-transform: translateX(-50%);
  /* Chrome, Safari, Opera */
  transform: translateX(-50%);
  bottom: 0;
  background-color: var(--main-color-one);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.myJob-tabs .tabs li.active,
.myJob-tabs .tabs-two li.active,
.myJob-tabs .tabs-three li.active,
.myJob-tabs .tabs-four li.active {
  color: var(--main-color-one);
}
.myJob-tabs .tabs li.active::before,
.myJob-tabs .tabs-two li.active::before,
.myJob-tabs .tabs-three li.active::before,
.myJob-tabs .tabs-four li.active::before {
  width: 100%;
}

.tab-content-item,
.tab-content-item-two,
.tab-content-item2,
.tab-content-item-three,
.tab-content-item-four {
  display: none;
}

.tab-content-item.active,
.tab-content-item-two.active,
.tab-content-item2.active,
.tab-content-item-three.active,
.tab-content-item-four.active {
  display: block;
  -webkit-animation: 1s fade-effects;
          animation: 1s fade-effects;
}

@keyframes fade-effects {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
/* Slider Custom Css */
.nav-style-one {
  position: relative;
}
.nav-style-one:hover .prev-icon,
.nav-style-one:hover .next-icon {
  visibility: visible;
  opacity: 1;
}
.nav-style-one.nav-color-two .prev-icon,
.nav-style-one.nav-color-two .next-icon {
  background: var(--border-color);
}
.nav-style-one.nav-color-two .prev-icon:hover,
.nav-style-one.nav-color-two .next-icon:hover {
  background-color: var(--secondary-color);
  color: #fff;
}
.nav-style-one .prev-icon,
.nav-style-one .next-icon {
  position: absolute;
  left: -70px;
  bottom: 0%;
  left: 50%;
  /* IE 9 */
  -webkit-transform: translateX(-50%);
  /* Chrome, Safari, Opera */
  transform: translateX(-50%);
  font-size: 30px;
  cursor: pointer;
  z-index: 9;
  background: var(--border-color);
  color: var(--heading-color);
  -webkit-transition: 300ms;
  transition: 300ms;
  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;
  height: 50px;
  width: 50px;
  visibility: visible;
  opacity: 0;
}
.nav-style-one .prev-icon:hover,
.nav-style-one .next-icon:hover {
  background-color: var(--main-color-one);
  color: #fff;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .nav-style-one .prev-icon,
.nav-style-one .next-icon {
    left: -25px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .nav-style-one .prev-icon,
.nav-style-one .next-icon {
    left: -25px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .nav-style-one .prev-icon,
.nav-style-one .next-icon {
    left: -25px;
  }
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .nav-style-one .prev-icon,
.nav-style-one .next-icon {
    left: -25px;
  }
}
@media only screen and (max-width: 575.98px) {
  .nav-style-one .prev-icon,
.nav-style-one .next-icon {
    left: 0px;
  }
}
.nav-style-one .next-icon {
  left: auto;
  right: -70px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .nav-style-one .next-icon {
    right: -25px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .nav-style-one .next-icon {
    right: -25px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .nav-style-one .next-icon {
    right: -25px;
  }
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .nav-style-one .next-icon {
    right: -25px;
  }
}
@media only screen and (max-width: 575.98px) {
  .nav-style-one .next-icon {
    right: 0px;
  }
}

.append-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 5px;
}

.append_testimonial {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px;
  border-radius: 30px;
}
.append_testimonial .prev_icon,
.append_testimonial .next_icon {
  font-size: 30px;
  cursor: pointer;
  border: 1px solid var(--border-color);
  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;
  height: 35px;
  width: 35px;
  font-size: 16px;
  z-index: 9;
  color: var(--heading-color);
  background-color: rgba(var(--main-color-one-rgb), 0.05);
  border-radius: 50%;
  -webkit-transition: 300ms;
  transition: 300ms;
}
.append_testimonial .prev_icon:hover,
.append_testimonial .next_icon:hover {
  border-color: var(--main-color-one);
  color: #fff;
  background-color: var(--main-color-one);
}
.append_testimonial .prev-icon {
  right: 55px;
}

.append-nav {
  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;
  gap: 20px;
  position: relative;
}
.append-nav:hover .prev-icon,
.append-nav:hover .next-icon {
  visibility: visible;
  opacity: 1;
}
.append-nav .prev-icon,
.append-nav .next-icon {
  font-size: 20px;
  cursor: pointer;
  z-index: 9;
  background: var(--border-color);
  color: var(--main-color-one);
  -webkit-transition: 300ms;
  transition: 300ms;
  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;
  height: 40px;
  width: 40px;
  background-color: rgba(var(--main-color-one-rgb), 0.1);
  border-radius: 5px;
}
.append-nav .prev-icon:hover,
.append-nav .next-icon:hover {
  background-color: var(--main-color-one);
  color: #fff;
}
.append-nav .next-icon {
  background-color: var(--main-color-one);
  color: #fff;
}

.append-dot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.append-dot .slick-dots {
  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;
  padding: 0;
  margin: 0;
}
.append-dot .slick-dots li {
  text-indent: -9999px;
  height: 10px;
  width: 10px;
  background: #DDD;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
}
.append-dot .slick-dots li::before {
  content: "";
  position: absolute;
  height: calc(100% + 8px);
  width: calc(100% + 8px);
  background-color: transparent;
  border: 1px solid var(--main-color-one);
  top: -4px;
  left: -4px;
  border-radius: 50%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.append-dot .slick-dots li.slick-active {
  background: var(--main-color-one);
}
.append-dot .slick-dots li.slick-active::before {
  visibility: visible;
  opacity: 1;
}
.append-dot .slick-dots li button {
  border: 0;
  outline: none;
}

/* Dot Style */
.dot-style-one.white-dot .slick-dots li {
  background-color: rgba(255, 255, 255, 0.6);
}
.dot-style-one.white-dot .slick-dots li.slick-active {
  background: #fff;
}
.dot-style-one.dot-absolute .slick-dots {
  position: absolute;
  bottom: 30px;
  right: 0px;
}
@media only screen and (max-width: 480px) {
  .dot-style-one.dot-absolute .slick-dots {
    bottom: 20px;
  }
}
@media only screen and (max-width: 375px) {
  .dot-style-one.dot-absolute .slick-dots {
    bottom: 10px;
  }
}
.dot-style-one.dot-color-two .slick-dots li {
  background-color: #DDD;
}
.dot-style-one.dot-color-two .slick-dots li.slick-active {
  background: var(--main-color-two);
}
.dot-style-one .slick-dots {
  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;
  margin-top: 30px;
  padding: 10px 0 0;
}
.dot-style-one .slick-dots li {
  text-indent: -9999px;
  height: 10px;
  width: 10px;
  background: #DDD;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.dot-style-one .slick-dots li.slick-active {
  background: var(--main-color-one);
  width: 30px;
  border-radius: 10px;
}
.dot-style-one .slick-dots li button {
  border: 0;
  outline: none;
}

.slider-inner-margin .slick-slide,
.slider_inner_margin .slick-slide {
  margin: 12px;
}
.slider-inner-margin .slick-list,
.slider_inner_margin .slick-list {
  margin: -12px;
}

.slider-inner-margin-10 .slick-slide {
  margin: 5px;
}
.slider-inner-margin-10 .slick-list {
  margin: -5px;
}

.slider-inner-padding .slick-slide {
  padding: 12px;
}
.slider-inner-padding .slick-list {
  padding: -12px;
}

/* Countdown Css */
.countdown-para {
  line-height: 30px;
}

.global-timer .syotimer__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: center;
  text-align: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  gap: 15px;
}
@media only screen and (max-width: 480px) {
  .global-timer .syotimer__body {
    gap: 10px;
  }
}
.global-timer .syotimer__body .syotimer-cell .syotimer-cell__value {
  font-size: 20px;
  color: var(--white);
  font-weight: 500;
  line-height: 1.2;
  font-family: var(--heading-font);
  background: rgba(var(--white-rgb), 0.1);
  padding: 10px 15px;
  border-radius: 5px;
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .global-timer .syotimer__body .syotimer-cell .syotimer-cell__value {
    font-size: 30px;
  }
}
@media only screen and (max-width: 375px) {
  .global-timer .syotimer__body .syotimer-cell .syotimer-cell__value {
    font-size: 24px;
  }
}
.global-timer .syotimer__body .syotimer-cell .syotimer-cell__unit {
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 400;
  line-height: 19px;
  color: rgba(var(--white-rgb), 0.7);
  margin-top: 10px;
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .global-timer .syotimer__body .syotimer-cell .syotimer-cell__unit {
    font-size: 16px;
  }
}
@media only screen and (max-width: 375px) {
  .global-timer .syotimer__body .syotimer-cell .syotimer-cell__unit {
    font-size: 13px;
  }
}
.global-timer.simple-timer-two {
  margin-top: 35px;
}
.global-timer.simple-timer-two.radius-0 .syotimer__body .syotimer-cell {
  border-radius: 0;
}
.global-timer.simple-timer-two.color-two .syotimer__body .syotimer-cell {
  background: var(--main-color-two);
}
.global-timer.simple-timer-two.color-three .syotimer__body .syotimer-cell {
  background: var(--main-color-three);
}
.global-timer.simple-timer-two.color-four .syotimer__body .syotimer-cell {
  background: var(--main-color-four);
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .global-timer.simple-timer-two {
    margin-top: 20px;
  }
}
.global-timer.simple-timer-two .syotimer__body {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.global-timer.simple-timer-two .syotimer__body .syotimer-cell {
  background: var(--main-color-one);
  color: #fff;
  padding: 15px 20px;
  border-radius: 10px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .global-timer.simple-timer-two .syotimer__body .syotimer-cell {
    padding: 10px 20px;
  }
}
@media only screen and (max-width: 480px) {
  .global-timer.simple-timer-two .syotimer__body .syotimer-cell {
    padding: 7px 13px;
  }
}
@media only screen and (max-width: 375px) {
  .global-timer.simple-timer-two .syotimer__body .syotimer-cell {
    padding: 5px 10px;
  }
}
.global-timer.simple-timer-two .syotimer__body .syotimer-cell .syotimer-cell__value {
  color: #fff;
  font-family: var(--jost-font);
  font-weight: 600;
  font-size: 43px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .global-timer.simple-timer-two .syotimer__body .syotimer-cell .syotimer-cell__value {
    font-size: 32px;
  }
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .global-timer.simple-timer-two .syotimer__body .syotimer-cell .syotimer-cell__value {
    font-size: 28px;
    line-height: 32px;
  }
}
@media only screen and (max-width: 375px) {
  .global-timer.simple-timer-two .syotimer__body .syotimer-cell .syotimer-cell__value {
    font-size: 24px;
    line-height: 26px;
  }
}
.global-timer.simple-timer-two .syotimer__body .syotimer-cell .syotimer-cell__unit {
  color: #fff;
  line-height: 21px;
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .global-timer.simple-timer-two .syotimer__body .syotimer-cell .syotimer-cell__unit {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .global-timer.simple-timer-two .syotimer__body .syotimer-cell .syotimer-cell__unit {
    font-size: 14px;
  }
}

/* Mouse Cursor Css */
.mouse-move {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.mouse-inner {
  margin-left: -3px;
  margin-top: -3px;
  width: 6px;
  height: 6px;
  z-index: 10000001;
  background-color: var(--main-color-one);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.mouse-inner.mouse-hover {
  margin-left: -30px;
  margin-top: -30px;
  width: 60px;
  height: 60px;
  background-color: var(--main-color-one);
  opacity: 0.1;
}

.mouse-outer {
  margin-left: -15px;
  margin-top: -15px;
  width: 30px;
  height: 30px;
  border: 2px solid var(--main-color-one);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.5;
  -webkit-transition: all 0.08s ease-out;
  transition: all 0.08s ease-out;
}
.mouse-outer.mouse-hover {
  opacity: 0;
}

/*----------------------------------------------
    # Nav bar 
----------------------------------------------*/
.mobile-logo {
  display: none;
}

@media only screen and (max-width: 991px) {
  .mobile-logo {
    display: block;
  }
  .desktop-logo {
    display: none !important;
  }
}
.navbar-padding {
  padding: 20px 0;
}

.navbar-area {
  position: relative;
  z-index: 95;

}
@media (min-width: 200px) and (max-width: 991.98px) {
  .navbar-area {
    padding: 0;
  }
}
.navbar-area.navbar_border {
  border-bottom: 1px solid var(--border-color);
}
.navbar-area.nav-absolute {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0px;
  z-index: 99;
}
.navbar-area.white_nav.navbar_border {
  border-bottom: 1px solid rgba(var(--white-rgb), 0.1);
}
.navbar-area.white_nav .click-nav-right-icon {
  color: rgba(255, 255, 255, 0.8);
}
.navbar-area.white_nav .navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.8);
}
.navbar-area.white_nav .navbar-toggler.active .navbar-toggler-icon::before, .navbar-area.white_nav .navbar-toggler.active .navbar-toggler-icon::after {
  background: rgba(255, 255, 255, 0.8);
}
.navbar-area.white_nav .navbar-toggler .navbar-toggler-icon {
  background: rgba(255, 255, 255, 0.8);
}
.navbar-area.white_nav .navbar-toggler .navbar-toggler-icon::before, .navbar-area.white_nav .navbar-toggler .navbar-toggler-icon::after {
  background: rgba(255, 255, 255, 0.8);
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .navbar-area.white_nav .nav-container .navbar-collapse .navbar-nav {
    background-color: #000;
  }
}
.navbar-area.white_nav .nav-container .navbar-collapse .navbar-nav li {
  color: var(--white);
}
.navbar-area.white_nav .nav-container .navbar-collapse .navbar-nav li a:hover {
  color: var(--secondary-color);
}
.navbar-area.white_nav .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
  color: var(--heading-color);
}
.navbar-area.white_nav .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a:hover {
  background-color: var(--secondary-color);
  color: var(--white);
}
.navbar-area .nav-container {
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 0px 15px;
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .navbar-area .nav-container .logo-wrapper {
    height: 20px;
  }
}
.navbar-area .nav-container .logo-wrapper .logo img {
  max-width: 200px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .navbar-area .nav-container .logo-wrapper .logo img {
    max-width: 160px;
  }
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .navbar-area .nav-container .logo-wrapper .logo img {
    max-width: 150px;
  }
}
.navbar-area .nav-container .navbar-collapse .navbar-nav {
  display: block;
  width: 100%;
  text-align: center;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav.nav-margin-top {
  margin-top: 15px;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav.desktop-center {
  text-align: center;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li {
  display: inline-block;
  font-size: 16px;
  font-family: var(--body-font);
  text-transform: capitalize;
  color: var(--heading-color);
  font-weight: 400;
  line-height: 32px;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li + li {
  margin-left: 0px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .navbar-area .nav-container .navbar-collapse .navbar-nav li {
    font-size: 15px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .navbar-area .nav-container .navbar-collapse .navbar-nav li {
    font-size: 14px;
  }
}
.navbar-area.white_nav .nav-container .navbar-collapse .navbar-nav li:hover > a {
  color: var(--secondary-color);
  background: none;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li:hover > a {
  color: #685be7;
  background: 0 0;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li > a {
  padding: 10px 35px 10px 0;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .navbar-area .nav-container .navbar-collapse .navbar-nav li > a {
    padding: 7px 10px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .navbar-area .nav-container .navbar-collapse .navbar-nav li > a {
    padding: 5px 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .navbar-area .nav-container .navbar-collapse .navbar-nav li > a {
    padding: 5px 10px;
  }
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.current-menu-item {
  background: none;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children {
  padding-right: 0;
  position: relative;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children > a {
  padding: 10px 30px 10px 0;
  position: relative;
  z-index: 0;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children > a {
    padding: 10px 10px;
  }
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children > a::after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  /* IE 9 */
  -webkit-transform: translateY(-50%);
  /* Chrome, Safari, Opera */
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  top: 1px;
  left: 4px;
  position: relative;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
  position: absolute;
  text-align: left;
  min-width: 220px;
  margin: 0;
  padding: 0;
  list-style: none;
  left: 0;
  top: 100%;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
  background-color: #fff;
  z-index: 992;
  border-bottom: 5px solid var(--secondary-color);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li {
  display: block;
  margin-left: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: -1px;
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li {
    margin-bottom: 0;
  }
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:last-child {
  margin-bottom: -1px;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li + li {
  border-top: 1px solid #e2e2e2;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
  display: block;
  padding: 10px 30px;
  background-color: #fff;
  white-space: nowrap;
  color: var(--heading-color);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 0%;
  left: 0;
  top: 0;
  background-color: var(--secondary-color);
  z-index: -1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a:hover {
  color: var(--white);
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a:hover::before {
  width: 100%;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children {
  position: relative;
  z-index: 0;
  padding-right: 0px;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children > .sub-menu {
  left: 100%;
  top: 0px;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children > .sub-menu .sub-menu .sub-menu {
  left: auto;
  right: 100%;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:hover > .sub-menu li:hover:before {
  color: #fff;
}
.click-nav-right-icon {
  display: none;
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .click-nav-right-icon {
    position: absolute;
    right: 0px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    font-size: 30px;
    color: rgba(0, 0, 0, 0.7);
    display: block;
  }
  .click-nav-right-icon:hover {
    color: var(--heading-color);
  }
}

@media (min-width: 200px) and (max-width: 991.98px) {
  .show-nav-content {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 300ms;
    transition: 300ms;
    margin-top: -30px;
    margin-left: auto;
  }
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .show-nav-content.show {
    visibility: visible;
    opacity: 1;
    margin-top: 30px;
  }
}

/* Navbar right Content */
.single-right-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.navbar-right-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.navbar-right-btn a {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: var(--heading-color);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.navbar-right-btn a:hover {
  color: var(--main-color-one);
  text-decoration: underline;
}

@media only screen and (max-width: 991px) {
  .navbar-area .navbar-toggler {
    position: absolute;
    right: 40px;
    top: 50%;
    -webkit-box-shadow: none;
            box-shadow: none;
    /* IE 9 */
    -webkit-transform: translateY(-50%);
    /* Chrome, Safari, Opera */
    transform: translateY(-50%);
    border: 1px solid rgba(0, 0, 0, 0.7);
    outline: none;
  }
  .navbar-area .navbar-toggler.active .navbar-toggler-icon {
    background: none;
  }
  .navbar-area .navbar-toggler.active .navbar-toggler-icon::before, .navbar-area .navbar-toggler.active .navbar-toggler-icon::after {
    background: rgba(0, 0, 0, 0.7);
    top: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .navbar-area .navbar-toggler.active .navbar-toggler-icon::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .navbar-area .navbar-toggler .navbar-toggler-icon {
    background: rgba(0, 0, 0, 0.7);
    display: inline-block;
    width: 25px;
    height: 2px;
    margin: 10px -4px 10px;
    position: relative;
  }
  .navbar-area .navbar-toggler .navbar-toggler-icon::before, .navbar-area .navbar-toggler .navbar-toggler-icon::after {
    position: absolute;
    content: "";
    height: 2px;
    width: 25px;
    background: rgba(0, 0, 0, 0.7);
    top: -7px;
    left: 0;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .navbar-area .navbar-toggler .navbar-toggler-icon::after {
    top: auto;
    bottom: -7px;
  }
  .navbar-area .nav-container {
    position: relative;
    z-index: 0;
    min-height: 60px;
    padding: 20px 12px;
  }
  .navbar-area .nav-container .responsive-mobile-menu {
    display: block;
    position: relative;
    width: 100%;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav {
    display: block;
    margin-top: 30px;
    background: #f5f5f5;
    -webkit-box-shadow: 0 0 30px rgba(221, 221, 221, 0.3);
    box-shadow: 0 0 30px rgba(221, 221, 221, 0.3);
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li {
    display: block;
    text-align: left;
    line-height: 30px;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li a {
    padding: 15px 20px;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li:last-child {
    border-bottom: none;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li + li {
    margin-left: 0;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
    top: 25px;
    right: 20px;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover {
    padding-bottom: 0;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover > .sub-menu {
    visibility: visible;
    height: auto;
    opacity: 1;
    background-color: transparent;
    border-bottom: none;
    padding-top: 10px;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children > a {
    padding: 15px 20px;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
    position: initial;
    display: block;
    width: 100%;
    border-top: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-left: 0;
    padding-bottom: 0;
    visibility: hidden;
    opacity: 0;
    height: 0;
    overflow: hidden;
    max-height: 250px;
    overflow-y: scroll;
    -webkit-transition: all 500ms linear;
    transition: all 500ms linear;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .sub-menu .menu-item-has-children:before {
    content: "\f107";
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li {
    padding: 0;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li.menu-item-has-children:hover:before {
    color: #fff;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li + li {
    border-top: none;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
}
@media only screen and (max-width: 575px) {
  .navbar-area .nav-container {
    padding: 12px 12px 15px;
  }
  .navbar-area .nav-container .logo-wrapper .logo img {
    max-width: 140px;
  }
}
/*--------------------------------------------------------------
	04. Footer Style
--------------------------------------------------------------*/
.footer_area {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: #0D1331;
}
.footer_area__top {
  padding: 45px 50px 70px;
  display: none;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .footer_area__top {
    padding: 45px 30px 70px;
  }
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .footer_area__top {
    padding: 45px 20px 70px;
  }
}
@media only screen and (max-width: 375px) {
  .footer_area__top {
    padding: 45px 10px 70px;
  }
}
.footer_area__wrapper {
  border-radius: 20px 20px 0 0;
}

@media only screen and (max-width: 575.98px) {
  .footer_widget__logo {
    max-width: 200px;
  }
}
.footer_widget__title {
  font-size: 24px;
  line-height: 28px;
  margin: -4px 0 1.5rem 0;
  font-weight: 700;
}
@media only screen and (max-width: 767.98px) {
  .footer_widget__title {
    font-size: 22px;
  }
}
.footer_widget__para {
  color: #F5F5F5;
  line-height: 28px;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.footer_widget__socialList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .footer_widget__socialList {
    gap: 12px 15px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .footer_widget__socialList {
    gap: 10px;
  }
}
.footer_widget__socialList__link {
  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;
  height: 35px;
  width: 35px;
  font-size: 16px;
  border-radius: 5px;
  background: transparent;
  color: #F5F5F5;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media only screen and (max-width: 575.98px) {
  .footer_widget__socialList__link {
    font-size: 16px;
    height: 35px;
    width: 35px;
  }
}
@media only screen and (max-width: 375px) {
  .footer_widget__socialList__link {
    height: 30px;
    width: 30px;
  }
}
.footer_widget__socialList__link:hover {
  color: #FFFFFF;
  background: transparent;
}
.footer_widget__form-single {
  position: relative;
  z-index: 2;
}
.footer_widget__form-control {
  height: 55px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  padding: 0 20px;
  color: var(--paragraph-color);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.001);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.001);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding-right: 110px;
}
.footer_widget__form-control:focus {
  border: 1px solid rgba(var(--main-color-one-rgb), 0.4);
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .footer_widget__form-control {
    padding-right: 20px;
  }
}
.footer_widget__form button {
  position: absolute;
  right: 0px;
  top: 0px;
  bottom: 0;
  background-color: var(--main-color-one);
  color: var(--white);
  padding: 0px 15px;
  border: 0;
  outline: none;
  border-radius: 0 10px 10px 0;
  height: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.footer_widget__form button:hover {
  background-color: var(--secondary-color);
  color: var(--white);
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .footer_widget__form button {
    position: relative;
    width: 100%;
    margin-top: 20px;
    border-radius: 10px;
    padding: 15px 15px;
    text-align: center;
    font-size: 16px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer_widget ul,
.footer_widget__linkList {
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer_widget li,
.footer_widget__linkList__item {
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer_widget ul li:not(:last-child),
.footer_widget__linkList__item:not(:last-child) {
  margin-bottom: 15px;
}
.footer_widget ul li:hover a,
.footer_widget__linkList__item:hover a {
  color: #FFFFFF;
}
.footer_widget ul li a,
.footer_widget__linkList__item a {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #FFFFFF;
  position: relative;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
  z-index: 1;
  /* padding-left: 20px; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer_widget ul li a:hover,
.footer_widget__linkList__item a:hover {
  color: #FFFFFF;
}
/* .footer_widget ul li a::before,
.footer_widget__linkList__item a::before {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: -1px;
} */
.footer_widget__contact {
  padding: 0;
}
.footer_widget__contact__item {
  font-size: 16px;
  line-height: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 15px;
  color: var(--light-color);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer_widget__contact__item:not(:last-child) {
  margin-bottom: 15px;
}
.footer_widget__contact__item:hover {
  color: #FFFFFF;
}
.footer_widget__contact__item:hover .footer_widget-contact-item-icon {
  background-color: #FFFFFF;
  color: var(--white);
}
.footer_widget__contact__item__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .footer_widget__contact__item__flex {
    gap: 12px;
  }
}
.footer_widget__contact__item__icon {
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--paragraph-color);
  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;
  height: 40px;
  width: 40px;
  font-size: 16px;
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer_widget__contact__item__details {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.copyright_area {
  padding: 30px 0;
  text-align: center;
}
/* .copyright_area.copyright_border {
  border-top: 1px solid rgba(221, 221, 221, 0.2);
} */

.copyright_contents__main {
  font-size: 14px;
  color:  #d8d8d8;;
  text-align: center;
}
@media only screen and (max-width: 767.98px) {
  .copyright_contents__main {
    text-align: center;
    margin-top: 10px;
  }
}
.copyright_contents__main a {
  color: #FE7747;
  font-weight: 500;
}


.footer_area .footer_area__wrapper p {
  color: #f5f5f5 !important;
}

.footer_area .footer_area__wrapper h4.footer_widget__title{
color: #f5f5f5 !important;
}

/* Banner  */
.hive_banner_area {
  position: relative;
  z-index: 1;
  padding: 0;
  overflow: hidden;
  padding: 200px 0 100px;
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .hive_banner_area {
    padding: 130px 0 70px;
  }
}

.hive_banner__bg {
  position: relative;
}
.hive_banner__bg::before {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 150px;
  height: calc(100% + 900px);
  width: calc(100% + 900px);
  background-color: var(--main-color-one);
  border-radius: 50%;
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .hive_banner__bg::before {
    bottom: 70px;
  }
}

.hive_banner__shape1 {
  position: absolute;
  top: 20%;
  left: 15%;
  height: 32px;
  width: 32px;
  background-color: unset;
  border: 1px solid rgba(var(--white-rgb), 0.1);
  border-radius: 5px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: 1;
}
.hive_banner__shape2 {
  position: absolute;
  top: 10%;
  right: 15%;
  height: 24px;
  width: 24px;
  background-color: unset;
  border: 1px solid rgba(var(--white-rgb), 0.1);
  border-radius: 50%;
  z-index: 1;
}

.hive_banner {
  position: relative;
  z-index: 2;
}
.hive_banner.white .hive_banner__content__title {
  color: var(--white);
}
.hive_banner.white .hive_banner__content__para {
  color: #ffffff;
}
.hive_banner__btn .hive_btn {
  padding: 12px 65px;
}
@media only screen and (max-width: 575.98px) {
  .hive_banner__btn .hive_btn {
    padding: 10px 35px;
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .hive_banner__btn .hive_btn {
    padding: 7px 25px;
    font-size: 14px;
  }
}
.hive_banner__content {
  position: relative;
  z-index: 5;
  max-width: 880px;
  margin-inline: auto;
}
.hive_banner__content__title {
  font-size: 70px;
  line-height: 1.1;
  font-weight: 700;
  margin: -12px 0 0;
  position: relative;
}
.hive_banner__content__title__span {
  text-decoration: underline;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .hive_banner__content__title {
    font-size: 48px;
    line-height: 50px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hive_banner__content__title {
    font-size: 42px;
    line-height: 50px;
  }
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .hive_banner__content__title {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 575.98px) {
  .hive_banner__content__title {
    font-size: 28px;
  }
}
@media only screen and (max-width: 375px) {
  .hive_banner__content__title {
    font-size: 26px;
  }
}
.hive_banner__content__title:hover {
  color: var(--main-color-one);
}
.hive_banner__content__para {
  font-size: 18px;
  color: var(--paragraph-color);
  font-weight: 400;
  line-height: 28px;
  max-width: 700px;
  margin-inline: auto;
}
@media only screen and (max-width: 480px) {
  .hive_banner__content__para {
    font-size: 16px;
    line-height: 26px;
  }
}
@media only screen and (max-width: 375px) {
  .hive_banner__content__para {
    font-size: 15px;
  }
}
.hive_banner__thumb {
  position: relative;
}
.hive_banner__thumb img {
  border-radius: 20px;
  border: 5px solid var(--heading-color);
}
.hive_banner__thumb__shape1 {
  position: absolute;
  left: -100px;
  top: 50px;
  height: 140px;
  width: 140px;
  overflow: hidden;
}
.hive_banner__thumb__shape1::before {
  content: "";
  position: absolute;
  bottom: -70px;
  left: 0px;
  width: 140px;
  height: 140px;
  border-top-right-radius: 50%;
  border-top-left-radius: 50%;
  border-bottom: 140px solid rgba(var(--white-rgb), 0.05);
}
.hive_banner__thumb__shape2 {
  position: absolute;
  right: -70px;
  top: -70px;
  height: 140px;
  width: 140px;
  border-radius: 50%;
  background-color: rgba(var(--white-rgb), 0.05);
}

/* Provide css */
.provide_area {
  overflow: hidden;
}

.single_provide {
  background-color: rgba(var(--provide-1-rgb), 0.05);
}
.single_provide__padding {
  padding: 30px;
}
@media only screen and (max-width: 375px) {
  .single_provide__padding {
    padding: 20px;
  }
}
.single_provide:hover .single_provide__icon {
  background-color: var(--white);
  color: var(--provide-1);
}
.single_provide__icon {
  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;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background-color: var(--provide-1);
  color: var(--white);
  font-size: 28px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.single_provide__icon img {
  max-width: 45px;
}
.single_provide__contents__title {
  font-size: 24px;
  line-height: 1.2;
  margin: -5px 0 0;
  font-weight: 700;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.single_provide__contents__title:hover {
  color: var(--provide-1);
}
@media only screen and (max-width: 480px) {
  .single_provide__contents__title {
    font-size: 22px;
  }
}
@media only screen and (max-width: 375px) {
  .single_provide__contents__title {
    font-size: 20px;
  }
}
.single_provide__contents__para {
    font-size: 16px;
    line-height: 28px;
    color: #464646;
}
@media only screen and (max-width: 480px) {
  .single_provide__contents__para {
    font-size: 15px;
  }
}

.provide_child:nth-child(3n+2) .single_provide {
  background-color: rgba(var(--provide-2-rgb), 0.05);
}
.provide_child:nth-child(3n+2) .single_provide:hover .single_provide__icon {
  background-color: var(--white);
  color: var(--provide-2);
}
.provide_child:nth-child(3n+2) .single_provide__icon {
  background-color: var(--provide-2);
}
.provide_child:nth-child(3n+2) .single_provide__contents__title:hover {
  color: var(--provide-2);
}
.provide_child:nth-child(3n+3) .single_provide {
  background-color: rgba(var(--provide-3-rgb), 0.05);
}
.provide_child:nth-child(3n+3) .single_provide:hover .single_provide__icon {
  background-color: var(--white);
  color: var(--provide-3);
}
.provide_child:nth-child(3n+3) .single_provide__icon {
  background-color: var(--provide-3);
}
.provide_child:nth-child(3n+3) .single_provide__contents__title:hover {
  color: var(--provide-3);
}

/* Automation css */
.automation_area {
  overflow: hidden;
}

.single_automation__thumb img {
  border-radius: 20px;
}

/* Performance css */
.cutomfield_area {
  overflow: hidden;
}

.performance_area {
  overflow: hidden;
}

.performance_shapes {
  position: relative;
  z-index: 2;
}
.performance_shapes::before {
  position: absolute;
  content: "";
  top: -50px;
  left: -50px;
  height: 150px;
  width: 150px;
  background-color: var(--main-color-one);
  border-radius: 50%;
  z-index: -1;
}
.performance_shapes__two {
  position: relative;
  z-index: 2;
}
.performance_shapes__two::before, .performance_shapes__two::after {
  position: absolute;
  content: "";
  z-index: -1;
}
@media only screen and (max-width: 767.98px) {
  .performance_shapes__two::before, .performance_shapes__two::after {
    display: none;
  }
}
.performance_shapes__two::before {
  top: -70px;
  right: -70px;
  height: 150px;
  width: 150px;
  background-color: var(--main-color-one);
  border-radius: 10px;
}
.performance_shapes__two::after {
  bottom: -50px;
  left: -50px;
  height: 100px;
  width: 100px;
  background-color: var(--secondary-color);
  border-radius: 50%;
}

.single_performance__thumb {
  position: relative;
}
@media only screen and (max-width: 575.98px) {
  .single_performance__thumb {
    margin: 0 10px;
  }
}
.single_performance__thumb::before {
  position: absolute;
  content: "";
  top: -20px;
  left: -20px;
  height: 90%;
  width: calc(100% + 40px);
  background: rgba(var(--main-color-one-rgb), 0.05);
  border: 1px solid rgba(var(--main-color-one-rgb), 0.1);
  -webkit-backdrop-filter: blur(50px);
          backdrop-filter: blur(50px);
  z-index: -1;
  border-radius: 10px;
}

/* Experience css */
.experience_area {
  overflow: hidden;
}

.single_experience__thumb__border {
  padding: 20px;
  background-color: rgba(var(--main-color-one-rgb), 0.05);
}

/* Testimonial Css */
.testimonial_area {
  overflow: hidden;
}

.testimonial_slider .slick-current .single_testimonial {
  background-color: var(--main-color-one);
}
.testimonial_slider .slick-current .single_testimonial__quote {
  color: rgba(var(--white-rgb), 0.1);
}
.testimonial_slider .slick-current .single_testimonial__title {
  color: var(--white);
}
.testimonial_slider .slick-current .single_testimonial__para {
  color: var(--white);
}
.testimonial_slider .slick-current .single_testimonial__author__title {
  color: var(--white);
}
.testimonial_slider .slick-current .single_testimonial__author__para {
  color: var(--white);
}

.single_testimonial {
  background-color: rgba(var(--main-color-one-rgb), 0.05);
  padding: 30px;
  border-radius: 10px;
  position: relative;
}
.single_testimonial__quote {
  position: absolute;
  bottom: -25px;
  right: -10px;
  font-size: 50px;
  color: rgba(var(--main-color-one-rgb), 0.4);
}
.single_testimonial__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: var(--heading-color);
}
.single_testimonial__para {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: var(--paragraph-color);
}
.single_testimonial__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.single_testimonial__author__thumb {
  max-width: 60px;
}
.single_testimonial__author__thumb img {
  border-radius: 50%;
  border: 2px solid var(--white);
}
.single_testimonial__author__title {
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  color: var(--heading-color);
}
.single_testimonial__author__para {
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
  color: var(--paragraph-color);
}

/* Hive Pricing Css */
.hive_pricing__single {
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 20px;
  background-color: var(--white);
  position: relative;
}
.hive_pricing__single__popular {
  position: absolute;
  top: -20px;
  background: #FE7747;
  width: 100%;
  left: 0;
  color: var(--white);
  text-align: center;
  border-radius: 10px 10px 0 0;
  padding: 3px;
  font-size: 15px;
  font-weight: 400;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.hive_pricing__single.active_plan {
  background-color: var(--heading-color);
  border-radius: 0 0 10px 10px;
}
@media only screen and (max-width: 767.98px) {
  .hive_pricing__single.active_plan {
    margin-top: 20px;
  }
}
.hive_pricing__single.active_plan .hive_pricing__single__popular {
  visibility: visible;
  opacity: 1;
}
.hive_pricing__single.active_plan .hive_pricing__single__price {
  color: var(--white);
}
.hive_pricing__single.active_plan .hive_pricing__single__duration {
  color: rgba(var(--white-rgb), 0.9);
}
.hive_pricing__single.active_plan .hive_pricing__single__duration .licence {
  color: var(--white);
}
.hive_pricing__single.active_plan .hive_pricing__single__list li {
  color: rgba(var(--white-rgb), 0.5);
}
.hive_pricing__single.active_plan .hive_pricing__single__list li.list_show {
  color: var(--white);
}
.hive_pricing__single.active_plan .hive_btn.btn_bg_1 {
    background: #FE7747;
    color: #fff;
    border: 1px solid #FE7747;

}
.hive_pricing__single.active_plan .hive_btn.btn_bg_1:hover {
    background: #fff;
    color: #FE7747;
}

.hive_pricing__single.active_plan .hive_btn.btn_bg_1::before{
    background-color: unset;
}


.hive_pricing__single__price {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--heading-color);
}
.hive_pricing__single__duration {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--paragraph-color);
  display: block;
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.hive_pricing__single__duration .licence {
  color: var(--heading-color);
  font-weight: 500;
}
.hive_pricing__single__list li {
  color: var(--light-color);
  font-size: 16px;
  line-height: 1.3;
  position: relative;
  padding-left: 25px;
}
.hive_pricing__single__list li:not(:first-child) {
  padding-top: 10px;
}
.hive_pricing__single__list li:not(:last-child) {
  padding-bottom: 10px;
}
.hive_pricing__single__list li.list_show {
  color: var(--heading-color);
}
.hive_pricing__single__list li.list_show::before {
  color: #FE7747;
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
}

/* Newsletter Css */
.newsletter_area {
  overflow: hidden;
}

.newsletter_wrapper {
  max-width: 700px;
  margin: auto;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.newsletter_wrapper__padding {
  padding: 50px;
}
@media only screen and (max-width: 480px) {
  .newsletter_wrapper__padding {
    padding: 30px;
  }
}
@media only screen and (max-width: 375px) {
  .newsletter_wrapper__padding {
    padding: 30px 20px;
  }
}
.newsletter_wrapper__shapes__custom {
  position: absolute;
  height: 80px;
  width: 80px;
  right: 0px;
  top: -40px;
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-radius: 10px;
  z-index: -1;
  -webkit-animation: 20s leftRightMoving linear infinite;
          animation: 20s leftRightMoving linear infinite;
}
.newsletter_wrapper__shapes img {
  position: absolute;
  z-index: 1;
}
@media only screen and (max-width: 480px) {
  .newsletter_wrapper__shapes img {
    display: none;
  }
}
.newsletter_wrapper__shapes img:nth-child(1) {
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.newsletter_wrapper__shapes img:nth-child(2) {
  right: 30px;
  top: 30px;
}

.newsletter_bg {
  background-color: var(--heading-color);
}

.newsletter_contents__title {
  font-size: 28px;
  color: #fff;
  font-weight: 500;
  margin: -5px 0 0;
}
.newsletter_contents__para {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.7);
}
/* .newsletter_contents__form .single-input {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
} */
.newsletter_contents__form .single-input .form--control {
  height: 55px;
  border: 1px solid rgba(221, 221, 221, 0.7);
  background-color: #fff;
  color: var(--light-color);
  outline: none;
  -webkit-box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 20px;
  width: 100%;
  padding-right: 100px;
}
.newsletter_contents__form .single-input .form--control::-webkit-input-placeholder {
  color: var(--light-color);
}
.newsletter_contents__form .single-input .form--control::-moz-placeholder {
  color: var(--light-color);
}
.newsletter_contents__form .single-input .form--control:-ms-input-placeholder {
  color: var(--light-color);
}
.newsletter_contents__form .single-input .form--control::-ms-input-placeholder {
  color: var(--light-color);
}
.newsletter_contents__form .single-input .form--control::placeholder {
  color: var(--light-color);
}
.newsletter_contents__form .single-input .form--control:focus {
  -webkit-box-shadow: 0 0 10px rgba(var(--main-color-one-rgb), 0.1);
  box-shadow: 0 0 10px rgba(var(--main-color-one-rgb), 0.1);
  border: rgba(var(--main-color-one-rgb), 0.3);
}
/* .newsletter_contents__form .single-input button {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  border: 0;
  outline: none;
  padding: 5px 20px;
  background-color: var(--main-color-one);
  color: #fff;
} */
@-webkit-keyframes leftRightMoving {
  0% {
    right: -40px;
    top: 0%;
  }
  25% {
    right: -40px;
    top: 85%;
  }
  50% {
    right: 94%;
    top: 85%;
  }
  75% {
    right: 94%;
    top: -40px;
  }
  100% {
    right: -40px;
    top: -40px;
  }
}

@keyframes leftRightMoving {
  0% {
    right: -40px;
    top: 0%;
  }
  25% {
    right: -40px;
    top: 85%;
  }
  50% {
    right: 94%;
    top: 85%;
  }
  75% {
    right: 94%;
    top: -40px;
  }
  100% {
    right: -40px;
    top: -40px;
  }
}
/* Contact Css */
.hive_contact__title {
  font-size: 28px;
  margin: -4px 0 0;
  line-height: 1.2;
  font-weight: 600;
}
.hive_contact__para {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: var(--paragraph-color);
}
.hive_contact__single {
  background-color: var(--white);
  padding: 40px;
}
.hive_contact__card__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
}
.hive_contact__card__item {
  background-color: var(--white);
  padding: 30px;
  width: calc(50% - 12px);
}
@media only screen and (max-width: 480px) {
  .hive_contact__card__item {
    width: 100%;
  }
}
@media only screen and (max-width: 375px) {
  .hive_contact__card__item {
    padding: 20px;
  }
}
.hive_contact__card__icon {
  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;
  height: 50px;
  width: 50px;
  background-color: var(--section-bg-2);
  color: var(--white);
  font-size: 24px;
  color: var(--paragraph-color);
  border-radius: 50%;
}
.hive_contact__card__para {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: var(--paragraph-color);
  word-break: break-all;
}
.hive_contact__card__para a {
  display: inline-block;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.hive_contact__card__para:hover a {
  color: var(--main-color-one);
}
.hive_contact_map iframe {
  border-radius: 10px;
  height: 435px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .hive_contact_map iframe {
    height: 415px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hive_contact_map iframe {
    height: 415px;
  }
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .hive_contact_map iframe {
    height: 350px;
  }
}
@media only screen and (max-width: 480px) {
  .hive_contact_map iframe {
    height: 300px;
  }
}
@media only screen and (max-width: 375px) {
  .hive_contact_map iframe {
    height: 220px;
  }
}

.center-text .hive_contact__card__icon {
  margin-inline: auto;
}

/* Policy Css */
article.page {
  max-width: 1050px;
  background-color: var(--white);
  padding: 30px;
  margin-inline: auto;
  border-radius: 5px;
}
article.page header h1.entry-title{
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--heading-color);
}
article.page .entry-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--paragraph-color);
  margin-bottom: 31px;
}
.hive_policy {
  max-width: 1050px;
  background-color: var(--white);
  padding: 30px;
  margin-inline: auto;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hive_policy {
    padding: 20px;
  }
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .hive_policy {
    padding: 20px;
  }
}
.hive_policy__title {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--heading-color);
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .hive_policy__title {
    font-size: 32px;
  }
}
@media only screen and (max-width: 575.98px) {
  .hive_policy__title {
    font-size: 28px;
  }
}
@media only screen and (max-width: 480px) {
  .hive_policy__title {
    font-size: 26px;
  }
}
@media only screen and (max-width: 375px) {
  .hive_policy__title {
    font-size: 24px;
  }
}
.hive_policy__single:not(:last-child) {
  margin-bottom: 24px;
}
.hive_policy__single__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--heading-color);
}
@media only screen and (max-width: 480px) {
  .hive_policy__single__title {
    font-size: 22px;
  }
}
@media only screen and (max-width: 375px) {
  .hive_policy__single__title {
    font-size: 20px;
  }
}
.hive_policy__single__para {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--paragraph-color);
}
.hive_policy__single__para:not(:last-child) {
  margin-bottom: 20px;
}
@media only screen and (max-width: 480px) {
  .hive_policy__single__para {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .hive_policy__single__para {
    font-size: 14px;
  }
}
.hive_policy__single__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.hive_policy__single__list li {
  padding-left: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  font-size: 16px;
  line-height: 20px;
}
@media only screen and (max-width: 480px) {
  .hive_policy__single__list li {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .hive_policy__single__list li {
    font-size: 14px;
  }
}
.hive_policy__single__list li:not(:last-child) {
  margin-bottom: 12px;
}
.hive_policy__single__list li::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 10px;
  height: 7px;
  width: 7px;
  background-color: var(--paragraph-color);
  border-radius: 50%;
}

/* Blog Css */
.hive_blog:not(:last-child) {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(var(--black-rgb), 0.05);
}
.hive_blog__thumb img {
  border-radius: 10px;
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .hive_blog__thumb img {
    width: 100%;
  }
}
.hive_blog__title {
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .hive_blog__title {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hive_blog__title {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 10px;
  }
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .hive_blog__title {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 10px;
  }
}
.hive_blog__titleTwo {
  font-size: 18px;
  line-height: 30px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
}
.hive_blog__para {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: var(--paragraph-color);
}

/* Blog Details Css */
.hive_blogDetails__thumb img {
  border-radius: 20px;
}
.hive_blogDetails__title {
  font-size: 40px;
  line-height: 60px;
  font-weight: 700;
  color: var(--heading-color);
  display: block;
  margin-top: 50px !important;
  margin-bottom: 20px !important;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hive_blogDetails__title {
    font-size: 32px;
  }
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .hive_blogDetails__title {
    font-size: 32px;
    line-height: 42px;
  }
}
@media only screen and (max-width: 575.98px) {
  .hive_blogDetails__title {
    font-size: 28px;
    line-height: 38px;
  }
}
@media only screen and (max-width: 480px) {
  .hive_blogDetails__title {
    font-size: 24px;
    line-height: 34px;
  }
}
.hive_blogDetails__para {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: var(--paragraph-color);
}
.hive_blogDetails__para:not(:first-child) {
  margin-top: 24px;
}
.hive_blogDetails__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
  margin: 25px 0px;
}
.hive_blogDetails__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.hive_blogDetails__author__thumb {
  min-width: 70px;
}
.hive_blogDetails__author__thumb img {
  border-radius: 50%;
}
.hive_blogDetails h5.hive_blogDetails__author__title {
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  color: var(--heading-color);
  margin: 0px;
}
@media only screen and (max-width: 480px) {
  .hive_blogDetails h5.hive_blogDetails__author__title {
    font-size: 18px;
    margin: 0px;
  }
}
.hive_blogDetails__author__para {
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  color: var(--paragraph-color);
}
.hive_blogDetails__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
}
.hive_blogDetails h6.hive_blogDetails__social__para {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: var(--heading-color);
  margin-top: 8px;
}
.hive_blogDetails__social__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.hive_blogDetails__social__list li a {
  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;
  height: 40px;
  width: 40px;
  line-height: 40px;
  border-radius: 50%;
  font-size: 16px;
  border: 1px solid var(--light-color);
  color: var(--heading-color);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.hive_blogDetails__social__list li a:hover {
  background-color: var(--main-color-one);
  color: var(--white);
  border-color: var(--main-color-one);
}
.hive_blogDetails__tagPara {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: var(--heading-color);
  margin-top: 3px;
}
.hive_blogDetails__tag {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}
.hive_blogDetails__tag__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.hive_blogDetails__tag__list li a {
  display: inline-block;
  padding: 5px 15px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  border: 1px solid rgba(var(--black-rgb), 0.1);
  color: var(--heading-color);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.hive_blogDetails__tag__list li a:hover {
  background-color: var(--main-color-one);
  color: var(--white);
  border-color: var(--main-color-one);
}
.hive_blogDetails__comment {
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid rgba(var(--black-rgb), 0.1);
}
.hive_blogDetails__comment__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
}
div#comments,
div#respond {
  margin-top: 50px;
}
@media only screen and (max-width: 375px) {
  .hive_blogDetails__comment__flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    display: -ms-grid;
    display: grid;
  }
}
.hive_blogDetails__comment__thumb {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 60px;
}
.hive_blogDetails__comment__thumb img {
  border-radius: 5px;
}
.hive_blogDetails__comment__input {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.required{
  color:red;
}
form#commentform p label {
  display: block;
  margin-bottom: 5px;
}
form#commentform p input[type=text],
form#commentform p input[type=email],
form#commentform p input[type=url],
.hive_blogDetails__comment__input .form--control {
  height: 40px;
  border: 1px solid rgba(var(--black-rgb), 0.15);
  background-color: var(--white);
  border-radius: 5px;
  padding: 0 15px; 
  width: 100%;
}
form#commentform p textarea{
    height: 40px;
    border: 1px solid rgba(var(--black-rgb), 0.15);
    background-color: var(--white);
    border-radius: 5px; 
    padding: 10px 15px;
    width: 99%;
}
h4.comments-title {
  margin-top: 20px;
}
form#commentform p.comment-form-email,
form#commentform p.comment-form-author {
  width: 49%;
  display: inline-block;
}
form#commentform p.comment-form-cookies-consent {
  display: inline-block;
  margin-bottom: 10px;
}
form#commentform p.comment-form-cookies-consent label {
  display: inherit;
  padding-left: 10px;
}
.form-submit input[type=submit]{
  background-color: var(--main-color-one);
    color: var(--white);
    border: 1px solid var(--main-color-one);
    outline: none;
    padding: 5px 20px;
    height: 100%;
    border-radius: 5px;
    font-size: 15px;
}
form#commentform {
  margin-top: 20px;
}
span.single_testimonial__author__designation {
  color: var(--heading-color);
  font-size:12px;
}
.hive_blogDetails__comment__input button {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--main-color-one);
  color: var(--white);
  border: 1px solid var(--main-color-one);
  outline: none;
  padding: 5px 20px;
  height: 100%;
  border-radius: 0 5px 5px 0;
  font-size: 15px;
}
.hive_blogDetails__commentView__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
}
.hive_blogDetails__commentView__item:not(:last-child) {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(var(--black-rgb), 0.1);
}
.hive_blogDetails__commentView__thumb {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 60px;
  border-radius: 5px;
}
.hive_blogDetails__commentView__thumb img {
  border-radius: 5px;
}
.hive_blogDetails__commentView__contents {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
h5.hive_blogDetails__commentView__title {
  font-size: 18px !important;
  line-height: 24px;
  font-weight: 500 !important;
  color: var(--heading-color);
  margin: 0px !important;
}
.hive_blogDetails__commentView__date {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: var(--paragraph-color);
}
.hive_blogDetails__commentView__para {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: var(--paragraph-color);
}
.hive_blogDetails__sticky {
  position: sticky;
  top: 0;
  z-index: 9;
}
.hive_blogDetails__sidebar:not(:last-child) {
  margin-bottom: 50px;
}
.hive_blogDetails__sidebar__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--heading-color);
}
.hive_blogDetails__sidebar__inner__item:not(:last-child) {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(var(--black-rgb), 0.05);
}
.hive_blogDetails__sidebar__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
}
.hive_blogDetails__sidebar__thumb {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 100px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hive_blogDetails__sidebar__thumb {
    max-width: 70px;
  }
}
@media only screen and (max-width: 375px) {
  .hive_blogDetails__sidebar__thumb {
    max-width: 70px;
  }
}
.hive_blogDetails__sidebar__thumb img {
  border-radius: 5px;
}
.hive_blogDetails__sidebar__contents {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.hive_blogDetails__sidebar__contents__title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--heading-color);
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .hive_blogDetails__sidebar__contents__title {
    font-size: 16px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hive_blogDetails__sidebar__contents__title {
    font-size: 16px;
  }
}
@media only screen and (max-width: 375px) {
  .hive_blogDetails__sidebar__contents__title {
    font-size: 16px;
  }
}
.hive_blogDetails__sidebar__contents__date {
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  color: var(--paragraph-color);
}
.hive_blogDetails__sidebar__tag__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.hive_blogDetails__sidebar__tag__list li a {
  display: inline-block;
  padding: 5px 15px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  border: 1px solid rgba(var(--black-rgb), 0.05);
  color: var(--heading-color);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.hive_blogDetails__sidebar__tag__list li a:hover {
  background-color: var(--main-color-one);
  border-color: var(--main-color-one);
  color: var(--white);
}

.hivesupportTicket {
  background-color: var(--white);
  padding: 20px;
  border-radius: 10px;
}
.hivesupportTicket__header__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.hivesupportTicket-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.hivesupportTicket-btn-main {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  padding: 10px 20px;
  background-color: var(--main-color-one);
  color: #fff;
  border-radius: 5px;
  font-size: 16px;
}
.hivesupportTicket-btn-main img {
  max-width: 15px;
}
.hivesupportTicket__inner__header {
  position: relative;
  z-index: 2;
  padding: 15px;
  padding-right: 60px;
}
.hivesupportTicket__inner__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.hivesupportTicket__inner__contents {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hivesupportTicket__inner__contents {
    padding-right: 30px;
  }
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .hivesupportTicket__inner__contents {
    padding-right: 30px;
  }
}
@media only screen and (max-width: 480px) {
  .hivesupportTicket__inner__contents {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    padding-right: 0px;
  }
}
.hivesupportTicket__inner__contents__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  margin: -4px 0 0;
}
.hivesupportTicket__inner__contents__para {
  font-size: 16px;
  line-height: 24px;
  color: var(--paragraph-color);
  display: block;
  margin-top: 5px;
}
.hivesupportTicket__inner__single {
  overflow: hidden;
  border: 1px solid var(--border-color);
  border-radius: 10px;
}
.hivesupportTicket__inner__single:not(:last-child) {
  margin-bottom: 24px;
}
.hivesupportTicket__inner__footer {
  background-color: var(--input-color);
  padding: 10px;
}
.hivesupportTicket__inner__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 0;
}
.hivesupportTicket__inner__list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  position: relative;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--paragraph-color);
}
.hivesupportTicket__inner__list__item strong {
  font-weight: 700;
  color: var(--heading-color);
}
.hivesupportTicket__inner__list__item:not(:last-child) {
  padding-right: 30px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .hivesupportTicket__inner__list__item:not(:last-child) {
    padding-right: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hivesupportTicket__inner__list__item:not(:last-child) {
    padding-right: 15px;
  }
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .hivesupportTicket__inner__list__item:not(:last-child) {
    padding-right: 15px;
  }
}
.hivesupportTicket__inner__list__item:not(:first-child) {
  padding-left: 30px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .hivesupportTicket__inner__list__item:not(:first-child) {
    padding-left: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hivesupportTicket__inner__list__item:not(:first-child) {
    padding-left: 15px;
  }
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .hivesupportTicket__inner__list__item:not(:first-child) {
    padding-left: 15px;
  }
}
.hivesupportTicket__inner__list__item:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  height: 80%;
  width: 2px;
  top: 50%;
  /* IE 9 */
  -webkit-transform: translateY(-50%);
  /* Chrome, Safari, Opera */
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.1);
}

.hivesupportPortal {
  background-color: var(--white);
  padding: 20px;
  border-radius: 10px;
}
.hivesupportPortal__header__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}

/* Affiliate Banner Css */
.hive_affiliatebanner__subtitle {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  color: #F5F5F5;
  margin-bottom: 10px;
  display: block;
}
@media only screen and (max-width: 575.98px) {
  .hive_affiliatebanner__subtitle {
    font-size: 18px;
  }
}
@media only screen and (max-width: 375px) {
  .hive_affiliatebanner__subtitle {
    font-size: 16px;
  }
}
.hive_affiliatebanner__title {
  font-size: 68px;
  font-weight: 600;
  line-height: 1.2;
  color: #F5F5F5;
}

@media (min-width: 1400px) and (max-width: 1599.98px) {
  .hive_affiliatebanner__title {
    font-size: 64px;
    line-height: 1.2;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .hive_affiliatebanner__title {
    font-size: 56px;
    line-height: 1.2;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hive_affiliatebanner__title {
    font-size: 45px;
  }
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .hive_affiliatebanner__title {
    font-size: 48px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 767.98px) {
  .hive_affiliatebanner__title {
    font-size: 45px;
  }
}
@media only screen and (max-width: 575.98px) {
  .hive_affiliatebanner__title {
    font-size: 36px;
  }
}
@media only screen and (max-width: 480px) {
  .hive_affiliatebanner__title {
    font-size: 32px;
  }
}
@media only screen and (max-width: 375px) {
  .hive_affiliatebanner__title {
    font-size: 26px;
  }
}

/* Hive Affiliate Promo Css */
.hive_affiliatePromo.white .hive_affiliatePromo__thumb {
  background-color: var(--white);
  color: var(--main-color-one);
}
.hive_affiliatePromo.white .hive_affiliatePromo__title {
  color: var(--white);
}
.hive_affiliatePromo.white .hive_affiliatePromo__para {
  color: rgba(var(--white-rgb), 0.8);
}
.hive_affiliatePromo__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 15px;
}
.hive_affiliatePromo__thumb {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  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;
  height: 60px;
  width: 60px;
  background-color: var(--main-color-one);
  color: var(--white);
  border-radius: 50%;
}
.hive_affiliatePromo__thumb img {
  max-width: 35px;
}
.hive_affiliatePromo__contents {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.hive_affiliatePromo__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--heading-color);
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hive_affiliatePromo__title {
    font-size: 20px;
  }
}
@media only screen and (max-width: 375px) {
  .hive_affiliatePromo__title {
    font-size: 20px;
  }
}
.hive_affiliatePromo__para {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--paragraph-color);
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hive_affiliatePromo__para {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .hive_affiliatePromo__para {
    font-size: 15px;
  }
}

/* Hive Affiliate Promo Css */
.hive_affiliateWork.white .hive_affiliateWork__thumb {
  background-color: var(--white);
  color: var(--main-color-one);
}
.hive_affiliateWork.white .hive_affiliateWork__title {
  color: var(--white);
}
.hive_affiliateWork.white .hive_affiliateWork__para {
  color: rgba(var(--white-rgb), 0.8);
}
.hive_affiliateWork__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 15px;
}
.hive_affiliateWork__thumb {
  font-size: 60px;
}
.hive_affiliateWork__thumb img {
  max-width: 60px;
}
.hive_affiliateWork__contents {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.hive_affiliateWork__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--heading-color);
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hive_affiliateWork__title {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767.98px) {
  .hive_affiliateWork__title {
    font-size: 20px;
  }
}
.hive_affiliateWork__para {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--paragraph-color);
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hive_affiliateWork__para {
    font-size: 15px;
  }
}
@media only screen and (max-width: 767.98px) {
  .hive_affiliateWork__para {
    font-size: 15px;
  }
}

/* SignIn SignUp Css */
.hive_signIn__wrapper {
  max-width: 800px;
  margin-inline: auto;
  background-color: var(--white);
  padding: 50px;
}
.hive_signIn__wrapper.signUp__wrapper {
  max-width: 800px;
}
#edd_login_form legend, #edd_register_form legend,
.hive_signIn__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--heading-color);
}
#edd_login_form label, #edd_register_form label { 
    display: block;
}
.hive_signIn__para {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--paragraph-color);
}

/* LTD Banner css */
.hive_ltdBanner_area {
  position: relative;
}
.hive_ltdBanner_area__padding {
  padding: 190px 0 190px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .hive_ltdBanner_area__padding {
    padding: 190px 0 180px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hive_ltdBanner_area__padding {
    padding: 190px 0 160px;
  }
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .hive_ltdBanner_area__padding {
    padding: 150px 0 140px;
  }
}

.hive_ltdBanner_shape .wave {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 9;
}
.hive_ltdBanner_shape .textShape {
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  text-align: center;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .hive_ltdBanner_shape .textShape {
    bottom: -10px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .hive_ltdBanner_shape .textShape {
    bottom: -10px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hive_ltdBanner_shape .textShape {
    bottom: -10px;
  }
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .hive_ltdBanner_shape .textShape {
    bottom: 0;
  }
}

.hive_ltdBanner__subtitle {
  font-size: 20px;
  line-height: 1.2;
  color: var(--main-color-two);
  display: block;
}
@media only screen and (max-width: 575.98px) {
  .hive_ltdBanner__subtitle {
    font-size: 18px;
  }
}
@media only screen and (max-width: 375px) {
  .hive_ltdBanner__subtitle {
    font-size: 16px;
  }
}
.hive_ltdBanner__title {
  font-size: 70px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
}
.hive_ltdBanner__title__span {
  display: block;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .hive_ltdBanner__title {
    font-size: 60px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hive_ltdBanner__title {
    font-size: 56px;
  }
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .hive_ltdBanner__title {
    font-size: 42px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 575.98px) {
  .hive_ltdBanner__title {
    font-size: 32px;
  }
}
@media only screen and (max-width: 375px) {
  .hive_ltdBanner__title {
    font-size: 26px;
  }
}
.hive_ltdBanner__title:hover {
  color: var(--main-color-one);
}
.hive_ltdBanner__price {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--main-color-two);
}
.hive_ltdBanner__price sub {
  color: rgba(var(--white-rgb), 0.8);
  font-weight: 400;
  bottom: 0;
  font-size: 75%;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .hive_ltdBanner__price {
    font-size: 42px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hive_ltdBanner__price {
    font-size: 36px;
  }
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .hive_ltdBanner__price {
    font-size: 28px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 575.98px) {
  .hive_ltdBanner__price {
    font-size: 24px;
  }
}
@media only screen and (max-width: 375px) {
  .hive_ltdBanner__price {
    font-size: 20px;
  }
}
.hive_ltdBanner__price:hover {
  color: var(--main-color-one);
}

/* Gaurantee Css */
.hive_ltdGaurantee__wrapper__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px 12px;
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .hive_ltdGaurantee__wrapper__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.hive_ltdGaurantee__wrapper__contents {
  -ms-flex-preferred-size: 40%;
      flex-basis: 40%;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .hive_ltdGaurantee__wrapper__contents {
    -ms-flex-preferred-size: 47%;
        flex-basis: 47%;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hive_ltdGaurantee__wrapper__contents {
    -ms-flex-preferred-size: 55%;
        flex-basis: 55%;
  }
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .hive_ltdGaurantee__wrapper__contents {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
.hive_ltdGaurantee__wrapper__title {
  font-size: 38px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--heading-color);
}
@media only screen and (max-width: 767.98px) {
  .hive_ltdGaurantee__wrapper__title {
    font-size: 32px;
    line-height: 1.3;
  }
}
@media only screen and (max-width: 480px) {
  .hive_ltdGaurantee__wrapper__title {
    font-size: 28px;
    line-height: 1.3;
  }
}
@media only screen and (max-width: 375px) {
  .hive_ltdGaurantee__wrapper__title {
    font-size: 24px;
  }
}
.hive_ltdGaurantee__wrapper__para {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--paragraph-color);
}
.hive_ltdGaurantee__wrapper__image {
  max-width: 350px;
}

/* Ltd Feature css */
.hive_ltdFeature__title {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--heading-color);
}
.hive_ltdFeature__para {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--paragraph-color);
}
.hive_ltdFeature__single {
  background-color: var(--white);
  padding: 20px 15px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hive_ltdFeature__single {
    padding: 20px 10px;
  }
}
@media only screen and (max-width: 767.98px) {
  .hive_ltdFeature__single {
    padding: 20px 10px;
  }
}
.hive_ltdFeature__single.padding_grid {
  padding: 35px 15px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hive_ltdFeature__single.padding_grid {
    padding: 33px 10px;
  }
}
.hive_ltdFeature__single.grid_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: center;
  gap: 15px;
}
.hive_ltdFeature__single.grid_flex .hive_ltdFeature__single__contents {
  margin-top: 0;
  text-align: left;
}
.hive_ltdFeature__single__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--heading-color);
}
@media only screen and (max-width: 767.98px) {
  .hive_ltdFeature__single__title {
    font-size: 18px;
  }
}
.hive_ltdFeature__single__para {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--paragraph-color);
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hive_ltdFeature__single__para {
    font-size: 15px;
  }
}
@media only screen and (max-width: 767.98px) {
  .hive_ltdFeature__single__para {
    font-size: 15px;
  }
}
.hive_ltdFeature__single__contents {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: 15px;
}

/* Ltd Business Css */
.hive_ltdbusiness_border_top {
  border-top: 1px solid var(--border-color-two);
}

.hive_ltd_business_area {
  overflow: hidden;
}

.center-text .hive_ltdbusiness__author__thumb img {
  margin-inline: auto;
}
.center-text .hive_ltdbusiness__author__tag {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.hive_ltdbusiness__author__thumb img {
  border-radius: 50%;
}
.hive_ltdbusiness__author__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--heading-color);
}
.hive_ltdbusiness__author__tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 15px 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.hive_ltdbusiness__author__tag__item {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  color: var(--paragraph-color);
  line-height: 1.4;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.hive_ltdbusiness__author__tag__item:hover {
  color: var(--main-color-one);
}
.hive_ltdbusiness__author__tag__item.name {
  font-weight: 500;
  color: var(--main-color-one);
}
.hive_ltdbusiness__wrapper {
  padding-left: 70px;
  position: relative;
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .hive_ltdbusiness__wrapper {
    padding-left: 0;
    padding-top: 30px;
  }
}
.hive_ltdbusiness__wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  top: -100px;
  background-color: var(--border-color-two);
  height: calc(100% + 200px);
  width: 1px;
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .hive_ltdbusiness__wrapper::before {
    width: 100%;
    height: 1px;
    top: 0;
  }
}
.hive_ltdbusiness__wrapper__title {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--heading-color);
}
@media only screen and (max-width: 767.98px) {
  .hive_ltdbusiness__wrapper__title {
    font-size: 32px;
  }
}
@media only screen and (max-width: 480px) {
  .hive_ltdbusiness__wrapper__title {
    font-size: 28px;
  }
}
@media only screen and (max-width: 375px) {
  .hive_ltdbusiness__wrapper__title {
    font-size: 26px;
  }
}
.hive_ltdbusiness__wrapper__para {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--paragraph-color);
}
@media only screen and (max-width: 375px) {
  .hive_ltdbusiness__wrapper__para {
    font-size: 15px;
  }
}
.hive_ltdbusiness__wrapper__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.hive_ltdbusiness__wrapper__images__item {
  background-color: var(--white);
  border-radius: 10px;
  padding: 20px;
  max-width: 29%;
  -webkit-box-shadow: 0 0 20px rgba(var(--black-rgb), 0.05);
  box-shadow: 0 0 20px rgba(var(--black-rgb), 0.05);
}
@media only screen and (max-width: 575.98px) {
  .hive_ltdbusiness__wrapper__images__item {
    max-width: 45%;
  }
}

/* Slider Nav & Dots style */
.ltd_business_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 12px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.ltd_business_nav .prev-icon,
.ltd_business_nav .next-icon {
  font-size: 20px;
  cursor: pointer;
  z-index: 9;
  background: var(--border-color);
  color: var(--paragraph-color);
  -webkit-transition: 300ms;
  transition: 300ms;
  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;
  height: 40px;
  width: 40px;
  border-radius: 50%;
}
.ltd_business_nav .prev-icon:hover,
.ltd_business_nav .next-icon:hover {
  background-color: var(--secondary-color-two);
  color: #fff;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .ltd_business_nav .prev-icon,
.ltd_business_nav .next-icon {
    left: -25px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .ltd_business_nav .prev-icon,
.ltd_business_nav .next-icon {
    left: -25px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .ltd_business_nav .prev-icon,
.ltd_business_nav .next-icon {
    left: -25px;
  }
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .ltd_business_nav .prev-icon,
.ltd_business_nav .next-icon {
    left: -25px;
  }
}
@media only screen and (max-width: 575.98px) {
  .ltd_business_nav .prev-icon,
.ltd_business_nav .next-icon {
    left: 0px;
  }
}

.ltd_business_dot .slick-dots {
  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;
  margin-top: 30px;
  padding: 10px 0 0;
}
.ltd_business_dot .slick-dots li {
  text-indent: -9999px;
  height: 10px;
  width: 10px;
  background: var(--border-color-two);
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.ltd_business_dot .slick-dots li.slick-active {
  background: var(--secondary-color-two);
  width: 30px;
  border-radius: 10px;
}
.ltd_business_dot .slick-dots li button {
  border: 0;
  outline: none;
}

/* Ltd Business Css */
.hive_ltdIntegrate__wrapper__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.hive_ltdIntegrate__wrapper__left {
  -ms-flex-preferred-size: 35%;
      flex-basis: 35%;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .hive_ltdIntegrate__wrapper__left {
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hive_ltdIntegrate__wrapper__left {
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
  }
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .hive_ltdIntegrate__wrapper__left {
    -ms-flex-preferred-size: 80%;
        flex-basis: 80%;
  }
}
@media only screen and (max-width: 767.98px) {
  .hive_ltdIntegrate__wrapper__left {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
.hive_ltdIntegrate__wrapper__title {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--heading-color);
}
@media only screen and (max-width: 767.98px) {
  .hive_ltdIntegrate__wrapper__title {
    font-size: 32px;
  }
}
@media only screen and (max-width: 480px) {
  .hive_ltdIntegrate__wrapper__title {
    font-size: 28px;
  }
}
@media only screen and (max-width: 375px) {
  .hive_ltdIntegrate__wrapper__title {
    font-size: 26px;
  }
}
.hive_ltdIntegrate__wrapper__contents {
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .hive_ltdIntegrate__wrapper__contents {
    -ms-flex-preferred-size: 35%;
        flex-basis: 35%;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .hive_ltdIntegrate__wrapper__contents {
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hive_ltdIntegrate__wrapper__contents {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .hive_ltdIntegrate__wrapper__contents {
    -ms-flex-preferred-size: 70%;
        flex-basis: 70%;
  }
}
@media only screen and (max-width: 767.98px) {
  .hive_ltdIntegrate__wrapper__contents {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
.hive_ltdIntegrate__wrapper__contents__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.hive_ltdIntegrate__wrapper__item {
  display: inline-block;
  background-color: var(--border-color);
  padding: 20px;
  border-radius: 10px;
  width: calc(50% - 12px);
}
@media only screen and (max-width: 375px) {
  .hive_ltdIntegrate__wrapper__item {
    width: 100%;
  }
}
.hive_ltdIntegrate__wrapper__item__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
}
.hive_ltdIntegrate__wrapper__item__title span {
  font-size: 16px;
  font-weight: 400;
  color: var(--heading-color);
}

/* Ltd Solution Css */
.hive_ltdsolution_area {
  position: relative;
}

.hive_ltdsolution__logo {
  position: absolute;
  top: -26px;
  left: 0;
  right: 0;
  text-align: center;
}
.hive_ltdsolution__logo__thumb {
  border: 1px solid var(--border-color);
  background-color: var(--white);
  padding: 5px 20px;
  border-radius: 30px;
  display: inline-block;
}
.hive_ltdsolution__logo img {
  max-width: 190px;
}

.hive_ltdsollution__wrapper {
  border: 1px solid var(--border-color);
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  overflow-x: auto;
}
.hive_ltdsollution__wrapper__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.hive_ltdsollution__wrapper__right {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: 16%;
      flex-basis: 16%;
  background-color: var(--heading-color);
}
.hive_ltdsollution__wrapper__right .hive_ltdsollution__wrapper__card__bottom {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.hive_ltdsollution__wrapper__right .hive_ltdsollution__wrapper__card__bottom__list ul li {
  color: var(--white);
}
.hive_ltdsollution__wrapper__right .hive_ltdsollution__wrapper__card__bottom__list ul li:nth-child(odd) {
  background-color: rgba(var(--white-rgb), 0.1);
}

.hive_ltdsollution__wrapper__card {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  min-width: 180px;
}
.hive_ltdsollution__wrapper__card__top {
  padding: 10px;
  min-height: 50px;
  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;
}
.hive_ltdsollution__wrapper__card__top__title {
  color: var(--heading-color);
  font-size: 16px;
  line-height: 1.3;
  font-weight: 500;
  position: relative;
}
.hive_ltdsollution__wrapper__card__bottom {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.hive_ltdsollution__wrapper__card__bottom__list ul li {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 400;
  padding: 0px 20px;
  line-height: 50px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}
.hive_ltdsollution__wrapper__card__bottom__list ul li:nth-child(odd) {
  background-color: var(--border-color);
}
.hive_ltdsollution__wrapper__card__bottom__list ul li:nth-child(even) {
  padding: 10px 20px;
}
.hive_ltdsollution__wrapper__card__bottom__list ul li:last-child {
  border: 0;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hive_ltdsollution__wrapper__card__bottom__list ul li {
    font-size: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .hive_ltdsollution__wrapper__card__bottom__list ul li {
    font-size: 16px;
  }
}
@media only screen and (max-width: 375px) {
  .hive_ltdsollution__wrapper__card__bottom__list ul li {
    font-size: 15px;
  }
}
.hive_ltdsollution__wrapper__card__bottom__list ul li .check-icon {
  color: var(--success-color);
}
.hive_ltdsollution__wrapper__card__bottom__list ul li .check-icon::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.hive_ltdsollution__wrapper__card__bottom__list ul li .close-icon {
  color: var(--delete-color) !important;
}
.hive_ltdsollution__wrapper__card__bottom__list ul li .close-icon::before {
  content: "\f00d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

/* Dashboard area */
.dashboard-area {
  max-width: 1920px;
  margin: auto;
}

.padding-20 {
  padding: 20px;
}

.profile-border-top {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  margin-top: 20px;
}

.profile-border-bottom {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.color-profile {
  color: var(--main-color-one);
}

.badge-notification {
  font-size: 10px;
  line-height: 14px;
  padding: 5px 5px;
  background: var(--main-color-one);
  color: #fff;
  border-radius: 3px;
  word-break: break-all;
  max-width: 80px;
}

.header_bg {
  background-color: var(--white);
  padding: 20px;
  border-radius: 10px;
}

.dashboard__inner {
  width: 100%;
}
.dashboard__left {
  background: var(--white);
  text-align: center;
  padding: 0;
  display: block;
  padding: 20px 20px;
  width: 250px;
  height: calc(100vh - 20px);
  overflow-y: auto;
  scrollbar-color: var(--border-color) var(--body-color);
  scrollbar-width: thin;
  position: fixed;
  z-index: 99;
}
@media only screen and (max-width: 375px) {
  .dashboard__left {
    max-width: 280px;
  }
}
.dashboard__left::-webkit-scrollbar {
  border-radius: 30px;
  width: 5px;
  background-color: var(--border-color);
}
.dashboard__left::-webkit-scrollbar-thumb {
  border-radius: 30px;
  background-color: var(--body-color);
}
.dashboard__right {
  margin-left: 250px;
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .dashboard__right {
    margin-left: 0;
  }
}
.dashboard__right__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .dashboard__right__flex {
    display: block;
  }
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .dashboard__right__flex {
    display: block;
  }
}
.dashboard__menu__list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.dashboard__menu__list__item.active > a {
  color: var(--main-color-one);
  font-weight: 500;
}
.dashboard__menu__list__item.active > a svg path {
  fill: var(--main-color-one);
}
.dashboard__menu__list__item.has-children.open > a {
  color: var(--main-color-one);
}
.dashboard__menu__list__item.has-children.open > a svg path {
  fill: var(--main-color-one);
}
.dashboard__menu__list__item.has-children.open > a::after {
  content: "\f068";
}
.dashboard__menu__list__item.has-children > a {
  position: relative;
}
.dashboard__menu__list__item.has-children > a::after {
  content: "+";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 0px;
  font-size: 16px;
}
.dashboard__menu__list__item.show > .submenu {
  display: block;
}
.dashboard__menu__list__item a {
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--heading-color);
  gap: 10px;
  padding: 14px 0px;
  cursor: pointer;
  border-radius: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.dashboard__menu__list__item a .icon {
  margin: 0;
  line-height: 1;
}
.dashboard__menu__list__item > .submenu {
  margin-left: 10px;
  display: none;
  list-style: none;
  border-left: 1px solid var(--main-color-one);
  padding: 0;
  padding-left: 10px;
}
.dashboard__menu__list__item > .submenu .dashboard__menu__list__item.has-children > a {
  font-size: 16px;
}
.dashboard__menu__list__item > .submenu .dashboard__menu__list__item.selected a {
  font-size: 16px;
  color: var(--main-color-one);
}
.dashboard__menu__list__item > .submenu .dashboard__menu__list__item.selected a::before {
  background: var(--main-color-one);
}
.dashboard__menu__list__item > .submenu .dashboard__menu__list__item a {
  font-size: 16px;
  line-height: 22px;
  padding: 5px 0px;
  position: relative;
  font-weight: 400;
  border-radius: 5px;
  gap: 7px;
}
.dashboard__footer {
  margin-top: 255px;
}
.dashboard__footer__contents__para {
  font-size: 16px;
  color: var(--heading-color);
}
.dashboard__footer__contents__para a {
  color: var(--main-color-one);
  font-weight: 600;
}

.dashboard__body {
  padding: 24px;
}
@media only screen and (max-width: 575.98px) {
  .dashboard__body {
    padding: 20px;
  }
}
@media only screen and (max-width: 375px) {
  .dashboard__body {
    padding: 10px;
  }
}
.dashboard__body__header__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px 12px;
}
.dashboard__body__header__title {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--heading-color);
}
@media only screen and (max-width: 480px) {
  .dashboard__body__header__title {
    font-size: 24px;
  }
}
@media only screen and (max-width: 375px) {
  .dashboard__body__header__title {
    font-size: 22px;
  }
}
.dashboard__body__header__title a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 5px;
}
.dashboard__body__header__title .icon {
  font-size: 32px;
  margin-top: 2px;
}
.dashboard__body__header__para {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--paragraph-color);
}
.dashboard__body__single {
  background-color: var(--white);
  padding: 20px;
  border-radius: 10px;
}
.dashboard__body__single:not(:last-child) {
  margin-bottom: 24px;
}

@media (min-width: 200px) and (max-width: 991.98px) {
  .body-overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    left: -100%;
    top: 0%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 990;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.6s;
    transition: 0.6s;
  }
  .body-overlay.active {
    visibility: visible;
    opacity: 1;
    left: 0%;
    top: 0%;
  }
}

@media (min-width: 200px) and (max-width: 991.98px) {
  .dashboard__left {
    z-index: 1;
    position: absolute;
    top: 0;
    left: -100%;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    z-index: 991;
    background: var(--white);
    text-align: center;
    border-radius: 0px;
    display: block;
    height: 100vh;
    transition: all 0.5s;
  }
  .dashboard__left.active {
    visibility: visible;
    opacity: 1;
    left: 0;
  }
}
@media only screen and (min-width: 200px) and (max-width: 991.98px) and (max-width: 480px) {
  .dashboard__left {
    width: 280px;
  }
}
.dashboard__left__close {
  position: absolute;
  right: 0px;
  top: 0;
  color: var(--danger-color);
  background: #fff;
  -webkit-box-shadow: 0 0 10px rgba(var(--border-color), 0.5);
  box-shadow: 0 0 10px rgba(var(--border-color), 0.5);
  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;
  height: 30px;
  width: 30px;
  font-size: 20px;
  border-radius: 5px;
  visibility: hidden;
  opacity: 0;
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .dashboard__left__close {
    visibility: visible;
    opacity: 1;
  }
}
.dashboard__icon {
  display: none;
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .dashboard__icon {
    display: block;
    margin-bottom: 20px;
  }
}
.dashboard__icon__bars {
  font-size: 24px;
  cursor: pointer;
  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;
  height: 45px;
  width: 45px;
  font-size: 24px;
  background: var(--main-color-one);
  -webkit-box-shadow: 0 0 10px rgba(var(--border-color), 0.5);
  box-shadow: 0 0 10px rgba(var(--border-color), 0.5);
  z-index: 95;
  border-radius: 5px;
  color: #fff;
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .dashboard__icon__bars {
    height: 40px;
    width: 40px;
    border-radius: 0;
  }
}

.single_promo {
  background: var(--white);
  padding: 24px;
  border-radius: 10px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .single_promo {
    padding: 20px 15px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .single_promo {
    padding: 20px 20px;
  }
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .single_promo {
    padding: 24px 20px;
  }
}
@media only screen and (max-width: 767.98px) {
  .single_promo {
    padding: 20px 15px;
  }
}
.single_promo__subtitle {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
  color: var(--paragraph-color);
  display: block;
}
.single_promo__number {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--heading-color);
}
.single_promo__icon {
  position: absolute;
  bottom: 0;
  right: 20px;
  font-size: 100px;
  opacity: 0.1;
}

.dashboard__wrapper {
  background-color: var(--white);
  padding: 20px;
  border-radius: 10px;
}

.dashboard_filter__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 24px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.dashboard_filter__item {
  width: calc(16.6666666667% - 20px);
  background-color: var(--white);
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .dashboard_filter__item {
    width: calc(25% - 18px);
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .dashboard_filter__item {
    width: calc(33.3333333333% - 16px);
  }
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .dashboard_filter__item {
    width: calc(33.3333333333% - 16px);
  }
}
@media only screen and (max-width: 767.98px) {
  .dashboard_filter__item {
    width: calc(50% - 12px);
  }
}
@media only screen and (max-width: 480px) {
  .dashboard_filter__item {
    width: calc(100% - 0px);
  }
}

.dashboard_table {
  overflow-x: auto;
}
.dashboard_table table {
  margin: 0;
  border-collapse: separate;
  border-spacing: 0 12px;
  overflow-x: auto;
}
.dashboard_table .table > :not(:first-child) {
  border-top: 0;
}
.dashboard_table thead {
  background-color: var(--white);
  border-radius: 5px;
  border-radius: 10px;
}
.dashboard_table thead tr th {
  padding: 20px 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  white-space: nowrap;
}
.dashboard_table thead tr th:first-child {
  border-radius: 10px 0 0 10px;
}
.dashboard_table thead tr th:last-child {
  border-radius: 0px 10px 10px 0;
}
.dashboard_table tbody {
  border-top: 0;
  background-color: #fff;
}
.dashboard_table tbody tr:not(:last-child) {
  border-bottom: 0;
}
.dashboard_table tbody tr:not(:last-child) td {
  border-bottom: 1px solid var(--border-color);
}
.dashboard_table tbody tr:last-child td {
  border: 0;
}
.dashboard_table tbody tr td {
  padding: 20px 10px;
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
  color: var(--paragraph-color);
  vertical-align: middle;
  white-space: nowrap;
}
.dashboard_table tbody tr td:first-child {
  border-radius: 10px 0 0 10px !important;
}
.dashboard_table tbody tr td:last-child {
  border-radius: 0px 10px 10px 0 !important;
}
.dashboard_table .invoice_number {
  color: var(--main-color-one);
  font-weight: 500;
}
.dashboard_table .amount {
  color: var(--danger-color);
  font-weight: 500;
}
.dashboard_table .amount__added {
  color: var(--success-color);
}
.dashboard_table .balance {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 5px 15px;
  border: 1px solid var(--border-color);
  position: relative;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
  border-radius: 30px;
  white-space: nowrap;
}
.dashboard_table .balance::before {
  content: "$";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}
.dashboard_table .balance__added {
  color: var(--success-color);
  border-color: var(--success-color);
}
.dashboard_table .source_balance strong {
  color: var(--heading-color);
}
.dashboard_table .status_successful {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 5px 15px;
  background-color: rgba(var(--success-color-rgb), 0.2);
  color: var(--success-color);
  border-radius: 30px;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
}
.dashboard_table .status_successful.failed {
  background-color: rgba(var(--danger-color-rgb), 0.2);
  color: var(--danger-color);
}

.table_author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.table_author__thumb img {
  max-width: 70px;
  border-radius: 50%;
}
.table_author__names {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--heading-color);
}
.table_author__names span {
  color: var(--paragraph-color);
}
.table_author__para {
  font-size: 15px;
  font-weight: 4600;
  line-height: 1.2;
  color: var(--paragraph-color);
}
.table_author__details__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.table_author__details__name {
  display: inline-block;
  color: var(--main-color-one);
  font-size: 16px;
  font-weight: 500;
}
.table_author__details .dashboard__select .select2-selection--single {
  border: 0;
  height: 24px;
  border-radius: 5px;
}
.table_author__details .dashboard__select .select2-selection--single .select2-selection__rendered {
  height: 24px;
  line-height: 24px;
  padding: 0 50px 0 10px;
  background-color: var(--border-color);
  border-radius: 5px;
}
.table_author__details .dashboard__select .select2-selection--single .select2-selection__arrow {
  height: 24px;
  line-height: 24px;
}

.table_select .dashboard__select .select2-selection--single {
  border: 0;
  height: 24px;
  border-radius: 5px;
}
.table_select .dashboard__select .select2-selection--single .select2-selection__rendered {
  height: 24px;
  line-height: 24px;
  padding: 0 50px 0 10px;
  background-color: var(--border-color);
  border-radius: 5px;
}
.table_select .dashboard__select .select2-selection--single .select2-selection__arrow {
  height: 24px;
  line-height: 24px;
}

.table_updated {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
}

.table_created {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
}

.dashboard-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  cursor: pointer;
  gap: 10px;
}
.dashboard-checkbox .check-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  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;
  height: 18px;
  width: 18px;
  cursor: pointer;
  background: #fff;
  border: 1px solid var(--light-color);
  border-radius: 0px;
  margin-top: 3px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.dashboard-checkbox .check-input::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 10px;
  color: #fff;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(1.6) rotate(90deg);
  transform: scale(1.6) rotate(90deg);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.dashboard-checkbox .check-input:checked {
  background: var(--main-color-one);
  border-color: var(--main-color-one);
  background: var(--main-color-one);
}
.dashboard-checkbox .check-input:checked::after {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1.2) rotate(0deg);
  transform: scale(1.2) rotate(0deg);
}
.dashboard-checkbox .checkbox-label {
  cursor: pointer;
  text-align: left;
  line-height: 26px;
  font-size: 16px;
  font-weight: 400;
  color: var(--heading-color);
  margin: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media only screen and (max-width: 575.98px) {
  .dashboard-checkbox .checkbox-label {
    font-size: 15px;
  }
}

.support_stuff__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 24px;
  color: var(--heading-color);
}
.support_stuff__para {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--paragraph-color);
}
.support_stuff__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.support_stuff__ticket {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
}
.support_stuff__ticket__subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--paragraph-color);
}
.support_stuff__ticket__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--heading-color);
}
.support_stuff__ticket__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 0;
}
.support_stuff__ticket__item {
  position: relative;
}
.support_stuff__ticket__item:not(:last-child) {
  margin-right: 24px;
}
.support_stuff__ticket__item:not(:first-child) {
  padding-left: 24px;
}
.support_stuff__ticket__item:not(:first-child)::before {
  content: "";
  position: absolute;
  height: 80%;
  width: 2px;
  background-color: var(--border-color-two);
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.support_stuff__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.support_stuff__action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
  overflow: hidden;
}
.support_stuff__action__icon {
  padding: 5px 10px;
  background-color: var(--main-color-one);
  color: var(--white);
}
.support_stuff__action__icon:not(:last-child) {
  border-right: 1px solid var(--white);
}
.support_stuff__action__icon:focus, .support_stuff__action__icon:hover {
  color: var(--white);
}
.support_stuff__action__icon.delete_icon {
  background-color: #f80000;
}

.single-input.input_button .form--control {
  padding-right: 110px;
}
.single-input.searchInput_btn .form--control {
  padding-right: 80px;
}

.generate_btn,
.searchIcon_btn {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  border-radius: 0 5px 5px 0;
  font-size: 15px;
  padding: 5px 15px;
  background-color: var(--main-color-one);
  color: var(--white);
  border: 0;
  outline: none;
}

.searchIcon_btn {
  padding: 5px 25px;
  font-size: 18px;
}

.saved_responses__template .hive_btn {
  max-height: 50px;
  height: 100%;
}
.saved_responses__dots__icon {
  font-size: 18px;
  color: var(--heading-color);
  cursor: pointer;
}
.saved_responses .hive_faq_contents .hive_faq_item__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--white);
  padding: 0 20px 0 0;
}
.saved_responses .hive_faq_contents .hive_faq_item .hive_faq_title {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.hiveActivities__item {
  position: relative;
  z-index: 1;
}
.hiveActivities__item:not(:last-child) {
  padding-bottom: 50px;
}
.hiveActivities__item:not(:last-child)::before {
  content: "";
  position: absolute;
  height: calc(100% + 20px);
  top: 0;
  left: 30px;
  width: 2px;
  background-color: var(--border-color-two);
  z-index: -1;
}
.hiveActivities__item__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
}
.hiveActivities__item__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 15px;
}
.hiveActivities__item__author__thumb {
  max-width: 65px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.hiveActivities__item__author__thumb img {
  border-radius: 50%;
}
.hiveActivities__item__author__contents {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.hiveActivities__item__author__contents__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--heading-color);
  display: inline-block;
  margin-bottom: 10px;
}
.hiveActivities__item__author__contents__title span {
  color: var(--paragraph-color);
  font-weight: 500;
}
.hiveActivities__item__author__contents__para {
  font-size: 16px;
  font-weight: 400;
  color: var(--paragraph-color);
}
.hiveActivities__item__author__contents__leftFlex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.hiveActivities__item__author__contents__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.hiveActivities__item__webBtn {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  background-color: rgba(var(--secondary-color-rgb), 0.1);
  color: var(--secondary-color);
  padding: 5px 20px;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.hiveActivities__item__webBtn:hover {
  background-color: var(--secondary-color);
  color: var(--white);
}

.webBtn {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  background-color: rgba(var(--secondary-color-rgb), 0.1);
  color: var(--secondary-color);
  padding: 5px 20px;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.webBtn:hover {
  background-color: var(--secondary-color);
  color: var(--white);
}

.supportStuff_btn {
  background-color: var(--main-color-one);
  color: var(--white);
  display: inline-block;
  font-size: 16px;
  line-height: 1.2;
  border-radius: 5px;
  padding: 5px 10px;
}
.supportStuff_btn:hover {
  background-color: rgba(var(--main-color-one-rgb), 0.2);
  color: var(--main-color-one);
}
.supportStuff_btn.customerBtn {
  background-color: var(--main-color-two);
}
.supportStuff_btn.customerBtn:hover {
  background-color: rgba(var(--main-color-two-rgb), 0.2);
  color: var(--main-color-two);
}

.hiveReports__header__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.hiveSingleReports__box {
  width: 200px;
  height: 200px;
  position: relative;
  margin: auto;
}
.hiveSingleReports__box__contents {
  text-align: center;
  padding: 25px 0;
}
.hiveSingleReports__box__thumb {
  position: relative;
  z-index: 2;
  display: inline-block;
}
.hiveSingleReports__box__thumb img {
  max-width: 50px;
  border-radius: 50%;
}
.hiveSingleReports__box__thumb__name {
  position: relative;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  background-color: var(--main-color-one);
  border-radius: 10px;
  padding: 5px 10px;
  border: 1px solid #fff;
  margin-top: -10px;
}
.hiveSingleReports__box__para {
  font-size: 18px;
  font-weight: 400;
  color: var(--paragraph-color);
  display: block;
  text-align: center;
  color: #000;
  margin-top: 10px;
}
.hiveSingleReports__box canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  width: auto;
}
.hiveSingleReports__box .hive_circleProgress {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: var(--heading-color);
  margin-top: 10px;
}

.hiveAutomation__header__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.hiveAutomation__header__single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px 20px;
}
.hiveAutomation__header__single__published {
  display: inline-block;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  color: var(--paragraph-color);
}
.hiveAutomation__header__single__contents__automation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
}
.hiveAutomation__header__single__contents__automation:hover .hiveAutomation__header__single__contents__automation__title {
  color: var(--main-color-one);
}
.hiveAutomation__header__single__contents__automation__title {
  color: var(--paragraph-color);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.hiveAutomation__header__single__contents__automation svg path {
  fill: var(--main-color-one);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.hiveAutomation__header__single__contents__saved {
  background: rgba(var(--main-color-one-rgb), 0.1);
  color: var(--main-color-one);
  padding: 5px 20px;
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.hiveAutomation__header__single__contents__saved:hover {
  background-color: var(--main-color-one);
  color: var(--white);
}
.hiveAutomation__header__single__contents__saved:hover svg path {
  fill: var(--white);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.hiveAutomation__header__single__contents__saved svg path {
  fill: var(--main-color-one);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.hive_headerPadding {
  padding: 20px;
}

.trigger__rowMargin {
  margin-top: 100px;
}

.hiveAutomation__margin {
  margin-top: 100px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hiveAutomation__margin {
    margin-top: 0px;
  }
}
@media only screen and (max-width: 575.98px) {
  .hiveAutomation__margin {
    margin-top: 0px;
  }
}

.hiveTtrigger {
  position: relative;
}
.hiveTtrigger__leftShapes {
  position: absolute;
  left: 50%;
  /* IE 9 */
  -webkit-transform: translateX(-50%);
  /* Chrome, Safari, Opera */
  transform: translateX(-50%);
  top: 100%;
}
.hiveTtrigger__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--heading-color);
}
.hiveTtrigger__inner {
  position: relative;
}
.hiveTtrigger__inner.hiveTtrigger__inner__width {
  max-width: 500px;
  margin-inline: auto;
}
.hiveTtrigger__inner .hiveTtrigger__rightShapes {
  position: absolute;
  left: -25px;
  bottom: 100%;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .hiveTtrigger__inner .hiveTtrigger__rightShapes {
    max-width: 230px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hiveTtrigger__inner .hiveTtrigger__rightShapes {
    display: none;
  }
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .hiveTtrigger__inner .hiveTtrigger__rightShapes {
    max-width: 230px;
  }
}
@media only screen and (max-width: 575.98px) {
  .hiveTtrigger__inner .hiveTtrigger__rightShapes {
    display: none;
  }
}

.hiveBusinessInboxes__header__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
}
.hiveBusinessInboxes__header__left {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.hiveBusinessInboxes__header__left__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
}
.hiveBusinessInboxes__inner__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 0;
}
.hiveBusinessInboxes__inner__item {
  position: relative;
}
.hiveBusinessInboxes__inner__item:not(:last-child) {
  margin-right: 20px;
}
.hiveBusinessInboxes__inner__item:not(:first-child) {
  padding-left: 20px;
}
.hiveBusinessInboxes__inner__item:not(:first-child)::before {
  content: "";
  position: absolute;
  height: 80%;
  width: 2px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  background-color: var(--border-color-two);
}
.hiveBusinessInboxes__inner__item__title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--paragraph-color);
}
.hiveBusinessInboxes__inner__item__title strong {
  font-weight: 600;
  color: var(--heading-color);
}

.addBusiness__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
}
.addBusiness__contents__title {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  margin: -3px 0 0;
}
@media only screen and (max-width: 375px) {
  .addBusiness__contents__title {
    font-size: 18px;
  }
}
.addBusiness__contents__para {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: var(--paragraph-color);
  line-height: 1.2;
  margin-top: 10px;
}

.addBusiness__icon {
  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;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background-color: var(--main-color-one);
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
}
@media only screen and (max-width: 375px) {
  .addBusiness__icon {
    height: 40px;
    width: 40px;
    font-size: 16px;
  }
}
.addBusiness__icon img {
  max-width: 30px;
}
@media only screen and (max-width: 375px) {
  .addBusiness__icon img {
    max-width: 25px;
  }
}
.addBusiness__icon:hover, .addBusiness__icon:focus {
  background-color: var(--main-color-one);
  color: var(--white);
}

.summernote_wrapper .note-editable {
  height: 300px;
}

.hiveAddInboxes__header__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}

.hivePopup_overlay {
  position: fixed;
  height: 100vh;
  width: 100%;
  left: 0;
  top: 0;
  background-color: rgba(var(--black-rgb), 0.7);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 990;
}
.hivePopup_overlay.show {
  visibility: visible;
  opacity: 1;
}

.hivePopup_close {
  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;
  height: 30px;
  width: 30px;
  background: var(--border-color);
  border-radius: 3px;
  color: var(--delete-color);
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.hivePopup_close:hover {
  background-color: var(--delete-color);
  color: var(--white);
}

.shortcode-popup-padding {
  padding: 30px;
}

.hiveShortCode_popup {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 700px;
  position: fixed;
  top: 50%;
  left: 50%;
  /* IE 9 */
  -webkit-transform: translate(-50%, -50%);
  /* Chrome, Safari, Opera */
  transform: translate(-50%, -50%);
  visibility: hidden;
  opacity: 0;
  z-index: 991;
  height: calc(100vh - 100px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--light-color) var(--border-color-two);
}
.hiveShortCode_popup::-webkit-scrollbar {
  background-color: var(--border-color-two);
  width: 5px;
  border-radius: 30px;
}
.hiveShortCode_popup::-webkit-scrollbar-thumb {
  background-color: var(--light-color);
  border-radius: 30px;
}
.hiveShortCode_popup.show {
  visibility: visible;
  opacity: 1;
}
.hiveShortCode_popup__title {
  font-size: 20px;
  font-weight: 700;
}
.hiveShortCode_popup__contents {
  border-top: 1px solid var(--input-color);
  padding-top: 25px;
  margin-top: 25px;
}
.hiveShortCode_popup__single:not(:first-child) {
  margin-top: 20px;
}
.hiveShortCode_popup__single__title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
}
.hiveShortCode_popup__single__input {
  position: relative;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 10px 50px 10px 15px;
}
.hiveShortCode_popup__single__input .myInput {
  width: 100%;
  border: 0;
  background-color: unset;
}
.hiveShortCode_popup__single__input__icon {
  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;
  height: 100%;
  width: 40px;
  font-size: 24px;
  background-color: var(--heading-color);
  color: #fff;
  position: absolute;
  right: 0;
  bottom: 0;
  cursor: pointer;
}

.hiveNotify__list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.hiveNotify__list__item:not(:first-child) {
  padding-top: 20px;
}
.hiveNotify__list__item:not(:last-child) {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--input-color);
}
.hiveNotify__list__title {
  font-size: 18px;
  font-weight: 500;
  color: var(--paragraph-color);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media only screen and (max-width: 480px) {
  .hiveNotify__list__title {
    font-size: 16px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 375px) {
  .hiveNotify__list__title {
    font-size: 15px;
    line-height: 24px;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
}
.hiveNotify__list__switch__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.hiveIntegration__header__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.hiveIntegration__header__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--heading-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
}
.hiveIntegration__header__title .icon {
  font-size: 24px;
}
.hiveIntegration__header__title .icon img {
  max-width: 35px;
}
.hiveIntegration__contents__para {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--paragraph-color);
}
.hiveIntegration__settingsBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 5px;
  color: var(--main-color-one);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.hiveIntegration__settingsBtn:hover {
  color: var(--main-color-one);
  font-weight: 600;
  letter-spacing: 1px;
}
.hiveIntegration__settingsBtn i {
  font-size: 18px;
  margin-top: 1px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.hiveIntegration__settings__para {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: var(--paragraph-color);
  max-width: 450px;
}
.hiveIntegration__settings__code {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  color: var(--secondary-color);
  background-color: rgba(var(--secondary-color-rgb), 0.05);
  width: 100%;
  padding: 20px;
  border: 1px solid var(--secondary-color);
  border-radius: 10px;
}
.hiveIntegration__settings__tab .tabs li {
  color: var(--heading-color);
  padding: 0 0 10px;
}
.hiveIntegration__settings__tab .tabs li.active {
  color: var(--main-color-one);
  font-weight: 600;
}
.hiveIntegration__settings__item:not(:last-child) {
  margin-bottom: 24px;
}
.hiveIntegration__settings__item__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--heading-color);
}
.hiveIntegration__settings__notification__item:not(:first-child) {
  padding-top: 15px;
}
.hiveIntegration__settings__notification__item:not(:last-child) {
  border-bottom: 1px solid var(--border-color-two);
  padding-bottom: 15px;
}
.hiveIntegration__settings__notification__item__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.hiveIntegration__settings__notification__item__para {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: var(--paragraph-color);
}
.hiveIntegration__settings__responder {
  border: 1px solid var(--border-color-two);
  padding: 20px;
  border-radius: 10px;
}
.hiveIntegration__settings__responder__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
@media only screen and (max-width: 375px) {
  .hiveIntegration__settings__responder__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.hiveIntegration__settings__author {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.hiveIntegration__settings__author__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
}
.hiveIntegration__settings__author__thumb {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 60px;
}
.hiveIntegration__settings__author__thumb img {
  border-radius: 50%;
}
.hiveIntegration__settings__author__name {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--heading-color);
}
.hiveIntegration__settings__author__para {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--paragraph-color);
}
.hiveIntegration__settings__author__contents {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.hiveIntegration__settings__facebook {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.hiveIntegration__settings__facebook__left {
  -ms-flex-preferred-size: 70%;
      flex-basis: 70%;
}
@media only screen and (max-width: 575.98px) {
  .hiveIntegration__settings__facebook__left {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
.hiveIntegration__settings__facebook__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.hiveIntegration__settings__facebook__thumb {
  max-width: 70px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.hiveIntegration__settings__facebook__thumb img {
  border-radius: 7px;
}
.hiveIntegration__settings__facebook__contents {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.hiveIntegration__settings__facebook__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--heading-color);
}
.hiveIntegration__settings__facebook__para {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--paragraph-color);
}
.hiveIntegration__subscription__item {
  background-color: var(--white);
  padding: 20px;
  border-radius: 10px;
}
.hiveIntegration__subscription__item:not(:last-child) {
  margin-bottom: 24px;
}
.hiveIntegration__subscription__item:nth-child(3n+1) .hiveIntegration__subscription__item__contents__icon {
  background-color: var(--main-color-two);
}
.hiveIntegration__subscription__item:nth-child(3n+2) .hiveIntegration__subscription__item__contents__icon {
  background-color: var(--provide-3);
}
.hiveIntegration__subscription__item__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px 10px;
}
.hiveIntegration__subscription__item__contents__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
}
.hiveIntegration__subscription__item__contents__icon {
  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;
  height: 50px;
  width: 50px;
  font-size: 18px;
  background-color: var(--main-color-one);
  color: var(--white);
  border-radius: 50%;
}
.hiveIntegration__subscription__item__contents__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--heading-color);
}
.hiveIntegration__subscription__item__contents__title sub {
  font-size: 15px;
  font-weight: 400;
  bottom: 0;
}
.hiveIntegration__subscription__item__contents__para {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--paragraph-color);
  margin-top: 5px;
}

.dashboard__body__header__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
}
.dashboard__body__header__switch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
}
.dashboard__body__header__switch__para {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 500;
  color: var(--paragraph-color);
}
.dashboard__body__header__saved__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.dashboard__body__header__saved__btn .hiveBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  white-space: nowrap;
  padding: 7px 15px;
  background-color: var(--main-color-one);
  color: #fff;
  border-radius: 30px;
}
.dashboard__body__header__saved__btn .hiveBtn.delete__btn {
  background-color: var(--delete-color);
}
.dashboard__body__header__saved__btn .hiveBtn.saved__btn {
  background-color: rgba(var(--main-color-one-rgb), 0.1);
  color: var(--main-color-one);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.dashboard__body__header__saved__btn .hiveBtn.saved__btn:hover {
  background-color: var(--main-color-one);
  color: var(--white);
}

.hiveSortable_drag__item.dragged {
  border: 10px solid var(--input-color);
}
.hiveSortable_drag__item-single-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
}
.hiveSortable_drag__item-single-icon {
  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;
  height: 50px;
  width: 50px;
  background-color: var(--input-color);
  color: var(--heading-color);
  border-radius: 5px;
}
.hiveSortable_drag__item-single-left-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.hiveSortable_drag__item-single-contents {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.hiveSortable_drag__item-single-contents-title {
  font-size: 20px;
  line-height: 28px;
  margin: -4px 0 0;
}
.hiveSortable_drag__item-single-contents-para {
  display: block;
  font-size: 16px;
  line-height: 26px;
  margin-top: 8px;
}

.hiveInputField__border {
  border: 1px solid var(--input-color);
}
.hiveInputField__padding {
  padding: 15px;
}
.hiveInputField__header__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.hiveInputField__header__title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.hiveInputField__header__title .title_arrow {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--heading-color);
  position: relative;
  background-color: var(--border-color);
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .hiveInputField__header__title .title_arrow {
    font-size: 16px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .hiveInputField__header__title .title_arrow {
    font-size: 16px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hiveInputField__header__title .title_arrow {
    font-size: 16px;
  }
}
@media only screen and (max-width: 575.98px) {
  .hiveInputField__header__title .title_arrow {
    font-size: 16px;
  }
}
.hiveInputField__header__title .title_arrow::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 10px;
  top: 10px;
}
.hiveInputField__header__right__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .hiveInputField__header__right__flex {
    gap: 5px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .hiveInputField__header__right__flex {
    gap: 5px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hiveInputField__header__right__flex {
    gap: 5px;
  }
}
@media only screen and (max-width: 575.98px) {
  .hiveInputField__header__right__flex {
    gap: 5px;
  }
}
.hiveInputField__header__right__icon {
  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;
  height: 40px;
  width: 40px;
  font-size: 16px;
  background-color: var(--white);
  border: 1px solid var(--delete-color);
  color: var(--delete-color);
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .hiveInputField__header__right__icon {
    height: 35px;
    width: 35px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .hiveInputField__header__right__icon {
    height: 35px;
    width: 35px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hiveInputField__header__right__icon {
    height: 35px;
    width: 35px;
  }
}
@media only screen and (max-width: 575.98px) {
  .hiveInputField__header__right__icon {
    height: 35px;
    width: 35px;
  }
}
.hiveInputField__header__right__icon:hover {
  background-color: var(--delete-color);
  color: var(--white);
}
.hiveInputField__header__right__icon i {
  line-height: 1;
}
.hiveInputField__header__right__icon img {
  max-width: 25px;
}
.hiveInputField__header__right__icon.edit {
  border-color: var(--main-color-one);
  color: var(--main-color-one);
}
.hiveInputField__header__right__icon.edit:hover {
  background-color: var(--main-color-one);
  color: var(--white);
}
.hiveInputField__header__right__edit {
  display: inline-block;
  padding: 7px 30px;
  background-color: var(--main-color-one);
  color: #fff;
  font-size: 16px;
  border-radius: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.hiveInputField__header__right__edit:hover {
  background-color: rgba(var(--main-color-one-rgb), 0.8);
  color: #fff;
}
.hiveInputField__para {
  margin: 0;
  padding: 0;
  font-size: 18px;
  line-height: 26px;
  margin-top: 10px;
}
.hiveInputField__contents {
  display: none;
}
.hiveInputField__contents.open {
  display: block;
}
.hiveInputField__contents__para {
  margin: 0;
  padding: 0;
  font-size: 18px;
  line-height: 26px;
  margin-top: 10px;
}
.hiveInputField__contents__form__span {
  display: block;
  font-size: 18px;
  color: var(--paragraph-color);
  margin-top: 10px;
}
.hiveInputField__contents__form .single-flex-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
}
@media only screen and (max-width: 480px) {
  .hiveInputField__contents__form .single-flex-input {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.hiveInputField__contents__form .single-flex-input:not(:last-child) {
  margin-bottom: 24px;
}
.hiveInputField__contents__form .common-quantity {
  position: relative;
}
.hiveInputField__contents__form .common-quantity-input {
  padding: 0 50px !important;
  text-align: center;
}
.hiveInputField__contents__form .common-quantity .substract,
.hiveInputField__contents__form .common-quantity .plus {
  position: absolute;
  left: 5px;
  bottom: 5px;
  height: calc(100% - 10px);
  background: var(--main-color-one);
  color: var(--white);
  font-size: 32px;
  border-radius: 5px;
  padding: 0 12px;
  cursor: pointer;
  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;
}
.hiveInputField__contents__form .common-quantity .plus {
  left: auto;
  right: 5px;
}
.hiveInputField__contents__form .single-input {
  width: 100%;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media only screen and (max-width: 480px) {
  .hiveInputField__contents__form .single-input {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
}
.hiveInputField__contents__form .single-input .label-title {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 10px;
  font-family: var(--heading-font);
}
.hiveInputField__contents__form .single-input .form--control {
  font-family: var(--heading-font);
  width: 100%;
  height: 50px;
  border-radius: 7px;
  background-color: var(--input-color);
  border: 1px solid transparent;
  border: 0;
  outline: none;
  padding: 5px 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.hiveInputField__contents__form .single-input .form--control:focus {
  border-color: rgba(var(--main-color-one-rgb), 0.4);
}
.hiveInputField__contents__form .custom-radio label {
  padding: 0;
}
.hiveInputField__contents__form .custom-radio-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.hiveInputField__contents__form .custom-radio-item {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--input-color);
  display: table;
  width: 100%;
}
.hiveInputField__contents__form .custom-radio-item:not(:first-child) {
  padding-top: 10px;
}
.hiveInputField__contents__form .custom-radio-item .checkbox-inline {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.hiveInputField__contents__form .custom-radio-item .custom-radio-option {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.hiveInputField__contents__form .custom-checkbox label {
  padding: 0;
}
.hiveInputField__contents__form .custom-checkbox-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.hiveInputField__contents__form .custom-checkbox-item {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--input-color);
  display: table;
  width: 100%;
}
.hiveInputField__contents__form .custom-checkbox-item:not(:first-child) {
  padding-top: 10px;
}
.hiveInputField__contents__form .custom-checkbox-item .checkbox-inline {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.hiveInputField__contents__form .custom-checkbox-item .custom-radio-option {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.hiveInputField__contents__checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
}
.hiveInputField__contents__addField__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  background-color: var(--main-color-one);
  color: #fff;
  border-radius: 30px;
  padding: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.hiveInputField__contents__addField__btn:hover {
  color: #fff;
}
.hiveInputField__contents__addField__btn__icon {
  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;
  height: 30px;
  width: 30px;
  background-color: #fff;
  color: var(--main-color-one);
  font-size: 16px;
  border-radius: 50%;
}
.hiveInputField__contents__addField__btn__icon i {
  line-height: 1;
}
.hiveInputField__contents__addField__btn__icon img {
  max-width: 20px;
}
.hiveInputField__contents__addField__btn__title {
  font-size: 16px;
  padding: 0 10px 0 0px;
}

.custom-radio-close {
  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;
  height: 40px;
  width: 40px;
  font-size: 24px;
  background-color: rgba(var(--delete-color-rgb), 0.1);
  color: var(--delete-color);
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.custom-radio-close:hover {
  background-color: var(--delete-color);
  color: var(--white);
}

.hive_dropMedia {
  display: inline-block;
  padding: 20px 20px;
  width: 100%;
  border: 2px dashed rgba(var(--main-color-one-rgb), 0.3);
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--main-color-one);
  background-color: rgba(var(--main-color-one-rgb), 0.1);
  border-radius: 10px;
  position: relative;
  cursor: pointer;
}
.hive_dropMedia__uploader {
  display: none;
}

.hiveSortable_dragInner__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.hiveSortable_dragInner__item:not(:last-child) {
  margin-bottom: 12px;
}
.hiveSortable_dragInner__item__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.hiveSortable_dragInner__item__sortInput {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.hiveSortable_dragInner__item__sortInput .form--control {
  height: 45px;
  padding: 0 15px;
  font-family: var(--heading-font);
  width: 100%;
  border-radius: 7px;
  background-color: var(--input-color);
  border: 1px solid transparent;
  border: 0;
  outline: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.hiveSortable_dragInner__item__right {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.hiveSortable_dragInner__item__close {
  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;
  height: 45px;
  width: 45px;
  font-size: 18px;
  background-color: rgba(var(--delete-color-rgb), 0.1);
  color: var(--delete-color);
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.hiveSortable_dragInner__item__close:hover {
  background-color: var(--delete-color);
  color: var(--white);
}

.hiveSortableCustom {
  position: sticky;
  top: 0;
  z-index: 9;
}
.hiveSortableCustom__sidebar {
  background-color: var(--white);
  border-radius: 10px;
}
.hiveSortableCustom__sidebar__header {
  padding: 20px 20px 0;
}
.hiveSortableCustom__sidebar__header__title {
  font-size: 24px;
  font-weight: 600;
  color: var(--heading-color);
  line-height: 1.2;
}
.hiveSortableCustom__sidebar__contents {
  padding: 20px;
}
.hiveSortableCustom__drag__item:not(:last-child) {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color-two);
}
.hiveSortableCustom__drag__item__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.hiveSortableCustom__drag__item__sortThumb {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.hiveSortableCustom__drag__item__icon {
  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;
  height: 50px;
  width: 50px;
  background-color: var(--input-color);
  color: var(--heading-color);
  border-radius: 5px;
  font-size: 18px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .hiveSortableCustom__drag__item__icon {
    height: 40px;
    width: 40px;
    font-size: 16px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .hiveSortableCustom__drag__item__icon {
    height: 35px;
    width: 35px;
    font-size: 16px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hiveSortableCustom__drag__item__icon {
    height: 35px;
    width: 35px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 575.98px) {
  .hiveSortableCustom__drag__item__icon {
    height: 35px;
    width: 35px;
    font-size: 16px;
  }
}
.hiveSortableCustom__drag__item__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.hiveSortableCustom__drag__item__details__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--heading-color);
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .hiveSortableCustom__drag__item__details__title {
    font-size: 18px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .hiveSortableCustom__drag__item__details__title {
    font-size: 18px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hiveSortableCustom__drag__item__details__title {
    font-size: 16px;
  }
}
@media only screen and (max-width: 575.98px) {
  .hiveSortableCustom__drag__item__details__title {
    font-size: 16px;
  }
}
.hiveSortableCustom__drag__item__details__para {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--paragraph-color);
  margin-top: 7px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .hiveSortableCustom__drag__item__details__para {
    font-size: 15px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hiveSortableCustom__drag__item__details__para {
    font-size: 15px;
  }
}
@media only screen and (max-width: 575.98px) {
  .hiveSortableCustom__drag__item__details__para {
    font-size: 15px;
  }
}

/* Dragging Cursor Custom Css */
.hiveSortable_drag__item:not(:last-child) {
  margin-bottom: 20px;
}

body.dragging,
body.dragging * {
  cursor: move !important;
}

.dragged {
  position: absolute;
  opacity: 1;
  z-index: 2000;
  background-color: #fff;
}

.hiveSortable_drag {
  position: relative;
}

.hiveSortable_drag > li.placeholder {
  position: relative;
  /** More li styles **/
}

.hiveSortable_drag > li.placeholder:before {
  position: absolute;
  /** Define arrowhead **/
}

.hiveSupportsTable__singleData:not(:last-child) {
  margin-bottom: 20px;
}
.hiveSupportsTable__singleData.without_border .table-select {
  border: unset;
  border-radius: 0px;
  padding: 0px;
}
.hiveSupportsTable__singleData.without_border .table-select .hive-add-dropdown-text {
  width: auto;
}
.hiveSupportsTable__singleData .table-select {
  border: 1px solid var(--input-color);
  border-radius: 5px;
  padding: 5px 10px;
}
.hiveSupportsTable__singleData .select_bg {
  background-color: var(--border-color);
}
.hiveSupportsTable__singleData .table-icon-title {
  padding: 7px 10px;
  color: var(--heading-color);
}
.hiveSupportsTable__singleData .flex-dropdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.hiveSupportsTable__singleData .hive-status-dropdown {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.hiveSupportsTable__singleData .hive-status-dropdown .hive-add-dropdown-text {
  width: 100%;
  text-align: left;
}
.hiveSupportsTable__middle {
  background-color: var(--white);
  border-radius: 10px;
  padding: 20px;
}
.hiveSupportsTable__middle__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0px;
}
.hiveSupportsTable__middle__single {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
.hiveSupportsTable__middle__single__label {
  font-size: 18px;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 10px;
  display: inline-block;
}

.table-name-thumb {
  height: 25px;
  width: 25px;
  border-radius: 50%;
}

.sticky_sidebar {
  position: sticky;
  top: 0;
  z-index: 9;
}

.hiveSupports__middle__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.hiveSupports__middle__left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hiveSupports__middle__left {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .hiveSupports__middle__left {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
}
@media only screen and (max-width: 575.98px) {
  .hiveSupports__middle__left {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .hiveSupports__middle__right {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media only screen and (max-width: 480px) {
  .hiveSupports__middle__right {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
}
.hiveSupports__middle__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 32px;
  margin: -4px 0 0;
}
.hiveSupports__middle__title span {
  color: var(--paragraph-color);
  font-weight: 500;
}

.hiveSupports__single {
  padding: 20px;
}
.hiveSupports__single:not(:first-child) {
  margin-top: 24px;
}
.hiveSupports__single__item:not(:first-child) {
  padding-top: 20px;
}
.hiveSupports__single__item:not(:last-child) {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--input-color);
}
.hiveSupports__single__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
}
.hiveSupports__single__contents__para {
  font-size: 16px;
  line-height: 24px;
  margin: 20px 0 0;
  color: var(--paragraph-color);
}
.hiveSupports__single__contents__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 25px;
}
.hiveSupports__single__contents__btn__secondary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 20px;
  border-radius: 10px;
  background-color: rgba(var(--secondary-color-rgb), 0.1);
  color: var(--secondary-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.hiveSupports__single__contents__btn__secondary:hover {
  background-color: var(--secondary-color);
  color: var(--white);
}
.hiveSupports__single__author__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.hiveSupports__single__author__thumb {
  max-width: 70px;
}
.hiveSupports__single__author__thumb img {
  border-radius: 50%;
}
.hiveSupports__single__author__contents__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-top: 5px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.hiveSupports__single__author__contents__title {
  font-size: 20px;
  font-weight: 700;
  margin: -4px 0 0;
}
.hiveSupports__single__author__contents__stuff {
  display: inline-block;
  padding: 4px 10px;
  line-height: 1;
  font-size: 15px;
  background-color: var(--main-color-one);
  color: #fff;
  border-radius: 4px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.hiveSupports__single__author__contents__stuff:hover {
  background-color: var(--secondary-color);
  color: #fff;
}
.hiveSupports__single__author__contents__stuff.customer {
  background-color: var(--main-color-two);
}
.hiveSupports__single__author__contents__time {
  font-size: 15px;
  line-height: 22px;
}
.hiveSupports__single-drag-btn-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 5px;
  background-color: var(--main-color-one);
  color: #fff;
}
.hiveSupports__single-drag-btn-main.outline {
  background-color: unset;
  border: 1px solid var(--main-color-one);
  color: var(--main-color-one);
}
.hiveSupports__single-drag-thumb img {
  border-radius: 10px;
}
.hiveSupports__single-drag-uploads-drop {
  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;
  gap: 10px;
  padding: 15px;
  text-align: center;
  border: 2px dashed var(--secondary-color);
  background-color: rgba(var(--secondary-color-rgb), 0.1);
  color: var(--secondary-color);
  border-radius: 10px;
  font-weight: 500;
}

.hive-supports-profile {
  position: relative;
  z-index: 2;
}
.hive-supports-profile-elipsis {
  position: absolute;
  right: 20px;
  top: 20px;
  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;
  height: 40px;
  width: 40px;
  border-radius: 5px;
  border: 1px solid var(--input-color);
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.hive-supports-profile-elipsis:hover {
  background-color: rgba(var(--secondary-color-rgb), 0.2);
  border-color: var(--secondary-color);
}
.hive-supports-profile-elipsis img {
  max-width: 20px;
}
.hive-supports-profile-inner {
  text-align: center;
}
.hive-supports-profile-thumb {
  max-width: 70px;
  margin: auto;
}
.hive-supports-profile-thumb img {
  border-radius: 50%;
}
.hive-supports-profile-contents-name {
  font-size: 20px;
  line-height: 28px;
  margin: 6px 0 0;
}
.hive-supports-profile-contents-mail {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: var(--paragraph-color);
  margin-top: 7px;
}
.hive-supports-profile-contact-list-item:not(:first-child) {
  padding-top: 10px;
}
.hive-supports-profile-contact-list-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.hive-supports-profile-contact-list-link:hover {
  color: var(--main-color-one);
}

.hive-supports-right-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
}
.hive-supports-right-list-item {
  display: inline-block;
  padding-bottom: 10px;
  position: relative;
  cursor: pointer;
}
.hive-supports-right-list-item.active::before {
  visibility: visible;
  opacity: 1;
  width: 100%;
}
.hive-supports-right-list-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background-color: var(--main-color-one);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.hive_supports__search .single-input .form--control {
  padding-right: 45px;
}
.hive_supports__search .single-input button {
  position: absolute;
  right: 10px;
  background: none;
  border: 0;
  outline: none;
  top: 0;
  bottom: 0;
  cursor: pointer;
}

.without_border .priority-dropdown [value=High].hive-add-dropdown-text::before,
.without_border .priority-dropdown [value=Urgent].hive-add-dropdown-text::before,
.without_border .priority-dropdown [value=Medium].hive-add-dropdown-text::before,
.without_border .priority-dropdown [value=Low].hive-add-dropdown-text::before {
  top: 13px;
}

.select_open {
  position: relative;
}
.select_open::before {
  content: "";
  position: fixed;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-color: unset;
  z-index: -1;
}

.priority-dropdown .hive-add-dropdown-text {
  position: relative;
  z-index: 1;
}
.priority-dropdown [value=High].hive-add-dropdown-text::before,
.priority-dropdown [value=Urgent].hive-add-dropdown-text::before,
.priority-dropdown [value=Medium].hive-add-dropdown-text::before,
.priority-dropdown [value=Low].hive-add-dropdown-text::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 16px;
  height: 7px;
  width: 7px;
  border-radius: 50%;
  background-color: var(--main-color-one);
}
.priority-dropdown [value=Urgent].hive-add-dropdown-text::before {
  background-color: var(--main-color-two);
}
.priority-dropdown [value=Medium].hive-add-dropdown-text::before {
  background-color: var(--secondary-color);
}
.priority-dropdown [value=Low].hive-add-dropdown-text::before {
  background-color: var(--delete-color);
}
.priority-dropdown .hive-status-dropdown-menu-list {
  position: relative;
}
.priority-dropdown .hive-status-dropdown-menu [data-value=Urgent] .hive-status-dropdown-menu-link::before {
  background-color: var(--main-color-two);
}
.priority-dropdown .hive-status-dropdown-menu [data-value=Medium] .hive-status-dropdown-menu-link::before {
  background-color: var(--secondary-color);
}
.priority-dropdown .hive-status-dropdown-menu [data-value=Low] .hive-status-dropdown-menu-link::before {
  background-color: var(--delete-color);
}
.priority-dropdown .hive-status-dropdown-menu-link {
  position: relative;
  padding-left: 35px;
}
.priority-dropdown .hive-status-dropdown-menu-link::before {
  position: absolute;
  left: 20px;
  top: 13px;
  height: 7px;
  width: 7px;
  background-color: var(--main-color-one);
  border-radius: 50%;
  content: "";
}

.hive-status-dropdown {
  display: block;
  position: relative;
}
.hive-status-dropdown-border {
  border: 1px solid var(--input-color);
  padding: 7px 10px;
}
.hive-status-dropdown-border .hive-add-dropdown-text {
  width: 100%;
}
.hive-status-dropdown-menu {
  position: absolute;
  z-index: 1000;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 140px;
  padding: 8px 0;
  margin: 0;
  font-size: 16px;
  color: var(--light-color);
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  -webkit-box-shadow: 0 0 10px rgba(221, 221, 221, 0.7);
  box-shadow: 0 0 10px rgba(221, 221, 221, 0.7);
  border-radius: 0.25rem;
  max-height: 300px;
  overflow-y: auto;
  display: none;
}
.hive-status-dropdown-menu.show-dropdown {
  display: block;
}
.hive-status-dropdown-menu-search {
  padding: 0 10px;
  margin-bottom: 10px;
}
.hive-status-dropdown-menu-search-input {
  position: relative;
  z-index: 2;
}
.hive-status-dropdown-menu-search-input .form--control {
  height: 40px;
  width: 100%;
  background-color: #fff;
  color: var(--paragraph-color);
  border: 1px solid rgba(221, 221, 221, 0.7);
  font-size: 14px;
  border-radius: 2px;
  padding: 0 10px;
  padding-right: 30px;
}
.hive-status-dropdown-menu-search-input .icon {
  position: absolute;
  right: 10px;
  top: 50%;
  /* IE 9 */
  -webkit-transform: translateY(-50%);
  /* Chrome, Safari, Opera */
  transform: translateY(-50%);
  font-size: 16px;
  color: var(--heading-color);
  cursor: pointer;
  line-height: 1;
}
.hive-status-dropdown-menu-search-input .icon img {
  max-width: 16px;
}
.hive-status-dropdown-menu-list {
  border: 0;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.hive-status-dropdown-menu-link {
  display: block;
  width: 100%;
  padding: 0.25rem 1rem;
  clear: both;
  font-weight: 400;
  color: var(--paragraph-color);
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.hive-status-dropdown-menu-link:hover {
  color: var(--heading-color);
  font-weight: 700;
}
.hive-status-dropdown-menu-link.selected {
  color: var(--heading-color);
  font-weight: 700;
}

.hive-add-dropdown-text {
  position: relative;
  z-index: 1;
  color: var(--paragraph-color);
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-size: 15px;
  padding: 7px 10px;
  background: none;
  border: 1px solid #DDD;
  cursor: pointer;
  padding-right: 20px;
  border: 0;
}
.hive-add-dropdown-text::after {
  border-bottom: 2px solid var(--paragraph-color);
  border-right: 2px solid var(--paragraph-color);
  content: "";
  display: block;
  height: 7px;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  top: 50%;
  -webkit-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  width: 7px;
  right: 10px;
}

.hive_faq_supporttemplate .hive_faq_supporttemplate__item {
  border: 1px solid var(--input-color);
  border-radius: 10px;
}
.hive_faq_supporttemplate .hive_faq_supporttemplate__item.open {
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  -webkit-box-shadow: 0 0 20px rgba(221, 221, 221, 0.5);
  box-shadow: 0 0 20px rgba(221, 221, 221, 0.5);
}
.hive_faq_supporttemplate .hive_faq_supporttemplate__item.open .hive_faq_supporttemplate__title {
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.hive_faq_supporttemplate .hive_faq_supporttemplate__item.open .hive_faq_supporttemplate__title::after {
  /* IE 9 */
  -webkit-transform: translateY(-50%) rotate(180deg);
  /* Chrome, Safari, Opera */
  transform: translateY(-50%) rotate(180deg);
}
.hive_faq_supporttemplate .hive_faq_supporttemplate__item.open .hive_faq_supporttemplate__panel .hive_faq_supporttemplate__para {
  color: var(--light-color);
}
.hive_faq_supporttemplate .hive_faq_supporttemplate__item.active .hive_faq_supporttemplate__panel {
  display: block;
}
.hive_faq_supporttemplate .hive_faq_supporttemplate__item:not(:first-child) {
  margin-top: 24px;
}
.hive_faq_supporttemplate .hive_faq_supporttemplate__item .hive_faq_supporttemplate__title {
  padding: 20px 20px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--heading-color);
  font-family: var(--heading-font);
  background: none;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  z-index: 1;
  -webkit-transition: 400ms;
  transition: 400ms;
  margin-right: 20px;
  margin-top: -5px;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .hive_faq_supporttemplate .hive_faq_supporttemplate__item .hive_faq_supporttemplate__title {
    font-size: 16px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .hive_faq_supporttemplate .hive_faq_supporttemplate__item .hive_faq_supporttemplate__title {
    font-size: 16px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hive_faq_supporttemplate .hive_faq_supporttemplate__item .hive_faq_supporttemplate__title {
    font-size: 16px;
  }
}
@media only screen and (max-width: 375px) {
  .hive_faq_supporttemplate .hive_faq_supporttemplate__item .hive_faq_supporttemplate__title {
    padding: 10px;
    font-size: 16px;
  }
}
.hive_faq_supporttemplate .hive_faq_supporttemplate__item .hive_faq_supporttemplate__title::after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 400ms;
  transition: 400ms;
}
@media only screen and (max-width: 375px) {
  .hive_faq_supporttemplate .hive_faq_supporttemplate__item .hive_faq_supporttemplate__title::after {
    right: -10px;
  }
}
@media only screen and (max-width: 375px) {
  .hive_faq_supporttemplate .hive_faq_supporttemplate__item .hive_faq_supporttemplate__title {
    font-size: 16px;
  }
}
.hive_faq_supporttemplate .hive_faq_supporttemplate__item .hive_faq_supporttemplate__panel {
  padding: 20px;
  display: none;
  border-top: 1px solid var(--input-color);
}
@media only screen and (max-width: 375px) {
  .hive_faq_supporttemplate .hive_faq_supporttemplate__item .hive_faq_supporttemplate__panel {
    padding: 10px;
  }
}
.hive_faq_supporttemplate .hive_faq_supporttemplate__item .hive_faq_supporttemplate__panel .hive_faq_supporttemplate__para {
  font-size: 16px;
  line-height: 24px;
  color: var(--paragraph-color);
  margin: 0;
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .hive_faq_supporttemplate .hive_faq_supporttemplate__item .hive_faq_supporttemplate__panel .hive_faq_supporttemplate__para {
    font-size: 15px;
  }
}
@media only screen and (max-width: 767.98px) {
  .hive_faq_supporttemplate .hive_faq_supporttemplate__item .hive_faq_supporttemplate__panel .hive_faq_supporttemplate__para {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .hive_faq_supporttemplate .hive_faq_supporttemplate__item .hive_faq_supporttemplate__panel .hive_faq_supporttemplate__para {
    font-size: 14px;
  }
}

.hiveSupports__activities__single {
  padding-left: 30px;
  position: relative;
}
.hiveSupports__activities__single.active::after {
  background-color: var(--main-color-one);
}
.hiveSupports__activities__single:not(:last-child) {
  padding-bottom: 20px;
}
.hiveSupports__activities__single:not(:last-child)::before {
  content: "";
  position: absolute;
  height: 100%;
  left: 7px;
  top: 5px;
  width: 2px;
  background-color: var(--border-color-two);
}
.hiveSupports__activities__single::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  height: 15px;
  width: 15px;
  background-color: var(--border-color-two);
  border-radius: 50%;
}
.hiveSupports__activities__single__title {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 600;
  color: var(--heading-color);
}
.hiveSupports__activities__single__para {
  font-size: 14px;
  line-height: 1.3;
  font-weight: 400;
  color: var(--paragraph-color);
}

.hiveElipsis__icon {
  padding: 5px;
  font-size: 16px;
  color: var(--heading-color);
  cursor: pointer;
}
.hiveElipsis .dropdown-menu {
  padding: 0;
  min-width: 130px;
}
.hiveElipsis .dropdown-menu li:not(:last-child) .dropdown-item {
  border-bottom: 1px solid var(--border-color-two);
}
.hiveElipsis .dropdown-item {
  color: var(--heading-color);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
  padding: 8px 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.hiveElipsis .dropdown-item:hover {
  background-color: var(--main-color-one);
  color: var(--white);
}

.hiveSupports__todo__list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 2px;
  border: 1px solid var(--border-color-two);
  border-radius: 5px;
  padding: 5px 5px 5px 10px;
}
.hiveSupports__todo__list__item:not(:last-child) {
  margin-bottom: 20px;
}
.hiveSupports__todo__list__title {
  font-size: 16px;
  font-weight: 500;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.hivesupport__badge {
  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;
  height: 35px;
  width: 35px;
  background-color: rgba(var(--main-color-one-rgb), 0.2);
  color: var(--main-color-one);
  border-radius: 5px;
  font-weight: 700;
  font-size: 15px;
  position: absolute;
  right: 15px;
  top: 50%;
  /* IE 9 */
  -webkit-transform: translateY(-50%);
  /* Chrome, Safari, Opera */
  transform: translateY(-50%);
}
@media (min-width: 200px) and (max-width: 991.98px) {
  .hivesupport__badge {
    top: 15px;
    /* IE 9 */
    -webkit-transform: translate(0);
    /* Chrome, Safari, Opera */
    transform: translate(0);
  }
}
@media only screen and (max-width: 575.98px) {
  .hivesupport__badge {
    top: 15px;
    /* IE 9 */
    -webkit-transform: translate(0);
    /* Chrome, Safari, Opera */
    transform: translate(0);
  }
}



.edd-checkout header.entry-header {
  text-align: center;
}

#edd_checkout_form_wrap input.edd-input,
#edd_checkout_form_wrap textarea.edd-input {
  width: 100%;
  height: 50px;
  line-height: 50px;
  padding: 0 15px;
  border: 1px solid var(--border-color);
  outline: none;
  background-color: var(--white);
  color: var(--paragraph-color);
  -webkit-transition: 300ms;
  transition: 300ms;
  -webkit-box-shadow: 0 0 10px rgb(255 255 255 / 10%);
  box-shadow: 0 0 10px rgb(255 255 255 / 10%);
  border-radius: 5px;
  font-size: 14px;
}

.affwp-form input[type=submit] {
  width: auto;
  padding: 15px 60px !important;
  border-radius: 50px;
  background-color: #685be7;
  border-color: var(--main-color-one);
  color: var(--white);
}

.affwp-form input[type=submit]:hover {
  background-color: #fff;
  color: #685be7;
}

#edd-purchase-button,
.edd-submit,
[type=submit].edd-submit {
  width: auto;
  padding: 15px 60px !important;
  font-size: 25px !important;
  border-radius: 50px;
  background-color: var(--main-color-one);
  border-color: var(--main-color-one);
  color: var(--white);
  margin-top: 20px;
}

#edd-purchase-button:hover {
  background: #ffff;
  color: #000;
  border-color: #685be7;
}

#edd_checkout_form_wrap legend {
  border-bottom: 1px solid #ddd !important;
  padding-bottom: 20px !important;
}

.affwp-form input[type=checkbox] {
  display: inline-block;
  width: 15px;
  height: auto;
}

#affwp-affiliate-dashboard #affwp-affiliate-dashboard-tabs li a {
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 5px;
  border: 1px solid #685be7;
  color: #685be7;
  margin-bottom: 10px;
  display: block;
}

#affwp-affiliate-dashboard #affwp-affiliate-dashboard-tabs li.active a {
  background: #685be7;
  color: #fff;
  font-weight: 200;
}

.affwp-form label+textarea,
.affwp-form input,
.fluentform .ff-el-form-control {
  background-clip: padding-box;
  background-image: none;
  border: 1px solid rgba(221, 221, 221, 0.7);
  border-radius: 0.25rem;
  color: #495057;
  display: block;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 0;
  max-width: 100%;
  padding: 6px 12px;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  width: 100%;
  height: 45px;
  background: #fff;
}

form.fluent_form_2 .wpf_has_custom_css.ff-btn-submit {
  height: 55px;
}

.single_testimonial {
  height: 250px ;
}

.testimonial_slider .slick-current .single_testimonial__author__designation,
.testimonial_slider .slick-current h6.single_testimonial__author__name {
  color: #fff;
}

.hive_pricing__single__header {
  border-bottom: 1px solid #f5f5f5;
  padding-bottom: 20px;
}

.myaccount-wrapper .tabs {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #ddd;
}

.myaccount-wrapper .tabs .tab_item {
  text-align: center;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  color: #000;
  padding: 10px 15px;
  margin-right: 10px;
  transition: 0.3s;
}

.myaccount-wrapper .tabs .tab_item.active {
  background: #fff;
}

.myaccount-wrapper .tap-body-wrapper {
  background: #fff;
  padding: 40px 40px;
}

.page-404 {
  height: 50vh;
  display: flex;
  align-items: center;
}

.page-404 .sub-title span {
  font-size: 25px;
  color: #222;
}

.page-404 .title h3 {
  font-size: 8vh;
  color: #685be7;
  margin: 20px 0px;
}

.page-404 .back-btn a {
  border: 1px solid #685be7;
  background: #685be7;
  color: #fff;
  transition: all .3s;
}

.page-404 .back-btn {
  margin-top: 15px;
}

.page-404 .back-btn a:hover {
  background: #fff;
  color: #685be7;
}

.page-404 .content p {
  color: #222;
}

legend {
  color: #212529;
}

#edd_profile_editor_form select,
#edd_profile_editor_form input {
  width: 98%;
  height: 45px;
  line-height: 55px;
  padding: 0 15px;
  border: 1px solid #cccccc;
  outline: none;
  background-color: var(--white);
  color: var(--paragraph-color);
  -webkit-transition: 300ms;
  transition: 300ms;
  -webkit-box-shadow: 0 0 10px rgb(255 255 255 / 10%);
  box-shadow: 0 0 10px rgb(255 255 255 / 10%);
  border-radius: 5px;
}

#edd_profile_editor_form p {
  margin-bottom: 8px;
  display: inline-block;
  width: 48%;
}

#edd_profile_editor_form input#edd_profile_editor_submit {
  margin-top: 20px;
  width: 170px !important;
  height: inherit;
  padding: 10px !important;
  line-height: inherit;
  border-radius: 50px;
  border: 1px solid #685be7;
  font-size: 20px !important;
  background: #685be7;
  color: #fff;
}

#edd_profile_editor_form fieldset#edd_profile_personal_fieldset {
  margin: 0px 0px 25px 0px;
}

#edd_profile_editor_form fieldset#edd_profile_address_fieldset {
  margin-bottom: 20px;
}

a.my-account {
  background: #685be7;
  color: #fff;
  border: 1px solid #685be7;
  padding: 7px 15px;
  border-radius: 50px;
  font-size: 16px;
}

a.my-account:hover {
  background: #fff;
  color: #685be7;
}

.hive_blogDetails h5.hive_blogDetails__author__title {
  font-size: 20px !important;
  line-height: 24px;
  font-weight: 500 !important;
  color: var(--heading-color);
  margin: 0px;
}

.hive_blogDetails h6.hive_blogDetails__social__para {
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 24px;
  color: var(--heading-color);
  margin-top: 8px !important;
}

h4.comments-title {
  margin: 0px !important;
  line-height: 35px;
}

.hive_blogDetails p.logged-in-as {
  line-height: inherit;
  font-size: inherit;
  margin: 0px;
}

.hive_blogDetails h3#reply-title {
  margin: 0px;
}

.hive_blogDetails p.comment-form-comment {
  line-height: inherit;
  font-size: inherit;
}

.hive_blogDetails__commentView__contents p {
  font-size: inherit;
  line-height: inherit;
  margin: 0px;
}

.hive_blogDetails h2 {
  font-size: 35px;
  margin: 50px 0 25px 0;
  font-weight: 700;
}

.hive_blogDetails h3 {
  font-size: 25px;
  margin: 30px 0 25px 0;
  font-weight: 700;
}

.hive_blogDetails h4,
.hive_blogDetails h5,
.hive_blogDetails h6 {
  margin-bottom: 20px;
  margin-top: 20px;
  font-size: 22px;
  font-weight: 700;
}

.hive_blogDetails p {
	line-height: 35px;
	font-size: 20px;
	margin-bottom: 40px;
	color: #2a2a2a;
}


.hive_blogDetails p.hive_blogDetails__author__para {
  font-size: inherit;
  line-height: inherit;
  margin: 0px;
}

a.edd_checkout_register_login {
  color: #685be7;
}

#edd_checkout_cart .edd_cart_header_row th {
  padding: 0.66em 1.15em;
}

#edd_checkout_form_wrap label {
  color: #212529;
}

#edd_checkout_form_wrap legend {
  color: #212529;
}

.hive_blogDetails h5.hive_blogDetails__commentView__title {
  font-size: 18px !important;
  line-height: 24px;
  font-weight: 500 !important;
  color: var(--heading-color);
  margin: 0px !important;
}

.hive_blogDetails__commentView__contents p {
  line-height: 26px;
  margin: 0px;
  font-size: 16px;
}

@media (min-width: 320px) and (max-width: 768px) {
  #edd_profile_editor_form p {
    width: 100%;
  }

}
/* Integration Banner */
.hive_integration__banner {
  max-width: 450px;
}

.hive_integration__banner__title {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--heading-color);
}

@media only screen and (max-width: 480px) {
  .hive_integration__banner__title {
    font-size: 30px;
  }
}

@media only screen and (max-width: 375px) {
  .hive_integration__banner__title {
    font-size: 26px;
  }
}

.hive_integration__banner__para {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--paragraph-color);
}
/* Integration area */
@media (min-width: 1200px) {
  .integration_brandChild:nth-child(4n+5) {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
  }

  .integration_brandChild:nth-child(4n+6) {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
  }

  .integration_brandChild:nth-child(4n+7) {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
  }

  .integration_brandChild:nth-child(4n+8) {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .integration_brandChild:nth-child(3n+4) {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
  }

  .integration_brandChild:nth-child(3n+5) {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
  }

  .integration_brandChild:nth-child(3n+6) {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
  }

  .integration_brandChild:nth-child(3n+7) {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
  }
}

@media (min-width: 200px) and (max-width: 991.98px) {
  .integration_brandChild:nth-child(2n+3) {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
  }

  .integration_brandChild:nth-child(2n+4) {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
  }
}

@media only screen and (max-width: 575.98px) {
  .integration_brandChild:nth-child(2n+2) {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
  }
}

.hive_integration__brand__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 12px;
}

.hive_integration__brand__thumb {
  border: 1px solid var(--border-color);
  border-radius: 50%;
  padding: 12px;
  height: 70px;
  width: 70px;
  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;
}

.hive_integration__brand__thumb img {
  max-width: 60px;
}

.hive_integration__brand__contents {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.hive_integration__brand__title {
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    margin-top: 20px;
    color: var(--heading-color);
}

@media only screen and (max-width: 767.98px) {
  .hive_integration__brand__title {
    font-size: 18px;
  }
}

.hive_integration__brand__btn {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--main-color-one);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
}

.hive_integration__brand__btn::after {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 14px;
}

/* Features css */
.hive_features__title {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--heading-color);
}

@media only screen and (max-width: 480px) {
  .hive_features__title {
    font-size: 30px;
  }
}

@media only screen and (max-width: 375px) {
  .hive_features__title {
    font-size: 26px;
  }
}

.hive_features__para {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--paragraph-color);
}

.hive_features__thumb img {
  border-radius: 10px;
}



@media (max-width: 768px) {
        img.banner_image {
        margin-top: -25% !important;
    }
}
@media (max-width: 480px) {
        img.banner_image {
        margin-top: -15% !important;
    }
      /* .live__chat {
      margin-top: 60px;
  } */
}

/* .hive_btn.btn_bg_white {
    color: #101828 !important;
}

.hive_btn.btn_bg_white:hover {
    color: #101828 !important;
} */

.banner__button {
    margin-bottom: 10px !important;
}

/* .live__chat .hive_banner {
    padding-top: 0px !important;
} */


.hive_banner__content h2 {
    font-size: 48px !important;
    font-weight: 700 !important;
    line-height: 60px !important;
}

.live__chat .drak_bg::before {
    left: 49% !important;
}

.live_chat_icon p {
    color: #444444 !important;
    font-weight: 500 !important;
}

.get_support_left {
    margin-top: 18% !important;
}

.get_support_left p {
    color: #444444 !important;
    font-weight: 500 !important;
}

.get__report {
    padding-bottom: 70px !important;

}

.get__report_button {
    padding: 20px 0 !important;
}

.delight__customer .drak_bg::before {
    left: 77%;
}

.get_support_button_right p {
    color: #444444 !important;
    font-weight: 500 !important;
}

.delight__customer .delight_title {
    font-size: 26px !important;
    font-weight: 600 !important;
}

.row.delight_card p {
    color: #444444 !important;
}

.growth__area h2.title {
    font-weight: 800 !important;
}

.growth__area .nav-pills .nav-link {
    font-weight: 600 !important;
}


.social__media .get_social_button_right h2 {
    font-size: 42px !important;
    font-weight: 700 !important;
    line-height: 50px !important;
}

.get_social_button_right p {
    padding: 20px 0 !important;
    color: #444444 !important;
}

.get_pro_button:hover {
    color: #fff !important;
}

.testimonial_area .section_title.section_flex {
    padding-bottom: 10px !important;
}

.footer_top_left .get_pro_button {
    background: #FE7747 !important;
    color: #fff !important;
}

.blog-grid-top{
	margin-top: 80px;
}

/* .hive_btn.btn_bg_1 {
    background-color: var(--main-color-one) !important;
    border-color: var(--main-color-one) !important;
    color: var(--white) !important;
}
.hive_btn.btn_bg_1:hover {
    color: var(--main-color-one) !important;
} */

/* .single.single-post a {
    background-color: #fff !important;
} */

a.hive_btn.btn_underline.color_white{
	color: #5F52DF !important;
}

a.hive_btn.btn_bg_white{
  color: #FFFFFF !important;
}

.hive_blog__title {
  font-size: 18px !important;
  line-height: 28px !important;
}



/*
* 
Brand Asset page CSS start 
*
*/
.hive_brand_logo_area {
  margin-top: 100px;
}

@media (max-width: 1200px) {
    .hive_brand_logo_area{
        margin-top: 90px;
    }
}

@media (max-width: 768px) {
  .hive_brand_logo_area {
      margin-top: 80px;
  }
}

@media (max-width: 480px) {
  .hive_brand_logo_area {
      margin-top: 60px;
  }
}

.hive_brand_logo_area .love-logo-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.hive-support-logo {
    display: grid;
    gap: 20px; /* Space between logos */
}

.hive-support-logo img {
    width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

/* Responsive styles */
@media (min-width: 576px) {
    .hive-support-logo {
        grid-template-columns: 1fr 1fr; /* Two images per row */
    }
}

.hive_brand_icon_area {
  margin-top: 100px;
}

@media (max-width: 768px) {
  .hive_brand_icon_area {
      margin-top: 80px;
  }
}

@media (max-width: 480px) {
  .hive_brand_icon_area {
      margin-top: 60px;
  }
}

.hive_brand_icon_area {
  padding: 60px 0px;
  background-color: #C6CBF5;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hive_brand_icon_area .logo-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hive_brand_icon_area .logo-title {
  text-align: center;
  padding-bottom: 40px;
}

@media (max-width: 768px) {
    .hive_brand_icon_area .logo-title {
        padding-bottom: 30px;
    }
}
@media (max-width: 480px) {
    .hive_brand_icon_area .logo-title {
        padding-bottom: 20px;
    }
}


.hive_brand_colors_area .logo-title {
  text-align: center;
  padding-bottom: 40px;
}

.hive_brand_colors_area {
  margin-top: 100px;
  margin-bottom: 100px;
}

@media (max-width: 768px) {
  .hive_brand_colors_area {
      margin-top: 80px;
      margin-bottom: 80px;
  }
}

@media (max-width: 480px) {
  .hive_brand_colors_area {
      margin-top: 60px;
      margin-bottom: 60px;
  }
}

.hive_brand_colors_area {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hive_brand_colors_area .content-colors {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.hive_brand_colors_area .content-colors div {
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
  max-width: 300px;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  color: #fff;
}

@media (max-width: 768px) {
  .hive_brand_colors_area .content-colors div {
      flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .hive_brand_colors_area .content-colors div {
      flex: 1 1 100%;
  }
}

.hive_brand_colors_area .content-colors .logo-card1 {
  background-color: #293365;
  color: #FFFFFF;
  width: 331px;
  height: 241px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hive_brand_colors_area .content-colors .logo-card2 {
  background-color: #F5F5F5;
  width: 331px;
  height: 241px;
  color: #252323;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hive_brand_colors_area .content-colors .logo-card3 {
  width: 331px;
  height: 241px;
  background-color: #5F52DF;
  color: #FFFFFF;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hive_brand_colors_area .content-colors .logo-card4 {
  width: 331px;
  height: 241px;
  background-color: #0F1639;
  color: #FFFFFF;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hive_brand_colors_area .content-colors .logo-card1 h3 {
  color: #FFFFFF;
}

.hive_brand_colors_area .content-colors .logo-card2 h3 {
  color: #252323;
}

.hive_brand_colors_area .content-colors .logo-card3 h3 {
  color: #FFFFFF;
}

.hive_brand_colors_area .content-colors .logo-card4 h3 {
  color: #FFFFFF;
}

/*
* 
Brand Asset page CSS End 
*
*/


/*
* 
About Us page CSS start
*
*/
.hive_who_we {
  margin-top: 100px;
}

.hive_who_we__content .hive_about_content_title h2{
  text-align: start;
}

.hive_about_content_title h2 span {
  color: #5F52DF;
}

.hive_about_content_title {
  text-align: center;
  padding-bottom: 30px;
}


.hive_who_we {
  padding: 20px 0;
}

.hive_who_we__content {
  padding: 20px;
}

.hive_who_we__content .hive_about_content_title h2 {
  font-size: 2em;
}

.hive_who_we__content__para p {
  font-size: 1em;
  line-height: 1.5;
  word-break: keep-all;
  hyphens: none;
}

.hive_who_we__thumb img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 992px) {
  .hive_who_we {
      margin-top: 80px;
  }

  .hive_who_we__content .hive_about_content_title h2{
      text-align: center;
  }

  .hive_who_we__content {
      text-align: center;
  }

  .hive_about_content_title h2 {
      font-size: 1.75em;
  }

  .hive_who_we__content__para p {
      font-size: 0.95em;
  }
}

@media (max-width: 768px) {
  .hive_who_we {
      margin-top: 60px;
  }

  .hive_who_we__content .hive_about_content_title h2{
      text-align: center;
  }

  .hive_who_we__content {
      padding: 10px;
      text-align: center;
  }


  .hive_who_we__thumb img {
      margin-top: 20px;
  }

  .hive_about_content_title h2 {
      font-size: 1.5em;
  }

  .hive_who_we__content__para p {
      font-size: 0.9em;
  }
}

@media (max-width: 576px) {
  .hive_who_we {
      margin-top: 40px;
      
  }

  .hive_who_we__content .hive_about_content_title h2{
      text-align: center;
  }

  .hive_who_we__thumb img {
      margin-top: 15px;
  }

  .hive_about_content_title h2 {
      font-size: 1.25em;
      text-align: center;
  }

  .hive_who_we__content__para p {
      font-size: 0.85em;
  }
}

/* team section start */
.hive_team {
  margin-top: 100px;
}

.hive_team .hive_team__content .profile_card {
  margin: 15px 0px;
  overflow: hidden;
  border: 1px solid #EAECF0;
  transition: transform 0.2s;
}

.hive_team .hive_team__content .profile_card:hover {
  transform: translateY(-10px);
}

.hive_team .hive_team__content .profile_card img {
  width: 100%;
  height: auto;
  display: block;
}

.hive_team .hive_team__content .profile_card .profile-img {
  position: relative;
  overflow: hidden;
  background-color: #a4d5f0;
}

.hive_team .profile_card__content {
  padding: 20px;
  text-align: start;
}

.hive_team .profile_card__content h3 {
  margin: 0;
  font-size: 18px;
  line-height: 30px;
  color: #282828;
}

.hive_team .profile_card__content p {
  margin: 0;
  font-size: 14px;
  line-height: 22px;
  color: #3E3E59;

}

/* team section end */

/* journey section start */

.hive_journey {
  margin-top: 100px;
  margin-bottom: 200px;
}

@media screen and (max-width: 992px) {
  .hive_journey {
      margin-top: 80px;
      margin-bottom: 80px;

  }
}

@media screen and (max-width: 768px) {
  .hive_journey {
      margin-top: 60px;
      margin-bottom: 60px;
  }
}

@media screen and (max-width: 576px) {
  .hive_journey {
      margin-top: 40px;
      margin-bottom: 40px;
  }
}

.timeline {
  position: relative;
  padding: 0;
  list-style: none;
}

.timeline:before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 20px;
  height: 100%;
  margin-left: -10px;
  background-image: url('../img/about-us/line.png');
  background-repeat: no-repeat;
  background-size: 100% 100%;

}

.timeline-item {
  position: relative;
  padding: 20px 40px;
  width: 50%;
  box-sizing: border-box;
}

.timeline .timeline-item:nth-child(1n) {
  padding-top: 50px;
}
.timeline .timeline-item:nth-child(2n) {
  padding-bottom: 40px;
}
.timeline .timeline-item:nth-child(3n) {
  padding-bottom: 50px;
}
.timeline .timeline-item:nth-child(4n) {
  padding-bottom: 100px;
}

.timeline-item.left {
  left: 0;
}

.timeline-item.right {
  left: 50%;
}

.timeline-item:after {
  content: '';
  position: absolute;
  top: 20px;
  right: -10px;
  border-style: solid;
  border-width: 10px 10px 10px 0;
  border-color: transparent #fff transparent transparent;
}

.timeline-item.left:after {
  left: -10px;
  right: auto;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #fff;
}

.hive_journey .card {
  background-color: #fff;
  border-radius: 5px;
  padding: 10px;
  border: none;
  box-shadow: 0 15px 15px rgba(168, 165, 165, 0.1);
}
.hive_journey .timeline .card p.card-text {
  font-size: 14px;
} 

.timeline-item .card-body {
  padding: 20px;
}

.card-body .card-title img {
  width: 40px;
  height: auto;
  margin-right: 10px;
  vertical-align: middle;
}

.timeline-item .card-body .card-title {
  font-size: 25px;
  font-weight: 800;
}

.timeline-item:nth-child(1) .card-title {
  color: #5F52DF;
}

.timeline-item:nth-child(3) .card-title {
  color: #D9724B;
}

.timeline-item .card-body span {
  color: #D9724B;
}

.timeline-item .card-body span::before {
  content: '.';
  color: #D9724B;
  margin-right: 5px;
  font-size: 50px;
}

.timeline-root {
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  padding: 0 20px;
}

.timeline-root .card-body {
  text-align: center;
}

.timeline-root .card-body .card-title {
  font-size: 25px;
  font-weight: 800;
}

.timeline-root .card-body span.year {
  color: #D9724B;
}
.timeline-root .card-body span.year::before {
  content: '.';
  color: #D9724B;
  margin-right: 5px;
  font-size: 50px;
}

@media (max-width: 768px) {
  .timeline:before {
      left: 20px;
      margin-left: 0;
  }

  .timeline-item {
      width: 100%;
      padding-left: 60px;
      padding-right: 25px;
  }

  .timeline-item.left,
  .timeline-item.right {
      left: 0;
  }

  .timeline-item:after,
  .timeline-item.left:after {
      left: 45px;
      right: auto;
      border-width: 10px 0 10px 10px;
      border-color: transparent transparent transparent #fff;
  }

  .timeline-root {
      position: relative;
      bottom: auto;
      left: auto;
      transform: none;
      width: 100%;
      margin-top: 40px;
  }
}


/* journey section end */

/* counter section start */
.hive_counter {
  margin-top: 300px;
  margin-bottom: 100px;
}

@media screen and (max-width: 992px) {
  .hive_counter {
      margin-top: 80px;
      margin-bottom: 80px;

  }
}

@media screen and (max-width: 768px) {
  .hive_counter {
      margin-top: 60px;
      margin-bottom: 60px;
  }
}

@media screen and (max-width: 576px) {
  .hive_counter {
      margin-top: 40px;
      margin-bottom: 40px;
  }
}

.hive_counter .counter-in {
  background-color: #F5F4FE;
  padding: 30px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  border-radius: 10px;
  gap: 20px;
}

.hive_counter .counter_box {
  text-align: center;
}

.hive_counter .counter_box__content {
  padding: 20px;
}

.hive_counter .divider-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hive_counter .divider-img img {
  width: 10px;
  height: 100px;
}

.hive_counter .counter_box__content h3 {
  font-size: 52px;
  font-weight: 800;
  margin: 0;
}


.counter-in .counter_box:nth-child(1) .counter_box__content h3 {
  color: #5F52DF;
}

.counter-in .counter_box:nth-child(3) .counter_box__content h3 {
  color: #D9724B;
}

.counter-in .counter_box:nth-child(5) .counter_box__content h3 {
  color: #2277E8;
}

.counter-in .counter_box:nth-child(7) .counter_box__content h3 {
  color: #6E32C9;
}



.hive_counter .counter_box__content p {
  padding-top: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #161514;
}

@media (max-width: 992px) {
  .hive_counter .counter-in {
      gap: 10px;
  }

  .hive_counter .divider-img img {
      width: 40px;
  }

  .hive_counter .counter_box__content h3 {
      font-size: 1.75em;
  }

  .hive_counter .counter_box__content p {
      font-size: 0.95em;
  }
}

@media (max-width: 768px) {
  .hive_counter .counter-in {
      flex-direction: column;
  }

  .hive_counter .counter_box,
  .hive_counter .divider-img {
      width: 100%;
  }

  .hive_counter .divider-img {
      display: none;
  }

  .hive_counter .counter_box__content {
      margin-bottom: 20px;
  }

  .hive_counter .counter_box__content h3 {
      font-size: 1.5em;
  }

  .hive_counter .counter_box__content p {
      font-size: 0.9em;
  }
}

@media (max-width: 576px) {
  .hive_counter .counter_box__content h3 {
      font-size: 1.25em;
  }

  .hive_counter .counter_box__content p {
      font-size: 0.85em;
  }
}

/* counter section end */

.newsletter-widget-container {
    width: 350px;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Responsive styles */

@media (max-width: 768px) {
    .newsletter-widget-container {
        width: 94%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .newsletter-widget-container {
        width: 290px;
        height: 312px;
    }
    .newsletter-widget-container .newsletter-widget .frm-fluent-form .ff-t-container {
        display: inline-grid;
        align-items: center;
        justify-content: center;
    }
    .newsletter-widget-container .newsletter-widget h2 {
        margin-top: 185px;
    }
}

.newsletter-widget-container .newsletter-widget {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px;
}

.newsletter-widget-container .newsletter-widget h2 {
    margin-top: 200px;
    font-size: 30px;
}

.newsletter-widget-container .newsletter-widget p {
    margin: 0 0 10px;
    font-size: 14px;
}


@media (min-width: 481px) {
  .newsletter-widget-container .newsletter-widget .frm-fluent-form .ff-t-container {
      display: unset;
  }
}

.newsletter-widget-container .newsletter-widget form.fluent_form_2 .wpf_has_custom_css.ff-btn-submit {
    background-color: #5F52DF;
    border: unset;
    color: #FFFFFF;
    min-width: 100%;
}

.newsletter-widget-container .newsletter-widget form.fluent_form_2 .wpf_has_custom_css.ff-btn-submit:hover {
    background-color: #FE7747;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .newsletter-widget-container .newsletter-widget {
        padding: 40px;
    }

    .newsletter-widget-container .newsletter-widget h2 {
        margin-top: 200px;
        font-size: 28px;
    }

    .newsletter-widget-container .newsletter-widget p {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .newsletter-widget-container .newsletter-widget {
        padding: 30px;
    }

    .newsletter-widget-container .newsletter-widget h2 {
        margin-top: 150px;
        font-size: 26px;
    }

    .newsletter-widget-container .newsletter-widget p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .newsletter-widget-container .newsletter-widget {
        padding: 20px;
    }

    .newsletter-widget-container .newsletter-widget h2 {
        margin-top: 200px;
        font-size: 24px;
    }

    .newsletter-widget-container .newsletter-widget p {
        font-size: 11px;
    }
}



.author-bio-bottom {
    border-top: 0;
    margin-top: 50px;
    padding: 20px 0;
}

.author-bio-bottom .author-bio-container {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,.05);
    box-shadow: 4px 30px 67px 0 rgba(33,54,88,.07);
}

.author-bio-bottom .author--image img {
    border-radius: 100%;
    width: 300px;
    height: auto;
    border: 3px solid #fff;
}

.author-bio-bottom .author-bio-container .author-details p {
    font-size: 14px;
    line-height: 26px;
}

.comments-area {
    padding: 50px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.05);
    -webkit-box-shadow: 4px 30px 67px 0 rgba(33,54,88,.07);
    box-shadow: 4px 30px 67px 0 rgba(33,54,88,.07);
    border-radius: 10px;
}

.comments-area input#submit{
    background-color: #5F52DF !important;
    color: #f5f5f5 !important;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--body-font);
    display: inline-block;
    border-radius: 5px !important;
    text-align: center;
    cursor: pointer;
    line-height: 22px;
    padding: 12px 35px;
    position: relative;
    z-index: 2;
}

.comments-area input#submit:hover{
  color: #FFFFFF !important;
  background-color: #FE7747 !important;
  border-color: #FE7747;
}

.frm-fluent-form .ff-t-cell .ff_submit_btn_wrapper_custom button {
    font-weight: 600 !important;
}

#edd_login_form label, #edd_register_form label {
    display: block;
    font-size: 16px;
    margin-bottom: 10px;
    color: #444444;
}

#edd_login_form .edd-input, #edd_register_form .edd-input {
   margin-bottom: 25px;
}

#edd_login_form p.edd-login-submit .edd-submit{
    margin-bottom: 30px;
    border-radius: 5px;
	border: unset;
}
#edd_login_form p.edd-login-submit .edd-submit:hover {
    background-color: #FE7747;
	
}

#edd_login_form p.edd-lost-password {
    color: #FE7747;
    font-style: italic;
}

#edd_register_form input.edd-submit {
	margin-bottom: 30px;
    border-radius: 5px;
	border: unset;
}
#edd_register_form input.edd-submit:hover {
	background-color: #FE7747;
}

a.forgot-password {
    color: #FE7747;
}

#fluentform_2_success.ff-message-success p{
    color: #f5f5f5 !important;
}


.post-sidebar section {
    margin-bottom: 10px;
    background: #f6f6f6;
    padding: 30px;
    border-radius: 5px;
    border: 1px solid rgba(0,0,0,.05);
    -webkit-box-shadow: 4px 30px 67px 0 rgba(33,54,88,.07);
    box-shadow: 4px 30px 67px 0 rgba(33,54,88,.07);
}
@media (max-width: 768px) {
  .post-sidebar {
      margin-top: 100px;
  }
}
@media (max-width: 480px) {
  .post-sidebar {
      margin-top: 80px;
  }
}

.post-sidebar h2.widget-title {
    color: #000;
    margin-bottom: 20px;
    font-size: 25px;
    font-weight: 600;
}

.post-sidebar section.widget ul#menu-products, .contact-sidebar section.widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.post-sidebar section.widget ul#menu-products li, .contact-sidebar section.widget ul li {
    line-height: 65px;
    position: relative;
	list-style: none;
}

.post-sidebar section.widget ul#menu-products li a, .contact-sidebar section.widget ul li a {
    color: #000;
    font-weight: 500;
    font-size: 18px;
    transition: all .3s;
    display: block;
    margin-left: 58px;
    margin-top: 8px;
    margin-bottom: 0;
}

.post-sidebar section.widget ul#menu-products li.darklup a:before, .post-sidebar section.widget ul#menu-products li.guidant a:before, .post-sidebar section.widget ul#menu-products li.wcfusion a:before {
    position: absolute;
    content: "";
    bottom: auto;
    z-index: 2;
    width: 42px;
    height: 42px;
}

.post-sidebar section.widget ul#menu-products li.darklup a:after, .post-sidebar section.widget ul#menu-products li.guidant a:after, .post-sidebar section.widget ul#menu-products li.wcfusion a:after{
    position: absolute;
    top: 4px;
    left: -13px;
    content: "";
    width: 60px;
    height: 58px;
    bottom: auto;
    background: #fff;
    border-radius: 100%;
    z-index: 1;
    box-shadow: 0 0 30px 0 rgb(184 184 184/48%);
    transform: scale(.9);
}

.post-sidebar section.widget ul#menu-products li a, .contact-sidebar section.widget ul li a {
    color: #000;
    font-weight: 500;
    font-size: 18px;
    transition: all .3s;
    display: block;
    margin-left: 58px;
    margin-top: 8px;
    margin-bottom: 0;
}

.post-sidebar section.widget ul#menu-products li a:hover {
    color: #FE7747;
}

@media (min-width: 1200px) {
	.post-sidebar .widget-area.sticky {
		min-width: 266px;
	}
}

@media (min-width: 992px) {
	.post-sidebar .widget-area.sticky {
		position: fixed;
		top: 130px;
	}
}

.post-sidebar section.widget ul#menu-products li.guidant a:before {
    content: url('../img/backgrounds/guident-small.png');
    margin-left: -55px;
    margin-top: 10px;
}

.post-sidebar section.widget ul#menu-products li.darklup a:before {
    content: url('../img/backgrounds/darklup-small.png');
    margin-left: -65px;
    margin-top: 9px;
}

.post-sidebar section.widget ul#menu-products li.wcfusion a:before {
    content: url('../img/backgrounds/new-small.png');
    margin-left: -56px;
    margin-top: 9px;
}

article.page {
    padding: 30px 30px 20px 30px;
    background-color: #fff;
    border-radius: 10px 10px 10px 10px;
    box-shadow: 0px 0px 30px 0px rgb(51 51 51 / 25%);
}

footer.entry-footer {
    display: none;
}

#edd_checkout_wrap #edd_sl_show_renewal_form {
    color: red !important;

}

.wpc-blog--pagination .page-numbers {
    min-width: 40px;
    height: 40px;
    border: 1px solid #e2e4e6;
    color: #5F52DF;
    margin: 0 2px;
    background-color: #fff;
    padding: 7px;
    padding-left: 14px;
    border-radius: 5px;
}

.wpc-blog--pagination .page-numbers i {
    margin-left: -3px;
}

.wpc-blog--pagination .page-numbers.current, .wpc-blog--pagination .page-numbers:hover {
    color: #FFFFFF;
    background-color: #5F52DF;
    border: 1px solid #5F52DF;
}

.pagination.wpc-blog--pagination{
  align-items: center;
  justify-content: center;
}

.hive_ltdbusiness__author__tag span{
    color: #685be7;
}

form.fluent_form_1 .wpf_has_custom_css.ff-btn-submit:hover {
    background-color: #FE7747 !important;
    border-color: #FE7747 !important;
}

#edd_checkout_form_wrap .edd-payment-icons {
    margin: 0 0 20px !important;
}

.edd-submit.gray.button {
	background-color: #5F52DF;
	color: #F5F5F5;
	border-color: #5F52DF;
}
.edd-submit.gray.button:hover {
	background-color: #FE7747;
	color: #FFFFFF;
	border-color: #FE7747;
}

#edd_checkout_form_wrap label {
	padding-bottom: 0px;
}

body.page-template-default.page.page-id-40.logged-in.admin-bar.wp-custom-logo.affwp-affiliate-area.no-sidebar.customize-support.edd-js .section-bg-2{
    background-color: #F5F4FE;
}

#affwp-login-form {
	margin-top: 50px;
}

#affwp-login-form.affwp-form legend {
	font-size: 28px;
	font-weight: 500;
}

.affwp-form input[type="submit"]:hover {
	background-color: #FE7747 !important;
	color: #FFFFFF !important;
    border-color: #FE7747 !important;
}

.widget_newsletter_widget.sticky {
    position: fixed;
    top: 120px;
}


@media (max-width: 991px) {
    .widget_newsletter_widget.sticky {
    position: inherit;
    }
}
@media (min-width: 992px) and (max-width: 1199px){
    .newsletter-widget-container {
        width: 292px;
    }
    .newsletter-widget-container .fluentform.ff-default.fluentform_wrapper_2.ffs_default_wrap {
        width: 250px;
    }

}

.edd_sl_license_row input.edd_sl_license_key{
    display: block !important;
}

a.edd-manage-license-back.edd-submit.button.gray {
    margin-bottom: 40px;
}

.edd_sl_license_row a.edd_sl_show_key img {
    display: none;
}
p {
    word-break: keep-all;
    hyphens: none;
}

.hive_pricing-area {
    background: #F5F4FE;
}

.hive_pricing-area .price_plan_title{
    margin-bottom: 40px;

}

.hive_pricing-area .price_plan_title h2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--heading-color);
}

.hive_pricing-area .price_plan_title p{
    padding-top: 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--paragraph-color);
}

.money_back_area {   
    padding: 90px 0;
}

#price_section_3 .align-self-center {
    align-items: center;
}

#price_section_3 .guarranty-left img {
    height: auto;
    width: 90%;
}

#price_section_3 .guarranty-right .gurranty-title h2 {

    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 40px;
    color: var(--heading-color);

}

#price_section_3 .guarranty-right .gurranty-content p {
    font-size: 16px;
    line-height: 30px;
    color: var(--paragraph-color);
    text-align: left;
    font-weight: 400;
}

#price_section_3 .guarranty-right img {
    height: auto;
    width: 70%;
    margin-top: 30px;
}


body.page-template.page-template-features.page-template-features-php.page.page-id-600{
    background: #F5F4FE;
}

.add_private_public {
    margin-top: 100px;
}

/* General styles for the topbar */

.topbar-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.topbar-content .content-title {
    flex: 1;
    text-align: start;
    margin: 10px 0;
}

.topbar-content .content-title h2 {
    color: white;
    margin: 0;
}

.topbar-content .content-btn {
    text-align: right;
}

/* Media queries for responsiveness */

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767px) {
    .topbar-content {
        flex-direction: row;
        justify-content: center;
    }

    .content-title {
        flex: none;
        text-align: center;
        margin: 0 5px 0 0;
    }

    .content-title h2 {
        font-size: 17px;
    }

    .content-btn {
        flex: none;
        text-align: center;
        margin: 0 0 0 5px;
    }

    .content-btn .topbar_btn {
        padding: 3px 6px;
        font-size: 12px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .content-title h2 {
        font-size: 1.4em;
    }

    .content-btn .topbar_btn {
        padding: 8px 16px;
        font-size: 1em;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .content-title h2 {
        font-size: 1.6em;
    }

    .content-btn .topbar_btn {
        padding: 10px 20px;
        font-size: 1.1em;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .content-title h2 {
        font-size: 1.8em;
    }

    .content-btn .topbar_btn {
        padding: 12px 24px;
        font-size: 1.2em;
    }
}

/*topbar style end*/

.header-style-01{
    background: #fff;
}



.frm-fluent-form .ff-t-cell .ff_submit_btn_wrapper_custom button {
    margin-bottom: 50px !important;
}

button.ff-btn.ff-btn-submit.ff-btn-md.ff_btn_style.wpf_has_custom_css:hover {
    background-color: #FE7747;
    border-color: #FE7747;
    color: #FFFFFF;
}

.fluentform .ff-el-is-error .ff-el-form-control {
    border-color: #5F52DF !important;
}

ul#menu-main-manu li.current-menu-item a {
    color: #5F52DF !important;
}
ul#menu-main-manu li a:hover {
    color: #5F52DF !important;
}
ul#menu-main-manu li a {
    color: #2a2a2a !important;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li a:hover{
    color: #5F52DF;
}

.hive-topbar.sticky {
    position: fixed;
    top:0;
    width: 100%;
    z-index: 99999;
    padding: 10px 0px;
}

.hive-topbar .topbar_btn {
    background-color: #F1EB63;
    border-color: #F1EB63;
    color: #101828;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
}

.hive-topbar .topbar_btn:hover {
	background-color: #ece88f;
}

.header-style-01.header-height .navbar-area {
    position: relative;
    z-index: 95;
    background: #FFFFFF;
    margin-top: 52px;
}

.logged-in .header-style-01.header-height .navbar-area {
    margin-top: 27px;
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767px) {
    

    .logged-in .header-style-01.header-height .navbar-area {
        margin-top: 4px;
    }
}

@media (max-width: 480px) {
.header-style-01.header-height .navbar-area {
        margin-top: 35px !important;
    }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991px) and (min-width: 481px) {
    .header-style-01.header-height .navbar-area {
        margin-top: 47px !important;
    }

    .logged-in .header-style-01.header-height .navbar-area {
        margin-top: 20px;
    }
}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199px) {
    .header-style-01.header-height .navbar-area {
        margin-top: 48px;
    }

    .logged-in .header-style-01.header-height .navbar-area {
        margin-top: 16px;
    }
}


.header-height {
   min-height: 100px;
}

.navbar-area-top {
   top: 20px;
}

/* Responsive styles */
@media (min-width: 1024px) {
   .header-height {
      min-height: 90px; 
   }

   .navbar-area-top {
      top: 23px; 
   }
}



@media (max-width: 768px) {
   .header-height {
      min-height: 85px; 
   }

   .navbar-area-top {
      top: 10px; 
   }
}


@media (max-width: 480px) {
  
   .header-height {
      min-height: 70px;
   }

   .navbar-area-top {
      top: 40px; 
   }
}
.navbar-area {
  background: #0D1331;
}
.ssl-icon {
 display: flex;
 align-items: center;
 gap: 7px;
 color: #f5f5f5;
}
.edd-discount-code-field-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
}
.edd-discount-code-field-wrap .edd-apply-discount.edd-submit {
  background: #FD723B;
    border-color: #FD723B;
    border-radius: 5px;
    padding: 10px 23px !important;
    font-size: 16px !important;
    font-weight: 600;
    margin: 0;
    height: 49px;
}
.edd_discount_link{
  color: #FD723B;
}
#edd_purchase_submit .edd-submit.blue.button {
    background: #FD723B !important;
    border-color: #FD723B !important;
    border-radius: 7px !important;
}
.edd-discount-code-field-wrap .edd-apply-discount.edd-submit,
.edd-submit.gray.button,
#edd_purchase_submit .edd-submit.blue.button {
  border: 1px solid #FD723B;
}
.edd-discount-code-field-wrap .edd-apply-discount.edd-submit:hover,
.edd-submit.gray.button:hover,
#edd_purchase_submit .edd-submit.blue.button:hover {
  background-color: transparent !important;
  color: #FD723B;
  border: 1px solid#FD723B;
}
a.edd_checkout_register_login,
.edd_checkout_register_login,
.edd_cart_remove_item_btn {
  color: #FD723B;
}

.edd-submit.gray.button {
    background: #FD723B !important;
    border-color: #FD723B !important;
    border-radius: 7px !important;
    padding: 11px 18px !important;
    font-size: 18px !important;
    font-weight: 600;
    margin-top: 3px;
}
#edd_checkout_form_wrap #edd-login-account-wrap, #edd_checkout_form_wrap #edd-new-account-wrap, #edd_checkout_form_wrap #edd_final_total_wrap, #edd_checkout_form_wrap #edd_show_discount, #edd_checkout_form_wrap .edd-cart-adjustment {
  background-color: #f5f4fe;
}
#edd_checkout_cart .edd_cart_header_row th {
    background: #f5f4fe;
}
#edd_checkout_cart td, #edd_checkout_cart th,
#edd_checkout_form_wrap fieldset,
#edd_checkout_form_wrap input.edd-input, #edd_checkout_form_wrap textarea.edd-input {
  border-color: #dedbf5;
}
#edd_checkout_cart .edd_cart_header_row th,
#edd_checkout_cart td,
#edd_checkout_cart th {
  color: #212529;
}
.eddr-notice.eddr-cart-item-notice em {
  font-size: 12px;
}
#edd_checkout_cart td.edd_cart_actions, #edd_checkout_cart td:last-child, #edd_checkout_cart th.edd_cart_actions, #edd_checkout_cart th.edd_cart_total, #edd_checkout_cart th:last-child {
  text-align: left;
}
/* #edd_checkout_cart {
  table-layout: fixed;
} */
.navbar-area .navbar-toggler,
.click-nav-right-icon {
  display: none;
}
.show-nav-content {
 visibility: visible;
 opacity: 1;
}
#edd_register_form input.edd-submit,
#edd_profile_editor_form input#edd_profile_editor_submit,
#edd_login_form p.edd-login-submit .edd-submit {
    background: #FD723B !important;
    border-color: #FD723B !important;
    border-radius: 7px !important;
}

.myaccount-wrapper .tap-body-wrapper {
  padding: 40px 0px;
}
.tab_body table {
  width: 100%;
}
.edd_sl_license_row input.edd_sl_license_key {
  min-width: 300px;
}
.section-bg-2.padding-top-100.padding-bottom-100 {
  min-height: 100vh;
}