/* Global */
body {
    font-size: 16px;
    line-height: 1.35;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
  
a {
    color: #922a2c;
}
  
a:hover, a:focus {
    color: #9f232a;
    text-decoration: underline;
}
  
/* Container */
.s_website_form.container-fluid.mt32 {
    width: 100%;
}

/* Container for centered IMG */
.img-container {
    text-align: center;
    display: block;
}


/* Text */
h1.text-center {
    padding: 6px 0;
    color: #303033;
    font-size: 3em;
    font-weight: 700;
    text-transform: uppercase;
}
  
h3, .h3 {
    margin-bottom: 20px;
}  

/* Form fields */
.form-group {
    margin-bottom: 20px;
}

input.form-control {
    outline: none;
    display: block;
    background: rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 50px;
    border-radius: 5px;
    box-sizing: border-box;
    padding: 12px 20px;
    color: rgba(0, 0, 0, 0.6);
    transition: 0.3s ease;
    font-size: 1.1em;
    border: 2px solid transparent;
}

input.form-checkbox {
    display: inline;
    margin-top: 20px;
    margin-left: 20px;
    transform: scale(2);
}

input:required {
    background: rgba(0, 0, 0, 0.2);
    color: black !important;
}

.form-control:focus {
    border-color: #9f232a;
    box-shadow: none;
    border: 2px solid #9f232a;
}

label.control-label {
    display: block;
    white-space: pre-wrap;
    /* margin: 0 0 6px; */
    color: rgba(0, 0, 0, 1);
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

label.control-checkbox {
    display: inline;
    white-space: pre-wrap;
    margin-top: 20px;
    /* margin: 0 0 6px; */
    color: rgba(0, 0, 0, 0.6);
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

span.help-block {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    padding: 0px 5px;
}

/* Date field */
input[type="date"].form-control, input[type="time"].form-control, input[type="datetime-local"].form-control, input[type="month"].form-control {
    line-height: 26px;
}

/* Button */
.btn.btn-primary {
    outline: none;
    background: #303033;
    width: 300px;
    border: 0;
    border-radius: 4px;
    padding: 12px 20px;
    color: #FFFFFF;
    font-family: inherit;
    font-size: inherit;
    font-weight: 500;
    line-height: inherit;
    text-transform: uppercase;
    cursor: pointer;
}
  
.btn.btn-primary:after {
    position: relative;
    content: '\25BA';
    padding: 0px 0px 0px 10px;
}

.btn.btn-secondary {
    outline: none;
    background: #303033;
    width: 300px;
    border: 0;
    border-radius: 4px;
    padding: 12px 20px;
    color: #FFFFFF;
    font-family: inherit;
    font-size: inherit;
    font-weight: 500;
    line-height: inherit;
    text-transform: uppercase;
    cursor: pointer;
}

.btn.btn-secondary::before {
    position: relative;
    content: '\25C0';
    padding: 0px 10px 0px 0px;
}
  
.btn.btn-primary:hover, .btn.btn-primary:active {
    color: #9f232a;
    background-color: #303033;
    border-color: #303033;
}

/* Button div */
.button_margin {
    margin-top: 20px;
    margin-bottom: 100px;
}

/* Wizard */
ul.wizard li {
    border: 1px solid #d4d4d4;
    border-right-width: 0;
    position: relative;
    float: left;
    padding: 0 10px 0 20px;
    margin: 0;
    line-height: 38px;
    background: white;
}

.text-primary {
    color: #9f232a;
    font-weight: 600;
}

ul.wizard li.text-primary {
    background: white;
}

.chevron {
    position: absolute;
    top: 0;
    right: -10px;
    z-index: 1;
    display: block;
    border: 20px solid transparent;
    border-right: 0;
    border-left: 10px solid #f8f8f8;
}

ul.wizard li.text-primary .chevron:before {
    border-left: 10px solid white;
} 

ul.wizard li .chevron:before {
    position: absolute;
    top: -20px;
    right: 1px;
    display: block;
    border: 20px solid transparent;
    border-right: 0;
    border-left: 10px solid white;
    content: "";
}

/* Terms */
div.margins {
    margin: 1px;
}

col-text {
    width: 70%; 
    float: left;
}

col-img {
    float: right;
}


/* width */
div#terms::-webkit-scrollbar {
    width: 20px;
}
  
/* Track */
div#terms::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
}

/* Handle */
div#terms::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background: #303033; 
}

/* Handle on hover */
div#terms::-webkit-scrollbar-thumb:hover {
    border-color: #9f232a; 
}
  