

html {
    /*position: relative;
    min-height: 100%;*/
    height: 100%;
    background-color: #272626;
}
body {
    font-family: 'Encode Sans Condensed', sans-serif;
    /*background-color: #F1F3F4; /* Gray: Chrome search bar */
    /*background-color: #f1f1f1; /* Gray: Dunkest */
    background-color: #f7f7f7; /* Custom Gray */
    /*margin-bottom: 210px; /* Margin bottom by footer height */
}

.dropdown-item.active, .dropdown-item:active {
    background-color: #F38216;
}

.social-icon {
    color: rgba(255,255,255,.5);
    font-size: 27px;
}
.social-icon:hover {
    color: #BABCBD;
    text-decoration: none;
}

.ui-autocomplete {
    max-height: 150px;
    overflow-y: auto;
    /* prevent horizontal scrollbar */
    overflow-x: hidden;
    z-index: 1000;
}
/* 
    IE 6 doesn't support max-height we use height instead, 
    but this forces the menu to always be this tall.
*/
* html .ui-autocomplete {
    height: 200px;
}
/*
.ui-menu .ui-menu-item-wrapper:hover {
    background-color: #F38216 !important;
    border-color: white;
    color: white;
}
*/
div.ui-state-active {
	border: 1px solid white !important;
	background: #F38216 !important;
	color: white !important;
}

.text-dunkest {
    color: #F38216;
}
a.text-dunkest:hover {
    color: #F38216;
}

tr.bg-odd-rows {
    /*background-color: #F8F9FA !important;*/
    background-color: white !important;
}
tr.bg-even-rows {
    background-color: white;
}

td {
    white-space: nowrap;
}
.th-custom-gray {
    background-color: #343a40 !important;
}

.custom-param-click {
    white-space: nowrap;
}
.custom-param-click:hover {
    cursor: pointer;
}

.btn-outline-dunkest {
    /*border:  1px solid #e7e8e8;*/
    /*border:  1px solid #e2e2e2;*/
    border: 1px solid #d0d0d0;
    background-color: white;
    /*color: #F38216;*/
}
.btn-outline-dunkest.active {
    /*border:  1px solid #e7e8e8;*/
    /*border:  1px solid #e2e2e2;*/
    border: 1px solid #d0d0d0;
    background-color: #F38216;
    /*background-color: #fe9f45;*/
    color: white;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 15px;
    border-radius: 5px;   
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}
.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%; 
    background: #343a40;
    cursor: pointer;
}
.slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #343a40;
    cursor: pointer;
}

.loader {
    border: 10px solid #f3f3f3;
    border-radius: 50%;
    border-top: 10px solid gray;
    width: 90px;
    height: 90px;
    
    -webkit-animation: spin 1.3s linear infinite; /* Safari */
    animation: spin 1.3s linear infinite;
}
/* Safari */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    /*height: 210px; /* Set the fixed height of the footer here */
    /*line-height: 60px; /* Vertically center the text there */
    /*padding-top: 22px;*/
}

.footer-seo {
    color: #dee2e6;
}
.footer-seo h6 {
    margin-bottom: 0;
    color: #F38216;
}
.footer-seo-link, .footer-seo-link:hover {
    color: #dee2e6;
    text-decoration: underline;
}
.footer-seo-list {
    list-style-type: none;
}
.footer-seo-li {
    padding-top: 5px;
}
.footer-seo-link-players {
    color: #dee2e6;
}
.footer-seo-link-players:hover {
    color: #dee2e6;
    text-decoration: underline;
}
.footer-info {
    background-color: #272626;
    color: #dee2e6;
}

/* Devices up to 'landscape mode' */
@media only screen and (max-width: 767px) {
    body {
        font-size: 85%;
        /*margin-bottom: 185px;*/
        /*margin-bottom: 272px;*/
    }
    
    .nav-link {
        font-size: 1rem;
    }
    
    .big-number {
        font-size: 300% !important;
    }
    
    .stats-h5 {
        font-size: 130%;
    }
    
    .footer {
        /*height: 185px;
        padding-top: 19px;*/
        height: 272px;
        padding-top: 22px;
    }
}
/* Landscape mode and up */
@media only screen and (min-width: 576px) {
    #tags {
        width: 250px;
    }
} 
/* Tablets devices and up */
@media only screen and (min-width: 768px) {
    body {
        /*margin-bottom: 210px;*/
        /*margin-bottom: 310px;*/
    }
    
    .footer {
        /*height: 210px;
        padding-top: 22px;*/
        height: 310px;
        padding-top: 30px;
    }
}