* {
  scrollbar-width: thin;
  scrollbar-color: var(--placeholder) var(--gray-first);
}

/* Chrome, Edge and Safari */
*::-webkit-scrollbar {
  height: 6px;
  width: 6px;
}
*::-webkit-scrollbar-track {
  border-radius: 5px;
  background-color: var(--gray-first);
}

*::-webkit-scrollbar-track:hover {
  background-color: var(--gray-first);
}

*::-webkit-scrollbar-track:active {
  background-color: var(--gray-first);
}

*::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: var(--placeholder);
}

*::-webkit-scrollbar-thumb:hover {
  background-color: var(--placeholder);
}

*::-webkit-scrollbar-thumb:active {
  background-color: var(--placeholder);
}
:root {
  /* Colors */

  --body-bg: #fcfcfc;
  --primary: #764db3;
  --primary-dark: #4bb648;
  --secondry: #1c1c1c;
  --secondry-dark: #000000;
  --black: #000000;
  --white: #ffffff;
  --placeholder: #9a9f75;
  --field-border: #e5e5e5;
  --first-gray: #fffdf9;
  --common-gray: #e5e5e5;
  --gray-second: #bbb;
  --gray-third: #e4eaf1;
  --gray-fourth: #fdfdfd;
  --gray-fifth: #f9f9f9;
  --gray-text: #626a7a;
  --light-gray-text: #626a7a;
  --filter-bg: #f7f7f7;
  --green: #0ccc3f;
  --green-track: #27aa80;
  --star: #ffcd1c;
  --red: #f70000;
  --blue: #1889b5;
  --orange: #a26c09;

  /* Typography */
  --base-fonts: "Roboto", sans-serif;
  --base: 16px;
  --text-12: 12px;
  --text-14: 14px;
  --text-18: 18px;
  --text-20: 20px;
  --text-24: 24px;
  --text-26: 26px;
  --text-30: 30px;
  --text-40: 40px;
  --text-48: 48px;
  --text-56: 56px;
  --text-80: 80px;
}

/*--------------General CSS---------*/

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  color: var(--secondry);
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-text-stroke: 1px transparent;
  font-size: var(--base);
  font-family: var(--base-fonts);
  font-weight: 400;
  width: 100%;
  background-color: var(--body-bg);
}

img {
  border: 0 none;
  max-width: 100%;
}

a {
  outline: none;
  cursor: pointer;
  color: var(--primary);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--primary-dark);
  text-decoration: none;
}

a,
button,
.btn {
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

/*-----------------------main styles starts here-----------------------------------------------*/

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

/*=====================================	PLACE HOLDER CSSS START HERE 		====================================*/
.form-control::-moz-placeholder {
  color: var(placeholder);
  opacity: 1;
}
.form-control::placeholder {
  color: var(placeholder);
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: var(--placeholder);
  opacity: 1;
}
input.form-control,
textarea.form-control,
select.form-control {
  background-color: var(--white);
  border-color: var(--field-border);
  border-radius: 0px;
  box-shadow: none;
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 55px;
  color: var(--secondry);
  padding: 10px 20px;
  font-weight: 400;
}

input.form-control:focus,
textarea.form-control:focus,
select.form-control:focus {
  box-shadow: none;
  border-color: var(--primary);
}
textarea.form-control {
  height: auto;
  overflow: auto;
  white-space: normal;
  resize: none;
  border-radius: 4px;
}
.form-label .option-note {
  font-size: var(--text-14);
  color: var(--gray-text);
}
.form-group {
  margin-bottom: 20px;
}
.addon-right {
  position: relative;
}
.addon-right .form-control {
  padding-right: 50px;
}
.addon-right .icon {
  position: absolute;
  right: 20px;
  top: 11px;
  font-size: var(--text-18);
  color: var(--gray-text);
}
.form-check-input {
  width: 23px;
  height: 23px;
  border-radius: 0px;
  border-color: var(--field-border);
}
.form-check-input:focus {
  box-shadow: none;
  border-color: var(--placeholder);
}
.form-check .form-check-input {
  margin-left: -35px;
  margin-top: 0;
}
.form-check {
  padding-left: 35px;
}
label {
  vertical-align: middle;
}
.form-check-input:checked {
  background-color: var(--secondry);
  border-color: var(--secondry);
  box-shadow: none;
}
.custom-radio {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.custom-radio .form-check-input {
  width: 24px;
  height: 24px;
  border-color: var(--field-border);
}
.custom-radio .form-check-input:focus {
  box-shadow: none;
  border-color: var(--placeholder);
}
.custom-radio .form-check-input {
  margin-left: -35px;
  margin-top: 0;
}
.custom-radio {
  padding-left: 35px;
}
.custom-radio .form-check-input:checked[type="radio"] {
  background-image: none;
  border: 1px solid var(--primary);
  background: none;
  position: relative;
}

.custom-radio .form-check-input:checked::before {
  background-color: var(--primary);
  background-image: none;
  border: none;
  box-shadow: none;
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  left: 3px;
  top: 3px;
}
main {
  margin-top: 94px;
}
/*===================================== Commen Butons ===================================*/

.medium-btn {
  border-radius: 0;
  border: 1px solid var(--primary);
  background-color: var(--primary);
  text-align: center;
  color: var(--white);
  padding: 13px 15px;
  min-width: 160px;
  font-weight: 600;
  line-height: 1.40022222;
}

.medium-btn:hover,
.medium-btn:focus {
  border: 1px solid var(--primary-dark);
  background-color: var(--primary-dark);
  color: var(--white);
}
.medium-btn-border {
  border-radius: 0;
  border: 1px solid var(--primary);
  background-color: var(--white);
  text-align: center;
  color: var(--primary);
  padding: 13px 15px;
  min-width: 160px;
  font-weight: 600;
  line-height: 1.40022222;
}

.medium-btn-border:hover,
.medium-btn-border:focus {
  border: 1px solid var(--primary);
  background-color: var(--primary);
  color: var(--white);
}
.small-btn-border {
  border-radius: 0;
  border: 1px solid var(--primary);
  background-color: var(--white);
  text-align: center;
  color: var(--primary);
  padding: 11px 15px;
  min-width: 120px;
  font-weight: 600;
  line-height: 1.40022222;
}

.small-btn-border:hover,
.small-btn-border:focus {
  border: 1px solid var(--primary);
  background-color: var(--primary);
  color: var(--white);
}
.small-btn {
  border-radius: 0;
  border: 1px solid var(--primary);
  background-color: var(--primary);
  text-align: center;
  color: var(--white);
  padding: 11px 15px;
  min-width: 120px;
  font-weight: 600;
  line-height: 1.40022222;
}

.small-btn:hover,
.small-btn:focus {
  border: 1px solid var(--primary-dark);
  background-color: var(--primary-dark);
  color: var(--white);
}
.yt-btn {
  border-radius: 0;
  border: 1px solid var(--red);
  background-color: var(--red);
  text-align: center;
  color: var(--white);
  padding: 11px 15px;
  min-width: 120px;
  font-weight: 600;
  line-height: 1.40022222;
}

.yt-btn:hover,
.yt-btn:focus {
  border: 1px solid var(--red);
  background-color: var(--white);
  color: var(--red);
}
.reset-btn {
  border-radius: 0;
  border: 1px solid var(--secondry);
  background-color: transparent;
  text-align: center;
  color: var(--secondry);
  padding: 11px 15px;
  min-width: 120px;
  font-weight: 600;
  line-height: 1.40022222;
}

.reset-btn:hover,
.reset-btn:focus {
  border: 1px solid var(--secondry);
  background-color: var(--secondry);
  color: var(--white);
}
.clear-btn {
  border-radius: 0;
  border: none;
  background-color: transparent;
  text-align: center;
  color: var(--gray-text);
  padding: 3px 5px;
  font-size: var(--text-18);
  text-decoration: underline;
}

.clear-btn:hover,
.clear-btn:focus {
  border: none;
  background-color: transparent;
  color: var(--secondry);
  text-decoration: underline;
}

.all-product-link {
  border-top: 1px solid var(--gray-third);
  font-size: var(--text-18);
  font-weight: 700;
}
.btn .icon {
  margin-right: 7px;
}
.btn-block .btn {
  margin-right: 15px;
}
.btn-block .btn:last-child {
  margin: 0;
}

.navbar-brand {
  height: auto;
  padding-top: 2px;
  padding-bottom: 2px;
  position: relative;
  z-index: 5;
}
.navbar-brand img {
  max-width: 180px;
}
.menu.btn12 {
  display: none;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  border-bottom: 1px solid var(--gray-third);
  z-index: 100;
  padding: 6px 0;
}

.navbar-expand-xl .navbar-nav .nav-link {
  padding-left: 20px;
  padding-right: 20px;
  font-weight: 500;
}
.navbar-right {
  display: flex;
  align-items: center;
}
.navbar-expand-xl .navbar-nav .highlight-btn {
  border: 2px dotted var(--primary);
  color: var(--primary);
}
.navbar-nav .nav-link {
  color: var(--secondry);
  font-size: 16px;
}

header .dropdown-menu {
  padding: 0;
  border-radius: 10px;
  border-color: var(--gray-second);
  overflow: hidden;
}

header .dropdown-item {
  padding-top: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--field-border);
  color: var(--secondry);
}

header .dropdown-item:last-child {
  border-bottom: none;
}
.header-search {
  position: relative;
  margin-right: 25px;
}
.header-search .form-control {
  height: 45px;
  min-width: 350px;
}
.header-search-btn {
  position: absolute;
  right: 0;
  top: 0;
}
.mobile-search-btn {
  display: none;
  border-radius: 0px;
}
header .dropdown-item:hover,
header .dropdown-item:focus {
  background-color: var(--gray-third);
  color: var(--secondry);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .active .nav-link {
  color: var(--primary);
}

.navbar-toggler .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
  background-color: var(--secondry);
  margin: 5px 0;
}
.navbar-toggler {
  height: 36px;
}

.navbar-nav .header-btn {
  border-radius: 0;
  border: 1px solid var(--secondry);
  background-color: var(--secondry);
  text-align: center;
  color: var(--white);
  padding: 8px 15px 11px;
  font-size: 16px;
  min-width: 110px;
  line-height: 1.40022222;
}

.navbar-nav .header-btn:hover,
.navbar-nav .header-btn:focus {
  background-color: var(--secondry-dark);
  border-color: var(--secondry-dark);
  color: var(--white);
  box-shadow: none;
}

.nav-item {
  position: relative;
}
header .dropdown-toggle::after {
  border: none;
  background-image: url(../images/arrow-down.svg);
  background-repeat: no-repeat;
  background-position: center center;
  width: 14px;
  height: 14px;
  background-size: 100%;
  vertical-align: middle;
  margin-top: -2px;
}
.profile-pic {
  width: 50px;
  height: 50px;
  display: inline-block;
  border-radius: 50%;
}
.profile-pic img {
  border-radius: 50%;
}
header .profile-dropdown .dropdown-toggle::after {
  display: none;
}

header .dropdown-menu {
  border-radius: 0;
  min-width: 215px;
}

header .profile-dropdown .dropdown-item {
  border-bottom: 1px solid var(--gray-third);
  padding: 18px 15px;
}
header .profile-dropdown .dropdown-item.logout-btn {
  border-bottom: none;
  color: var(--red);
  padding: 18px 15px;
}
header .profile-dropdown .dropdown-item.logout-btn:hover,
header .profile-dropdown .dropdown-item.logout-btn:focus {
  color: var(--red);
  background-color: transparent;
}
header .profile-dropdown .dropdown-item.logout-btn .icon {
  color: var(--red);
}
header .profile-dropdown .dropdown-item .icon {
  margin-right: 5px;
  font-size: var(--text-18);
  color: var(--gray-text);
}
.navbar-expand-xl .navbar-nav .product-menu .dropdown-menu {
  width: 100%;
  max-width: 1625px;
  border-radius: 0px;
  top: 94px;
  padding: 15px;
  border: none;
  box-shadow: 0 9px 10px rgba(0, 0, 0, 0.15);
  position: fixed;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-top: 1px solid var(--gray-third);
}
.close-menu {
  display: none;
}
.sub-menu li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 10px;
}
.sub-menu li::after {
  position: absolute;
  content: "";
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  background-color: var(--primary);
}
.sub-menu li a {
  color: var(--base);
}
.sub-menu li a:hover,
.sub-menu li a:focus {
  color: var(--primary);
}
.nav-menu h3 {
  font-size: var(--text-18);
  font-weight: 500;
  margin: 0 0 15px;
}

.common-section {
  padding: 100px 0;
}
.note-btn {
  position: relative;
}
.note-btn .badge-note {
  position: absolute;
  right: 18px;
  display: inline-block;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--green);
}

.page-title {
  margin-bottom: 30px;
}
.page-title .title {
  font-size: var(--text-40);
  font-weight: 500;
  padding-bottom: 10px;
  position: relative;
}
.page-title .title::after {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--primary);
  content: "";
}
.sub-titel {
  font-size: var(--text-24);
  font-weight: 500;
  margin: 0 0 20px;
}
.banner-item {
  position: relative;
  min-height: 800px;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.banner-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.85) 30%,
    rgba(0, 0, 0, 0.45) 59%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 1;
}
.banner-item .container {
  position: relative;
  z-index: 1;
}
.banner-content {
  width: 100%;
  max-width: 650px;
  color: var(--white);
  padding: 30px;
  background-color: rgba(0, 0, 0, 0.2);
}
.banner-content h1 {
  font-size: var(--text-56);
  font-weight: 500;
  margin: 0 0 25px;
}
.banner-content p {
  font-size: var(--text-18);
  font-weight: 400;
  margin: 0 0 25px;
}
.banner-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.container {
  max-width: 1650px;
  margin: 0 auto;
  width: 100%;
}
.banner-content .medium-btn {
  padding: 16px 25px;
}

.common-card {
  border-radius: 0px;
  border-color: transparent;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  color: var(--secondry);
}
.common-card .card-title {
  font-size: var(--text-20);
  font-weight: 500;
}
.common-card .card-title a {
  color: var(--secondry);
}
.common-card .card-footer h4 {
  font-size: var(--text-20);
  font-weight: 500;
  margin: 0;
}
.common-card .card-footer h4 .discount {
  color: var(--gray-text);
  display: inline-block;
  margin-right: 5px;
  font-size: var(--text-18);
}
.common-card .card-footer {
  background-color: var(--white);
  border-top-color: var(--gray-third);
  padding-top: 15px;
  padding-bottom: 15px;
}
.common-card .card-img-top {
  border-bottom: 1px solid var(--gray-third);
}
.common-card .card-text {
  color: var(--gray-text);
}
.ellipsis-text {
  line-height: normal;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.common-review {
  display: flex;
  gap: 4px;
}
.common-review img {
  width: 20px;
  height: auto;
}
.common-review span,
.common-review a {
  font-size: var(--text-20);
  color: var(--star);
}
.shop-link {
  font-size: var(--text-18);
  font-weight: 500;
  display: inline-block;
  text-decoration: underline;
}
.shop-link .icon {
  margin-right: 5px;
}
.process-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background-image: url(../images/process-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0;
}
.process-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
}

.process-section .container {
  position: relative;
  z-index: 2;
}
.process-block {
  position: relative;
  text-align: center;
}
.process-block p {
  margin: 0;
}
.process-block h3 {
  font-size: var(--text-24);
  font-weight: 500;
  margin: 0 0 10px;
}
.process-icon {
  width: 100px;
  height: 100px;
  background-color: var(--primary);
  color: var(--secondry-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 25px;
  box-shadow: 8px 9px 10px rgba(255, 255, 255, 0.2);
}
.process-icon img {
  max-width: 60px;
  filter: brightness(25);
}
.inner-banner {
  padding: 43px 0 80px;
  background-color: #012d4f;
  color: var(--white);
  text-align: center;
}
.inner-banner .page-title {
  font-size: 60px;
}

/* Footer Start  */
footer {
  background-color: var(--white);
  padding: 35px 0 0;
  border-top: 1px solid var(--gray-third);
}
.footer-block {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 1.5rem;
  text-align: left;
}

.footer-block .footer-icon {
  min-width: 35px;
}
.footer-block h3 {
  color: var(--gray-text);
  margin: 0 0 7px;
  font-size: var(--text-14);
  font-weight: 400;
}
.footer-block p {
  color: var(--secondry);
  margin: 0px;
  font-size: var(--text-14);
  font-weight: 500;
}
.footer-block p a {
  color: var(--secondry);
}
.footer-address li {
  margin-bottom: 20px;
  display: flex;
  align-items: start;
  gap: 15px;
}
.footer-address li img {
  filter: brightness(50);
}
.footer-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: start;
}
.footer-links li a {
  color: var(--light-gray-text);
  font-size: var(--text-14);
}
.footer-links li a:hover,
.footer-links li a:focus {
  color: var(--secondry);
}
footer h3 {
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 30px;
}
.footer-address li p {
  margin-bottom: 0;
}
.footer-social {
  display: flex;
  gap: 20px;
  align-items: self-start;
  text-align: left;
}
.social-icon:hover,
.social-icon:focus {
  background-color: var(--white);
}
.social-icon img {
  height: 20px;
}
.footer-content {
  border-top: 1px solid var(--gray-third);
  padding: 20px 0;
  margin-top: 35px;
}
.footer-right {
  text-align: right;
}
.copyright {
  margin: 0;
  font-size: var(--text-14);
  color: var(--light-gray-text);
  text-align: right;
}


/* Account Pages Start  */

.account-pages {
  min-height: calc(100vh - 192px);
  position: relative;
}
.account-main {
  position: relative;
  margin: 40px auto;
  padding: 20px 25px;
  background-color: var(--white);
  max-width: 1200px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.12);
}
.account-left {
  background-color: var(--first-gray);
}
.account-right {
  background-color: var(--white);
  padding-top: 30px;
  padding-bottom: 30px;
}
.account-img {
  margin: 0 auto;
  width: 100%;
  height: 100%;
}
.account-form {
  width: 100%;
  margin: 0 auto;
}
.captcha-img {
  max-width: 300px;
}
.account-form .medium-btn {
  padding-top: 16px;
  padding-bottom: 16px;
}
.account-form h5 {
  font-weight: 400;
  text-align: center;
  margin: 30px 0 0;
  font-size: var(--base);
}
.account-form h5 a {
  font-weight: 700;
}


/* Profile & Address Page Start */
.profile-main {
  position: relative;
  margin: 40px auto;
}
.inner-content {
  position: relative;
  margin: 40px auto;
  padding: 35px 35px;
  background-color: var(--white);
  max-width: 1200px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.12);
}
.change-password-form {
  border-top: 1px solid var(--gray-third);
  padding-top: 20px;
  margin-top: 20px;
}
.address-radio .form-check-input:checked[type="radio"] + .form-check-label {
  background-color: var(--red);
}



/* Modal */
.common-modal .modal-header {
  padding: 15px 25px;
}
.common-modal .modal-content {
  border-radius: 0px;
}
.common-modal .modal-title {
  font-size: var(--text-24);
}
.common-modal .btn-close {
  opacity: 1;
  font-size: var(--text-24);
  box-shadow: none;
  outline: navajowhite;
  background-image: none;
  color: var(--gray-text);
}
.common-modal .btn-close:hover,
.common-modal .btn-close:focus {
  color: var(--secondry);
}
.common-modal .modal-body,
.common-modal .modal-footer {
  padding: 20px 25px;
}
.common-modal-sm .modal-body,
.common-modal-sm .modal-footer {
  padding: 15px 20px;
}
.common-modal-sm .modal-header {
  padding: 15px 20px;
}



.contact-block {
  display: flex;
  align-items: self-start;
  justify-content: start;
  gap: 1.5rem;
  text-align: left;
  margin-bottom: 20px;
}
.contact-left {
  background-color: var(--gray-fifth);
  height: 100%;
  padding: 20px;
}

.contact-block .contact-icon {
  min-width: 60px;
  min-height: 60px;
  border-radius: 50%;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-third);
}
.contact-block .contact-icon img {
  min-width: 35px;
}
.contact-block h3 {
  color: var(--gray-text);
  margin: 0 0 4px;
  font-weight: 400;
  font-size: var(--base);
}
.contact-block p {
  color: var(--secondry);
  margin: 0px;
  font-weight: 500;
}
.contact-block p a {
  color: var(--secondry);
}
.map-frame iframe {
  width: 100%;
  height: 250px;
  border: none;
}

.value-break {
  word-break: break-all;
}
