.select-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .select-desktop {
    display: unset;
  }
  
  .select-tablet {
    display: none;
  }
}

.icono-idioma-top {
  display: inline-block;
  height: 24px;
}

.icono-idioma-top.icon-chevron-up {
  transform: rotate(180deg);
}

{# MOBILE LANGUAGE SWITCHER #}
.imgRedonda {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0px 3px 6px #00000029;
  
  object-fit: cover;
  object-position: center;
}

.menu-lang {
  position: fixed;
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,.5);
}

@media (min-width: 1024px) {
  .menu-lang {
    background-color: transparent;
    
    position: absolute;
    top: unset;
    left: unset;
    height: fit-content;
    width: fit-content;
  }
}

.card-country {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  padding: 32px 32px 16px;
  border-radius: 6px;
  
  width: fit-content;
  min-width: 300px;
  height: fit-content;
  
  background-color: white;
}

.card-country ul {
  padding: 0;
}

.dropdown {
  position: relative;
}

.control-label {
  font-size: 14px;
  color: #000;
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}

.form-group {
  padding-bottom: 16px;
}

.form-group button {
  color: #495057;
  background-color: white;
  border: 1px solid #ddd;
  width: 100%;
  text-align: left;
  border-radius: 6px;
  height: 40px;
  padding: 4px 8px;
  font-size: 14px;
  
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pais-flag {
  width: 30px;
  height: auto;
  object-fit: contain;
  object-position: center;

  display: flex;
  align-items: center;
}

.pais-flag img {
  margin-right: 4px;
  width: 100%;
}

.icon-select-drow svg {
  height: 16px;
  width: 16px;
  margin-top: 4px;
}

.dropdown-menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  z-index: 1;
  
  text-align: center;
  width: 100%;
  border-radius: 6px;
  box-shadow: 0px 3px 6px #00000029;
}

.dropdown-item {
  color: #212529;
  font-size: 14px;
  background-color: white;
  line-height: 41px;

  padding: 4px 20px;
}

.dropdown-menu .dropdown-item.hide {
  display: none;
}

.langBtn {
  background-color: white !important;
  border-color: #ee6e5a !important;

  color: #ee6e5a !important;
  font-size: 14px !important;
}

.text-center {
  text-align: center;
}

@media (min-width: 1024px) {
  .card-country {
    position: absolute;
    top: 16px;
    right: -80px;

    left: unset;
    margin: unset;
    bottom: unset;
  }
}