.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.popup-content {
  background-color: #fff;
  width: 780px;
  padding: 20px 20px 10px 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 5px;
  max-width: 90%;
  text-align: center;
}

.popup-content h2 {
  margin-top: 0;
}

.popup-content label {
  display: block;
  margin-left: 10px;
  text-align:left;
  margin-bottom: 0;
  font-size: 13px;
}

.popup-content input {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
}

.popup-content button {
  background-color: #11a093;
  color: white;
  padding: 1px 20px;
  border: none;
  cursor: pointer;
  border-radius: 40px;
  margin: 0 5px;
  width: 170px;
  font-family: "Exo 2", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  border:2px solid #fff;
  box-shadow: 0 5px 11px 0 #11a09394;
}

.popup-content button:hover {
  background-color: #077f74;
  box-shadow: none;
  border:2px solid #fff;
} 
.popup-content button:active {
  background-color: #000; 
} 

.national-form {
    margin: 40px 0px 20px;
}
.national-form h3 {
    font-size: 30px;
    padding-bottom: 10px;
    border-bottom: dashed 1px #b3b3b3;
    margin: 15px;
}
.national-form input {
    text-align:left;
    border-radius: 30px;
    border: 1px solid #e5e5e5;
    padding: 2px 20px;
    color: #ccc;
    font-size: 14px;
}
.national-form::placeholder {
    color: #ccc !important;
}

.national-form input:focus-visible{
    text-align:left;
    border-radius: 30px;
    border: 1px solid #e5e5e5;
    padding: 5px 15px;
    color: #ccc;
}

/*custom inpu file*/
.custom-file-input {
  color: transparent;

}
.custom-file-input::-webkit-file-upload-button {
  visibility: hidden;
}

.custom-file-input::before {
	content: "Upload File";
	color: #11a093;
	display: inline-block;
	background: #e5e5e5;
	padding: 2px 20px;
	outline: none;
	white-space: nowrap;
	-webkit-user-select: none;
	cursor: pointer;
	font-weight: 400;
	border-radius: 30px;
	outline: none;
	margin-left: -16px;
	font-size: 14px;
}
.custom-file-input:focus {
	outline: none !important;

}
.custom-file-input:active::before {
	  background: #11a093;
	    color: #e5e5e5;
}

input[type='file'] {
  color: rgba(0, 0, 0, 0)
}


 
.national-form select {
	font-size: 14px;
	font-weight: normal;
	max-width: 100%;
	padding: 2px 24px 2px 20px;
	border: 1px solid #ddd;
	border-radius: 20px;
	width: 100%;
 -webkit-appearance:none;
   -moz-appearance:none;
   -ms-appearance:none;
   appearance:none;
	margin-bottom: 10px;
}
.national-form select {
  background-image:
    linear-gradient(45deg, transparent 50%, gray 50%),
    linear-gradient(135deg, gray 50%, transparent 50%),
    radial-gradient(#ddd 70%, transparent 72%);
  background-position:
    calc(100% - 20px) calc(1em + 2px),
    calc(100% - 15px) calc(1em + 2px),
    calc(100% - .6em) .5em;
  background-size: 4px 4px,
    5px 5px,
    1.5em 1.5em;
  background-repeat: no-repeat;
}

.national-form select:focus {
  background-image:
    linear-gradient(45deg, white 50%, transparent 50%),
    linear-gradient(135deg, transparent 50%, white 50%),
    radial-gradient(gray 70%, transparent 72%);
  background-position:
    calc(100% - 15px) 1em,
    calc(100% - 20px) 1em,
    calc(100% - .6em) .5em;
  background-size:
   5px 5px,
    5px 5px,
    1.5em 1.5em;
  background-repeat: no-repeat; 
  outline: 0;
}
  

.national-form select:focus, .national-form input:focus {
    border: 1px solid #11a093 !important;
}
@media (max-width:767px){
    .popup-content button {
        width:auto;
        padding: 6px 15px;
        font-size: 15px;
    }
    
}


