*:not(input) {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  user-select: none;
}

html {
  width: 100%;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  min-height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', helvetica, arial !important;
  color: #000;
  background-color: #fff;
}

* {
  box-sizing: border-box;
}

a, a:hover, a:visited, a:focus {
  color: #000;
  text-decoration: none;
}

button {
  font-family: 'Poppins', helvetica, arial !important;
  font-size: 14px;
  border: none;
  outline: none;
  border-radius: 2px;
  padding: 5px 10px;
}

#no-offers {
  display: none;
  flex: 1;
  width: 100%;
  max-width: 768px;
  height: 100%;
  margin: 0 auto;
  padding: 100px 20px 50px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.oops {
  font-size: 24px;
  color: #7530ff;
  text-align: center;
  width: 70%;
  margin: 30px 0;
}
.oops-img {
  width: 75px;
}
.oops .small {
  font-size: 20px;
}

#disclaimer {
  font-size: 11px;
}

#disclaimer img {
  width: 200px;
}

#loader {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.powered {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  text-align: center;
}
.logo-big img {
  display: block;
  width: 50%;
  height: auto;
  margin: 0 auto;
}
.loader, .loader:before, .loader:after {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  animation-fill-mode: both;
  animation: bblFadInOut 1.8s infinite ease-in-out;
}
.loader {
  color: #000;
  font-size: 7px;
  position: relative;
  text-indent: -9999em;
  transform: translateZ(0);
  animation-delay: -0.16s;
}
.loader:before,
.loader:after {
  content: '';
  position: absolute;
  top: 0;
}
.loader:before {
  left: -3.5em;
  animation-delay: -0.32s;
}
.loader:after {
  left: 3.5em;
}
@keyframes bblFadInOut {
  0%, 80%, 100% { box-shadow: 0 2.5em 0 -1.3em }
  40% { box-shadow: 0 2.5em 0 0 }
}




#content {
  display: none;
  flex: 1;
  flex-direction: column;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

header {
  position: fixed;
  width: 100%;
  max-width: 560px;
  height: 50px;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  padding: 0 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  z-index: 99;
}
#flag {
  position: absolute;
  left: 40px;
  width: 15%;
  max-width: 40px;
  height: auto;
  flex-shrink: 0;
  flex-grow: 0;
}
.logo {
  width: 100%;
  flex-grow: 3;
  flex-shrink: 0;
  text-align: center;
}
.logo img{
  display: block;
  width: 50%;
  max-width: 130px;
  height: auto;
  margin: 0 auto;
}
.carousel-wrapper {
  overflow: hidden;
  margin: 50px 20px 0;
  border-radius: 30px;
}
#offers-title {
  font-weight: 600;
  font-size: 20px;
  margin: 20px 10px 10px;
}
#offers {
  width: 100%;
  padding: 0 10px;
}
.offer-container {
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  align-items: stretch;
  height: 80px;
  margin-bottom: 20px;
}
.offer-container img {
  display: block;
  width: auto;
  height: 80px;
  border-radius: 20px;
  margin: 0;
  flex-shrink: 0;
  flex-grow: 0;
}
.offer-container .details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  flex-grow: 1;
  padding: 0 5px;
}
.offer-container .details .name {
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  padding-top: 2px;
  padding-left: 2px;
}
.offer-container .details .bonus {
  font-weight: 400;
  font-size: 12px;
  padding-left: 2px;
  padding-top: 5px;
  color: #c2c2c2;
}
.offer-container .details .tag {
  padding: 0 10px;
  color: #fff;
  background-color: #49bcff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 15px;
  margin-left: 3px;
  margin-bottom: 2px;
}
.offer-container .extra {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100px;
}
.offer-container .extra button {
  width: 90px;
  height: 30px;
  line-height: 22px;
  color: #187de4;
  background-color: #f2ecec;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 15px;
}
.offer-container .extra .rating {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #acacac;
}
.offer-container .extra .rating .star {
  width: 10px;
  height: 10px;
  background-repeat: no-repeat;
  background-size: contain;
}
.offer-container .extra .rating .star.full {
  background-image: url('../images/star-full.png');
}
.offer-container .extra .rating .star.empty {
  background-image: url('../images/star-empty.png');
}
