header nav.navbar {
  position: fixed;
  top: 0;
  height: var(--desktop-nav-height);
  z-index: 50;
  background-color: var(--color-8);
  width: 100%;
  justify-content: space-between;
  --bs-navbar-padding-y: 0rem;
  left: 0;
  transition: 0.5s ease-in-out;
  opacity: 1;
}

/***********************
 Promotional div starts
 ***********************/

.promotional-info {
  background-color: var(--color-9);
  width: 100%;
}

.promotional-info p {
  font-size: var(--font-size-18);
  padding: 9px 0px;
  margin: 0;
  color: var(--color-6);
  font-family: var(--font-family-poppins)
}

.promotional-info.alert {
  --bs-alert-margin-bottom: 0rem;
  --bs-alert-border: none;
  padding: 0px;
  border-radius: 0px;
}

.alert-dismissible .btn-close {
  padding: 12px 12px;
}

/*----------------------
 Promotional div ends
 ----------------------*/


/**********************
 Utility header starts
 ***********************/
.header-top h3 {
  margin-bottom: 0px;
  padding-left: 4vw;
  font-size: var(--font-size-15);
  line-height: 27px;
  color: var(--color-6);
  letter-spacing: 1px;
  font-weight: normal;
  font-family: var(--font-family-poppins)
}

.header-top {
  border-bottom: 1px solid #f0f0f0;
}

.header-top-utility>ul>li {
  padding: 0px 15px;
  margin: 0px;
  list-style: none;
}

.header-top-utility .image-icon img {
  display: block;
  width: 10px;
}

.header-top-utility .image-icon span {
  font-weight: normal;
  font-size: var(--font-size-12);
  line-height: 25px;
  color: var(--color-10);
  margin-left: 10px;
  cursor: pointer;
}

.header-top-utility>ul>li:not(:first-child) {
  border-left: 1px solid var(--color-9);
}

.language-selection-desktop .dd-container {
  width: 96px !important;
}

.language-selection-desktop .dd-select {
  width: 96px !important;
  background: none !important;
  border: 0px !important;
}

.language-selection-desktop .dd-selected {
  display: flex !important;
  font-weight: normal !important;
  padding: 10px 0px;
}

.language-selection-desktop .dd-selected-image,
.dd-option-image {
  max-width: 15px !important;
  max-height: 10px !important;
}

.language-selection-desktop .dd-selected-text,
.dd-option-text {
  line-height: 10px !important;
  font-size: var(--font-size-12);
  color: #868e8e !important;
}

.language-selection-desktop .dd-options {
  /* width: 96px !important; */
  border-radius: 4px;
}

.language-selection-desktop .dd-option {
  display: flex !important;
}

/*--------------------
 Utility header ends
 ---------------------*/


/*******************
 Main Navbar starts
 *******************/

header nav .main-nav {
  padding: 0 6vw;
  background-color: var(--color-8);
}

.search-box {
  position: relative;
  width: 100%;
  border-radius: 30px;
  border: 1px solid var(--color-10);
  box-shadow: 0 0px 2px rgba(0, 0, 0, 0.15);
  display: flex;
  background-color: var(--color-11);
  font-family: var(--font-family-poppins)
}

.search-box__input {
  width: 100%;
  position: relative;
  display: flex;
}


.search-box .search-box__input input {
  border-radius: 30px;
  margin-left: 10px;
  outline: none;
  font-size: var(--font-size-15);

}

.search-box__input input {
  border: none;
  padding: 5px;
  color: var(--color-12);
  display: block;
  width: 100%;
}

.search-box__select {
  position: relative;
  padding-right: 0;
  border-left: 1px solid var(--color-13);
}

.search-box__select select.category {
  position: relative;
  cursor: pointer;
}

.search-box__select select {
  outline: none;
  appearance: none;
  border: none;
  background: none;
  color: var(--color-10);
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
  max-width: 150px;
  padding: 1px 15px;
}

.search-category-select {
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 34px;
  line-height: 34px;
  font-size: var(--font-size-13);
  appearance: none;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 1ex;
  background-color: var(--color-14);
  background-origin: content-box;
}

.search-category-select option {
  background: var(--color-11);
}

.search-box__button {
  margin-left: 15px;
}
/* ei porjonto */
.search-box__button button {
  width: 60px;
  height: 100%;
  background-color: var(--color-15);
  color: #f7f7f7;
  border: none;
  margin: 0px;
  border-radius: 30px;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
  transition: all 500ms;
}

.search-box__button button:hover {
  background-color: #333e48;
  border: 1px solid #333e48;
  transition: background-color 0.5s;
}

.search-box__dropdown {
  position: absolute;
  top: 100%;
  left: -1px;
  width: 100%;
  max-height: 60vh;
  overflow: hidden auto;
  border: 1px solid #868e8e;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  padding: 10px;
  opacity: 0;
  z-index: 99;
  background: #fff;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -ms-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  -webkit-transform: translate(0, 10px) 0;
  -moz-transform: translate(0, 10px) 0;
  -ms-transform: translate(0, 10px) 0;
  -o-transform: translate(0, 10px) 0;
  transform: translate(0, 10px) 0;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
}

.search-box__dropdown.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);

}

.search-box__dropdown ul {
  padding-left: 0rem;
  margin-bottom: 0.5rem;
}

.search-box__dropdown ul li {
  font-size: 13px;
  color: black;
  padding-left: 0.5rem;
}

.search-box__input input::placeholder {
  font-size: 15px;
  padding-left: 1px;
}

.navbar-search-submit {
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar-wrapper {
  width: 100%;
}

.navbar-wrapper .search-icon {
  padding-left: 1rem;
}



.navbar-wrapper .brand-logo,
.icons {
  width: 30%;
}

.navbar-wrapper .search-icon .badge {
  padding: 2px;
}

/*------------------
 Main Navbar ends
 ------------------*/


/******************
top links starts 
******************/
.top-links {
  background-color: #020428;
  padding: 0 6vw;
  width: 100%;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;

}

.header__navigation-inner {
  gap: 4rem;
}

.header__navigation-inner ul {
  margin-bottom: 0px;
  padding-left: 0px;
}

.menu-link {
  display: flex;
  color: #fff;
  align-items: center;
  height: 2.5rem;
}

.menu-link img {
  margin-right: 10px;
}

.menu-cat {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: #ffffff;
  opacity: 0;
  z-index: 9;
  visibility: hidden;
  padding: 10px 0px;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease-in-out;
  transform: translate(0, 10px) 0;
}

.header__navigation-category:hover .menu-cat {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}

.menu-cat .mega-dropdown {
  background-repeat: no-repeat;
  background-position: right bottom;
  min-width: 300px;
  min-height: 450px;
  width: 70vw;
  height: 70vh;
  padding: 20px;
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 9;
  background: #ffffff;
  visibility: hidden;
  overflow-y: auto;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176);
}

.menu-cat>li>a span {
  flex: 1;
  transition: all 0.4s ease;
  cursor: pointer;
}

.menu-cat>li:hover span {
  transition: all 0.4s ease;
  letter-spacing: 1.5px;
}

.menu-cat>li:hover .mega-menu-open-indicator {
  visibility: hidden;
}

.menu-cat>li:hover .mega-dropdown {
  visibility: visible;
  min-height: 450px;
}

.menu-cat .mega-dropdown__item {
  margin-bottom: 15px;
}

.menu-cat .mega-dropdown__item h3 {
  margin-bottom: 7px;
}

.menu-cat .mega-dropdown__item h3 a {
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
  color: #486d97
}

.menu-cat .mega-dropdown__item ul li {
  margin-bottom: 5px;
}

.menu-cat .mega-dropdown__item a {
  font-size: 16px;
  line-height: 22px;
  color: #595959;
}

.menu-cat .mega-dropdown__item p {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #9b9b9b;
}

.menu-cat>li>a img {
  width: 25px;
  height: 16px;
}


.menu-cat>li>a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 15px;
  color: #333e48;
  font-weight: normal;
  font-size: 16px;
  line-height: 22px;
  transition: all 300ms;
  padding-right: 0;
}


.header__menu {
  gap: 4rem;
}

.shale-text {
  display: flex;
  margin-left: auto;
  align-items: center;
}

.shale-text a {
  color: #f0f0f0;
}

/*---------------
top links ends 
-----------------*/


/*********************
Mobile Navbar starts
**********************/

.navbar-light .navbar-toggler-icon {
  width: 1.25em;
  height: 1.25em;
  background-image: url(../img/Icon-menu.svg);
}

.navbar-toggler[aria-expanded=true] .navbar-toggler-icon {
  width: 1em;
  height: 1em;
  background-image: url(../img/Icon-menu-close.svg);
}

.navbar-toggler:focus {
  outline: 0;
  border: none;
  box-shadow: none;
}

header nav.navbar-mobile {
  padding: 0;
}

header nav.navbar-mobile .logo {
  width: 122px;
}

nav.navbar-mobile .offcanvas-start {
  width: 84%;
  transition: transform 0.1s ease-in-out;
}

.btn-hamburger {
  background-color: transparent !important;
}

.btn-hamburger:hover,
.btn-hamburger:active {
  background-color: transparent !important;
}

.btn-close:focus {
  box-shadow: none;
}

/*---------------------
Mobile Navbar End
-----------------------*/


/*******************
Media Query Start
********************/

/* -----after 992px----- */
@media (min-width: 992px) {
  header nav.navbar {
    flex-direction: column;
  }

  :root {
    --desktop-nav-height: 9.5rem;
  }

  .promotional-info p {
    font-size: 15px;
    padding: 6px 0px;
  }

  .alert-dismissible .btn-close {
    padding: 6px 6px;
  }

  .header-top h3 {
    font-size: 12px;
  }

  .header-top-utility .image-icon span {
    font-size: 9px;
  }

  .header-top-utility .image-icon img {
    width: 10px;
  }

  .header-top-utility>ul>li {
    padding: 0px 12px;
  }

  .header-top-utility .image-icon a {
    height: 30px;
    align-items: center;
  }

  .language-selection-desktop .dd-selected-text,
  .dd-option-text {
    font-size: 9px;
  }

  .language-selection-desktop .dd-selected {
    padding: 10px 0px;
  }

  .language-selection-desktop .dd-container {
    width: 66px !important;
  }

  .language-selection-desktop .dd-select {
    width: 75px !important;
  }

  .language-selection-desktop .dd-options {
    width: 85px !important;
    left: -13px;
  }
  .navbar-brand img {
    height: 35px;
  }

  .search-box {
    height: 28px;
  }

  .search-box__input input::placeholder {
    font-size: 12px;
    padding-left: 1px;
  }

  .search-box__dropdown ul li {
    font-size: 12px;
  }

  .search-category-select {
    font-size: 10px;
    width: 100px;
  }

  .search-box__select .fa-caret-down {
    font-size: 10px;
  }

  .search-box__button button {
    width: 45px
  }

  .search-icon svg {
    max-width: none;
    width: 1.3rem;
    height: 1.3rem;
  }

  .search-icon i {
    font-size: 1.3rem;
  }

  .navbar-wrapper .search-icon .badge {
    width: 21px;
    height: 11px;
    font-size: 7px;
  }

  .menu-link,
  .shale-text a,
  .menu-cat>li>a {
    font-size: 12px;
  }

  .menu-cat {
    padding: 5px 0px;
    min-width: 215px;
  }

  .menu-cat>li>a img {
    width: 30px;
    height: 14px;
  }

  .menu-cat .mega-dropdown__item h3 a {
    font-size: 15px;
  }

  .menu-cat .mega-dropdown__item a {
    font-size: 13px;
  }

  .menu-cat .mega-dropdown__item p {
    font-size: 9px;
  }

  .menu-cat>li:hover .mega-dropdown {
    min-height: 420px;
  }
}

@media (min-width: 1200px) {

  :root {
    --desktop-nav-height: 10.5rem;
  }

  .promotional-info p {
    font-size: 16px;
    padding: 7px 0px;
  }

  .alert-dismissible .btn-close {
    padding: 8px 6px;
  }

  .header-top h3 {
    font-size: 13px;
  }

  .header-top-utility .image-icon span {
    font-size: 10px;
  }

  .header-top-utility .image-icon img {
    width: 11px;
  }

  .header-top-utility>ul>li {
    padding: 0px 13px;
  }

  .header-top-utility .image-icon a {
    height: 30px;
    align-items: center;
  }

  .language-selection-desktop .dd-selected-text,
  .dd-option-text {
    font-size: 10px;
  }

  .language-selection-desktop .dd-selected {
    padding: 10px 0px;
  }

  .language-selection-desktop .dd-container {
    width: 70px !important;
  }

  .language-selection-desktop .dd-select {
    width: 79px !important;
  }

  .language-selection-desktop .dd-options {
    width: 90px !important;
    left: -14px;
  }

  .navbar-brand img {
    height: 45px;
  }

  .search-box {
    height: 33px;
  }

  .search-box__input input::placeholder {
    font-size: 12px;
    padding-left: 1px;
  }

  .search-box__dropdown ul li {
    font-size: 12px;
  }

  .search-category-select {
    font-size: 11px;
    width: 115px;
  }

  .search-box__select .fa-caret-down {
    font-size: 12px;
  }

  .search-box__button button {
    width: 50px;
  }

  .search-icon svg {
    max-width: none;
    width: 1.4rem;
    height: 1.4rem;
  }

  .search-icon i {
    font-size: 1.4rem;
  }

  .navbar-wrapper .search-icon .badge {
    width: 24px;
    height: 13px;
    font-size: 8px;
  }

  .menu-link,
  .shale-text a,
  .menu-cat>li>a {
    font-size: 13px;
  }

  .menu-cat {
    padding: 6px 0px;
    min-width: 225px;
  }

  .menu-cat>li>a img {
    width: 32px;
    height: 16px;
  }

  .menu-cat .mega-dropdown__item h3 a {
    font-size: 16px;
  }

  .menu-cat .mega-dropdown__item a {
    font-size: 14px;
  }

  .menu-cat .mega-dropdown__item p {
    font-size: 10px;
  }

  .menu-cat>li:hover .mega-dropdown {
    min-height: 420px;
  }

}

@media (min-width: 1400px) {
  :root {
    --desktop-nav-height: 11rem;
  }

  .promotional-info p {
    font-size: 17px;
    padding: 8px 0px;
  }

  .alert-dismissible .btn-close {
    padding: 9px 6px;
  }

  .header-top h3 {
    font-size: 14px;
  }

  .header-top-utility .image-icon span {
    font-size: 11px;
  }

  .header-top-utility .image-icon img {
    width: 12px;
  }

  .header-top-utility>ul>li {
    padding: 0px 14px;
  }

  .header-top-utility .image-icon a {
    height: 30px;
    align-items: center;
  }

  .language-selection-desktop .dd-selected-text,
  .dd-option-text {
    font-size: 11px;
  }

  .language-selection-desktop .dd-selected {
    padding: 11px 0px;
  }

  .language-selection-desktop .dd-container {
    width: 72px !important;
  }

  .language-selection-desktop .dd-select {
    width: 81px !important;
  }

  .language-selection-desktop .dd-options {
    width: 92px !important;
    left: -15px;
  }

  .navbar-brand img {
    height: 52px;
  }


  .search-box {
    height: 38px;
  }

  .search-box__input input::placeholder {
    font-size: 13px;
    padding-left: 1px;
  }

  .search-box__dropdown ul li {
    font-size: 13px;
  }

  .search-category-select {
    font-size: 12px;
    width: 125px;
  }

  .search-box__select .fa-caret-down {
    font-size: 13px;
  }

  .search-box__button button {
    width: 55px;
  }

  .search-icon svg {
    max-width: none;
    width: 1.6rem;
    height: 1.6rem;
  }

  .search-icon i {
    font-size: 1.5rem;
  }

  .navbar-wrapper .search-icon .badge {
    width: 26px;
    height: 15px;
    font-size: 9px;
  }

  .menu-link,
  .shale-text a,
  .menu-cat>li>a {
    font-size: 14px;
  }

  .menu-cat {
    padding: 7px 0px;
    min-width: 235px;
  }

  .menu-cat>li>a img {
    width: 34px;
    height: 18px;
  }

  .menu-cat .mega-dropdown__item h3 a {
    font-size: 17px;
  }

  .menu-cat .mega-dropdown__item a {
    font-size: 15px;
  }

  .menu-cat .mega-dropdown__item p {
    font-size: 11px;
  }

  .menu-cat>li:hover .mega-dropdown {
    min-height: 450px;
  }
}

@media (min-width: 1600px) {
  :root {
    --desktop-nav-height: 11.7rem;
  }

  .promotional-info p {
    font-size: 18px;
    padding: 9px 0px;
  }

  .alert-dismissible .btn-close {
    padding: 10px 6px;
  }

  .header-top h3 {
    font-size: 15px;
  }

  .header-top-utility .image-icon span {
    font-size: 12px;
  }

  .header-top-utility .image-icon img {
    width: 13px;
  }

  .header-top-utility>ul>li {
    padding: 0px 15px;
  }

  .header-top-utility .image-icon a {
    height: 32px;
    align-items: center;
  }

  .language-selection-desktop .dd-selected-text,
  .dd-option-text {
    font-size: 12px;
  }

  .language-selection-desktop .dd-selected {
    padding: 12px 0px;
  }

  .language-selection-desktop .dd-container {
    width: 74px !important;
  }

  .language-selection-desktop .dd-select {
    width: 83px !important;
  }

  .language-selection-desktop .dd-options {
    width: 95px !important;
    left: -16px;
  }

  .navbar-brand img {
    height: 60px;
  }

  .search-box {
    height: 40px;
  }

  .search-box__input input::placeholder {
    font-size: 14px;
    padding-left: 1px;
  }

  .search-box__dropdown ul li {
    font-size: 14px;
  }

  .search-category-select {
    font-size: 13px;
    width: 135px;
  }

  .search-box__select .fa-caret-down {
    font-size: 14px;
  }

  .search-box__button button {
    width: 60px;
  }

  .search-icon svg {
    max-width: none;
    width: 1.8rem;
    height: 1.8rem;
  }

  .search-icon i {
    font-size: 2rem;
  }

  .navbar-wrapper .search-icon .badge {
    width: 29px;
    height: 16px;
    font-size: 10px;
  }

  .menu-link,
  .shale-text a,
  .menu-cat>li>a {
    font-size: 15px;
  }

  .menu-cat {
    padding: 8px 0px;
    min-width: 245px;
  }

  .menu-cat>li>a img {
    width: 36px;
    height: 20px;
  }

  .menu-cat .mega-dropdown__item h3 a {
    font-size: 18px;
  }

  .menu-cat .mega-dropdown__item a {
    font-size: 16px;
  }

  .menu-cat .mega-dropdown__item p {
    font-size: 12px;
  }

  .menu-cat>li:hover .mega-dropdown {
    min-height: 450px;
  }
}

@media (min-width: 1800px) {

  :root {
    --desktop-nav-height: 12.6rem;
  }

  .promotional-info p {
    font-size: 20px;
    padding: 9px 0px;
  }

  .alert-dismissible .btn-close {
    padding: 12px 8px;
  }

  .header-top h3 {
    font-size: 16px;
  }

  .header-top-utility .image-icon img {
    width: 14px;
  }

  .header-top-utility .image-icon span {
    font-size: 13px;
  }

  .header-top-utility>ul>li {
    padding: 0px 16px;
  }

  .header-top-utility .image-icon a {
    height: 34px;
    align-items: center;
  }

  .language-selection-desktop .dd-selected-text,
  .dd-option-text {
    font-size: 13px;
  }

  .language-selection-desktop .dd-selected {
    padding: 13px 0px;
  }

  .language-selection-desktop .dd-container {
    width: 78px !important;
  }

  .language-selection-desktop .dd-select {
    width: 88px !important;
  }

  .language-selection-desktop .dd-options {
    width: 100px !important;
    left: -17px;
  }

  .navbar-brand img {
    height: 70px;
  }

  .search-box {
    height: 45px;
  }

  .search-box__input input::placeholder {
    font-size: 15px;
    padding-left: 1px;
  }

  .search-box__dropdown ul li {
    font-size: 15px;
  }

  .search-category-select {
    font-size: 14px;
    width: 145px;
  }

  .search-box__select .fa-caret-down {
    font-size: 15px;
  }

  .search-box__button button {
    width: 65px;
  }

  .search-icon svg {
    max-width: none;
    width: 2rem;
    height: 2rem;
  }

  .search-icon i {
    font-size: 2.2rem;
  }

  .navbar-wrapper .search-icon .badge {
    width: 30px;
    height: 15px;
    font-size: 10px;
  }

  .menu-link,
  .shale-text a,
  .menu-cat>li>a {
    font-size: 16px;
  }

  .menu-cat {
    padding: 10px 0px;
    min-width: 280px;
  }

  .menu-cat>li>a img {
    width: 32px;
    height: 20px;
  }

  .menu-cat .mega-dropdown__item h3 a {
    font-size: 19px;
  }

  .menu-cat .mega-dropdown__item a {
    font-size: 17px;
  }

  .menu-cat .mega-dropdown__item p {
    font-size: 13px;
  }

  .menu-cat>li:hover .mega-dropdown {
    min-height: 450px;
  }

}

@media (min-width: 2000px) {}

@media (min-width: 2200px) {}

@media (min-width: 2400px) {}

/* mobile UI */
@media (max-width: 991px) {

  /* mobile ui home page nav starts */

  .promotional-info p {
    padding: 8px 0px;
    margin: 0;
    color: #3D3D3D;
    font-size: 10px;
    font-family: 'Poppins', sans-serif;
  }

  header nav.navbar-mobile {
    height: var(--mobile-nav-height);
  }

  header nav.navbar-mobile .container-fluid {
    padding: 15px 20px;
  }

  .alert-dismissible .btn-close {
    padding: 6px 6px;
    transform: scale(0.75);
  }

  .btn-hamburger i {
    display: block;
    width: 18px;
  }

  .navbar-mobile {
    background-color: #fff;
  }

  .navbar-mobile .navbar-nav {
    padding: 14px 0px;
    background-color: #EDF0F3;
  }


  .navbar-mobile .search-icon .badge {
    width: 30px;
    height: 15px;
    font-size: 10px;
    padding: 2px;
  }

  /* mobile ui home page nav ends */

  /* mobile nav offcanvas starts */

  /* offcanvas header starts */
  .navbar-mobile .offcanvas {
    --bs-offcanvas-border-color: var(--bs-table-striped-bg)
  }

  .navbar-mobile .offcanvas-header {
    display: block;
    padding: 0px;
  }

  .navbar-mobile .offcanvas-header .main-header {
    height: 95px;
    box-shadow: 0px -2px 6px #020428;
    padding: 1rem 1rem;

  }

  /* .user-img img {
    width: 29px;
    height: 29px;
  } */

  /* languag selection Mobile starts*/

  .language-selection-mobile .selectboxit-btn {
    background-image: none;
    border-radius: 0;
    border: none;
  }

  .language-selection-mobile {
    height: 25px !important;
  }

  .language-selection-mobile .selectboxit-container .selectboxit-text {
    height: 1rem !important;
    line-height: 1rem !important;
  }

  .language-selection-mobile .selectboxit-container {
    width: 51px;
  }

  .language-selection-mobile .selectboxit .selectboxit-arrow-container .selectboxit-arrow {
    left: auto;
    top: 13px;
  }

  .language-selection-mobile .selectboxit-container .selectboxit-option-icon {
    margin: 3px 0px;
  }

  .language-selection-mobile .selectboxit-option-icon-url {
    width: 15px !important;
    height: 10px !important;
  }

  .language-selection-mobile .selectboxit .selectboxit-option-icon-container {
    margin: 0px !important;
  }

  .language-selection-mobile .selectboxit-list>.selectboxit-focus>.selectboxit-option-anchor {
    background-color: #fff !important;
    color: black;
  }

  .language-selection-mobile .selectboxit-container * {
    color: black;
  }

  .language-selection-mobile .selectboxit-container span,
  .selectboxit-container .selectboxit-options a {
    display: flex !important;
    align-items: center !important;

  }

  .language-selection-mobile .selectboxit-list {
    border: none;
    box-shadow: 0 5px 6px rgba(0, 0, 0, 0.2) !important;
    padding: 0px 5px !important;
  }

  .language-selection-mobile .dd-container {
    width: 80px !important;
  }

  .language-selection-mobile .dd-select {
    width: 81px !important;
    background: none !important;
    border: 0px !important;
  }

  .language-selection-mobile .dd-selected {
    display: flex !important;
    font-weight: normal !important;
  }

  .language-selection-mobile .dd-selected-image,
  .dd-option-image {
    max-width: 15px !important;
    max-height: 10px !important;
  }

  .language-selection-mobile .dd-selected-text,
  .dd-option-text {
    line-height: 12px !important;
    font-size: 13px !important;
    color: black !important;
  }

  .language-selection-mobile .dd-options {
    width: 76px !important;
  }

  .language-selection-mobile .dd-option {
    display: flex !important;
  }

  /* languag selection Mobile ends*/

  
  /* offcanvas header ends */

  /* ofcanvas body starts */

  .navbar-mobile .offcanvas-body,
  header nav.navbar-mobile .navbar-wrapper {
    background-color: #EDF0F3;
  }

  .navbar-mobile .offcanvas-body {
    padding: 0;
    position: relative;
  }


  .navbar-mobile .offcanvas-body .m-nav-cat-lebel {
    margin-left: 28vw;
  }


  .navbar-mobile .mobile-offcanvas-close-btn {
    width: 49px;
    height: 49px;
    background-color: #EDF0F3;
    border-end-end-radius: 10px;
    border-start-end-radius: 10px;
    margin-left: 22px;
    z-index: 1;

  }


  /* search box mobile starts */
  .search-box {
    width: 84%;
    height: 32px;
    margin: 0px auto;
  }

  .search-box__button button {
    width: 30px;
    height: 30px;
    border-radius: 50%;
  }

  .search-box__input input::placeholder {
    font-size: 11px;
    padding-left: 1px;
  }

  .search-category-select {
    font-size: 11px;
  }

  .search-box__input input {
    height: 30px;
  }

  .search-box__select select {
    max-width: 100px;
  }

  .search-box__button {
    margin-left: 5px;
  }

  .search-box__select i {
    transform: scale(0.75);
  }


  .navbar-mobile .category-bar {
    background-color: #EDF0F3;
    height: 5vh;
    margin: 0px auto -1px auto;
  }

  /* search box mobile ends */

  /* mobile category starts*/
  .back-arrow {
    position: fixed;
    transform: translate3d(0vw, -4vh, 0vw);
  }

  .cat-home {
    position: fixed;
    transform: translate3d(33vw, -4vh, 0vw);
  }

  .cat-child {
    position: fixed;
    transform: translate3d(27vw, -4vh, 0vw);
  }

  .top-menu>li,
  .sub-menu>li,
  .sub-sub-menu>li {
    width: 100%;
  }

  .fadeOut {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
    transition: 0.1s ease-in-out;
  }

  .reverse-fadeOut {
    opacity: 1 !important;
    transform: translate3d(0, 0, 0);
    transition: 0.4s ease-in-out;
  }

  .fadeIn {
    visibility: visible !important;
    opacity: 1;
    left: 0 !important;
  }

  .reverse-fadeIn {
    transform: translate3d(-100%, 0, 0);
    transition: 1s !important;
  }

  .top-menu {
    height: calc(100vh - var(--top-menu-height-mobile-nav-drawer));
    width: 84%;
    position: fixed;
    top: 13rem;
    left: 0;
    transition: 0.3s;
    overflow-y: auto;
  }

  .sub-menu {
    visibility: hidden;
    width: 84%;
    height: calc(100vh - 8.25rem - 15.5rem);
    position: fixed;
    z-index: 1;
    top: 13rem;
    left: -500rem;
    transition: 0.3s;
    overflow-y: auto;
  }

  .sub-sub-menu {
    visibility: hidden;
    width: 84%;
    height: calc(100vh - 8.25rem - 15.5rem);
    position: fixed;
    z-index: 1;
    top: 13rem;
    left: -500rem;
    transition: 0.3s;
    overflow-y: auto;
  }

  .sub-sub-menu li a {
    color: #5E6278;
  }

  /* mobile category ends*/

  /* logout button mobile starts*/

  .log-out-mobile {
    position: absolute;
    bottom: 4.8rem;
    padding: 1rem;
    width: 100%;
    background-color: #EDF0F3;
    z-index: 1;

  }

  .log-out-mobile p {
    font-size: 12px;
  }

  .log-out-mobile button {
    font-size: 11px;
    border-radius: 0.3rem;
  }

  .submit-btn {
    background: #D6644A;
    padding: 8px;
    outline: none;
    border: none;
    color: white;
    width: 100%;
    margin-top: 0.5rem;
  }

  /* logout button mobile ends*/

  /* top links mobile starts*/
  .navbar-mobile .top-links-mobile {
    background-color: #020428;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
  }

  .navbar-mobile .top-links-mobile ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    -moz-column-gap: 4vw;
    column-gap: 4vw;
    margin-bottom: 0;
    padding-left: 0;
  }

  .navbar-mobile .top-links-mobile ul li>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    color: #fff;
  }

  .navbar-mobile .top-links-mobile {
    height: 78px;
    position: fixed;
    width: 84%;
    padding: 0;
    bottom: 0;
    z-index: 1;

  }

  .navbar-mobile .top-links-mobile ul {
    display: flex;
    justify-content: space-between;
    column-gap: 0;

  }

  .navbar-mobile .top-links-mobile ul li {
    width: 100%;
    padding: 10px 0px;

  }

  .navbar-mobile .top-links-mobile ul>li:nth-child(n) {
    border-right: 1px solid #cfcfcf;
  }

  .navbar-mobile .top-links-mobile ul>li:last-child {
    border-right: none;
  }

  /* top links mobile ends*/

  /* ofcanvas body ends */


}