/*
 *
 * Main stylesheet for Switchery.
 * http://abpetkov.github.io/switchery/
 *
 */

.switchery {
background-color: #fff;
border: 1px solid #dfdfdf;
border-radius: 20px;
cursor: pointer;
display: inline-block;
height: 30px;
position: relative;
vertical-align: middle;
width: 50px;
}
.switchery > small {
background: #fff;
border-radius: 100%;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
height: 30px;
position: absolute;
top: 0;
width: 30px;
}

.callme-form {
	width: 50%;
	margin-left: auto;
	margin-right: auto;
}

.th_form_control{   
	display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}


.th_style_input{    
	margin-bottom: 15px;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.th_input_code{
	width: 15%;
}

.th_input_numer{
	width: 30%;
}

.th_style_button{
    cursor: auto;
    padding: 10px 40px;
	background-color: #2fa7db;
    border-radius: 31px;
    color: #fff;
    text-decoration: none;
	border-color: #2fa7db;
	font-family: Roboto;	
    border-width: 0px;
	font-size: 18px;
}

.th_style_alert_danger {
	padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
	color: #721c24;
	background-color: #f8d7da;
	border-color: #f5c6cb;
}
	
.th_style_alert_success {
	
	padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
	color: #155724;
	background-color: #d4edda;
	border-color: #c3e6cb;
}
.th_style_th_close {
	float: right;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);
    opacity: .2;
}    

.invalid {
 
border: 1px solid red;
 
}

.valid {
 
border: 1px solid green;
 
}

.th_style_error_danger {
	padding: 5px;
	margin-top: 10px;
    margin-bottom: 10px;
    border: 1px solid transparent;
    border-radius: 4px;
	color: #721c24;
	background-color: #f8d7da;
	border-color: #f5c6cb;
    font-size: 15px;
}

@media (max-width: 990px){
	.callme-form {
		width: 100%;
	}
	.th_input_code{
		width: 28%;
	}

	.th_input_numer{
		width: 40%;
	}
}