<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;300;400;500;600;700;800;900&amp;display=swap');

* {
  box-sizing: border-box;
}

body {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  margin: 0;
  padding: 0;
  line-height: 28px;
  font-weight: 500;
}

:root {
  --primaryColor: #fa8925;
  --secondaryColor: #151875;
  --color1: #405ea2;
  --color2: #0d0e43;
  --color3: #151875;
  --trans: 0.5s ease;
}

.primary-color {
  color: #fa8925 !important;
}

.secondary-color {
  color: #151875 !important;
}

.color2 {
  color: #0d0e43 !important;
}

.text-grey {
  color: #8c8c8c !important;
}

.text-grey-dark {
  color: #434343 !important;
}

a {
  text-decoration: none;
  display: inline-block;
  color: #000 !important;
}

ul {
  list-style: none;
  padding: 0 !important;
  margin: 0 !important;
}

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

h2 {
  font-size: 34px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

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

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

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

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

input:focus {
  box-shadow: none !important;
}
.black-color {
	color:#000000 !important;
}
button {
  background-color: transparent;
  border: none;
}
body.loaded {
  overflow-y: auto;
}

.p-relative {
  position: relative !important;
}

.overlay-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100000000;
}
.overlay-loader .overlayDoor:before,
.overlay-loader .overlayDoor:after {
  content: '';
  position: absolute;
  width: 50%;
  height: 100%;
  background: #fff;
  transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1);
  transition-delay: 0.8s;
}
.overlay-loader .overlayDoor:before {
  left: 0;
}
.overlay-loader .overlayDoor:after {
  right: 0;
}
.overlay-loader.loaded .overlayDoor:before {
  left: -50%;
}
.overlay-loader.loaded .overlayDoor:after {
  right: -50%;
}
.overlay-loader.loaded .overlayContent {
  opacity: 0;
  margin-top: -15px;
}
.overlay-loader .overlayContent {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1);
}
.overlay-loader .overlayContent .skip {
  display: block;
  width: 130px;
  text-align: center;
  margin: 50px auto 0;
  cursor: pointer;
  color: #fff;
  font-family: 'Nunito';
  font-weight: 700;
  padding: 12px 0;
  border: 2px solid #151875;
  border-radius: 3px;
  transition: 0.2s ease;
}
.overlay-loader .overlayContent .skip:hover {
  background: #ddd;
  color: #444;
  border-color: #ddd;
}

.loader {
  width: 128px;
  height: 128px;
  border: 3px solid #151875;
  border-bottom: 3px solid transparent;
  border-radius: 50%;
  position: relative;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader .inner {
  width: 64px;
  height: 64px;
  border: 3px solid transparent;
  border-top: 3px solid #151875;
  border-radius: 50%;
  -webkit-animation: spinInner 1s linear infinite;
  animation: spinInner 1s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spinInner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-720deg);
  }
}
@keyframes spinInner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-720deg);
  }
}

.section-top {
  padding-top: 74px !important;
}

.section-bottom {
  padding-bottom: 74px !important;
}

.section-heading {
  color: var(--color3);
  text-align: center;
  position: relative;
  width: 100%;
  margin-bottom: 40px;
}

.section-heading::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 5px;
  width: 100%;
  background: #e5e5e5;
  border-radius: 5px;
}

.section-heading .heading-inner {
  background-color: #fff;
  z-index: 10 !important;
  display: inline-block;
  padding: 0 40px;
  position: relative;
  padding: 0 28px;
}

.section-heading h2 {
  text-transform: uppercase;
  font-weight: 700;
  /* font-size: 34px; */
  margin-bottom: 0;
  line-height: 40px;
}

.section-heading span {
  margin-bottom: 0;
  font-size: 25px;
}

.primary-btn {
  display: inline-block;
  border: 2px solid #fff;
  color: #fff !important;
  border-radius: 50px;
  padding: 4px 0;
  text-transform: uppercase;
  min-width: 200px;
  font-weight: 600;
  transition: var(--trans);
}

.primary-btn:hover {
  background: #5b9cb1;
}

.secondary-btn {
  display: inline-block;
  border: 2px solid #0067dd;
  color: #0067dd !important;
  border-radius: 50px;
  padding: 4px 40px;
  font-weight: 600;
  text-transform: uppercase;
  transition: var(--trans);
}

.secondary-btn:hover {
  background-color: #0067dd;
  color: #fff !important;
}

.carousel-section {
  position: relative;
}

.customNavigation {
  position: absolute;
  top: 42%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 2;
  height: 0;
}

.customNavigation a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  width: 56px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #e9e9ed;
}

.customNavigation a svg {
  height: 20px;
  width: auto;
  stroke: #a4a4a4;
  transition: var(--trans);
}

.customNavigation a:hover svg {
  stroke: var(--color3);
}

.customNavigation .prev_owl {
  margin-left: -28px;
}

.customNavigation .next_owl {
  margin-right: -28px;
}

.owl-nav,
.owl-dots {
  display: none !important;
}

section {
  position: relative;
}

/* ------------------NAVBAR Starts------------------- */

nav {
  background-color: #fefefe;
  /* box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1); */
  z-index: 999;
  position: relative;
  transition: var(--trans);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.15) !important;
  top: 0;
  left: 0;
  right: 0;
  position: sticky;
}

nav.stick_header {
  z-index: 10000;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.main-nav .logo span,
.mobile-top-logo span {
  color: var(--color2) !important;
  font-weight: 700;
  font-size: 13px;
}

.main-nav .left-nav,
.main-nav .right-nav {
  display: flex;
  align-items: center;
}

.main-nav ul.nav-menu {
  display: flex;
  align-items: center;
  margin-left: 32px !important;
}

.main-nav ul.nav-menu li a.dropdown {
  padding-right: 22px !important;
}

.main-nav ul.nav-menu li a:not(.dropdown-headings-lg, .dropdown-headings-sm) {
  font-weight: 400;
  position: relative;
  padding: 20px 8px;
  color: var(--color2) !important;
  transition: var(--trans);
  font-size: 16px;
}

.main-nav ul.nav-menu li:hover a,
.main-nav ul.nav-menu li:hover a:not(.mega-headings-link) {
  color: var(--primaryColor) !important;
}

.main-nav ul.nav-menu li a.dropdown::before,
.main-nav ul.nav-menu li a.dropdown::after {
  content: '';
  position: absolute;
  top: 32px;
  height: 5px;
  width: 1px;
  background-color: var(--color2);
  transition: var(--trans);
}

.main-nav ul.nav-menu li a.dropdown::before {
  transform: rotate(45deg);
  right: 12px;
}

.main-nav ul.nav-menu li a.dropdown::after {
  transform: rotate(-45deg);
  right: 15px;
}

.main-nav ul.nav-menu li:hover a.dropdown::before {
  transform: rotate(135deg);
}

.main-nav ul.nav-menu li:hover a.dropdown::after {
  transform: rotate(-135deg);
}

.main-nav ul.nav-menu li:hover a.dropdown:before,
.main-nav ul.nav-menu li:hover a.dropdown::after {
  background-color: var(--primaryColor);
}

.main-nav ul.nav-menu li .subnav__menu li a {
  color: var(--color2) !important;
}

.main-nav ul.nav-menu li:hover .subnav__menu li a {
  color: var(--color2) !important;
}

.main-nav ul.nav-menu li .subnav__menu li:hover a {
  color: var(--primaryColor) !important;
}

.main-nav ul.nav-menu li:hover .subnav__menu .dropdown-headings-lg {
  color: var(--color1) !important;
}

.main-nav ul.nav-menu li:hover .subnav__menu .dropdown-headings-lg:hover {
  color: var(--primaryColor) !important;
}

.main-nav ul.nav-menu li:hover .subnav__menu .dropdown-headings-sm {
  color: #282c3f !important;
}

.main-nav ul.nav-menu li:hover .subnav__menu .dropdown-headings-sm:hover {
  color: var(--primaryColor) !important;
}

.main-nav ul.nav-menu li:hover .subnav-blocks ul li a {
  color: var(--color2) !important;
}

.main-nav ul.nav-menu li:hover .subnav-blocks ul li:hover a {
  color: var(--primaryColor) !important;
}

/* .main-nav ul.nav-menu li a.dropdown:hover:before,
.main-nav ul.nav-menu li a.dropdown:hover::after {
  opacity: 0;
} */

.main-nav .search-block .input-group {
  background-color: #e5e5e5;
  border-radius: 50px;
  overflow: hidden;
  width: 180px;
}

.main-nav .search-block .input-group input {
  background-color: transparent;
  border: none;
  padding: 5px 0;
  padding-left: 10px;
  color: var(--color3) !important;
  font-size: 14px;
  font-weight: 500;
}

.main-nav .search-block .input-group input::placeholder {
  color: #151875 !important;
  font-size: 14px;
  font-weight: 500;
}

.main-nav .search-block .input-group span {
  background-color: transparent;
  color: var(--color3);
  border: none !important;
  padding-left: 16px;
  padding-right: 0;
  margin: 0 !important;
}

.main-nav .search-block .input-group span svg {
  height: 14px;
  width: 15px;
}

.main-nav .right-nav .login__user {
  padding: 0 36px;
  font-size: 16px;
}

.main-nav .right-nav a {
  display: block;
  color: var(--color3) !important;
  font-weight: 500;
  transition: var(--trans);
}

.main-nav .right-nav a:hover {
  color: var(--primaryColor) !important;
}

.main-nav .right-nav svg {
  min-height: 25px;
  max-height: 25px;
  max-width: 25px;
  stroke: var(--color3) !important;
  display: inline-block;
  transition: var(--trans);
}

.main-nav .right-nav a:hover svg {
  stroke: var(--primaryColor) !important;
}

.subnav__menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) !important;
  margin: 0 auto;
  width: 1200px;
  opacity: 0;
  z-index: -2;
  min-height: 0;
  max-height: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: top, opacity 0.4s ease;
  overflow-y: auto;
  background-color: #fff;
}

.main-nav ul.nav-menu li:hover .subnav__menu {
  opacity: 1;
  z-index: 500;
  min-height: 100px;
  max-height: 100vh;
  transform: scaleY(1) translateX(-50%) !important;
}

.main-nav ul.nav-menu li:hover .subnav__menu.megaMenu {
  height: 498px;
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.15);
}

.subnav__menu_sm {
  position: absolute;
  top: 100%;
  right: 0 !important;
  width: max-content;
  right: 14%;
  padding: 14px;
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.15);
}

.main-nav .subnav__menu_sm li a {
  padding: 4px 0 !important;
}

.subnav__menu::-webkit-scrollbar {
  width: 4px;
}

.subnav__menu::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.1);
}

.subnav__menu::-webkit-scrollbar-thumb {
  background-color: #405ea2;
}

.subnav__menu .subnav-blocks {
  padding: 20px;
}

.subnav__menu [class*='col-']:nth-child(odd) {
  background: rgba(186, 186, 186, 0.13);
}

.subnav__menu .dropdown-headings-lg {
  color: var(--color1) !important;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
  transition: var(--trans);
}

.subnav__menu .dropdown-headings-sm {
  color: #282c3f !important;
  font-weight: 700;
  font-size: 16px;
  padding-left: 12px;
  transition: var(--trans);
}

.subnav__menu .dropdown-headings-lg:hover,
.subnav__menu .dropdown-headings-lg:hover {
  color: var(--primaryColor) !important;
}

.subnav__menu ul li {
  padding-left: 12px;
  line-height: 22px;
}

.subnav__menu ul li a {
  padding: 0 !important;
  font-size: 14px;
}

.subnav__menu hr {
  background: rgba(186, 186, 186, 0.5);
  height: 2px;
  margin-top: 22px;
  margin-bottom: 16px;
}

#menu__toggler {
  height: 28px;
  width: 24px;
  position: relative;
  padding: 0;
}

#menu__toggler span {
  display: block;
  margin: 7px 0;
  height: 2px;
  width: inherit;
  background-color: var(--color3);
  transition: var(--trans);
}

#menu__toggler span:first-child {
  margin-top: 6px;
}

#menu__toggler.menuToggled span {
  background-color: var(--primaryColor);
}

#menu__toggler.menuToggled span:nth-child(2) {
  margin-left: 10px;
  opacity: 0;
}

#menu__toggler.menuToggled span:first-child {
  transform: rotateZ(45deg);
  margin-bottom: -9px !important;
}

#menu__toggler.menuToggled span:last-child {
  transform: rotateZ(-45deg);
  margin-top: -9px !important;
}

/* +++++++++++++++++++++++++++++ */
.new__mega__menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) !important;
  margin: 0 auto;
  width: 80%;
  opacity: 0;
  z-index: -2;
  height: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: top, opacity 0.4s ease;
  overflow: hidden;
  background-color: #fff;
}

.main-nav ul.nav-menu li:hover .new__mega__menu {
  opacity: 1;
  z-index: 500;
  height: 498px;
  transform: scaleY(1) translateX(-50%) !important;
  box-shadow: 0 10px 40px -10px rgb(0 0 0 / 15%);
}

.subnav__leftMenu {
  width: 250px;
  background: rgba(186, 186, 186, 0.13);
  height: 100%;
  padding: 0px 0;
  overflow-y: auto;
}

.subnav__leftMenu::-webkit-scrollbar,
.right_mega_option::-webkit-scrollbar {
  width: 3px;
}

.subnav__leftMenu::-webkit-scrollbar-track,
.right_mega_option::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.subnav__leftMenu::-webkit-scrollbar-thumb,
.right_mega_option::-webkit-scrollbar-thumb {
  background: var(--color3);
}

.subnav__leftMenu::-webkit-scrollbar-thumb:hover,
.right_mega_option::-webkit-scrollbar-thumb:hover {
  background: var(--color3);
}

.subnav__leftMenu a.mega-headings-link {
  position: relative;
  display: inline-block;
  padding: 6px 20px !important;
  font-size: 16px !important;
  color: var(--color3) !important;
  font-weight: 600 !important;
}

.subnav__leftMenu .right_mega_option {
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 0;
  opacity: 0;
  z-index: -1;
  padding: 20px;
  background-color: #fff;
}

/* .subnav__leftMenu li.mega-headings-lg:hover a.mega-headings-link ~ .right_mega_option { */
.subnav__leftMenu li.mega-headings-lg.active_menu_item .right_mega_option {
  width: calc(100% - 250px);
  height: 100%;
  opacity: 1;
  z-index: 100;
  overflow-y: auto;
}

.right_mega_option .col-4 {
  margin-bottom: 10px;
}
.right_mega_option .col-4 .a:hover {
  color: var(--primaryColor) !important;
}
.main-nav
  ul.nav-menu
  li:hover
  .new__mega__menu
  a:not(.mega-headings-lg.active_menu_item .mega-headings-link):hover {
  color: var(--primaryColor) !important;
}

.right_mega_option ul li a {
  padding: 0 !important;
}

.main-nav
  ul.nav-menu
  li:hover
  .new__mega__menu
  a:not(.mega-headings-lg.active_menu_item .mega-headings-link) {
  color: var(--color3) !important;
}

.subnav__leftMenu li.mega-headings-lg {
  color: var(--color3) !important;
}

.subnav__leftMenu li.mega-headings-lg.active_menu_item,
.subnav__leftMenu li.mega-headings-lg.active_menu_item a {
  background-color: #fff !important;
  color: var(--primaryColor) !important;
}

.new__mega__menu .subnav__leftMenu ul li a {
  display: block;
}

.new__mega__menu .subnav__leftMenu .right-colsss ul {
  padding-top: 4px !important;
}

.new__mega__menu .subnav__leftMenu .right-colsss ul li a {
  display: block;
  padding: 6px !important;
}

.main-nav ul.nav-menu li:hover .new__mega__menu .dropdown-headings-small {
  color: var(--color3) !important;
  font-weight: 600;
  padding: 0;
}

.new__mega__menu .subnav__leftMenu ul li:hover a.mega-headings-link {
  color: var(--primaryColor) !important;
}

.subnav__leftMenu .right_mega_option ul li {
  line-height: 22px;
}

.new__mega__menu .subnav__leftMenu .right_mega_option ul li:hover a {
  color: var(--primaryColor) !important;
}

.subnav__leftMenu .right_mega_option ul li a {
  font-size: 14px !important;
  line-height: 12px;
}

.subnav__leftMenu .right_mega_option .right-colsss hr {
  background: rgba(186, 186, 186, 0.5);
  height: 2px;
  margin-top: 22px;
  margin-bottom: 16px;
}

#mobileNavbarDrops .accordion-item {
  padding: 0;
  background-color: transparent;
  border: none !important;
}

#mobileNavbarDrops .accordion-body {
  padding: 0 0px;
}

#mobileNavbarDrops .accordion-header,
#mobileNavbarDrops .accordion-button,
#mobileNavbarDrops .accordion-collapse,
#mobileNavbarDrops .accordion-collapse.show,
#mobileNavbarDrops .accordion-body {
  border: none !important;
  outline: none !important;
  box-shadow: none;
}

#mobileNavbarDrops .accordion-button {
  color: var(--color3) !important;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 0 10px 30px;
  background-color: #fff !important;
}

#mobileNavbarDrops .accordion-button::after {
  content: '\f078';
  position: absolute;
  top: 20px;
  right: 20px;
  height: 8px;
  width: 8px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 600;
  font-size: 10px;
  transition: var(--trans);
  background-image: none;
  transform-origin: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

#mobileNavbarDrops .accordion-button:focus {
  box-shadow: none !important;
  color: var(--primaryColor) !important;
}

#mobileNavbarDrops .accordion-body {
  border: none !important;
}

#mobileNavbarDrops .right-colsss {
  font-size: 14px !important;
}

#mobileNavbarDrops .right-colsss a {
  padding: 0 50px !important;
  font-weight: 500 !important;
  background-color: #fff !important;
  font-size: 15px !important;
}

#mobileNavbarDrops .right-colsss li {
  background-color: #fff !important;
}

#mobileNavbarDrops .right-colsss .dropdown-headings-small {
  padding: 2px 40px !important;
  font-weight: 700 !important;
  font-size: 15px !important;
}

/* +++++++++++++++++++++++++++++ */

/* Mobile menu starts */
.mobile-nav {
  position: fixed;
  top: 52px;
  left: -100%;
  background-color: #ffffff;
  padding-top: 10px;
  width: 100%;
  height: 100vh;
  overflow-x: visible;
  overflow-y: auto;
  opacity: 0;
  transition: var(--trans);
  z-index: -1;
}
.mobile-nav.openMenu {
  opacity: 1;
  left: 0;
  z-index: 998;
}

.mobile-top-logo {
  width: inherit !important;
  position: fixed;
  top: 0;
  background-color: #ffffff;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 10px;
  border-bottom: 1px solid #e5e5e5;
  z-index: 100;
}

.mobile-top-logo img {
  max-height: 45px;
}

.mobile-nav .close-nav {
  height: 30px;
  width: 30px;
  background-color: var(--primaryColor);
  padding: 0;
}

.mobile-nav .close-nav span {
  position: relative;
  left: 6px;
  display: block;
  height: 2px;
  width: 18px;
  background-color: #ffffff;
}

.mobile-nav .close-nav span:first-child {
  transform: rotateZ(45deg);
}

.mobile-nav .close-nav span:last-child {
  transform: rotateZ(-45deg);
  margin-top: -2px;
}

.mobile-nav-menu li a:not(.dropdown-headings-lg, .dropdown-headings-sm) {
  font-size: 15px;
  display: block;
  padding: 6px 20px;
  color: var(--color2) !important;
  font-weight: 600;
  border-bottom: 1px solid #ffffff;
}

.mobile-nav-menu li a.dropdown::after {
  content: '\f078';
  position: absolute;
  top: 20px;
  right: 18px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 600;
  font-size: 12px;
  transition: var(--trans);
  line-height: 1px;
}

.mobile-nav-menu li.open-mobile-submenu a.dropdown::after {
  transform: rotateZ(180deg);
  color: var(--primaryColor);
}

.mobile-nav-menu li.open-mobile-submenu a.dropdown {
  color: var(--color3) !important;
}

.mobile-nav-menu li.open-mobile-submenu a {
  transition: var(--trans);
}

.mobile-nav-menu li.open-mobile-submenu a.clicked {
  color: var(--primaryColor) !important;
}

.mobilesubnav__menu {
  min-height: 0;
  max-height: 0;
  transform: scaleY(0);
  transform-origin: top;
  opacity: 0;
  transition: var(--trans);
  background-color: rgba(255, 255, 255, 0.5);
}

.mobile-nav li.open-mobile-submenu .mobilesubnav__menu {
  min-height: 100px;
  max-height: 5500px;
  transform: scaleY(1);
  opacity: 1;
}

.mobile-nav-menu li:not(.mobsubnav-blocks li):nth-child(even) {
  background-color: rgba(255, 255, 255, 1);
}
.right-colsss hr:not([size]) {
  height: 2px;
  width: 90%;
  background: rgba(186, 186, 186, 0.5);
  margin: 10px auto;
}

/* .mobilesubnav__menu .mobsubnav-blocks:nth-child(odd) {
  background: rgba(186, 186, 186, 0.13);
} */

.mobsubnav-blocks {
  padding: 16px 28px;
}

.mobsubnav-blocks hr {
  background: #fff;
  height: 2px;
  margin-top: 22px;
  margin-bottom: 16px;
}

/* .mobsubnav-blocks .dropdown-headings-lg {
  margin-bottom: 8px;
  font-size: 17px;
  color: var(--color1) !important;
  font-weight: 700;
  transition: var(--trans);
} */
.mobsubnav-blocks .dropdown-headings-lg {
  display: block;
  color: var(--color1) !important;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 8px;
  transition: var(--trans);
}

.mobsubnav-blocks .dropdown-headings-sm {
  display: block;
  color: #282c3f;
  font-size: 15px;
  font-weight: 700;
  transition: var(--trans);
}

.subnav__menu .dropdown-headings-lg:hover,
.subnav__menu .dropdown-headings-lg:focus,
.subnav__menu .dropdown-headings-sm:hover,
.subnav__menu .dropdown-headings-sm:focus {
  color: var(--primaryColor) !important;
}

.mobsubnav-blocks span {
  color: #282c3f;
  font-weight: 600;
  font-size: 15px;
  padding-left: 12px;
}

.mobsubnav-blocks ul li {
  padding-left: 12px;
  line-height: 22px;
}

.mobsubnav-blocks ul li a {
  border: none !important;
  padding: 0 !important;
  font-weight: 500 !important;
  font-size: 14px !important;
}

.common_modal {
  background-color: rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.common_modal .modal-content {
    border-radius: 8px;
    border: none;
}

.common_modal .nav-pills {
  margin-bottom: 20px !important;
  border-bottom: 1px solid #d7d7d7;
}

.common_form .input-group {
  background-color: white;
  border-bottom: 1px solid #f3f3f3;
  margin-bottom: 24px;
}

.btn-close {
    position: absolute;
    right: 0;
    background: none;
    top: -8px;
    right: -55px;
    margin-left: auto;
    z-index: 9999;
    opacity: 1 !important;
    color: white;
	width: 2em;
    height: 2em;
}
.btn-close:focus {
  box-shadow: none;
}
.cross span {
  display: block;
  height: 2px;
  width: inherit;
  top: 50%;
  left: 50%;
  background-color: white !important;
}
.cross span:first-child {
  transform: rotate(45deg);
}
.cross span:last-child {
  transform: rotate(-45deg);
  margin-top: -2px;
}

.input-group-text {
  background-color: transparent;
  border: none;
  align-items: flex-start;
  margin-top: 4px;
}

common_form .form-control {
    background-color: white;
    border: 1px solid #D5D5D5;
    height: 44px;
    padding: 10px;
    position: relative;
}

.common_form input[type='submit'] {
  background-color: var(--secondaryColor);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 6px;
  text-align: center;
  width: 100%;
  margin-top: 16px;
}

.common_modal .nav-pills .nav-link.active {
  color: var(--secondaryColor) !important;
}
.nav-pills .nav-link.active {
  background-color: transparent;
  color: var(--color) !important;
  border-bottom: 2px solid #151875;
  border-radius: 0;
}
.common_modal .nav-pills .nav-link {
  background-color: transparent !important;
  color: black;
  font-size: 18px;
  font-weight: 600;
}

.mobile-search-block {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 12000;
  background-color: #fff;
  width: 100%;
  display: flex;
  padding: 12px 0;
  min-height: 0;
  transform: scaleY(0);
  transform-origin: top;
  opacity: 0;
  transition: var(--trans);
}

.mobile-search-block.search-block-opened {
  max-height: auto;
  transform: scaleY(1);
  opacity: 1;
}

.back-btn svg {
  height: 15px;
  width: auto;
}

#search-btn-mb {
  padding: 0 !important;
}

#search-btn-mb svg {
  height: 22px;
  width: auto;
}

.mobile-search-block input {
  border-radius: 0 !important;
  border: none;
  padding: 4px 0;
  padding-left: 10px;
  color: var(--color3) !important;
  font-size: 15px;
  font-weight: 500;
  margin: 0 10px;
  padding-bottom: 0;
}

.mobile-search-block input::placeholder {
  color: #151875 !important;
  font-size: 15px;
  font-weight: 500;
}

.mobile-search-block .input-group button svg {
  height: 2px;
  width: auto;
}

/* Navbar Ends */

/* -------------CAROUSEL Starts---------------- */

#main-carousel,
#main-carousel .carousel-item {
  overflow: hidden !important;
}

#main-carousel .carousel-item img {
  min-width: 100vw !important;
  object-fit: cover;
  object-position: top;
}

.carousel-indicators [data-bs-target] {
  height: 12px;
  width: 12px;
  background: #e5e5e5;
  border: 3px solid #e5e5e5;
  opacity: 1 !important;
  border-radius: 50px;
  margin: 0 2px;
}

.carousel-indicators .active {
  background: #ffffff;
  border: 3px solid #0067dd;
}

.carousel-control-prev,
.carousel-control-next {
  opacity: 1 !important;
  width: 80px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background: rgba(255, 255, 255, 0.8) !important;
  opacity: 1 !important;
  border-radius: 50px;
  height: 54px;
  width: 54px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  /* background-repeat: no-repeat;
  background-position: center;
  background-size: 13px; */
  background-image: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-control-prev-icon svg,
.carousel-control-next-icon svg {
  height: 20px;
  stroke: #a4a4a4;
  transition: var(--trans);
}

.carousel-control-prev:hover .carousel-control-prev-icon svg,
.carousel-control-next:hover .carousel-control-next-icon svg {
  stroke: var(--color3) !important;
}

/* Carousel Ends */

/* ----------ADVERTISEMENT SECTION Starts-------------- */

.add-block-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 46px;
}

.add-block {
  position: relative;
}

.add-block img {
  border-radius: 20px;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.add-block .text-block {
  display: block !important;
  position: absolute;
  bottom: 50px;
  left: 0;
  border-radius: 0px 10px 10px 0px;
  padding: 10px 30px;
  min-width: 70%;
  z-index: 10;
  overflow: hidden;
  transition: var(--trans);
}

.add-block .text-block::before {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #fff;
  border-radius: 0px 10px 10px 0px;
  z-index: -1;
  transition: var(--trans);
}

.add-block:hover .text-block::before {
  left: 0;
}

.add-block:hover .text-block {
  color: var(--color3) !important;
}

/* .add-block:hover .text-block {
  background-color: #fff;
} */

/* Advertisement Section Ends */

/* ----------CATEGORY SECTION Starts-------------- */

.category-block {
  position: relative;
  border-radius: 15px;
  box-shadow: 0 0 20px -5px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  display: block;
}
/* 
.category-block:not(.category-block-bg) {
  margin: 0 10px 20px 10px;
} */

.category-block {
  margin: 0 10px 20px 10px;
}

.category-block span {
  display: block;
  width: 100%;
  position: absolute;
  bottom: 20px;
  left: 0;
  background-color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  transition: var(--trans);
  line-height: 28px;
}

.category-block:hover span {
  color: var(--color3) !important;
  background-color: rgba(255, 255, 255, 1);
}
.category-block-bg img {
  height: 462px;
  width: 100%;
  object-fit: cover;
}

.category-block:not(.category-block-bg) img {
  height: 221px;
  width: 100%;
  object-fit: cover;
}

/* Category Section Ends */

/* -------SINGLE ADD SECTION Starts------- */

.single-block {
  display: flex;
  align-items: center;
  margin: 0 134px;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.25);
  background-color: #006789;
  color: #fff;
}

.single-block img {
  width: 50% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: top;
}

.single-block .add-description {
  text-align: center;
  padding: 0 36px;width: 100%;
}

.single-block .add-description h3 {
  /* font-weight: 700;
  font-size: 28px; */
  text-align: center;
}

/* Single Add Section Ends */

/* -------FEATURED PRODUCT SECTION Starts------- */

.product-carousel {
  overflow-x: hidden;
}

.product-block {
  overflow: hidden;
      border-radius: 12px;
  transition: var(--trans);
  margin: 0 10px;
  margin-bottom: 20px;
}
.product-section .product-block {
  margin-bottom: 0px;
}
.product-block:hover {
  box-shadow: 0 0 20px -5px rgba(0, 0, 0, 0.18);
  cursor: pointer;
}

.product-block .prod-img {
  /* background: #f6f7fb; */
  position: relative;
  text-align: center;
  overflow: hidden;
}

.product-block .prod-img img {
    height: 290px;
    width: 100%;
    object-fit: contain;
    border-radius: 0px;
    transition: var(--trans);
}

.product-block:hover .prod-img img {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.product-block .prod-img .offer-tag {
  position: absolute;
  top: 20px;
  left: 0;
  background-color: #e33205;
  color: #fff;
  border-radius: 0px 5px 5px 0px;
  font-size: 13px;
  padding: 0 10px;
  line-height: 20px;
}

.product-block .prod-img .cart-icons {
  display: flex;
  justify-content: end;
  position: absolute;
  top: 8px;
  right: 10px;
  height: 30px;
  width: 100px;
  z-index: 100;
}
.slide-imgnew {
	position: relative !important;
    opacity: 1 !important;
    left: 0px !important;
    transform: translateX(0%) !important;
    bottom: 0px !important;
    background: white !important;
    margin-bottom: 0px !important;
    max-width: 100% !important;
    display: block!important;
}
.owl-carousel .owl-stage-outer {
    padding: 15px 0px;
}
.product-block .prod-img .cart-icons a.addCart-icon,
.product-block .prod-img .cart-icons a.addFav-icon {
  display: inline-block;
  height: 22px;
  width: 24px;
  border-radius: 50px;
  transition: var(--trans);
  margin: 0 2px;
}

.product-block .prod-img .cart-icons a.addCart-icon:hover,
.product-block .prod-img .cart-icons a.addFav-icon:hover {
  background: #eeeffb;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.05);
}

.product-block .prod-img .cart-icons svg {
  max-height: 13px;
}

.product-block .prod-img a:not(.addCart-icon, .addFav-icon) {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  background-color: var(--color3);
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  padding: 1px 0;
  text-transform: uppercase;
  opacity: 0;
  z-index: -1;
  margin-bottom: 10px;
  border-radius: 3px;
  transition: var(--trans);
}

.product-block:hover .prod-img a:not(.addCart-icon, .addFav-icon) {
  margin-bottom: 0;
  opacity: 1;
  z-index: 100;
}

.product-block .prod-img a:not(.addCart-icon, .addFav-icon) svg {
  max-height: 20px;
  margin-right: 10px;
}

.product-block .product-desc {
  font-weight: 500;
  font-size: 15px;
  color: var(--color3);
  padding: 10px 4px;
}
.product-block .product-desc a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
  max-height: 44px;
  line-height:15px;  
}
.product-block .product-desc h6 {
  /* font-weight: 700; */
  font-size: 15px;
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0px;
  max-height: 44px;
  line-height:15px;  
}
.product-block:hover a h6 {
  color: #151875;
}

.product-block:hover .product-desc h4 {
  color: var(--color3) !important;
}

.product-block .product-desc .price {
  line-height: 20px;
  font-weight: 500;
}

.product-block .product-desc .old-price {
  text-decoration: line-through;
  color: #afafaf;
}

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




/* Featured Product Section Ends */

/* -------BRANDS SECTION Starts------- */

.brands-section {
  position: relative;
  background-image: url(../images/utilities/trianglebg.png);
  background-repeat: repeat-x;
  padding-top: 148px !important;
}

.brands-section .section-heading .heading-inner {
  background-color: #f0f6f9;
}

.brands-section .item {
  padding: 20px 0;
}

/* .brand-block {
  margin: 0 40px;
  text-align: center;
} */

.brand-block .brand-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 110px;
  width: 110px;
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  margin: 0 auto;
  background-color: #f4f6f9;
}

.brand-block .brand-img:not(:last-child) {
  margin-bottom: 40px;
}

.brand-block .brand-img:last-child {
  margin-bottom: -10px;
}

.brand-block .brand-img img {
  max-width: 85px;
  height: auto;
}

/* Brands Section Ends */

/* -------VIDEO CAROUSEL SECTION Starts------- */

.video-block {
  position: relative;
  height: 448px;
  display: block !important;
}

.video-block img {
  min-height: 448px;
  max-height: 448px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border: 3px solid #000;
  border-radius: 50px;
  z-index: 300;
}

.play-btn span {
  margin-left: 4px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #000;
}

.video-carousel .owl-dots {
  display: block !important;
  text-align: center;
  margin-top: -28px;
  z-index: 10;
  position: relative;
}

.video-carousel .owl-dots button span {
  display: block;
  height: 15px;
  width: 15px;
  background: #e5e5e5;
  border: 3px solid #e5e5e5;
  opacity: 1 !important;
  border-radius: 50px;
  margin: 0 3px;
  transition: var(--trans);
}

.video-carousel .owl-dots button.active span {
  background: #ffffff;
  border: 3px solid #0067dd;
}

#client_video_modal .modal-content {
  background-color: transparent !important;
}

#client_video_modal .modal-body {
  padding: 34px;
  background-color: transparent !important;
}

#client_video_modal .modal-body iframe {
  border-radius: 10px;
}

#client_video_modal .btn-close {
  background-color: #fff;
  border-radius: 50px;
  padding: 6px;
}

/* Video Carousel Section Ends  */

/* -----------BLOG SECTION Starts-------------- */

.blog-block {
  box-shadow: 0 0 30px -5px rgba(0, 0, 0, 0.1);
}

.blog-block .blog-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.blog-block .blog-desc {
  text-align: center;
  padding: 20px 10px;
}

.blog-block .blog-desc span {
  color: #a4a4a4;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}

.blog-block .blog-desc h6 {
  color: #323232;
  /* font-weight: 700;
  font-size: 17px; */
  line-height: 26px;
}

.blog-block .blog-desc p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  line-height: 20px;
}

.blog-block .blog-desc .read-more {
  color: #323232 !important;
  position: relative;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px !important;
  transition: var(--trans);
}

.blog-block:hover .blog-desc .read-more {
  color: #0067dd !important;
}

.blog-block .blog-desc .read-more::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #323232;
  transition: var(--trans);
}

.blog-block:hover .blog-desc .read-more::before {
  background-color: #0067dd;
}

/* Blog Section Ends */

/* -----------DOWNLOAD APP SECTION Starts----------- */

.download-section {
  position: relative;
}

.download-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 142px;
  width: 100%;
  background: #f3f3f3;
}

.get-app-block {
  display: flex;
  align-items: flex-end;
  max-width: 57%;
  margin: 0 auto;
  position: relative;
}

.get-app-block p {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 9px;
}

/* Download App Section Ends */

/* -------------------FOOTER SECTION Starts--------------------- */

footer {
  background-color: #eeeffb;
}

.footer-upper {
  color: #8a8fb9;
  padding: 74px 0;
}

.logo-title {
  font-weight: 600;
  font-size: 38px;
  color: #000;
}

.subscribe-input {
  background-color: rgba(255, 255, 255, 0.45);
  border-radius: 3px;
  margin: 32px 0 24px 0;
  padding: 4px 0;
}

.subscribe-input input {
  border: none;
  background-color: transparent;
}

.subscribe-input input::placeholder {
  color: #8a8fb9;
}

.subscribe-input button {
  background: #0d0e43;
  border-radius: 3px !important;
  color: #eeeffb;
  padding: 6px 30px;
  margin: 0;
}

.footer-upper .footer-heading {
  color: #000;
  margin-bottom: 24px;
  font-weight: 700;
  font-size: 18px;
}

.footer-upper ul li a {
  color: #8a8fb9 !important;
  padding: 4px 0;
  transition: var(--trans);
}

.footer-upper ul li a:hover {
  color: var(--primaryColor) !important;
}

.footer-bottom {
  background: #e7e4f8;
  color: #9da0ae;
  padding: 14px 0;
  font-weight: 600;
  line-height: 20px;
}

.footer-bottom ul.footer-social {
  display: flex;
  align-items: center;
}

.footer-bottom ul.footer-social li a {
  color: #fff !important;
}

.footer-bottom ul.footer-social li a i {
  height: 20px;
  width: 20px;
  border-radius: 50px;
  margin: 0 10px;
  background: #151875;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  transition: var(--trans);
}

.footer-bottom ul.footer-social li a:hover i {
  background-color: var(--primaryColor);
}

/* Footer Section Ends */

/* ------------------BREADCRUMB SECTION Starts------------------ */

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

.breadcrumb-nav h4 {
  margin-bottom: 0;
  line-height: 16px;
  margin-bottom: 0;
}

.breadcrumb-nav li:not(:first-child) {
  padding-left: 4px !important;
}

.breadcrumb-item {
  font-size: 18px;
}

.breadcrumb-item.active {
  color: #000;
}

.breadcrumb-img-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 28px;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #000;
  padding-right: 4px;
}

.breadcrumb-item a {
  transition: var(--trans);
}

.breadcrumb-item a:hover {
  color: var(--primaryColor) !important;
}

.pagination-section {
  margin-bottom: 40px;
  padding-left: 28px;
}

.common-pagination {
  margin: 0;
  margin-top: 20px;
  padding-left: 0;
}

.pagination-section-inner .pagination {
  padding: 0 !important;
}

.pagination-section .page {
  color: #7f7f7f;
  border-top: 1px solid #e9e9ed;
  margin-top: 22px;
  padding-top: 8px;
}

.pagination-section-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-item .page-link {
  width: 38px;
  height: 38px;
  border: 1px solid #e9e9ed;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-weight: 600;
  font-size: 20px;
  /* line-height: 30px; */
  margin: 0 14px;
  color: #282c3f !important;
  line-height: 32px !important;
  display: inline-block;
  text-align: center;
}

.ellipses-pagination {
  width: 36px;
    margin: 0;
    color: #282c3f !important;
    font-weight: 600;
    font-size: 22px;
    line-height: 20px;
    letter-spacing: 1px;
    display: flex;
    align-items: flex-end;
}

.page-item.active .page-link {
  background: #282c3f;
  border: 1px solid #282c3f;
  color: #fff !important;
}

.page-item.active .page-link:hover {
  background-color: #282c3f !important;
}

.page-item .page-link:hover,
.page-item .page-link:focus {
  background-color: transparent;
  box-shadow: none;
}

.pagination-section-inner button {
  border: 1px solid #e9e9ed;
  color: #282c3f !important;
  border-radius: 3px;
  padding: 0 !important;
  line-height: 20px;
  height: 38px;
  padding: 0 !important;
  min-width: 120px;
  font-weight: 600;
  font-size: 20px;
}

.breadcrumb-mobile {
  display: flex;
  align-items: center;
  padding: 20px 0 10px 0;
  position: sticky;
  top: 55px;
  background-color: #fff;
  z-index: 400;
  box-shadow: 0px 4px 4px rgba(213, 213, 213, 0.5);
}

.common-breadcrumb-mobile {
  padding-bottom: 18px;
}

.breadcrumb-mobile .breadcrumb-sm .breadcrumb-item  a,
.common-breadcrumb-mobile .breadcrumb-sm .breadcrumb-item a {
  position: relative;
  padding-left: 30px;
  font-size: 15px;
  font-weight: 600;
}

.breadcrumb-mobile .breadcrumb-sm .breadcrumb-item a::before,
.common-breadcrumb-mobile .breadcrumb-sm .breadcrumb-item a::before {
  content: '';
  position: absolute;
  height: 16px;
  width: 28px;
  left: 0;
  top: 7px;
  background-image: url(../images/Pages/Utilities/backArrow.svg);
  background-size: 20px;
  background-repeat: no-repeat;
}

.breadcrumb-mobile button {
  border: 1px solid #e3e4e8;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 8px;
  width: 78px;
  font-size: 15px;
}

.breadcrumb-mobile button svg {
  max-height: 6px;
  width: 10px;
  transition: var(--trans);
}

.breadcrumb-mobile button:first-child {
  margin-right: 5px;
}

/* Breadcrumb Section Ends */

/* ---------------PRODUCT &amp; CATEGORY PAGE Starts--------------- */

.product-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 46px;
  border: 1px solid #e9e9ed;
  border-top: 0;
  border-right: none;
  margin-left: 28px;
  padding-left: 46px;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.product-page .product-block {
  margin: 0;
  margin-bottom: 22px;
}

.filter-options-column {
  padding-top: 20px;
  position: sticky;
  top: 68px;
  min-height: 100vh;
  max-height: 2000px;
  padding-bottom: 40px;
}

.sort-btn {
  position: relative;
}

.sort-btn button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 12px;
  min-width: 212px;
  border: 1px solid #d4d5d9;
  border-radius: 4px;
  margin-left: auto;
  font-size: 13px !important;
}

.sort-btn svg {
  height: 6px;
  width: auto;
  transition: var(--trans);
}

.openSort-btn.open svg {
  transform: rotateZ(180deg);
}

.sort-list {
  position: absolute;
  top: 100%;
  right: 0;
  background: #ffffff;
  border: 2px solid #e5e5e5;
  border-radius: 4px;
  width: 300px;
  opacity: 0;
  z-index: -1;
  min-height: 0;
  max-height: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: var(--trans);
}

.sort-list.show_sort_Dropdown {
  opacity: 1;
  z-index: 200;
  min-height: 100px;
  max-height: 600px;
  overflow-y: auto;
  transform: scaleY(1);
}

.sort-section .small-sort-head {
  font-weight: 700;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 10px;
}

.sort-list hr {
  margin: 0 !important;
}

.sort-list-block,
.sort-section .small-sort-head,
.sort-section hr {
  opacity: 0;
}

.show_sort_Dropdown .sort-list-block,
.show_sort_Dropdown .sort-section .small-sort-head,
.show_sort_Dropdown .sort-section hr {
  opacity: 1;
}

.sort-list-block li {
  transition: var(--trans);
  cursor: pointer;
  border: 1px solid #fff;
  font-weight: 500;
  line-height: 26px;
}

.sort-list-block li:hover {
  border: 1px solid #e5e5e5;
}

.sort-list-block li img {
  margin-right: 8px;
  margin-left: 4px;
}

.product-page hr {
  opacity: 1;
  background: #e9e9ed;
  margin: 10px 0;
  margin-bottom: 0;
}

.top-filter-display {
  padding-right: 68px;
}

.clear-btn {
  color: #2e66d3;
  font-weight: 600;
  line-height: 16px;
  font-size: 13px !important;
  transition: var(--trans);
}

.clear-btn:hover {
  color: var(--primaryColor) !important;
}

.label-container {
  display: block;
  position: relative;
  padding-left: 30px;
  line-height: 27px;
  font-size: 17px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.label-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.label-container .checkmark {
  position: absolute;
  top: 4px;
  left: 0;
  height: 18px;
  width: 18px;
  border-radius: 3px;
  border: 1px solid #c3c2c9;
}

.label-container input:checked ~ .checkmark {
  background: #2e66d3;
  border-color: #2e66d3;
}

.label-container .checkmark:after {
  content: '';
  position: absolute;
  display: none;
}

.label-container input:checked ~ .checkmark:after {
  display: block;
}

.label-container .checkmark:after {
  left: 50%;
  top: 4px;
  transform: translateX(-50%) rotate(45deg);
  width: 4px;
  height: 7px;
  border: solid white;
  border-width: 0 1px 1px 0;
  -webkit-transform: translateX(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) rotate(45deg);
}

.product-page ul {
  padding-left: 15px !important;
}

ul.sort-list-block {
  padding: 7px 9px !important;
}

.range-texts {
  display: flex;
  justify-content: space-between;
}

.range-texts input {
  border: none;
  width: auto !important;
  padding: 0;
  margin: 0;
  max-width: 106px;
  font-size: 14px;
  cursor: default;
}

.range-texts input:focus {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.range-texts input:nth-child(2) {
  text-align: end;
}

#slider-price,
#slider-weight {
  margin-left: 4px;
}

.ui-widget-content {
  width: 100% !important;
  height: 5px !important;
  background: #d7d7d7 !important;
  border-radius: 2px !important;
  opacity: 1 !important;
}

.ui-widget-header {
  top: -1px !important;
  height: 5px !important;
  background: #2e66d3 !important;
  opacity: 1 !important;
}

.ui-slider .ui-slider-handle {
  margin-top: 1.5px;
  width: 9px !important;
  height: 9px !important;
  background: #ffffff !important;
  border: 1px solid #000000 !important;
  border-radius: 50px !important;
  opacity: 1 !important;
}

.ui-slider-horizontal .ui-slider-handle {
  margin-left: -4.5px !important;
}

.ui-slider .ui-slider-handle.ui-state-focus {
  border: 1px solid #000000 !important;
  box-shadow: none !important;
  outline: none !important;
}

#amount::placeholder {
  color: pink;
}

.sort-list-block li {
  display: flex;
  align-items: center;
}

.mobile-filter-section {
  position: fixed;
  top: 0;
  left: 0;
  min-height: 0;
  max-height: 0;
  width: 0;
  background-color: #fff;
  z-index: 10000;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.4s ease;
}

.mobile-filter-section .mobile-filter-top-head {
  padding: 14px 12px;
}

.mobile-filter-section.filter-shown {
  opacity: 1;
  min-height: 100vh;
  max-height: 100vh;
  width: 100%;
}

.mobile-filter-section .nav.flex-column {
  display: block;
  background: #f4f4f4 !important;
  height: calc(100vh - 100px);
  overflow-y: auto;
}

.mobile-filter-section .nav.flex-column::-webkit-scrollbar {
  width: 4px;
}

.mobile-filter-section .nav.flex-column::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.1);
}

.mobile-filter-section .nav.flex-column::-webkit-scrollbar-thumb {
  background-color: #405ea2;
}

.mobile-filter-section .nav-pills .nav-link {
    width: 125px;
    font-weight: 600;
    font-size: 14px;
    color: #000 !important;
    text-transform: uppercase;
    text-align: start;
    padding: 6px 12px;
    border-right: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5 !important;
    border-top: 1px solid #e5e5e5 !important;
    border-radius: 0;
}

.mobile-filter-section .nav-pills .nav-link.active {
  background-color: #fff;
  border: none;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.mobile-filter-section hr {
  margin: 0 !important;
  background: rgba(213, 213, 213, 0.5);
  opacity: 1 !important;
}

#filter-tabContent {
  padding-top: 6px;
  width: calc(100% - 148px);
}

.mobile-filter-section #filter-tabContent {
  overflow-y: auto;
  height: calc(100% - 100px);
  position: absolute;
  top: 46px;
  right: 0;
  width: calc(100% - 130px);
}

#priceTab,
#weightTab {
  padding-top: 20px;
}

.close-apply-block {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px 0;
    border: 1px solid #e5e5e5;
    display: flex;
    background-color: #fff;
}

.close-apply-block button {
  width: 50%;
  text-align: center;
  padding: 0;
  font-size: 15px;
  font-weight: 600;color: #000;
}

.close-apply-block button.apply-filter {
  color: var(--primaryColor);
  border-left: 1px solid #e5e5e5 !important;
}

.mobileFilter-btn span {
   color:#000;
}
.openSort-btn span {
   color:#000;
}


/* Product &amp; Category Page Ends */

/* -----------------CART PAGE Starts----------------- */

.cart-page {
  position: relative;
}

.center-nav {
  align-items: center;
}

.cart-carousel {
  overflow-x: hidden;
}

.center-nav .cart-breadcrumb-list {
  display: flex;
  justify-content: center;
}

.cart-breadcrumb-list li {
  font-weight: 500;
  font-size: 26px;
  line-height: 42px;
  text-align: center;
  color: #fa8925;
}

.cart-navbar,
.cart-navbar.stick_header {
  border: 1px solid rgba(213, 213, 213, 0.5);
  box-shadow: none !important;
}

.cart-navbar .right-nav {
  display: flex;
  justify-content: end;
  min-width: 184px;
}

.cart-navbar .right-nav img {
  max-height: 50px;
}

.cart-navbar .right-nav span {
  color: var(--color2);
  font-weight: 500;
  font-size: 16px;
  display: block;
  margin-left: 16px;
}

.cart-breadcrumb-list .breadcrumb-item + .breadcrumb-item::before {
  content: '';
  margin-top: 28px;
  margin-right: 6px;
  height: 8px;
  width: 24px;
  background-image: url(../images/Pages/Utilities/breadcrumb-separator.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  padding: 0 !important;
}

.cart-breadcrumb-list .breadcrumb-item a {
  padding: 12px 10px;
  color: var(--color2) !important;
}

.cart-breadcrumb-list .breadcrumb-item.active a {
  color: var(--primaryColor) !important;
}

.left-cart-section {
  padding: 34px;    padding-top: 20px;
    padding-bottom: 20px;
}

.seller-id {
  color: #5f5f5f;
  font-weight: 500;
  font-size: 17px;
  margin-bottom: 10px;
  margin-top: 6px;
  text-transform: uppercase;
}

.qtySelector {
    margin-right: 0px;
    display: flex;
}
.qtySelector a {
  width: 28px;
  height: 28px;
  float: left;
  cursor: pointer;
  border: 1px solid #a4a4a4;
  border-radius: 50px;
  font-size: 30px;
  font-weight: 400;
  line-height: 25px;
}
.qtySelector a.decreaseQty {
  line-height: 21px;
}
.qtySelector .qtyValue {
  padding: 2px 5px 0px 5px;
  margin: 0 10px;
  width: 48px;
  height: 28px;
  float: left;
  text-align: center;
  border: 1px solid #a4a4a4;
  box-sizing: border-box;
  border-radius: 2px;font-family: sans-serif;
}

.cart-block {
  display: flex;
  width: 100%;
  font-size: 18px;
  border: 2px solid #e9e9ed;
  border-radius: 10px;
  padding: 8px 26px;
  margin-bottom: 20px;
}

.cart-block .cart-desc {
  padding-left: 26px;
  padding-top: 4px;
}

.cart-block .cart-desc h4 {
  margin-bottom: 0;
  color: #0d134e;
}

.cart-block .cart-desc h3 {
  color: var(--color2);
  margin-bottom: 0;
}

.cart-block .cart-desc .subtitle {
  margin-bottom: 8px;
  line-height: 22px;
}

.cart-block img {
  min-width: 152px;
  max-width: 152px;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
}

.removeCart {
    display: flex;
    align-items: center;
    border: 1px solid #a4a4a4;
    border-radius: 2px;
    color: #3f3f3f !important;
    font-weight: 400;
    padding: 0 12px;
    height: 28px;
    margin-left: 20px;
}
.removeCart:hover {
  color:var(--primaryColor) !important;
}
.removeCart img {
  max-height: 15px;
  min-width: 18px;
  max-width: 18px;
  margin-right: 5px;
}

.right-cart-section {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: calc(100% - 67%);
  border: 1px solid #e9e9ed;
  border-top: none;
  background-color: #fff;
}

.right-inner-cart {
  position: sticky;
  height: auto;
  top: 70px;
  font-size: 18px;
}

.right-inner-cart .title {
  font-size: 24px;
  padding: 20px;
  font-weight: 600;
}

.right-inner-cart .title span {
  font-size: 18px;
  margin-left: 6px;
}

.right-cart-section hr {
  margin: 0;
  background-color: #e9e9ed;
  opacity: 1;
}

.right-cart-section .subtotal,
.right-cart-section .total {
  padding: 16px 20px;
  padding-right: 24px;
}

.right-cart-section .amount {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  font-size: 17px;
  font-weight: 500;
}

.right-cart-section .green {
  color: #59af59;
}

.continue-btn {
  margin: 20px;
  background-color: var(--primaryColor);
  color: #fff !important;
  font-size: 24px;
  display: block;
  padding: 7px 0;
  text-align: center;
  border-radius: 5px;
}

.add-more-wishlist {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  border: 2px solid #e9e9ed;
  padding: 8px 10px 8px 24px;
  border-radius: 12px;
}
.add-more-wishlist img {
	width:30px;
}
.add-more-wishlist span:last-child {
    font-size: 30px;
    position: relative;
    top: -3px;
    right: 14px;
}
.simple-border-btn {
  border: 1px solid #c1c1c1;
  border-radius: 6px;
  font-size: 22px;
  padding: 6px 28px;
  color: #626262 !important;
}

.address-block {
  width: 100%;
  font-size: 18px;
  border: 2px solid #e9e9ed;
  border-radius: 20px;
  padding: 8px 26px;
  margin-bottom: 20px;
  color: #282c3f !important;
}
.address-block:last-child {
   margin-bottom:0px;	
}
.address-rightt {
  padding: 16px;
  padding-left: 40px;
  padding-right: 130px;
  color: #282c3f;
  font-weight: 400;
}

.cartUsername {
  font-weight: 600;
  font-size: 20px;
  padding-bottom: 12px;
  color: #000;
}

.edit-buttons button {
  border: 1px solid #c1c1c1;
  border-radius: 6px;
  padding: 3px 0;
  width: 100px;
  font-weight: 500;
  font-size: 17px;
  color: #626262 !important;
}

.edit-buttons button:first-child {
  margin-right: 10px;
}

.address-label-container {
  display: block;
  position: relative;
  padding-left: 26px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.address-label-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.address-label-container .checkmark {
  position: absolute;
  top: 16px;
  left: 0;
  height: 26px;
  width: 26px;
  border-radius: 30px;
  border: 1px solid #fa8925;
}

.address-label-container .checkmark:after {
  content: '';
  position: absolute;
  display: none;
}

.address-label-container input:checked ~ .checkmark:after {
  display: block;
}

.address-label-container .checkmark:after {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  background-color: var(--primaryColor);
  border-radius: 50px;
}

/* Cart Page Ends */

/* -----------PRODUCT DETAILS PAGE Starts----------- */

.productDetail-page {
  padding: 30px 0;
}
.view-image-section {
  display: flex;
  position: relative;
}
/* .view-image-content-image {
  position: sticky;
  top: 100px;
  height: 100%;
} */
.showPro {
    position: absolute;
    left: 80px;
    width: 445px;
    height: 445px;
    border-radius: 3px;
}
#show-img {
  height: inherit !important;
  min-height: inherit;
  max-height: inherit;
  object-fit: contain;
  margin: 0 auto;
}
.showPro .offer-tag {
  position: absolute;
  left: 0;
  top: 28px;
  background-color: #e33205;
  color: #fff;
  font-size: 13px;
  line-height: 21px;
  padding: 0 6px;
  font-weight: 600;
  border-radius: 0px 5px 5px 0px;
  z-index: 10 !important;
}
.small-img {
    position: absolute;
    top: 190px;
    left: -185px;
    width: 439px;
    height: 65px;
    transform: rotateZ(90deg);
    background: #fdfdfd;
    border-radius: 0px;
    padding: 0 0px;
    margin-top: 0px;
}
.small-img .icon-left, .small-img .icon-right {
    width: 18px;
    height: 65px;
    cursor: pointer;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    background: white;
    padding: 4px;
    border: 1px solid #d8d8d8;
}
.small-img .icon-right {
    right: 0;
    margin-right: 0px;
}
.small-img .icon-left:hover, .small-img .icon-right:hover {
    opacity: 1;
}
.small-container {
    width: 415px;
    height: 65px;
    overflow: hidden;
    position: absolute;
    left: 15px;
    right: 0;
    top: 0px;
    margin: 0 auto;
    padding: 0 0px;
}
.small-container div {
  width: 800%;
  position: relative;
}
.small-container .show-small-img {
        width: 65px;
    height: 65px;
    margin-right: 3px;
    cursor: pointer;
    float: left;
    transform: rotateZ(-90deg);
    object-fit: contain;
    background: white;
    border: 2px solid rgb(223 223 223);
}
.small-container .show-small-img:last-of-type {
  margin-right: 0;
}
.showPro div {
  z-index: 10000 !important;
}

/* .produc-desc {
  position: absolute;
  right: 0;
  top: 0;
  width: calc(100% - 720px);
  font-size: 22px;
  padding-top: 28px;
  font-weight: 400;
} */

.produc-desc {
    position: relative;
    right: 0;
    top: 0;
    width: calc(100% - 560px);
    min-height: 665px;
    margin-left: auto;
    font-size: 22px;
    padding-top: 0px;
    font-weight: 400;
    z-index: 10;
}

.produc-desc h2 {
  color: var(--color2);
  margin-bottom: 12px;
}

.produc-desc .subtitle {
  font-size: 24px;
  line-height: 22px;
}
.produc-desc hr {
  margin: 18px 0;
  background: #d4d5d9;
  opacity: 1;
}
.prod-description-text {
  line-height: 38px;
}
.produc-desc .new-price,
.produc-desc .discounted-price {
  margin-left: 6px;
}
.produc-desc .discounted-price,
.cart-desc .discounted-price {
  color: var(--primaryColor);
  font-weight: 500;
}
.produc-desc .old-price,
.cart-desc .old-price {
  color: #7c7c7c;
  font-weight: 600;
  text-decoration: line-through;
}
.produc-desc .new-price,
.cart-desc .new-price {
  font-weight: 700;
}

.average-rating {
  font-size: 12px;
  font-weight: 600;
}

.average-rating img {
  height: 21px;
  width: auto;
}

.net-rating {
  color: #434343;
  font-weight: 600;
  font-size: 12px;
  margin-bottom: 10px;
}

.rating-box {
  border: 2px solid #eaeaec;
  border-radius: 3px;
  padding: 2px 10px;
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 8px;
  color: #575757;
  font-size: 16px;
  font-weight: 400;
}

.rating-box span {
  color: #000;
}

.rating-box img {
  max-height: 18px;
  margin: 0 10px 0 3px;
}

.rating-box .line {
  height: 20px;
  width: 2px;
  background-color: #c4c4c4;
  margin-right: 8px;
}

.produc-desc .add-to-cart-btn,
.produc-desc .add-to-wishlist-btn {
  margin-top: 24px;
  padding-top: 6px;
}

.add-to-cart-btn,
.add-to-wishlist-btn {
  border-radius: 5px;
  padding: 4px 0;
  font-size: 16px;
  font-weight: 600;
  min-width: 176px;
}

.add-to-wishlist-btn {
  border: 2px solid #d4d5d9;
}

.add-to-cart-btn svg,
.add-to-wishlist-btn svg {
  max-height: 20px;
  margin-top: -4px;
  margin-right: 6px;
}

.add-to-cart-btn svg,
.add-to-wishlist-btn svg {
  fill: none;
  stroke: #000;
}

.produc-desc .add-to-cart-btn {
  background-color: var(--primaryColor);
  color: #fff;
}

.produc-desc .add-to-cart-btn.added-to-cart {
  border: 2px solid #fa8925;
  color: var(--primaryColor);
  background-color: #fff;
}

.produc-desc .add-to-wishlist-btn.added-to-wishlist {
  border: 2px solid #fa8925;
  color: var(--primaryColor);
  background-color: #fff;
}

.produc-desc .add-to-cart-btn svg {
  stroke: #fff;
}

.produc-desc .add-to-cart-btn.added-to-cart svg {
  stroke: #fa8925;
}

.produc-desc .add-to-wishlist-btn.added-to-wishlist svg {
  stroke: none;
  fill: #dd0000;
}

.add-to-wishlist-btn span {
  transition: var(--trans);
  color: #000 !important;
}

.produc-desc .add-to-cart-btn {
  margin-right: 12px;
}

.pincode-input {
  border: 1px solid #bfc0c6;
  max-width: 222px;
  margin-top: 30px;
  border-radius: 5px;
}

.pincode-input input {
  font-size: 18px;
  font-weight: 500;
  border: none !important;
}

.pincode-input input::placeholder {
  font-size: 14px;
}

.pincode-input a {
  color: #df1b1b !important;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 4px;
}

.get-date {
  font-weight: 600;
  font-size: 12px;
  color: #938e8e;
}

.inner-product-description,
.inner-customer-reviews:not(.review-page .inner-customer-reviews),
.inner-cart-section,
.review-page {
  padding: 36px 185px;
  font-size: 16px;
}

.inner-customer-reviews h6 {
  cursor: pointer;
  color: #545454;
  display: flex;
  align-items: center;
  font-weight: 600 !important;
  font-size: 18px !important;
}

.inner-customer-reviews h6 img {
  max-height: 20px;
  margin-top: -2px;
}

.product-description {
  background: #f5f5f5;
  margin-top: 44px;
}

.product-description .product-features {
  color: #282c3f;
}

.product-description p {
  line-height: 22px;
}

.product-description .product-features ul {
  padding-left: 10px !important;
}

.product-description .product-features ul li {
  position: relative;
  padding-left: 12px;
  line-height: 22px;
}

.product-description .product-features ul li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  height: 3px;
  width: 3px;
  border-radius: 10px;
  background-color: #282c3f;
}

.review-box {
  display: flex;
  margin-top: 6px;
}

.review-box img {
  max-height: 26px;
}

.review-box .user-desc {
  padding-left: 8px;
  padding-top: 6px;
}

.review-box .user-star-ratings {
  display: flex;
  align-items: center;
  line-height: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 2px;
}
.review-box .user-star-ratings .starss {
  min-width: 76px;
  align-items: end;
}
.review-box .user-star-ratings .starss img {
  max-height: 13px;
  display: inline-block;
}

.review-box .comment {
  display: block;
  margin-bottom: -4px;
  line-height: 30px;
}

.review-box .user-desc .name {
  line-height: 16px;
  font-size: 14px;
}

.review-box .date {
  color: #595959;
  font-size: 12px;
  margin-bottom: 4px;
  line-height: 20px;
}

.review-box p {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
}

.show-read-more .more-text{
  display: none;
}

.show-read-more .read-more {
  color: var(--color3) !important;
  font-weight: 700 !important;
  text-transform: capitalize;
}

.see-all-reviews {
  color: #007185 !important;
  font-weight: 600;
  font-size: 13px;
  margin-top: 6px;
}

.rating-bar {
  display: flex;
  align-items: center;
  color: #c1c1c1;
  font-size: 11px;
  line-height: 20px;
}

.rating-bar span {
  color: #4d4d4d;
}

.rating-bar .progress {
  min-width: 132px;
  height: 14px;
  border-radius: 4px;
  background: transparent;
  margin: 0 6px;
  position: relative;
  overflow: hidden;
  border: none;
}

.rating-bar .progress::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #c1c1c1;
  background: #e8e8e8;
  z-index: -1;
  border-radius: 4px;
}

.rating-bar .progress .progress-bar {
  background: #ffcb46;
}

.productDetail-page .product-view-carousel {
  max-width: 100vw;
  overflow-x: hidden;
}

.productDetail-page .product-view-carousel .img-block {
  height: 485px;
  width: 100% !important;
  overflow: hidden;
  text-align: center;
}

.productDetail-page .product-view-carousel .item img {
  height: 485px;
  width: auto;
  margin: 0 auto;
  /* height: 485px;
  width: 100%; */
  object-fit: contain;
  object-position: center;
}

.product-view-carousel .owl-dots {
  display: block !important;
  text-align: center;
  z-index: 10;
  position: relative;
}

.product-view-carousel .owl-dots button span {
  display: block;
  height: 10px;
  width: 10px;
  background: #d4d5d9;
  opacity: 1 !important;
  border-radius: 50px;
  margin: 0 2px;
  transition: var(--trans);
}

.product-view-carousel .owl-dots button.active span {
  background: var(--primaryColor);
}

.modal {
  padding: 0 !important;
}

#reviewModal {
  z-index: 10000;
  background-color: rgba(0, 0, 0, 0.6);
}

#reviewModal input,
#reviewModal textarea {
  width: 100%;
  border: 1px solid #d5d5d5;
  border-radius: 5px;
  padding: 3px 10px;
      cursor: pointer;
}

#reviewModal input::placeholder,
#reviewModal textarea::placeholder {
  color: #909090 !important;
  font-size: 14px;
  font-weight: 500;
}

#reviewModal .btn-close {
  position: absolute;
  top: 10px;
  right: 10px;
}

#reviewModal hr {
  background-color: #efefef;
  opacity: 1;
}

.file-input {
  position: relative;
  height: 100px;
  width: 100px;
}

.file-input input {
  position: absolute;
  height: 100px !important;
  width: 100px !important;
  background-color: #0067dd !important;
  opacity: 0;
}

.file-input .file-input-block {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  font-weight: 200;
  color: #a5a5a5;
  border: 2px dashed #d5d5d5;
  height: inherit;
  width: inherit;
  border-radius: 5px;
}

.submit-btn {
  background-color: #0d134e;
  border-radius: 6px;
  color: #fff;
  padding: 2px 20px;
}

.starrr {
  display: inline-block;
}
.starrr a {
  font-size: 20px;
  padding: 0 1px;
  cursor: pointer;
  color: #ffd119 !important;
  text-decoration: none;
}
.starrr a.far {
  color: #ffd119 !important;
  opacity: 0.6;
}
.starrr {
  display: inline-block;
}
.inner-cart-section .owl-carousel .owl-item img {
    height: 230px;
}
/* Zoom Image Ends */


#newAddressModal .modal-content,
#newAddressModal .modal-body {
  padding: 0;
  border-radius: 0 !important;
}

#newAddressModal .btn-close {
  height: 24px;
  width: 24px;
}

.add-address-section {
  max-height: 96vh;
  overflow-y: auto;
}

.add-address-section input:focus {
  outline: none;
}

#newAddressModal h4 {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid #ededed;
  padding: 18px 20px;
  position: sticky;
  top: 0;
  height: auto;
  background-color: #fff;
}

.add-address-button-block {
  position: sticky;
  bottom: 0;
  left: 0;
  height: auto;
  width: 100%;
  padding: 10px;
  background-color: #fff;
  box-shadow: 0 -3px 4px rgba(0, 0, 0, 0.15);
}

.add-address-btn {
  display: block !important;
  width: 100%;
  background-color: var(--primaryColor);
  color: #fff !important;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 0;
  text-align: center;
  border-radius: 5px;
  text-transform: uppercase;
}

.address-form-block {
  padding: 10px 20px;
}

.address-form-block h5 {
  text-transform: uppercase;
  font-size: 15px;
  margin-bottom: 15px;
}

.add-address-section input {
  width: 100%;
  border: 1px solid #ededed;
  padding: 8px 14px;
  border-radius: 6px;
  margin-bottom: 14px;
}

.add-address-section input::placeholder {
  color: #a5a5a5;
}

.disabled-inputs input {
  background-color: #ededed;
}

.address-radio {
  display: flex;
  height: 30px;
}

.address-check-container {
  display: block !important;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 80px;
  margin-right: 20px;
}

.address-check-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark-address {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 80px;
  background-color: transparent;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #000000;
}

.address-check-container input:checked ~ .checkmark-address {
  border: 1px solid #fa8925;
  color: #fa8925;
}

.checkmark-address:after {
  content: "";
  position: absolute;
  display: none;
}

.address-check-container input:checked ~ .checkmark-address:after {
  display: block;
}

.address-checkbox {
  font-size: 14px;
  color: #7c7c7c;
}

.checkbox-container {
  display: block;
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox-checkmark {
  position: absolute;
  top: 4px;
  left: 0;
  height: 18px;
  width: 18px;
  border: 1px solid #000;
}

.checkbox-container input:checked ~ .checkbox-checkmark {
  background-color: var(--color2);
  border: 1px solid var(--color2);
}

.checkbox-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkbox-checkmark:after {
  display: block;
}

.checkbox-container .checkbox-checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 1px 1px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}


/*
 *  STYLE 4
 */

#style-4::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: transparent;
}

#style-4::-webkit-scrollbar
{
	width: 6px;
	background-color: #F5F5F5;
}

#style-4::-webkit-scrollbar-thumb
{
	background-color: #d8d8d8;
}
#style-4::-webkit-scrollbar-thumb:hover {
   background: #b1b1b1;
}

#productimg-mobileview .slider-container-new {
  height: 100vh;
  display: inline-flex;
  overflow: hidden;
  scrollbar-width: none;
  transform: translateX(0);
  will-change: transform;
  transition: transform 0.3s ease-out;
  cursor: grab;
}

#productimg-mobileview .slide-new{
  max-height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0rem;
 position: relative;
}




@media(min-width: 1200px){
  
#productimg-mobileview .slide-new {
    padding: 3rem;
  }
}


#productimg-mobileview .slide-new img{
  max-width: 100vw;
  max-height: 100vh;
  transition: transform 0.3s ease-in-out;
  border-radius: 0px;
  user-select: none;
}


#productimg-mobileview .grabbing {
  cursor: grabbing;
}


#productimg-mobileview .grabbing .slide-new img{
  transform: scale(0.9);
}


/* @media (min-width: 576px){
.modal-dialog {
    max-width: 500px;
    margin: 0.75rem auto;
}
} */

/* .slider-container-new {
  height: 100vh;
  display: inline-flex;
  overflow: hidden;
  scrollbar-width: none;
  transform: translateX(0);
  will-change: transform;
  transition: transform 0.3s ease-out;
  cursor: grab;
}

.slide-new{
  max-height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

@media(min-width: 1200px){
  .slide-new {
    padding: 3rem;
  }
}

.slide-new img{
  max-width: 100%;
  max-height: 100%;
  transition: transform 0.3s ease-in-out;
  box-shadow: 5px 5px 50px -1px var(--shadow);
  border-radius: 4px;
  user-select: none;
}

.grabbing {
  cursor: grabbing;
}

.grabbing .slide-new img{
  transform: scale(0.9);
  box-shadow: 5px 5px 40px -1px var(--shadow);
} */

/* ----------------New CSS for color and size section--------------------- */

.size-color-chart {
  margin-top: 22px;
}

.size-color-chart h5 {
  text-transform: uppercase;
  color: var(--color2);
  font-weight: 500 !important;
  font-size: 18px;
  margin-bottom: 8px !important;
  margin-right: 40px;
}

.size-color-chart h6 {
  text-transform: uppercase;
  color: var(--primaryColor);
  font-weight: 500 !important;
  font-size: 16px;
  margin-bottom: 8px !important;
}
.size-color-chart .mb-00 {
	margin-bottom:0px !important;
}
/* .left-size-chart, .left-color-chart {
  display: grid;
  grid-template-columns: 48px 48px 48px 48px 48px;
  column-gap: 8px;
  row-gap: 8px;
} */

.left-size-chart li, .left-color-chart li {
  display: inline-block;
  margin-right: 8px;
  margin-bottom: 8px;
}

.selected-text {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
}
.width120-freesize {
	width:auto !important;
	border-radius: 40px !important;
	padding: 0px 15px;
}
.width120-freesize.outstock {
    color: #D5D5D5;
    cursor: not-allowed;
    pointer-events: none;
    overflow: hidden;
}
.width120-freesize.outstock::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    height: 1px;
    width: 100%;
    transform: rotateZ(340deg) translateY(-50%);
    background-color: #D5D5D5;
}
.size-circle, .color-circle {
  height: 48px;
  width: 48px;
  border: 1px solid #D5D5D5;
  border-radius: 100px;
  background-color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--trans);
  position: relative;
}

.size-circle:hover, .color-circle:hover {
  border: 1px solid var(--primaryColor);
}

.size-circle.out-of-stock {
  color: #D5D5D5;
  cursor: not-allowed;
  pointer-events: none;
}

.size-circle.out-of-stock::before {
  content: '';
    position: absolute;
    top: 50%;
    right: 0;
    height: 1px;
    width: 45px;
    transform: rotateZ(-45deg) translateY(-50%);
    background-color: #D5D5D5;
}

.size-circle.selected-size-color, .color-circle.selected-size-color {
  background-color: #0D134E;
  color: #fff;
}

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

.size-color-chart ul li {
  position: relative;
}

.size-color-chart .badge {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 3px;
  transform: translateX(-50%);
  width: 40px;
  height: 10px;
  border-radius: 0;
  background-color: var(--primaryColor);
  color: #fff;
  font-size: 10px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
}

.state-desc {
  font-size: 15px;
  margin-left: 6px;
  white-space: nowrap;
}

.color-circle {
  position: relative;
}

.color-circle .tooltip {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) scale(0);
  opacity: 0;
  width: auto;
  text-align: center;
  border-radius: 2px;
  padding: 2px 10px;
  background-color: #fff;
  border: 1px solid #D5D5D5;
  font-size: 12px;
  margin-top: 5px;
}

.color-circle:hover .tooltip {
  transform: translateX(-50%) scale(1);
  opacity: 1;
}

/* ------- */



/* ---------------- Download Page Css --------------------- */
.download-zindex-filter {
	z-index: 4;
}
.download-zindex-filter.filter-shown {
    z-index: 10000;
}
.bottom-fixed-language {
    position: fixed;
    bottom: 0px;
    background: white;
    width: 100%;
    left: 0px;
    background: #FEFEFE;
    box-shadow: 0px -4px 4px rgb(213 213 213 / 50%);
    text-align: center;
    padding: 4.5px;
    z-index: 5;
	display:none;
}
.bottom-fixed-language button {
    border: 1px solid #e3e4e8;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 8px;
        width: 264px;
    font-size: 15px;
    margin: 1px auto;
    background: #FFFFFF;
    border: 1px solid #D4D5D9;
    border-radius: 4px;
    height: 40px;
}
.bottom-fixed-language button:first-child {
    margin-right: auto;
}
.bottom-fixed-language button svg {
    max-height: 6px;
    width: 10px;
    transition: var(--trans);
	transform: rotate(180deg);
}
.language-dropdown li {
    padding-left: 8px;
}
.bottom-fixed-language .openSort-btn.open svg {
    transform: rotateZ(0deg);
}
.download-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 46px;
    border: 1px solid #e9e9ed;
    border-top: 0;
    border-right: none;
    margin-left: 28px;
    padding-left: 46px;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e9e9ed;
}
.download-box {
	box-shadow:0px 2px 16px rgba(213, 213, 213, 0.4);
	background:white;
	padding:15px;
	position:relative;
	margin-bottom: 40px
}
.download-box:after {
	background: #E0E6F0;
	content:"";
	height: 240px;
	width:100%;
	position:absolute;
	top:0px;
	left:0px;
}
.download-box a {
    display: block;
    z-index: 1;
    text-align: center;
    position: relative;
}
.download-box img {
    width: 240px;
    height: 300px;
    margin-bottom: 10px;
    border: 3px solid #fefefe;
    border-radius: 5px;
    object-fit: contain;
}
.download-box h4 {
        font-size: 24px;
    line-height: 40px;
    font-weight: 600 !important;
    color: #000;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    /* min-height: 36px; */
    text-align: center;
    margin-bottom: 8px;
}

.download-box h5 {
	font-size: 20px;
    line-height: 30px;
    font-weight: 400 !important;
    color: #000;
}
.download-box .downloadbtn {
    background: #151875;
    border-radius: 4px;
    padding: 10px;
    text-align: center;
    color: #fff !important;
    width: 240px;
    margin: 1px auto;
    display: block;
    height: 40px;
    line-height: 20px;
}

.tooltip {
  display: inline;
  position: relative;
  opacity: 1;
}


/* ---------------- Contact Page Css --------------------- */


.mt-30 {
	margin-top:30px !important;
}
.contact-boxright {
	background: white;
    border: 2px solid #E9E9ED;
    box-shadow: 0px 2px 16px rgb(181 181 181 / 10%);
    border-radius: 5px;
    display: flex;
    padding: 20px;    position: relative;
	justify-content: space-between;
}
.icon-with-left {
	width:100%;
}
.icon-with-left img {
	float: left;
    width: 40px;
    height: 40px;
    position: relative;
       margin-right: 15px;
}
.icon-with-left h6 {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #0D0E43;
    margin-bottom: 0px;
}
.icon-with-left p {
    font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	color: #0D0E43;
	margin-bottom: 0px;
}

.right-button-faq a {
	background: #FEFEFE;
    border: 2px solid #FA8925;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    line-height: 15px;
    color: #FA8925 !important;
    padding: 10px 10px;
    width: 140px;
    height: 40px;
    text-align: center;
	transition: 0.2s ease;
}
.right-button-faq a:hover {
	background:#FA8925;
	color:#fff !important;
}

.contact-banner img {
	width: 100%;
    margin-top: 35px;
}

.contact-page .linetop-border {
    border-top: 1px solid #e9e9ed;
    padding-top: 40px;
    margin-top: 40px;
}

.left-tabs-contact {
    border-top: 1px solid #E9E9ED;
    padding-top: 0px;
    margin-top: 40px;
    margin-bottom: 50px;
    padding-bottom: 0px;
}
.left-tabs-contact .border-lefttab {
	border-left: 1px solid #E9E9ED;
	padding-bottom: 150px;
}
.left-tabs-contact .tab-content&gt;.tab-pane {
    padding: 25px;
    padding-right: 0px;
	padding-left:20px;
}
.left-tabs-contact .nav-pills .nav-link {
    color: #0D0E43 !important;
    font-size: 18px;
    font-weight: 500;
    padding: 20px 10px;
}
.left-tabs-contact .nav-pills .nav-link.active {
    border-bottom: none;
    color: #FA8925 !important;
}
.left-tabs-contact .nav-pills .nav-link span {
    float:right;
}


.ptop-0 {
	padding-top:0px !important;
}
.pbottom-0 {
	padding-bottom:0px !important;
}
.ptop-10 {
	padding-top:10px !important;
}
.borderline-tabs {
    border-bottom: 1px solid #E9E9ED !important;
    padding-bottom: 0px !important;
    padding-top: 0px !important;
    display: block;
       width: 85%;
    position: relative;
    left: 15px;
    /* height: 6px; */
    margin-bottom: 0px;
}
.mbottom {
	margin-bottom:30px;
}
.w200 {
	width: 205px !important;
}
.w250 {
	width: 250px !important;
}
.type-radio-contactus {
    margin-top: 30px;
    margin-bottom: 30px;
}
.h100-vh {
	height: 100vh;
}

.type-radio-contactus [type="radio"]:checked,
.type-radio-contactus [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
.type-radio-contactus [type="radio"]:checked + label,
.type-radio-contactus [type="radio"]:not(:checked) + label {
    position: relative;
    padding-left: 50px;
    cursor: pointer;
    display: inline-block;
    color: #0D0E43;
    font-weight: 500;
    font-size: 22px;
        line-height: normal;
	width: 210px;
}
.type-radio-contactus [type="radio"]:checked + label:before,
.type-radio-contactus [type="radio"]:not(:checked) + label:before {
        content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 26px;
    height: 26px;
    border: 2px solid #0C4DA2;
    border-radius: 100%;
    background: #fff;
}
.type-radio-contactus [type="radio"]:checked + label:after, .type-radio-contactus [type="radio"]:not(:checked) + label:after {
    content: '';
    width: 14px;
    height: 14px;
    background: #0c4da2;
    position: absolute;
    top: 6px;
    left: 6px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.type-radio-contactus [type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
.type-radio-contactus [type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.form-contact-tab {
	margin-top:15px;
}
.contact-label {
	    font-weight: 500;
    font-size: 22px;
    line-height: 20px;
    color: #0D0E43;
}
.contact-input {
	background: #FEFEFE;
    border: 1px solid #D5D5D5;
    border-radius: 4px;
    width: 50%; font-weight: 500;
    padding: 5px 15px;
    font-size: 16px;
    height: 45px;
	margin-bottom:30px;
}
.contact-input:focus {
    border: 1px solid #0D0E43;
	outline:none;
}

.textarea-contact {
	background: #FEFEFE;
    border: 1px solid #D5D5D5;
    border-radius: 4px;
    width: 50%; font-weight: 500;
    padding: 15px 15px;
    font-size: 16px;
    height: 191px;
	margin-bottom:30px;
}
.textarea-contact:focus {
    border: 1px solid #0D0E43;
	outline:none;
}

select {
  color: #858585;
}
.contact-input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #858585;
}
.contact-input::-moz-placeholder { /* Firefox 19+ */
  color: #858585;
}
.contact-input:-ms-input-placeholder { /* IE 10+ */
  color: #858585;
}
.contact-input::-moz-placeholder { /* Firefox 18- */
  color: #858585;
}
.mbottom-5 {
	margin-bottom:5px;
}
.contact-teatarea-small {
	font-weight: 500;
	font-size: 16px;
	line-height: 19px;
	color: #0D0E43;
}
.custom-file-upload {
  font-family: "Niramit", sans-serif;
  color: #fff !important;
  padding: 5px 15px !important;
  background: #0DB350 !important;
  border: 1px solid #0DB350 !important;
  border-radius: 4px !important;
  cursor: pointer !important;
  width:auto !important;
  font-size:16px !important;
  font-weight:400 !important;
  
}
.custom-file-upload:hover {
  background: #0DB350;
}

.submit-btn-contact {
	background: #151875;
    border-radius: 4px;
    color: white;
    padding: 5px 15px;
    width: 144px;
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 15px;
}
.submit-btn-contact:hover {
  transition: 0.2s ease;
  background:#FA8925;
}
.more-detail-contact {
    padding-left: 60px;
    padding-top: 10px;
    color: #000000;
}
.more-detail-contact p {
    color: #000000;    margin-bottom: 5px;
}
.more-detail-contact p a {
    color: #151875 !important;
}
.more-detail-contact p a:hover {
    color: #FA8925 !important;
}

.pl35 {
	padding-left:35px;
}

.ticket-table {
	margin-bottom:30px;
	border: 1px solid #D5D5D5;
	border-radius: 4px;    padding: 0px;
	    margin-top: 5px;
}
.ticket-table table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

.ticket-table td, .ticket-table th {
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid #D5D5D5;
  text-align: left;
  padding: 10px;
  font-weight: 500;
  font-size: 18px;
  line-height: 23px;
  color: #000000;
}

.ticket-table tr:nth-child(even) {
  background-color: #F8F8F8;
}
.mobile-shotabs {
	display:none;
}

.selectbox-contactus {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
select.selectbox-contactus {
  background-image: url(../images/contact-us/arrow-down.svg);
  background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
  background-repeat: no-repeat;
}

select.selectbox-contactus:focus {
  background-image: url(../images/contact-us/arrow-down.svg);
  background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
  background-repeat: no-repeat;
  outline: 0;
}
.modal {
    z-index: 99999;
}
	.modal.left .modal-dialog {
		position: fixed;
		margin: auto;
		width: 100%;
		height: 100%;    max-width: 100%;
		-webkit-transform: translate3d(0%, 0, 0);
		    -ms-transform: translate3d(0%, 0, 0);
		     -o-transform: translate3d(0%, 0, 0);
		        transform: translate3d(0%, 0, 0);
	}

	.modal.left .modal-content {
		height: 100%;
		overflow-y: auto;
	}
	
	.modal.left .modal-body {
    padding: 0px 0px 80px;
}

/*Left*/
	.modal.left.fade .modal-dialog{
		left: 0;
		-webkit-transition: opacity 0.3s linear, left 0.3s ease-out;
		   -moz-transition: opacity 0.3s linear, left 0.3s ease-out;
		     -o-transition: opacity 0.3s linear, left 0.3s ease-out;
		        transition: opacity 0.3s linear, left 0.3s ease-out;
	}
	
	.modal.left.fade.in .modal-dialog{
		left: 0;
	}
        
/* ----- MODAL STYLE ----- */
	.modal-content {
    border-radius: 8px;
    border: none;
}

	.modal-header {
		border-bottom-color: #EEEEEE;
		background-color: #FAFAFA;
	}
	
	
	
	
/* ------------ MEDIA PAGE CSS ---------------- */	

.media-boxpage {
	margin-bottom:30px;
}
.media-boxpage a {
    background: white;
    padding: 0px;
    position: relative;
    margin-bottom: 14px;
    width: 100%;
}
.media-boxpage a:focus-visible {
    outline: none;
    box-shadow: none;
}
.media-boxpage img {
    border-radius: 25px;
	width:100%;
}


.videoWrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}
.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#media_video_modal .modal-content {
  background-color: transparent !important;
}

#media_video_modal .modal-body {
  padding: 34px;
  background-color: transparent !important;
}

#media_video_modal .modal-body iframe {
  border-radius: 10px;
}

#media_video_modal .btn-close {
  background-color: #fff;
  border-radius: 50px;
  padding: 6px;
}
.onb-embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
  margin-bottom: 1em;
}
.onb-embed-responsive .onb-embed-responsive-item {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  border: 0;
}

.onb-embed-responsive__16by9 {
  padding-bottom: 56.25%;
}

.onb-embed-responsive__4by3 {
  padding-bottom: 75%;
}



/******** Message Buyer Page css ********/

.calendar-icon {
	margin-top: 20px;
    font-size: 18px;
    font-weight: 500;
}
.calendar-icon img {
	width:45px;
	height:45px;
	margin-right:15px;
}	
/* Timeline */
.timeline {
      border-left: 1px solid #D5D5D5;
    background: rgba(255, 255, 255, 0.03);
    color: #000;
    /* margin: 50px auto; */
    letter-spacing: normal;
    position: relative;
    line-height: 1.4em;
    font-size: 14px;
    padding: 50px;
    list-style: none;
    text-align: left;
    font-weight: 100;
    max-width: 100%;
    margin-left: 160px !important;
        padding-left: 50px !important;
}
.timeline h1,
.timeline h2,
.timeline h3 {
  font-size: 22px;
  font-weight: 600 !important;
}
.timeline .event {
  padding-bottom: 25px;
  margin-bottom: 30px;
  position: relative;
}
.timeline .event:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border: none;
}
.timeline .event:before,
.timeline .event:after {
  position: absolute;
  display: block;
  top: 0;
}
.timeline .event:before {
    left: -210px;
    color: rgb(0 0 0);
    content: attr(data-date);
    text-align: left;
    font-weight: 500;
    font-size: 18px;
    min-width: 130px;
    top: 4px;
}
.timeline .event:after {
    left: -80px;
    /* background: #D5D5D5; */
    border-radius: 50%;
    /* height: 1px; */
    width: 29px;
    content: "";
    top: 15px;
    border-bottom: 1px solid #D5D5D5;
}
.date-timeline {
    margin-bottom: 35px;
    margin-top: 20px;
    font-size: 22px;
    font-weight: 600 !important;
}
.message-buyer-img {
    display: flex;
    /* grid-template-columns: 1fr 1fr; */
    column-gap: 46px;
    padding-top: 5px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.message-buyer-img .img-box-buyer img {
    margin-bottom: 40px;
    max-width: 100%;
}
.img-box-buyer h4 {
	font-size: 18px;
    font-weight: 600;
}
.img-box-buyer p {
	font-size: 14px;
    font-weight: 400;
    line-height: 24px;
}




/****** Compliance Documents Page css ******/

.compliance-section-page {
    margin-top: 30px;
}
.compliance-box {
    background: #FEFEFE;
    border: 2px solid #E9E9ED;
    box-shadow: 0px 2px 16px rgb(181 181 181 / 10%);
    border-radius: 5px;
    margin-bottom: 20px;
    padding: 15px;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}
.compliance-box span {
    font-size: 18px;
    line-height: 22px;
    font-weight: 500 !important;
    color: #000;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 29px;
    text-align: left;
    margin-bottom: 0px;
    width: 75%;
}
.compliance-box a {
    background: #FEFEFE;
    border: 2px solid #FA8925;
    border-radius: 5px;
    color: #FA8925 !important;
    padding: 5px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 130px;
}
.compliance-box a:hover {
	background:#FA8925;
	color:#FFF !important;
}



/****** Profile Page css ******/


.profile-img-detail {
    display: flex;
    padding: 35px 0px;
    padding-bottom: 20px;
    width: 100%;
    align-items: center;
}
.profile-img-detail img {
    width: 75px;
    height: 75px;
    border-radius: 100px;
}
.detail-profile {
	width: 100%;
    padding-left: 20px;
    font-size: 16px;
}
.line-profile {
	border-bottom: 1px solid #E9E9ED !important;
    padding-bottom: 0px !important;
    padding-top: 0px !important;
    display: block;
       width: 85%;
    position: relative;
    left: 15px;
        margin-bottom: 15px;
}
.profile-left-menubar {
	padding-bottom: 15px;
    margin-bottom: 0px;
    display: block;
}
.profile-left-menubar li a {
    color: #0D0E43 !important;
    font-size: 18px;
    font-weight: 500;
    padding: 5px 10px;
    width: 100%;
    padding-right: 40px;
    position: relative;
}
.profile-left-menubar li a span {
    float: right;
    position: absolute;
    right: 10px;
}
.profile-left-menubar li a:hover {
    color: #FA8925 !important;
}
.profile-left-menubar li a.active {
    color: #FA8925 !important;
}
.lgout-btn {
    background: #FEFEFE;
    border: 2px solid #D5D5D5;
    border-radius: 10px;
    padding: 5px;
    width: 85%;
    font-size: 18px;
    font-weight: 500;
    color: #0D0E43 !important;
    text-align: center;
    display: block;
    margin-left: 0px;
    position: relative;
    left: 15px;
    margin-top: 24px;
}
.lgout-btn img {
	width: 30px;
}
.profile-page-title {
    color: #0D0E43 !important;
    font-weight: 500 !important;
    font-size: 30px;
    line-height: 30px;
    padding-top: 35px;
    padding-left: 20px;
}
.right-profile-img-detail {
    display: flex;
    padding: 15px 0px;
    padding-bottom: 0px;
    width: 50%;
    align-items: center;
    justify-content: flex-start;
    margin: 0px auto;
}
.right-profile-img-detail img {
    width: 85px;
    height: 85px;
    border-radius: 100px;
}
.right-profile-img-detail .detail-profile {
	width: 100%;
    padding-left: 20px;
    font-size: 20px;    font-weight: 400;
}
.right-profile-img-detail .detail-profile span {
	font-weight: 600;
}

.self-repurchase {
	padding-top: 25px;
    padding-left: 20px;
}
.self-repurchase h4 {
	font-weight: 500 !important;
	font-size: 24px;
	line-height: 30px;
	color: #000000;
}
/*.self-repurchase-table th {
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #D5D5D5;
    text-align: left;
    padding: 10px;
    font-weight: 600;
    font-size: 18px;
    line-height: 23px;
    color: #000000;
    width: 50%;
    border-right: 1px solid #D5D5D5;
}
.self-repurchase-table th:last-child {
    border-right: none;
}
.self-repurchase-table td {
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #D5D5D5;
    text-align: left;
    padding: 16px 10px;
    font-weight: 500;
    font-size: 18px;
    line-height: 23px;
    color: #000000;
	width: 50%;
    border-right: 1px solid #D5D5D5;
}
.self-repurchase-table td:last-child {
    border-right: none;
}
.self-repurchase-table {
	margin-bottom: 30px;
    padding: 0px;
    margin-top: 5px;
    background: #FEFEFE;
    border: 1px solid #D5D5D5;
    box-shadow: 0px 1px 8px rgb(219 219 219 / 40%);
    border-radius: 4px;
}
.self-repurchase-table table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
}
.self-repurchase-table tr:nth-child(even) {
       background-color: transparent;
}
*/

.self-repurchase-table {
    margin-bottom: 29px;
}
/*table {
    border: 1px solid #D5D5D5;
    border-collapse: separate;
    overflow: hidden;
    border-spacing: 0;
    border-radius: 4px;
    text-align: left;
    border: 1px solid #D5D5D5;
    width: 100%;
}
table th, table td {
    padding: 16px 10px;
    vertical-align: middle;
    border-right: 1px solid #D5D5D5;
    border-bottom: 1px solid #D5D5D5;
    width: 50%;
	font-weight: 500;
    font-size: 18px;
    line-height: 23px;
    color: #000000;
}
table th:last-child, table td:last-child {
  border-right: none;
}
table th {
  background: #fff;
}
table td {
  background: #fff;
}
table tbody tr:last-child th, table tbody tr:last-child td {
  border-bottom: none;
}
*/

.right-profile-linemiddle {
    border-bottom: 2px solid #E9E9ED !important;
    padding-bottom: 0px !important;
    padding-top: 0px !important;
    display: block;
    width: 300px;
    position: relative;
    margin: 0px auto;
	margin-bottom: 15px;
}
.smsmbox {
    padding-top: 8px;
    padding-left: 20px;
    margin-bottom: 20px;
}
.smsmbox span {
	font-weight: 600;
}
.mt-15 {
	margin-bottom:15px;
}
.new-mt-20 {
	margin-top: 20px;
}

.tab-menu {
    margin-top: 20px;
    border: 1px solid #D5D5D5;
    background: transparent;
    border-radius: 8px;
    width: auto;
    height: 48px;
    position: relative;
    display: inline-block;
}
.tab-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: inline-block;
    width: 100%;background: transparent;
}
.tab-menu ul li {
    -ms-flex-preferred-size: 0;
    /* flex-basis: 0; */
    -ms-flex-positive: 1;
    /* flex-grow: 1; */
    /* text-align: center; */
    float: left;
	background: transparent;
}
.tab-menu ul li a {
    color: #fff;
    letter-spacing: normal;
    display: inline-block;
    padding: 8px 15px;
    display: inline-block;
    text-decoration: none;
    transition: 0.5s all;
    font-size: 14px;
    position: relative;font-weight: 500;
	border-bottom: 2px solid white;
	background: transparent;
}
.tab-menu ul li a::after {
    border-right: 1px solid #D5D5D5;
    content: "";
    position: absolute;
    height: 30px;
    right: 0px;
}
.tab-menu ul li a.active {
    color: #151875 !important;
    text-decoration: none;
    border-bottom: 2px solid #0067DD;
}
.tab-menu ul li a.firstchild-border {
	border-bottom-left-radius:7px;
}
.tab-menu ul li a.lastchild {
	border-bottom-right-radius:7px;
}
.tab-menu ul li a.lastchild::after {
    border-right: none;
    content: "";
    position: absolute;
    height: 30px;
    right: 0px;
}

.tab-box { display:none; }

.tab-teaser {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding-left: 20px;position: relative;
}
.tab-main-box {
    background: transparent;
    padding: 5px 0px;
    border: none;
    margin-top: 0px;
}
.contact-boxright-newset {
    margin-top: 15px;
    padding: 10px;
}
.contact-boxright-newset .icon-with-left img {
    width: 30px;
    height: 30px;
    top: 5px;
}
.mt-new10 {
	margin-top: 30px;
}


/****** My Order Page css ******/


.myorder-box {
    background: #FEFEFE;
    box-shadow: 0px 2px 16px rgb(181 181 181 / 50%);
    border-radius: 5px;
    padding: 20px;
    margin-left: 24px;
    width: 97.5%;
    margin-bottom: 20px;
    position: relative;
}
.order-paginationpad {
   padding-top: 35px;
}
.myorder-box p {
	font-weight: 600;
    font-size: 16px;
    margin-bottom: 2px;
}
.font-weight400 {
	font-weight:400 !important;
}
.font-weight500 {
	font-weight:500 !important;
}
.myorder-img {
	display: flex;
    align-items: center;
}
.myorder-img a span:hover {
	color: #151875 !important;
}
.myorder-img img {
	width: 100px;
    margin-right: 15px;
}
.myorder-box span {
	font-weight: 500;
    font-size: 16px;
}
.myorder-box small {
	display: block;
    font-size: 16px;
    font-weight: 600;
}
.view-order-btn {
    padding: 5px 15px;
    color: #FA8925 !important;
    border: 2px solid #FA8925;
    border-radius: 5px;
    margin-top: 10px;
	transition: 0.3s ease;
}
.view-order-btn:hover {
    padding: 5px 15px;
    color: #fff !important;
    border: 2px solid #FA8925;
    border-radius: 5px;
    margin-top: 10px;
	background:#FA8925;
	transition: 0.3s ease;
}
.detailoder:hover {
	color: var(--color3) !important;
	cursor:pointer;
}

/****** My Order Details Page css ******/

.your-order-title {
    color: #000000 !important;
    font-weight: 600 !important;
    font-size: 20px;
    line-height: 30px;
    padding-top: 0px;
    padding-left: 24px;
}

.order-detailbox {
	background: #FEFEFE;
	box-shadow: 0px 2px 16px rgba(181, 181, 181, 0.5);
	border-radius: 5px;
	margin-left: 24px;
    width: 97.5%;
	margin-bottom: 20px;
}
.mt-20-order-detail {
	margin-top:20px;
}
.inner-orderbox {
    padding: 15px 25px;
    border-bottom: 1px solid #E9E9E9;
    padding-bottom: 15px;
    margin-top: 10px;
    margin-bottom: 0px;
}
.inner-orderbox .myorder-img {
    display: block;
}
.inner-orderbox .myorder-img img {
	width: 100px;
    margin-right: 25px;
	float: left;
}
.inner-orderbox .myorder-img span {
    font-weight: 500;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}
.inner-orderbox .myorder-img small {
	display: block;
    font-size: 16px;
    font-weight: 600;
}

.order-tracking{
	text-align: center;
	width: 33.33%;
	position: relative;
	display: block;
}
.order-tracking .is-complete {
    display: block;
    position: relative;
    border-radius: 50%;
    height: 25px;
    width: 25px;
    border: 0px solid #AFAFAF;
    background-color: #E2E2E2;
    margin: 0 auto;
    transition: background 0.25s linear;
    -webkit-transition: background 0.25s linear;
    z-index: 2;
}
.order-tracking.completed .is-complete{
	border-color: #26A541;
	border-width: 0px;
	background-color: #26A541;
}
.order-tracking.completed .is-complete:after {
	border-color: #fff;
	border-width: 0px 3px 3px 0;
	width: 7px;
	left: 11px;
	opacity: 1;
}
.order-tracking p {
	color: #A4A4A4;
	font-size: 16px;
	margin-top: 8px;
	margin-bottom: 0;
	line-height: 20px;
}
.order-tracking p span{font-size: 14px;}
.order-tracking.completed p {
    color: #26a541;
}
.order-tracking.completed p span {
    color: #6B6B6B;
}
.order-tracking::before {
        content: '';
    display: block;
    height: 3px;
    width: calc(100% - 20px);
    background-color: #E2E2E2;
    top: 13px;
    position: absolute;
    left: calc(-50% + 10px);
    z-index: 0;
}
.order-tracking:first-child:before{display: none;}
.order-tracking.completed:before{background-color: #26A541;animation: progress 1500ms ease-in 1;width: 100%;}



.trignale-shape-center {
	content: " ";
    position: relative;
    left: 0px;
    bottom: -80px;
    border-top: none;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-bottom: 15px solid #E9E9E9;
    width: 10px;
    margin: 0px auto;
    display: block;
}
.mt-13-process-circle {
    margin-top: -15px !important;
}
.box {
    width: 100%;
    color: #000000;
    padding: 5px 20px;
    position: relative;
    margin: 0px;
    float: left;
    background: #E9E9E9;
    margin-left: 0px;
    border-radius: 2px;
}
.box.arrow-top {
     margin-top: 15px;
}
.box.arrow-top:after {
    content: " ";
    position: absolute;
    left: 55px;
    top: -15px;
    border-top: none;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-bottom: 15px solid #E9E9E9;
	display:none;
}
.box.arrow-top-center {
	 margin-top: 15px;
}
.box.arrow-top-center:after {
    content: " ";
    position: absolute;
    left: 225px;
    top: -15px;
    border-top: none;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-bottom: 15px solid #E9E9E9;
	display:none;
}

.box.arrow-top-right {
	margin-top: 15px;
}
.box.arrow-top-right:after {
    content: " ";
    position: absolute;
    right: 45px;
    top: -15px;
    border-top: none;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-bottom: 15px solid #E9E9E9;
	display:none;
}
.order-detail-price {
    padding-left: 125px;
    padding-top: 15px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.order-detail-price span {
	font-weight: 400;
	font-size: 16px;
	display:block;
	color: #000000;
}
.font-weight600 {
	font-weight:600;
}
.order-detail-price-right  {
	padding-left: 0px;
	padding-top:15px;
}
.order-detail-price-right span {
	display:block;
}

.rate-star {
    padding: 5px 15px;
    color: #FA8925 !important;
    border: 2px solid #FA8925;
    border-radius: 5px;
    margin-top: 10px;
	transition: 0.3s ease;
}
.rate-star:hover {
    padding: 5px 15px;
    color: #fff !important;
    border: 2px solid #FA8925;
    border-radius: 5px;
    margin-top: 10px;
	background:#FA8925;
	transition: 0.3s ease;
}
.rate-star i {
	margin-right: 5px;
}
.status-none {
	display:none;
}
.justify-content-start-status {
	justify-content: flex-start;
}
.order-tracking.cancal:before {
    background-color: #fb2448;
}
.order-tracking .canclled {
    border-color: #FB2448;
    border-width: 0px;
    background-color: #FB2448;
}
.order-tracking.cancal p {
    color: #fb2448;
}
.order-tracking.cancal p span {
        color: #6B6B6B;
}


@keyframes progress {
   from {
        width: 0;
    }
}




/******** Delivery center css ********/


.delivery-select select{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 12px;
    min-width: 100%;
    border-radius: 10px;
    border-radius: 4px;
    /* margin-left: auto; */
    font-size: 16px !important;
    background-color: #F6F6F6;
    margin-bottom: 10px;
       height: 44px;
    font-weight: 400;
	border: none;
}
.delivery-select select {
    width: 100%;
    background-color: #F6F6F6;
    border-radius: 10px;
	color:#000000;
}
.delivery-select option {
    width: 100%;
    background: #F6F6F6;
    border-radius: 10px;
	padding:14px;
	filter: drop-shadow(0px 2px 16px rgba(181, 181, 181, 0.5));
	border:none;
}
.delivery-select select:focus {
    outline: none;
	border:#F6F6F6 !important;
}
.delivery-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
select.delivery-select {
  background-image: url(../images/contact-us/arrow-down.svg);
  background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
  background-repeat: no-repeat;
  
}

select.delivery-select:focus {
  background-image: url(../images/contact-us/arrow-down.svg);
  background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
  background-repeat: no-repeat;
  outline: 0;
  transform: rotateZ(180deg);
  transition: var(--trans);
}


.responsive-map{
overflow: hidden;
padding-bottom:56.25%;
position:relative;
height:0;
margin-bottom:35px;
filter: drop-shadow(0px 2px 16px rgba(181, 181, 181, 0.5));
border-radius: 15px;

}
.responsive-map iframe{
left:0;
top:0;
height:100%;
width:100%;
position:absolute;
}

.delivery-rightgreybox {
    background: #F6F6F6;
    box-shadow: 0px 2px 16px rgb(181 181 181 / 50%);
    border-radius: 10px;
    display: block;float: left;    margin-bottom: 20px;
	width: 100% !important;
}
.getdirectin {
    background: #FEFEFE;
    border: 2px solid #FA8925;
    border-radius: 5px;
    color: #FA8925 !important;
    padding: 1px 10px;
    font-size: 16px;
    float: left;
}
.getdirectin img {
    margin-right: 5px;
    position: relative;
    top: -2px;
    width: 22px;
    height: 22px;
    object-fit: contain;
}
.delivery-rightgreybox .icon-with-left {
    width: 100%;
    display: flex;
}
.puc-store {
	background: #FEFEFE;
    border: 2px solid #FEFEFE;
    border-radius: 5px;
    color: #000000 !important;
    padding: 1px 10px;
    font-size: 16px;
    float: right;
}
.delivery-rightgreybox .more-detail-contact {
        padding-left: 35px;
    padding-top: 2px;
}
.delivery-rightgreybox .icon-with-left img {
    object-fit: contain;
    width: 25px;
    height: 25px;
    margin-right: 10px;
}
.delivery-rightgreybox .right-titlebox {
	font-size: 16px;
    color: black;
    font-weight: 500 !important;
}
.delivery-mapsticky {
    padding-top: 0px;
    position: sticky;
    top: 68px;
    min-height: 100vh;
    max-height: 2000px;
    padding-bottom: 40px;
}



/* REGISTER PAGE CSS */

.reguster-title {
    font-style: normal;
    font-weight: 600 !important;
    font-size: 32px;
    line-height: 30px;
    color: #151875;
    margin-top: 40px;
    text-align: center;
}
.reguster-subtitle {
	font-style: normal;
	font-weight: 500 !important;
	font-size: 20px;
	line-height: 30px;
	color: #000000;text-align: center;
}	

#multistepsform #progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    counter-reset: step;
    padding-left: 0px !important;
    width: 530px;
    margin: 0px auto !important;
}
#multistepsform fieldset {
   background: white;
    border: 0 none;
    border-radius: 3px;
    box-shadow: none;
    padding: 30px 0px;
    box-sizing: border-box;
    /* width: 470px; */
    margin: 0px 6.5%;
    position: relative;
    /* max-width: 80%; */
    width: 470px;
    margin: 0px auto !important;
}
#multistepsform fieldset:not(:first-of-type) {
  display: none;
}
#multistepsform input,
#multistepsform textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    margin-bottom: 10px;
    width: 97%;
    box-sizing: border-box;
    color: #000000;
    font-size: 16px;
    background: #FEFEFE;
    border: 1px solid #D5D5D5;
    border-radius: 4px;
    height: 40px;
    float: left;
	font-weight: 500;
}
#multistepsform input:focus,
#multistepsform textarea:focus {
  border-color: #D5D5D5;
  outline: none;
 color: #000000;
}
#multistepsform .action-button {
    width: 170px;
    background: #ffffff;
    font-weight: bold;
    color: #000;
    transition: 150ms;
    border: 0 none;
    border-radius: 1px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 15px 0px;
    border: 2px solid #151875;
    border-radius: 5px;
    height: 40px;
    line-height: 15px;
    font-size: 16px;
    float: left;
}
#multistepsform .action-button:hover,
#multistepsform .action-button:focus {
  box-shadow: none;
  color: #000;border: 2px solid #151875;
}
.or-txt {
	text-align: center;
    display: block;
    width: 100%;
    float: left;
    font-size: 20px;
    font-weight: 600;
    margin-top: 15px;
	margin-bottom:3px;
}
.or-txt-login {
	text-align: center;
    display: block;
    width: 100%;
    float: left;
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
}
.or-txt-login a {
    color: #151875 !important;
}
#multistepsform .fs-title {
    font-size: 16px;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 10px;
    text-align: left;
    font-weight: 600 !important;
}
#multistepsform .fs-title img {
    margin-right:5px;
}
#multistepsform .fs-subtitle {
  font-weight: normal;
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
}
#multistepsform #progressbar {
  margin-bottom: 30px;
  overflow: hidden;
  counter-reset: step;    padding-left: 0px !important;
}
#multistepsform #progressbar li {
      list-style-type: none;
    width: 33.33%;
    float: left;
    position: relative;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #000000;
  
}
#multistepsform #progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 50px;
    line-height: 43px;
    display: block;
    font-size: 35px;
    color: #000;
    background: #E2E2E2;
    border-radius: 100px;
    margin: 0 auto 5px auto;
    height: 50px;
}
#multistepsform #progressbar li:after {
  content: "";
  width: 100%;
  height: 3px;
  background: #E2E2E2;
  position: absolute;
  left: -50%;
  top: 25px;
  z-index: -1;
}
#multistepsform #progressbar li:first-child:after {
  content: none;
}
#multistepsform #progressbar li.active {
    font-family: 'Raleway';
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 30px;
	text-align: center;
	color: #5297FF;
}
#multistepsform #progressbar li.active:before, #multistepsform #progressbar li.active:after {
  background: linear-gradient(180deg, #5297FF 0%, #70DBD4 100%);
  color: white;
}

.registerimg {
    width: 100%;
    margin-top: 20px;
}
#multistepsform #progressbar li.active.greencolor {
	color: #59AF59;
}
.formlabel {
    width: 100%;
    float: left;
    margin-bottom: 10px;
}
.formlabel label {
    font-size: 16px;
    font-weight: 600;
}
.formlabel .disabled {
    background:#D5D5D5 !important;
	color: #000000 !important;
}
.formlabel .label-container input {
    position: absolute;
    left: 0px;
}
.onlymobile {
	display:none;
}
#multistepsform input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #858585;
}
#multistepsform input::-moz-placeholder { /* Firefox 19+ */
 color: #858585;
}
#multistepsform input:-ms-input-placeholder { /* IE 10+ */
  color: #858585;
}
#multistepsform input:-moz-placeholder { /* Firefox 18- */
  color: #858585;
}





/* LOGIN PAGE CSS */


.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 0rem;
    background: #236192;    border-radius: 5px;
}
.login-leftside {
	padding: 30px 30px;
    color: white;
}
.rightside-login {
	padding: 30px 30px;
	background:white;
	    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.rightside-login .form-control {
    font-size: 14px;
    height: 44px;
}

.logn-modal-form .group {
    position: relative;
    margin-bottom: 20px;
}
.logn-modal-form input:focus {
    outline: none;
	border-color: #D5D5D5;
}
.logn-modal-form label {
    color: #858585;
    font-size: 16px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 15px;
    top: 6px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
    font-weight: 500;
}
input:focus ~ label, input:valid ~ label {
    top: -12px;
    font-size: 13px;
    color: #000000;
    background: white;
    padding: 0px 5px;
    left: 6px;
}
.logn-modal-form input:focus ~ .bar:before,
.logn-modal-form input:focus ~ .bar:after {
    width: 50%;
}
.logn-modal-form .highlight {
    position: absolute;
    width: 100px;
    top: 25%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}
/* active state */

.logn-modal-form input:focus ~ .logn-modal-form .highlight {
    -webkit-animation: inputHighlighter 0.3s ease;
    -moz-animation: inputHighlighter 0.3s ease;
    animation: inputHighlighter 0.3s ease;
}

.login-btn {
    background: #151875;
    padding: 10px;
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    border-radius: 5px;
    color: white;
    height: 44px;
    line-height: 20px;
    width: 169px;
    margin-bottom: 20px;
}
.cptchimg {
  width: 100%;
}
.to-becontinue {
	font-size: 16px;
    font-weight: 600;
    color: black;
}
.to-becontinue a {
	color:#151875 !important;
}
.ortxt {
	font-weight: 600;
font-size: 20px;color: #000000;
text-align:center;
}
.singhree {
	font-weight: 600;
    font-size: 18px;
}
.singhree a {
	color:#151875 !important;
}
.modal-dialog {
    margin: 30px auto;
}



/* ANIMATIONS ================ */

@-webkit-keyframes inputHighlighter {
    from {
        background: #5264AE;
    }
    to {
        width: 0;
        background: transparent;
    }
}
@-moz-keyframes inputHighlighter {
    from {
        background: #5264AE;
    }
    to {
        width: 0;
        background: transparent;
    }
}
@keyframes inputHighlighter {
    from {
        background: #5264AE;
    }
    to {
        width: 0;
        background: transparent;
    }
}


@media (min-width: 992px) {
	.modal-lg, .modal-xl {
		max-width: 630px;
	}
}


/* MARKET PAGE CSS */

.markettop-sec {
	padding:55px 0px;
}
.markettop-sec img {
	    width: 100%;
}
.markettop-sec p{
	font-size:14px;
}

.marketsecond-sec {
	padding:55px 0px;
}
.bluebox-market {
    background: #bde3e5;
    border-radius: 15px;
    padding: 40px 60px;
    text-align: center;
	position:relative;
}
.bluebox-market img {
    position: absolute;
    right: -40px;
    top: -70px;
    width: 270px;
}
.bluebox-1 {
	display: flex;
    justify-content: center;
    font-size: 14px;
    line-height: 22px;
}
.bluebox-2 {
    display: flex;
    justify-content: center;
    font-size: 14px;
    line-height: 22px;
    padding-top: 75px;
    position: relative;
}

.number-txt {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 100px;
    font-size: 30px;
    color: #bde3e5;
    line-height: 35px;
    text-align: center;
    margin: 0px auto;
    margin-bottom: 10px;
	position:relative;
}
.number-txt:after {
    content: "";
    position: absolute;
    width: 2px;
    height: 30px;
    background: black;
    left: 19px;
    top: -30px;
}
.oneafter {
	position:relative;
}
.oneafter:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: black;
    left: 50%;
    top: -30px;
    margin: 0px auto;
    display: block;
    /* border-right: 2px solid black; */
}
.twoafter {
	position:relative;
}
.twoafter:before {
    content: "";
    position: absolute;
    width: 100%;
    /* height: 2px; */
    /* background: black; */
    left: 0px;
    top: -30px;
    margin: 0px auto;
    display: block;
    border-top: 2px solid black;
}
.threeafter {
	position:relative;
}
.threeafter:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: black;
    right: 50%;
    top: -30px;
    margin: 0px auto;
    display: block;
    /* border-left: 2px solid black; */
}


.bluebox-2 p {
	font-size: 13px;
    line-height: 19px;
    padding: 0px 25px;
}


.marketthird-sec {
	background:#ecf4fb;
	padding:55px 0px;
}
.marketthird-sec h3 {
	font-size: 18px;
    line-height: 19px;
}
.marketthird-sec p {
	font-size: 13px;
    line-height: 19px;
}

.onebox-applcation {
    display: flex;
    width: 100%;
    flex: 0 0 100%;
	margin-top:15px;
}
.pink-bg {
	background: #f8b5c0;
}
.onebox-applcation .onenumberbid {
    color: white;
    font-size: 120px;
    display: block;
    position: relative;
    text-align: center;
    float: left;
    margin-right: 10px;
    padding: 0px;
    line-height: 110px;
    font-family: sans-serif;
    height: 110px;
}
.sec-bg {
	background:#0eb4ba;
}
.onetxt {
    font-size: 13px;
    line-height: 20px;
}
.onebox-applcation p {
	margin-bottom:0px;
}
.sec-bg-third {
	background:#7b5aa6;
}
.sec-bg-four {
	background:#62bb47;
}
.marketfour-sec {
	padding:55px 0px;
}
.btn-group1 {
	    padding: 5px 15px;
    color: white !important;
	font-size:14px;
	background:#b68a69;
	margin-bottom:10px;
}
.btn-group2 {
	    padding: 5px 15px;
    color: white !important;
	font-size:14px;
	background:#68aaa2;margin-bottom:10px;
}
.btn-group3 {
	    padding: 5px 15px;
    color: white !important;
	font-size:14px;margin-bottom:10px;
	background:#8c7ca9;
}
.trd-circle {
	display:flex;
	list-style:none;
}
.trd-circle li img {
	width:100%;
}
.width100 {
	width:100%;
}
.mb1 {
	margin-bottom:1px;
}
.pt0 {
	padding-top:1px;
}</pre></body></html>