/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Feb 10, 2017, 11:27:36 AM
    Author     : antho
*/


.slide  {
    display: none;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="number"] {
    -moz-appearance: textfield;
}

input[type="text"],input[type="tel"],input[type="number"],select,textArea{
    border: 2px solid #C0C0C0!Important;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    font-size: 21px!Important;
    letter-spacing: .1em!Important;
    margin: 5px 0px!Important;
    padding: 8px!Important;
}


.form-control {
    border: 2px solid #C0C0C0!Important;
}

.bttn{
    font-family: 'Roboto', sans-serif;
    border-radius: 15px;
    -moz-border-radius:  15px;
    -webkit-border-radius: 15px;
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 700;
    background-color: #ea7e00;
    margin: 5px auto;
    padding: 10px;
    cursor: pointer;
}


.bttn_next{
    font-family: 'Roboto', sans-serif;
    border-radius: 15px;
    -moz-border-radius:  15px;
    -webkit-border-radius: 15px;
    color: #FFFFFF;
    font-size: 20px;
    letter-spacing: .1em;
    font-weight: 600;
    background-color: #ea7e00;
    margin: 5px auto;
    padding: 10px;
    cursor: pointer;
}

.bttn_nav{
    display: inline-block;
    font-family: 'Roboto', sans-serif;
    border-radius: 15px;
    -moz-border-radius:  15px;
    -webkit-border-radius: 15px;
    color: #FFFFFF;
    font-size: 16px;
    letter-spacing: .1em;
    font-weight: 600;
    background-color: #444444;
    margin: 15px auto;
    padding: 7px 14px;
    cursor: pointer;
}



label,.inputWrapper{
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

label > input{ /* HIDE RADIO */
    visibility: hidden; /* Makes input not-clickable */
    position: absolute; /* Remove input from document flow */
}
label > input + img{ /* IMAGE STYLES */
    cursor:pointer;
    border:2px solid transparent;
}
label > input:checked + div{ /* (RADIO CHECKED) IMAGE STYLES */
    border:3px solid #C0C0C0;
    color: #606060;
    background-color: #D4D4D4;
}







@media screen and (max-width: 650px) {
    input[type="text"]{
        width: 100%;
    }

    input[type="tel"]{
        width: 100%;
    }
    select,textArea{
        width: 100%;
    }
    input[type="number"]{
        width: 100%;
    }

    .bttn{
        font-size: 20px;
        padding: 10px 8px;
        width: 100%;
        font-weight: 700;
    }
    .bttn_next{
        width: 100%;
    }
}
