/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}


/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}


body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  padding: 0;
}

.land-container {
    /* padding: 30px 15px; */
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
    transform-origin: center top;
}

.banner-area {
    width: 100%;
    /* height: 85vh; */
    height: auto;
    overflow: hidden;
    /* border: 1px solid #eee; */
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-area > div {
    margin: 0 auto;
    max-width: 320px;
    transform-origin: center top;

    /* box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px; */
}

iframe {
    margin: 0 auto;
    display: block;
}




.banner-holder {
    display: none;
}

.noevent {
    pointer-events: none;
    user-select: none;
}

.btn {
  padding: 10px 15px;
  min-width: 90px;
  margin: 0 10px;
  cursor: pointer;
}

.btn.noevent {
  opacity: 0.7;
}

.button-area {
  /* position: fixed; */
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.adBtn {
  display: flex;
  align-items: center;
  background: #5a9cff;
  color: #fff;
  cursor: pointer;
  margin: 0 10px;
  padding: 10px 20px;
  border-radius: 4px;
  border: 1px solid #5a9cff;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  /* opacity: 0.6; */
  
}

.adBtn.disabled {
  pointer-events: none;
  background: #7fabed;
  user-select: none;
}

.adBtn:hover {
  background: #7fabed;
  border: 1px solid #7fabed;
}

.adBtn p {
  margin: 0;
}

.icon svg {
  /* width: 14px;
  vertical-align: middle; */
}

.adBtn .icon {
  margin: 0;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.next_ad .icon {
  margin-left: 10px;
}
.next_ad:hover .icon {
  margin-left: 15px;
}
.prev_ad .icon {
  margin-right: 10px;
}

.prev_ad:hover .icon {
  margin-right: 15px;
}


svg:not(:root).svg-inline--fa, svg:not(:host).svg-inline--fa {
  overflow: visible;
  box-sizing: content-box;
}

.svg-inline--fa.fa-xl {
  vertical-align: -0.2em;
}

.fa-rotate-180 {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.svg-inline--fa {
  display: inline-block;
  height: 1em;
  overflow: visible;
  vertical-align: -0.125em;
}

.bannercount {
  position: absolute;
  top: 0px;
  right: 0px;
  padding: 5px;
  font-size: 12px;
}

.infobtn {
  /* display: none !important; */
  position: absolute;
  z-index: 11;
  right: -28px;
  bottom: 0;
  font-size: 12px;
  width: 24px;
  height: 24px;
  
  cursor: pointer;
  transition: all 0.5s;
}

.infobtn:hover {
  background: url(images/infoicon.png) center center / contain no-repeat;
}

.closebtn {
  position: absolute;
  right: 2px;
  top: -12px;
  width: 24px;
  height: 24px;
  background: url(images/closeicon.png) center center / contain no-repeat;
  cursor: pointer;
}

.tt-info {
  position: absolute;
  z-index: 13;
  left: 0;
  bottom: -150px;
  padding: 10px 10px 10px 10px;
  font-size: 14px;
  opacity: 0;
  width: 100%;
  transition: 0.5s all;
  background-color: #ffffffd4;
}

@media screen and (max-width: 768px) {
    .land-container {
      /* padding: 15px 15px; */
      max-width: 100%;
  }

    .adBtn {
      margin: 0 7px;
      padding: 8px 15px;
  }
}

@media screen and (max-width: 360px) {
  .banner-area > div {
    /* max-width: 290px; */
  }
}