.popup {
  height: 100vh;
  width: 100%;
  display: block;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 500;
}
.popup h5{
  color: #fff;
}
.popup.dismiss {
  opacity: 0;
  visibility: hidden;
}
.popup .popup-panel {
  background: #f5c94c;
  max-width: 800px;
}
.popup .popup-panel .popup-header,
.popup .popup-panel .popover-content,
.popup .popup-panel .popup-footer {
  padding: 15px 50px;
  color: #f5f5f5;
}
.popup .popup-panel .popup-header {
  min-height: 50px;
  color: #f5f5f5;
  position: relative;
}
.popup .popup-panel .popup-header h3 {
  color: inherit;
  font-size: 2em;
}
.popup .popup-panel .popup-header i {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.2em;
}
.popup .popup-panel .popover-content {
  background: #f5f5f5;
  color: #292828;
  border-bottom: 2px solid #f5c94c;
}
.popup .popup-panel .popup-footer {
  width: 100%;
  float: right;
  background: #f5f5f5;
}
.popup .popup-panel .popup-button {
  display: inline-block;
  position: relative;
  padding: 8px 10px;
  cursor: pointer;
  color: #292828;
  text-transform: uppercase;
  font-size: 0.8em;
  text-align: center;
  border: 1px solid transparent;
  border-left: 1px solid #f5c94c;
  -webkit-transition: all 0.4s cubic-bezier(0.5, 0.24, 0, 1);
  transition: all 0.4s cubic-bezier(0.5, 0.24, 0, 1);
}
.popup .popup-panel .popup-button::before {
  content: '';
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: 1;
  width: 0%;
  height: 1px;
  background: #f5c94c;
  box-shadow: inset 0px 0px 0px #f5c94c;
  display: block;
  -webkit-transition: all 0.4s cubic-bezier(0.5, 0.24, 0, 1);
  transition: all 0.4s cubic-bezier(0.5, 0.24, 0, 1);
}
.popup .popup-panel .popup-button:hover::before {
  width: 100%;
}
.popup .popup-panel .popup-button::after {
  content: '';
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: 1;
  width: 0%;
  height: 1px;
  background: #f5c94c;
  -webkit-transition: all 0.4s cubic-bezier(0.5, 0.24, 0, 1);
  transition: all 0.4s cubic-bezier(0.5, 0.24, 0, 1);
}
.popup .popup-panel .popup-button:hover::after {
  width: 100%;
}
.popup .popup-panel .popup-button:hover {
  border-left: 1px solid #f5c94c;
  border-right: 1px solid #f5c94c;
}
.popup .close-popup {
  cursor: pointer;
}
/*# sourceMappingURL=custom.css.map */
