* {
  padding: 0;
  margin: 0;
}

.f-right {
  float: right;
}

.f-left {
  float: left;
}

.fox-popup-wrap {
  display: none;
  background-color: #2C3E50;
  position: fixed;
  z-index: 10000;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: auto;
}
.fox-popup-wrap h1 {
	color:#fff
}

.fox-close-btn {
  width: 40px;
  height: 40px;
  background-color:#E74C3C;
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 50%;
  cursor: pointer;
}
.fox-close-btn:hover {
  background-color: #555;
}
.fox-close-btn .bar {
  position: absolute;
  top: 45%;
  left: 25%;
  width: 50%;
  height: 4px;
  background: #fff;
}
.fox-close-btn .bar:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.fox-close-btn .bar:nth-child(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.fox-form-wrap {
  position: absolute;
  right: 10%;
  left: 10%;
}
.fox-form-wrap form {
  max-width: 900px;
  margin: auto;
}
.fox-form-wrap form p {
  color: white;
}
.fox-form-wrap form label {
  color: white;
}
.fox-form-wrap form .btn {
  padding: 10px;
}
.fox-form-wrap form .btn:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.fox-form-wrap p.info {
  font-size: 1.1rem;
  position: absolute;
  bottom: -110px;
  left: 0px;
  color: #fff;
}