/* SMART FORMS */
/* @form header 
----------------------------------- */
.smart-forms .header-red {	
    background-color:#ad182e;
    border-top:1px solid #ad182e;  
    border-bottom:5px solid #c44133;
}

.smart-forms .header-lite{ border-top-color:#ad182e; }
.smart-forms .header-lite:before{ background-color:#ad182e;   }
.smart-forms .header-red h4{ color:#fff; }

/* @form tagline 
-------------------------------------- */
.smart-forms .tagline span{ color:#ad182e; }
.smart-forms .smart-link{ color:#ad182e; }

/* @prevent user selection for usability purposes
----------------------------------------------------- */
.smart-forms .radio,
.smart-forms .button,  
.smart-forms .checkbox,
.smart-forms .switch > label{
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

/* @radio + checkbox option elements 
----------------------------------------------------- */
.smart-forms .option {
    position: relative;	
    padding-right:15px;    
    display: inline-block;
    vertical-align: middle;
}

.smart-forms .option > input {
    position: absolute;
    height: inherit;
    width: inherit;
    opacity: 0;
    left: 0;
}
.smart-forms .checkbox, 
.smart-forms .radio { 
    position:relative;
    margin-right:10px;
    background: white;
    display: inline-block;
    border: 3px solid #B5C1C7;
    margin-bottom:0;
    margin-top:0;		
    height: 21px;
    width: 21px;
    top:5px;
    cursor: pointer;
}

.smart-forms .checkbox:before, 
.smart-forms .radio:before {
    content: '';
    display: none;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    -o-box-sizing: content-box;
    box-sizing: content-box;
    padding: 0;
    margin: 0;
}


.smart-forms input:checked + .checkbox:before, 
.smart-forms input:checked + .radio:before {
    display: block;
}

.smart-forms .checkbox:before {
    position: absolute;
    top: 4px;
    left: 3px;
    width: 6px;
    height: 3px;
    border: solid #1abc9c;
    border-width: 0 0 3px 3px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.smart-forms input:checked + .checkbox, 
.smart-forms input:checked + .radio{ border: 3px solid #1abc9c; }
.smart-forms .radio { 
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px; 
    -o-border-radius: 20px; 
    border-radius: 20px;
}
.smart-forms .radio:before {
    margin: 4px;
    width: 7px;
    height: 7px;
    background: #1abc9c;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px; 
    -o-border-radius: 10px; 
    border-radius: 10px;
}


/* @radio + checkbox :hover state 
-------------------------------------------------- */
.smart-forms input:hover + .checkbox, 
.smart-forms input:hover + .radio{
    border-color: #c7c7c7;
}

/* @radio + checkbox :focus state 
--------------------------------------------------- */
.smart-forms input:focus + .checkbox, 
.smart-forms input:focus + .radio{
    border-color: #c7c7c7;
}

.smart-forms input:focus + .radio:before{ background: #1abc9c; }
.smart-forms input:focus + .checkbox:before{ border-color: #1abc9c; }


/* @hover | focus  
---------------------------------------- */
.smart-forms .gui-input:hover,
.smart-forms .gui-textarea:hover,
.smart-forms .select > select:hover,
.smart-forms .select-multiple select:hover, 
.smart-forms .gui-input:hover ~ .input-hint,
.smart-forms .file .gui-file:hover + .gui-input,
.smart-forms .gui-textarea:hover ~ .input-hint{ border-color: #ff9e19; }
.smart-forms .gui-input:focus,
.smart-forms .gui-textarea:focus,
.smart-forms .select > select:focus,
.smart-forms .select-multiple select:focus{ border-color: #ff9e19; background-color: #edeae8; color: #484b4f; box-shadow: 0px 0px 3px #c8cacc inset; }
.smart-forms .gui-textarea:focus{  height: 120px; }
.smart-forms .select > select:focus { z-index:10; z-index:20\9; }
.smart-forms .gui-input:focus ~ .field-icon i,
.smart-forms .gui-textarea:focus ~ .field-icon i{ color:#ad182e; }
.smart-forms .select-multiple select:focus, 
.smart-forms .gui-input:focus ~ .input-hint,
.smart-forms .gui-textarea:focus ~ .input-hint, 
.smart-forms .file .gui-file:focus + .gui-input{ border-color: #ad182e; }
.smart-forms .select > select:focus + .arrow{ color:#ad182e; }

/* @star rating widget 
----------------------------------------------------- */
.smart-forms .rating:hover .rating-star:hover,
.smart-forms .rating:hover .rating-star:hover ~ .rating-star,
.smart-forms .rating-input:checked ~ .rating-star { color: #ad182e;	}
.smart-forms .rating-star, 
.smart-forms .rating:hover .rating-star {	color: #B5C1C7;	 }

/* @check + radio 
------------------------------------------------------ */
.smart-forms .option-red input:hover + .checkbox,  
.smart-forms .option-red input:hover + .radio{ border-color: #ad182e; }
.smart-forms .option-red input:checked + .checkbox, 
.smart-forms .option-red input:focus + .checkbox, 
.smart-forms .option-red input:checked + .radio, 
.smart-forms .option-red input:focus + .radio{ border-color: #ad182e; }
.smart-forms .option-red input:checked + .radio:before, 
.smart-forms .option-red input:focus + .radio:before{  background: #ad182e; }
.smart-forms .option-red input:checked + .checkbox:before, 
.smart-forms .option-red input:focus + .checkbox:before{ border-color: #ad182e; }

/* @toggle-switch  
------------------------------------------------------ */
.smart-forms .switch-red > input:checked + .switch-label { background: #ad182e; border-color: #ad182e; }
.smart-forms .switch-red > input:checked + .switch-label:after { color:#ad182e; }
.smart-forms .switch-red > input:checked:focus + .switch-label { background:  #c44133; border-color:  #c44133; }

/* @button 
------------------------------------------------------ */
.smart-forms .btn-red { background-color: #ad182e; }
.smart-forms .btn-red:hover, 
.smart-forms .btn-red:focus { background-color: #ad182e; }
.smart-forms .btn-red:active{ background-color: #c44133; }
.smart-forms .btn-red, 
.smart-forms .btn-red:hover, 
.smart-forms .btn-red:focus,
.smart-forms .btn-red:active{ color: #fff; text-shadow: 0 1px rgba(0, 0, 0, 0.08); }

/* @datepicker overides 
--------------------------------------------------------- */
.ui-datepicker { border:5px solid #ad182e; }
.ui-datepicker:before{
	border-color:transparent transparent #ad182e transparent; 
	border-color:rgba(255,255,255,0) rgba(255,255,255,0) #ad182e rgba(255,255,255,0); 
}

.ui-timepicker-div .ui-widget-header,
.ui-datepicker .ui-datepicker-header { background:#ad182e; }
.ui-datepicker-today a, 
.ui-datepicker-today a:hover, 
.ui-datepicker .ui-state-highlight { background:#ad182e!important; }

/* @price-box 
--------------------------------------------------------- */
.smart-forms .theme-red .selected-box h4{ color:#ad182e; }
.smart-forms .ribbon-inner{ background:#ad182e; }
.smart-forms .ribbon-inner:before,
.smart-forms .ribbon-inner:after{ border-top-color:#c44133;  }



.smart-forms .select, .smart-forms .gui-input, .smart-forms .gui-textarea, .smart-forms .select > select, .smart-forms .select-multiple select {
    border: 1px solid #c7c7c7;
    background: #edeae8;
}
.smart-forms .button, .smart-forms .tooltip, .smart-forms .checkbox, .smart-forms .gui-input, .smart-forms .notification, .smart-forms .gui-textarea, .smart-forms .select > select, .smart-forms .select-multiple select, .smart-forms input.button[type="button"], .smart-forms input.button[type="submit"], .smart-forms input.gui-input[type="search"] {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -o-border-radius: 0px;
    border-radius: 0px;
}

.smart-forms, .smart-forms label, .smart-forms input, .smart-forms button, .smart-forms select, .smart-forms textarea {
    font-size: 13px;
    line-height: 18px;
    font-family: 'Open Sans', sans-serif;
    margin: 0px 0px 0px 0px;
    font-weight: 400;
    color: #626262;
    letter-spacing: 0px;
}
    .smart-forms label{
        font-size: 13px;
        line-height: 22px;
        margin-top: 5px;
        margin-bottom: 0px;
        font-weight: 700;
        color: #626262;
        text-transform: uppercase;
        text-align: left;
        float: left;
    }

.smart-forms .state-error{
    position: relative;
    display: inline-block;
    font-size: 11px;
    color: #ad182e;
    margin-bottom: 0px
}

.smart-forms .refresh-captcha {
    position: absolute;
    background: #ff9e19;
    border: 2px solid #ca7a0d;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -o-border-radius: 30px;
    border-radius: 30px;
    right: -15px;
    height: 32px;
    width: 32px;
    top: 5px;
    z-index: 1000;
}
    .smart-forms .refresh-captcha i {
        line-height: 25px;
        font-size: 17px;
        color: #fff;
        left: 23%;
    }
    
.smart-forms .section {
    margin-bottom: 10px;
}




.smart-forms .btn-primary {
    border-radius: 0;
    font-weight: bold;
    margin-top: 0px;
}

.smart-forms .btn-primary {
    background-color: #F6F2F1;
    border: 1px solid #272C32;
    color: #272C32;
}
    .smart-forms .btn-primary:active,
    .smart-forms .btn-primary:focus,
    .smart-forms .btn-primary:hover {
        border: 1px solid #FF9E19;
        background-color: #FF9E19;
        color: #F6F2F1;
    }