@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;200;300;400;500;600;700;800;900&family=Source+Code+Pro:wght@200&display=swap");
* {
  font-family: 'Roboto', sans-serif;
  font-size: 13px; }

:root {
  --light-blue: rgba(240,245,255,1);
  --blue: #31319b;
  --white: #fff;
  --purple: rgba(168,152,250,0.8);
  --light-gray: rgba(225,225,225,1);
  --menu-font-color: #443f67;
  --oxford-icon: #969FB3; }

nav {
  position: relative;
  z-index: 800;
  margin-top: 10px;
  width: 85%;
  height: 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 0 5px rgba(168, 152, 250, 0.2);
  padding: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500; }

.nav-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 7px;
  padding: 10px 30px;
  background-color: rgba(240, 245, 255, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: 0 0 5px rgba(168, 152, 250, 0.3); }

nav ul {
  height: 100%;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  color: var(--menu-font-color); }

nav ul li {
  padding: 20px 15px;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: .6s;
  cursor: pointer; }

nav ul li:hover {
  background: rgba(168, 152, 250, 0.03);
  border: 1px solid rgba(168, 152, 250, 0.2);
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.5); }

nav ul li:not(:first-child) {
  margin-left: 30px; }

nav .shop-choice {
  height: 150px;
  width: 230px;
  padding: 15px;
  position: absolute;
  background: RGBA(250, 255, 255, 1);
  box-shadow: 0 0 8px rgba(168, 152, 250, 0.5);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  transition: .5s; }

nav a {
  text-decoration: none;
  width: 100%;
  color: var(--menu-font-color); }

nav .shop-choice a {
  text-decoration: none; }

nav .shop-choice.active a {
  text-decoration: none; }

nav .shop-choice.active {
  visibility: visible;
  opacity: 1;
  z-index: 999;
  margin-top: 21px;
  transition: .4s; }

nav .shop-choice .submenu-element {
  padding: 15px 15px;
  width: 100%;
  border-radius: 15px;
  transition: .6s; }

nav .shop-choice .submenu-element:hover {
  background: rgba(168, 152, 250, 0.07); }

nav .shop-choice .separator {
  width: 70%;
  border-bottom: 0.5px solid var(--light-gray);
  margin: 7px 0; }

nav form {
  display: none; }

nav .language-support {
  position: absolute;
  right: 170px; }
  nav .language-support .icon.menu {
    width: 30px;
    height: 30px;
    cursor: pointer; }
    nav .language-support .icon.menu svg {
      width: 100%;
      height: 100%; }
    nav .language-support .icon.menu path {
      fill: var(--menu-font-color); }
  nav .language-support .language-wrapper {
    width: 180px;
    height: 0px;
    display: none;
    background-color: #fff;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 10px);
    border-radius: 32px;
    box-shadow: 0 0 4px rgba(73, 40, 255, 0.2);
    overflow-y: scroll;
    padding: 20px; }
    nav .language-support .language-wrapper.active {
      height: 250px;
      display: block;
      animation: languageHeight .2s ease; }

@keyframes languageHeight {
  0% {
    height: 0px; }
  100% {
    height: 250px; } }
    nav .language-support .language-wrapper .active-language-wrapper {
      position: relative;
      height: 35px;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 15px; }
      nav .language-support .language-wrapper .active-language-wrapper .icon {
        position: relative;
        width: 30px;
        height: 30px;
        overflow: hidden;
        object-fit: fill; }
        nav .language-support .language-wrapper .active-language-wrapper .icon svg {
          width: 100%;
          height: 100%;
          object-fit: fill; }
    nav .language-support .language-wrapper .devider-wrapper {
      margin-top: 10px;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center; }
      nav .language-support .language-wrapper .devider-wrapper .devider {
        width: 100%;
        border-bottom: 1px dotted var(--oxford-icon); }
    nav .language-support .language-wrapper .language-list {
      position: relative;
      width: 100%;
      margin-top: 10px;
      display: flex;
      flex-direction: column; }
      nav .language-support .language-wrapper .language-list .single-language {
        position: relative;
        margin-top: 10px;
        width: 100%;
        height: 20px;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        -ms-user-select: none;
        -o-user-select: none;
        cursor: pointer; }
        nav .language-support .language-wrapper .language-list .single-language .icon {
          width: 20px;
          height: 20px;
          display: flex;
          justify-content: center;
          align-items: center;
          overflow: hidden; }
          nav .language-support .language-wrapper .language-list .single-language .icon svg {
            display: block;
            object-fit: fill;
            width: 100%;
            height: 100%; }
        nav .language-support .language-wrapper .language-list .single-language label {
          position: relative;
          display: block;
          width: 100%;
          height: 100%;
          font-weight: 500;
          display: flex;
          justify-content: flex-start;
          align-items: center;
          column-gap: 10px;
          cursor: pointer; }
      nav .language-support .language-wrapper .language-list input {
        display: none; }

nav .login {
  padding: 13px 15px;
  width: 100%;
  border-radius: 7px;
  background: var(--menu-font-color);
  color: #fff;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: .5s;
  cursor: pointer; }

nav .login:hover {
  background: var(--blue); }

@media screen and (max-width: 920px) {
  nav ul li:not(:first-child) {
    margin-left: 10px; }
  nav ul li {
    padding: 5px 5px; }
  nav ul li a {
    font-size: 12px;
    letter-spacing: 0; } }

@media screen and (max-width: 768px) {
  nav {
    width: 100%; }
  nav .login {
    padding: 7px 5px; }
  nav .login {
    font-size: 12px; }
  nav ul li:not(:first-child) {
    margin-left: 4px; } }

@media screen and (max-width: 480px) {
  nav {
    display: none; } }

/*# sourceMappingURL=navbar.css.map */