/* Progress Bar Directive --------------------------------------------------------------------------------------------*/
.progress{
    left: -10px;
    position: fixed;
    right: -10px;
    top: -21px;
    z-index: 1000000;

    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.progress .active{
  -webkit-animation: progress-bar-stripes 0.4s linear infinite !important;
     -moz-animation: progress-bar-stripes 0.4s linear infinite !important;
      -ms-animation: progress-bar-stripes 0.4s linear infinite !important;
       -o-animation: progress-bar-stripes 0.4s linear infinite !important;
          animation: progress-bar-stripes 0.4s linear infinite !important;
}
.progress-bar { width: 100%; }
.show-progress-bar {
    top: -12px;
}

.nb-scrollbar::-webkit-scrollbar {
    width: 12px;
}
.nb-scrollbar::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.3);
    border-radius: 4px;
}
.nb-scrollbar::-webkit-scrollbar-thumb {
    border-radius: 4px;
    -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.5);
    background-color: #f5f8fa;
}
/* Process Cover Directive -------------------------------------------------------------------------------------------*/
.process-cover{
    background: #d8d8d8;
    bottom: 0;
    left: -100px;
    opacity: 0;
    position: fixed;
    right: -100px;
    top: 0;
    z-index: 90000;

    -webkit-transition: ease-in-out .3s;
    -moz-transition: ease-in-out .3s;
    -ms-transition: ease-in-out .3s;
    -o-transition: ease-in-out .3s;
    transition: ease-in-out .3s;
}
.show-process-cover {
    opacity: 0.5;
}

.reload-alert-cover{
    display: none;
    background: #1c222a;
    bottom: 0;
    left: 0;
    opacity: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 2000000;

    -webkit-transition: ease-in-out .3s;
    -moz-transition: ease-in-out .3s;
    -ms-transition: ease-in-out .3s;
    -o-transition: ease-in-out .3s;
    transition: ease-in-out .3s;
}
.show-reload-alert-cover {
    opacity: 0.7;
}

.reload-alert-dialog {

    z-index: 2000001;
    background: #FFFFFF;
    position: fixed;
    display: none;

    top: 50%;
    right: 50%;
    margin-right: -140px;
    margin-top: -150px;

    width: 280px;
    height: 300px;

    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;

    -webkit-box-shadow: 0px 0px 80px -20px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 80px -20px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 80px -20px rgba(0,0,0,0.75);

    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;

}

/* Loading Screen Directive ------------------------------------------------------------------------------------------*/
.loading {
    z-index: 10000000;
    background-color: #5aa6dc;
    position: fixed;
    opacity: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.loading-fade {
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;

    opacity: 0;
}
.loading-content{
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -90px;
    margin-top: -57px;
}

.search-window {
    position: fixed;
    width: 600px;
    padding: 15px;
    top: 0;
    min-height: 100px;
    z-index: 500000;
    display: none;
    /*background-color: #ffffff;*/
    left: 50%;
    margin-left: -300px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;

    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

@media screen and (max-width: 650px){
    .search-window {
        width: 400px;
        margin-left: -200px;
    }
}

@media screen and (max-width: 450px){
    .search-window {
        width: 280px;
        margin-left: -140px;
    }
}


.search-visible {
    display: block;
}

.search-bar {
    display: block;
    position: relative;
    width: 100%;
}

.tip-search {
    display: block;
    width: 100%;
    text-align: center;
}

.filter-window {
    display: block;
    z-index: 200000;
    position: fixed;
    top: 0;
    left: -480px;
    width: 100%;
    max-width: 480px;
    bottom: 0;
    background-color: #ffffff;

    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;

}

.filter-visible {
    left: 0;

    -webkit-box-shadow: 4px 4px 28px -1px rgba(50, 50, 50, 0.75);
    -moz-box-shadow: 4px 4px 28px -1px rgba(50, 50, 50, 0.75);
    box-shadow: 4px 4px 28px -1px rgba(50, 50, 50, 0.75);
}

.filter-fade-out {
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;

    opacity: 0;
}
.filter-off {
    display: none;
}
.filter-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    overflow: hidden;
}
.filter-content {
    position: absolute;
    top: 65px;
    left: 0;
    right: 0;
    bottom: 76px;

    overflow-y: auto;
    overflow-x: hidden;
}
.filter-toolbar {
    position: absolute;
    height: 75px;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    text-align: center;
    overflow: hidden;
}
@media screen and (max-width: 500px){

}
@media screen and (max-width: 375px) {

}
.filter-tag-open{
    padding: 5px 15px 5px 15px;
    margin: 2px 5px 2px 5px;
    background: #ffffff;
    border: 1px solid #c8c8c8;
    display: inline-block;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.filter-tag{
    padding: 3px 10px 3px 10px;
    margin: 2px 5px 2px 5px;
    background: #ffffff;
    border: 1px solid #c8c8c8;
    display: inline-block;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}


/* Side Navigation Directives ----------------------------------------------------------------------------------*/
.icon-bar {
    margin: 5px;
    display: block;
    width: 22px;
    height: 2px;
    background-color: #4c5a66;
    border: 0px;
}

.mobile-nav-cover {
    z-index: 2000000;
    position: fixed;
    display: none;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #d8d8d8;
    opacity: .5;
}

.side-menu {
    z-index: 2000001;
    background-color: #ffffff;

    overflow: hidden;
    display: block;
    position: fixed;

    top: 0;
    bottom: 0;
    left: -300px;
    width: 280px;
    border-right: 1px solid #d8d8d8;

    -webkit-box-shadow: -2px 0px 6px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: -2px 0px 6px 0px rgba(0, 0, 0, 0.75);
    box-shadow: -2px 0px 6px 0px rgba(0, 0, 0, 0.75);

    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.side-menu-header {
    border-bottom: 1px solid #cccccc;
}

.side-menu-header img {
    height: 35px;
    width: auto;
    float: left;
    margin: 12px 0 12px 0;
}

.mbr-side-nav {
    position: fixed;
    z-index: 500;
    top: 60px;
    left: 0;
    width: 230px;
    bottom: 0;
    overflow-x: hidden;
    overflow-y: auto;

    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.mbr-side-nav {
    overflow-x: hidden;
    overflow-y: auto;
}

.mbr-side-nav::-webkit-scrollbar {
    width: 12px;
}
.mbr-side-nav::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.3);
    border-radius: 4px;
}
.mbr-side-nav::-webkit-scrollbar-thumb {
    border-radius: 4px;
    -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.5);
    background-color: #f5f8fa;
}



.mbr-side-nav-footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
}
@media all and (max-height: 650px){
    .mbr-side-nav-footer {
        position: relative;

    }
}


.mbr-side-nav-close {
    left: -230px;
}

.side-menu {
    overflow-x: hidden;
    overflow-y: auto;
}

.side-menu::-webkit-scrollbar {
    width: 12px;
}
.side-menu::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.3);
    border-radius: 4px;
}
.side-menu::-webkit-scrollbar-thumb {
    border-radius: 4px;
    -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.5);
    background-color: #f5f8fa;
}

.mbr-side-nav-links {
    width: 260px;
    margin: 0;
    padding: 20px 0 0 10px;
}

.sm-link {
    display: inline-block;
    /*border-bottom: 1px solid #d8d8d8;*/
    width: 240px;
    color: #4c5a66;

    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.sm-link:hover, .sm-link-active{
    color: #5aa6dc;
}
.sm-link > p {

}
.sm-link > div {

}




@media all and (max-width: 915px) {
    .mobile-nav-cover-on {
        display: block;
    }
    .mbr-side-nav {
        left: -230px;

        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -ms-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }
    .mbr-content {
        margin: 0 0 0 0;

        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -ms-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }
    .side-menu-open {
        left: 0;
    }
}







/* Alert Directive ------------------------------------------------------------------------------------------*/
.system-alert {
    z-index: 500;
    position: fixed;
    width: 100%;
    text-align: center;
    top: -200px;

    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.activate-alert {
    top: 55px;
}
.sys-alert-bar {
    display: inline-block;
    min-width: 300px;
    width: 100%;
    max-width: 600px;
}

/* New Tip Directive ------------------------------------------------------------------------------------------*/
.new-tip-container {
    position: fixed;
    z-index: 300000;
    overflow-y: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
}
.show-tip-container {
    display: block;
}
.tip-process-cover {
    z-index: 100;
    background-color: #ffffff;
    opacity: .5;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
}
.tip-process-cover-on {
    display: block;
}

.new-tip {
    position: absolute;
    width: 600px;
    margin-left: -300px;
    margin-bottom: 30px;
    top: -1000px;
    left: 50%;
    border-radius: 6px;
    background-color: #FFF;
    border: 0;

    -webkit-box-shadow: 0px 0px 100px -20px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 100px -20px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 100px -20px rgba(0, 0, 0, 0.75);

    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.delete-btn-float {
    float: left;
}
@media screen and (max-width: 630px){
    .new-tip {
        top: 20px;
        width: 450px;
        margin-left: -225px;
    }
    .tip-update-btn {
        margin-top: 10px;
        clear: both;
        width: 100%;
    }
    .delete-btn-float {
        float: right;
    }
}
@media screen and (max-width: 475px){
    .dn-450{
        display: none;
    }
    .new-tip {
        top: 30px;
        width: 290px;
        margin-left: -145px;
    }
    .fix-pl5 {
        padding-left: 5px;
    }
    .fix-pl9 {
        padding-left: 9px;
    }
    .fix-pl12 {
        padding-left: 12px;
    }
}
.show-new-tip {
    top: 40px;
}
.post-new-tip {
    top: 150px;
}


.tip-rules {
    display: inline-block;
    float: right;
    font-size: 10pt;
    font-weight: 300;
    padding-top: 10px;
}

.tip-pic {
    position: relative;
    margin-left: auto;
    margin-right: auto;

    min-width: 24px;
    min-height: 24px;

    max-width: 96px;
    max-height: 120px;

    height: auto;
    overflow: hidden;

    clear: both;
}


.tip-loading {
    background: url(/static/img/loading-black-20.gif) no-repeat center;
    background-size: 20px 20px;
}

.tip_label {
    position: absolute;
    display: block;
    width: 100%;
    z-index: 100;
    text-align: center;
    top: 0;
    margin-top: 15px;

    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

@media screen and (max-width: 475px) {
    .tip-rules {
        float: left;
    }
}

.fade-out-top {
    top: -50px;
    visibility: hidden;
}

.btn-image {
    cursor: pointer;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    padding: 5px 10px;
    background-color: #ffffff;
    color: #4c5a66;
    border: 0;

    box-shadow: 0 1px 2px 2px rgba(0, 0, 0, .18);
    -webkit-box-shadow: 0 1px 2px 2px rgba(0, 0, 0, .18);
    -moz-box-shadow: 0 1px 2px 2px rgba(0, 0, 0, .18);
}

/* Twitter Tweets Directive ------------------------------------------------------------------------------------------*/
.tweet i { color: #0099d8; }
.tweet a { color: #ffffff; }
.tweet a:hover { color: #ffffff; text-decoration: underline; }
.tweet-icon { color: #0099d8; font-size: 12pt; }
.tweet { margin-bottom: 15px; }