
.pl-0 {
    padding-left:0;
}

.pr-0 {
    padding-right: 0;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 25px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.select2-container--default .select2-selection--single {
    border: none;
    margin-bottom: 15px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    background-color: #F3F2EE;
    border: 1px solid #e8e7e3;
    border-radius: 4px;
    color: #66615b;
    font-size: 14px;
    padding: 7px 18px;
    height: 40px;
    -webkit-box-shadow: none;
    box-shadow: none;
}


/*.select2-container .select2-selection--single {
    height: 34px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    width: 0px;
}*/

#img_signature {
    width: 100%;
}
/*------- animate ----------*/
.loader {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 120px;
    height: 120px;
    margin: -76px 0 0 -76px;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    -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);
    }
}


#snackbar {
    visibility: hidden;
    min-width: 200px;
    margin-left: 0px; /* Divide value of min-width by 2 */
    background-color: transparent;
    text-align: center;
    border-radius: 2px;
    position: fixed;
    z-index: 1;
    font-size: 17px;
    left: 30%; /* Center the snackbar */
    bottom: 30px; /* 30px from the bottom */
}

    #snackbar.show {
        visibility: visible;
        -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
        animation: fadein 
            0.5s, fadeout 0.5s 2.5s;
    }

@-webkit-keyframes fadein {
    from {
        -webkit-transform: translateY(0);
        opacity: 0;
    }

    to {
        -webkit-transform: translateY(10);
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        -webkit-transform: translateY(0);
        opacity: 0;
    }

    to {
        -webkit-transform: translateY(10);
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        -webkit-transform: translateY(10);
        opacity: 1;
    }

    to {
        -webkit-transform: translateY(0);
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        -webkit-transform: translateY(10);
        opacity: 1;
    }

    to {
        -webkit-transform: translateY(0);
        opacity: 0;
    }
}

.inline-red {
    display: inline-block;
    color: red;
}

.bounce {

    animation: bounce 2s infinite;
    -webkit-animation: bounce 2s infinite;
    -moz-animation: bounce 2s infinite;
    -o-animation: bounce 2s infinite;
}

@-webkit-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-30px);
    }

    60% {
        -webkit-transform: translateY(-15px);
    }
}

@-moz-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -moz-transform: translateY(0);
    }

    40% {
        -moz-transform: translateY(-30px);
    }

    60% {
        -moz-transform: translateY(-15px);
    }
}

@-o-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -o-transform: translateY(0);
    }

    40% {
        -o-transform: translateY(-20px);
    }

    60% {
        -o-transform: translateY(-15px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-15px);
    }
}

/* --------------------------------- */

.logo-container {
    position: absolute;
    z-index: 3;
    /*background-image: url("../img/Q NO MORE COVER 30TH BIRTHDAY.jpg");*/
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    /*display: flex;*/
    justify-content: center;
    height: 100%;
    align-items: center;
    top: 35%;
    width: 100%;
}

    .logo-container img {
        height: auto;
        aspect-ratio: auto;
        z-index: 10;
        width: 550px;
        padding-left: 15px;
        padding-right: 15px;
    }
    

.logo-container .logo{
    overflow: hidden;
    border-radius: 50%;
    border: 1px solid #333333;
    width: 60px;
    float: left;
}
.logo-container .brand{
    font-size: 18px;
    color: #FFFFFF;
    line-height: 20px;
    float: left;
    margin-left: 10px;
    margin-top: 10px;
    width: 60px
}

.fixed-section{
    top: 90px;
    max-height: 80vh;
    overflow: scroll;
}
.fixed-section ul li{
    list-style: none;
}
.fixed-section li a{
    font-size: 14px;
    padding: 2px;
    display: block;
    color: #666666;
}
.fixed-section li a.active{
    color: #00bbff;
}
.fixed-section.float{
    position: fixed;
    top: 100px;
    width: 200px;
    margin-top: 0;
}

.fixed-plugin{
    position: fixed;
    top:0px;
    right: 50px;
    z-index: 1031;
}
.fixed-plugin .fa-cog{
    color: #FFFFFF;
    background-color: rgba(0,0,0,.2);
    padding: 10px;
    border-radius: 0 0 6px 6px;
    font-size:24px;
}
.fixed-plugin .dropdown-menu{
    right: 0;
    left: auto;
}

.fixed-plugin li.header-title{
    font-weight: 400;
    line-height: 40px;
    color: #333;
    white-space: nowrap;
    padding: 0 15px;
}

.fixed-plugin .switch-trigger .ripple-container{
    display: none;
}

.fixed-plugin .dropdown-menu>li>a:focus,
.fixed-plugin .dropdown-menu>li>a:hover{
    background: transparent;
}

.fixed-plugin .fa-circle-thin{
    color: #FFFFFF;
}
.fixed-plugin .active .fa-circle-thin{
    color: #00bbff;
}
.fixed-plugin .dropdown-menu > li > a{
    padding-left: 10px;
    padding-right: 10px;
}
.fixed-plugin .dropdown-menu > li:first-child > a{
    margin-top: 10px;
}
.fixed-plugin .dropdown-menu > .active > a, .fixed-plugin .dropdown-menu > .active > a:hover, .fixed-plugin .dropdown-menu > .active > a:focus{
    background: none;
    color: #777777;
}
.fixed-plugin img{
    border-radius: 6px;
    width: 150px;
    max-height: 80px;
    border: 4px solid #FFFFFF;

}
.fixed-plugin .active img, .fixed-plugin a:hover img{
    border-color: #00bbff;
}

.fixed-plugin .btn{
    margin: 10px 0px 0;
    color: #FFFFFF;
}
.fixed-plugin .btn:hover{
    color: #FFFFFF;
}
.fixed-plugin .badge{
    border: 3px solid #FFFFFF;
    border-radius: 50%;
    cursor: pointer;
    display: inline-block;
    height: 23px;
    margin-right: 5px;
    position: relative;
    top: 5px;
    width: 23px;
}
.fixed-plugin .badge.active, .fixed-plugin .badge:hover{
    border-color: #00bbff;
}
.fixed-plugin .badge-azure{
    background-color: #7A9E9F;
}
.fixed-plugin .badge-blue{
    background-color: #23CCEF;
}
.fixed-plugin .badge-green{
    background-color: #7AC29A;
}
.fixed-plugin .badge-orange{
    background-color: #f3bb45;
}
.fixed-plugin .badge-red{
    background-color: #eb5e28;
}

@media (max-width:768px){
    .fixed-plugin{
        top: 80px;
        right: 0px;
    }
    .main .container{
        margin-bottom: 50px;
    }
    .pr-0 {
        padding: 0;
    }
    .pl-0 {
        padding: 0;
    }
}

@media (min-width: 768px){

    .fixed-plugin .dropdown-menu{
        display: block;
        margin: 0;
        padding: 0;
        z-index: 9000;
        position: absolute;
        -webkit-border-radius: 10px;
        box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.125);
        border-radius: 10px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        opacity: 0;
        -ms-filter: "alpha(opacity=0)";
        -webkit-filter: alpha(opacity=0);
        -moz-filter: alpha(opacity=0);
        -ms-filter: alpha(opacity=0);
        -o-filter: alpha(opacity=0);
        filter: alpha(opacity=0);
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -o-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
        -webkit-transition: all 300ms cubic-bezier(0.34, 1.61, 0.7, 1);
        -moz-transition: all 300ms cubic-bezier(0.34, 1.61, 0.7, 1);
        -o-transition: all 300ms cubic-bezier(0.34, 1.61, 0.7, 1);
        -ms-transition: all 300ms cubic-bezier(0.34, 1.61, 0.7, 1);
        transition: all 300ms cubic-bezier(0.34, 1.61, 0.7, 1);

    }
    .fixed-plugin .open .dropdown-menu{
        -webkit-transform-origin: 29px -50px;
        -moz-transform-origin: 29px -50px;
        -o-transform-origin: 29px -50px;
        -ms-transform-origin: 29px -50px;
        transform-origin: 29px -50px;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        opacity: 1;
        -ms-filter: none;
        -webkit-filter: none;
        -moz-filter: none;
        -ms-filter: none;
        -o-filter: none;
        filter: none;
    }
    .fixed-plugin .dropdown-menu:before{
        border-bottom: 11px solid rgba(0, 0, 0, 0.2);
        border-left: 11px solid rgba(0, 0, 0, 0);
        border-right: 11px solid rgba(0, 0, 0, 0);
        content: "";
        display: inline-block;
        position: absolute;
        right: 10px;
        margin-left: auto;
        top: -11px;
    }
    .fixed-plugin .dropdown-menu:after {
        border-bottom: 11px solid #FFFFFF;
        border-left: 11px solid rgba(0, 0, 0, 0);
        border-right: 11px solid rgba(0, 0, 0, 0);
        content: "";
        display: inline-block;
        position: absolute;
        right: 10px;
        margin-left: auto;
        top: -10px;
    }
    .btn-wd {
        min-width: 140px;
    }
}


.fixed-plugin .license,
.fixed-plugin .tutorial{
    margin: 20px 20px 0px;
    padding: 10px 0 0;
    color: #aaaaaa;
    border-top: 1px solid #eeeeee;
    font-size: 12px;
    font-weight: 600;
}

.fixed-plugin .tutorial{
    margin: 10px 20px 0;
}



.fixed-plugin ul > li:last-child a{
    margin-bottom: 15px;
}

@media (min-width: 30px) {
    #sigPad {
        width: 300px;
        height: 200px;
    }
}

@media (min-width: 500px) {
    #sigPad {
        width: 450px;
        height: 250px;
    }
}

@media (min-width: 990px) {
    #sigPad {
        width: 600px;
        height: 350px;
    }
}

.qnomore_head {
    background-color: #133052;
    border-radius:10px;
    margin-left:-30px;
    margin-right:-30px;
}

.qnomore_head_home {
    background-image: url("../img/QNoMore_Anniverary.png");
    background-color: #05265c;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    min-height: 350px;
    border-radius: 10px;
    margin-left: -100px;
    margin-right: -100px;
    margin-top: -100px;
}

.qnomore_30 {
    height: auto;
    aspect-ratio: auto;
    z-index: 10;
    width: 100%;

}

@media (min-width: 200px) {
    .row .home {
        margin: auto;
    }
    .qnomore_head_home {
        margin-left: -10px;
        margin-right: -10px;
        margin-top: -80px;
    }

    #head_logo {
        display: none;
    }
    
    .qnomore_30 {
        margin-top: -30px;
        padding-bottom: 20px;
    }
}

@media (min-width: 540px) {
    #head_logo {
        display: block;
    }
    .qnomore_30 {
        margin-top: 0px;
    }
}

@media (min-width: 760px) {
    .qnomore_head_home {
        margin-left: -80px;
        margin-right: -80px;
        margin-top: -80px;
    }
    
}

.qnomore_head_icons {
    padding-left: 20px;
    padding-right: 20px;
    margin-top: -15px;
    display: block;
}









.sm-btn {
    display: inline-block;
    position: relative;
    cursor: pointer;
    width: 30px;
    height: 30px;
    text-align: center;
    margin: .5em;
    border-radius: 50%;
    background: linear-gradient(to right, #009579 0%, #00a6ce 100%);
    color: #dbdbdb;
    padding-top: 4px;
}

.quote_box {
    padding: 5px;
    white-space: nowrap;
}

.slide {
    top: -50%;
    left: 10%;
    width: 80%;
    position: absolute;
    -webkit-animation: slide 1s forwards;
    -webkit-animation-delay: 2s;
    animation: slide 1s forwards;
    animation-delay: 2s;
    border-radius: 6px;
    z-index: 10;
}

    .slide img {
        border-radius: 6px;
        z-index: 10;
        width: 700px;
        -webkit-box-shadow: 5px 5px 100px 30px rgba(0,0,0,0.75);
        -moz-box-shadow: 5px 5px 100px 30px rgba(0,0,0,0.75);
        box-shadow: 5px 5px 100px 30px rgba(0,0,0,0.75);
    }

@-webkit-keyframes slide {
    100% {
        top: 35%;
    }
}

@keyframes slide {
    100% {
        top: 35%;
    }
}

.li_btn {
    padding: 0;
    margin: 0;
    border: none;
    width: 100%;
    background-color: white;
}

    .li_btn:hover {
        background-color: rgb(44 168 255 / 0.70);
    }
