.intl-tel-input{
  width:100%;
  box-sizing: border-box;
}

.flp-clearfix{
  zoom:1;
  clear: both;
}

.flp-infusion-form .flp_button{
	cursor: pointer;
}

.flp-infusion-form .infusion-radio{
	padding: 10px;
}

.flp-infusion-form input[type="text"]{
	margin-top: 0px;
}

.flp-form-container {
	box-sizing: border-box;
	width: 100%;
}

.flp_input,
.flp_field,
.flp_button,
.flp-infusion-form{
	outline: none;
	display: inline-block;
	box-sizing: border-box;
}

.flp-no-error{
	display: none;
}

.flp-loader {
  	display:inline-block;
  	border: 4px solid #44d7ff;
  	border-radius: 100%;
  	border-top: 4px solid green;
  	width: 20px;
  	height: 20px;
  	-webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
    vertical-align: text-bottom;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


.flp-wait-message {
  border: solid 3px green;
  display: inline-block;
  width: 280px;
  padding: 10px;
  font-size: 18px;
  font-weight: 500;
  color:black;
  box-sizing: border-box;
  background: #d5ffa7;
}

.flp-wait-text-container{
  display: inline-block;
  margin: 0 0 0 15px;
}

/* The container */
.flp_radio_label_container {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.flp_radio_label_container input {
    position: absolute;
    opacity: 0;
}

.flp_checkmark {
    position: absolute;
    top: 0;
    left: 0;
    border: solid;
    border-radius: 50%;
}
.flp_checkbox {
    position: absolute;
    top: 0;
    left: 0;
    border: solid;
}

.flp_checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.flp_checkbox:after {
    content: "";
    position: absolute;
    display: none;
}

.flp_radio_label_container input:checked ~ .flp_checkmark:after,
.flp_radio_label_container input:checked ~ .flp_checkbox:after {
    display: block;
}

.flp_radio_label_container .flp_checkmark:after {
  top: 30%;
  left: 30%;
  width: 40%;
  height: 40%;
  border-radius: 50%;
}
.flp_radio_label_container .flp_checkbox:after {
  left: 36%;
  top: 15%;
  width: 20%;
  height: 45%;
  border: solid;
  background: none;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}