/* Variables */
/* * {
  box-sizing: border-box;
}
 */
.body {
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: center;
  height: 100vh;
  width: 100vw;
}

.admin-page-form{
  width: 100px;
  min-width: 500px;
  align-self: center;
  box-shadow: 0px 0px 0px 0.5px rgba(50, 50, 93, 0.1),
    0px 2px 5px 0px rgba(50, 50, 93, 0.1), 0px 1px 1.5px 0px rgba(0, 0, 0, 0.07);
  border-radius: 7px;
  padding: 40px 40px 0px 40px;
}

/* Solid border */
hr.admin-form-divider-solid {
  border-top: 2px solid #999999;
  width: 100%;
}
.admin-page-form-customer{
	display: flex;
    flex-direction: column;
}

.admin-page-summery-title{
	flex: 0 1 auto;  
	padding-bottom: 20px;
}

.admin-stripe-title{
	padding-bottom:15px;
}

.admin-stripe-title > label > a{
	color:#000000; 
	font-weight: bold;
	text-decoration: underline;
}

.admin-stripe-title > label > i{
	color:#006D89; 
}


.admin-term-title{
	padding-bottom:15px;
}

.admin-term-title > label > input{
	width:15px;
}

.admin-term-title > label > a{
	color:#FF0000; 
	text-decoration: underline;
}

.admin-page-summery-detail{
	flex: 0 1 auto; 
}

#admin-form {	
	flex: 0 1 auto;  
	height: 570px;
}

.admin-page-text{
	font-size: 12px!important;
    margin-top: 5px;
    font-weight: 500!important;
    font-family: sp_akkurat_normal_font;
    text-align: center;
    color: #1A1A1A;
    letter-spacing: 0px;
	
}

.admin-page-form-customer-state-zip{
	display: -ms-flexbox; /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap; /* IE10 */
    flex-wrap: wrap;
}

.admin-page-form-customer-state{
	flex: 50%;
}
.hidden {
  display: none;
}

#admin-message {
  color: rgb(105, 115, 134);
  text-align: center;
  height: 120px;
  padding-top: 15px;
}

#admin-element {
  margin-bottom: 24px;
}

/* Buttons and links */
.admin-button {
  background: #006D89;
  font-family: sp_akkurat_normal_font;
  color: #ffffff;
  border-radius: 4px;
  border: 0;
  height: 42px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0px 4px 5.5px 0px rgba(0, 0, 0, 0.07);
  
}
.submit-button{
	width: 100%;
}
.go-back-button{
	width: 112px;
	height: 32px;
}
.admin-submit-button:hover {
  filter: contrast(115%);
}
.admin-submit-button:disabled {
  opacity: 0.5;
  cursor: default;
}

button:disabled,
button[disabled]{
	background : #ccc;
}
/* spinner/processing state, errors */
.spinner,
.spinner:before,
.spinner:after {
  border-radius: 50%;
}
.spinner {
  color: #ffffff;
  font-size: 22px;
  text-indent: -99999px;
  margin: 0px auto;
  position: relative;
  width: 20px;
  height: 20px;
  box-shadow: inset 0 0 0 2px;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
.spinner:before,
.spinner:after {
  position: absolute;
  content: "";
}
.spinner:before {
  width: 10.4px;
  height: 20.4px;
  background: #5469d4;
  border-radius: 20.4px 0 0 20.4px;
  top: -0.2px;
  left: -0.2px;
  -webkit-transform-origin: 10.4px 10.2px;
  transform-origin: 10.4px 10.2px;
  -webkit-animation: loading 2s infinite ease 1.5s;
  animation: loading 2s infinite ease 1.5s;
}

.admin-summery-customer-info{
    display: flex;
    flex-direction: column; 
    padding-top: 40px;
}

.dealer-info-form-row{
	display: flex;
	width: 500px;
	height: 42px;
	text-align: left;
	letter-spacing: 0px;
	opacity: 1; 

}

 .admin-dealer-info-form-input{
	height: 32px;
    width: 100%;
    margin-left: 8px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 1px 2px #C1C5CA99;
    border: 1px solid #EEEEEE;
    border-radius: 2px;
    opacity: 1;
	margin-left: 8px;
} 

.dealer-info-form-label {
	width: 70px;
	font-weight: 500!important;
	text-align: left;
	padding-top: 7.5px;
}

.admin-form-error-message{
	color: #D6002A;
    font-size: 11px;
    display: flex;
    margin-left: 68px;
}

.admin-form-state-error-message{
	color: #D6002A;
    font-size: 11px;
    display: flex;
    margin-left: 70px;
    padding-top: 5px;
}


@-webkit-keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@media only screen and (max-width: 600px) {
  form {
    width: 80vw;
    min-width: initial;
  }
}