body {
  background-color: #001f3f;
  color: #fff;
  padding-top: 100px;
  font-family: 'Lora', serif;
}

@media screen and (max-width: 760px) {
  body {
    padding-top: 50px;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'PT Sans Caption', sans;
}

h1 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

a {
  color: #bbb;
}

.footer {
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
  text-align: center;
  line-height: 1.5em;
}

@media screen and (max-width: 760px) {
  .footer {
    margin-top: 100px;
    position: static;
  }
}

@media screen and (min-width: 760px) {
  #start-mobile-app {
    display: none;
  }
}

@media screen and (max-width: 760px) {
  #start-app {
    display: none;
  }
}

.mobile-badge {
  max-width: 150px;
}

#mobile-application-btn {
  text-decoration: underline;
  cursor: pointer;
  padding: 10px;
  text-align: center;
  font-size: 20px;
  margin-top: 30px;
}

.start-title {
  margin-top: 75px;
  margin-bottom: 50px;
  padding: 0 10px;
}

.loader-container {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
}

.loader-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader {
  display: block;
  width: 80px;
  height: 80px;
}

.container {
  max-width: 800px;
  font-size: 125%;
  margin: 0 auto;
  text-align: center;
}

@media screen and (max-width: 760px) {
  .container {
    font-size: 110%;
  }
}

.btn {
  background-color: #cdeaf5;
  border-radius: 5px;
  padding: 10px 50px;
  text-align: center;
  cursor: pointer;
  font-size: 115%;
  display: block;
  margin: 0 auto;
  transition: background-color 0.2s;
}

.btn:hover {
  background-color: #e4f2f7;
}

.notification {
  position: absolute;
  top: 3px;
  left: 100px;
  border-radius: 5px;
  background: #fff;
  color: #555;
  box-shadow: 0 2px 4px 0 rgba(0,0,0, 1);
  padding: 15px;
  width: 295px;
}

@media screen and (max-width: 760px) {
  .notification {
    max-width: calc(100vw - 36px);
    left: 3px;
  }
}

.notification-icon {
  width: 14px;
  height: 14px;
  opacity: 0.6;
  position: relative;
  top: 3px;
  margin-right: 5px;
}

.notification-text {
  padding: 0 0 0 5px;
  margin: 0;
}

.notification-choices {
  text-align: right;
}

.notification-choices > * {
  display: inline-block;
  border: 1px solid #ccc;
  color: #666;
  border-radius: 5px;
  padding: 8px 16px;
  margin: 0 2px;
  cursor: pointer;
}

.cookies {
  position: absolute;
  background-color: rgba(000, 000, 000, 0.75);
  bottom: 0;
  left: 0;
  right: 0;
  color: #fff;
  padding: 25px 50px;
}

@media screen and (max-width: 760px) {
  .cookies {
    position: relative;
    top: -50px;
    padding: 15px;
  }
}

.cookies-title {
  text-align: left;
}

.cookies-text {
  font-size: 18px;
  max-width: 1200px;
}

.cookies-btn {
  margin: 30px 0;
}


.choice-container {
  text-align: center;
  position: relative;
  top: 0px;
  opacity: 0;
  transition: top 0.3s, opacity 0.3s;
}

.choice {
  background-color: #2c4967;
  box-shadow: 3px 3px 10px 0 rgba(113, 116, 197, 0.25);
  border-radius: 15px;
  padding: 20px 30px 35px;
  display: inline-block;
  min-width: 400px;
}

@media screen and (max-width: 760px) {
  .choice {
    min-width: initial;
    max-width: calc(100% - 20px);
  }
}

.choice-btn {
  border-radius: 5px;
  padding: 10px 30px;
  font-size: 110%;
  cursor: pointer;
  display: inline-block;
  margin: 0 2px;
}

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

.subscription {
  display: inline-block;
  background: #2c4967;
  box-shadow: 3px 3px 10px 0 rgba(113, 116, 197, 0.25);
  padding: 25px 25px 50px;
  border-radius: 20px;
  position: relative;
  max-width: 800px;
  top: 0px;
  opacity: 1;
  transition: top 0.3s, opacity 0.3s;
}

.subscription-close {
  position: absolute;
  right: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  cursor: pointer;
}

.subscription-icon {
  width: 200px;
  display: block;
  margin: 30px auto;
}

.subscription-text {
  padding: 10px 50px 20px;
  font-size: 18px;
}

@media screen and (max-width: 760px) {
  .subscription-text {
    padding: 10px 5px;
  }
}

.subscription-input {
  border: 1px solid #cdeaf5;
  border-radius: 5px;
  font-size: 110%;
  padding: 10px;
  min-width: 220px;
  display: inline-block;
  margin-right: 5px;
}

@media screen and (max-width: 760px) {
  .subscription-input {
    margin-bottom: 10px;
  }
}

.recommend {
  position: absolute;
  text-align: center;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  color: #111;
  padding: 25px;
}

.recommend-circles {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 760px) {
  .recommend {
    display: none;
  }
}

.recommend-circle {
  border: 1px solid #666;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
}