﻿h4 {
    color: white;
}

/* to be implemented correctly, works well on pc but mobile currently not.*/
/*body, html {
    padding: 0 !important;
    margin: 0;
}

@media (min-width: 768px) {
    body {
        height: 100vh;
        width: 100vw;
        overflow: hidden;*/ /* Prevent body from scrolling */
    /*}

    #contentContainer {
        height: 100vh;*/ /* Full viewport height */
        /*overflow-y: hidden;*/ /* Initially hide overflow */
    /*}

    .content {
        height: 100vh;
        overflow-y: auto;
    }

    .sidebar {
        overflow-y: scroll;
        height: 100vh;
        margin-left: -15px;
    }
}*/

body {
    font-family: 'Roboto', sans-serif !important;
}

#notifications {
    box-shadow: 8px 7px 6px rgba(0, 0, 0, 0.5); /*Darker shadow, more like its hovering*/
}

.card-header {
    background-color: #303742;
}

.footer {
    margin-top: 25px;
}

h1 {
    font-size: 52px;
    font-family: 'Oswald', sans-serif;
}

.card {
    background-color: #1c1b1b;
    float: left;
    margin: 1rem;
}

.card-title {
    margin: .75rem;
}

.card-text {
    padding: 0.75rem 1.25rem;
}

.list-group-item {
    display: block;
}

#notifications p {
    margin-bottom: 0rem;
    font-size: 24px;
    text-align: center;
    font-weight: bold;
    font-size: 1vw;
    max-height: 34px;
}

@media screen and (max-width: 1600px) {
     #notifications p {
         font-size: 14px;
     }
 }

/*Scrollbar Style*/
/* width */
::-webkit-scrollbar {
    width: 12px;
}

/* Track */
::-webkit-scrollbar-track {
    /*background: #f1f1f1;*/
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* For Firefox */
html {
    scrollbar-gutter: stable;
    scrollbar-color: #888;
}

html:hover {
    scrollbar-color: #555;
}

/*Item Quality*/
.rusty {
    color: slategray;
}

.standard {
    color: white;
}

.great {
    color: gold;
}

.imperial {
    color: orangered;
}

.marquise {
    color: royalblue;
}

.royal {
    color: darkviolet;
}

.legendary {
    color: darkorange;
    background: linear-gradient(45deg, darkorange, gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    overflow: hidden;
}

.eternal {
    color: fuchsia;
    background: linear-gradient(45deg, fuchsia, violet);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    overflow: hidden;
}

@media (min-width: 992px) {
    .col-lg-2 {
        min-width: 275px;
    }
}