.top-banner-animated-section-parent {
  width: 94%;
  height: 65vh;
  box-shadow: 0px 9px 37px -10px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0px 9px 37px -10px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 9px 37px -10px rgba(0, 0, 0, 0.3);
  position: relative;
  margin: 0 auto;
  border-radius: 20px;
}

.top-banner-animated-section-parent .new-header-heading-area {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 10px;
  position: relative;
  z-index: 1;
}

.top-banner-animated-section-parent .new-header-heading-area .heading-wrapper {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.top-banner-animated-section-parent .new-header-heading-area .heading-wrapper h1 {
  margin-top: 20px;
}

.top-banner-animated-section-parent .new-header-heading-area .heading-wrapper h1 .its-beautiful {
  font-family: 'Allison', cursive;
  font-size: 13vw;
  color: #FFC700;
  font-weight: 400;
  text-shadow: 0px 10px 3px rgba(0, 0, 0, 0.25);
}

.top-banner-animated-section-parent .new-header-heading-area .heading-wrapper h1 .place-name-heading {
  font-size: 10vw;
  top: 12vw;
  position: absolute;
  left: 0;
  color: #fff;
}

.top-banner-animated-section-parent::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: calc(20px + 4vw);
  color: #fff;
  font-weight: 600;
  text-shadow: 0px 1px 5px rgba(0, 0, 0, 0.3);
  border-radius: 0 0 20px 20px;
}

.event-listing-top-image-section {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: visible;
  padding: 0px 20px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 0 0 20px 20px;
}

.animated-section {
  width: 100%;
  height: auto;
  position: relative;
}

.animated-section .animated-sec-inner-parent {
  width: 100%;
  height: auto;
  padding: 10px;
}

.stage {
  width: 100%;
  height: 200px;
}

.stage > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-filter: brightness(20%);
          filter: brightness(20%);
}

.iconblock {
  position: absolute;
  left: 50%;
  margin-right: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.title {
  color: #333;
  text-align: center;
  font-size: 40px;
  letter-spacing: 6px;
  -webkit-filter: drop-shadow(0px 0px 3px #dbdbdb);
          filter: drop-shadow(0px 0px 3px #dbdbdb);
}

.icon {
  height: 125px;
  width: 125px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.85);
  -webkit-filter: drop-shadow(0px 0px 2.5px #dbdbdb);
          filter: drop-shadow(0px 0px 2.5px #dbdbdb);
  position: relative;
}

.icon:before {
  content: '';
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: radial-gradient(95px, #555, transparent);
  border-radius: 50%;
}

.ring {
  border: 10px solid white;
  height: 60%;
  width: 60%;
  margin: 0;
  position: absolute;
  left: 50%;
  margin-right: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
}

:root {
  --animation: 4s;
  --clone-delay: .1s
;
}

.ring.v {
  -webkit-transform: translate(-50%, -50%) rotateY(130deg);
          transform: translate(-50%, -50%) rotateY(130deg);
  -webkit-animation: ring-v-animation var(--animation) infinite;
          animation: ring-v-animation var(--animation) infinite;
}

.ring.h {
  -webkit-transform: translate(-50%, -50%) rotateX(130deg);
          transform: translate(-50%, -50%) rotateX(130deg);
  -webkit-animation: ring-h-animation var(--animation) infinite;
          animation: ring-h-animation var(--animation) infinite;
}

.ring.v:not(.clone) {
  -webkit-animation: ring-v-animation var(--animation) infinite;
          animation: ring-v-animation var(--animation) infinite;
}

.ring.h:not(.clone) {
  -webkit-animation: ring-h-animation var(--animation) infinite;
          animation: ring-h-animation var(--animation) infinite;
}

.ring.clone {
  opacity: .3;
}

.ring.v.clone {
  -webkit-animation: ring-v-animation var(--animation) var(--clone-delay) infinite;
          animation: ring-v-animation var(--animation) var(--clone-delay) infinite;
}

.ring.h.clone {
  -webkit-animation: ring-h-animation var(--animation) var(--clone-delay) infinite;
          animation: ring-h-animation var(--animation) var(--clone-delay) infinite;
}

@-webkit-keyframes ring-v-animation {
  0% {
    -webkit-transform: translate(-50%, -50%) rotateY(120deg) rotateX(0deg);
            transform: translate(-50%, -50%) rotateY(120deg) rotateX(0deg);
  }
  50% {
    -webkit-transform: translate(-50%, -50%) rotateY(0deg) rotateX(130deg);
            transform: translate(-50%, -50%) rotateY(0deg) rotateX(130deg);
  }
  75% {
    -webkit-transform: translate(-50%, -50%) rotateY(490deg) rotateX(360deg);
            transform: translate(-50%, -50%) rotateY(490deg) rotateX(360deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotateY(490deg) rotateX(360deg);
            transform: translate(-50%, -50%) rotateY(490deg) rotateX(360deg);
  }
}

@keyframes ring-v-animation {
  0% {
    -webkit-transform: translate(-50%, -50%) rotateY(120deg) rotateX(0deg);
            transform: translate(-50%, -50%) rotateY(120deg) rotateX(0deg);
  }
  50% {
    -webkit-transform: translate(-50%, -50%) rotateY(0deg) rotateX(130deg);
            transform: translate(-50%, -50%) rotateY(0deg) rotateX(130deg);
  }
  75% {
    -webkit-transform: translate(-50%, -50%) rotateY(490deg) rotateX(360deg);
            transform: translate(-50%, -50%) rotateY(490deg) rotateX(360deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotateY(490deg) rotateX(360deg);
            transform: translate(-50%, -50%) rotateY(490deg) rotateX(360deg);
  }
}

@-webkit-keyframes ring-h-animation {
  0% {
    -webkit-transform: translate(-50%, -50%) rotateX(130deg) rotateY(0deg);
            transform: translate(-50%, -50%) rotateX(130deg) rotateY(0deg);
  }
  50% {
    -webkit-transform: translate(-50%, -50%) rotateX(0deg) rotateY(130deg);
            transform: translate(-50%, -50%) rotateX(0deg) rotateY(130deg);
  }
  75% {
    -webkit-transform: translate(-50%, -50%) rotateX(490deg) rotateY(360deg);
            transform: translate(-50%, -50%) rotateX(490deg) rotateY(360deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotateX(490deg) rotateY(360deg);
            transform: translate(-50%, -50%) rotateX(490deg) rotateY(360deg);
  }
}

@keyframes ring-h-animation {
  0% {
    -webkit-transform: translate(-50%, -50%) rotateX(130deg) rotateY(0deg);
            transform: translate(-50%, -50%) rotateX(130deg) rotateY(0deg);
  }
  50% {
    -webkit-transform: translate(-50%, -50%) rotateX(0deg) rotateY(130deg);
            transform: translate(-50%, -50%) rotateX(0deg) rotateY(130deg);
  }
  75% {
    -webkit-transform: translate(-50%, -50%) rotateX(490deg) rotateY(360deg);
            transform: translate(-50%, -50%) rotateX(490deg) rotateY(360deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotateX(490deg) rotateY(360deg);
            transform: translate(-50%, -50%) rotateX(490deg) rotateY(360deg);
  }
}

.vr-listing-section {
  width: 100%;
  height: auto;
  padding: 40px 20px;
}

.vr-listing-section .vr-listing-inner-parent {
  width: 100%;
  height: auto;
  padding: 10px;
}

.vr-listing-section .vr-listing-inner-parent .vr-card-wrapper {
  width: 100%;
  height: auto;
  position: relative;
}

.vr-listing-section .vr-listing-inner-parent .vr-card-wrapper .three60itemcard {
  height: 350px !important;
}

.vr-listing-section .vr-listing-inner-parent .vr-card-wrapper .three60itemcard .looking-for-card {
  height: 100% !important;
}

.vr-listing-section .vr-listing-inner-parent .vr-card-wrapper .events-card-wrapper {
  width: auto;
  height: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
  -webkit-box-shadow: 0 7px 14px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
          box-shadow: 0 7px 14px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  background-color: #fff;
}

.vr-listing-section .vr-listing-inner-parent .vr-card-wrapper .events-card-wrapper .looking-for-card {
  width: auto;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.vr-listing-section .vr-listing-inner-parent .vr-card-wrapper .events-card-wrapper .looking-for-card .looking-for-card-heading {
  color: #fff;
  font-size: 1.2em;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: static;
  z-index: 1;
}

.vr-listing-section .vr-listing-inner-parent .vr-card-wrapper .events-card-wrapper .looking-for-card .looking-card-hover-layer {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  -webkit-transition: .5s;
  transition: .5s;
}

.vr-listing-section .vr-listing-inner-parent .vr-card-wrapper .events-card-wrapper .looking-for-card .looking-card-hover-layer .border {
  width: 90%;
  height: 90%;
  background-color: transparent;
  border: 2px solid white;
  border-radius: 12px;
}

.vr-listing-section .vr-listing-inner-parent .vr-card-wrapper .events-card-wrapper .looking-for-card:hover .looking-card-hover-layer {
  opacity: 1;
  -webkit-transition: .5s;
  transition: .5s;
}

.vr-listing-section .vr-listing-inner-parent .vr-card-wrapper .events-card-wrapper .looking-for-card:hover .card-heading-sec {
  display: none !important;
  -webkit-transition: .5s;
  transition: .5s;
}

.vr-listing-section .vr-listing-inner-parent .vr-card-wrapper .events-card-wrapper .looking-for-card::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.vr-listing-section .vr-listing-inner-parent .vr-card-wrapper .tag-360-area {
  width: 50px;
  height: 50px;
  background-color: whitesmoke;
  border-radius: 50%;
  position: absolute;
  right: -16px;
  top: -16px;
  border: 2px solid lightgray;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.vr-listing-section .vr-listing-inner-parent .vr-card-wrapper .tag-360-area img {
  width: 60%;
}

.vr-360-img-section {
  width: 100%;
  background-color: gray;
  position: absolute;
  top: 0;
  bottom: 0;
}

.vr-360-img-section #panorama {
  width: 100%;
  height: 100%;
}

.vr-360-img-section #panorama {
  width: 100%;
  height: 100%;
}

.vr-360-img-section #controls {
  position: absolute;
  bottom: 0;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding-bottom: 3px;
}

.vr-360-img-section .ctrl {
  padding: 8px 5px;
  width: 30px;
  text-align: center;
  background: rgba(200, 200, 200, 0.8);
  display: inline-block;
  cursor: pointer;
}

.vr-360-img-section .ctrl:hover {
  background: #c8c8c8;
}

.vr-360-img-section .down-arrow {
  width: 50px;
  position: absolute;
  bottom: 8px;
  right: 30px;
  z-index: 100;
}

.vr-card-wrapper .icon {
  width: 95px;
  height: 95px;
}

.card-heading-sec {
  width: 100%;
  height: auto;
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 15px 10px;
  -webkit-transition: .5s;
  transition: .5s;
}
/*# sourceMappingURL=vr-360-listing.css.map */