/*** Landing page for choosing language ***/
@import "flags32.css";


.countryPickerLandingPage {
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  padding: 65px 5% 50px 5%;
}

.countryPickerLandingPage .pageTitle {
  text-align: center;
  margin-top: 90px;
  margin-bottom: 30px;
  color: var(--color-purple-50);
}

.countryPickerLandingPage .pageTitle span {
  color: var(--color-orange-50);
}

.countryPickerLandingPage .countryPicker {
  padding-top: 20px;
  padding-bottom: 20px;
  margin-top: 40px;
}

.countryPickerLandingPage .countryPicker a {
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  min-height: 40px;
  font-family: var(--font-stack-regular);
  font-size: 12px;
}

.countryPickerLandingPage .countryPicker .flag {
  margin-right: 7px;
}

@media screen and (max-width: 568px) {
  .countryPickerLandingPage .countryPicker {
    width: 100%;
  }
}

@media screen and (min-width: 568px) {
  .countryPickerLandingPage .countryList li {
    float: left;
    width: 50%;
  }
}

@media screen and (min-width: 1000px) {
  .countryPickerLandingPage .countryList li {
    width: 25%;
  }
}

.clearfix {
  overflow: hidden;
  clear: both;
}

.imageHero {
  background-image: url("https://storage.googleapis.com/storytel-images/common/international/pattern_medium_salmon.png");
  position: fixed;
  bottom: 0;
  right: 0;
  min-width: 100%;
  min-height: 100%;
  max-height: 4000%;
  max-width: 1000%;
  width: auto;
  height: auto;
  overflow: hidden;
}

.countryPickerContainer {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}

.floaterContent {
  position: relative;
  background: rgba(255,255,255, 0.5);
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 45px 30px;
}
