.shop-form {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #242424;
  font-weight: 500;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.form-content {
  position: relative;
  z-index: 2;
  background: #e9e9e9;
  padding: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  min-width: 330px;
  max-width: 330px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 15px #3f3f3f;
  box-shadow: 0 0 15px #3f3f3f;
}

.main-form-content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  widows: 100%;
}

.form-content h4 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 600;
}

.form-content .phone {
  margin: 0 0 10px;
}

.form-content .or-form {
  text-transform: uppercase;
  font-size: 14px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.form-content .or-form::before,
.form-content .or-form::after {
  content: "";
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 2px;
  width: 100%;
  background: #d2d2d2;
  margin: 0 10px;
}

.form-content .text {
  margin: 0 0 15px;
  font-size: 14px;
}

.main-form-content > div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 20px;
}

.main-form-content > div > label {
  margin-bottom: 10px;
  font-size: 14px;
}

.main-form-content > div > input,
.main-form-content > div > textarea {
  padding: 10px 15px;
  border-radius: 20px;
  border: 1px solid transparent;
  -webkit-box-shadow: 0 0 10px #c7c7c7;
  box-shadow: 0 0 10px #c7c7c7;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  resize: none;
}

.main-form-content > div > input:focus,
.main-form-content > div > textarea:focus {
  outline: none;
}

.form-content .btn-send-form {
  margin: 5px 0 0;
  padding: 10px 40px;
  background: #252525;
  color: #ffffff;
  border-radius: 20px;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  cursor: pointer;
}

.form-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #242424;
  opacity: 0.8;
  z-index: 1;
}

.form-content .main-form-content .error {
  border: 1px solid red !important;
}

