@import url('https://fonts.googleapis.com/css?family=Cairo:400,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Sarpanch&display=swap');
* {
  box-sizing: border-box;
}
html {
  margin: 0;
  padding: 0;
}
html * {
  padding: 0;
  margin: 0;
  outline: none;
}
body {
  font-family: "Cairo", sans-serif;
  font-size: 16px;
  line-height: 1.3;
  color: #434343;
  background: #ffffff;
  margin: 0;
  padding: 0;
  transition-duration: 0.3s;
}
input {
  font-family: "Cairo", sans-serif;
}
ul {
  list-style: none;
}
.picked-slider {
  transition-duration: 0.3s;
  white-space: nowrap;
  transform: translateX(0%);
  font-size: 0;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.btn {
  height: 40px;
  line-height: 40px;
  background: #ffa255;
  border: 2px solid #ffa255;
  color: #fff;
  border-radius: 5px;
  padding: 0 40px;
  font-weight: bold;
  transition-duration: 0.3s;
  cursor: pointer;
  display: inline-block;
  font-size: 12px;
}
.btn:hover {
  background: #fff;
  color: #ffa255;
}
.section {
  background: #eee;
}
.section .section-title {
  text-align: center;
  font-size: 30px;
  font-weight: normal;
  padding: 40px 0;
  background: #fff;
  box-shadow: 0px 10px 5px 1px rgba(0, 0, 0, 0.02);
}
.section .section-content {
  display: inline-block;
  width: 100%;
}
.top-scroll {
  position: fixed;
  width: 100px;
  border-radius: 5px;
  box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.2);
  height: 40px;
  line-height: 40px;
  background: #ffa255;
  text-align: center;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  left: 50%;
  margin-left: -50px;
  transition-duration: 0.3s;
  bottom: -200px;
}
.top-scroll:hover {
  background: #ff8622;
}
.top-scroll.visible {
  bottom: 20px;
}
.banner {
  background: #fff;
}
.banner .header {
  color: #000;
  height: 70px;
}
.logo {
  color: inherit;
  text-decoration: none;
  font-weight: bold;
  height: 70px;
  display: inline-block;
  line-height: 70px;
  padding: 0 20px;
  font-size: 18px;
  float: left;
  font-family: Sarpanch;
  margin-right: 20px;
}
.logo .ico {
  display: inline-block;
  padding-right: 26px;
  background-image: url(logo.png);
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: right 3px center;
}
.country-select {
  display: inline-block;
  float: right;
  transition-duration: 0.3s;
  margin-top: 25px;
  position: relative;
  width: 80px;
  max-height: 30px;
}
.country-select .fa {
  position: absolute;
  top: 10px;
  right: -5px;
  font-size: 12px;
  opacity: 0.6;
  cursor: pointer;
}
.country-select .country {
  font-weight: bold;
  font-size: 13px;
  height: 30px;
  line-height: 30px;
  background: #fff;
  padding: 0 10px;
  cursor: pointer;
  transition-duration: 0.3s;
  box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.1);
  position: absolute;
  white-space: nowrap;
  display: none;
  z-index: 100;
}
.country-select .country:first-of-type {
  display: block;
  position: relative;
  background: transparent;
  box-shadow: 0px 1px 5px 1px transparent;
}
.country-select .country .flag {
  margin-right: 20px;
}
.country-select.open {
  max-height: 700px;
}
.country-select.open .country {
  display: block;
}
.burger-menu {
  display: inline-block;
  float: left;
}
.burger-menu .pages {
  display: inline-block;
}
.burger-menu .pages li {
  display: inline-block;
}
.burger-menu .pages li a {
  font-weight: bold;
  text-decoration: none;
  color: inherit;
  display: inline-block;
  height: 70px;
  line-height: 70px;
  float: left;
  font-size: 13px;
  padding: 0 15px;
  transition-duration: 0.3s;
  border-bottom: 3px solid transparent;
}
.burger-menu .pages li a:hover {
  color: #ffa255;
  border-bottom-color: #ffa255;
}
.intro {
  height: 400px;
  position: relative;
  margin-bottom: 20px;
  background: #EEEEEE;
}
.intro:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: url(pattern.png);
  opacity: 0.1;
  background-size: 500px;
  z-index: 40;
}
.intro:before {
  content: "";
  display: block;
  height: 400px;
  width: 400px;
  border-radius: 400px;
  background-image: url(bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  border: 20px solid #EEEEEE;
  top: 0px;
  left: 50%;
  margin-left: -220px;
  z-index: 41;
}
.intro .search {
  position: absolute;
  width: 100%;
  text-align: center;
  margin-top: 100px;
  padding: 40px 0;
  z-index: 42;
}
.intro .search .search-baseline {
  color: #515151;
  font-weight: bold;
  font-size: 30px;
  display: block;
  margin-bottom: 20px;
  text-shadow: 0px 2px #fff;
}
.intro .search .field {
  background: #fff;
  border: 2px solid #ffa255;
  height: 50px;
  line-height: 50px;
  position: relative;
  border-radius: 50px;
  display: inline-block;
  float: left;
}
.intro .search .field .field-input {
  float: left;
  height: 50px;
  line-height: 50px;
  background: transparent;
  border: none;
  padding: 0 20px;
  width: 500px;
}
.intro .search .field .field-type {
  position: absolute;
  background: #fff;
  border-radius: 5px;
  max-height: 30px;
  overflow: hidden;
  transition-duration: 0.3s;
  top: 7px;
  right: 15px;
  color: #ffa255;
  cursor: pointer;
}
.intro .search .field .field-type .fa {
  position: absolute;
  top: 9px;
  right: 5px;
  font-size: 12px;
}
.intro .search .field .field-type li {
  font-size: 12px;
  font-weight: bold;
  height: 30px;
  line-height: 30px;
  padding: 0 30px 0 20px;
  transition-duration: 0.3s;
}
.intro .search .field .field-type li:hover {
  background: #F4F4F4;
}
.intro .search .field .field-type:hover {
  max-height: 500px;
}
.intro .search .btn-field {
  margin: 0 0 0 20px;
  border-radius: 50px;
  border: 2px solid #ffa255;
  float: left;
  height: 52px;
  text-transform: lowercase;
  border-color: #fff;
}
.intro .search .btn-field:first-letter {
  text-transform: uppercase;
}
.intro .search .search-form {
  display: inline-block;
}
.intro #autocomplete_container {
  position: absolute;
  top: 48px;
  left: 20px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0px 5px 3px 2px rgba(0, 0, 0, 0.1);
}
.intro #autocomplete_container li {
  background: #fff;
  height: 40px;
  line-height: 40px;
  padding: 0 30px;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
}
.intro #autocomplete_container li:hover {
  background: #eee;
}
.more-offers {
  text-align: center;
}
.more-offers .more {
  transition-duration: 0.3s;
}
.more-offers .more.loading {
  color: transparent;
  background-color: #fff;
  background-image: url(loading.gif);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30px;
}
.more-offers .more.loading:hover {
  background-color: #fff;
}
.offers-container {
  padding: 50px 0;
}
.offers-container .offers {
  display: inline-block;
  width: 100%;
}
.offers-container .offers .offer {
  width: 33.33333333%;
  float: left;
}
.offers-container .offers .offer .content {
  height: 150px;
  border: 1px solid #c5c5c5;
  padding: 5px;
  padding-left: 120px;
  cursor: pointer;
  position: relative;
}
.offers-container .offers .offer .content:hover {
  border-color: #ffa255;
}
.offers-container .offers .offer .content .title {
  display: inline-block;
  height: 44px;
  overflow: hidden;
  font-weight: bold;
}
.offers-container .offers .offer .content .image {
  position: absolute;
  width: 110px;
  height: 110px;
  background-image: url(loading.gif);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 70px;
  top: 5px;
  left: 5px;
}
.offers-container .offers .offer .content .price {
  display: block;
  font-size: 30px;
  color: #ffa255;
}
.offers-container .offers .offer .content .cta {
  display: none;
}
.offers-container .offers .offer .content .rp {
  position: absolute;
  font-weight: bold;
  font-size: 10px;
  opacity: 0.6;
  top: 5px;
  right: 5px;
}
.offers-container .offers .offer .content .merchant {
  border-top: 1px solid #eee;
  position: absolute;
  display: block;
  height: 40px;
  line-height: 40px;
  width: 100%;
  bottom: 0;
  left: 0;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
  background-repeat: no-repeat;
  background-size: auto 80%;
  background-position: center;
}
.offers-container .offers .offer .content .link {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.offers-container .offers .offer.unloaded .content .image {
  background-size: 50px;
}
.search-panels .search-details .thumbnails {
  height: 60px;
  line-height: 60px;
  opacity: 0.5;
  border-bottom: 1px solid #ffa255;
  text-align: right;
}
.search-panels .search-details .thumbnails li {
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  color: #ffa255;
}
.search-panels .search-details .thumbnails i {
  display: inline-block;
  margin: 0 10px;
  color: #ffa255;
}
.search-panels .search-details .banner {
  height: 60px;
  line-height: 60px;
  margin-bottom: 20px;
  display: inline-block;
  width: 100%;
}
.search-panels .search-details .banner .orders {
  display: inline-block;
}
.search-panels .search-details .banner .orders .order {
  font-weight: bold;
}
.search-panels .search-details .banner .orders .order select {
  height: 30px;
  line-height: 30px;
  border-radius: 3px;
  border: 1px solid #ffa255;
  margin-left: 10px;
  cursor: pointer;
}
.search-panels .search-results .filters-group {
  display: inline-block;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.search-panels .search-results .filters-group .filters {
  flex: 1 1 20%;
  padding: 10px 5px;
}
.search-panels .search-results .filters-group .filters .name {
  font-size: 16px;
  color: #ffa255;
  margin-bottom: 10px;
}
.search-panels .search-results .filters-group .filters .filter {
  display: block;
  text-decoration: none;
  color: inherit;
}
.search-panels .search-results .filters-group .filters .filter:hover {
  text-decoration: underline;
}
.search-panels .search-results .filters-group .filters .filter.selected {
  font-weight: bold;
}
.search-panels .search-results .filters-group .filters .filter.selected:after {
  content: "×";
  margin-left: 5px;
  display: inline-block;
  font-size: 16px;
}
.search-bar {
  background: #eee;
}
.search-bar .search-bar-container {
  display: inline-block;
  width: 100%;
}
.search-bar .search-bar-container .search-field-container {
  clear: both;
  display: block;
  background: #eee;
  text-align: right;
  padding: 20px 0;
}
.search-bar .search-bar-container .search-field-container .text-field {
  height: 40px;
  line-height: 40px;
  border: 2px solid #ffa255;
  padding: 0 20px;
  border-radius: 5px;
  width: 90%;
  max-width: 300px;
}
.search-bar .search-bar-container .search-field-container .submit {
  height: 40px;
  width: 40px;
  border-radius: 40px;
  background: #ffa255;
  border: none;
  color: #fff;
  cursor: pointer;
}
.section.deals-list .section-content {
  padding: 40px 0;
}
.section.all-merchants {
  text-align: center;
  background: #fff;
  padding: 0 0 40px 0;
}
.section.all-merchants .section-title {
  box-shadow: 0px 0px #fff;
}
.section.all-merchants .get-all-merchants-action {
  transition-duration: 0.3s;
}
.section.all-merchants .get-all-merchants-action.loading {
  background-image: url(loading.gif);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  background-color: #fff;
  color: transparent;
}
.section.all-merchants .get-all-merchants-action.loading:hover {
  color: transparent;
}
.section.all-merchants .get-all-merchants-action.hide {
  height: 0px;
  opacity: 0;
}
.merchants-list.all {
  display: inline-block;
  width: 100%;
}
.merchants-list.all .merchant {
  width: 20%;
  float: left;
  padding: 10px;
}
.merchants-list.all .merchant .details {
  background: #fff;
  height: 180px;
  border-radius: 5px;
  border: 1px solid #E2E2E2;
  position: relative;
}
.merchants-list.all .merchant .details .merchantLogo {
  position: absolute;
  top: 0;
  bottom: 50px;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 70%;
}
.merchants-list.all .merchant .details .link {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  color: transparent;
}
.merchants-list.all .merchant .details .name {
  height: 50px;
  line-height: 50px;
  background: #eee;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: -1px;
  text-align: center;
}
.merchants-list.all.pickedMerchants {
  margin: 30px 0 50px;
  overflow: hidden;
  font-size: 0;
}
.merchants-list.all.pickedMerchants .p-title {
  font-size: 20px;
  font-weight: normal;
  margin: 30px 0 20px 5px;
}
.merchants-list.all.pickedMerchants .merchant {
  width: 33.33333333%;
  float: none;
  display: inline-block;
}
.merchants .merchant-details {
  padding: 60px 0;
}
.merchants .merchant-details .identity {
  display: inline-block;
  width: 100%;
  min-height: 170px;
  padding-left: 200px;
  position: relative;
  margin-bottom: 50px;
}
.merchants .merchant-details .identity .mlogo {
  top: 0;
  left: 5px;
  height: 170px;
  width: 170px;
  border: 2px solid #D5D5D5;
  border-radius: 3px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80%;
  display: inline-block;
  position: absolute;
}
.merchants .merchant-details .identity .name {
  display: block;
  font-weight: normal;
  font-size: 30px;
}
.merchants .merchant-details .identity .name strong {
  font-size: 40px;
}
.merchants .merchant-details .identity .description {
  font-size: 14px;
  padding: 10px 0;
}
.merchants .merchant-sep {
  display: block;
  height: 20px;
  margin: 20px 0;
}
.merchants .no-merchant {
  margin: 300px 0;
  text-align: center;
  font-weight: bold;
  font-size: 30px;
  text-transform: uppercase;
  opacity: 0.4;
}
.no-offers {
  margin: 50px 0;
  text-align: center;
  font-weight: bold;
  font-size: 30px;
  text-transform: uppercase;
  opacity: 0.4;
}
.pickedOffers {
  display: inline-block;
  width: 100%;
  overflow: hidden;
  padding: 5px;
}
.pickedOffers .p-title {
  font-size: 20px;
  font-weight: normal;
  margin: 30px 0 20px 5px;
}
.pickedOffers .offer {
  display: inline-block;
  float: none;
}
.pickedOffers .offer .details {
  padding: 10px;
  position: relative;
  height: 160px;
  opacity: 0;
  transition-duration: 0.3s;
}
.pickedOffers .offer .details .date {
  display: block;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 32;
  font-size: 14px;
  border-radius: 5px;
}
.pickedOffers .offer .details .logoFile {
  top: 30px;
  right: 0;
  left: 0;
  bottom: 20px;
  height: 100px;
  width: 100%;
}
.pickedOffers .offer .details .title {
  font-size: 14px;
  opacity: 0.6;
  text-align: center;
}
.pickedOffers .offer .details .title:after {
  display: none;
}
.pickedOffers .offer .details .description {
  display: none;
}
.pickedOffers .offer .details .banner {
  display: none;
}
.pickedOffers .offer .details.visible {
  opacity: 1;
}
.offers {
  display: inline-block;
  width: 100%;
}
.offer {
  width: 50%;
  float: left;
  padding: 5px;
  position: relative;
}
.offer .details {
  border: 1px solid #D5D5D5;
  height: 200px;
  position: relative;
  background-color: #fff;
  padding: 20px 0 0 170px;
  overflow: hidden;
}
.offer .details .date {
  height: 16px;
  display: block;
  color: #ffa255;
  font-size: 12px;
  font-weight: bold;
}
.offer .details .logoFile {
  background-repeat: no-repeat;
  width: 160px;
  height: 160px;
  background-position: center;
  position: absolute;
  left: 0;
  top: 0;
  background-size: 120px;
}
.offer .details .title {
  display: block;
  font-weight: bold;
  font-size: 18px;
  height: 36px;
  line-height: 36px;
  overflow: hidden;
  position: relative;
  padding: 0 10px 0 0;
}
.offer .details .title:after {
  display: inline;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 36px;
  width: 80px;
  background-image: linear-gradient(to right, rgba(255, 0, 0, 0), #fff);
}
.offer .details .description {
  padding: 0 10px 0 0;
  height: 66px;
  line-height: 16px;
  overflow: hidden;
}
.offer .details .link {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  color: transparent;
}
.offer .details .banner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  line-height: 50px;
  background: #F6F6F6;
  padding: 0 20px;
}
.offer .details .banner .merchant {
  font-weight: bold;
  font-size: 14px;
}
.offer .details .banner .cta {
  height: 30px;
  line-height: 30px;
  border-radius: 30px;
  padding: 0 20px;
  float: right;
  margin-top: 10px;
}
.offer .details.unvalid:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(203, 203, 203, 0.7);
  z-index: 50;
}
.offer .details:hover {
  border-color: #ffa255;
  cursor: pointer;
}
.offer .code-details {
  background-color: rgba(255, 255, 255, 0.9);
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  text-align: center;
  display: none;
  border-radius: 5px;
}
.offer .code-details .code {
  display: inline-block;
  font-family: Sarpanch;
  max-height: 60px;
  min-height: 60px;
  overflow: hidden;
  line-height: 60px;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 3px;
  background: transparent;
  font-size: 30px;
  margin-top: 80px;
  color: #ffa255;
}
.offer .code-details .code:after {
  display: inline-block;
  content: "block";
}
.offer .code-details .copy {
  height: 40px;
  width: 40px;
  border: 1px solid #fff;
  background: #ffa255;
  border-radius: 40px;
  color: #fff;
  line-height: 40px;
  cursor: pointer;
  display: inline-block;
  vertical-align: top;
  position: absolute;
  top: 10px;
  left: 10px;
  transition-duration: 0.3s;
}
.offer .code-details .copy:hover {
  color: #ffa255;
  background: #fff;
}
.offer.loading .code-details {
  display: block;
  background-image: url(loading.gif);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 40px;
  background-color: rgba(255, 255, 255, 0.9);
}
.offer.loading .code-details .code {
  display: none;
}
.offer.code .code-details {
  display: block;
}
.offer.code .code-details .code {
  display: inline-block;
}
.offer.code .details .link {
  display: none;
}
.offer.code.copied .code-details .copy {
  background: #0FD350;
  color: #fff;
}
.offer.code.copied .code-details .copy:hover {
  color: #0FD350;
  background: #fff;
}
.offer.fo_ex_offer {
  width: 100%;
}
.offer.fo_ex_offer .image {
  display: block;
  height: 140px;
  width: 140px;
  position: absolute;
  top: 10px;
  right: 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80%;
}
.search-categories {
  padding: 20px 0 20px;
  border-top: 1px solid #eee;
}
.search-categories .search-categories-list-open {
  display: block;
  font-weight: bold;
  opacity: 0.6;
  font-size: 16px;
  margin-bottom: 20px;
}
.search-categories .search-categories-list {
  display: flex;
  flex-wrap: wrap;
}
.search-categories .search-categories-list li {
  flex: 1 1 33.33333333%;
  font-size: 14px;
}
.search-categories .search-categories-list li a {
  text-decoration: none;
  color: #ffa255;
}
.page_container {
  max-width: 1200px;
  margin: 40px auto;
}
.page_container h1 {
  color: #ffa255;
  font-size: 40px;
  margin-bottom: 30px;
}
.page_container h2 {
  margin: 10px 0;
}
.page_container p {
  padding: 10px 0;
}
.cookies {
  position: fixed;
  background: #ffa255;
  bottom: 10px;
  left: -150%;
  padding: 20px;
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 1px 2px 5px 3px rgba(0, 0, 0, 0.1);
  transition-duration: 0.3s;
}
.cookies .msg {
  position: relative;
  padding: 0 20px 0 0;
}
.cookies .msg .close {
  position: absolute;
  top: -1px;
  right: 0;
  font-size: 16px;
  font-weight: bold;
}
.cookies.visible {
  left: 10px;
}
.footer {
  background: #eee;
  padding: 50px 0;
  font-size: 14px;
}
.footer .rights {
  display: inline-block;
}
.footer .links {
  float: right;
}
.footer .links a {
  text-decoration: none;
  color: #ffa255;
  font-weight: bold;
  margin-left: 10px;
}
/*!
 * Generated with CSS Flag Sprite generator (https://www.flag-sprites.com/)
 */
.flag {
  display: inline-block;
  width: 16px;
  height: 11px;
  background: url('flags.png') no-repeat;
}
.flag.flag-de {
  background-position: 0 -11px;
}
.flag.flag-cz {
  background-position: -64px 0;
}
.flag.flag-se {
  background-position: -16px -33px;
}
.flag.flag-br {
  background-position: -32px 0;
}
.flag.flag-no {
  background-position: -64px -22px;
}
.flag.flag-es {
  background-position: -48px -11px;
}
.flag.flag-it {
  background-position: -32px -22px;
}
.flag.flag-ie {
  background-position: -16px -22px;
}
.flag.flag-nl {
  background-position: -48px -22px;
}
.flag.flag-fr {
  background-position: 0 -22px;
}
.flag.flag-dk {
  background-position: -16px -11px;
}
.flag.flag-ru {
  background-position: 0 -33px;
}
.flag.flag-ch {
  background-position: -48px 0;
}
.flag.flag-at {
  background-position: 0 0;
}
.flag.flag-uk {
  background-position: -32px -11px;
}
.flag.flag-us {
  background-position: -32px -33px;
}
.flag.flag-pl {
  background-position: -48px -33px;
}
.flag.flag-ca {
  background-position: -64px -33px;
}
.flag.flag-au {
  background-position: 0px -44px;
}
.flag.flag-be {
  background-position: -16px 0;
}
.flag.flag-fi {
  background-position: -64px -11px;
}
