body {
    font-family: Roboto,Helvetica Neue, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ceebf5;
}
input[type="submit"] {
    z-index: 10;
    position: relative;
}
img.logo2 {
    max-width: 300px;
    padding-bottom:20px;
}
.container {
    width: 100%;
    /*max-width: 960px;*/
    margin: 0px;
    padding: 0px;
    /*background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);*/
    position: relative;
    height: 100vh;
     margin-left: auto; 
     margin-right: auto; 
}
.question {
    display: none;
    opacity: 0;
    transition: opacity 0.5s;
    padding-top: 0px!important;
    padding-bottom: 0px!important;
}
.active {
    display: block;
    opacity: 1;
}

.option {
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    border: 1px solid #34b7db;
    border-color: #34b7db;
    padding: 15px;
    border-radius: 60px;
    cursor: pointer;
    margin: 10px 0;
    text-align: center;
    transition: background-color 0.3s;
}
.option:hover {
    background-color: #34b7db;
}
.selected {
    color: rgb(255, 255, 255);

    background-color: #34b7db; /* Highlight selected option */
}

.navigation {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}
.form-control {

    background-color: transparent;
    background-clip: padding-box;
    border: transparent;
    border-bottom: 3px solid #3bb4e4;
    border-radius: 0px;
    
}
.form-control:hover {
    background: transparent;
}
button {
    background-color: #34b7db;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}
button:hover {
    background-color: #34b7db;
}

.opening{

    padding-top:50px!important;
}
.q-content{
    display: inline-block;
    vertical-align: top;
    margin-top: 30px;
}

.q-img{
    display: inline-block;
    height: 100vh;
}
.q1-img {
    background-image: url('../image/q1.jpeg');
    background-position: center;
    opacity: 0.8;
    /* background-attachment: fixed; */
    background-blend-mode: soft-light;
    background-repeat: no-repeat;
    background-origin: content-box;
    background-size: cover;
}

img {
    max-width: 100%;
}

.row.result img.card-img-top {
    padding-top: 10px;
}

.row.result img.card-img-top:hover {
    scale: 0.9;
    transition: 0.3s;
}
img.logo {
    width: 250px;
    /*margin-bottom: 50px;*/
}
.bg-info {
    background-color: #d4befb !important;
}
.bg-warning {
    background-color: rgb(201 253 158) !important;
}
.bg-primary {
    background-color: rgb(158, 212, 253) !important;
}
@media screen and (max-width: 600px) {
    .container {
         max-width: 100%; 
    }

    .q1-img {
        background-image: url('../image/q1.jpeg');
        background-position: center;
        opacity: 0.8;
        background-attachment: fixed;
        background-blend-mode: soft-light;
        background-repeat: no-repeat;
        background-origin: content-box;
        background-size: contain;
    }

    .row>* {
       /* 
        width: 95%;
        
        margin-left: 5px;*/
    }
    .question{
        
        margin-left: auto;
        margin-right: auto;
        
    
    }
    .long-btn{
        position: relative;
        bottom: 30px;
    }
    
}

.progress-fixed {
        position: fixed;
        bottom: 0px;
        width: 100%;
        z-index: 9999;
        display: none; /* 初始隱藏 */
    }
    .progress-fixed.visible {
        display: block; 
    }
    #progressBar {
    transition: width 0.5s ease-in-out; 
}