
.dropdown-container {
  display: flex;
  z-index: 9000;
}
.dropdown-head {
  padding: 0 15px;
}
.dropdown-head p {
  margin: 0 !important;
  font-size: 13px;
  line-height: normal;
  display: flex;
  color: #000;
  align-items: center;
}
.dropdown-head  {
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.arrow {
  font-size: 12px;
}
.dropdown {
  width: 300px;
  background: #fff;

position: relative;
}
.dropdown-lang {
  display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    background: #fff;
    padding: 0 15px 15px;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    transition: 0.5s;
}
.dropdown-lang.open {
  opacity: 1;
  visibility: visible;
  transition: 0.5s;
}
.dropdown-lang button {
  border: none;
  background: none;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  line-height: normal;
  padding: 5px 0;
  outline: none;
  cursor: pointer;
  width: 100%;
  color:#000;
  display: flex;
  text-align: left;
}
.dropdown-lang button span, .selected span {
  width: calc(100% - 31px);
}
.hidden {
  display: none !important;
}
.dropdown:first-of-type {
  margin-right: 30px;
}

@media only screen and (max-width: 768.1px) {
  .dropdown-container {
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
  }
  .dropdown {
    width: 100%;
  }
  .smaller {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .go {
    margin-left: 0;
  }
  .open {
    z-index: 999;
  }
  .logo {
    width: calc(100% - 60px);
    margin: -30px auto 0;
}
  .dropdown:first-of-type {
    margin-right: 0;
  }
}

@media only screen and (max-width: 350px) {
  .dropdown-head p {
    font-size: 13px
  }
  .dropdown-container {
    width: 90% !important;
    margin: 30px auto 0 !important;
  }
  .logo {
    width: 90%;
    margin: -30px auto 0;
  }
}