/*1. Globals*/
/*1.1. Pages*/
/*1.2. Top Menu*/
/*1.3. Horizontal scrollers*/
/*1.4. Searchbar*/
/*1.5. Quick Search*/
/*1.6. Screen Saver*/
/*1.7. Preloader*/
/*1.8. Splashscreen */

/*2. Main Page*/
/*3. Shop Page*/
/*4. Map Page*/
/*5. Promo Page*/
/*5.1. Promo Jumbotron*/
/*5.2. Promo items*/
/*6. Info boxes*/
/*7. Loaders*/

/*Z Index List*/

/*
0 - .md-background-image
3 - .md-page
3 - .md-menu-container
4 - .md-menu-items
5000 - .md-store-info-box
6000 - .md-dir-search
10000 - .md-event-modal
10000 - .md-splash-modal
99999 - .screensaver

*/

/*1. Globals*/
body{
  padding:0;
  margin: 0;
  height:100vh;
  width: 100%;
  font-family: sans-serif;
  overflow: hidden;
}
html{
  overflow: hidden;
  /* height:100%; */
  width: 100%;
    -webkit-touch-callout: none; /* iOS Safari */
      -webkit-user-select: none; /* Safari */
       -khtml-user-select: none; /* Konqueror HTML */
         -moz-user-select: none; /* Firefox */
          -ms-user-select: none; /* Internet Explorer/Edge */
              user-select: none; /* Non-prefixed version, currently
                                    supported by Chrome and Opera */
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}

.h1{
    color: #fff;
    font-size: 64px;
    margin: 6% 20%;
}


.md-page,.scroller{
    -webkit-overflow-scrolling: touch;
}

.md-preloader div img{
  height:1px;
  left:100%;
  position: absolute;
  width:1px;
}

/*1.1. Pages*/

.md-page{
  height:100vh;
  left: -100vw;
  overflow-y: scroll;
  overflow-x: hidden;
  position: absolute;
  width:100vw;
  z-index: 3;
}

#md-page-2{
  background-color: #fff;
}

.md-background-image{
  background-size: cover;
  background-position: center;
  filter: blur(6px);
  height:102vh;
  margin:-1%;
  position: absolute;
  width:102vw;
  z-index: 0;
}

/*1.2. Top Menu*/

.md-menu-container{
  box-shadow: 1px 1px 10px 1px rgba(0,0,0,0.5);

  display:block;
  margin:0 auto;
  position: absolute;
  top:0;
  width:100%;
  z-index: 3;
}

.md-menu-logo{
  height: calc(100% - 20px);
  padding: 10px 20px;
}


/*Custom*/
.md-menu-container{
  background-color:var(--primary-color-3);
  box-shadow: 0px 10px 19px -18px rgba(0,0,0,0.93);``
}

.md-menu-items{
  display:flex;
  height:96px;
  position: absolute;
  right:0;
  top:0;
  width:60vw;
  z-index: 4;
}

.md-menu-item svg{
  fill:#fff;
  height:53%;
  margin-top: 7%;
}

.md-menu-item{
  color:#fff;
  text-align: center;
  width:20%;
}

.md-menu-item-active{
  background-color:#fff4;
}

/*For large screen sizes horizontal >1080w*/
@media(min-width:1080px){
  .md-menu-container{
   height:96px;
  }
  .md-page{
    height:calc(100vh - 96px);
    margin-top:96px;
  }

}

/*For large screen vertical 1920x1080*/
@media(max-width:1080px){
  .md-menu-container{
   height:108px;
  }
  .md-page{
    height:calc(100vh - 108px);
    margin-top:108px;
  }
}

/*For iPad Pro*/
@media(max-width:1024px){
  .md-menu-container{
   height:96px;
  }
  .md-page{
    height:calc(100vh - 96px);
    margin-top:96px;
  }
  #md-page-2{
    height:calc(100vh - 56px);
  }
}


/* For Mobile*/
@media(max-width:576px){
  .md-menu-container{
   height:56px;
   text-align: center; /*Centers the logo*/
  }
  .md-page{
    height:calc(100vh - 56px -50px); /*Minus the top and bottom menus*/
    margin-top:56px;
  }
  .md-menu-items{
    background-color: var(--primary-color-3);
    bottom: 0;
    display:flex;
    float:unset;
    font-size: 12px;
    height:62px;
    position: absolute;
    top:unset;
    width:100vw;
  }
  .md-menu-items-hide{
    display: none;
  }
  .md-menu-logo {
      height: calc(100% - 10px);
      padding: 5px 20px;
  }
}

/*1.3. Horizontal scrollers*/

.md-page::-webkit-scrollbar-track,.md-store-info-cont::-webkit-scrollbar-track
{
	border-radius: 5px;
	background-color: transparent;
}

.md-page::-webkit-scrollbar,.md-store-info-cont::-webkit-scrollbar
{
	background-color: #fff7;
	border-radius: 5px;
  height: 0;
  width: 0;
}

.md-page::-webkit-scrollbar-thumb
{
	border-radius: 0;
	background-color: rgba(0,0,0,0.2);
}

/*1.4. Searchbar*/

.md-searchbar-container{
    display: flex;
    justify-content: center;
    margin:24px 0;
}
@media(max-width:576px){
  .md-searchbar-container{
      margin:20px 0;
  }
}
.md-searchbar-input{
    background-color: transparent;
    border: none;
    color: #fff;
    font-size: 3em;
    padding: 20px;
    text-align: center;
    width: 85%;
}

.md-searchbar-subcontainer{
    border-bottom: 2px solid #fff;
    display:flex;
    width:70%;
}

.md-searchbar-input::placeholder{
  color:#fff;
}

.md-search-icon{
    display: flex;
    justify-content: center;
    margin-bottom:2px;
    width:15%;
}

.md-search-icon svg{
    fill:#fff;
    width:3em;
}

.md-searchbar-input-black{
    background-color: transparent;
    color: #333;
}

.md-searchbar-subcontainer-black{
    border-bottom: 2px solid #ccc;
}

.md-searchbar-input-black::placeholder{
    color:#ccc;
}

.md-search-icon-black svg{
    fill:#aaa;
}

.md-store-item-name{
    font-size: 1.75em;
    text-transform: uppercase;
}

.md-store-item-category{
  color: #aaa;
  font-size: 1.5em;
}

#searchbar-input-search-close{
  display:none;
}

/*For large screen sizes horizontal >1080w*/
@media(min-width:1080px){

}

/*For large screen vertical 1920x1080*/
@media(max-width:1080px){

}

/* For Mobile*/
@media(max-width:576px){
  .md-searchbar-input{
      font-size: 1.5em;
  }
  .md-search-icon svg{
      width:1.5em;
  }
}

/*1.5. Quick Search*/
.md-quicksearch{

}
.md-quicksearch-row{
  display:flex;
  justify-content: center;
}
.md-quicksearch-item{
  text-align: center;
  color:#fff;
}
.md-quicksearch-btn{
  align-items: center;
  display: flex;
  background-color: var(--primary-color-1);
  border-radius: 50%;
  box-shadow: 12px 10px 19px -18px rgba(0,0,0,0.93);
  height: 15vw;
  justify-content: center;
  margin:  7vw 3vw 2vw;
  width: 15vw;
}
.md-quicksearch-btn svg{
  fill: #fff;
  width: 45%;
}
.md-quicksearch-text{
  font-size: 2.25em;
}

/* For Mobile*/
@media(max-width:576px){
  .md-quicksearch-text{
    font-size: 1em;
  }
}


.quick-search-cont{
    background-color: #fff;
    padding:1% 6%;
    text-align: center;
    width:88%;
}
.quick-search-term{
    background-color:#eee;
    border-radius: 20px;
    color:#777;
    display:inline-block;
    font-family:'Comfortaa';
    font-size:24px;
    margin:1% 1.5%;
    padding:2% 4%;
}


/*1.6. Screen Saver*/
.screensaver{
    background-color: #000;
    background-position: center center;
    background-repeat:no-repeat;
    background-size:cover;
    height:100%;
    left:-100%;
    position: absolute;
    top:0;
    /* transition: all 1s; */
    width:100%;
    z-index: 99999;
}

.screensaver-cta {
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 0 100%, 0% 100%);
  background-color: #161138;
  clip-path: polygon(0% 0%, 100% 0%, 0 100%, 0% 100%);
  color: #fff;
  font-family: "Comfortaa";
  font-size: 44px;
  height: 10.5%;
  padding: 3%;
  width: 38%;
}

/*1.7. Preloader*/
.preload-img{
  height:30px;
  width:100px;
  position:absolute;
  left:-100%;
}

/*1.8. Splashscreen */

.md-splash-modal{
  align-items: center;
  background-position: center center;
  background-size: cover;
  display: flex;
  height:100vh;
  justify-content: center;
  position: fixed;
  transition: all 1s ease;
  width:100vw;
  z-index:10000;
}

.md-splash-logo{
  width:50vw;
  -webkit-animation: pulse 3s infinite ease-in-out;
  -o-animation: pulse 3s infinite ease-in-out;
  -ms-animation: pulse 3s infinite ease-in-out; 
  -moz-animation: pulse 3s infinite ease-in-out; 
  animation: pulse 2s infinite ease-in-out;
}

@-webkit-keyframes pulse {
  0% { -webkit-transform: scale(0.9); opacity: 0.7; }
  50% { -webkit-transform: scale(1); opacity: 1; }
  100% { -webkit-transform: scale(0.9); opacity: 0.7; }
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.7; }
}



/* animation */

@keyframes slide {
	0% {transform:translateX(-100%);}
	100% {transform:translateX(100%);}
}

/*2. Main Page*/


/*2.1. Img Scroller*/

.scroller{
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
}

.main-scroller div{
    align-items: center;
    background-position: center center;
    background-size: cover;
    -webkit-clip-path: polygon(33.3% 0%, 100% 0%, 66.6% 100%, 0% 100%);
    clip-path: polygon(33.3% 0%, 100% 0%, 66.6% 100%, 0% 100%);
    display: inline-flex;
    height: 50vh;
    justify-content: center;
    margin-left: -28vw;
    text-align: center;
    vertical-align: top;
    width: 80%;
}

.main-img:nth-child(1){
    background-color: #ed0973;
    text-shadow: none;
    align-items: flex-start;
    justify-content: flex-end;
}
.main-img:last-child{
    background-color: #ed0973;
    -webkit-clip-path:polygon(75% 0%, 100% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(75% 0%, 100% 0%, 100% 100%, 0% 100%);
    margin-right: -20vw;
    width: 28%;
}

.main-img{
  color:#fff;
  font-size:64px;
  text-shadow: 0px 0px 36px rgba(0,0,0,0.9);
}

.main-img-mask::before{
  background: #000;
  bottom: 0;
  content: "";
  left: 0;
  opacity: .12;
  position: absolute;
  right: 0;
  top: 0;
}

.main-img-mask span{
  bottom: -35%;
  left: -13%;
  position: relative;
}

/*2.2. Main page events*/
.md-event-title{
  color: #fff;
  font-size: 3em;
  margin: 17% 0 5%;
  text-align: center;
}

.md-events-container{
  width:100%;
}
.md-events{
  align-items: flex-end;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: inline-flex;
  float: left;
  height: 44.444444vw;
  vertical-align: top;
  width: 33.333333vw;
}
.md-events div{
  background-color: var(--primary-color-1);
  bottom: 0;
  color: #fff;
  font-size: 2.25em;
  margin-bottom: 10px;
  position: relative;
  padding: 5px;
  width: 80%;
}
.md-event-modal{
  background-color: #000000e6;
  display:none;
  height:100vh;
  left:-100%;
  position: absolute;
  overflow: scroll;
  top:0;
  transition: all 0.3s ease;
  width:100vw;
  z-index: 10000;
}
.md-event-modal-item{
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height:100vh;
  position: absolute;
  top:0;
  width:100vw;
}

@media(max-width:576px){
  .md-event-modal-item{
      background-size: contain;
  }
}

.md-event-modal-close-btn{
  align-items: center;
  background: rgba(0,0,0,0.3);
  border-radius: 25px;
  color: #fff;
  display: flex;
  font-size: 30px;
  height: 34px;
  justify-content: center;
  margin: 10px;
  position: fixed;
  right: 0;
  width: 34px;
}

@media(max-width:576px){
  .md-events{
    height:66.666667vw;
    width:50vw;
  }
  .md-event-title{
    font-size: 1.25em;
  }
  .md-events div{
    font-size: 1em;
  }
}

/* 2.3. Slider */

.slider {
  height:84vw;
  margin-bottom:7vh;
  /* overflow: hidden; */
  text-align: center;
  width: 100vw;
}

.slides {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  /*
  scroll-snap-points-x: repeat(300px);
  scroll-snap-type: mandatory;
  */
}
.slides::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.slides::-webkit-scrollbar-thumb {
  background: black;
  border-radius: 10px;
}
.slides::-webkit-scrollbar-track {
  background: transparent;
}
.slides > div {
  scroll-snap-align: center;
  flex-shrink: 0;
  width: 84vw;
  height: 84vw;
  margin: 0 1vw;
  border-radius: 10px;
  background: #eee;
  transform-origin: center center;
  transform: scale(1);
  transition: transform 0.5s;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 100px;

  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.slides > div:target {
/*   transform: scale(0.8); */
}
.slider > a {
  display: inline-flex;
  width: 1.5rem;
  height: 1.5rem;
  background: white;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 0 0.5rem 0;
  position: relative;
}
.slider > a:active {
  top: 1px;
}
.slider > a:focus {
  background: #000;
}



/*3. Shop Page*/
.md-store-item{
  display: flex;
  margin: 0 auto;
  margin-bottom: 50px;
  width: 75%;
}
.md-store-item:last-child{
  margin-bottom: 100px;
}
.md-store-img-cont{
  width:25%
}
.md-store-img{
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  border: 1px solid #ccc;
  border-radius: 30px;
  width: 90%;
  padding: 45% 0;
}
.md-store-item-text{
  margin-left: 5px;
  width: 65%;
}
.md-store-dash-there{
  width:10%;
}

.md-store-stars{
  color: var(--primary-color-1);
  font-size: 3em;
}

.md-store-dash-there{
  align-items: center;
  display:flex;
}
.md-store-dash-there svg{
  fill:var(--primary-color-1);
  width:3em;
}
.md-keywords{
  padding: 0 10vw;
  position: relative;
  margin-bottom: 70px;
  text-align: center;
  width: 80vw;
}
.md-keywords div{
  background-color: #eee;
  border-radius: 25px;
  color:#999;
  display: inline-block;
  font-size: 2em;
  margin: 10px;
  padding: 2vw;
}
/* For Mobile*/
@media(max-width:576px){
  .md-store-stars{
    font-size: 1.5em;
  }
  .md-store-item{
      margin-bottom: 30px;
      width: 90%;
  }
  .md-store-item-name{
      font-size: 1.2em;
  }
  .md-store-item-category {
      font-size: 1.1em;
  }
  .md-store-img{
      border-radius: 15px;
  }
  .md-store-dash-there svg{
    width:1.5em;
  }
  .md-keywords{
    margin-bottom: 30px;
    padding: 0;
    width: 100vw;
  }
  .md-keywords div {
      font-size: 1em;
      margin: 5px;
      padding: 10px 20px;
  }


}


/*3.1. Store search*/
.sticky-search{
  position: sticky;
  top: 0;
}
.store-list-item{
    height:200px;
    margin: 50px 80px;
}
.store-list-item:last-child{
  margin-bottom:30%;
}
.md-store-search-empty{
  text-align: center;
}

/*4. Map Page*/

.md-page-map{
  overflow: hidden;
}

@media(max-width:576px){
  .md-page-map-dir{
    z-index: 5;
  }
}

.md-dir-search{
  background-color: var(--primary-color-3);
  display: none;
  height: 100%;
  overflow: scroll;
  padding-top:1.5vw;
  position: absolute;
  top: 0;
  width: 100vw;
  z-index: 6000;
}
.md-dir-search-input-container{
  white-space: nowrap;
}

.md-dir-search div input{
  border:none;
  display: inline-block;
  font-size:2em;
  height: 85px;
  padding-left: 3vw;
  width: 72.5vw;
  border-radius: 10vw;
}

.md-dir-search-x{
  float: right;
  position: relative;
  right: 8vw;
  top: 30px;
}

.md-dir-search-x svg{
  width:18px;
}

.md-dir-search-desc{
  align-items: center;
  color:white;
  display: inline-flex;
  font-size: 2em;
  height: 96px;
  justify-content: center;
  vertical-align: top;
  width: 20vw;
}
.md-dir-results{
  color:#fff;
  font-size:2em;
}
.md-dir-results div{
  margin:5vw 7vw;;
}
.md-dir-results div:last-child{
  margin-bottom: 15vw;
}

.md-dir-results div span{
  float:right;
}

.md-dir-search-buttons{
  bottom:0;
  display:flex;
  position:fixed;
}

.md-dir-search-buttons button{
  background-color: var(--primary-color-1);
  border: none;
  color: #fff;
  font-size: 2em;
  height: 96px;
  width: 50vw;
}

@media(max-width:576px){
  .md-dir-search div input{
    font-size: 1.25em;
    height: 56px;
    padding-left: 6vw;
    width: 57vw;
    margin-bottom: 2vw;
    padding-right: 12vw;
  }

  .md-dir-search-desc{
    font-size: 1.25em;
    height: 56px;
    width: 18vw;
  }
  .md-dir-search {
    position: fixed;
    height: 100%;
    width: 100vw;
  }
  .md-dir-results {
    font-size: 1.5em;
    max-height: calc(100vh - 193px);
    overflow: scroll;
  }
  .md-dir-search-x{
    float: right;
    position: relative;
    right: 12vw;
    top: 16px;
  }


    /* font-size: 1em;
    position: absolute;
    left: 0;
    background-color: #fff;
    top: calc(40vw + 44px);
    height: calc(100vh - 40vw - 44px - 65px - 4vw);
    padding: 4vw 4vw 0 4vw;
    overflow: scroll; */



  .md-dir-results div {
    margin: 0vw 7vw 5vw 7vw;
  }
  .md-dir-results div span{
    display: none;
  }
  .md-dir-search-buttons {
      background-color: #fff;
  }
  .md-dir-search-buttons button {
      font-size: 1.25em;
      height: 56px;
  }
  .md-store-info-btn {
      bottom: -44px;
      left: 0;
      width: 100vw;
  }
  .md-store-info-btn button{
      width: 33.3333333vw;
  }
}

/*Store Information Box*/
.md-store-info-box{
  background: #eee;
  display:none;
  height:35vw;
  margin-left: 0%;
  position: absolute;
  top: 0;
  width: 100vw;
  z-index: 5000;
}

@media(max-width:576px){
  .md-store-info-box{
    top: 54px;
  }
}



.md-store-info-img{
  background-color: var(--primary-color-1);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover,cover,contain;
  display: inline-block;
  height: 100%;
  vertical-align: top;
  width: 40vw;
}
.md-store-info-cont{
  display: inline-block;
  height: 100%;
  overflow: scroll;
  vertical-align: top;
  width: 60vw;
}
.md-store-info-content{
  padding:3vw;
}

.md-store-info-content .md-store-item-category{
  color:#000;
  font-size:1.25em;
}

.md-store-info-content .md-store-item-name{
  margin-bottom:10px;
  text-transform: uppercase;
}
.md-store-item-desc{
  font-size:1.1em;
  margin-top:10px;
  margin-bottom:56px;
}
.md-store-info-btn{
  bottom:0;
  display: flex;
  position:absolute;
  width:60vw;
}
.md-store-info-btn button{
  align-items: center;
  background-color: var(--primary-color-1);
  border: none;
  color: white;
  display: flex;
  font-size: 1.5em;
  height: 56px;
  justify-content: center;
  width: 50%;
}
.md-store-info-btn button svg{
  fill: #fff;
  margin-left: 10px;
  width: 30px;
}
.md-store-item-category .md-store-stars{
  font-size: 2em;
  line-height: 0;
  float:right;
  margin-left:20px;
}
.md-store-info-close-btn{
  align-items: center;
  background: rgba(0,0,0,0.3);
  border-radius: 25px;
  color: #fff;
  display: flex;
  font-size: 30px;
  height: 34px;
  justify-content: center;
  margin: 10px;
  position: absolute;
  right: 0;
  top: 0;
  width: 34px;
}

.md-store-info-btn .md-store-info-btn-mobile{
  display:none;
}
@media(max-width:576px){
  .md-store-info-btn{
    bottom:-44px;
    width:100vw;
  }
  .md-store-info-btn-close{
    width:18px !important;
  }
  .md-store-info-btn span{
    display:none;
  }
  .md-store-info-btn button{
    font-size: 2.5em;
    height: 44px;
    /* width: 20vw; */
  }
  .md-store-item-category .md-store-stars{
    display:none;
  }
  .md-store-item-desc{
    background-color: #fff;
    display:none;
    font-size: 1em;
    height: calc(100vh - 35vw - 44px - 64px - 4vw + 10px);
    left: 0;
    margin-top: 0;
    padding: 4vw 4vw 0 4vw;
    position: absolute;
    overflow: scroll;
    top: calc(35vw + 44px);
    width:92vw;
  }
  .md-store-info-content .md-store-item-category{
    font-size:1em
  }
  .md-store-info-box{
    position:fixed;
  }
  .md-store-info-close-btn{
    display:none;
  }
  .md-store-info-btn .md-store-info-btn-mobile{
    display:flex;
  }
}
@media(min-width:1280px){

  .md-menu-item svg {
      height: 40%;
      margin-top: 12%;
  }

  .md-store-info-box{
    bottom: 0;
    height: 35vw;
    top: unset;
    width: 100vw;
  }

  .md-store-info-btn {
      width: 60vw;
  }
  .md-store-info-btn button{
    height:80px;
  }
}
.svg-20{
  width:20px !important;
}
.svg-25{
  width:25px !important;
}

/*Pulsing animation*/
@keyframes flickerAnimation {
  0%   { opacity:1; }
  50%  { opacity:0; }
  100% { opacity:1; }
}
@-o-keyframes flickerAnimation{
  0%   { opacity:1; }
  50%  { opacity:0; }
  100% { opacity:1; }
}
@-moz-keyframes flickerAnimation{
  0%   { opacity:1; }
  50%  { opacity:0; }
  100% { opacity:1; }
}
@-webkit-keyframes flickerAnimation{
  0%   { opacity:1; }
  50%  { opacity:0; }
  100% { opacity:1; }
}
.animate-flicker {
   -webkit-animation: flickerAnimation 1s infinite;
   -moz-animation: flickerAnimation 1s infinite;
   -o-animation: flickerAnimation 1s infinite;
    animation: flickerAnimation 1s infinite;
}

/*5. Promo Page*/

.md-promo-modal{
  background-color: #000b;
  display:none;
  height:100vh;
  left:-100%;
  position: absolute;
  overflow: scroll;
  top:0;
  transition: all 0.3s ease;
  width:100vw;
  z-index: 10000;
}
.md-promo-modal-item{
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height:100vh;
  position: absolute;
  top:0;
  width:100vw;
}
@media(max-width:576px){
  .md-promo-modal-item{
    background-size: contain;
  }
}

.md-promo-modal-close-btn{
  align-items: center;
  background: rgba(0,0,0,0.3);
  border-radius: 25px;
  color: #fff;
  display: flex;
  font-size: 30px;
  height: 34px;
  justify-content: center;
  margin: 10px;
  position: absolute;
  right: 0;
  width: 34px;
}
.md-promo-action-btn{
  align-items: center;
  background-color: var(--primary-color-3);
  bottom: 0;
  color: #fff;
  display: flex;
  font-size: 1.25em;
  height: 56px;
  justify-content: center;
  position: fixed;
  width: 100vw;
}

.md-promo-modal-swiper,.md-event-modal-swiper{
  /* background:blue; */
  position: absolute;
  height:100%;
  width:125px;
  z-index: 9;
}

.md-info-img{
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height:70vw
}

.md-info-desc{
  color:#fff;
  font-size:1.5em;
  padding: 1em;
}

@media(max-width:576px){
  .md-info-desc{
    font-size:1em;
  }
}

/*5.1. Promo Jumbotron*/
.promo-jumbotron{
    overflow-x:scroll;
    width:100%;
}
.promo-jumbo-item{
  display: inline-block;
  margin: 3% 0 1% 3.1%;
  vertical-align: top;
  width: calc(960px - 128px);
}
.promo-jumbo-img {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 20px 20px 0 0;
    box-shadow: 1px 1px 3px #aaa;
    height: calc(540px - 72px);
    vertical-align: top;
}

.promo-jumbo-item:last-child{
  margin-right:3.1%;
}

.promo-jumbo-desc {
    background-color: #fff;
    border-radius: 0 0 20px 20px;
    box-shadow: 1px 1px 3px #aaa;
    font-size: 24px;
    font-family: 'Comfortaa';
    overflow:hidden;
    padding: 20px 24px;
    text-overflow: ellipsis;
}

/*5.2. Promo items*/

.promo-item-cont{
  width:100%;
  padding:0 1%;
}

.md-promo-title{
  color: #fff;
  font-size: 3em;
  margin: 5% 0 5%;
  text-align: center;
}

.md-promos-container{
  width:100%;
}
.md-promo-item{
  align-items: flex-end;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: inline-flex;
  height: 44.444444vw;
  vertical-align: top;
  width: 33.333333vw;
}
.md-promo-item div{
  background-color: var(--primary-color-1);
  bottom: 0;
  color: #fff;
  font-size: 2.25em;
  margin-bottom: 10px;
  position: relative;
  padding: 5px;
  width: 80%;
}

@media(max-width:576px){
  /* .md-promos{
    height:66.666667vw;
    width:50vw;
  } */
  .md-promo-title{
    font-size: 1.4em;
  }
  .md-promo-item div{
    font-size: 1em;
  }
  .md-promo-item{
    height: 66.666667vw;
    width:50vw;
  }
}

/*6. Info boxes*/


.info-cont{
    height: 45vh;
    white-space: nowrap;
}

.info-cont:first-child{
  margin-top:1px;
}

.info-primary-1{background-color:var(--primary-color-1)}
.info-primary-2{background-color:var(--primary-color-2)}


.info-cont-img{
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-clip-path:  polygon(55% 0%, 100% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(55% 0%, 100% 0%, 100% 100%, 0% 100%);
  display: inline-block;
  height: calc(100% + 1px);
  margin-left: 0%;
  margin-top: -1px;
  width: 51%;
}

.info-cont-txt{
  color: #fff;
  display: inline-block;
  font-family: 'Comfortaa';
  padding: 2% 0% 4% 8%;
  vertical-align: top;
  white-space: normal;
  width: 42%;
}

.info-amenities,.info-carpark-table{
  font-size:24px;
  width:115%;
}

/*7. Loaders*/

.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}

.loader-card{
  display:flex;
  justify-content: center;
  align-items:center;
}