/* BEGIN DIVI STYLES */
.et_pb_button {
padding-top: 14px!important;
padding-right: 58px!important;
padding-bottom: 14px!important;
padding-left: 40px!important;
color: #ffffff!important;
}


    .softbee-admin-form-holder .input,
    .softbee-admin-form-holder .input[type="checkbox"] + label i,
    .softbee-admin-form-holder .input[type="radio"] + label i {
    border-radius: 5px 5px 5px 5px;
    overflow: hidden;
    border-width: 1px!important;
    border-color: rgba(51,51,51,0.19)!important;
    }

/* END DIVI STYLES */
    
    
/* BEGIN LOADER */
    
.softbee-admin-loader {
text-indent: -9999em;
margin: 0 auto;
border-top: 2px solid rgba(0,0,0,0.2);
border-right: 2px solid rgba(0,0,0,0.2);
border-bottom: 2px solid rgba(0,0,0,0.2);
border-left: 2px solid #000;
-webkit-animation: softbee-lead-tool-loader 0.8s infinite linear;
animation: softbee-lead-tool-loader 0.8s infinite linear;
border-radius: 50%;
width: 40px;
height: 40px;
border-color: #ebebeb!important;
border-left-color: #000000!important;
}

/*
.softbee-lead-tool .softbee-lead-tool-form .softbee-lead-tool-form-quick-form .form-input-holder .softbee-lead-tool-loader {
position: absolute;
top: 30px;
right: -45px;
float: right;
}*/

@-webkit-keyframes softbee-admin-loader {
    0% 
    {
       -webkit-transform:rotate(0deg);
       transform:rotate(0deg)
    } 
    
    100%
    {
    -webkit-transform:rotate(360deg);transform:rotate(360deg)
    }
}

@keyframes softbee-softbee-admin-loader {
    0%
    {
       -webkit-transform:rotate(0deg);transform:rotate(0deg)
    } 
    
    100%
    {
        -webkit-transform:rotate(360deg);transform:rotate(360deg)
    }
}
    
/* END LOADER */

/* BEGIN ENFOLD MESSAGES */

.avia_message_box {
text-align: center;
position: relative;
border-color: #e1e1e1;
background-color: #f8f8f8;
clear: both;
margin: 30px 0;
}

.avia_message_box.avia-size-large {
padding: 35px;
}

	.avia_message_box.avia-color-green, .avia_message_box.avia-color-green a {
	background-color: #E0F1B5;
	border-color: #8BAF5B;
	text-shadow: 0 1px 0 rgba(255,255,255,0.7);
	color: #4F5F39;
	}
	
	.avia_message_box.avia-color-red, .avia_message_box.avia-color-red a {
    background-color: #FFF8F4;
    border-color: #CDA18F;
    text-shadow: 0 1px 0 rgba(255,255,255,0.7);
    color: #AF2C20;
	}
	
	.avia_message_box.avia-color-orange, .avia_message_box.avia-color-orange a {
    background-color: #FFFDF3;
    border-color: #E6BF4A;
    text-shadow: 0 1px 0 rgba(255,255,255,0.7);
    color: #C96D11;
	}
	
	.avia_message_box_content {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
	}
	
	.avia_message_box_icon {
    position: relative;
    left: -0.5em;
    font-size: 1.3em;
	}
	
	.avia_message_box_content p {
    display: inline;
	}

/* END ENFOLD MESSAGES */
	
/* BEGIN ENFOLD FORM */
	
.softbee-admin-form label {
font-weight: normal!important;
} 
	
.avia_ajax_form label, 
.modified_width:before {
display: block;
visibility: visible;
position: relative;
font-weight: 600;
}

	.form-input-holder span {
	font-size: 13px;
	color: #fff;
	}
	
	#top .avia_ajax_form input[type="checkbox"] {
	float: left;
	margin-right: 8px;
	top: 2px;
	position: relative;
	}
	#top input[type="checkbox"] {
	display: inline;
	}
	
.avia_ajax_form .form_element_half {
width: 49%;
margin-left: 2%!important;
}
	
.avia_ajax_form .first_form {
clear: both;
margin-left: 0!important;
}

.softbee-admin-form input.avia-button {
min-width: auto!important;
}

.white-popup-block {
background: #FFF;
padding: 20px 30px;
text-align: left;
max-width: 450px;
margin: 40px auto;
position: relative;
overflow: hidden;
}

    /* BEGIN CUSTOM STYLING CHECKBOXES / RADIO BOXES */
    .form_element_radio_holder,
    .form_element_checkbox_holder {
    display: block;
    position: relative;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    }
    
       .form_element_radio_holder input,
       .form_element_checkbox_holder input {
       position: absolute!important;
       opacity: 0;
       cursor: pointer;
       height: 0;
       width: 0;
       }
       
       .form_element_radio_holder label,
       .form_element_checkbox_holder label {
       padding-left: 35px;
       }
       
        .form_element_radio_holder label:hover,
        .form_element_checkbox_holder label:hover {
        cursor: pointer;
        }

       .form_element_radio_holder .checkmark,
       .form_element_checkbox_holder .checkmark {
       position: absolute;
       top: 0;
       left: 0;
       height: 25px;
       width: 25px;
       background-color: #eee;
       }
       
        /* On mouse-over, add a grey background color */
        .form_element_radio_holder label:hover input ~ .checkmark,
        .form_element_checkbox_holder label:hover input ~ .checkmark {
        background-color: #ccc;
        }

            /* Create the checkmark/indicator (hidden when not checked) */
            .form_element_radio_holder .checkmark:after,
            .form_element_checkbox_holder .checkmark:after {
            content: "";
            position: absolute;
            display: none;
            }
            
            /* When the checkbox is checked, add a blue background */
            .form_element_radio_holder input:checked ~ .checkmark,
            .form_element_checkbox_holder input:checked ~ .checkmark {
            background-color: #1ec579!important;
            }
            
            /* Show the checkmark when checked */
            .form_element_radio_holder input:checked ~ .checkmark:after,
            .form_element_checkbox_holder input:checked ~ .checkmark:after {
            display: block;
            }
            
            /* Style the checkmark/indicator */
            .form_element_radio_holder .checkmark:after,
            .form_element_checkbox_holder .checkmark:after {
            left: 9px;
            top: 5px;
            width: 5px;
            height: 10px;
            border: solid white;
            border-width: 0 3px 3px 0;
            -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            transform: rotate(45deg);
            }
       /* END CUSTOM STYLING CHECKBOXES / RADIO BOXES */
            
.softbee-admin-form input[type="text"],
.softbee-admin-form input[type="email"] {
height: 60px;
line-height: 40px!important;
padding-top: 20px!important;
padding-left: 14px!important;
margin-bottom: 0!important;
}
            
.softbee-admin-form .form_element {
position: relative;
margin: 10px 0;
}

	.softbee-admin-form .form_element.form_element_half {
	display: inline-block;
	float:none!important;
	margin: 0;
	}

    .softbee-admin-form .label-float {
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 14px;
    transition: .2s ease all;
    line-height: 60px;
    font-weight: 400;
    color: #b1b2b6;
    margin-bottom: 0!important;
    }
    
        /* DIVI */
        .et_pb_contact .softbee-admin-form .label-float {
        left: 27px;
        }
        
        .et_pb_contact .softbee-admin-form .input {
        background-color: rgba(0,0,0,0)!important;
        }
    
        .softbee-admin-form .has-value ~ .label-float, 
        .softbee-admin-form input:focus ~ .label-float, 
        .softbee-admin-form textarea:focus ~ .label-float {
        bottom: 10px;
        font-size: .8rem!important;
        opacity: 1;
        top: 2px;
        line-height: 20px;
        }

@media only screen and (max-width: 1024px) {
	
	.softbee-admin-form input {
    padding: 15px 10px 13px!important;
	min-width: 65px!important;
	}
	
    .softbee-admin-form .softbee-admin-form-quick-form .form-input-holder {
    flex: 0 0 25%;
    max-width: 25%;
    }

}

@media only screen and (max-width: 479px) {
.responsive .avia_ajax_form .form_element {
    width: 100%;
    clear: both;
    margin-right: 0;
    margin-left: 0;
    float: none;
}

	.softbee-admin-form input {
    padding: 15px 5px 13px!important;
	min-width: 60px!important;
	}
	
	

}
	
/* END ENFOLD FORM */	

