* {
    font-family: "Roboto", sans-serif;
}

.page-title {
    color: #f17211;
    font-size: 30px;
    font-family: "Roboto", sans-serif;
    padding-bottom: 20px;
}

.outside-border {
    outline: solid 1px #f1f1f1;
    padding: 20px;
    border-radius: 15px;
}

li {
    line-height: 30px;
}

.row {
    padding: 5px;
}


.alert-success {
    margin-top: 20px;
    border-left: 5px solid #1eb337;
    color: black;
}

.alert-danger {
    margin-top: 20px;
    border-left: 5px solid #f00;
    color: black;
}

.alert-warning {
    margin-top:20px;
    border-left: 5px solid #e3d022;
    color: black;
}

.btn-dark {
    background-color: #fff;
    color: #f17211;
    border-color: #babfc9;
}

.username {
    width: 100%;
    font-size: 26px;
    color: #f17211;
    border-radius: 3px;
    border: 1px solid #ccddff;
}

select {
    padding: 5px;
    border-radius: 3px;
    border: 1px solid #ccddff;
}

option {
    font-size: 16px;
}

.alert-icon {
    float: right;
    vertical-align:middle;
}

.ans-label {
    text-align: right;
}


.answer {
    width: 100%;
    font-size: 26px;
    border-radius: 3px;
    border: 1px solid #ccddff;
}

.password {
    font-weight: 500;
    color: #f17211;
    letter-spacing: 2px;
    font-size: 16px;
    text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3);
    border-radius: 3px;
    border: 1px solid #ccddff;
}

.alert-icon {
    float: right;
    vertical-align: middle;
}

.loader {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Add animation to "page content" */
.animate-bottom {
    position: relative;
    -webkit-animation-name: animatebottom;
    -webkit-animation-duration: 1s;
    animation-name: animatebottom;
    animation-duration: 1s
}

@-webkit-keyframes animatebottom {
    from {
        bottom: -100px;
        opacity: 0
    }

    to {
        bottom: 0px;
        opacity: 1
    }
}

@keyframes animatebottom {
    from {
        bottom: -100px;
        opacity: 0
    }

    to {
        bottom: 0;
        opacity: 1
    }
}