html{
  background-color: #F9F9F9;
}

body{
  background-color: #F9F9F9;
}

h1.get-connected{
  font-family: "aaux-next", sans-serif;
  font-size: 72px;
  color: #272726;
  text-align: center;
  font-weight: bold;
  margin-top: 100px;
  margin-bottom: 70px;
}

div.card{
  background: #FFFFFF;
  box-shadow: 0 2px 6px 0 rgba(0,0,0,0.31);
  height: 300px;
  padding-top: 40px;
  padding-bottom: 40px;
  transition: box-shadow .25s linear;
  cursor: pointer;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
}

div.card:hover{
  box-shadow: 0 10px 20px rgba(3,27,78,.1);
}

img.connect-image{
  display: block;
  margin: auto;
}

span.connect-title{
  color: #0D223F;
  display: block;
  margin-top: 10px;
  margin-bottom: 15px;
  text-align: center;
  font-family: "aaux-next", sans-serif;
  font-weight: bold;
}

span.connect-description{
  color: #8C8C8C;
  font-size: 16px;
  font-family: "aaux-next", sans-serif;
  line-height: 27px;
  display: block;
  height: 85px;
}

span.connect-label{
  color: #2196F3;
  font-size: 18px;
  display: block;
  margin-top: 30px;
  text-align: center;
  font-weight: bold;
}

img.blue-logo{
  display: block;
  margin: auto;
  margin-top: 150px;
}

div#join-meeting-modal{
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: white;
  display: none;
}

.scale-in-center {
	-webkit-animation: scale-in-center 0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: scale-in-center 0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}


div.close-modal{
  width: 40px;
  height: 40px;
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
  text-align: center;
  line-height: 33px;
  border-radius: 20px;
  background-color: #E6E9F1;
  color: #8692A4;
  font-size: 30px;
  font-weight: bold;
}

div.close-modal:hover{
  background-color: #00A0FF;
  color: white;
}

div.modal-content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 500px;
}

div.modal-image-header{
  text-align: center;
  color: #000000;
  font-size: 24px;
  font-family: "Open Sans", sans-serif;
}

div.modal-image-header img{
  display: inline-block;
  margin-right: 10px;
}

div.modal-content span.meeting-label{
  display: block;
  margin-top: 60px;
  text-align: center;
  color: #000521;
  font-size: 36px;
}

div.modal-content input#meeting-id{
  margin-top: 30px;
  color: #000521;
  font-size: 36px;
  border: 1px solid #E4E4E7;
  border-radius: 2px;
  box-shadow: none;
  padding: 5px;
  height: 65px;
}

div.modal-content a.join-meeting-button{
  display: block;
  color: white;
  background-color: #00A0FF;
  text-align: center;
  color: white;
  font-family: "Open Sans", sans-serif;
  font-size: 24px;
  border-radius: 5px;
  cursor: pointer;
  height: 65px;
  line-height: 65px;
}

@media screen and (max-width: 39.9375em) {
  img.blue-logo{
    margin-top: 50px;
    margin-bottom: 50px;
  }
}

@media screen and (min-width: 40em) and (max-width: 51.813em) {
  div.card{
    height: 400px;
  }

  span.connect-description{
    height: 160px;
  }
}

@media screen and (min-width: 51.875em) and (max-width: 63.9375em){
  div.card{
    height: 360px;
  }

  span.connect-description{
    height: 120px;
  }
}
@media screen and (min-width: 64em) and (max-width: 74.9375em) {

}

/* ----------------------------------------------
 * Generated by Animista on 2018-3-27 14:55:46
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation scale-in-center
 * ----------------------------------------
 */
@-webkit-keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
