#container-quiztop {
    max-width: 414px;
    position: relative;
    margin: 0 auto;
    min-height: 100vh;
    transition: all 0.3s;
    top: 0;
}

.bg-quiztop {
    /* background-color: #f26523; */
    /* background-color: #ef4c25; */
    background-image: linear-gradient(#f26523, #ef4c25);
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

#sidebar {
    width: 250px;
    position: absolute;
    top: 0;
    left: -250px;
    height: 100%;
    z-index: 999;
    background: #f26523;
    color: #fff;
    transition: all 0.3s;
    overflow-y: scroll;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
    opacity: 0;
}

#sidebar.active {
    left: 0;
    display: block;
    opacity: 1;
}

#dismiss {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: #f26523;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

#dismiss:hover {
    background: #fff;
    color: #f26523;
}

.overlay {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    top: 0;
}
.overlay.active {
    display: block;
    opacity: 1;
}


@keyframes float {
    0% {
        transform: translatey(0px);
    }
    50% {
        transform: translatey(14px);
    }
    100% {
        transform: translatey(0px);
    }
}

.float-icons {
    top: 0px;
    right: 88px;
    position: absolute;
    transform: translatey(0px); animation: float 3s ease-in-out infinite;
}

.modal-quiztop {
    padding-right: 0 !important;
}

.modal-dialog-quiztop {
    max-width: 414px !important;
}

/* ------------------------------
  Scroll to top
---------------------------------*/
.to-top a {
    position: fixed;
    bottom: 15px;
    right: 20px;
    opacity: 0.5;
    font-size: 40px;
    color: #ef4c25;
    z-index: 1;
    display: none;
}

.btn-quiztop-primary {
    color: #fff;
    background-color: #f26523;
    border-color: #f26523;
}

.btn-quiztop-primary:hover {
    color: #fff;
    background-color: #ef4c25;
    border-color: #ef4c25;
}

.btn-quiztop-secondary {
    color: #000;
    background-color: #00e410;
    border-color: #00e410;
}

.btn-quiztop-secondary:hover {
    color: #000;
    background-color: #00e410;
    border-color: #00e410;
}

.bg-light-quiztop {
    background-color: #fffac7 !important;
}

.error404 h2 span {
    background-color: #fffac7;
    margin: 4px;
    padding: 20px;
    color: #ef4c25;
}

.text-quiztop-primary {
    color: #F36221 !important;
}
