@import url('https://fonts.googleapis.com/css?family=Quicksand:400,500,700&subset=vietnamese');

* {
    font-family: "Quicksand", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.3rem;
}

h1 {
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 3rem;
}

body {
    background-color: #e2f3eb;
}

p, form p {
    text-align: justify;
    margin-top: 8px;
    margin-bottom: 8px;
}

img {
    margin: 10px auto;
}

.btn {
    background-color: #0f9d58;
}

.row {
    margin-bottom: 10px;
}

.btn:hover {
    background-color: #0fb969;
}

.btn:focus {
    background-color: #0fb969;
}

.dropdown-content li>span {
    color: #000;
}

.rosette-required {
    color: red;
}

.question-panel-container {
    margin-top: 150px;
}

.question-container {
    margin-bottom: 20px;
}

.question-title {
    font-weight: bold;
}

.question-panel-container .card-panel {
    border-top: 8px solid #b9f6ca;
    border-radius: 0px;
}

.header-background {
    background: #0f9d58;
    height: 260px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.form-label {
    background-color: #0f9d58;
    color: #FFF;
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 40px;
    padding-left: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
}

@media only screen and (max-width: 660px) {
    .question-container {
        margin-top: 50px;
    }

    .header-background {
        height: 120px;
    }
}

.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}
.embed-container iframe, .embed-container object, .embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.result {

}

.result-label p {
    font-weight: bold;
    font-size: 1.2rem;
}

.result-container {
    padding-left: 10px !important;
    border-left: 3px solid #969696;
    margin-left: 12px !important;
    font-weight: bold;
    font-size: 1.2rem;
    color: #0f9d58;
}

.result-container a {
    color: #0f9d58;
    font-size: 1.2rem;
}

.result-container a:hover {
    text-decoration: underline;
    color: #0fb969;
    font-size: 1.2rem;
    font-weight: bold;
}

.select-wrapper {
    font-weight: 500;
}

.pulsate {
    -webkit-animation: pulsate 3s ease-out;
    -webkit-animation-iteration-count: infinite;
    opacity: 0.5;
}
@-webkit-keyframes pulsate {
    0% {
        opacity: 0.5;
    }
    10% {
        opacity: 1;
    }
    20% {
        opacity: 0.5;
    }
    30% {
        opacity: 1;
    }
    40% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
    60% {
        opacity: 0.5;
    }
    70% {
        opacity: 1;
    }
    80% {
        opacity: 0.5;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0.5;
    }
}