.simplelanguagebutton {
  display: none;
}
.simplelanguagebutton.visible {
  display: block;
}
.simplelanguagebutton .slb_link{
  position: fixed;
  left: 0;
  bottom: 0;
  padding: 0.7rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: #0D3858;
  color: white;
  z-index: 12;
  gap: 1rem;
  text-decoration: none;
  font-size: 1.1rem;
  text-align: center;
  width: 100%;
  line-height: 1;
  -webkit-box-shadow: 0px 10px 30px -10px rgba(0,0,0,0.5);
  -moz-box-shadow: 0px 10px 30px -10px rgba(0,0,0,0.5);
  box-shadow: 0px 10px 30px -10px rgba(0,0,0,0.5);
}
.simplelanguagebutton .slb_link svg{
  width: 22px;
  height: 22px;
}
.simplelanguagebutton .slb_link:hover{
  background-color: #0D3858;
  color: white !important;
}
.slb_close {
  width: 16px;
  height: 16px;
  padding: calc(0.7rem + 3px);
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 13;
  box-sizing: content-box;
  cursor: pointer;
}
.slb_close:hover {
  background-color: #0D3858;
}
.slb_close svg path {
  fill: #FFFFFF;
}

@media only screen and (min-width: 1200px) {
  .simplelanguagebutton {
    display: block;
  }
  .simplelanguagebutton .slb_link{
    position: fixed;
    left: auto;
    bottom: auto;
    right: 0;
    top: 60vh;
    transform:translateY(-50%);
    padding: 1.5rem;
    flex-direction: column;
    width: 150px;
    line-height: 1.2;
    font-size: 1.3rem;
  }
  .wp-admin .simplelanguagebutton .slb_link {
    position: relative !important;
    top: auto !important;
    transform:translateY(0) !important;
  }
  .home .simplelanguagebutton .slb_link{
    top: 50vh;
  }
  .simplelanguagebutton .slb_link svg{
    width: 32px;
    height: 32px;
  }
  .slb_close {
    display: none;
  }
}