.form-bg{
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(128,128,128,0.4);
  display: none;
}

.form-bg form{
  max-width: 340px;
  width: 100%;
  padding: 20px 20px;
  background-color: rgba(174,140,111,1);
  border-radius: 5px;
  position: relative;
  z-index: 999999;
  font-family: 'Arial', 'Helvetica', sans-serif;
}

.form-bg .close-btn{
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  width: 25px;
  height: 25px;
}

.close-btn-items{
  position: relative;
  width: 100%;
  height: 100%;
}

.close-btn-circle{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid white;
  width: calc( 100% - 4px );
  height: calc( 100% - 4px );
}

.close-btn-bar{
  width: calc( 100% - 8px );
  height: 2px;
  position: absolute;
  left: 50%;
  top: 50%;
  background-color: white;
  border-radius: 5px;
  transform: translate(-50%, -50%) rotate(45deg);
}

.close-btn-items .close-btn-bar:nth-child(2){
  transform: translate(-50%, -50%) rotate(-45deg);
}



.form-title{
	width: 100%;
	text-align: center;
}

.form-title h2{
	color: white;
    text-transform: uppercase;
    font-weight: 500;
    margin: 0 0 10px 0;
    font-size: 18px;
}


.form-item{
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.form-item label{
  color: white;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
}

.form-item label span{
	color: red;
	font-size: 16px;
}


.form-item input, .form-item textarea{
  width: 100%;
  border: none;
  border-radius: 2px;
  min-height: 20px;
}

.form-item textarea{
  min-height: 80px;
}

.form-item.recaptcha{
  text-align: center;
  justify-content: center;
}

#g-recaptcha{

}

.form-item-submit{
  text-align: center;
}

.form-item-submit input{
  background-color: #776454;
  border: none;
  padding: 10px 40px;
  border-radius: 5px;
  color: white;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: all .4s;
}

.form-item-submit input:hover{
  background-color: #ffc71c;
  color: #603800;
  transition: all .4s;
}
