.counter {
  display: flex;
}

.digit-container {
  position: relative;
  width: 22px;
  height: 60px;
  overflow: hidden;
}

.digit-strip {
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.5s ease-in-out;
}

.digit-strip div {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(255, 255, 255);

  font-size: 21.33px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0%;
  text-align: left;
  text-transform: uppercase;
}

.lang_wrapper {
  position: relative;
  display: inline-block;
}

.dropdown_content {
  display: none;
  position: absolute;
  background: rgb(0, 0, 0);
  width: 64px;

  z-index: 1;
}

.dropdown_content a {
  text-decoration: none;
  display: block;
  color: rgb(255, 255, 255);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-top: none;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
}

.dropdown_content a:hover {
  background: rgba(0, 0, 0, 0.834);
}

.lang_wrapper:hover .dropdown_content {
  display: block;
}

@media only screen and (max-width: 450px) {
  .dropdown_content {
    width: 52px;
  }
  .counter {
    display: flex;
  }

  .digit-container {
    position: relative;
    width: 12px;
    height: 44px;
    overflow: hidden;
    margin-top: -15px;
  }

  .digit-strip {
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s ease-in-out;
  }

  .digit-strip div {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);

    font-size: 11.4px;
    font-weight: 500;
    line-height: 17.1px;
    letter-spacing: 0%;
    text-align: left;
    text-transform: uppercase;
  }
}
