/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&display=swap");

:root {
  --primaryColor: #16a34a;
  --secondaryColor: #ef941f;
  --thirdColor: #334155;
  --backgroundColor: #f2f9ec;
  --newThirdColor: #262e3b;
  --whiteColor: #ffffff;
  --newPrimaryColor: #4ca154;
  --newSecondaryColor: #df8e2a;
  --newTextColor: #c1c4ca;
}

body {
  font-family: "Open Sans", sans-serif;
  color: var(--thirdColor);
  overflow-x: hidden;
  font-size: 25px;
}

.container {
  max-width: 1280px;
}

a {
  color: var(--secondaryColor);
  text-decoration: none;
}

a:hover {
  color: #73c5eb;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Jost", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  /* background: var(--thirdColor); */
  /* background: rgba(255, 255, 255, 0.1); */
  background: transparent;
}

#preloader:before {
  /* content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--thirdColor);
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite; */
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

#preloader.inactive {
  display: none;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--secondaryColor);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--primaryColor);
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: var(--whiteColor);
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: var(--newThirdColor);
}

#header .logo a span {
  color: var(--newPrimaryColor);
}

#header .logo img {
  max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 400;
  color: var(--newThirdColor);
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: var(--newSecondaryColor);
  /* font-weight: 700; */
}

.navbar .getstarted {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: var(--newSecondaryColor);
  font-size: 15px;
  text-transform: uppercase;
  border: 2px solid var(--secondaryColor);
  font-weight: 700;
}

.navbar .getstarted:hover {
  color: #fff;
  background: var(--primaryColor);
  border-color: var(--primaryColor);
}

.navbar .getstarted:focus {
  padding: 8px 20px !important;
}

.navbar .getstarted.login {
  color: var(--whiteColor);
  background: var(--newPrimaryColor);
  border: 2px solid var(--newPrimaryColor);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #0c3c53;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: var(--secondaryColor);
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: var(--newThirdColor);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(40, 58, 90, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--primaryColor);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--secondaryColor);
}

.navbar-mobile .getstarted {
  margin: 15px;
  color: var(--primaryColor);
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: var(--secondaryColor);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: auto;
  /* background: var(--primaryColor); */
  margin-top: 70px;
  padding: 130px 35px;
}

#hero .container {
  padding-top: 20px;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 42px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 50px;
}

#hero p {
  color: var(--whiteColor);
  font-weight: 300;
  font-size: 14px;
}

#hero .btn-get-started {
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 45px 11px 45px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: var(--secondaryColor);
  text-transform: uppercase;
}

#hero .btn-get-started:hover {
  background: var(--thirdColor);
}

#hero .btn-watch-video {
  font-size: 16px;
  display: flex;
  align-items: center;
  transition: 0.5s;
  margin: 10px 0 0 25px;
  color: #fff;
  line-height: 1;
}

#hero .btn-watch-video i {
  line-height: 0;
  color: #fff;
  font-size: 32px;
  transition: 0.3s;
  margin-right: 8px;
}

#hero .btn-watch-video:hover i {
  color: var(--secondaryColor);
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  #hero {
    height: auto;
    text-align: center;
    padding: 70px 15px;
  }

  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 18px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }

  #hero .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }

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

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

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

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
.section {
  padding: 60px 0;
  overflow: hidden;
}

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  /* text-transform: uppercase; */
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: var(--newThirdColor);
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 3px;
  background: var(--secondaryColor);
  bottom: 0;
  left: calc(50% - 60px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Home Section 02
--------------------------------------------------------------*/
.home-section-02 .box-container>div>div {
  box-shadow: 0px 4px 18px 0px rgba(54, 65, 83, 0.1);
  border-radius: 5px;
  background: var(--whiteColor, #fff);
  border: 1px solid #f1f1f1;
}

.home-section-02 .box-container div>div h3 {
  color: var(--newPrimaryColor);
  font-weight: 700;
  font-size: 20px;
  margin-top: 22px;
  margin-bottom: 12px;
}

.home-section-02 .box-container div>div p {
  color: var(--newThirdColor);
  font-weight: 400;
  font-size: 15px;
}

.home-section-02 .box-container div>div .box-icon {
  background: #ebecee;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 85px;
  height: 85px;
}

.home-section-02 .box-container div>div .box-icon img {
  width: 42px;
  height: 42px;
}

/*--------------------------------------------------------------
# Home Section 03
--------------------------------------------------------------*/
.home-section-03 {
  background: #f8f8f8;
  padding: 80px 0;
}

.home-section-03 .left-content h2 {
  font-weight: 700;
  font-size: 32px;
}

.home-section-03 .left-content hr {
  width: 90px;
  height: 4px;
  background: var(--newSecondaryColor);
  opacity: 1;
}

.home-section-03 .left-content p {
  font-size: 15px;
  font-weight: 400;
}

.home-section-04 .accordion-list ul {
  list-style: none;
}

.home-section-04 .accordion-list ul li {
  border-bottom: 1px solid var(--newTextColor);
}

.home-section-04 .accordion-list ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
}

.home-section-04 .accordion-list ul li a p {
  font-weight: 700;
  font-size: 21px;
  color: var(--newSecondaryColor);
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.home-section-04 .accordion-list ul li a.collapsed p {
  color: var(--newPrimaryColor);
}

.home-section-04 .accordion-list ul li a p span {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ebecee;
}

.home-section-04 .accordion-list ul li a p span img {
  width: 25px;
  height: auto;
}

.home-section-04 .accordion-list ul li a.collapsed .icon-close,
.home-section-04 .accordion-list ul li a .icon-show {
  display: none;
}

.home-section-04 .accordion-list ul li a.collapsed .icon-show,
.home-section-04 .accordion-list ul li a .icon-close {
  display: initial;
}

.home-section-04 .accordion-list ul li a i {
  font-size: 30px;
  color: var(--newThirdColor);
}

.home-section-04 .accordion-list ul li div p {
  font-size: 15px;
  font-weight: 400;
}

/*--------------------------------------------------------------
# Cliens
--------------------------------------------------------------*/
.cliens {
  padding: 12px 0;
  text-align: center;
}

.cliens img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  filter: grayscale(100);
}

.cliens img:hover {
  filter: none;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .cliens img {
    max-width: 40%;
  }
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li+li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: var(--secondaryColor);
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  transition: 0.3s;
  line-height: 1;
  color: var(--secondaryColor);
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid var(--secondaryColor);
}

.about .content .btn-learn-more:hover {
  background: var(--secondaryColor);
  color: #fff;
  text-decoration: none;
}

.about-us-banner {
  background: linear-gradient(250deg,
      #4ca154 13.95%,
      #27532c 66.47%,
      #364153 91.75%);
  margin-top: 75px;
  padding: 130px 25px 100px 25px;
}

.about-us-banner .section-title h2 {
  color: var(--whiteColor);
}

.about-us-section-02 {
  padding: 100px 25px;
}

.about-us-section-02 .content {
  max-width: 670px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.about-us-section-02 .content p {
  font-size: 17px;
  font-weight: 400;
  color: var(--newThirdColor);
}

.about-us-section-02 .content p strong {
  font-size: 19px;
  font-weight: 700;
  color: var(--newPrimaryColor);
}

/*--------------------------------------------------------------
# Privacy Policy
--------------------------------------------------------------*/
.privacy-policy-section-01 p {
  font-size: 15px;
  font-weight: 400;
}

.privacy-policy-section-01 h2 {
  font-size: 22px;
  font-weight: 700;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .content {
  padding: 60px 100px 0 100px;
}

.why-us .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: var(--primaryColor);
}

.why-us .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.why-us .content p {
  font-size: 15px;
  color: #848484;
}

.why-us .img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.why-us .accordion-list {
  padding: 0 100px 60px 100px;
}

.why-us .accordion-list ul {
  padding: 0;
  list-style: none;
}

.why-us .accordion-list li+li {
  margin-top: 15px;
}

.why-us .accordion-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
}

.why-us .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 26px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  cursor: pointer;
}

.why-us .accordion-list span {
  color: var(--secondaryColor);
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

.why-us .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.why-us .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.why-us .accordion-list .icon-show {
  display: none;
}

.why-us .accordion-list a.collapsed {
  color: #343a40;
}

.why-us .accordion-list a.collapsed:hover {
  color: var(--secondaryColor);
}

.why-us .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1024px) {

  .why-us .content,
  .why-us .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .why-us .img {
    min-height: 400px;
  }

  .why-us .content {
    padding-top: 30px;
  }

  .why-us .accordion-list {
    padding-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .why-us .img {
    min-height: 200px;
  }
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .content h3 {
  font-weight: 700;
  font-size: 32px;
  color: var(--primaryColor);
  font-family: "Poppins", sans-serif;
}

.skills .content ul {
  list-style: none;
  padding: 0;
}

.skills .content ul li {
  padding-bottom: 10px;
}

.skills .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--secondaryColor);
}

.skills .content p:last-child {
  margin-bottom: 0;
}

.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: var(--primaryColor);
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #e8edf5;
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #4668a2;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  background: #fff;
}

.services .icon-box .icon {
  margin-bottom: 10px;
}

.services .icon-box .icon i {
  color: var(--secondaryColor);
  font-size: 36px;
  transition: 0.3s;
}

.services .icon-box h4 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 26px;
}

.services .icon-box h4 a {
  color: var(--primaryColor);
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 34px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  transform: translateY(-10px);
}

.services .icon-box:hover h4 a {
  color: var(--secondaryColor);
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(40, 58, 90, 0.9), rgba(40, 58, 90, 0.9)),
    url("../img/cta-bg.jpg") fixed center center;
  background-size: cover;
  padding: 120px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: var(--secondaryColor);
  border: 2px solid var(--secondaryColor);
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  list-style: none;
  margin-bottom: 20px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  margin: 10px 5px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  transition: all 0.3s;
  padding: 8px 20px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  background: var(--secondaryColor);
  color: #fff;
}

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

.portfolio .portfolio-item .portfolio-img {
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-img img {
  transition: all 0.6s;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  bottom: 0;
  z-index: 3;
  right: 15px;
  transition: all 0.3s;
  background: rgba(55, 81, 126, 0.8);
  padding: 10px 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #f9fcfe;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #fff;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--secondaryColor);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item:hover .portfolio-img img {
  transform: scale(1.15);
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid var(--secondaryColor);
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--secondaryColor);
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(55, 81, 126, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  position: relative;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 5px;
  background: #fff;
  transition: 0.5s;
}

.team .member .pic {
  overflow: hidden;
  width: 180px;
  border-radius: 50%;
}

.team .member .pic img {
  transition: ease-in-out 0.3s;
}

.team .member:hover {
  transform: translateY(-10px);
}

.team .member .member-info {
  padding-left: 30px;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: var(--primaryColor);
}

.team .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.team .member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #cbd6e9;
  bottom: 0;
  left: 0;
}

.team .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.team .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.team .member .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background: #eff2f8;
}

.team .member .social a i {
  color: var(--primaryColor);
  font-size: 16px;
  margin: 0 2px;
}

.team .member .social a:hover {
  background: var(--secondaryColor);
}

.team .member .social a:hover i {
  color: #fff;
}

.team .member .social a+a {
  margin-left: 8px;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
  padding-top: 40px;
}

.pricing .box {
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(20, 45, 100, 0.1);
  background: #fff;
  height: 100%;
  border-top: 4px solid #fff;
  border-radius: 5px;
}

.pricing h3 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 20px;
  color: var(--primaryColor);
}

.pricing h4 {
  font-size: 48px;
  color: var(--primaryColor);
  font-weight: 400;
  font-family: "Jost", sans-serif;
  margin-bottom: 25px;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: var(--secondaryColor);
  font-size: 18px;
  display: block;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0 10px 30px;
  position: relative;
}

.pricing ul i {
  color: #28a745;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: 6px;
}

.pricing ul .na {
  color: #ccc;
}

.pricing ul .na i {
  color: #ccc;
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 50px;
  color: var(--secondaryColor);
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  transition: 0.3s;
  border: 1px solid var(--secondaryColor);
}

.pricing .buy-btn:hover {
  background: var(--secondaryColor);
  color: #fff;
}

.pricing .featured {
  border-top-color: var(--secondaryColor);
}

.pricing .featured .buy-btn {
  background: var(--secondaryColor);
  color: #fff;
}

.pricing .featured .buy-btn:hover {
  background: #23a3df;
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: var(--secondaryColor);
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: var(--primaryColor);
  transition: 0.3s;
}

.faq .faq-list a.collapsed:hover {
  color: var(--secondaryColor);
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  border-top: 3px solid var(--secondaryColor);
  border-bottom: 3px solid var(--secondaryColor);
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

.contact .info i {
  font-size: 20px;
  color: var(--secondaryColor);
  float: left;
  width: 44px;
  height: 44px;
  background: #e7f5fb;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--primaryColor);
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #6182ba;
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: var(--secondaryColor);
  color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: var(--secondaryColor);
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  border-top: 3px solid var(--secondaryColor);
  border-bottom: 3px solid var(--secondaryColor);
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact .php-email-form label {
  padding-bottom: 8px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--secondaryColor);
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: var(--secondaryColor);
  border: 0;
  padding: 12px 34px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: var(--primaryColor);
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 55px 15px;
  background: var(--backgroundColor);
  min-height: 40px;
  margin-top: 72px;
}

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

.breadcrumbs h2 {
  font-weight: 700;
  position: relative;
  padding-bottom: 5px;
}

.breadcrumbs h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--newSecondaryColor);
  position: absolute;
  left: 0;
  bottom: -5px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #4668a2;
  content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 20px;
  background: var(--newThirdColor);
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: var(--backgroundColor);
  text-align: center;
  font-size: 15px;
  color: #444444;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: var(--primaryColor);
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: var(--secondaryColor);
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: var(--primaryColor);
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #364153;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 32px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--whiteColor);
}

#footer .footer-top .footer-contact h3 span {
  color: var(--newPrimaryColor);
}

#footer .footer-top .footer-contact h5 {
  color: var(--newSecondaryColor);
  font-size: 18px;
  font-weight: 700;
}

#footer .footer-top .footer-contact p {
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 0;
  font-weight: 300;
  font-family: "Open Sans", sans-serif;
  color: var(--newTextColor);
}

#footer .footer-top h4 {
  font-size: 24px;
  font-weight: bold;
  color: var(--primaryColor);
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links h4 {
  color: var(--newSecondaryColor);
  font-size: 18px;
  font-weight: 700;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: var(--newTextColor);
  font-size: 15px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 3px 0;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: var(--newTextColor);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  font-size: 15px;
  font-weight: 300;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: var(--secondaryColor);
}

#footer .footer-top .footer-links p a {
  color: var(--newTextColor);
  font-size: 15px;
  font-weight: 300;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: var(--newTextColor);
  color: var(--newThirdColor);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: var(--primaryColor);
  color: #fff;
  text-decoration: none;
}

#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
}

#footer .copyright {
  /* float: left; */
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  color: #f8f8f8;
  font-family: "Open Sans", sans-serif;
}

#footer .credits {
  float: right;
  padding-left: 0.5rem;
  font-size: 13px;
}

#footer .credits a {
  transition: 0.3s;
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  #footer .copyright,
  #footer .credits {
    text-align: center;
    float: none;
  }

  #footer .credits {
    padding-top: 4px;
  }
}

/*==========|| LOGIN PAGE ||==========*/
.auth-container {
  width: 100%;
  margin-top: 70px;
  /* padding: 140px 0 70px; */
  /* background-color: #ccc; */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

/* .auth-container::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background-color: rgba(40, 58, 90, 0.8);
} */

.auth-wrap {
  width: 400px;
  background: #fff;
  border-radius: 10px;
  position: relative;
  margin: 0 auto;
  padding: 40px 40px 20px;
  position: relative;
  z-index: 1;
}

.auth-wrap .auth-title {
  display: block;
  font-size: 32px;
  color: var(--newThirdColor);
  line-height: 1.2;
  text-align: center;
  font-weight: 700;
  margin-bottom: 35px;
  position: relative;
}

.auth-wrap .auth-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: calc(50% - 35px);
  width: 70px;
  height: 4px;
  background: var(--newSecondaryColor);
}

.auth-wrap .social-login-wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.auth-wrap .social-login-wrap .btn-social-login {
  display: inline-block;
  padding: 15px;
  width: calc((100% - 20px) / 2);
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  color: #fff;
}

.google {
  background-color: #db4437;
  color: #fff;
}

.facebook {
  background-color: #3b5998;
  color: #fff;
}

.auth-wrap form {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}

.auth-wrap .form-control {
  height: 45px;
  border-radius: 6px;
  background-color: transparent;
  border: 1px solid #c1c4ca;
  max-width: 400px;
  width: 100%;
}

.auth-wrap .form-group {
  margin-bottom: 15px;
}

.auth-wrap .form-control::placeholder {
  color: #a6a8a9;
}

.auth-wrap .form-control:focus {
  color: #212529;
  background-color: #f7f7f7;
  border-color: #afb9cb;
  outline: 0;
  box-shadow: none;
}

.auth-wrap .auth-button-wrap {
  width: 100%;
  display: flex;
  margin: 15px 0;
}

.auth-wrap .auth-button-wrap .auth-btn {
  width: 100%;
  height: 50px;
  border: none;
  outline: none;
  border-radius: 5px;
  background: var(--newPrimaryColor);
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
}

.auth-wrap .footer-info {
  padding-top: 30px;
  color: var(--newTextColor);
  text-align: center;
  font-size: 14px;
  font-weight: 400;
}

.auth-wrap .footer-info a {
  display: block;
  font-weight: 700;
  text-decoration: underline;
}

.auth-info {
  display: flex;
  justify-content: center;
}

.auth-wrap .auth-info a {
  color: #adadad;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
}

.auth-wrap .auth-info a:hover {
  color: #dc3545;
}

.auth-wrap .login-through-wrap {
  display: grid;
  grid-auto-flow: column;
  grid-gap: 20px;
  margin-bottom: 25px;
}

.auth-wrap .login-through-wrap .custom-radio-auth {
  position: relative;
}

.auth-wrap .login-through-wrap .custom-radio-auth .custom-radio-input-auth {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  visibility: hidden;
}

.auth-wrap .login-through-wrap .custom-radio-auth .custom-radio-label-auth {
  display: block;
  width: 100%;
  height: 100%;
  padding: 6px;
  line-height: 1;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
}

.auth-wrap .login-through-wrap .custom-radio-auth .custom-radio-input-auth:checked~.custom-radio-label-auth {
  background-color: #16a34a;
  box-shadow: 0px 0px 4px 2px #a3e635;
}

.auth-wrap .login-through-wrap .custom-radio-auth .custom-radio-label-auth .icon {
  background: rgb(0 0 0 / 20%);
  height: 30px;
  width: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 15px;
  margin-right: 5px;
}

.color1 {
  background-color: #64748b;
  color: #fff;
}

.auth-new-design {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.auth-new-design>div {
  max-width: 50%;
  width: 100%;
}

/*============ Card List ===============*/
.sec-product-search {
  position: relative;
  padding: 50px 0;
}

.filterPanelToggleBtn {
  display: none;
}

.classCloseFilterPanel {
  display: none;
}

.filter-panel {
  position: relative;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.1) 0 1px 5px;
  border: 1px solid #ebecee;
}

.filter-panel .panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 28px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.filter-panel .panel-header .panel-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.filter-panel .panel-header .btn-reset {
  width: 15px;
  height: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--thirdColor);
}

.filter-panel .panel-header .btn-reset i {
  font-size: 16px;
}

.filter-panel .panel-item {
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 10px 20px;
}

.filter-panel .panel-item:last-child {
  border-bottom: none;
}

.filter-panel .panel-item .item-title {
  display: flex;
  align-items: center;
  padding: 12px 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.3px;
  position: relative;
  padding-right: 30px;
  color: var(--newPrimaryColor);
}

.filter-panel .panel-item .item-sub-title {
  display: flex;
  align-items: center;
  padding: 12px 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.3px;
  position: relative;
  color: var(--secondaryColor);
  margin: 0 -10px;
}

.filter-panel .panel-item .item-title:after {
  content: "\f078";
  font-family: "Font Awesome 5 Pro";
  font-size: 16px;
  font-weight: 400;
  display: block;
  position: absolute;
  margin: 0;
  vertical-align: unset;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  border: 0;
  color: var(--thirdColor);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.filter-panel .panel-item.active .item-title:after {
  transform: translateY(-50%) rotate(-180deg);
}

.filter-panel .panel-item .item-content {
  position: relative;
  padding: 0 10px 12px;
  display: none;
}

.filter-panel .panel-item .checkbox-group {
  display: flex;
  flex-direction: column;
  max-height: 280px;
  overflow: hidden;
}

.filter-panel .panel-item.no-hiden-wrap .checkbox-group {
  max-height: unset !important;
  overflow: unset !important;
}

.filter-panel .panel-item .custom-checkbox {
  margin: 0;
  padding-top: 5px;
  padding-bottom: 5px;
}

.filter-panel .panel-item .custom-checkbox-label {
  font-weight: 400;
  font-size: 14px;
  color: var(--thirdColor);
}

.filter-panel .panel-item .custom-checkbox-label span {
  font-weight: 400;
  font-size: 13px;
  color: var(--thirdColor);
  margin-left: 4px;
}

.filter-panel .panel-item .custom-checkbox-label:before {
  border-color: #94a3b8;
  background-color: #fff;
}

.filter-panel .panel-item .show-more {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--whiteColor);
  background: var(--newThirdColor);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  float: right;
}

.filter-panel .panel-item .show-more span {
  display: none;
  margin-right: 2px;
}

.filter-btn {
  text-transform: uppercase;
  color: var(--whiteColor);
  background: var(--newPrimaryColor);
  border: 1px solid var(--newPrimaryColor);
  font-weight: 700;
  font-size: 12px;
  padding: 6px 28px;
  display: inline-block;
}

.product-result-info {
  position: relative;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.1) 0 1px 5px;
  margin: 0 0 30px;
  display: flex;
  padding: 10px 15px;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  border: 1px solid #ebecee;
}

.product-result-info .result-info {
  width: 100%;
  max-width: 300px;
}

.product-result-info .result-info input {
  max-width: 300px;
  width: 100%;
  border: 1px solid #ebecee;
}

.product-result-info .result-sorting {
  width: auto;
}

.product-result-info .result-sorting .dropdown-toggle {
  display: flex;
  /* background-color: #fff; */
  /* padding: 10px; */
  /* border-radius: 4px; */
  font-size: 14px;
  font-weight: 500;
  /* color: var(--secondaryColor); */
  align-items: center;
  /* height: 36px; */
  /* padding-right: 20px !important; */
  /* border: 1px solid rgba(0, 0, 0, 0.1); */
}

.product-result-info .result-sorting .dropdown-toggle p {
  padding-right: 10px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--newThirdColor);
  text-transform: uppercase;
}

.product-result-info .result-sorting .dropdown-toggle span {
  display: block;
  margin-left: 3px;
  border: 1px solid #ebecee;
  padding: 6px 32px 6px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 400;
  color: var(--newThirdColor);
}

.product-result-info .result-sorting .dropdown-toggle:after {
  color: var(--secondaryColor);
  font-size: 11px;
  right: 4px;

  display: inline-block;
  margin-left: -2em;
  margin-right: 1.5em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.5em solid;
  border-right: 0.5em solid transparent;
  border-bottom: 0;
  border-left: 0.5em solid transparent;
}

.product-result-info .result-sorting .dropdown-menu {
  width: auto;
  min-width: 0;
  margin: 1px 0 0;
  border-radius: 6px;
  border-color: rgba(0, 0, 0, 0.1);
  border: 0;
  box-shadow: rgba(0, 0, 0, 0.1) 0 2px 10px;
  padding: 10px 0;
  inset: 0px auto auto 75px !important;
}

.product-result-info .result-sorting .dropdown-menu-wrap {
  max-height: 160px;
  overflow: auto;
}

.product-result-info .result-sorting .dropdown-menu-wrap::-webkit-scrollbar-track {
  background-color: #fff;
}

.product-result-info .result-sorting .dropdown-menu-wrap::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background-color: #fff;
}

.product-result-info .result-sorting .dropdown-menu-wrap::-webkit-scrollbar-thumb {
  background-color: var(--lightColor);
}

.product-result-info .result-sorting .dropdown-item {
  padding: 6px 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

.product-result {}

.product-result .product {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: #fff;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.1) 0 1px 5px;
}

.product-result .product+.product {
  margin-top: 20px;
}

.product-result .product-details {
  width: 100%;
  max-width: calc(100% - 280px);
  padding: 15px;
  display: flex;
  flex-wrap: wrap;
}

.product-result .product-image {
  position: relative;
  width: 160px;
  height: 160px;
}

.product-result .product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* .product-result .product-content{width: 100%; max-width: calc(100% - 160px);} */
.product-result .product-content {
  width: 100%;
  max-width: calc(100%);
  padding-right: 70px;
}

.product-result .product-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.product-result .product-title span {
  display: block;
  line-height: 1.2;
}

.product-result .product-size {
  font-size: 14px;
  font-weight: 800;
  margin: 5px 0 0;
  line-height: 1;
}

.product-result .product-info {
  display: grid;
  margin: 15px 0 0;
  font-size: 13px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  row-gap: 2px;
  column-gap: 5px;
  color: var(--primaryColor);
  font-weight: 800;
}

.product-result .product-info-2grid {
  display: grid;
  margin: 15px 0 0;
  font-size: 13px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  row-gap: 2px;
  column-gap: 5px;
  color: #0284c7;
  font-weight: 600;
}

.product-result .product-meta {
  margin: 15px -10px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.product-result .product-meta .item {
  margin: 0 10px;
  display: flex;
  align-items: center;
  font-weight: 500;
  color: #48b02c;
  font-size: 16px;
}

.product-result .product-meta .item span {
  font-size: 13px;
  display: block;
  margin-left: 5px;
  letter-spacing: -0.5px;
  color: var(--primaryColor);
  font-weight: 800;
}

.product-result .product-meta .item .compare-checkbox {}

.product-result .product-meta .item .compare-checkbox .custom-checkbox-label {
  font-weight: 500;
  font-size: 14px;
  color: var(--secondaryColor);
  letter-spacing: -0.5px;
}

.product-result .product-meta .item .compare-checkbox .custom-checkbox-label:before {
  background-color: #fff !important;
  border-color: #ddd !important;
}

.product-result .product-meta .item .compare-checkbox .custom-checkbox-label:after {
  background-color: transparent;
  color: var(--secondaryColor);
  font-size: 14px;
}

.product-result .product-options {
  width: 280px;
  padding: 15px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-result .product-options .rating-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-result .product-options .rating-wrap .rating-label {
  font-size: 13px;
  font-weight: 800;
  color: #9dadbf;
  text-transform: uppercase;
  margin-right: 6px;
}

.product-result .product-options .rating-wrap .star-ratings {
  unicode-bidi: bidi-override;
  color: #c2ccd7;
  font-size: 24px;
  position: relative;
  margin: 0;
  padding: 0;
  width: 100px;
  margin: 0;
  line-height: 1;
}

.product-result .product-options .rating-wrap .star-ratings .fill-ratings {
  color: #ffc107;
  padding: 0;
  position: absolute;
  z-index: 1;
  display: block;
  top: 0;
  left: 0;
  overflow: hidden;
}

.product-result .product-options .rating-wrap .star-ratings .fill-ratings span {
  display: inline-block;
}

.product-result .product-options .rating-wrap .star-ratings .empty-ratings {
  padding: 0;
  display: block;
  z-index: 0;
}

.product-result .product-options img {
  width: 200px;
  height: 150px;
}

.product-result .product-price-title {
  font-weight: 600;
  font-size: 13px;
  line-height: 1.2;
  color: #fff;
  text-align: left;
  text-transform: uppercase;
}

.product-result .product-value {
  position: relative;
  display: flex;
  align-items: center;
  margin: 47px 0 0 18px;
  justify-content: left;
  margin-bottom: auto;
}

.product-result .product-value .product-discount {
  width: 40px;
  height: 40px;
  background-color: var(--primaryColor);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin: auto 0;
  margin-right: 40px;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
}

.product-result .product-value .product-price {
  text-align: right;
}

.product-result .product-value .product-price .product-sell-price {
  font-weight: 600;
  font-size: 23px;
  line-height: 1.2;
  color: #fff;
  font-family: "Jost", sans-serif;
  text-shadow: 2px 2px rgba(33, 33, 33, 0.5);
}

.product-result .product-action {
  margin: 10px 0 0;
  display: flex;
  justify-content: flex-end;
}

.product-result .product-action .product-quantity {
  display: flex;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.1) 0 1px 5px;
}

.product-result .product-action .product-quantity .input-quantity {
  height: 40px;
  padding: 6px 12px;
  font-size: 16px;
  font-weight: 600;
  width: 60px;
  border: 0;
}

.product-result .product-action .product-quantity .input-controls {
  display: flex;
  flex-direction: column;
  height: 40px;
  position: relative;
}

.product-result .product-action .product-quantity .input-controls:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  opacity: 0.2;
  z-index: 1;
}

.product-result .product-action .product-quantity .input-control {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  background-color: var(--secondaryColor);
  color: var(--thirdColor);
  font-size: 16px;
}

.product-result .product-action .product-buttons {
  margin-left: 8px;
}

.product-result .product-action .product-buttons .btn-addtocart {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primaryColor);
  padding: 6px 8px;
  height: 30px;
  border-radius: 4px;
  line-height: 1;
  font-size: 14px;
  color: #fff;
  width: 100%;
}

.product-result .product-action .product-buttons .btn-addtocart span {
  display: block;
  margin-left: 10px;
  font-weight: 600;
  font-size: 14px;
}

.product-navigations {
  position: relative;
  margin: 50px 0 0;
}

.product-result .custom-label {
  font-size: 12px !important;
  font-weight: 800;
  color: #94a3b8 !important;
  text-transform: uppercase;
  margin-right: 2px;
  display: inline-block;
}

.product {
  padding: 40px 30px;
  border-radius: 6px;
}

.product .product-title h5 {
  font-size: 17px;
  font-weight: 600;
  color: var(--newThirdColor);
}

.product .product-title h5 span {
  color: var(--newSecondaryColor);
  display: inline;
}

.product .status-btn {
  margin-top: 20px;
}

.product .status-btn span {
  text-transform: uppercase;
  padding: 10px 25px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
  display: initial;
  background: transparent !important;
  border-radius: 5px;
  border-width: 2px;
  border-style: solid;
}

.product .status-btn span.bg-secondary {
  border-color: var(--newSecondaryColor) !important;
  color: var(--newSecondaryColor) !important;
}

.product .status-btn span.bg-success {
  border-color: var(--newPrimaryColor) !important;
  color: var(--newPrimaryColor) !important;
}

.product .status-btn span.bg-dark {
  border-color: #216bd9 !important;
  color: #216bd9 !important;
}

.product .status-btn span.bg-danger {
  border-color: #db2323 !important;
  color: #db2323 !important;
}

.product hr {
  background: #a5a5a5;
  margin: 30px 0;
  display: block;
}

.product .product-size {
  font-size: 14px;
  font-weight: 600;
  color: #78808c;
}

.product .product-size span {
  font-size: 14px;
  font-weight: 700;
  color: #364153;
  display: inline;
}

.product .product-info {
  font-size: 14px;
  font-weight: 600;
  color: #78808c;
  display: block;
  margin-top: 0;
}

.product .product-info span {
  font-size: 14px;
  font-weight: 700;
  color: #364153;
  display: inline;
}

.product .product-info .yes {
  color: var(--newPrimaryColor);
}

.product .product-info .no {
  color: #db2323;
}

.product-meta .item .custom-label {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #78808c !important;
  text-transform: capitalize !important;
}

.yes {
  color: #48b02c !important;
}

.no {
  color: #dc3545 !important;
}

.view-card-wrap {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
  min-height: 150px;
  padding: 8px;
  background-color: #334155;
  border-radius: 5px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.view-card-wrap .card-loading {
  font-weight: 600;
  font-size: 14px;
  list-style: 1;
  color: #ffffff;
}

/* ==================== Account Page ==================== */
.account-page {}

.account-page .nav-tabs {
  gap: 10px;
}

.account-page .nav-tabs .nav-item {
  background: #ebecee;
  border-top-right-radius: 7px;
  border-top-left-radius: 7px;
}

.account-page .nav-tabs .nav-item .nav-link {
  color: #364153;
  font-size: 15px;
  font-weight: 400;
  text-transform: capitalize;
}

.account-page .nav-tabs .nav-item .nav-link.active {
  background: var(--newPrimaryColor) !important;
  color: var(--whiteColor);
}

.account-page .card {
  border: none;
  padding: 0;
}

.account-page .card-header {
  background: transparent;
  border: none;
}

.account-page .card-body table {
  border-collapse: separate;
  border-spacing: 0 15px;
}

.account-page .card-body thead {
  background: var(--newSecondaryColor);
  border-radius: 8px;
}

.account-page .card-body thead th {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--whiteColor);
}

.account-page .card-body tbody td {
  font-size: 14px;
  font-weight: 400;
}

.account-page .card-body tbody td:nth-child(1) {
  font-size: 14px;
  font-weight: 400;
  color: var(--newThirdColor);
}

.account-page .card-body tbody td {
  background: var(--whiteColor);
}

.account-page .card-body tbody tr {
  --bs-table-accent-bg: var(--whiteColor);
}

.account-page .card-body tbody tr:hover {
  --bs-table-accent-bg: #fefefe;
}

.account-page .card-body tbody td:nth-child(1) {
  border-left: 5px solid var(--whiteColor);
  transition: all 0.3s ease;
}

.account-page .card-body tbody tr:hover td:nth-child(1) {
  border-left: 5px solid var(--newPrimaryColor);
}

.account-page .card-body tbody td .protocol {
  color: #78808c;
  font-weight: 600;
}

.account-page .card-body tbody td .protocol span {
  color: #364153;
  font-weight: 700;
}

.account-page .card-body tbody td .status-btn {
  padding: 8px 25px;
  border-radius: 6px;
  border-width: 2px;
  border-style: solid;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  background: transparent !important;
}

.account-page .card-body tbody td .status-btn.bg-dark {
  border-color: #216bd9 !important;
  color: #216bd9 !important;
}

.account-page .card-body tbody td .status-btn.bg-danger {
  border-color: #db2323 !important;
  color: #db2323 !important;
}

.account-page .card-body tbody td .status-btn.bg-success {
  border-color: var(--newPrimaryColor) !important;
  color: var(--newPrimaryColor) !important;
}

.account-page .card-body tbody td .status-btn.bg-secondary {
  border-color: var(--newSecondaryColor) !important;
  color: var(--newSecondaryColor) !important;
}

.account-page .card-body tbody td .view-btn.status-btn {
  background: var(--newPrimaryColor) !important;
  border-color: var(--newPrimaryColor) !important;
  color: var(--whiteColor);
}

/* ================xx== Account Page ==xx================ */

/*Custom Check box*/
.custom-checkbox {
  position: relative;
  padding-left: 24px;
  margin: 3px 0;
  display: inline-block;
}

.custom-checkbox .custom-checkbox-input {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.custom-checkbox .custom-checkbox-label {
  position: relative;
  margin: 0;
  line-height: 16px;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.custom-checkbox .custom-checkbox-label:before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: #fff;
  border: 1px solid #ddd;
  top: 50%;
  left: -24px;
  transform: translateY(-50%);
  border-radius: 2px;
}

.custom-checkbox .custom-checkbox-label:after {
  content: "\f00c";
  position: absolute;
  font-family: "Font Awesome 5 Pro";
  width: 16px;
  height: 16px;
  top: 50%;
  left: -24px;
  transform: translateY(-50%);
  font-weight: 500;
  font-size: 12px;
  display: none;
  color: #fff;
  text-align: center;
  font-weight: 600;
}

.custom-checkbox .custom-checkbox-input:checked~.custom-checkbox-label:after {
  display: block;
}

.custom-checkbox .custom-checkbox-input:checked~.custom-checkbox-label:before {
  background: var(--newSecondaryColor);
  border: 1px solid var(--newSecondaryColor);
}

.custom-checkbox .custom-checkbox-input:checked~.custom-checkbox-label {
  font-weight: 700;
  color: var(--newSecondaryColor);
}

.custom-radio {
  position: relative;
  padding-left: 24px;
  margin: 3px 0;
  display: inline-block;
}

.custom-radio .custom-radio-input {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.custom-radio .custom-radio-label {
  position: relative;
  margin: 0;
  line-height: 16px;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.custom-radio .custom-radio-label:before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: #fff;
  border: 1px solid #ddd;
  top: 50%;
  left: -24px;
  transform: translateY(-50%);
  border-radius: 50%;
}

.custom-radio .custom-radio-label:after {
  content: "\f111";
  position: absolute;
  font-family: "Font Awesome 5 Pro";
  width: 16px;
  height: 16px;
  top: 50%;
  left: -24px;
  transform: translateY(-50%);
  font-weight: 600;
  font-size: 8px;
  display: none;
  color: #fff;
  text-align: center;
  padding-top: 1px;
}

.custom-radio .custom-radio-input:checked~.custom-radio-label:after {
  display: block;
}

.custom-radio .custom-radio-input:checked~.custom-radio-label:before {
  background: var(--primaryColor);
  border: 1px solid var(--primaryColor);
}

.load-more-button-wrap {
  display: flex;
  justify-content: center;
}

.load-more-button-wrap .load-more-button {
  border: 0;
  padding: 0;
  border-radius: 0;
  background-color: transparent;
  color: #0369a1;
  text-decoration: underline;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 15px;
}

.load-more-button-wrap .load-more-button::after {
  content: "\f101";
  font-family: "Font Awesome 5 Pro";
  font-weight: 500;
  font-size: 15px;
  color: #0369a1;
  display: inline-block;
  margin-left: 3px;
}

header .user-account {
  margin: 0;
  padding-left: 20px;
  display: flex;
}

header .user-account .dropdown-toggle {
  display: flex;
  margin: auto 0;
}

header .user-account .dropdown-toggle:after {
  color: var(--newThirdColor);
  margin: auto;
  font-size: 14px;
  font-weight: 300;
}

header .user-account .dropdown-toggle .user-account-img {
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 50%;
  margin: auto 0;
  margin-right: 15px;
}

header .user-account .dropdown-toggle .user-account-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

header .user-account .dropdown-toggle .user-account-title {
  margin: auto 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--newThirdColor);
  padding-right: 5px;
}

header .user-account .dropdown-toggle .user-account-title span {
  display: inline-block;
  margin-right: 5px;
}

header .user-account .dropdown-menu {
  margin: 0;
  border: 0;
  border-radius: 7px;
  box-shadow: rgba(0, 0, 0, 0.2) 0 2px 10px;
  left: auto !important;
  right: 0;
  transform: translate(0%, 50px) !important;
  inset: 68px auto auto -40px !important;
  width: 180px;
}

header .user-account .dropdown-menu::before {
  content: "";
  width: 18px;
  height: 18px;
  background: var(--whiteColor);
  position: absolute;
  top: -9px;
  right: 20px;
  transform: rotate(45deg);
}

header .user-account .dropdown-menu.show {
  transform: translate(0, 0) !important;
}

header .user-account .dropdown-menu .dropdown-item {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.3px;
  padding: 8px 15px;
  line-height: 1.2;
  color: var(--newThirdColor);
  margin: 3px 0;
}

header .user-account .dropdown-menu .dropdown-item:focus,
header .user-account .dropdown-menu .dropdown-item:hover,
header .user-account .dropdown-menu .dropdown-item:active {
  background: var(--newSecondaryColor);
  color: #fff;
  font-weight: 700;
}

.slider-wrap .min-max-slider {
  position: relative;
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

.slider-wrap .min-max-slider>label {
  display: none;
}

.slider-wrap span.value {
  height: 1.7em;
  font-weight: bold;
  display: inline-block;
  position: relative;
  font-size: 13px;
}

.slider-wrap span.value.lower::before {
  content: "";
  display: inline-block;
}

.slider-wrap span.value.upper::before {
  content: "-";
  display: inline-block;
  margin-left: 0.4em;
}

.slider-wrap span.value.lower::after {
  content: attr(data-after);
}

.slider-wrap span.value.upper::after {
  content: attr(data-after);
}

.slider-wrap .min-max-slider>.legend {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.slider-wrap .min-max-slider>.legend::before {
  content: "";
  display: block;
  height: 5px;
  width: 100%;
  background-color: #dee2e6;
  border-radius: 5px;
  position: absolute;
  top: -13px;
  z-index: 0;
}

.slider-wrap .min-max-slider>.legend>* {
  font-size: 12px;
  opacity: 0.25;
}

.slider-wrap .min-max-slider>input {
  cursor: pointer;
  position: absolute;
  z-index: 1;
  -webkit-appearance: none;
  outline: none !important;
  background: transparent;
}

.slider-wrap .min-max-slider>input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  background: #eee;
  cursor: pointer;
  border: 1px solid gray;
  border-radius: 100%;
}

.slider-wrap .min-max-slider>input::-webkit-slider-runnable-track {
  cursor: pointer;
}

.doc-wraper {
  position: relative;
  width: 100%;
}

.doc-wraper iframe {
  width: 100%;
  height: calc(100vh - 93px);
  position: absolute;
  top: 0;
  left: 0;
}

.doc-wraper img {
  display: block;
  max-width: 100%;
  margin: auto;
}

.doc-btn {
  font-size: 10px;
  line-height: 1;
  padding: 5px;
  font-weight: 800;
  background-color: #ef941f;
  border-color: #ef941f;
  color: #fff;
}

.inner-page {
  padding: 60px 0 !important;
}

.form-control {
  height: 44px;
}

.btn-custom {
  border: 0;
  padding: 10px 40px;
  transition: 0.4s;
  border-radius: 50px;
  background-color: var(--primaryColor);
  color: #fff;
  font-weight: 600;
}

.btn-custom:hover {
  background-color: #15803d;
}

.toast {
  opacity: 1 !important;
  background-color: #272838 !important;
  border-radius: 0 !important;
  border: 0;
  border-left: 6px solid var(--darkColor);
  z-index: 0;
}

.toast .toast-progress {
  height: 100%;
  background-color: var(--darkColor);
  z-index: -1;
  opacity: 0.2;
}

.toast .toast-title {
  font-size: 16px;
  font-weight: 600;
  font-family: "Nunito", sans-serif;
}

.toast .toast-message {
  font-size: 13px;
  font-weight: 300;
  font-family: "Nunito", sans-serif;
}

.toast.toast-success {
  border-color: #4caf50;
}

.toast.toast-success .toast-progress {
  background-color: #fff;
  background: var(--primaryColor);
}

.toast.toast-danger,
.toast.toast-error {
  border-color: #f81e48;
}

.toast.toast-danger .toast-progress,
.toast.toast-error .toast-progress {
  background-color: #f81e48;
}

.toast.toast-warning {
  border-color: #ff9800;
}

.toast.toast-warning .toast-progress {
  background-color: #ff9800;
}

.toast.toast-info {
  border-color: #2196f3;
}

.toast.toast-info .toast-progress {
  background-color: #2196f3;
}

.toast.toast-default {
  border-color: #2196f3;
}

.toast.toast-default .toast-progress {
  background-color: #2196f3;
  opacity: 0.4;
}

.toast-close-button {
  display: none;
}

.select2 {
  width: 100% !important;
}

.select2-container .select2-selection--single,
.select2-container .select2-selection--multiple {
  height: 44px;
  border: 1px solid #C1C4CA;
  border-radius: 5px;
  padding: 0 15px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered,
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  line-height: 44px;
  font-size: 1rem;
  color: #364153;
  padding: 0;
  font-weight: 500;
}

.select2-container--default .select2-selection--single .select2-selection__arrow,
.select2-container--default .select2-selection--multiple .select2-selection__arrow {
  height: 36px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #d1d3e2;
  font-size: 14px;
  color: #6e707e;
  border-radius: 2px;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus-visible {
  outline: none;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: 1px solid #d1d3e2;
}

.select2-container--default .select2-search--inline .select2-search__field {
  color: #6e707e;
  margin: 0;
}

.select2-dropdown {
  border: 1px solid #ced4da;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}

.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option[aria-selected="true"] {
  background: var(--primaryColor);
  color: #fff;
}

.select2-results__option {
  font-size: 0.9rem;
  letter-spacing: 0;
  color: #94a3b8;
  font-weight: 500;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background-color: #fff;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb {
  background-color: #ced4da;
}

.select2-container .select2-selection--multiple {
  height: auto;
  min-height: 44px;
  line-height: 44px;
  display: flex;
  padding: 4px;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  display: flex;
  flex-wrap: wrap;
  color: #fff;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
  line-height: 24px;
  margin: 2px;
  padding: 0;
  overflow: hidden;
  font-size: 12px;
  position: relative;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  width: 18px;
  padding: 0 4px;
  margin: 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.2);
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-selection__choice {
  background-color: #375dce;
  border: none;
  padding-left: 24px;
  padding-right: 6px;
}

.select2-container--default .select2-results__option[aria-disabled="true"] {
  color: #ced4da;
}

.profile-image {
  width: 200px;
  height: 200px;
  position: relative;
  margin: 0 0 40px;
}

.profile-image .img-container {
  width: 200px;
  height: 200px;
  overflow: hidden;
  border-radius: 0;
  background: #ebecee;
  border: 4px solid #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0 2px 5px;
  padding: 30px;
}

.profile-image .img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-image .input-file {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -1;
  top: 0;
  left: 0;
}

.profile-image .btn-file {
  position: absolute;
  top: 55px;
  right: 7px;
  margin: 0;
  background: var(--primaryColor);
  color: #fff;
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 35px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1;
  box-shadow: rgba(0, 0, 0, 0.2) 0 2px 10px;
  font-size: 18px;
}

.profile-image .btn-file span {}

.profile-image .note {
  font-size: 13px;
  font-weight: 600;
  color: var(--primaryColor);
  margin: 10px 0;
}

.profile-image.img-square {
  width: 100%;
  height: 200px;
  max-width: 220px;
  margin-left: auto;
  margin-right: auto;
}

.profile-image.img-square .img-container {
  width: 100%;
  height: 200px;
  border-radius: 0px;
}

.profile-main-section .content {
  max-width: 850px;
  width: 100%;
}

.profile-main-section .content .profile-image {
  width: 280px;
  height: 280px;
  margin: 0px;
}

.profile-main-section .content .profile-image .img-container {
  background: #ebecee;
  width: 100%;
  height: 100%;
  margin: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: none;
  border: none;
}

.profile-main-section .content .profile-image .img-container img {
  width: 170px;
  height: 170px;
}

.profile-main-section .content .profile-image .btn-file {
  bottom: none;
  right: 10px;
  left: none;
  top: 10px;
}

.profile-main-section .content .role {
  font-size: 16px;
  color: var(--newThirdColor);
}

.profile-main-section .content .role span {
  color: #78808c;
}

.profile-main-section .content .inputs label {
  font-size: 15px;
  font-weight: 400;
  color: #78808c;
}

.profile-main-section .content .inputs input,
.profile-main-section .content .inputs input::placeholder {
  font-size: 15px;
  font-weight: 400;
  color: #364153;
}

.profile-main-section .content .inputs .phone-code {
  background: none;
}

.profile-main-section .content .inputs #phone {
  border-left: none;
}

.profile-main-section .content .inputs .btn-success {
  background: var(--newPrimaryColor);
}

.profile-main-section .content .inputs .btn-warning {
  background: var(--newSecondaryColor);
  color: var(--whiteColor);
  border-color: var(--newSecondaryColor);
}

.profile-main-section .content .inputs .saveButton {
  border-radius: 4px;
  text-transform: uppercase;
}

.profile-main-section .content .change-password {
  max-width: 400px;
  width: 100%;
}

/* RANGE SLIDER CUSTOM CSS */
.range-slider .irs-hidden-input {
  visibility: hidden;
}

.range-slider>input {
  width: 100%;
}

.range-slider .range-slider-input {
  display: flex;
  width: 100%;
  height: 40px;
  font-size: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  overflow: hidden;
  margin: 5px 0 10px;
}

.range-slider .range-slider-input input[type="number"] {
  width: 50%;
  height: 100%;
  padding: 4px;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: textfield;
  font-weight: 600;
  text-align: center;
}

.range-slider .range-slider-input input[type="number"]:focus-visible {
  border: none;
}

.range-slider .range-slider-input .input-max {
  border-left: 1px solid #ccc !important;
}

.range-slider .irs--round .irs-bar {
  background-color: var(--newSecondaryColor);
}

.range-slider .irs--round .irs-handle {
  background-color: var(--whiteColor);
  border-color: var(--newSecondaryColor);
  box-shadow: 0px 0px 0px 5px rgba(22, 163, 74, 0.2);
}

.range-slider .irs--round .irs-handle.state_hover,
.range-slider .irs--round .irs-handle:hover {
  background-color: var(--newSecondaryColor);
}

.range-slider .irs--round .irs-handle {
  width: 16px;
  height: 16px;
  top: 29px;
}

.range-slider .irs--round .irs-from,
.range-slider .irs--round .irs-to,
.range-slider .irs--round .irs-single {
  background-color: transparent;
  color: var(--newSecondaryColor);
}

.range-slider .irs--round .irs-from:before,
.range-slider .irs--round .irs-to:before,
.range-slider .irs--round .irs-single:before,
.range-slider .irs--round .irs-min,
.range-slider .irs--round .irs-max {
  display: none;
}

.required:after {
  content: "*";
  color: #f44336;
  font-size: 16px;
  font-weight: 600;
  position: absolute;
  margin: 0 0 0 3px;
}

.modal-header {
  background-color: var(--primaryColor);
  color: #fff;
}

.form-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px;
  margin: 15px 0 12px 0;
  background: #6c757d;
  border-radius: 5px;
}

.form-section .form-section-title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-transform: capitalize;
  margin: 0;
  line-height: 1;
}

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

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

/* .input-group-text {
  height: 44px;
} */

.account-menu .nav-link {
  font-size: 14px;
  font-weight: 600;
}

.table thead {
  background-color: var(--thirdColor);
  color: #fff;
}

.table> :not(caption)>*>* {
  vertical-align: middle;
}

.sec-communication {
  width: 100%;
  position: relative;
  background-color: #fff;
  padding: 10px 0 0 0;
}

.sec-communication .cmm-heading {
  font-size: 20px;
  font-weight: 600;
  color: var(--darkColor);
  text-transform: uppercase;
  margin: 0;
  line-height: 1;
  margin-bottom: 40px;
  text-align: center;
  padding: 20px 20px 20px;
  border-bottom: 1px solid #dee2e6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(0, 0, 0, 0.03);
}

.sec-communication .cmm-menu {
  padding: 0 40px;
  margin-bottom: 30px;
}

.sec-communication .cmm-content {
  padding: 0 40px;
  margin-bottom: 30px;
}

.sec-communication .cmm-message-send-sec {
  background-color: #f2f2f2;
  padding: 15px 3rem !important;
  box-shadow: 0 -1px 6px 0 rgb(0 0 0 / 20%);
}

.sec-communication .cmm-message-send-sec .send-message-wrap {
  display: flex;
  align-items: center;
  margin: 0 -10px;
}

.sec-communication .cmm-message-send-sec .send-message-wrap .input-box {
  width: calc(100% - 100px);
  margin: 0 10px;
}

.sec-communication .cmm-message-send-sec .send-message-wrap .input-box textarea {
  min-height: 60px;
  resize: none;
}

.sec-communication .cmm-message-send-sec .send-message-wrap .input-attachment {
  width: 40px;
  height: 40px;
  position: relative;
  margin: 10px;
}

.sec-communication .cmm-message-send-sec .send-message-wrap .input-attachment label {
  width: 40px;
  height: 40px;
  padding: 8px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.sec-communication .cmm-message-send-sec .send-message-wrap .input-attachment input[type="file"] {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  visibility: hidden;
}

.sec-communication .cmm-message-send-sec .send-message-wrap .input-attachment .active-file {
  width: 8px;
  height: 8px;
  background: #79c144;
  border-radius: 50%;
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}

.sec-communication .cmm-message-send-sec .send-message-wrap .input-attachment .active-file.active {
  display: block;
}

.sec-communication .cmm-message-send-sec .send-message-wrap .input-send {
  width: 40px;
  height: 40px;
  margin: 10px;
}

.sec-communication .cmm-message-send-sec .send-message-wrap .input-send button {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  padding: 10px;
  background: #79c144;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
}

.sec-communication .cmm-message-send-sec .send-message-wrap .input-send button:disabled {
  background: #b6e693;
}

/* ======================================================= Fresh New Screen ======================================================= */
.fresh-new-screen {}

.fresh-new-screen .title {
  color: #364153;
  font-size: 18px;
  font-weight: 700;
}

.fresh-new-screen .title span {
  color: #df8e2a;
  font-weight: 500;
}

.fresh-new-screen .fresh-new-screen-input-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: end;
}

.fresh-new-screen .fresh-new-screen-input-wrapper>div label,
.fresh-new-screen .flesh-new-screen-bottom-input-wrapper>div label {
  color: #78808c;
  font-size: 14px;
  font-weight: 400;
}

.fresh-new-screen .fresh-new-screen-input-wrapper>div input,
.fresh-new-screen .flesh-new-screen-bottom-input-wrapper>div input,
.fresh-new-screen .fresh-new-screen-input-wrapper>div select,
.fresh-new-screen .flesh-new-screen-bottom-input-wrapper>div select {
  border: 1px solid #c1c4ca;
  width: 100%;
  border-radius: 7px;
  padding: 10px 12px;
  transition: all 0.3s ease;
  font-size: 14px;
}

.fresh-new-screen .fresh-new-screen-input-wrapper>div input:focus,
.fresh-new-screen .flesh-new-screen-bottom-input-wrapper>div input:focus,
.fresh-new-screen .flesh-new-screen-bottom-input-wrapper>div select:focus,
.fresh-new-screen .fresh-new-screen-input-wrapper>div select:focus {
  border: 1px solid #364153;
  outline: none;
}

.fresh-new-screen .flesh-new-screen-bottom-input-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: end;
  max-width: 850px;
  width: 100%;
  margin: 20px auto 0;
}

.fresh-new-screen-submit-btn {
  background: #4ca154;
  padding: 8px 30px;
  color: #ffffff;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  font-weight: 700;
}

.pos-card-page-bottom-btns .filter-btn {
  background: #df8e2a;
  color: white;
  border: 1px solid #df8e2a;
}

.pos-card-page-fresh-new-screen-btn {
  background: #df8e2a;
  color: white;
  border: 1px solid #df8e2a;
  font-size: 14px;
  font-weight: 700;
  border-radius: 5px;
  padding: 5px 14px;
}

@media only screen and (max-width: 991px) {
  .fresh-new-screen .flesh-new-screen-bottom-input-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }

  .fresh-new-screen .fresh-new-screen-input-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 768px) {
  .fresh-new-screen .fresh-new-screen-input-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* =================================================xxx=== Fresh New Screen ===xxx================================================= */
/* FORM */
form label {
  font-size: 14px;
  font-weight: 400;
  color: #78808c;
}

form .bottomLabel {
  font-size: 12px;
  font-weight: 400;
  color: #78808c;
}

form .input-group-text {
  border: 1px solid #C1C4CA;
}

form .input-group-text.currencyLabel {
  color: var(--primaryColor);
  font-weight: 900;
  background-color: #EBECEE;
  font-size: 20px;
  border: 1px solid #C1C4CA;
}

form .input-group .input-group-text .btn-group .icon-btn {
  width: 17px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  border: none;
  border-radius: 50%;
  font-size: 9px;
  color: #fff;
  background-color: #C1C4CA;
}

form .input-group .input-group-text .btn-group .icon-btn+.icon-btn {
  margin-left: 5px;
}

form .addMoreBtn {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  border: none;
  font-size: 10px;
  border-radius: 50%;
  background: var(--secondaryColor);
  color: #fff;
}

.form-control {
  border: 1px solid #C1C4CA;
  color: #364153;
}

.form-control:focus {
  color: #364153;
  box-shadow: none;
}