#app-name {
    font-family: 'Raleway', Verdana, Arial, Helvetica, sans-serif;
    padding-top: 20px;
    padding-left: 10px;
    font-size: 40px;
    font-weight: normal;
    color: #FFF;
}

#app-slogan {
    font-family: 'Raleway', Verdana, Arial, Helvetica, sans-serif;
    margin-top: 10px;
    padding-left: 10px;
    font-size: 14px;
    font-weight: normal;
    color: #FFF;
}

#top_section {
    background: linear-gradient(#3AA0D4 10%, #0B6A9D 90%);
    background-image: url('/images/header.png');
    min-height: 186px;
    border-bottom: 5px solid #fff;
    box-shadow: 0px 3px 4px -2px #888;
}

.header-menu {
    float: right;
    clear: both;
    float: right;
    max-width: 680px;
}

.header-menu a {
    float: left;
    display: block;
    margin: 4px;
    padding: 14px 22px;
    font-family: Raleway, Verdana, Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.6px;
    background: linear-gradient(#fff, #d8d8d8, #fff, #fff, #c6c6c6);
}

.header-menu a:hover {
    cursor: pointer;
    color: #CC0066;
    background: #fff;
}

a:link {
    color: #0066AA;
    text-decoration: none;
}

.run-text {
    color: #FFF;
    font-size: 18px;
    margin: 0 auto;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
}

.run-text span {
    display: inline-block;
    padding-left: 100%;
    animation-name: run-text;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes run-text {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.page-active {
    color: #CC0066;
}

.btn-active {
    color: #FFF;
}

.btn-unactive {
    color: #c6c6c6;
    opacity: 0.7;
}

label.error {
    color: red;
    display: block;
    margin-top: 5px;
    height: 10px;
}

input.is-invalid {
    border-color: red;
}

.pointer {
    cursor: pointer;
}

.bg-app {
    background: linear-gradient(#3AA0D4 10%, #0B6A9D 90%);
}

#loading-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0, 0.5);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-area {
    position: absolute;
    color: #FFF;
    top: 15px;
    right: 15px;
}

#home-content{
    position: relative;
}

.btn-toggle-audio{
    position: absolute;
    top: 10px;
    left: 12px;
}