@import "https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}







.blur {
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px);
}

.flex {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.modalcontainer {
  display: none;
  position: absolute;
  top: 50px;
  bottom: 0;
  left: 0;
  right: 0;
  
}
.modalcontainer.active {
  display: block;
}

.modal {
  display: none;
  position: relative;
  width: 600px;
  height: 330px;
  background-color: #F7C331;
}
.modal.active {
  display: block;
}
.modal .content {
  padding: 30px;
}
.modal .close {
  font-family: "Source Sans Pro", sans-serif;
  cursor: pointer;
  color: #FFF;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  position: absolute;
  right: 0;
  color: #0040ff;
  font-size: 40px;
}
.modal .close span {
  transform: rotate(45deg);
  display: block;
}
.modal .buttons {
  width: 550px;
  position: absolute;
  bottom: 0;
  height: 50px;
  background-color: #FFF;
}
.modal .buttons a {
  width: 50%;
  height: 50px;
  line-height: 50px;
  text-align: center;
  float: left;
  background-color: #EEE;
  color: #4d5c6e;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: bold;
}
.modal .buttons a:hover {
  background-color: #e1e1e1;
}
.modal .buttons a:nth-of-type(2) {
  float: right;
 color: #FFF;
  background-color: #F7882F;
}
.modal .buttons a:nth-of-type(2):hover {
  background-color: #0040ff;
}

@media (max-width: 992px) {
 
 .modal .buttons{
     width: 300px;
 }   
    
}


