﻿.d-none {
    display: none !important;
}

.startBtn {
    width: 300px;
    text-align: center;
    background-color: #A43795;
    font-weight: bold;
    color: white;
    border-radius: 15px;
    height: 70px;
    font-size: 20pt;
    border: none;
    margin-top: 10px
}
    .startBtn:hover, .startBtn:focus {
        background-color: #943186;
    }

.startBtnGreen {
    width: 300px;
    text-align: center;
    background-color: #439B45;
    font-weight: bold;
    color: white;
    border-radius: 15px;
    height: 70px;
    font-size: 20pt;
    border: none;
    margin-top: 10px
}

    .startBtnGreen:hover, .startBtnGreen:focus {
        background-color: #2a822b;
    }
.startBtnGrey {
    width: 300px;
    text-align: center;
    background-color: #EAEAEA;
    font-weight: bold;
    color: #707070;
    border-radius: 15px;
    height: 70px;
    font-size: 20pt;
    border: none;
    margin-top: 10px
}

    .startBtnGrey:hover, .startBtnGrey:focus {
        background-color: #d3d3d3;
    }
.activePageBtn {
    font-size: 30pt;
    padding: 0;
    width: 66px;
    padding-top: 19px;
    padding-bottom: 27px;
    border-radius: 50%;
    color: white;
    background-color: #439B45;
    font-weight: bolder;
    border: none;
    display: flex;
    justify-content: center;
}
    .activePageBtn:hover, .activePageBtn:focus {
        background-color: #2a822b;
    }

.InactivePageBtn {
    font-size: 30pt;
    padding: 0;
    width: 66px;
    padding-top: 19px;
    padding-bottom: 27px;
    border-radius: 50%;
    color: #707070;
    background-color: #EAEAEA;
    font-weight: bolder;
    border: none;
    display: flex;
    justify-content: center;
}
    .InactivePageBtn:hover, .InactivePageBtn:focus {
        background-color: #d3d3d3;
    }

.activeStep {
    color: white;
    background-color: #439B45;
}

.InactiveStep {
    color: #707070;
    background-color: #EAEAEA;
}


.StepBase {
    width: 35px;
    padding-top: 7px;
    padding-bottom: 8px;
    font-weight: 500;
    font-size: 16pt;
    border-radius: 50%;
    display: flex;
    justify-content: center;
}

input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 40px;
    height: 40px;
    border: 5px solid #707070;
    border-radius: 50%;
    cursor: pointer;
    margin-right: 10px;
    background-color: white;
    box-shadow: inset 0 0 0 4px white;
}

    input[type="radio"]:checked {
        background-color: #439B45;
        border: 5px solid #707070;
    }


.timer {
    display: block;
    margin: 0px auto;
    max-width: 100%;
}

    .timer circle {
        transform: rotate(-90deg);
        transform-origin: 50% 50%;
        transition: stroke-dashoffset 1s linear;
    }

.image {
    max-width: 300px;
    max-height: 350px;
}

.modal {
    display: none; 
    position: fixed;
    z-index: 1; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4); 
/*    animation: dropDown 0.5s ease-out;*/
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto; 
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width:500px;
    animation: dropDown 0.5s ease-out;
}

/* Add Animation */
@keyframes dropDown {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

    .close-btn:hover,
    .close-btn:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }

.paragraphText {
    font-size: 14pt;
    font-weight: 500;
    line-height: 1.3 ;
    text-align:center;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInUp {
    animation-name: fadeInUp;
    animation-duration: 0.5s; /* Control the speed of the animation */
    animation-fill-mode: both; /* Keeps the element visible after the animation completes */
}


@media screen and (max-width: 600px) {
    .paragraphText {
        font-size: 12pt;
    }
}
@media screen and (max-width: 400px) {
    .paragraphText {
        font-size: 11pt;
    }

}
.resultBoxWidth {
    min-width: 300px
}
@media screen and (max-width: 375px) {
    .paragraphText {
        font-size: 10pt;
    }

    .startBtnGreen, .startBtnGrey, .startBtn {
        font-size: 17pt;
        width: 250px;
    }

    .resultBoxWidth {
        min-width: 250px;
    }
    .image {
        max-width: 240px;
        max-height: 260px;
    }
}
