/*
  Z-indexes list
  header, .index-header: 1;
  #loading: 10;
  .top-of-page: 99;
  .search-content: 1002;
  .filter-content: 999;
  .sort-content: 999;
  .language-module: 2;
  .language-menu: -1;
  #contact-btn: 1000;
  .cookie-info: 1003;
*/

body {
    width: 100%;
    font-family: 'Poppins','Helvetica', 'Arial', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333;
    background-color: #333;
}

* {
	margin: 0;
	border: 0;
	padding: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
    box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

a:hover {
  text-decoration: none;
  color: inherit;
}

ul {
    list-style: none;
}

header, .index-header {
    position: initial;
    top: 0;
    left: 0;
    height: 60px;
    width: 100%;
    z-index: 1;
}

main, section {
  background: #fff;
  background-color: #fff;
  padding-bottom: 10px;
}

.hidden-desktop {
  display: none;
}

.index-header {
  position: absolute;
}

.black-bg {
  background: #333;
}

.container {
    margin: 0 auto;
    padding: 0 10px;
    max-width: 1200px;
}

.flex {
    display: flex;
    /*flex-flow: column nowrap; - for mobile*/
    flex-flow: row wrap;
}

.flex-child {
    flex: 1 100%;
}

.flex-child-33 {
    flex-basis: 33%;
}

.flex-child-66 {
    flex-basis: 66%;
}

nav {
    text-align: center;
}

.logo {
    height: 40px;
    color: #fff;
    margin: 10px 0;
}

#hero-top {
  background: url('https://traveldeals.email/img/TravelDeals-hero-beach.jpeg') transparent center center no-repeat;
  background-size: cover;
  height: 360px;
}

#hero-bottom {
  background: url('https://traveldeals.email/img/TravelDeals-newsletter-beach.jpeg') transparent center center no-repeat;
  background-size: cover;
  height: 360px;
  margin-bottom: 50px;
}

.hero {
    position: relative;
    box-shadow:inset 0 0 0 2000px rgba(46,46,46, 0.1);
}

.hero .container {
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: flex;
    flex-flow: column wrap;
    text-align: center;
}

.hero .container h1 {
  font-size: 32px;
  color: #fff;
  font-weight: 600;
}

#cards {
  background-color: #fff;
  padding-top: 30px;
}

#cards > .container {
  padding-left: 20px;
  padding-right: 20px;
}

#loading {
    position: absolute;
    display: block;
    top: 60px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background-color: #fff;
}

#loading .flex, #cards .flex {
    justify-content: space-between;
}

#loading .card-img {
    width: 100%;
    box-shadow: none;
}

/* DEAL CARDS */
.card {
    width: 100%;
    max-width: 360px;
    min-width: 320px;
    height: auto;
    cursor: pointer;
    border: none;
    padding-bottom: 10px;
}

.card:hover {
    transition: all 0.3s;
    opacity: 0.85;
}

.card-img, .deal-img {
    min-height: 240px;
    background: transparent center center no-repeat;
    background-size: cover;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 0;
}

.card-img:hover {
    transition: all 0.3s ease;
}

.card-discount {
    position: absolute;
    top: 10px;
    right: 10px;
    display: inline-block;
    background-color: darkorange;
    color: #fff;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
}

.card-time {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 20px 40px 15px 15px;
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 2px;
    padding-bottom: 2px;
    display: block;
    width: auto;
    height: auto;
    color: darkorange;
    background-color: #fff;
    font-size: 14px;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    border-radius: 15px;
}

.ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.card-info {
    width: 100%;
    padding: 16px 4px 20px;
}

.card-info h2 {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 2px;
}

.card-title {
    font-weight: 600;
    transition: all 0.3s;
}

.card-title:hover {
    transition: all 0.3s;
    color: darkorange;
}

.card-destination, .card-time {
  text-transform: uppercase;
  font-size: 14px;
  max-width: 300px;
}

.card-destination {
  margin-bottom: 3px;
}

.card-time {
  margin-bottom: 10px;
}

.deal-expired {
  opacity: 0.5;
}

.buttons {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 50px;
  width: 100%;
}

.buttons > hr {
  background: #333;
  height: 1px;
  border: 0;
  flex-grow: 1;
  margin: 0;
}

.next-page {
  width: 200px;
  height: 45px;
  border: 1px solid #333333;
  border-radius: 25px;
  opacity: 1;
  background-color: #fff;
  font-family: 'Poppins';
  font-size: 18px;
  color: #333333;
  text-transform: uppercase;
  margin: 0 10px;
  text-align: center;
}

.top-of-page {
  color: #fff;
  background-color: #333;
  position: fixed;
  bottom: 50%;
  right: 0;
  z-index: 99;
  display: none;
  width: 60px;
  height: 60px;
  opacity: 0.75;
}

.top-of-page > .caret-up:before, .index-back > .caret-left:before {
  color: #fff;
}

.index-back > .caret-left:before {
  width: 10px;
  height: 10px;
}

.index-back {
  margin-right: 10px;
}

.caret-down {
  transform: rotate(-45deg);
  transition: transform .45s;
}

.caret-down:before, .caret-up:before, .caret-left:before {
  display: inline-block;
  color: #333;
  border-width: 0 0 1px 1px;
  border-style: solid;
  border-color: inherit;
  width: 20px;
  height: 20px;
  content: "";
  transform: translate(12.5%, -12.5%);
}

.caret-up {
  transform: rotate(-225deg);
  transition: transform 0.45s;
}

.caret-left {
  transform: rotate(45deg);
  transition: transform 0.45s;
}

.close-btn {
  display: flex;
  color: #333;
  font-size: 20px;
  font-weight: 300;
  background-color: transparent;
}

.next-page:hover, .top-of-page:hover {
  cursor: pointer;
}

.next-page:hover {
  background-color: #333333;
  color: #fff;
  transition: all 0.3s ease;
}

.btn-text {
  text-align: left;
  margin-left: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.btn-icon {
  text-align: right;
  margin-right: 15px;
}

.btn-icon > .caret-down:before {
  height: 10px;
  width: 10px;
}

.btn-icon > .caret-up:before {
  height: 10px;
  width: 10px;
}

/* SEARCH, FILTER, SORT */
.search-filter-sort {
  background-color: #333333;
  width: 100%;
  padding-top: 20px;
}

.search-filter-sort-title {
  color: #ffffff;
  font: 18px 'Poppins';
  text-transform: uppercase;
  margin: 0 10px;
}

.search-filter-sort > .container {
  flex: 1;
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  justify-content: space-between;
}

.search-filter-sort > .container > hr {
  background: #fff;
  height: 1px;
  border: 0;
  flex-grow: 1;
  margin: 0;
}

.search-btn, .filter-btn, .sort-btn {
  background: #FFFFFF 0% 0% no-repeat padding-box;
  opacity: 1;
  width: 360px;
  height: 45px;
  font-family: 'Poppins';
  font-size: 18px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.filter-content, .search-content, .sort-content {
  display: none;
  background-color: #333333;
  width: auto;
  text-align: center;
  font-family: 'Poppins';
  font-size: 18px;
  padding-left: 10px;
  padding-right: 10px;
}

/* SEARCH */
.search-content {
  z-index: 1002;
  position: absolute;
  width: 1200px;
  left: 50%;
  transform: translateX(-50%);
}

.search-icon {
  border-radius: 0px;
  background-color: #fff;
  border: 0px;
}

.search-box, .sign-up-form {
  width: 100%;
  height: 45px;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  opacity: 1;
}

.clear-filters, .sign-up-btn, .redirect-btn, .language-btn, .country-btn, .clear-countries, .close-window, #cookies-btn, #contact-btn {
  background-color: #FF8C00;
  color: #ffffff;
  border: 0px;
  border-radius: 25px;
  text-transform: uppercase;
  font: 18px 'Poppins';
  height: 45px;
}

.clear-input {
  border-radius: 0px !important;
}

.clear-filters, .clear-countries, .close-window {
  margin: 5px;
  background-color: #333;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.close-window {
  background-color: green;
  border: 1px solid green;
}

.search-btn-group {
  margin-left: auto;
}

.clear-filters-container {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
}

.country-btn-container {
  margin-bottom: 10px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
 }

.country-btn {
  margin: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: none;
}

.country-btn-text {
  padding-right: 15px;
}

.search-box::placeholder, .search-result > li {
  font-size: 18px;
  font-family: 'Poppins';
  color: #333;
  font-weight: normal;
}

.search-box::placeholder, .sign-up-form::placeholder {
  text-transform: uppercase;
}

.search-result-box, .filter-box {
  padding-bottom: 10px;
}

.search-result {
  width: auto;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  font-family: 'Poppins';
  font-size: 18px;
  opacity: 1;
  margin: auto;
  margin-top: 1px;
  text-align: left;
}

.search-group {
  margin-bottom: 0px;
}

.search-result > li {
  padding-top: 10px;
  padding-bottom: 10px;
}

.search-result > li:hover {
  cursor: pointer;
  background-color: #FF8C00;
  color: #FFFFFF;
}

.country, .no-country-available {
  background-color: #ffffff;
  color: #333333;
  border-bottom: 1px solid #333333;
  text-transform: capitalize;
  padding-left: 25px;
}

.no-country-available {
  text-transform: none;
}

/* FILTER */
.filter-content {
  z-index: 999;
  position: absolute;
  width: 1200px;
  left: 50%;
  transform: translateX(-50%);
}

.filter-title, .filters {
  background-color: #fff;
  width: auto;
  display: flex;
  justify-content: flex-start;
  padding-left: 25px;
  padding-top: 15px;
  text-transform: uppercase;
  margin: 0px;
  font-size: 18px;
}

.filter-title-mobile {
  display: none;
}

.filters {
  flex-wrap: wrap;
  text-align: center;
}

.filter-box {
  width: 100%;
}

.filter, .filter-checked {
  margin-right: 10px;
  border: 1px solid #707070;
  border-radius: 15px;
  opacity: 1;
  padding-left: 30px;
  padding-right: 30px;
  margin-bottom: 20px;
  display: flex;
  justify-content: flex-start;
  cursor: pointer;
}

.filter > label {
  cursor: pointer;
}

.filter-checked {
  background: #FF8C00 0% 0% no-repeat padding-box;
  border: 1px solid #FF8C00;
  color: #fff;
}

.filter > label, .filter-checked > label {
  margin-bottom: 0px;
}

.close-filter-window {
  display: none;
}

/* SORT */
.sort-content {
  z-index: 999;
  position: absolute;
  width: 1200px;
  left: 50%;
  transform: translateX(-50%);
  padding-bottom: 20px;
}

.sort-by {
  background-color: #fff;
  text-align: left;
  font: 18px/27px 'Poppins';
  letter-spacing: 0px;
  color: #333333;
  text-transform: uppercase;
  opacity: 1;
  padding: 10px 0px 10px 25px;
  margin: 0px;
}

.sort-option-title {
  margin: 0px;
}

.close-window-sort {
  display: none;
}

/* DEAL-PAGE */
.deal-navigation {
  padding: 10px 0px 10px 0px;
  display: grid;
  align-items: center;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  text-align: center;
  background-color: #333;
  color: #FFFFFF;
}

.deal-logo {
  height: 40px;
}

.index-link {
  text-align: left;
  grid-column: 1/2;
  display: flex;
}

.index-logo {
  display: grid;
  grid-column: 2/3;
  align-items: center;
  justify-content: center;
}

.deal-title {
  margin-top: 20px;
  text-align: left;
  font: 32px/23px 'Poppins';
  letter-spacing: 0px;
  color: #333333;
  opacity: 1;
}

.deal-title :first-child {
  font-weight: bold;
}

.deal-title :last-child {
  margin-top: 10px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.deal-img {
  height: 400px;
  background: transparent center center no-repeat;
  background-size: cover;
  margin-bottom: 30px;
  display: grid;
  grid-template: auto / 0.5fr;
  width: 100%;
  flex-basis: 55%;
}

.deal-discount {
    position: absolute;
    top: 10px;
    right: 10px;
    display: inline-block;
    background-color: darkorange;
    color: #fff;
    width: 90px;
    height: 90px;
    line-height: 90px;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    font-weight: lighter;
}

.deal-container {
  display: grid;
  grid-column-gap: 40px;
  grid-template-columns: 1.5fr 1fr;
  text-align: left;
  font: 18px/27px 'Poppins';
  letter-spacing: 0px;
  color: #333333;
  opacity: 1;
  min-height: 0;
  min-width: 0;
}

.deal-category-booking {
  width: auto;
}

.deal-category-booking-container {
  width: auto;
  height: 400px;
  background: #333333 0% 0% no-repeat padding-box;
  opacity: 1;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
}

.deal-booking {
  width: 284px;
  height: 259px;
  opacity: 1;
  text-align: center;
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  align-items: center;
}

.deal-booking :first-child {
  font-weight: bold;
}

.deal-price {
  color: #FF8C00;
  font-weight: bold;
}

.book-now, .more-info {
  display: flex;
  justify-content: center;
}

.more-info {
  margin-top: 15px;
}

.book-now-btn, .register-btn, .login-btn, .more-info-btn, .read-more-btn {
  background: #FF8C00 0% 0% no-repeat padding-box;
  border-radius: 25px;
  opacity: 1;
  width: 100%;
  max-width: 300px;
  height: 45px;
  color: #ffffff;
  font: 18px 'Poppins';
  font-weight: lighter !important;
  text-transform: uppercase;
}

.more-info-btn {
  background-color: #08BA08;
}

.register-btn {
  width: 100%;
  max-width: 300px;
}

.deal-ends {
  margin-top: 35px;
  margin-bottom: 30px;
  text-align: center;
  color: #FF8C00;
}

.main-deal-content {
  padding-top: 20px;
  padding-bottom: 100px;
}

.read-more-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  justify-content: center;
  align-items: center;
}

.read-more-container hr {
  background-color: #333;
}

.read-more-btn {
  background-color: #ffffff;
  color: #333;
  border: 1px solid #333;
  margin: 0 auto;
}

/* FOOTER */
footer {
    width: 100%;
    padding-top: 40px;
    padding-bottom: 60px;
    background-color: #333;
    color: #fff;
}

footer hr {
    background: rgba(255, 255, 255, 0.9);
    height: 1px;
    border: 0;
    flex-grow: 1;
    margin: 0;
}

.footer-logo {
  text-align: center;
  margin-bottom: 35px;
}

.footer-links {
  display: flex;
  justify-content: flex-start;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links > a:not(:first-child) {
  padding-left: 20px;
}

.social-media {
  margin-left: auto;
}

.social-media > a:not(:first-child) {
  padding-left: 15px;
}

.footer-paragraphs {
  display: flex;
  text-transform: uppercase;
  margin-top: 20px;
}

.traveldeals-copyright {
  margin-right: auto;
}

.traveldeals-country {
  margin-left: auto;
}

.language-selection {
  border-radius: 15px;
  width: 120px;
  height: 25px;
  text-align: center;
  vertical-align: middle;
}

.language-icon {
  height: 16px;
  width: 16px;
}

.container-title {
  margin: 0 auto;
  padding-bottom: 20px;
}

.container-minor-title {
  text-align: center;
  font: 18px 'Poppins';
  letter-spacing: 0px;
  color: #FFFFFF;
  text-transform: uppercase;
  opacity: 1;
  width: 450px;
  margin: 0 auto;
  padding-bottom: 20px;
}

.sign-up {
  width: 460px;
  margin: 0 auto;
}

.sign-up-form {
  width: 100%;
  max-width: 300px;
  border: 0px;
  border-radius: 25px;
}

.form-control {
  padding-left: 1rem;
}

.input-group {
  justify-content: center;
}

.input-group > .input-group-append > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0
}

.clear-input-container {
  margin-left: 0px;
}

.input-group-append > .btn {
  padding-left: 20px;
  padding-right: 20px;
}

.footer-subscriber {
  padding-top: 30px;
  display: grid;
  grid-template: auto / auto;
  justify-content: left;
  color: #ffffff;
}

.logout {
  display: none;
}

#loggedInAs {
  margin-bottom: 0px;
}

#subscriber-email {
  grid-row: 2;
}

.logout-btn {
  background-color: transparent;
  color: #ffffff;
  text-transform: uppercase;
  grid-row: 3;
  width: fit-content;
}

#unsubscribe-modal-btn {
  grid-row: 4;
  text-align: left;
}

/* SIGNUP/LOGIN MODAL */
.close-modal {
  display: flex;
  justify-content: flex-end;
  padding-right: 15px;
  padding-top: 15px;
}

.signup-login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  font: 18px 'Poppins';
  padding-top: 0px;
}

.signup-email, .login-email {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  align-items: center;
  text-align: center;
  padding: 0px 75px 19px 75px;
}

.become-member {
  font-weight: bold;
}

.member-deal {
  margin-bottom: 25px;
  text-transform: uppercase;
}

.register-email {
  border: 1px solid #333333;
  opacity: 1;
  padding: 10px 10px 10px 20px;
  font-size: 14px;
  border-radius: 25px;
  width: 100%;
  max-width: 300px;
}

#register-validation, #login-validation {
  font-size: 14px;
}

.register-container {
  display: flex;
  justify-content: center;
}

.modal-content {
  border-radius: 10px;
}

.modal-footer-btn {
  background: #D1D1D1 0% 0% no-repeat padding-box;
  opacity: 1;
  width: 100%;
  height: 60px;
  text-transform: uppercase;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.modal-checkbox {
  margin-top: 20px;
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  font-size: 14px;
}

input[type="checkbox"] {
  margin-right: 4px;
}

.login-link {
  font-weight: bold;
  text-transform: uppercase;
}

body.modal-open .main-deal-content{
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
    filter: blur(5px);
}

.modal-thankyou-header {
  background-color: #333;
  justify-content: center;
}

.modal-logo {
  height: 60px;
  align-self: center;
}

.thankyou-container {
  display: flex;
  width: 100%;
  flex-direction: column;
  flex-wrap: nowrap;
}

.thankyou-container > div {
  display: flex;
  width: 100%;
  padding: 40px 20px 10px 20px;
}

.thankyou-message {
  text-align: center;
  font-weight: bold;
}

.footer-container {
  width: 90%;
  text-align: center;
  margin: 0 auto;
}

/* Cookie footer */
.cookie-info {
  position: fixed;
  bottom: 0;
  background-color: #333;
  color: #fff;
  display: grid;
  grid-template-columns: 2fr 0.5fr 1fr;
  grid-template-rows: auto;
  z-index: 1003;
  width: 100%;
}

.cookie-text {
  padding: 20px 0px 0px 20px;;
  text-align: left;
  font: 16px 'Poppins';
  letter-spacing: 0px;
  color: #FFFFFF;
  text-transform: uppercase;
  opacity: 1;
  grid-column: 1/2;
}

.cookie-btn-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 30px;
  grid-column: 3/4
}

/* INDEX (Language) */
.language-html {
  height: 100%;
}

.language-body {
  height: 100%;
  background: url('https://traveldeals.email/img/TravelDeals-hero-beach.jpeg') transparent center center no-repeat;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 0.5fr 1fr 0.627fr;
}

.language-container {
  grid-column: 2/3;
  grid-row: 2;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  padding: 40px 90px 40px 90px;
  box-shadow: 0px 5px 7px #00000029;
  opacity: 1;
  width: 100%;
  max-width: 640px;
  height: 400px;
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  text-align: center;
  align-items: center;
  justify-self: center;
  font-family: 'Poppins';
  font-size: 18px;
}

.index-cookie-footer {
  grid-column: 1/4;
  grid-row: 4;
}

.choosen-country-icon {
  height: 24px;
  width: 24px;
}

#choosen-country {
  font-weight: bold;
  font-size: 18px;
}

.language-module {
  z-index: 2;
}

.language-btn {
  background-color: #fff;
  color: #333;
  border: 1px solid #333333;
  border-radius: 25px;
  opacity: 1;
  text-align: left;
  width: 300px;
  height: 45px;
  margin-bottom: 15px;
  text-transform: none;
}

.redirect-btn {
  width: 300px;
  height: 45px;
  margin: 0 auto;
  margin-bottom: 30px;
}

.language-title {
  font-weight: bold;
  font-size: 32px;
}

.homepage-text {
  margin-right: 5px;
}

.language-menu {
  padding-bottom: 0;
  margin-top: -20px;
  padding-top: 20px;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 5px 7px #00000029;
  border: 1px solid #333333;
  border-radius: 4px;
  opacity: 1;
  width: 320px;
  z-index: -1;
}

.language-list {
  margin-bottom: 0;
}

.language {
  padding: 10px 0px 10px 0px;
  height: auto;
  width: 100%;
  margin-bottom: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.language > span {
  width: 150px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 20px;
}

.language > span > span {
  padding-left: 10px;
}

#choosen-language > span {
  padding-left: 10px;
}

.language:hover {
    transition: all 0.3s;
    background-color: darkorange;
    cursor: pointer;
}

/* ABOUT */
#hero-top-about {
  background: url('https://traveldeals.email/img/TravelDeals-about-beach.jpeg') transparent center center no-repeat;
  background-size: cover;
  height: 360px;
}

.about-us-crumbs, .contact-us-crumbs {
  text-transform: uppercase;
}

#contact-btn {
    margin: 0 auto;
    margin-top: 20px;
    z-index: 1000;
}

.about-us-contact-us-container {
  margin-top: 30px;
  margin-bottom: 100px;
}

.about-us, .contact-us {
  text-align: left;
  font: 18px/27px 'Poppins';
  letter-spacing: 0px;
  color: #333333;
  opacity: 1;
}

/* POLICY */
.policy-content {
  text-align: left;
  font: 18px/27px 'Poppins';
  letter-spacing: 0px;
  color: #333333;
  opacity: 1;
  padding-top: 40px;
  padding-bottom: 60px;
}
.policy-title {
  font-weight: bold;
  margin-top: 35px;
  margin-bottom: 10px;
}

.policy-crumbs {
  margin-bottom: 20px;
  text-transform: uppercase;
}

.policy-content > p {
  margin-bottom: 20px;
}

.policy-updated {
  margin-top: 20px;
  margin-bottom: 50px;
  text-transform: uppercase;
}

.policy-table > .table td{
  border-bottom: 1px solid #333333;
}

.policy-table > .table {
  margin-bottom: 30px;
}

.thead-black {
  background-color: #333333;
  color: #fff;
}

.policy-content > hr {
  width: 40%;
  background-color: grey;
}

/* BOOTSTRAP CLASSES OVERIDES */
.btn:disabled, .btn.disabled {
  opacity: 1;
}
/* PLACEHOLDER
* https://github.com/linways/simple-content-placeholder
*/
@-webkit-keyframes placeHolderShimmer{0%{background-position:-468px 0}100%{background-position:468px 0}}@keyframes placeHolderShimmer{0%{background-position:-468px 0}100%{background-position:468px 0}}.content-placeholder{display:inline-block;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-name:placeHolderShimmer;animation-name:placeHolderShimmer;-webkit-animation-timing-function:linear;animation-timing-function:linear;background:#f6f7f8;background:-webkit-gradient(linear,left top,right top,color-stop(8%,#eee),color-stop(18%,#ddd),color-stop(33%,#eee));background:-webkit-linear-gradient(left,#eee 8%,#ddd 18%,#eee 33%);background:linear-gradient(to right,#eee 8%,#ddd 18%,#eee 33%);-webkit-background-size:800px 104px;background-size:800px 104px;height:inherit;position:relative}

@media (max-width: 575.98px) {
  .hidden-mobile {
    display: none;
  }

  .hidden-desktop {
    display: block;
  }

  #hero-top {
    height: 240px;
  }

  /* FOOTER */
  .footer-links {
    display: grid;
    justify-content: center;
    text-align: center;
    align-items: center;
    grid-template-columns: auto;
    grid-template-rows: auto;
    margin-bottom: 30px;
  }

  .footer-links a {
    padding-bottom: 10px;
    padding-left: 0px;
  }

  .footer-links > a:not(:first-child) {
    padding-left: 0px;
  }

  .social-media {
    margin-left: 0px;
    grid-row: 1;
    grid-column: 1;
    margin-bottom: 50px;
  }

  .social-media > a:not(:first-child) {
    padding-left: 20px;
  }

  .footer-paragraphs {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: auto;
    justify-content: center;
  }

  .traveldeals-copyright {
    margin-right: 0px;
    grid-row: 2;
  }

  .traveldeals-country {
    margin-left: 0px;
    margin: 0 auto;
    margin-bottom: 17px;
    grid-row: 1;
  }

  /* Cookie footer */
  .cookie-info {
    grid-template-columns: 1fr;
    grid-template-rows: 0.7fr 0.63fr;
  }

  .cookie-text {
    padding: 20px 35px 0px 35px;
    text-align: center;
    grid-column: 1;
    grid-row: 1;
  }

  .cookie-btn-container {
    justify-content: center;
    padding-right: 0px;
    padding-bottom: 20px;
    grid-column: 1;
    grid-row: 2;
  }

  /* INDEX (Language) */
  .index-logo {
    display: grid;
    grid-row: 1;
    grid-column: 1/5;
    justify-content: center;
    align-items: center;
  }

  .language-body {
    display: grid;
    grid-template: 12.5% 12.5% 12.5% 12.5% 12.5% 12.5% 12.5% 12.5%  / 25% 25% 25% 25%;
  }

  .language-container {
    display: grid;
    grid-column: 1/5;
    grid-row: 2;
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
    min-width: 375px;
  }

  .index-cookie-footer {
    display: grid;
    grid-column: 1/5;
    grid-row: 6/9;
  }

  .index-cookie-footer > .cookie-info > .cookie-text {
    margin: 0px;
  }

  .index-cookie-footer > .cookie-info > .cookie-btn-container {
    padding-bottom: 0px;
    padding-top: 20px;
  }

  .bottom-container > .container {
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: flex;
    flex-flow: column wrap;
    text-align: center;
  }

  .bottom-container > .container > h1 {
    font-size: 18px;
  }

  .container-minor-title {
    width: 330px;
  }

  .sign-up {
    width: 330px;
  }

  .sign-up-form {
    width: 100%;
    max-width: 280px;
    border-top-right-radius: 25px !important;
    border-bottom-right-radius: 25px !important;
    margin-bottom: 10px !important;
  }

  .sign-up-btn {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .language-btn {
    background-color: #fff !important;
    color: #333 !important;
    border: 1px solid #333333 !important;
    width: 100%;
    max-width: 300px;
  }

  .redirect-btn {
    width: 100%;
    max-width: 300px;
  }

  .language-menu {
    width: 100%;
  }

  .language > span {
    width: 100%;
    padding-left: 25%;
  }

  /* DEAL CARDS */
  .body-noscroll {
    position: fixed;
    height: 100%;
    width: 100%;
  }

  /* SEARCH, FILTER, SORT */
  .close-filter-window {
    display: block;
    top: 0;
    right: 0;
    position: absolute;
    background-color: inherit;
    color: #ffffff;
    margin-top: 13px;
    margin-right: 13px;
    text-transform: uppercase;
    font-size: 14px;
  }

  .search-btn {
    margin-bottom: 10px;
  }

  .filter-btn {
    margin-bottom: 10px;
  }

  /* SEARCH */
  .search-content {
    width: 100%;
    height: 100%;
    top: 0;
    overflow: auto;
    padding: 0px;
  }

  .search-content > .container {
    padding-top: 60px;
    height: 100%;
  }

  .search-box {
    text-transform: uppercase;
    font-size: 18px;
  }

  .close-window {
    background-color: green;
    border: 1px solid green;
  }

  .clear-filters-container, .clear-countries-container, .close-window-sort {
    margin-top: 40%;
    display: grid;
    grid-template: 1fr / 0.7fr;
    justify-content: center;
  }

  .clear-countries-container {
    margin-top: 80%;
  }

  #remove-countries {
    display: grid;
    grid-column: auto;
    grid-row: 1;
  }

  .country-btn-container {
    margin-bottom: 0;
    display: grid;
    grid-template: auto / 1fr 1fr;
   }

  .country-btn-text {
    padding-right: 0px;
  }

  /* FILTER */
  .filter-content {
    width: 100%;
    height: 100%;
    top: 0;
    padding: 0px;
  }

  .filter-content > .container {
    padding-top: 60px;
    height: inherit;
  }

  .filter-title, .filter-title-mobile {
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
  }

  .filter-title-mobile {
    display: block;
    text-align: left;
    text-transform: none;
    font-weight: bold;
  }

  .filters {
    height: 270px;
    overflow: auto;
  }

  .filter, .filter-checked {
    height: min-content;
  }

  /* SORT */
  .sort-content {
    width: 100%;
    height: 100%;
    top: 0;
    padding: 0px;
  }

  .sort-content > .container {
    height: inherit;
    padding-top: 60px;
  }

  .close-window-sort {
    margin-top: 80%;
  }

  /* DEAL-PAGE */
  .header-logo {
    display: grid;
    grid-column: 2/3;
    align-items: center;
    justify-content: center;
    margin-bottom: 0px;
  }

  .deal-padding {
    padding: 0;
  }

  .deal-img {
    height: 240px;
    background: transparent center center no-repeat;
    background-size: cover;
    margin-bottom: 30px;
    width: 100%;
    flex-basis: 55%;
  }

  .deal-discount {
      position: absolute;
      top: 10px;
      right: 10px;
      display: inline-block;
      background-color: darkorange;
      color: #fff;
      width: 60px;
      height: 60px;
      line-height: 60px;
      border-radius: 50%;
      text-align: center;
      font-size: 18px;
      font-weight: lighter;
  }

  .deal-container {
    display: grid;
    justify-content: center;
    text-align: center;
    grid-template: auto / minmax(0, 1fr);
    font: 18px/27px 'Poppins';
    letter-spacing: 0px;
    color: #333333;
    opacity: 1;
  }

  .deal-information {
    display: grid;
    grid-row: 2;
  }

  .deal-category-booking {
    width: auto;
  }

  .deal-category-booking-container {
    width: auto;
    height: 400px;
    background: #333333 0% 0% no-repeat padding-box;
    opacity: 1;
    color: #FFFFFF;
    grid-row: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .deal-booking {
    width: 284px;
    height: 259px;
    opacity: 1;
    text-align: center;
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    align-items: center;
  }

  .deal-booking :first-child {
    font-weight: bold;
  }

  .deal-price {
    color: #FF8C00;
    font-weight: bold;
  }

  .book-now, .more-info {
    display: flex;
    justify-content: center;
  }

  .more-info {
    margin-top: 15px;
  }

  .book-now-btn, .register-btn, .login-btn, .more-info-btn, .read-more-btn {
    background: #FF8C00 0% 0% no-repeat padding-box;
    border-radius: 25px;
    opacity: 1;
    width: 100%;
    max-width: 280px;
    height: 45px;
    color: #ffffff;
    font: 18px 'Poppins';
    font-weight: lighter !important;
    text-transform: uppercase;
  }

  .more-info-btn {
    background-color: #08BA08;
  }

  .register-btn, .login-btn {
    width: 100%;
    max-width: 280px;
  }

  .deal-ends {
    margin-top: 25px;
    margin-bottom: 27px;
    text-align: center;
    color: #FF8C00;
  }

  .deal-filters {
    height: auto;
    padding: 0 10px;
    margin-bottom: 30px;
  }

  #highlights {
    min-width: 0;
    min-height: 0;
    max-width: 100%;
    text-align: left;
    padding: 0 10px;
    word-wrap: break-word;
    word-break: break-all;
  }

  .main-deal-content {
    padding-top: 10px;
    padding-bottom: 50px;
  }

  .read-more-container {
    margin-top: 40px;
  }

  .read-more-btn {
    background-color: #ffffff;
    color: #333;
    border: 1px solid #333;
    margin: 0 auto;
    grid-column: 2;
    width: 200px;
  }

  .index-back > .caret-left:before {
    width: 20px;
    height: 20px;
  }

  /* ABOUT */
  #hero-top-about {
    height: 240px;
  }

  #contact-btn {
    width: 200px;
  }

  .hero .container h1 {
    font-size: 24px;
  }

  .about-us-crumbs, .contact-us-crumbs {
    margin-bottom: 1rem;
  }

  /* POLICY */
  .policy-title {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .policy-updated {
    margin-bottom: 40px;
  }

  .policy-content > hr {
    width: 100%;
  }

  .policy-table {
    overflow-x: scroll;
  }

  /* SIGNUP/LOGIN MODAL */
  .signup-email, .login-email {
    padding: 0px 0px 19px 0px;
  }

  .register-email {
    margin: 0 auto;
    width: 100%;
    max-width: 280px;
  }

  .modal-checkbox {
    justify-content: center;
    font-size: 14px;
  }

  .modal-thankyou-header {
    background-color: #333;
    justify-content: center;
  }

  .modal-logo {
    height: 60px;
    align-self: center;
  }

  .thankyou-message {
    text-align: center;
    padding: 40px 10px 10px 10px;
  }

  .footer-container {
    width: 90%;
    text-align: center;
    margin: 0 auto;
  }

  .mobile-terms {
    font-size: 14px;
  }

}

