@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
:root {
  --theme-primary: #d30000;
  --theme-secondary: #044d67;
  --theme-green: #009d4e;
  --theme-blue: #044d67;
  --theme-primary-10: #d300000d;
}

body {
  background-color: #fff;
  color: #333;
}

*, *:hover, *:focus{ outline: none; }

.text-theme-primary {color: var(--theme-primary)!important;}
.text-theme-secondary {color: var(--theme-secondary)!important;}
.text-red {color:#dc3545 !important;};

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

h2 {
  color: #000;
  font-weight: 600;
}

h4 {
  color: #000;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;

}

h5 {
  color: #626262;
  font-size: 14px;
  font-weight: 500;
}

a {
  position: relative;
  text-decoration: none;
  color: var(--theme-primary);
}

a:hover {
  color: var(--theme-green);
  text-decoration: underline;
}
.footer .list-menu a:hover {
  color: var(--theme-green);
  text-decoration: underline;
}


li {
  color: #626262;
  font-size: 13px;
  font-weight: 400;
  line-height: 30px;
  text-transform: capitalize;
}

p {
  color: #505050;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 2;
  margin-bottom: 20px;
}


.container-full {
  padding-left: 0;
  padding-right: 0;
}

 .btn {
  border: 1px solid transparent;
/*  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 15px 40px;
  text-transform: uppercase;
  transition: all 0.5s ease-in-out 0s;*/
}

.btn-primary{
  background-color: var(--theme-primary);
  color: #fff;
  /* border-radius: 50px; */
}
.btn-primary:hover{
  background-color: var(--theme-green) !important;
  color: #fff !important;
  border-color: transparent;
}

.btn-default:hover {
  color: #fff;
  background-color: #e6e6e6;
  border-color: #adadad;
}

.fa {
  text-decoration: none;
  font-size: 13px;
}

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

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

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

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

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

#header #logo a {
  display: block;
}

#header #logo img {
  padding: 0;
  margin: 0;
}

#header.header-scrolled {
  background: #fff;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
}

/*--------------------------------------------------------------
# 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>ul>li>a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: 30px;
  padding: 0;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  color: #222;
  white-space: nowrap;
  transition: 0.3s;
  letter-spacing: 0;
}

.navbar a.btn{
  padding: 5px 30px;
  color: #fff;
  font-weight: 500;
  display: inline-block;
}

.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(--theme-primary);
}

.navbar .dropdown>ul {
  display: block;
  position: absolute;
  right: 0;
  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: 5px 20px;
  text-transform: none;
}

.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(--theme-primary);
}

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

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

.dropdown-item{
  padding: 0;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  color: #222;
  white-space: nowrap;
  transition: 0.3s;
  letter-spacing: 0;
}

.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: #222;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

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

@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(34, 34, 34, 0.9);
  transition: 0.3s;
  z-index: 999;
}

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

.navbar-mobile ul {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 10px 0;
  border-radius: 6px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile ul li{ margin-left: 0 !important; }

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #222;
}

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

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.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.show {
	display: block;
	margin-left: 0;
}

.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(--theme-primary);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}
.navbar-mobile>ul>li>a{ margin-left: 0 !important; }
 .navbar li .dropdown{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
  }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: calc(100vh - 40px);
  background: url(../images/hero-bg.png) center bottom no-repeat;
  background-size: 100%;
  position: relative;
  margin-top: 90px;
}

@media (min-width: 1025px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (min-width: 1025px) and (max-height: 768px) {
  #hero {
    height: 110vh;
  }
}

@media (max-height: 600px) {
  #hero {
    height: 200vh;
  }
}

#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 600;
  line-height: 56px;
  /* font-family: "Philosopher", sans-serif; */
  color: var(--theme-primary);
}

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

#hero h2 {
  color: #777;
  margin-bottom: 30px;
  font-size: 20px;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

#hero img {
  max-width: 95%;
  margin: 70px 0;
}

#hero .btn-get-started {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 11px 36px;
  border-radius: 50px;
  transition: 0.5s;
  margin-bottom: 30px;
  border: 2px solid var(--theme-primary);
  background: #fff;
  color: var(--theme-primary);
  text-decoration: none;
}

#hero .btn-get-started:hover {
  background: var(--theme-primary);
  color: #fff;
}

#hero .btns a {
  color: #555;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 4px 20px;
  text-decoration: none;
  transition: 0.3s;
}

@media (max-width: 575px) {
  #hero .btns a {
    margin: 4px 8px;
  }
}

#hero .btns a:hover {
  color: var(--theme-primary);
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  overflow: hidden;
}

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

@media (max-width: 992px) {
  .padd-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

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

@media (max-width: 992px) {
  .section-title {
    margin-bottom: 40px;
  }
}

.section-title h2 {
  font-family: "Roboto", sans-serif;
  font-size: 45px;
  font-weight: 100;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.section-title .separator {
  margin: 0;
}

.separator {
  color: #626262;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 30px;
  text-transform: capitalize;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: var(--theme-primary-10);
  min-height: 40px;
  margin-top: 82px;
}

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

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs ol li {
  letter-spacing: 0;
  font-size: 14px;
}

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

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

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/* Get Started Section
--------------------------------*/
#get-started {
  display: inline-block;
  height: 100%;
  width: 100%;
}

#get-started .feature-block {
  background: #fff none repeat scroll 0 0;
  padding: 30px 20px;
  transition: all 0.5s ease-in-out 0s;
}

#get-started .feature-block img {
  height: 60px;
  margin-bottom: 30px;
  width: 60px;
}

@media (max-width: 991px) {
  #get-started .feature-block {
    margin-bottom: 30px;
  }
}

#get-started .feature-block:hover {
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease-in-out 0s;
}

#get-started .feature-block h4 {
  margin-bottom: 20px;
}

#get-started .feature-block p {
  margin-bottom: 20px;
}

#get-started .feature-block a {
  color: #505050;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  text-transform: capitalize;
  transition: 0.3s;
}

#get-started .feature-block a:hover {
  color: var(--theme-primary);
}

/* About Us Section
--------------------------------*/
#about-us img {
  max-width: 100%;
}

#about-us .about-content {
  padding-top: 60px;
}

#about-us .about-content h2 {
  color: #252525;
  font-family: "roboto";
  font-size: 39px;
  font-weight: 100;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: capitalize;
}

#about-us .about-content span {
  font-weight: 700;
  padding-right: 10px;
  text-transform: uppercase;
}

#about-us .about-content ul li {
  line-height: 36px;
}

#about-us .about-content ul li .fa {
  padding-right: 20px;
}

/* Features Section
--------------------------------*/
#features {
  display: inline-block;
  height: 100%;
  width: 100%;
}

#features .feature-block {
  background: #fff none repeat scroll 0 0;
  padding: 30px 20px;
  margin-bottom: 30px;
  transition: all 0.5s ease-in-out 0s;
}

#features .feature-block img {
  height: 60px;
  margin-bottom: 30px;
  width: 60px;
}

#features .feature-block:hover {
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease-in-out 0s;
}

#features .feature-block h4 {
  margin-bottom: 20px;
}

#features .feature-block p {
  margin-bottom: 0;
}

/* Testimonials Section
--------------------------------*/
#testimonials .testimonials-content {
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
  padding: 49px 20px;
}

#testimonials .testimonials-content::before {
  color: var(--theme-primary);
  display: inline-block;
  font: 70px/1 FontAwesome;
  position: absolute;
  right: 43px;
  text-align: left;
  top: -29px;
}

#testimonials .top-top>h2 {
  font-family: "Roboto" sans-serif;
  font-size: 45px;
  font-weight: 100;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: capitalize;
}

#testimonials .top-top>h4 {
  font: 700 12px Lato, sans-serif;
}

#testimonials .top-top span {
  font-size: 12px;
  font-weight: 300;
  margin-left: 26px;
}

#testimonials .btm-btm ul li {
  float: left;
  margin: 0 8px;
  border-radius: 50%;
  padding: 0;
  overflow: hidden;
  background: #ddd none repeat scroll 0 0;
  cursor: pointer;
  height: 12px !important;
  width: 12px !important;
  border: 0;
  content: "";
}

#testimonials .btm-btm .active {
  background: var(--theme-primary);
}

.carousel-indicators {
  position: relative;
  bottom: 0;
  left: 0;
  bottom: 0 !important;
  z-index: 15;
  width: auto;
  padding-left: 0;
  margin: 30px auto 0 auto;
  margin-right: auto;
  text-align: center;
  list-style: none;
  margin-bottom: 0;
  display: inline-block;
}

.carousel-indicators li {
  margin: 0;
}

/* Newsletter Section
--------------------------------*/
#newsletter {
  background: rgba(0, 0, 0, 0) url(../images/newsletter-bg.jpg) no-repeat center top fixed;
  background-size: cover;
}

#newsletter .overlay {
  background: linear-gradient(rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.2) 95%);
  height: 100%;
  width: 100%;
}

#newsletter .form-control {
  background-color: transparent;
  border: 1px solid #dddddd;
  border-radius: 0;
  color: #888;
  font-size: 11px;
  font-weight: 600;
  height: 50px;
  text-align: center;
  width: 70%;
  background: #fff;
}

@media (max-width: 575px) {
  #newsletter .form-control {
    margin-bottom: 30px;
    width: 100%;
  }
}

#newsletter .form-control:focus {
  border-color: var(--theme-primary);
  box-shadow: none;
  outline: 0 none;
}

#newsletter .btn {
  background: var(--theme-primary);
  border: 0;
  border-radius: 0;
  height: 50px;
  width: 30%;
  transition: 0.3s;
}

@media (max-width: 575px) {
  #newsletter .btn {
    width: 100%;
  }
}

#newsletter .btn:hover {
  background: var(--theme-green);
}

#newsletter .btn .fa {
  padding-right: 10px;
}

#newsletter ul {
  display: inline-block;
  margin-top: 40px;
  margin-bottom: 0;
}

#newsletter ul li {
  background: var(--theme-primary);
  border-radius: 50px;
  float: left;
  height: 35px;
  line-height: 35px;
  margin-left: 10px;
  margin-right: 10px;
  width: 35px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

#newsletter ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
}

#newsletter ul li:hover {
  background: var(--theme-green);
}

#newsletter ul li i {
  color: #fff;
  line-height: 0;
}

/* Contact Section
--------------------------------*/
#contact {
  background: #fff;
}

#contact .info {
  color: #222;
}

#contact .info i {
  font-size: 32px;
  color: var(--theme-primary);
  float: left;
  line-height: 0;
}

#contact .info p {
  padding: 7px 0 10px 50px;
  margin-bottom: 20px;
  line-height: 22px;
  font-size: 14px;
}

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

#contact .social-links {
  padding: 20px 0;
}

#contact .social-links a {
  font-size: 18px;
  display: inline-block;
  background: var(--theme-primary);
  color: #fff;
  line-height: 1;
  padding: 8px 0 8px 3px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

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

#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: var(--theme-green);
  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 var(--theme-green);
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

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

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

#contact .php-email-form input {
  padding: 10px 15px;
}

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

#contact .php-email-form button[type=submit] {
  background: var(--theme-primary);
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
}

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

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

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

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

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background: #F2F6F7;
  padding-top: 50px;
}

.footer .footer-logo .navbar-brand {
  color: #000;
  display: inline-block;
  float: none;
  font-family: "Philosopher", sans-serif;
  font-size: 24px;
  font-weight: 500;
  height: 100%;
  letter-spacing: 0.2em;
  padding-left: 0;
  padding-top: 0;
  margin-bottom: 10px;
}

.footer .footer-logo p {
  color: #000;
  font-size: 12px;
  letter-spacing: 1px;
}

.footer .list-menu>h4 {
  color: #000000;
  padding-bottom: 20px;
}

.footer .list-menu ul li a {
  color: #000;
  font-size: 12px;
  padding-left: 5px;
  text-decoration: none;
  letter-spacing: 0;
}

.footer .copyrights {
  background: #000;
  margin-top: 50px;
  text-align: center;
  padding: 25px;
}

.footer .copyrights p,
.footer .copyrights .credits {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
  font-size: 14px;
  letter-spacing: 0;
}

.footer .copyrights p a,
.footer .copyrights .credits a {
  letter-spacing: 0;
  color: var(--theme-primary);
}


/* Register CSS */
.register{
  background-color: #f4f4f7;
  min-height: 100vh;
  padding: 0 15px;
}
.register .logo{ width: 100%; padding: 30px 0; text-align: center;}
.register .logo img{ width: 100px;}
.multi_step_form #msform fieldset .form-group, .login .form-group{
  text-align: left;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 15px;
}
.multi_step_form #msform fieldset .form-group label, .login fieldset .form-group label{
  color:#7F7F7F;
  font-weight: 300;
  display: block;
  margin-bottom: 3px;
}
.multi_step_form #msform fieldset .form-group .form-control, .login .form-control{
  width: 100%;
  border-radius: 0;
  border-color: rgba(127,127,127,0.3);
}

.cheque-upload{
  width: 100%;
  border: 1px solid rgba(127,127,127,0.3);
  position: relative;
  padding: 50px 0;
}
.cheque-upload input{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 11;
  cursor: pointer;
}
.cheque-upload p{
  text-align: center;
  margin: 0;
}
.cheque-upload p:before{
  content: '';
  background: url('../images/icon-img-upload.svg') no-repeat 0 0 / cover;
  width: 36px;
  height: 27px;
  display: block;
  margin: auto;
  margin-bottom: 10px
}

.checkbox{
  position: relative;
  margin-top: 5px;
}
.checkbox input{
  position: absolute;
  left: 0;
  opacity: 0;
  z-index: 11;
  width: 100%;
  height: 100%;
  top: 0;
  cursor: pointer;
}
.checkbox label{
  padding-left: 30px;
  position: relative;
  cursor: pointer;
  color: #333 !important;
}
.checkbox label:before{
  content: '';
  width: 20px;
  height: 20px;
  border: 1px solid #b2b2b2;
  border-radius: 2px;
  position: absolute;
  left: 0;
}
.checkbox label:after{
  content: '';
  background: url('../images/icon-check.svg') no-repeat 0 0 / cover;
  width: 16px;
  height: 12px;
  position: absolute;
  top: 4px;
  left: 2px;
  display: none
}
.checkbox input:checked ~ label:before{
  background-color: var(--theme-primary);
  border-color: transparent;
}
.checkbox input:checked ~ label:after{
  display: block;
}

.multi_step_form {
  text-align: center;
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  z-index: 1;
  overflow: unset;
  padding-bottom: 30px;
}

.multi_step_form #msform {
  background: #ffffff;
  border-radius: 5px;
  box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.08);
  width: 100%;
  padding: 20px 30px 30px;
  min-height: 360px;
  position: relative;
  overflow: hidden;
  transition: 500ms all;
}

.multi_step_form #msform fieldset {
  border: 0;
  padding: 20px 10px 0;
  position: relative;
  margin: auto;
  overflow: hidden;
  left: 0;
  right: 0;
}

.login fieldset{
  border: 0;
  padding: 30px;
  position: relative;
  margin: auto;
  overflow: hidden;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 450px;
  background: #ffffff;
  border-radius: 5px;
  box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.08);
}

.login-btns{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}
.login-btns button{ margin-top: 0;}


.multi_step_form #msform fieldset:not(:first-of-type) {
  display: none;
}

.multi_step_form #msform #progressbar {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.multi_step_form #msform #progressbar:after {
  content: '';
  background-color: #DBDBE5;
  height: 5px;
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.multi_step_form #msform #progressbar li {
  list-style-type: none;
  position: relative;
}
.multi_step_form #msform #progressbar li span {
  width: 60px;
  height: 60px;
  line-height: 40px;
  display: block;
  background: var(--theme-green);
  border-radius: 50%;
  border: 10px solid #fff;
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  position: relative;
  z-index: 1;
  transition: 300ms all;
}

.multi_step_form #msform #progressbar li:last-child:after {
  width: 150%;
}

.multi_step_form #msform #progressbar li.active span {
  background-color: #5cb85c;
  color: #fff;
}

.multi_step_form #msform #progressbar li.active:before,
.multi_step_form #msform #progressbar li.active:after {
  background: #5cb85c;
  color: white;
}

.action-button {
  background: #5cb85c;
  color: white;
  border: 0 none;
  border-radius: 50px;
  cursor: pointer;
  min-width: 130px;
  font: 600 14px/36px "Poppins", sans-serif;
  border: 1px solid #5cb85c;
  margin: 10px 5px 0;
  text-transform: uppercase;
  display: inline-block;
}
.action-button:hover, .action-button:focus {background: #405867;border-color: #405867;}
.previous_button {background: transparent;color: #99a2a8;border-color: #99a2a8;}
.previous_button:hover, .previous_button:focus {background: #405867;border-color: #405867;color: #fff;}

/* --------------------shop-------------------- */
.font-weight-semi-bold {
  font-weight: 600;
  font-size: 1.25rem;
  color: #000;
}

.custom-control {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem;
}

.custom-control-input {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.25rem;
  opacity: 0;
}

.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: var(--theme-primary);
  background-color: var(--theme-primary);
}

.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: none;
}

.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #f8f0ef;
}

.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #fff;
  background-color: white;
  border-color: white;
}

.custom-control-input[disabled] ~ .custom-control-label, .custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}

.custom-control-input[disabled] ~ .custom-control-label::before, .custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef;
}

.custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
}

.custom-control-label::before {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: #fff;
  border: #adb5bd solid 1px;
}

.custom-control-label::after {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: no-repeat 50% / 50% 50%;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  border-color: var(--theme-primary);
  background-color: var(--theme-primary);
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
}

.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(209, 156, 151, 0.5);
}

.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(209, 156, 151, 0.5);
}

.custom-radio .custom-control-label::before {
  border-radius: 50%;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(209, 156, 151, 0.5);
}

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 70%;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.badge-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}
.badge-success{color:#fff;background-color:var(--theme-primary)}
.badge-info{color:#fff;background-color:#17a2b8}
.badge-warning{color:#1f2d3d;background-color:#ffc107}
.badge-danger{color:#fff;background-color:#dc3545}
.badge-primary{color:#fff;background-color:#007bff}
.badge-secondary{color:#fff;background-color:#6c757d}
.badge-light{color:#1f2d3d;background-color:#f8f9fa}
.badge-dark{color:#fff;background-color:#405867}

.dropdown-toggle.btn{
  display: inline-block;
    font-weight: 400;
    color: #6F6F6F;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.card{ border-radius: 0;}
.card-header:first-child{ border-radius: 0;}
.border {
  border: 1px solid #EDF1FF !important;
}
.border-left {
  border-left: 1px solid #EDF1FF !important;
}
.border-right {
  border-right: 1px solid #EDF1FF !important;
}
.ml-2, .mx-2 {
  margin-left: 0.5rem !important;
}
.cat-item .cat-img img, .product-item .product-img img {
  transition: .5s;
}
.cat-item:hover .cat-img img, .product-item:hover .product-img img {
  transform: scale(1.2);
}
.product-item .card-body{
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  flex-direction: column;
  gap:5px;
}
.input-group-text{ border-radius: 0;}
.bi-chevron-left, .bi-chevron-right{ font-size: 30px;}

.text-dark {
  color: #1C1C1C !important;
}
.bg-secondary {
  background-color: #EDF1FF !important;
}
.table>:not(:first-child){
  border-top: 0;
}

.ml-auto, .mx-auto {
  margin-left: auto !important;
}

.btn-plus, .btn-minus{
  border-radius: 0;
}
.btn-plus i, .btn-minus i{
  line-height: 21px;
}
.coupan .form-control {
  display: block;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #EDF1FF;
  border-radius: 0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.input-group-prepend, .input-group-append {
  display: flex;
}
.coupan .btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
h5.font-weight-bold {
  font-weight: 700 !important;
  font-size: 1.25rem;
}
.btn-block {
  display: block;
  width: 100%;
}
.table .btn{
  /* border-radius: 0; */
}

.card-header {
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.card-header h4{
  text-transform: capitalize;
  font-size: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}
label {
  display: inline-block;
  margin-bottom: 0.5rem;
}
.form-group .form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #EDF1FF;
  border-radius: 0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-group .form-control:disabled {background-color:rgb(232, 240, 254)}
.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  border: 1px solid #EDF1FF;
  border-radius: 0;
  appearance: none;
}

.border-secondary{border-color:#edf1ff!important}
.total-item{display:flex;align-items:center;justify-content:space-between}
.total-item p{margin:0;line-height:1.5}
.total-item strong{font-weight:500;display:block}
.total-item span{color:var(--theme-primary);font-weight:500}
.item-list{padding:0 20px}
.bottom,.top{display:flex;flex-direction:column;align-items:end}

.cart-product{display:flex;justify-content:space-between;padding-top:15px}
.cart-product+.cart-product{padding-top:30px;border-top:1px solid #cdcdcd;margin-top:20px}
.cart-product .left{display:flex}
.cart-product .left .product-img{min-width:150px;width:150px}
.cart-product .left .product-img img{width:100%}
.cart-product .left .product-info{padding-left:15px}
.cart-product .left .product-info .sold{font-size:14px}
.cart-product .left .product-info ul{margin:0;padding:0;list-style-type:none}
.cart-product .left .product-info ul li{display:flex;align-items:center;letter-spacing:0;line-height:1.7;font-size:14px}
.cart-product .left .product-info ul li label,.cart-product .left .product-info ul li p{margin:0}
.cart-product .left .product-info ul li p{color:#333;font-weight:500;line-height:1.7}
.cart-product .right{min-width:150px;display:flex;justify-content:space-between;flex-direction:column}

.total{display:flex;align-items:center;margin:5px 0}
.total label{margin:0}
.total p{margin:0;margin-left:5px;font-size:16px;font-weight:500}
.ordered.cart-product .left .product-img{width:100px}
.ordered.cart-product .right .total{margin:0}
.ordered.cart-product .right .total p{line-height:1.5}
.item-list.single-ordered{padding:0}
.item-list.single-ordered .ordered{padding:0}
.delivery-date{font-weight:600;font-size:14px;color:var(--theme-primary);white-space:nowrap}
.delivery-date span{font-weight:400;color:var(--theme-secondary);margin-right:3px}

/* Slider */
/* Remove for prod */
.rtl-slider-flex {
  padding: 0;
  background: #fff;
}
/* Necessary styles */
.rtl-slider-flex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  position: relative;
}
.rtl-slider-flex .rtl-slider {
  width: 100%;
}
.rtl-slider-flex .rtl-slider-nav {
  width: 100%;
  padding: 0 30px;
}
.rtl-slider-flex .rtl-slider-nav .rtl-slider-slide {
  padding-top: 90%;
  opacity: 0.75;
  transition: all 0.3s ease;
  cursor: pointer;
}
.rtl-slider-flex .rtl-slider-nav .slick-slide + .slick-slide{
  margin-left: 10px;
}
.rtl-slider-flex .rtl-slider-nav .slick-slide.slick-current.slick-active .rtl-slider-slide {
  opacity: 1;
}
.rtl-slider-flex .rtl-slider-slide {
  /* background: #0b69b7 url("") no-repeat center/cover; */
  /* padding-top: 56.25%; */
  aspect-ratio: 1/1;
}
.rtl-slider-flex .thumb-prev,
.rtl-slider-flex .thumb-next {
  position: absolute;
  bottom: 0;
  right: 10px;
  height: 152px;
  width: 30px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;

}
.rtl-slider-flex .thumb-prev .fa,
.rtl-slider-flex .thumb-next .fa{
  font-size: 21px;
}
.rtl-slider-flex .thumb-prev {
  left: 0px;
}
.user-thumb{
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #eee;
}
.user-thumb img{
  width:100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .user-thumb {
    width: 35px;
    height: 35px;
  }
}

.navbar li.cart a{
  display: block;
  color: var(--theme-green);
}
.navbar li.cart a i{ font-size: 15px;}
.navbar li .dropdown{
  margin-left: 30px;
}
.navbar li .dropdown .dropdown-toggle{
  padding: 0;
}
.navbar li .dropdown .dropdown-toggle::after{
  display: none;
}

.product-title{
  font-size: 38px;
  margin-bottom: 10px;
  font-weight: 700;
}

.price{
  display: flex;
  align-items: center;
  gap: 15px;
}
.price h3{
  font-size: 33px;
}
.price span{
  color: #999;
  font-size: 23px;
  font-weight: 400;
  text-decoration: line-through;
}
.indi-text{
  color: var(--theme-primary);
  margin: 0;
  font-weight: 400;
}
.expected-time p{
  font-size: 18px;
  margin-top: -15px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--theme-primary);
  line-height: 1.3;
}
.ml-3{
  margin-left: 25px;
}
.prod-info ul{
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 20px;
}
.prod-info ul li span{
  display: block;
  color: #b2b2b2;
  line-height: 16px;

  letter-spacing: 0;
}
.prod-info ul li p{
  margin-bottom: 0;
  font-weight: 500;
  letter-spacing: 0;
}

.profile-nav{
  border: 1px solid #eee;
}
.profile-nav button,.profile-nav a{
  border-radius: 0 !important;
  font-weight: 500;
  text-align: left;
  font-size: 14px;
  color: var(--theme-secondary);
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link{
  background-color: #eee;
  color: var(--theme-primary);
}

.name-info{
  padding: 20px;
  border-radius: 5px;
  background: rgb(86,181,71);
  background: linear-gradient(270deg, rgba(86,181,71,1) 0%, rgba(4,77,103,1) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.name-info .profile-thumb{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #eee;
  line-height: 60px;
  text-align: center;
  font-size: 26px;
  font-weight: 500;
}

.name-info .user-details{
  margin-top: 15px;
  text-align: center;
}

.name-info .user-details h4{
  color: #fff;
  letter-spacing: 1px;
  font-size: 18px;
  line-height: 18px;
  margin-bottom: 5px;
}

.name-info .user-details p{
  color: #eee;
  margin: 0;
  line-height: 14px;
}

.tracking .accordion-item{ border: none; border-top: 1px solid #cdcdcd; border-radius: 0; margin-top: 15px;}
.tracking .accordion-item .accordion-body{
  padding-left: 0;
  padding-right: 0;
}
.track-line{
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.track-line li{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 25%;
  position: relative;
}
.track-line li .status{
  color: #646464;
  font-weight: 500;
  white-space: nowrap;
}
.date{ white-space: nowrap;}
.track-line li.active .status{
  color: #26a541;
}

.time-line{ position: relative; display: flex; justify-content: center; width: 100%;}
.time-line .dot{
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #646464;
  position: relative;
  z-index: 11;
}

.time-line .line{
  width: 100%;
  height: 4px;
  background-color: #646464;
  position: absolute;
  left: -50%;
  top: 5px;
}

.track-line li.active .time-line .dot, .track-line li.active .time-line .line{
  background-color: var(--theme-green);
}

.track-line li:last-child{
  padding-right: 0;
}

.accordion-button:not(.collapsed){
  background-color: transparent;
  box-shadow: none;
}

.count-sec{
  background-color: #f2f2f2;
}
.count-inner{display: flex; flex-direction: column; justify-content: center; text-align: center;}
.count-inner img{ max-width: 120px; display: block; margin: auto;}
.count-inner h4{ padding-top: 15px; font-size: 30px;}
.count-inner p{ text-transform: capitalize; font-weight: 400;}

.navbar li.cart a{
  position: relative;
}

.navbar li.cart a span{
    background: var(--theme-primary);
    width: 16px;
    height: 16px;
    display: block;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    position: absolute;
    top: -2px;
    right: -9px;
  }
  img{ max-width: 100%; }

  ul.video-list{
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    padding: 60px 0;
    margin: -30px -15px
  }

  ul.video-list li{
    list-style-type: none;
    width: 33.33%;
    padding: 30px 15px;
  }

  ul.video-list li h4{
    font-family: roboto,sans-serif;
    font-size: 20px;
    font-weight: 500;
    text-transform: capitalize;
    padding-top: 20px;
    color: var(--theme-primary);
  }


.embed__container {position: relative; padding-bottom: 56%; width: 100%; text-align: left; background-color: #000000; }
.embed__container iframe {width: 100%; position: absolute; height: 100%; overflow: hidden; }
#player {width: 100%; }
.video-thumb:not(.active):hover:before {background: rgba(247, 148, 30, 0.30); }
.video-thumb:after {content: "\f144"; font-family: "Font Awesome 5 Free"; top: 50%; left: 50%; margin: -0.458em 0 0 -0.500em; color: rgba(255, 255, 255, 0); font-size: 2em; line-height: 1; position: absolute; font-weight: 900; transition: all 250ms ease-out; }
.video-thumb.active:after {color: rgba(255, 255, 255, 1); }
.owl-carousel .owl-item img {position: relative; }
#player .ytp-expand-pause-overlay .ytp-pause-overlay {display: none !important; }
#playerWrap {display: inline-block; position: relative; }
#playerWrap.shown::after {content: ""; position: absolute; top: 0; left: 0; bottom: 0; right: 0; cursor: pointer; background-color: black; background-repeat: no-repeat; background-position: center; background-size: 64px 64px; background-image: url(data:image/svg+xml;utf8;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMjgiIGhlaWdodD0iMTI4IiB2aWV3Qm94PSIwIDAgNTEwIDUxMCI+PHBhdGggZD0iTTI1NSAxMDJWMEwxMjcuNSAxMjcuNSAyNTUgMjU1VjE1M2M4NC4xNSAwIDE1MyA2OC44NSAxNTMgMTUzcy02OC44NSAxNTMtMTUzIDE1My0xNTMtNjguODUtMTUzLTE1M0g1MWMwIDExMi4yIDkxLjggMjA0IDIwNCAyMDRzMjA0LTkxLjggMjA0LTIwNC05MS44LTIwNC0yMDQtMjA0eiIgZmlsbD0iI0ZGRiIvPjwvc3ZnPg==);
}

.popover-body{ text-align: center; }
.popover-body h4{ padding-bottom: 10px; }
.popover-body .quantity{ width: 130px; margin: auto; }
.min-max{ display: flex; justify-content: space-between; padding: 5px 0 10px;}

.app{ background: #333; padding: 90px 0; }
.app .section-title h2{ color: #fff; }
.download-row{ justify-content: center;}
.btn-download{
  font-size: 21px;
  font-weight: 400;
  line-height: 1;
  border: 1px solid var(--theme-primary);
  padding: 30px 20px;
  border-radius: 8px;
}
.btn-download a i{
  margin: -5px 20px;
  vertical-align: middle;
  font-size: 64px;
  float: left;
}
.btn-download a strong{
    line-height: 1;
    margin-top: 5px;
    text-transform: uppercase;
    font-size: 31px;
    display: block;
    font-weight: 700;
}

.seller{
  font-size: 14px;
  font-weight: 400;
}

.company{
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.company i, .seller i{
  color: #858585;
  font-style: normal;
}

.actual-price{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  width: 100%;
}

.actual-price h3 {
    font-size: 18px;
    color: var(--theme-primary);
}

.actual-price h3 span {
    font-size: 14px;
    margin-left: 6px;
    color: #555;
    text-decoration: line-through;
    display: inline-block;
}

.pr-qty{
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
}

.pr-qty span {
    font-size: 12px;
    font-weight: 500;
    color: #666;
    margin: 0;
    border-right: 1px solid #333;
    padding-right: 10px;
    margin-right: 10px;
}

.pr-qty p {
    margin: 0;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0;
    color: #666;
    line-height: 12px;
}





/* -------------------------Responsive-------------------------- */
@media (max-width: 1200px){
  .download-row .col-md-4{
    width: 50%;
  }
}
@media (max-width: 1024px){
  .product-title{ font-size: 27px;}
  .price{ font-size: 26px;}
  .tablet-12{ width: 100%;}
  ul.video-list{ padding: 30px 0; margin: -15px;}
  ul.video-list li{ padding: 15px; }
  ul.video-list li h4{ font-size: 16px; padding-top: 15px; }
  .app{ padding: 60px 0; }
  .app .section-title{ margin-bottom: 40px;}
  .btn-download{padding: 15px;}
  .btn-download a i{margin: -5px 10px; font-size: 50px;}
  .btn-download a strong{ font-size: 24px; }
  .expected-time p{ font-size: 16px; }
  .price h3{ font-size: 26px; }
  .price span{ font-size: 18px; }
  .prod-info ul{ grid-template-columns: auto auto; }
  .navbar-mobile ul li .dropdown{ margin-left: 0; }
  div.bannerImg{ height: 41vw; }
  #hero{ margin-top: 60px; }
}
@media (max-width: 992px){
  .breadcrumbs h2 {margin: 0;}
}
@media (max-width: 768px){
  .breadcrumbs .d-flex {
    display: flex !important;
  }
}
@media (max-width: 767px){
  .cart-product{ flex-direction: column;}
  .item-list{ padding: 0;}
  .cart-product .left .product-info{ width: 100%;}
  .cart-product .right{ align-items: flex-start; padding-left: 165px;}
  .top{ padding-bottom: 20px;}
  .top, .bottom{ align-items: flex-start;}
  .delivery-date{ padding-left: 165px; padding-top: 20px; padding-bottom: 5px;}
  .total-item .delivery-date{ padding: 0;}
  .profile-tab-out{ padding-top: 30px;}
  .profile-nav.me-3{ margin-right: 0 !important;}
  ul.video-list li{ width: 50%; }
 .btn-download.apple{ margin-top: 30px; }
 .section-title h2{ font-size: 34px; }
 .product-title{ margin-top: 15px; }
 #testimonials .top-top>h2, h2{ font-size: 24px; }
 .footer .list-menu>h4{ padding-bottom: 10px; }
}

@media (max-width: 575px){
  .rtl-slider-flex .thumb-prev, .rtl-slider-flex .thumb-next{ height: 27vw;}
  .price h3{ font-size: 21px; }
  .product-item{ max-width: 320px; margin: auto; }
  #hero{ margin-top: 40px; }
}

@media (min-width: 576px){
  .modal-dialog { max-width: 734px; padding: 0 15px;}
}

@media (max-width: 479px){
  .cart-product .left{
    flex-direction: column;
  }
  .cart-product .left .product-info{ padding-left: 0;}
  .cart-product .right{ padding-left: 0;}
  .delivery-date{ padding-left: 0;}
  .tracking .accordion-item .accordion-body{width: 100%; overflow: auto; }
  .track-line{width: 450px; }
  .total-item{ flex-direction: column; gap: 15px; align-items: flex-start;}
  .prod-info ul{ grid-template-columns: auto auto;}
  .product-title{ font-size: 21px;}
  .price{ font-size: 18px;}
  .action-button{ min-width: 100px;}
  .multi_step_form #msform{padding:10px 15px 15px;}
  ul.video-list{ flex-direction: column; justify-content: center; margin: -30px -15px; }
  ul.video-list li{ margin: auto; width: 300px; padding: 30px 15px; }
}
.error-message{margin-top: 0.25rem;font-size: .875em;color: #dc3545;}
.dropdown-item.active, .dropdown-item:active{color:#FFFFFF}
/* body{overflow-y:hidden} */
.overlay{left:0;top:0;width:100%;height:100%;position:fixed;background:#222222ad;display:none;z-index:400;}
.overlay__inner{left:0;top:0;width:100%;height:100%;position:absolute}
.overlay__content{left:50%;position:absolute;top:50%;transform:translate(-50%,-50%)}
.loader{border:10px solid #f3f3f3;border-top:10px solid #34db55;border-radius:50%;width:100px;height:100px;animation:spin 2s linear infinite}
@keyframes spin{
    0%{transform:rotate(0)}
    100%{transform:rotate(360deg)}
}
.btn-wishlist{color:#ff002d;cursor:pointer}
.btn-wishlist-disable{color:#ff002d;cursor:pointer}
.wishlist{cursor:pointer}
.wishlist.is-active{transition-duration:1s;background-position:-2800px 0}
.plp-card-actions{position:absolute;top:0;right:0;transform:translate(0,0);-ms-transform:translate(0,0)}
.plp-card-dod{position:absolute;top:10px;left:0;background:var(--theme-primary);color:#fff;border-radius:0 5px 5px 0;padding:0 7px;font-size:10px;font-family:'Open Sans',sans-serif;font-weight:700}
.plp-card-bigdeal{position:absolute;top:30px;left:0;background:#ff4900;color:#fff;border-radius:0 5px 5px 0;padding:0 7px;font-size:10px;font-family:'Open Sans',sans-serif;font-weight:700}
.cart-oos{background:#ff0000;color:#fff;border-radius:5px;padding:2px 9px;font-size:12px;font-family:'Open Sans',sans-serif;font-weight:700}
.typeahead.dropdown-menu li a{display:block;padding:2px 12px;color:var(--theme-green);}
.typeahead.dropdown-menu li a:hover{background-color:#efefef;color:var(--theme-green);width:100%;}
.typeahead.dropdown-menu li.active{background-color:#efefef;color:var(--theme-green);width:100%;}
.dropdown-menu a.dropdown-item{padding:5px 10px;}

.order .seller-name{color:var(--theme-secondary)}
.order .total-item{display:block}
.order .total-item p{font-size:16px}
.order .order-desc{font-size:14px}
.order .desc-item span{display:block}
.order .cart-product{padding-top:0}
.order .cart-product .left .product-img{min-width:100px;width:100px}
.order .cart-product .left .product-info{padding-left:0px}
.order .cart-product+.cart-product{padding-top:10px;border-top:0;margin-top:10px}
.order.order-detail .cart-product+.cart-product{border-top:1px solid #cdcdcd;}
.product-img img{aspect-ratio: 1 / 1; object-fit: contain;}
.copyright-footer{border-top:1px solid #dee2e6;color:#869099;padding:0.8rem;}
.bi::before, [class^="bi-"]::before, [class*=" bi-"]::before{
      margin: 1px -1px 0px -3px;
}
