.box {
  position: relative;
  display: inline-block;
  width: 100px;
  height: 100px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.box::after {
  content: "";
  border-radius: 5px;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  opacity: 0;
  -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.box:hover {
  -webkit-transform: scale(1.25, 1.25);
  transform: scale(1.25, 1.25);
}

.box:hover::after {
    opacity: 1;
}

.card {
   background-color: #323232 !important;
}

.modal-content .card {
	background-color: #ffffff !important;
}

#toast-container {
    padding: 0px !important;
    margin: 0px !important;
 }
 .toast {
     padding: 0px !important;
     marging: 0px !important;
 }
 .toast .card {
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
 }

 .fb-share-button {
   float: left !important;
   position: absolute !important;
   left: 30px !important;
   top: 30px !important;
   right: auto !important;
   bottom: auto !important;
 }

 .landingpage {
   position: absolute !important;
   left: 0px !important;
   top: 0px !important;
   height: 100% !important;
   width: 100% !important;
   z-index: 999999 !important;
   background-color: rgba(200, 200, 200, 0.4);
 }

 

p.speech {
  /*position: relative;*/
  height: 120px;
  width: 300px !important;
  color: black;
  text-align: left;
  font-weight: bold;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  background-color: #fff;
  border: 8px solid #666;  
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  -webkit-box-shadow: 2px 2px 4px #888;
  -moz-box-shadow: 2px 2px 4px #888;
  box-shadow: 2px 2px 4px #888;
  min-width: 300px !important;
}

p.speech span {
  position: relative;
  left: -30px;
  top: 10px !important;
}

p.speech:before {
  content: ' ';
  position: relative;
  float: left;
  width: 0;
  height: 0;
  left: 30px;
  top: 110px;
  border: 25px solid;
  border-color: #666 transparent transparent #666;
}

p.speech:after {
  content: ' ';
  position: relative;
  float: left;
  width: 0;
  height: 0;
  left: -10px;
  top: 60px;
  border: 15px solid;
  border-color: #fff transparent transparent #fff;
}

.landingpage div.input-field {
 background-color: rgba(255, 255, 255, 0.9);
 min-height: 40px; 
}
.landingpage div.input-field label {
  margin-top: 10px;
  color: black;
  opacity: 1;
}
.landingpage div.input-field input {
  margin-top: 10px;
}

.rockingpicture {
  animation: swing 2s infinite ease-in-out;
}

@keyframes swing {
  0%, 100% { transform: rotate(-1deg);transform:scale(1.02); }
  20% {transform:scale(1.03);}
  50% { transform: rotate(1deg);transform:scale(1.02); }
  80% {transform:scale(1.03);}
}

.event{
  margin:50px auto;
  text-align:center;
}

.slider .slides li img {
    background-size:100% auto;
    background-repeat: no-repeat;
}

      #pac-input {
        background-color: #fff;
        font-family: Roboto;
        font-size: 15px;
        font-weight: 300;
        margin-left: 6px;
		margin-bottom: 6px;
        padding: 0 11px 0 13px;
        text-overflow: ellipsis;
        max-width: 400px;
		width: 90%;
      }

      #pac-input:focus {
        border-color: #4d90fe;
      }
	  
	       #description {
        font-family: Roboto;
        font-size: 15px;
        font-weight: 300;
      }

      #infowindow-content .title {
        font-weight: bold;
      }

      #infowindow-content {
        display: none;
      }

      #map-canvas #infowindow-content {
        display: inline;
      }

      #pac-container {
        margin-left: 12px;
		margin-top: 7em;
		margin-right: auto;
		padding-right: 6px;
        border-radius: 2px 0 0 2px;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        outline: none;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
        background-color: #fff;
        font-family: Roboto;
		max-width: 450px;
		width: 95%;
      }