@charset "utf-8";
/* CSS Document */
body {
    font-family: 'Libre Franklin';
    background-image: url('/wp-content/uploads/2023/05/DealCraftLogoFaded-1.png');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: top center;
    background-color: #FFFFFF;
}
.answer {
    border: 1px solid rgba(0, 0, 0, .3);
    border-radius: 15px;
    padding: 20px;
    margin: 5px;
    font-size: 18px;
    transform: scale(1);
    text-align: center;
}
.answer:hover {
    background-color: #2f5597;
    transform: scale(1.01);
    color: #FFFFFF;
    cursor: pointer;
    transition: .25s;
}
.question {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin: 20px;
}
.question_container {
    display: none;
}
#progress-bar-container {
    width: 50%;
    text-align: left;
    border: 1px solid rgba(0, 0, 0, .2);
    background: rgba(0, 0, 0, .1);
    height: 38px;
    border-radius: 15px;
    margin-top: 25px;
}
#progress-bar {
    margin-top: 0px;
    padding-right: 10px;
    padding-top: 8px;
    background-color: #2f5597;
    width: 10%;
    font-weight: bold;
    transition: 1s;
    height: 30px;
	font-size:10px;
    border-radius: 15px;
    color: #FFFFFF;
    text-align: right;
}
@media only screen and (max-width: 1050px) {
    #progress-bar-container {
        width: 95%;
    }
}
#previous {
    height:50px;
    margin-top:20px;
    cursor:pointer;
}
