/* 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: transparent;
    display: inline-block;
    border: 3px solid #c1e3fb;
    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 #c1e3fb;
    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 #FFF; }
.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: transparent;
  	-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: #FFF;
}

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

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


/* @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: #FFF; border: 2px solid #FFF; background: transparent; color: #FFF; box-shadow: 0px 0px 0px #c8cacc inset; }

.smart-forms .gui-input:focus,
.smart-forms .gui-textarea:focus,
.smart-forms .select > select:focus,
.smart-forms .select-multiple select:focus{ border-color: #FFF; border: 2px solid #FFF; background: transparent; color: #FFF; box-shadow: 0px 0px 0px #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:#FFF; }

.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: #FFF; }
.smart-forms .select > select:focus + .arrow{ color:#FFF; }

/* @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: #FFF;	}
.smart-forms .rating-star, 
.smart-forms .rating:hover .rating-star {	color: #FFF;	 }

/* @check + radio 
------------------------------------------------------ */
.smart-forms .option-red input:hover + .checkbox,  
.smart-forms .option-red input:hover + .radio{ border-color: #FFF; }
.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: #FFF; }
.smart-forms .option-red input:checked + .radio:before, 
.smart-forms .option-red input:focus + .radio:before{  background: transparent; }
.smart-forms .option-red input:checked + .checkbox:before, 
.smart-forms .option-red input:focus + .checkbox:before{ border-color: #FFF; }

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

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

/* @datepicker overides 
--------------------------------------------------------- */
.ui-datepicker { border:5px solid #FFF; }
.ui-datepicker:before{
	border-color:transparent transparent #FFF 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:#FFF; }
.ui-datepicker-today a, 
.ui-datepicker-today a:hover, 
.ui-datepicker .ui-state-highlight { background:#FFF!important; }

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



.smart-forms .select, .smart-forms .gui-input, .smart-forms .gui-textarea, .smart-forms .select > select, .smart-forms .select-multiple select {
    border: 2px solid #FFF;
}
.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: 2px;
    -moz-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
}

.smart-forms, .smart-forms label, .smart-forms input, .smart-forms button, .smart-forms select, .smart-forms textarea {
    font-size: 14px;
    font-family: 'Fira Sans', sans-serif;
    color: #FFF;
}
.smart-forms .state-error{
    position: relative;
    display: inline-block;
    font-size: 12px;
    color: #ad182e;
    margin-bottom: 10px
}

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


.smart-forms input::-moz-placeholder,
.smart-forms textarea::-moz-placeholder,
.smart-forms input:hover::-moz-placeholder,
.smart-forms textarea:hover::-moz-placeholder,
.smart-forms input:focus::-moz-placeholder,
.smart-forms textarea:focus::-moz-placeholder,
.smart-forms input::-webkit-input-placeholder,
.smart-forms textarea::-webkit-input-placeholder,
.smart-forms input:hover::-webkit-input-placeholder,
.smart-forms textarea:hover::-webkit-input-placeholder,
.smart-forms input:focus::-webkit-input-placeholder,
.smart-forms textarea:focus::-webkit-input-placeholder,
.smart-forms input::-ms-input-placeholder,
.smart-forms textarea::-ms-input-placeholder,
.smart-forms input:hover::-ms-input-placeholder,
.smart-forms textarea:hover::-ms-input-placeholder,
.smart-forms input:focus::-ms-input-placeholder,
.smart-forms textarea:focus::-ms-input-placeholder{
    color: #ddedf9;
    opacity: 1;
} 
.smart-forms input::-webkit-input-placeholder {
    color: #ddedf9 !important;
    opacity: 1;
}
        
.smart-forms textarea,
.smart-forms input[type="text"] {
    background: #7bbeec;
    border: 2px solid #c1e3fb;
    border-radius: 2px;
    padding: 8px;
    color: #ddedf9;
    display: block;
    width: 100%;
    margin: 15px 0;
}
    .smart-forms textarea:hover,
    .smart-forms textarea:active,
    .smart-forms textarea:focus,
    .smart-forms input[type="text"]:hover,
    .smart-forms input[type="text"]:active,
    .smart-forms input[type="text"]:focus {
        background: #7bbeec;
        border: 2px solid #FFF;
        border-radius: 2px;
        padding: 8px;
        color: #FFF;
        display: block;
        width: 100%;
        margin: 15px 0;
    }

.smart-forms .btn {
    border: 2px solid #5B6E7F;
    border-radius: 0;
    background-color: #5a6e7f;
    color: #FFF;
    text-transform: uppercase;
    padding: 8px 30px;
    font-weight: bold;
}
    .smart-forms .btn:active,
    .smart-forms .btn:focus,
    .smart-forms .btn:hover {
        border: 2px solid #FFF;
        background-color: #FFF;
        color: #5a6e7f;
    }

footer#kontakt .smart-forms .form-footer {
    background: none;
}
