.logo {
    width: 15rem;
}

.resultBox {
    display: none;
}

.questionBox {
    display: none;
}

.questions {
    animation: questions .6s
}

@keyframes questions {
    0% {
        bottom: -990px;
        opacity: 0
    }

    60% {
        opacity: .8
    }

    to {
        bottom: 0px;
        opacity: 1
    }
}

.prev i,
.next i {
    transition: .2s;
}

.prev:hover i {
    transform: translate(-5px);
}

.next:hover i {
    transform: translate(5px);
}

.imgDisplay {
    margin-bottom: 50px;
}

/* First hide radios */
.form-check input[type="radio"] {
    display: none;
}

/* Generate new radio buttons, which we can style via css */
.form-check label:before {
    content: attr(data-question-number);
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 2px #32ac2a;
    text-align: center;
    line-height: 30px;
    vertical-align: sub;
    margin-right: .5rem;
}

.form-check.radioText label:before {
    content: attr(data-question-number);
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 2px #32ac2a;
    text-align: center;
    line-height: 30px;
    vertical-align: sub;
    margin-right: 10px;
}

/* Applying styles when checking the buttons */
.form-check input[type="radio"]:checked~label {
    border-color: #32ac2a;
}

.form-check input[type="radio"]:checked~label:before {
    background-color: #32ac2a;
    color: white;

}

.form-check {
    padding-left: 0;
    margin-top: 20px;
    transition: .3s;
}

.form-check:hover {
    box-shadow: 0 0 10px 2px #0003
}

.form-check.radioText label {
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
    font-size: 18px;
    border: 2px solid #32ac2a;

}

.form-check label {
    cursor: pointer;
    padding: .5rem 0 0 0;
    border-radius: 5px;
    font-size: 18px;
    border: 2px solid #32ac2a;
    text-align: center;
}

.radioImg {
    margin: .5rem 0 0 0;
    border-top: solid 2px #32ac2a;
}

body {
    background-image: url(img/Tripped_Electric_Logo.jpg);
    background-size: cover;
    background-attachment: unset;
    background-position: left top;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    appearance: none;
    -moz-appearance: textfield;
}

input.form-control {
    border: 2px solid #32ac2a;
    padding: 12px 20px;
    font-size: 18px;
    transition: .3s;
}

input.form-control:hover {
    box-shadow: 0 0 10px 2px #0003
}

input.form-control:focus {
    border: 2px solid #32ac2a !important;
    box-shadow: 0 0 10px 2px #0003 !important
}

.startCard {
    min-height: 500px;
}

.card-footer {
    background-color: #32ac2a;
}

.btn-success {
    --bs-btn-bg: #32ac2a;
    --bs-btn-border-color: #32ac2a;
    --bs-btn-hover-bg: rgba(50, 172, 42, .8);
    --bs-btn-hover-border-color: rgba(50, 172, 42, .8);
    --bs-btn-active-bg: rgba(50, 172, 42, .8);
    --bs-btn-active-border-color: rgba(50, 172, 42, .8);
}

.btn-secondary {
    --bs-btn-bg: rgba(0, 0, 0, .1);
    --bs-btn-border-color: #fff;
    --bs-btn-hover-color: rgba(255, 255, 255, .7);
    --bs-btn-hover-bg: rgba(50, 172, 42, .8);
    --bs-btn-hover-border-color: rgba(255, 255, 255, .7);
    --bs-btn-active-color: rgba(255, 255, 255, .7);
    --bs-btn-active-bg: rgba(50, 172, 42, .8);
    --bs-btn-active-border-color: rgba(255, 255, 255, .7);
    --bs-btn-disabled-color: rgba(255, 255, 255, .7);
    --bs-btn-disabled-bg: rgba(50, 172, 42, .8);
    --bs-btn-disabled-border-color: rgba(255, 255, 255, .7);
    --bs-btn-padding-x: 30px;
}

p {
    font-size: 22px;
}


.requiredAsteric {
    color: red;
    margin-left: 5px;
}

.card-body {
    padding: 50px;


}