
/* The slider itself */
.slider {
    -webkit-appearance: none;  /* Override default CSS styles */
    appearance: none;
    width: 100%; /* Full-width */
    height: 15px; /* Specified height */
    border-radius: 5px;
    background: #d3d3d3; /* Grey background */
    outline: none; /* Remove outline */
    opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
    -webkit-transition: .2s; /* 0.2 seconds transition on hover */
    transition: opacity .2s;
}

/* Mouse-over effects */
.slider:hover {
    opacity: 1; /* Fully shown on mouse-over */
}

/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
.slider::-webkit-slider-thumb {
    -webkit-appearance: none; /* Override default look */
    appearance: none;
    width: 25px; /* Set a specific slider handle width */
    height: 15px; /* Slider handle height */
    border-radius: 10px;
    background-color: #006EB6; /* Blue background */
    cursor: pointer; /* Cursor on hover */
    transform: scale(2);
}

.slider::-moz-range-thumb {
    width: 25px; /* Set a specific slider handle width */
    height: 15px; /* Slider handle height */
    background-color: #006EB6; /* Blue background */
    cursor: pointer; /* Cursor on hover */
    transform: scale(2);
}

.slider-output{
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bolder;
    font-size: 14pt;
}

.container-fluid{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: white;
}
.whitespace{
    position: absolute;
    bottom: 0px;
}
body{
    background-color: #0176C6;
}

h1{
    font-size: 18pt;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}
#byuilogo{
    height: 60px;
}

.submit-button{
    padding-bottom: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.form-group{
    padding-top: 2em;
    padding-left: 1em;
    padding-right: 1em;
    width: 100%;
}

#byuilogocontainer {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

#byuilogocontainer #byuilogodiv {
    margin-top: auto;
    margin-bottom: auto;
}

#welcome-statement{
    margin-top: auto;
    margin-bottom: auto;
    padding-left: 2em;
    padding-right: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
}

.radio-buttons{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: stretch;
    padding-top: 1em;
}

.question-text{
    display: flex;
    align-items: center;
    justify-content: left;
    flex-direction: row;
    font-weight: bold;
    font-size: medium;
    padding-bottom: .5em;
    background-color: #006EB6;
    color: white;
    border-radius: 1em;
    padding: 1em;
}

p {
    margin: 0 1rem;
}

.form-check-label{
    font-weight: bold;
    font-size: medium;
    padding-top: 1em;
}

.feedback-label{
    display: flex;
    align-items: center;
    justify-content:left;
    font-size: medium;
}

input[type='radio']{
    transform: scale(2);
}

input[type='radio']:checked:after {
    background-color: #006EB6;
}

#banner{
    display: flex;
    align-items:center;
    justify-content: center;
    background-color: #006EB6;
    border-radius: 1em;
    object-fit: fill;
    width: 80%;
}

#byuilogoheader{
    padding-top: .5em;
    max-height: 70px;
}

@media screen and (max-width: 450px) {
    #byuilogocontainer {
        display: block;
        text-align: center;
    }
    #byuilogocontainer #byuilogodiv {
        display: flex;
        justify-content: center;
    }
    #welcome-statement {
        padding-left: 0;
        padding-right: 0;
    }
}