/* ==========================================================================
   Tags
   ========================================================================== */

html {
    min-height: 100%;
    line-height: 1.4;
    background: url("../img/background.png") no-repeat;
    background-size: cover;
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

header {
    height: 100px;
    padding: 0 15px;
    color: #49473d;
    text-shadow: 5px 5px 2px #9a978a;
}
header > h1 {
    padding-top: 35px;
    padding-left: 50px;
    font-size: 50px;
}

body {
    cursor: default;
}

img, svg {
    vertical-align: middle;
}

/* ==========================================================================
   Classes
   ========================================================================== */

.hidden {
    display: none !important;
}

.fullListItem {
    list-style-image: url("../img/square.svg");

    border-left: 24px solid;
    border-image: url("../img/LeftBorderLight.png") 0 24 repeat;
}

.fullListItem > li {
    background-color: #aca593;
    font-size: 25px;
    list-style-position: inside;
    list-style-type: square;
    margin: 0 50px 20px 0;
    min-width: 175px;
    padding-left: 14px;

    box-shadow: inset 0 0 0 0 #615f53;
    -webkit-transition: all ease 0.2s;
    -moz-transition: all ease 0.2s;
    transition: all ease 0.2s;

    border-top: 6px solid rgba(0,0,0,0);
    border-bottom: 6px solid rgba(0,0,0,0);
}

.fullListItem > li:hover {
    border-top: 6px solid;
    border-bottom: 6px solid;
    border-image: url("../img/TopBorder.png") 6 0 repeat;
}


.fullListItem > li:hover, .activeListItem {
    color: #d2d1bf;
    background-color: #615f53 !important;;
    box-shadow: inset 150px 0 0 0 #615f53 !important;
    list-style-image: url("../img/squareHover.svg");

}

.activeListItem {
    border-top: 6px solid rgba(0,0,0,0) !important;
    border-bottom: 6px solid rgba(0,0,0,0) !important;
    border-image: url() !important;
}

.expandedSlider {
    margin: 0 0 20px 0 !important;
}

.expandedSlider > .floatRight > .volSlider:hover {
    transform: scale(1.3);
    height: 25px;
    stroke: black;
}

.volSlider, .volSlider > line {
    transition: 200ms;
    transition-timing-function: ease-in-out;
}

.expandedSlider > .floatRight > .volSlider > line:hover {
    stroke: #fffaf3 !important;
    height: 100px;
}

.footer {
    position: absolute;
    right: 0;
    bottom: 9%;
    left: 3.5%;
    padding: 16px 16px 16px 50px;
    background-color: #d3cdb3;
    width: 90%;
    box-shadow: 3px 3px #9f9986;

    border-left: 24px solid;
    border-image: url("../img/LeftBorder.png") 0 24 repeat !important;

    font-size: 25px;
    text-align: left;
}

.scrollable {
    overflow-y: scroll;
    height: 575px;
}

.scrollable::-webkit-scrollbar {
    width: 12px;
}

.scrollable::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

.scrollable::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: rgb(55, 51, 42);
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
}

.fadeIn {
    opacity: 1;
    transition: all 0.1s;
    padding-left: 10px;
}

.fadeIn.hide {
    opacity: 0;
    padding-left: 0;
}

.floatRight {
    float: right;
    padding-right: 1%;
}

.arrow {
    position: absolute;
    width: 50px;
    height: auto;

    transition: all 0.3s;
}

.arrowSpan {
    position: relative;
}

.arrowSpanPointRight {
    float: left;
    left: -25px;
    transform: scaleX(-1);
}

.arrowSpanPointLeft {
    float: right;
    left: 10px;
}

.rightListTopBottom {
    height: 22px;
    background-color: #b6b097;
    margin-left: 10px;
    border: 9px solid #cfc7b1;
    box-sizing: border-box;
}

.dim {
    opacity: 0.3;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000;
    transition: all 0.3s;
}

.hide {
    opacity: 0;
}

/* ==========================================================================
   IDs
   ========================================================================== */

#leftColumn {
    width: 20%;
    float: left;
    padding: 50px 15px 5px 3.5%;
}

#middle {
    width: 42.5%;
    min-width: 650px;
    float: left;
    padding: 5px 15px;
    margin: 0 5px 5px 5px;
}

#right {
    width: 15%;
    float: left;
    padding: 5px 15px;
    margin: 0 5px 5px 5px;
    text-align: center;

    z-index: 1050;
    position: relative;
}

#right ul {
    margin: 0;
    padding-left: 10px;
}

#right ul > li {
    margin: 0;
    padding: 4%;
    font-size: 25px;
    background-color: #cfc7b1;
    list-style-type: none;
}

#right ul > li:hover {
    color: #bfbab1;
    background-color: #4e4940;

    -webkit-animation: bgcolorchange 2s infinite; /* Chrome, Safari, Opera */
    animation: 2s infinite bgcolorchange;

}

/* ==========================================================================
   At-Rules
   ========================================================================== */

@keyframes bgcolorchange {
    0% {
        background-color: #444037;
    }
    20% {
        background-color: #444037;
    }
    50% {
        background-color: #726c5f;
    }
    80% {
        background-color: #444037;
    }
    100% {
        background-color: #444037;
    }
}

/* Chrome, Safari, Opera */
@-webkit-keyframes bgcolorchange {
    0%   { background-color: #444037; }
    20%  { background-color: #444037; }
    50%  { background-color: #726c5f; }
    80%  { background-color: #444037; }
    100% { background-color: #444037; }
}
