﻿.bg-background-black {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 20;
}

header {
  background: white;
  z-index: 20;
  position: sticky;
  left: 0;
  right: 0;
  top: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
header.fixed-header .bottom-header, header .all-stuff-link {
  display: none;
}
header .top-header {
  position: relative;
  padding: 10px 0;
  background: var(--bs-secondary);
}
header .top-header .container {
  display: flex;
  align-items: center;
}
header .top-header .contact-us {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 30px;
}
header .top-header .contact-us .item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
}
header .top-header .contact-us .item .icon {
  color: var(--bs-primary);
  font-size: 1.6rem;
}
header .top-header .contact-us .item:hover {
  color: var(--bs-primary);
}
header .top-header .social-media {
  display: flex;
  align-items: center;
  gap: 15px;
}
header .top-header .social-media .item-container {
  display: flex;
  align-items: center;
  gap: 15px;
}
header .top-header .social-media .item-container .item {
  transition: 0.3s all;
  color: var(--bs-primary);
}
header .top-header .social-media .item-container .item:hover {
  color: #160E4B;
}
header .bottom-header .container {
  position: relative;
  display: flex;
  align-items: center;
}
header .bottom-header .menu-nav {
  position: relative;
  flex: 1;
  text-align: center;
}
header .bottom-header .menu-nav .mobile-logo-container {
  display: none;
  padding: 15px;
}
header .bottom-header .menu-nav ul {
  list-style: none;
}
header .bottom-header .menu-nav ul li {
  display: inline-block;
}
header .bottom-header .menu-nav .level-1 {
  position: relative;
  display: inline-block;
}
header .bottom-header .menu-nav .level-1 .menu-img {
  display: none;
}
header .bottom-header .menu-nav .level-1 .item {
  padding: 20px 0;
  position: relative;
}
header .bottom-header .menu-nav .level-1 .item .caret {
  display: block;
  position: absolute;
  left: auto;
  right: 0;
  top: 21px;
}
header .bottom-header .menu-nav .level-1 .item .caret:after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: black;
  transition: all 0.3s ease;
}
header .bottom-header .menu-nav .level-1 .item a {
  padding: 0 15px;
}
header .bottom-header .menu-nav .level-1 .item:hover > .caret:after {
  color: var(--bs-primary);
}
header .bottom-header .menu-nav .level-1 .item:hover a {
  color: var(--bs-primary);
}
header .bottom-header .menu-nav .level-1 .item:hover .level-2 {
  transform: scaleY(1);
}
header .bottom-header .menu-nav .level-1 .item.active a {
  color: var(--bs-primary);
}
header .bottom-header .menu-nav .level-1 .item.active .caret:after {
  color: var(--bs-primary);
}
header .bottom-header .menu-nav .level-1 .level-2 {
  transform: scaleY(0);
  transition: 0.3s all;
  transform-origin: top;
  position: absolute;
  left: 0;
  top: 64px;
  min-width: 250px;
  background: white;
  z-index: 2;
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.05);
  border-radius: 15px;
}
header .bottom-header .menu-nav .level-1 .level-2 > .item {
  display: block;
  padding: 10px;
  text-align: start;
}
header .bottom-header .menu-nav .level-1 .level-2 > .item .caret {
  display: block;
  position: absolute;
  right: 20px;
  top: 10px;
  transform: rotate(270deg);
}
header .bottom-header .menu-nav .level-1 .level-2 > .item a {
  color: black;
  display: block;
}
header .bottom-header .menu-nav .level-1 .level-2 > .item a .menu-content {
  position: absolute;
  left: 0;
  right: 250px;
  top: 0;
  height: 100%;
  gap: 4%;
  padding: 20px;
  display: none;
  justify-content: left;
}
header .bottom-header .menu-nav .level-1 .level-2 > .item a .menu-content img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  flex: 0 0 48%;
  width: 48%;
}
header .bottom-header .menu-nav .level-1 .level-2 > .item .level-3 {
  display: none;
  position: absolute;
  top: 0;
  left: 240px;
  background: white;
  min-width: 200px;
  z-index: 3;
  border-radius: 15px;
  box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.05);
}
header .bottom-header .menu-nav .level-1 .level-2 > .item .level-3 > .item {
  border: none;
  display: block;
  padding: 10px;
}
header .bottom-header .menu-nav .level-1 .level-2 > .item .level-3 .level-4 .item {
  border: none;
  display: block;
  padding: 0.5rem;
}
header .bottom-header .menu-nav .level-1 .level-2 > .item .level-3 .level-4 .item > a {
  font-weight: normal;
  font-size: 0.8rem;
  color: gray;
}
header .bottom-header .menu-nav .level-1 .level-2 > .item .level-3 .level-4 .item > .caret {
  transform: rotate(0);
}
header .bottom-header .menu-nav .level-1 .level-2 > .item .level-3 .level-4 .item:hover > a {
  color: var(--bs-primary);
}
header .bottom-header .menu-nav .level-1 .level-2 > .item .level-3 .level-4 .item:hover > a > .caret {
  transform: rotate(180deg);
}
header .bottom-header .menu-nav .level-1 .level-2 > .item.open img {
  filter: grayscale(0) !important;
}
header .bottom-header .menu-nav .level-1 .level-2 > .item.open .level-3 {
  display: flex;
}
header .bottom-header .logo-container {
  flex: 0 0 auto;
}
header .bottom-header .logo-container .header-logo img {
  width: 150px;
}
header .bottom-header .search-icon, header .bottom-header .wish-icon, header .bottom-header .basket-icon {
  color: var(--bs-primary);
  font-size: 2rem;
}
header .bottom-header .wish-icon {
  margin-left: 15px;
}
header .bottom-header .basket-icon {
  margin-left: 15px;
}
header .bottom-header .toggle-btn-container {
  display: none;
}
header .bottom-header .toggle-btn-container .toggle-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 25;
}
header .bottom-header .toggle-btn-container .toggle-btn .bar {
  width: 30px;
  height: 3px;
  background-color: var(--bs-primary);
  margin-bottom: 5px;
  transition: 0.5s all;
}
header .bottom-header .toggle-btn-container .toggle-btn .bar:last-child {
  margin-bottom: 0;
}
header .bottom-header .toggle-btn-container .toggle-btn.open .bar-1 {
  position: absolute;
  transform: rotate(45deg);
  margin: 0;
}
header .bottom-header .toggle-btn-container .toggle-btn.open .bar-2 {
  display: none;
}
header .bottom-header .toggle-btn-container .toggle-btn.open .bar-3 {
  position: absolute;
  transform: rotate(-45deg);
}

#search-section {
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  background: white;
  z-index: 30;
  display: none;
  padding: 100px 0;
}
#search-section .search-box {
  width: 500px;
  margin: auto;
  position: relative;
}
#search-section .search-box .form-control {
  padding-right: 50px;
  border: 1px solid var(--bs-primary);
}
#search-section .search-box .fa-search {
  position: absolute;
  top: 8px;
  right: 15px;
}
#search-section .search-box .search-item-container .search-item {
  padding: 10px 15px;
  color: black;
  background: #f5f5f5;
}
#search-section .search-box .search-item-container .search-item:hover {
  color: white;
  background: var(--bs-secondary);
}
#search-section .search-close {
  position: relative;
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: inline-block;
  position: absolute;
  top: 25px;
  right: 100px;
}
#search-section .search-close:after {
  position: absolute;
  left: 15px;
  content: " ";
  height: 33px;
  width: 2px;
  background-color: #333;
  transform: rotate(-45deg);
}
#search-section .search-close:before {
  position: absolute;
  left: 15px;
  content: " ";
  height: 33px;
  width: 2px;
  background-color: #333;
  transform: rotate(45deg);
}
#search-section .search-close:hover:after {
  background-color: var(--bs-primary);
}
#search-section .search-close:hover:before {
  background-color: var(--bs-primary);
}

@media (max-width: 1200px) {
  header .bottom-header .menu-nav .level-1 .item a {
    padding: 0 10px;
  }
}
@media (min-width: 992px) {
  header .bottom-header .menu-nav .level-1 .level-2 .item:hover a {
    color: var(--bs-primary);
  }
  header .bottom-header .menu-nav .level-1 .level-2 .item:hover a > .menu-content {
    display: flex;
  }
  header .bottom-header .menu-nav .level-1 .level-2 .item:hover .caret:after {
    color: var(--bs-primary);
  }
  header .bottom-header .menu-nav .level-1 .level-2 .item:hover .level-3 {
    display: block;
  }
}
@media (max-width: 992px) {
  header .bottom-header {
    padding: 10px 0;
  }
  header .bottom-header .logo-container {
    flex: 1;
  }
  header .bottom-header .menu-nav {
    position: fixed;
    left: -100%;
    transition: 0.5s all;
    background-color: white;
    top: 0;
    bottom: 0;
    width: 330px;
    z-index: 100;
    text-align: start;
  }
  header .bottom-header .menu-nav .mobile-logo-container {
    display: block;
  }
  header .bottom-header .menu-nav .level-1 {
    display: block;
  }
  header .bottom-header .menu-nav .level-1 .item {
    padding: 15px;
    display: block;
    position: relative;
  }
  header .bottom-header .menu-nav .level-1 .item .caret {
    right: 15px !important;
    top: 15px;
    width: 25px;
    height: 25px;
    text-align: center;
  }
  header .bottom-header .menu-nav .level-1 .item a {
    color: black;
  }
  header .bottom-header .menu-nav .level-1 .item .level-2 {
    display: none;
    transform: unset;
    position: static;
    transform-origin: unset;
    margin-top: 15px;
    box-shadow: none;
    border: 1px solid #ebebeb;
  }
  header .bottom-header .menu-nav .level-1 .item .level-2 .item .caret {
    transform: unset;
  }
  header .bottom-header .menu-nav .level-1 .item .level-2 .item:hover a {
    color: var(--bs-primary);
  }
  header .bottom-header .menu-nav .level-1 .item .level-2 .item:hover a > .menu-content {
    display: flex;
  }
  header .bottom-header .menu-nav .level-1 .item .level-2 .item:hover .caret:after {
    color: var(--bs-primary);
  }
  header .bottom-header .menu-nav .level-1 .item .level-2 .level-3 {
    display: none;
    transform: unset;
    position: static;
    transform-origin: unset;
    margin-top: 15px;
    box-shadow: none;
    border: 1px solid #ebebeb;
  }
  header .bottom-header .menu-nav.open {
    left: 0;
  }
  header .bottom-header .toggle-btn-container {
    display: block;
    flex: 0 auto;
    margin-left: 15px;
  }
}
@media (max-width: 576px) {
  header .container {
    padding: 0 24px;
  }
  header .top-header .container {
    flex-direction: column;
    gap: 20px;
  }
  header .top-header .social-media {
    display: none;
  }
}
footer {
  background: #222934;
  position: relative;
  z-index: 1;
  color: white;
}
footer:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("/UserFiles/HomePage/footerimg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: -1;
}
footer .footer-top {
  padding: 100px 0 40px 0;
  display: flex;
  gap: 100px;
}
footer .footer-top .about-gift {
  flex: 1;
}
footer .footer-top .about-gift .logo-container {
  margin-bottom: 20px;
}
footer .footer-top .about-gift .about-us {
  margin-bottom: 20px;
  line-height: 2;
}
footer .footer-top .about-gift .contact-us .item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
footer .footer-top .about-gift .contact-us .icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bs-primary);
  border-radius: 50%;
}
footer .footer-top .footer-menu {
  flex: 2;
}
footer .footer-top .footer-menu .menu-item {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
footer .footer-top .footer-menu .menu-item .item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer .footer-top .footer-menu .menu-item .item .footer-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
  padding-bottom: 15px;
  position: relative;
  z-index: 1;
}
footer .footer-top .footer-menu .menu-item .item .footer-title:after {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  bottom: 0;
  left: 14px;
  z-index: -1;
}
footer .footer-top .footer-menu .menu-item .item .footer-title:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  background: var(--bs-primary);
  border-radius: 50px;
  bottom: 0;
  left: 0;
  z-index: -1;
}
footer .footer-top .footer-menu .menu-item .item .footer-item:hover {
  color: var(--bs-primary);
}
footer .footer-bottom {
  display: flex;
  align-items: center;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
footer .copy-right {
  flex: 1;
}
footer .social-media {
  display: flex;
  align-items: center;
  gap: 30px;
}
footer .social-media .item-container {
  display: flex;
  align-items: center;
  gap: 10px;
}
footer .social-media .item-container .item {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transition: 0.3s all;
}
footer .social-media .item-container .item:hover {
  background: var(--bs-primary);
}

@media (max-width: 1400px) {
  footer .footer-top {
    gap: 50px;
  }
}
@media (max-width: 992px) {
  footer .footer-top {
    flex-wrap: wrap;
  }
  footer .footer-top .about-gift {
    flex: 0 0 100%;
  }
  footer .footer-top .footer-menu {
    flex: 0 0 100%;
  }
  footer .footer-bottom {
    flex-direction: column-reverse;
    gap: 20px;
    align-items: start;
  }
}
@media (max-width: 768px) {
  footer .footer-top .footer-menu .menu-item {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  footer .container {
    padding: 0 24px;
  }
}
html {
  font-size: 10px;
}

img.aed {
  height: 0.7em;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMiIgdmlld0JveD0iMCAwIDEwMDAgODcwIiB3aWR0aD0iMTAwMCIgaGVpZ2h0PSI4NzAiPgoJPHRpdGxlPkxheWVyIGNvcHk8L3RpdGxlPgoJPHN0eWxlPgoJCS5zMCB7IGZpbGw6ICNGMDU0NTQgfSAKCTwvc3R5bGU+Cgk8cGF0aCBpZD0iTGF5ZXIgY29weSIgY2xhc3M9InMwIiBkPSJtODguMyAxYzAuNCAwLjYgMi42IDMuMyA0LjcgNS45IDE1LjMgMTguMiAyNi44IDQ3LjggMzMgODUuMSA0LjEgMjQuNSA0LjMgMzIuMiA0LjMgMTI1LjZ2ODdoLTQxLjhjLTM4LjIgMC00Mi42LTAuMi01MC4xLTEuNy0xMS44LTIuNS0yNC05LjItMzIuMi0xNy44LTYuNS02LjktNi4zLTcuMy01LjkgMTMuNiAwLjUgMTcuMyAwLjcgMTkuMiAzLjIgMjguNiA0IDE0LjkgOS41IDI2IDE3LjggMzUuOSAxMS4zIDEzLjYgMjIuOCAyMS4yIDM5LjIgMjYuMyAzLjUgMSAxMC45IDEuNCAzNy4xIDEuNmwzMi43IDAuNXY0My4zIDQzLjRsLTQ2LjEtMC4zLTQ2LjMtMC4zLTgtMy4yYy05LjUtMy44LTEzLjgtNi42LTIzLjEtMTQuOWwtNi44LTYuMSAwLjQgMTkuMWMwLjUgMTcuNyAwLjYgMTkuNyAzLjEgMjguNyA4LjcgMzEuOCAyOS43IDU0LjUgNTcuNCA2MS45IDYuOSAxLjkgOS42IDIgMzguNSAyLjRsMzAuOSAwLjR2ODkuNmMwIDU0LjEtMC4zIDk0LTAuOCAxMDAuOC0wLjUgNi4yLTIuMSAxNy44LTMuNSAyNS45LTYuNSAzNy4zLTE4LjIgNjUuNC0zNSA4My42bC0zLjQgMy43aDE2OS4xYzEwMS4xIDAgMTc2LjctMC40IDE4Ny44LTAuOSAxOS41LTEgNjMtNS4zIDcyLjgtNy40IDMuMS0wLjYgOC45LTEuNSAxMi43LTIuMSA4LjEtMS4yIDIxLjUtNCA0MC44LTguOSAyNy4yLTYuOCA1Mi0xNS4zIDc2LjMtMjYuMSA3LjYtMy40IDI5LjQtMTQuNSAzNS4yLTE4IDMuMS0xLjggNi44LTQgOC4yLTQuNyAzLjktMi4xIDEwLjQtNi4zIDE5LjktMTMuMSA0LjctMy40IDkuNC02LjcgMTAuNC03LjQgNC4yLTIuOCAxOC43LTE0LjkgMjUuMy0yMSAyNS4xLTIzLjEgNDYuMS00OC44IDYyLjQtNzYuMyAyLjMtNCA1LjMtOSA2LjYtMTEuMSAzLjMtNS42IDE2LjktMzMuNiAxOC4yLTM3LjggMC42LTEuOSAxLjQtMy45IDEuOC00LjMgMi42LTMuNCAxNy42LTUwLjYgMTkuNC02MC45IDAuNi0zLjMgMC45LTMuOCAzLjQtNC4zIDEuNi0wLjMgMjQuOS0wLjMgNTEuOC0wLjEgNTMuOCAwLjQgNTMuOCAwLjQgNjUuNyA1LjkgNi43IDMuMSA4LjcgNC41IDE2LjEgMTEuMiA5LjcgOC43IDguOCAxMC4xIDguMi0xMS43LTAuNC0xMi44LTAuOS0yMC43LTEuOC0yMy45LTMuNC0xMi4zLTQuMi0xNC45LTcuMi0yMS4xLTkuOC0yMS40LTI2LjItMzYuNy00Ny4yLTQ0bC04LjItMy0zMy40LTAuNC0zMy4zLTAuNSAwLjQtMTEuN2MwLjQtMTUuNCAwLjQtNDUuOS0wLjEtNjEuNmwtMC40LTEyLjYgNDQuNi0wLjJjMzguMi0wLjIgNDUuMyAwIDQ5LjUgMS4xIDEyLjYgMy41IDIxLjEgOC4zIDMxLjUgMTcuOGw1LjggNS40di0xNC44YzAtMTcuNi0wLjktMjUuNC00LjUtMzctNy4xLTIzLjUtMjEuMS00MS00MS4xLTUxLjgtMTMtNy0xMy44LTcuMi01OC41LTcuNS0yNi4yLTAuMi0zOS45LTAuNi00MC42LTEuMi0wLjYtMC42LTEuMS0xLjYtMS4xLTIuNCAwLTAuOC0xLjUtNy4xLTMuNS0xMy45LTIzLjQtODIuNy02Ny4xLTE0OC40LTEzMS0xOTcuMS04LjctNi43LTMwLTIwLjgtMzguNi0yNS42LTMuMy0xLjktNi45LTMuOS03LjgtNC41LTQuMi0yLjMtMjguMy0xNC4xLTM0LjMtMTYuNi0zLjYtMS42LTguMy0zLjYtMTAuNC00LjQtMzUuMy0xNS4zLTk0LjUtMjkuOC0xMzkuNy0zNC4zLTcuNC0wLjctMTcuMi0xLjgtMjEuNy0yLjItMjAuNC0yLjMtNDguNy0yLjYtMjA5LjQtMi42LTEzNS44IDAtMTY5LjkgMC4zLTE2OS40IDF6bTMzMC43IDQzLjNjMzMuOCAyIDU0LjYgNC42IDc4LjkgMTAuNSA3NC4yIDE3LjYgMTI2LjQgNTQuOCAxNjQuMyAxMTcgMy41IDUuOCAxOC4zIDM2IDIwLjUgNDIuMSAxMC41IDI4LjMgMTUuNiA0NS4xIDIwLjEgNjcuMyAxLjEgNS40IDIuNiAxMi42IDMuMyAxNiAwLjcgMy4zIDEgNi40IDAuNyA2LjctMC41IDAuNC0xMDAuOSAwLjYtMjIzLjMgMC41bC0yMjIuNS0wLjItMC4zLTEyOC41Yy0wLjEtNzAuNiAwLTEyOS4zIDAuMy0xMzAuNGwwLjQtMS45aDcxLjFjMzkgMCA3OCAwLjQgODYuNSAwLjl6bTI5Ny41IDM1MC4zYzAuNyA0LjMgMC43IDc3LjMgMCA4MC45bC0wLjYgMi43LTIyNy41LTAuMi0yMjcuNC0wLjMtMC4yLTQyLjRjLTAuMi0yMy4zIDAtNDIuNyAwLjItNDMuMSAwLjMtMC41IDk3LjItMC44IDIyNy43LTAuOGgyMjcuMnptLTEwLjIgMTcxLjdjMC41IDEuNS0xLjkgMTMuOC02LjggMzMuOC01LjYgMjIuNS0xMy4yIDQ1LjItMjAuOSA2Mi0zLjggOC42LTEzLjMgMjcuMi0xNS42IDMwLjctMS4xIDEuNi00LjMgNi43LTcuMSAxMS4yLTE4IDI4LjItNDMuNyA1My45LTczIDcyLjktMTAuNyA2LjgtMzIuNyAxOC40LTM4LjYgMjAuMi0xLjIgMC4zLTIuNSAwLjktMyAxLjMtMC43IDAuNi05LjggNC0yMC40IDcuOC0xOS41IDYuOS01Ni42IDE0LjQtODYuNCAxNy41LTE5LjMgMS45LTIyLjQgMi05Ni43IDJoLTc2Ljl2LTEyOS43LTEyOS44bDIyMC45LTAuNGMxMjEuNS0wLjIgMjIxLjYtMC41IDIyMi40LTAuNyAwLjktMC4xIDEuOCAwLjUgMi4xIDEuMnoiLz4KPC9zdmc+");
}

.v-toast-container {
  position: fixed;
  right: 15px;
  top: 10px;
  z-index: 99999;
}
.v-toast-container .v-toast {
  z-index: 100;
  overflow: hidden;
  transition: 0.5s all;
  cursor: pointer;
  min-width: 350px;
  text-align: center;
  color: black;
  background-color: #effcf9 !important;
  font-size: 16px;
  opacity: 0.5;
  box-shadow: 0 2px 9px #cbcbcb;
  border-radius: 2px;
  margin-bottom: 10px;
}
.v-toast-container .v-toast .toast-header {
  height: 5px;
  width: 100%;
  background: #ddd;
  position: relative;
}
.v-toast-container .v-toast .toast-header .timing {
  position: absolute;
  left: 0;
  right: 0;
  background: #88e4cf;
  height: 5px;
  top: 0;
  width: 100%;
}
.v-toast-container .v-toast .toast-header .timing.toast-header-error {
  background: #e4888c;
}
.v-toast-container .v-toast.toast-erorr {
  background: #fcefef !important;
}
.v-toast-container .v-toast p {
  margin: 0;
  vertical-align: middle;
  padding: 5px 30px;
}
.v-toast-container .v-toast.show-toast {
  opacity: 1;
}

[type=tel], [type=url], [type=email], [type=number] {
  direction: ltr;
}

.custom-input p.text-danger {
  margin: 0;
  padding-right: 10px;
}
.custom-input .form-group {
  margin-bottom: 5px;
}
.custom-input .input-container {
  position: relative;
}
.custom-input .input-container input {
  padding: 7px 10px;
}
.custom-input .input-container input:focus {
  border-color: #dee2e6;
  box-shadow: none;
}
.custom-input .input-container.focused:after {
  transform: scalex(1);
}
.custom-input .input-container:after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  background: var(--bs-primary);
  height: 2px;
  z-index: 5;
  transform: scalex(0);
  transition: 0.3s all;
}

.custom-input-range label {
  text-align: center;
  margin-bottom: 15px;
  font-weight: bold;
  font-size: 2rem;
}
.custom-input-range .input-container {
  position: relative;
}
.custom-input-range .input-container input {
  -webkit-appearance: none;
  height: 8px;
  border-radius: 6px;
  background: var(--bs-secondary);
  outline: none;
}
.custom-input-range .input-container input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 0;
  height: 0;
}
.custom-input-range .input-container .progress-bar {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 8px;
  border-radius: 6px;
  background: var(--bs-primary);
  pointer-events: none;
  overflow: visible;
  z-index: 5;
}
.custom-input-range .input-container .progress-thumb {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--bs-primary);
  border: 4px solid white;
  outline: 2px solid #e0e0e0;
}

.custom-dropdown .select-container {
  position: relative;
}
.custom-dropdown .select-container select {
  padding: 7px 10px;
}
.custom-dropdown .select-container select:focus {
  border-color: #dee2e6;
  box-shadow: none;
}
.custom-dropdown .select-container.focused:after {
  transform: scalex(1);
}
.custom-dropdown .select-container:after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  background: var(--bs-primary);
  height: 2px;
  z-index: 5;
  transform: scalex(0);
  transition: 0.3s all;
}

.custom-switch {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 30px 15px;
  display: flex;
  align-items: center;
  border-radius: 12px;
}
.custom-switch .swich-title {
  flex: 1;
}
.custom-switch .switch {
  position: relative;
  width: 50px;
  height: 25px;
}
.custom-switch .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.custom-switch .switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bs-secondary);
  transition: 0.4s all;
  border-radius: 34px;
}
.custom-switch .switch .slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s all;
  border-radius: 50%;
}
.custom-switch .switch input:checked + .slider {
  background-color: var(--bs-primary);
}
.custom-switch .switch input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}
.custom-switch .switch input:checked + .slider:before {
  transform: translateX(22px);
}

.btn-primary {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 10px;
  color: white;
  background-color: var(--bs-primary);
  padding: 10px 20px;
  border: none;
  opacity: 1;
  transition: 0.3s all;
}
.btn-primary:hover {
  color: white;
  background-color: var(--bs-primary);
}
.btn-primary:hover:before {
  transform: translateY(-50%) translateX(-50%) scale(1);
}
.btn-primary:active {
  color: white;
  background-color: var(--bs-primary);
}
.btn-primary:after {
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  vertical-align: middle;
  margin-left: 5px;
}
.btn-primary:before {
  content: "";
  height: 300px;
  width: 300px;
  background: var(--bs-tertiary);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(0);
  transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.text-primary {
  color: var(--bs-primary) !important;
}

.border-primary {
  border-color: var(--bs-primary) !important;
}

.alert-primary {
  background: #b2abf7 !important;
  color: white !important;
  border: none;
}

input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 18px;
  height: 18px;
  outline: 1px solid #e0e0e0;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  background-color: transparent;
  margin-right: 5px;
}

input[type=radio]:checked {
  background-color: var(--bs-primary) !important;
  border: 4px solid white;
}

.checkbox-container {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  user-select: none;
}
.checkbox-container input {
  display: none;
}
.checkbox-container .checkmark {
  width: 20px;
  height: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  margin-right: 10px;
  position: relative;
  background-color: #fff;
  transition: all 0.3s ease;
}
.checkbox-container .checkmark::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border-radius: 6px;
}
.checkbox-container input:checked + .checkmark::after {
  background-color: var(--bs-primary);
  border: 4px solid white;
}

.status-label {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.2em 0.6em 0.3em;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0 0.25rem 0.25rem 0;
}

.like {
  cursor: pointer;
}
.like:after {
  content: "\f004";
  font-family: "Font Awesome 5 Free";
  font-weight: normal;
}
.like.liked:after {
  font-weight: bold;
  color: red;
}

.owl-carousel {
  display: block;
}

/***MultiSelect****/
.multiselect {
  direction: rtl !important;
  text-align: right !important;
}
.multiselect .multiselect__select {
  left: 1px;
  right: auto;
}
.multiselect .multiselect__select:before {
  top: 80%;
}
.multiselect .multiselect__tags {
  padding: 8px 8px 8px 28px;
  height: 38px;
}
.multiselect .multiselect__content-wrapper .multiselect__content .multiselect__element .multiselect__option {
  white-space: normal;
}

.wizard-container {
  display: flex;
  flex-direction: column;
}
.wizard-container .wizard-header h1 {
  font-size: 1.6rem;
}
.wizard-container .wizard-header .progress-bar-container {
  position: relative;
  margin: 40px 0;
}
.wizard-container .wizard-header .progress-bar-container .wizard-progress-bar {
  background: #ddd;
  height: 3px;
}
.wizard-container .wizard-header .progress-bar-container .wizard-progressing {
  position: absolute;
  top: 0;
  background: var(--bs-primary);
  height: 3px;
  width: 0;
  transition: 0.3s all;
  max-width: 100%;
}
.wizard-container .wizard-header .progress-bar-container .bullet-container {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.wizard-container .wizard-header .progress-bar-container .bullet-container .bullet-item {
  background: white;
  border: 1px solid #ddd;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.wizard-container .wizard-header .progress-bar-container .bullet-container .bullet-item .icon {
  width: 100%;
  height: 100%;
  padding: 5px;
}
.wizard-container .wizard-header .progress-bar-container .bullet-container.active .bullet-item {
  border: 1px solid var(--bs-primary);
  background-color: var(--bs-primary);
  color: white;
}
.wizard-container .wizard-header .progress-bar-container .bullet-container:last-child {
  left: auto !important;
  right: 0;
}
.wizard-container .wizard-body {
  flex: 1;
  margin-bottom: 40px;
  font-size: 1.6rem;
}
.wizard-container .wizard-footer {
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
  gap: 15px;
}
.wizard-container .wizard-footer .btn-next {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 10px;
  color: white;
  background-color: var(--bs-primary);
  padding: 10px 20px;
  border: none;
  opacity: 1;
  transition: 0.3s all;
}
.wizard-container .wizard-footer .btn-next:hover {
  color: white;
  background-color: var(--bs-primary);
}
.wizard-container .wizard-footer .btn-next:hover:before {
  transform: translateY(-50%) translateX(-50%) scale(1);
}
.wizard-container .wizard-footer .btn-next:active {
  color: white;
  background-color: var(--bs-primary);
}
.wizard-container .wizard-footer .btn-next:after {
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  vertical-align: middle;
  margin-left: 5px;
}
.wizard-container .wizard-footer .btn-next:before {
  content: "";
  height: 300px;
  width: 300px;
  background: var(--bs-tertiary);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(0);
  transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}
.wizard-container .wizard-footer .btn-prev {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 10px;
  color: white;
  background-color: var(--bs-primary);
  padding: 10px 20px;
  border: none;
  opacity: 1;
  transition: 0.3s all;
}
.wizard-container .wizard-footer .btn-prev:hover {
  color: white;
  background-color: var(--bs-primary);
}
.wizard-container .wizard-footer .btn-prev:hover:after {
  transform: translateY(-50%) translateX(-50%) scale(1);
}
.wizard-container .wizard-footer .btn-prev:active {
  color: white;
  background-color: var(--bs-primary);
}
.wizard-container .wizard-footer .btn-prev:before {
  content: "\f060";
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  vertical-align: middle;
  margin-right: 5px;
}
.wizard-container .wizard-footer .btn-prev:after {
  content: "";
  height: 300px;
  width: 300px;
  background: var(--bs-tertiary);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(0);
  transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.multiselect__option--highlight {
  background: var(--bs-primary);
  color: white;
}

.size-100 {
  font-size: 1rem;
}

.size-80 {
  font-size: 0.8rem;
}

.line-bar-container {
  background: #efefef;
  height: 8px;
  overflow: hidden;
  border-radius: 5px;
  margin: 15px 0 0;
}
.line-bar-container .line-bar {
  background: var(--bs-primary);
  width: 0;
  height: 100%;
  display: block;
  transition: 1s width;
}

.share-btn:after {
  content: "\f1e0";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
}

[v-cloak] {
  display: none !important;
}

.modal-backdrop.show {
  z-index: 100 !important;
}

.form-group {
  margin-bottom: 15px;
}

.btn-block {
  display: block;
  width: 100%;
}

.float-button {
  position: fixed;
  right: 30px;
  bottom: 80px;
  z-index: 4;
}

.cursor-pointer {
  cursor: pointer;
}

.cursor-pointer {
  cursor: pointer;
}

body {
  direction: ltr;
  padding: 0;
  padding: 0;
  margin: 0;
  position: relative;
  background-color: #f7f8fa;
  color: #2b2b33;
  font-size: 1.6rem;
}

.error, .field-validation-error {
  color: red;
  display: block;
}

/*.wide { width: 100%; max-width: 1290px; padding: 0 15px; margin: 0 auto; }*/
.inner-page .content-wrapper, .html-page .content-wrapper {
  padding: 30px 0;
}

.no-scroll-bar {
  overflow: hidden;
}

p {
  margin: 0;
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  font-weight: normal;
  line-height: inherit;
}

h1 {
  font-size: 1.4rem;
}

h2 {
  font-size: 1.2rem;
}

h3 {
  font-size: 1.1rem;
}

h4 {
  font-size: 1.1rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 1rem;
}

.w-20 {
  width: 20% !important;
}

.col-b-15 {
  flex: 0 0 15%;
}

.col-b-20 {
  flex: 0 0 20%;
}

.col-b-25 {
  flex: 0 0 25%;
}

.col-b-50 {
  flex: 0 0 50%;
}

.col-b-75 {
  flex: 0 0 75%;
}

.pb-6 {
  padding-bottom: 4.5rem;
}

.loading-container {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 9999;
}
.loading-container .loading {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  background: white;
  padding: 40px 10px;
  border-radius: 10px;
}
.loading-container .loading img {
  margin: 0 auto;
  width: 70%;
}
.loading-container .loading img:last-child {
  width: 80px;
}

.profile .dropdown-menu {
  font-size: 1.4rem;
}
.profile .dropdown-toggle:after {
  vertical-align: middle;
  margin: 0;
}

.vue-uploader .progres-bar-container {
  color: #000 !important;
  background-color: #f1f1f1 !important;
  margin: 10px 0;
}
.vue-uploader .progres-bar-container .progres-bar {
  color: #fff !important;
  background-color: var(--bs-primary) !important;
  padding: 0.01em 16px;
  text-align: center !important;
}

.text-ellipsis--2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
}

.text-ellipsis--3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  white-space: normal;
}

.text-ellipsis--4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  white-space: normal;
}

.text-ellipsis--5 {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  white-space: normal;
}

.text-ellipsis--6 {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  white-space: normal;
}

.text-ellipsis--7 {
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  white-space: normal;
}

.text-ellipsis--8 {
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  white-space: normal;
}

.text-ellipsis--9 {
  display: -webkit-box;
  -webkit-line-clamp: 9;
  -webkit-box-orient: vertical;
  white-space: normal;
}

.text-ellipsis--10 {
  display: -webkit-box;
  -webkit-line-clamp: 10;
  -webkit-box-orient: vertical;
  white-space: normal;
}

.flex-grow-2 {
  flex-grow: 2 !important;
}

.flex-grow-3 {
  flex-grow: 3 !important;
}

.flex-4 {
  flex: 4 !important;
}

.ltr {
  direction: ltr;
}

.lg-container.lg-show {
  direction: ltr;
}

.form-check-input:disabled {
  background: #dddddd;
}

strong {
  font-weight: bold;
}

img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

.no-padding {
  padding-right: 0;
  padding-left: 0;
}

* a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

*:focus, *:visited, *:active {
  outline: none;
  text-decoration: none;
}

a {
  color: inherit;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
a:hover, a:focus {
  text-decoration: none;
  outline: none;
  color: inherit;
}

.mw-90 {
  min-width: 90%;
}

ul, ol {
  list-style-position: inside;
  padding: 0;
  margin: 0;
}

.custom-radio-gp {
  margin: 10px 0;
}
.custom-radio-gp .title {
  font-weight: bold !important;
}
.custom-radio-gp .custom-radio, .custom-radio-gp .custom-checkbox {
  padding-right: 20px;
  margin: 10px 0;
}

.label-success {
  background-color: var(--bs-sucess);
  color: black;
}

.label-danger {
  background-color: var(--bs-danger);
}

.back-top {
  position: fixed;
  bottom: -35px;
  right: 0;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.5s ease 0s, bottom 0.5s ease 0s;
}
.back-top.show {
  bottom: 0;
  opacity: 1;
}
.back-top a {
  width: 35px;
  height: 35px;
  display: block;
  background: #ed1c24;
  text-align: center;
  opacity: 1;
}
.back-top a span {
  color: #fff;
  font-size: 14px;
  line-height: 30px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  cursor: pointer;
}

.sticky {
  position: sticky;
  z-index: 2;
}

.rate .br-widget {
  height: 23px;
  white-space: nowrap;
}
.rate .br-widget a {
  text-decoration: none;
  height: 19px;
  width: 19px;
  float: left;
  font-size: 23px;
  margin-right: 5px;
  background: url("../images/star.png") no-repeat;
}
.rate .br-widget a.br-active, .rate .br-widget a.br-selected {
  background: url("../images/star-hover.png") no-repeat;
  background-position: center;
}
.rate .br-widget .br-current-rating {
  display: none;
}
.rate .br-readonly a {
  cursor: default;
}

.alert-modal-container {
  position: fixed;
  left: 30px;
  bottom: 80px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0px 2px 10px 0px #c3c3c3;
  background: white;
  z-index: 100;
  border-radius: 2px;
  font-size: 0.9rem;
}
.alert-modal-container .modal-content {
  line-height: 2;
}
.alert-modal-container .modal-content .modal-header {
  border-bottom: 1px solid #ebebeb;
  margin-bottom: 10px;
  padding: 10px;
  background: var(--bs-primary);
  color: white;
}
.alert-modal-container .modal-content .modal-header .alert-close-btn {
  font-size: 1.2rem;
}
.alert-modal-container .modal-content .modal-body {
  padding: 10px;
}

.br-theme-poll .br-widget {
  white-space: nowrap;
  display: inline-block;
}
.br-theme-poll .br-widget a {
  display: inline-block;
  width: 55px;
  height: 12px;
  background-color: #b3eaee;
  margin: 1px;
}
.br-theme-poll .br-widget a.br-active, .br-theme-poll .br-widget a.br-selected {
  background-color: #60d3db;
}
.br-theme-poll .br-widget .br-current-rating {
  text-align: center;
  font-weight: 600;
  display: block;
  color: #27a5ae;
  font-weight: 400;
  min-height: 34px;
}
.br-theme-poll .br-readonly a {
  cursor: default;
}
.br-theme-poll .br-readonly a.br-active, .br-theme-poll .br-readonly a.br-selected {
  background-color: #81dce3;
}
.br-theme-poll .br-readonly .br-current-rating {
  color: #36c7d2;
}

.more-content-btn {
  color: var(--bs-primary);
  cursor: pointer;
  margin: 10px 0;
}
.more-content-btn:after {
  content: "\f104";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: sub;
  margin-right: 2px;
}

.tooltip-left {
  position: relative;
}
.tooltip-left .tooltiptext {
  visibility: hidden;
  width: 170px;
  background-color: #8f8f8f;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  top: 0px;
  right: 150%;
  font-size: 0.9rem;
}
.tooltip-left .tooltiptext:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent #8f8f8f;
}
.tooltip-left:hover .tooltiptext {
  visibility: visible;
}

.share-box-modal {
  cursor: pointer;
}
.share-box-modal:after {
  content: "\f1e0";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
}

#shareModal .links .btn {
  margin: 5px;
}
#shareModal .links .btn i {
  vertical-align: middle;
}
#shareModal .links .facebook {
  background: #4267B2;
  color: white;
}
#shareModal .links .twitter {
  background: #1DA1F2;
  color: white;
}
#shareModal .links .linkedin {
  background: #0077b5;
  color: white;
}
#shareModal .links .telegram {
  background: #229ED9;
  color: white;
}
#shareModal .links .whatsapp {
  background: #128C7E;
  color: white;
}

.modal-dialog .close {
  background: white;
  border: none;
  font-size: 1.4rem;
}

@media (max-width: 992px) {
  .breadcrumb-w {
    margin: 0;
  }
}
@media (max-width: 768px) {
  .tooltip-left .tooltiptext {
    display: none;
  }
}
@media print {
  .br-theme-poll .br-widget a {
    border: 1px solid #b3b3b3;
    background: white;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .br-theme-poll .br-widget a.br-active, .br-theme-poll .br-widget a.br-selected {
    border: 1px solid black;
    background: white;
  }
  .br-theme-poll .br-widget .br-current-rating {
    color: black;
  }
}
@media print {
  .br-theme-css-stars .br-widget a {
    background: url("/images/star.png") no-repeat;
    color: black;
  }
  .br-theme-css-stars .br-widget a.br-active,
  .br-theme-css-stars .br-widget a.br-selected {
    background: url("/images/star-hover.png") no-repeat;
    color: black;
  }
}
