/* top head  */
@import url('https://fonts.googleapis.com/css2?family=Courgette&family=Lobster&display=swap');

.top {
    background-color: rgb(2, 68, 68);
    color: aliceblue;
}

.top h1 {
    font-family: 'Courgette', cursive;
}

/* topbar notice scroll*/
.notice {
    background-color: rgb(208, 239, 240);
    margin-bottom: .5%;
}

.progress-horizontal {
    display: block;
    width: 100%;
    height: 40px;
    margin: 0;
    overflow: hidden;
}

.bar-horizontal {
    margin-top: 1%;
    animation-name: spinner;
    animation-duration: 15000ms;
    animation-timing-function: ease-in-out;
    animation-play-state: running;
    animation-direction: alternate-reverse;
    animation-iteration-count: infinite;
}

@keyframes spinner {
    0% {
        width: 0;
    }

    50% {
        width: 100%;
        margin-left: 50%;
    }

    100% {
        width: 100%;
        margin-left: 0%;
    }
}

/*slider*/
.slider img {
    width: 100vw;
    height: 400px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.slider_caption {
    background-color: rgba(128, 128, 128, 0.363);
    width: fit-content;
    margin-left: 33%;
    padding: 1%;
    border-radius: 20px;
    font-weight: bold;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

hr {
    background-color: rgba(0, 48, 49, 0.329);
}

.content_headline {
    width: 100%;
    background-color: rgba(10, 105, 31, 0.76);
    padding: 10px;
    text-decoration: none;
    color: rgb(255, 255, 255) !important;
    margin: 0 0 10px 0 !important;
    border-radius: 10px 10px 0 0;
    -webkit-border-radius: 10px 10px 0 0;
    -moz-border-radius: 10px 10px 0 0;
    -ms-border-radius: 10px 10px 0 0;
    -o-border-radius: 10px 10px 0 0;
}

.result {
    background: linear-gradient(180deg, rgb(0, 15, 15), rgb(9, 85, 69), rgb(3, 177, 148), rgb(0, 138, 69));
    color: aliceblue;
    width: 100%;
    height: 500px;
    padding: 2% 1% 2% 1%;
    border-radius: 0 0 10px 10px;
    -webkit-border-radius: 0 0 10px 10px;
    -moz-border-radius: 0 0 10px 10px;
    -ms-border-radius: 0 0 10px 10px;
    -o-border-radius: 0 0 10px 10px;
}


.dropdown:hover>.dropdown-menu {
    display: block;
}

.dropdown>.dropdown-toggle:active {
    /*Without this, clicking will make it sticky*/
    pointer-events: none;
}

.dropdown-menu a:hover {
    background-color:darkgreen;
    color: white;
}