﻿.fsx-gray {
    background-color: #e1e1e1;
}

.invalid-input {
    color: red;
    font-weight: bold;
    font-style: italic;
}

.loading {
    animation: blink 1s linear infinite;
    color: #45a049;
}
@keyframes blink {
    25%{
        opacity: .5;
    }
    50%{
        opacity:0;
    }
    75%{
        opacity: .5;
    }
}

#successBox{

}

#validationSummary{
    color: red;
}

input{
    padding: 4px;
    padding-left: 7px;
}

input[type=text] select {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type=number] select {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type=submit] {
    width: 100%;
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: #45a049;
}

.total-central {
    text-align: center;
    vertical-align: central;
    object-position: center;
}

.e-mail-main-validate {
    display: block;
    justify-content:space-between;
    margin-left: 45px;
    border-radius: 5px;
    background-color: #e1e1e1;
    padding: 10px;
    width: auto;
    max-width: 300px;
}

.mv-item {
    border-radius: 5px;
    margin-top: 5px;
    max-width: inherit;
}

.form-l {
    border-radius: 5px;
    background-color: #e1e1e1;
    padding: 10px;
    width: auto;
    max-width: 600px;
}

.rounded {
    border-radius: 5px;
}

.header {
    margin-top:20px;
    margin-left:75px;
}
.button-standard {
    width:100px;
    height:100px;
    display:block;
    border-radius: 5px;
    background-color: blue;
    color: whitesmoke;
    text-align: center;
    vertical-align: central;
    width: 70px;
    height: 30px;
}

.button-standard:active {
    background-color: lightgray;
    color: red;
}

.card-div {
    margin: 5px;
}
.text-field {
    margin: 5px;
    border-radius: 5px;
}
.street-field{
    width:450px;
}
.state-field{
    width:26px;
}
.phone{

}
.row {
    width: 500px;
    justify-content: space-between;
    display: inline-flex !important;
}

body, html {
    margin: 0;
    padding: 0;
    background-color: #F8F8FF !important;
    font-family: 'Roboto', sans-serif;
    font-size: 10pt;
}

input {
    padding: 15px 10px !important;
    border: 1px solid #999 !important;
    border-radius: 10px !important;
}

button {
    background-color: #0072CE;
    color: white;
    padding-top: 15px;
    padding-bottom: 15px;
    font-weight: bold;
    border-radius: 10px !important;
    border: none;
    width: 100%;    
}

button:disabled {
    background-color: #999999;
}

input, button {
    box-sizing: border-box; /* add this */
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.ccForm input {
    width: 100% !important;
}

.labelFix {
    position: relative;
    top: -3px;
}

select {
    padding: 15px 10px;
    border-radius: 10px !important;
    border: 1px solid #999 !important;
}