:root {
  --text: #000;
  --accent: #004aad;
  --blue: #2a3560;
  --gray: #737373;
  --l-gray: #d9d9d9;
  --aqua: #0cc0df;
  --cyan: #e2fbff;
  --montserrat: 'Montserrat', sans-serif;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}

img {
  max-width: 100%;
}
*,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
}
.main-wrapper .container-fluid {
  padding: 0px 12px;
}

/* Header */
.fixed-top {
  background: linear-gradient(90deg, #42b395 1.11%, #00f0ff 96.6%);
}
.fixed-top * {
  transform: scale(0.96) !important;
  transition: 0.65s ease;
}
.fixed-top .navbar-nav * {
  transform: scale(0.985) !important;
  transition: 0.45s ease;
}

.header {
  background: var(--l-gray);
}

.navbar-brand img {
  max-width: 350px;
}
.navbar.navbar-expand-lg .container-fluid {
  position: relative;
}
.navbar-expand-lg .navbar-toggler {
  display: block;
  position: absolute;
  right: 20px;
}
.navbar-expand-lg .navbar-toggler[aria-expanded='true'] {
  position: absolute;
  z-index: 99;
  right: 10px;
  top: 0;
}
.navbar-expand-lg .navbar-toggler[aria-expanded='true'] .navbar-toggler-icon {
  background-image: url('images/x-solid.svg');
  border: none;
}
.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 0;
}

.user-btn {
  color: var(--gray);
  font-size: 24px;
  margin-right: 80px;
}

.navbar-collapse.show {
  position: absolute;
  right: 0;
  top: -10px;
  transition: right 0.25s ease;
  min-height: 100vh;
  background: var(--gray);
  align-items: flex-start;
  width: 250px;
}
.navbar-collapse.collapse:not(.show) {
  display: none !important;
  right: -270px;
  position: absolute;
}
.collapsing {
  transition: none;
  height: 0;
  right: -270px;
  display: none;
  width: 0;
}
.navbar-expand-lg .navbar-nav {
  flex-direction: column;
  width: 100%;
  padding-top: 70px;
}
.navbar-nav .nav-link {
  font-weight: 500;
  line-height: 22.4px;
  font-size: 20px;
  padding: 10px 20px 10px 20px;
  width: 100%;
}
.navbar-nav .nav-link.active {
  font-weight: 600;
}
.navbar-expand-lg .navbar-toggler {
  display: block;
  border: none;
}

.aside {
  background: var(--cyan);
}

.form-control.search-field {
  background: #a6a6a6;
  border-radius: 20px;
  border: none;
}
.search-btn {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  padding: 11px 16px;
}
.search-form {
  position: relative;
}
.filter-field {
  position: relative;
}
.filter-field span {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  color: var(--gray);
  border-left: 2px solid var(--gray);
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 10px;
  pointer-events: none;
}
.filter-btn {
  display: inline-block;
  padding: 10px 40px 10px 40px;
  background: var(--aqua);
  border-radius: 30px;
  color: #186f58;
  font-size: 20px;
  font-weight: 600;
  transition: background 0.25s ease;
  border: none;
  color: var(--text);
}
.filter-btn:hover {
  background: var(--accent);
  color: #fff;
}

/*Product*/

.price-arrow {
  width: 24px;
}
.product-text h4 {
  font-size: 18px;
  font-weight: 600;
}
.brand-image {
  width: 20px;
}
.product-spacer {
  border-top: 4px solid var(--aqua);
  opacity: 1;
}

/* Custom dropdown styles */
.custom-select {
  position: relative;
  width: 200px;
  font-family: Arial, sans-serif;
}

.custom-select select {
  display: none;
}

.custom-select .select-box {
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 5px 40px 5px 10px;
  border: 3px solid var(--gray);
  border-radius: 5px;
  cursor: pointer;
  background-color: transparent;
  position: relative;
  gap: 5px;
}

.custom-select .caret {
  position: absolute;
  top: 0;
  right: 10px;
  border-left: 3px solid var(--gray);
  height: 100%;
  transition: transform 0.3s;
  display: flex;
  align-items: center;
  padding-left: 10px;
}

.custom-select img {
  max-width: 24px;
  max-height: 24px;
  margin-right: 5px;
}

.custom-select .options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  border: 1px solid #ccc;
  border-top: none;
  border-radius: 5px 5px 5px 5px;
  background-color: var(--gray);
  z-index: 1;
  padding: 0 10px;
}

.custom-select .option {
  padding: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--l-gray);
  margin-bottom: 5px;
}

.custom-select .option:hover {
  background-color: #f0f0f0;
}

.custom-select .caret i {
  color: var(--gray);
}

.search-box {
  margin: 10px 0;
}
.search-box input:focus {
  border-color: var(--l-gray);
  box-shadow: none;
}

.user-btn i {
  color: var(--gray);
  font-size: 30px;
}
.navbar-toggler-icon {
  width: 2.5rem;
  height: 2rem;
}
.navbar-expand-lg .navbar-nav .nav-link {
  color: #fff;
  padding: 10px 0 10px 15px;
}
.filter-box {
  border: 2px solid var(--gray);
}
.brand-name {
  font-weight: 600;
}
.shop-btn {
  border: 2px solid var(--gray);
  border-radius: 30px;
  padding: 5px 10px;
  color: var(--accent);
  font-weight: 600;
}
.promo hr {
  border-top: 4px solid var(--l-gray);
  opacity: 1;
}
.promo p,
.promo a {
  color: var(--text);
  font-size: 14px;
}

.overlay-container {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items:center;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
}

.overlay-content{
  position: absolute;
  font-size: 25px;
  color: white;
  background-color: rgb(232, 130, 130);
  padding:20px;
  width: 75%
}

.overlay-content h2 {
  font-size: 49px;

}

/* responsive CSS */

@media (max-width: 768px) {
  .top-cta {
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }
  .navbar-toggler {
    color: var(--text);
    border-color: var(--text);
  }

  .section-title.title-efficient.p-5 {
    padding: 0 !important;
  }
}
