/**/
#preload_overlay { position:absolute; z-index:1000; top:0px; right:0px; bottom:0px; left:0px; background: url(loader.gif) center center no-repeat #000;}
/**/


.noselect {
  -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 */
}



html {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ebebeb;
  
}

html body {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  margin: 0px;
}

html body .heading {
  text-align: center;
  color: #2e5266;
  margin-bottom: 3rem;
}


html body .heading a {
  color: #2e5266;
  display: inline-block;
}

html body .heading a .fab {
  margin-right: 0.5rem;
  font-size: 1.5rem;
  padding: 0.5rem;
  margin-top: 0.5rem;
}

.card-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.card-carousel .my-card {
  height: auto;
  width: 500px;
  position: relative;
  z-index: 1;
  -webkit-transform: scale(0.6) translateY(-2rem);
  transform: scale(0.6) translateY(-2rem);
  opacity: 0;
  cursor: pointer;
  pointer-events: none;
  transition: 1s;
}


.card-carousel .my-card.active {
  z-index: 3;
  -webkit-transform: scale(1) translateY(0) translateX(0);
  transform: scale(1) translateY(0) translateX(0);
  opacity: 1;
  pointer-events: auto;
  transition: 0.1s;
  filter: blur(0px);
}

.card-carousel .my-card.prev, .card-carousel .my-card.next {
  z-index: 2;
/*
  -webkit-transform: scale(1) translateY(0px) translateX(0);
  transform: scale(1) translateY(0px) translateX(0);
*/
  opacity: 1;
  pointer-events: auto;
  transition: 1s;
  filter: blur(0px);
}


.card-carousel .my-card.prev {
  -webkit-transform: scale(1) translateY(0px) translateX(150px);
  transform: scale(1) translateY(0px) translateX(-10px);
}

.card-carousel .my-card.next {
  -webkit-transform: scale(1) translateY(0px) translateX(-150px);
  transform: scale(1) translateY(0px) translateX(10px);
}


@media only screen and (max-width: 420px) { 
  .card-carousel .my-card.active {transform: scale(0.55);} 
  .card-carousel .my-card.prev {transform: scale(0.4) translateY(15px) translateX(850px);
                                -webkit-transform: scale(0.4) translateY(15px) translateX(850px);} 
  .card-carousel .my-card.next {transform: scale(0.4) translateY(15px) translateX(-850px);
                                -webkit-transform: scale(0.4) translateY(15px) translateX(-850px);}
}
@media only screen and (min-width: 420px) and (max-width: 550px) {
  .card-carousel .my-card.active {transform: scale(0.75);}
  .card-carousel .my-card.prev {transform: scale(0.6) translateY(15px) translateX(350px);
                                transform: scale(0.6) translateY(15px) translateX(350px);} 
  .card-carousel .my-card.next {transform: scale(0.6) translateY(15px) translateX(-350px);
                                -webkit-transform: scale(0.6) translateY(15px) translateX(-350px);}
}


.my-card img { width: 100%; }