
html {
    height: 100%;
}
body {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment:fixed;
    height: 100%;

}

.wizard-container .row{
    background: #fff;
}

/* Body background images */
.bg-plants {
    background-image: url("../images/background_plants.jpg");
}
.bg-paint {
    background-image: url("../images/background_paint.jpg");
}

.background-image{
    padding: 0 !important;
    margin: 0 !important;
}

.background-image div{
    width: 100%;
    height: 100%;
    background: wheat;
    vertical-align: middle;
    text-align: center;
    background-size: cover;
}

/* DOM Elements*/
h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
}

/* Lists, buttons and actions */

ul[role='tablist'],
ul[role='menu'] {
    list-style: none;
}
ul.red {
    list-style-type: none;
    position: relative;
}
ul.red li::before {
    content: "\2022";
    color: #c50006;
    display: inline-block;
    /* width: 1em; */
    position: absolute;
    left: -0.8em;          /* Adjust this value so that it appears where you want. */
    font-size: 1.1em;      /* Adjust this value so that it appears what size you want. */
}

/* Wizard structure */
.wizard-container {
    height: 100%;
}

.col-wizard {
    background-color: white;
    padding: 3em;
    box-shadow: 1px 1px 3px 4px rgba(0,0,0,0.12);
}

.inner {
    height: auto;
    padding: 50px 0;
    background: #fff;
    height: 100%;
}

/* Steps Wizard */
#wizard {
    width: 100%;
    height: auto;
    margin-left: 0;
    margin-right: 0;
}

.page-title h5{
    font-weight: bold;
    margin: 10px 0;
    display: inline-block;
}

.page-title .price{
    float: right;
    font-size: 12px;
    background: #555;
    color: #fff;
    font-weight: 600;
    height: 100%;
    padding: 10px;
}

.steps {
    width: 100%;
    top: 60px;
    background-color: #fff;
    height: 4px;
}

.steps:before, .steps::after {
    content: "" !important;
}

@media (max-width: 767px) {
    .steps {
        width: auto;
    }
}

.steps ul {
    background: #c50006;
    height: 4px;
}
.steps::before,
.steps::after {
    bottom: 8px;
}

/* Steps content */
.step-header h3 {
    color: grey;
    text-transform: uppercase;
    font-size: 0.9em;
    font-weight: 400;
    letter-spacing: 2px;
}
.step-header h2 {
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 15px;
    letter-spacing: 1px;
}

.steps .progress-bar-mask {
    width: 100%;
    display: table;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.steps .progress-bar-mask .separator{
    display: table-cell;
    height: 100%;
    border-right: 8px solid #fff;
}

/* Steps buttons */

.actions{
    bottom: 0;
    right: 0;
    position: fixed;
    width: 100%;
    display: block;
    background: white;
    padding: 20px;
    width: 50%;
    box-shadow: 1px 2px 13px rgba(0,0,0,0.2);
}

.actions ul {
    position: unset;
    bottom: unset;
    right: unset;
    left: unset;
}

.actions li a:before,
.actions li:first-child a:before {
    content: "";
}




.actions li a,
.actions li:first-child a,
.actions li button.finish-button {
    border: 1px solid #aaa;
    color: #aaa;
    background-color: #fff;
    height: auto;
    width: auto;
    border-radius: 30px;
    padding: 7px 30px;
    font-size: 11px;
    text-transform: uppercase;
}

.actions li a:hover,
.actions li:first-child a:hover,
.actions li button.finish-button:hover {
    border: 1px solid #c50006;
    background-color: #c50006;
    color: #fff;
    text-decoration: none;
}


/* Wizard options */
div.wizard-options .card {
    border: 2px solid #b4b4b4;
    border-radius: unset;
}
div.wizard-options .card .card-body .zmdi {
    color: #b4b4b4;
}
div.wizard-options .card .card-subtitle {
    color: #b4b4b4;
}
div.wizard-options .card:hover {
    border: 2px solid #c50006;
    border-radius: unset;
    transition: 0.4s;
}
div.wizard-options .card:hover .card-body .zmdi {
    color: #c50006;
    transition: 0.4s;
}
div.wizard-options .card:hover .card-subtitle {
    color: #c50006;
    transition: 0.4s;
}
div.wizard-options a:hover {
    text-decoration: none;
}

div.wizard-options .card-disabled {
    opacity: 0.4;
}
div.wizard-options .card-disabled:hover {
    border: 2px solid #b4b4b4;
}
div.wizard-options .card-disabled:hover .card-body .zmdi,
div.wizard-options .card-disabled:hover .card-subtitle {
    color: #b4b4b4;
}
div.wizard-options .card-disabled:hover {
    cursor:not-allowed;
    color:#eee;
}

/* Options */

h4.option-box-title {
    font-size: 0.8rem;
}

h4.option-box-title-options {
    font-size: 1.1rem;
}

h4.flag-title {
    margin-top: 1em;
}


input.check-no-box:checked + div.card img.flag-icon {
    opacity: 1;
}

img.flag-icon {
    max-width: 50%;
    opacity: 0.3;
}

h5.option-box-price {
    margin-top: 0.6em;
}

/* Form */

.form-control {
    background: none;
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.check-no-box {
    display: none;
}

input.check-no-box:checked + div.card {
    border: 2px solid #c50006;
    border-radius: unset;
    transition: 0.4s;
}

div.wizard-options input.check-no-box:checked + .card .card-body .zmdi {
    color: #c50006;
}

.form-check-option {
    width: 100%;
}

.ebea-checkbox-zone {
    width: 100%;
}



.btn-group>.btn-group:not(:first-child)>.btn, 
.btn-group>.btn:not(:first-child),
.btn-group>.btn-group:not(:last-child)>.btn, 
.btn-group>.btn:not(:last-child):not(.dropdown-toggle) {
    border-radius: 3px;
   padding: 10px;
   margin: 10px;
}

.btn-outline-ebea {
    color: #aaa;
    border-color: #aaa;
}

.btn-outline-ebea:hover:not(:active) {
    color: #c50006;
   border-color: #c50006;
}

.btn-outline-ebea:not(:disabled):not(.disabled).active, 
.btn-outline-ebea:not(:disabled):not(.disabled):active, 
.show>.btn-outline-ebea.dropdown-toggle {
    color: #fff;
    background-color: #c50006;
    border-color: #c50006;
}

#existingSiteURL{
    display: none;
}

.form-control {
    border-bottom: 1px solid #aaa;
    border-radius: 0;
}