/*  VARIABLES */

:root {

    --primaryGreen: #61b061; /*#4dc46a*/
    --secondaryGreen: #498649;
    --bgColor: #1a1e23;
    --lightBG: #282f38;
    --textColor: #fff;
    --shadowColor: #97a5bb73;
    --bgCommentColor: #313841;
    --textCommentColor: #95a1a6;
    --imprBG: #141414;
    --primaryDark: #1f1f21;
    --primaryRed: #e04039;
    --secondaryRed: #be3b3b;
    --normalText: #ffffff;
}

/* GENERAL */

body, html {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-style: italic;
    line-height: 1.5em;
    color: #c5c5c5;
    color: var(--textColor);
    background-color: #1a1e23;
    background-color: var(--bgColor);
    text-align: left;
    margin-top: 0px !important;
    padding-top: 0px !important;
    width: 100%;

    /*height: auto !important; /* real browsers */
    height: 100%; /* IE6: treated as min-height*/
    top: 0px;
    overflow-x:hidden;

}

img {
    max-width: 100%;
}

h1 {
    width: 100%;
    text-align: center;
    font-size: clamp(2.5rem, 9vw, 6rem);
    font-family: 'HarvestItal';
    margin-bottom: 0;
    white-space: nowrap;
}

h2 {
    width: 100%;
    font-family: 'HarvestItal';
    font-size: 3.5rem;
    color: #61b059;
    margin: 0;
    padding: 0;
    line-height: 5.3rem;
}

h3 {
    font-size: 1.8rem;
    opacity: 0.2;
}

h4 {
    font-size: 1.1em;
    color: #bbbbbb;
    color: var(--greyColor);
    font-weight: bold;
    margin-top: 30px;
    padding-left: 30px;
}

p {
    line-height: 1.3em;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    max-width: 800px;
    display: block;
    margin: auto;
    text-align: justify;
    font-style: normal;
}

b {
    font-weight: 500;
}

.container {
    max-width: 1000px;
}

.tintGreen {
    color: #60b060;
    color: var(--primaryGreen);
}

.tintRed {
    color: #e04039;
    color: var(--primaryRed);
}

ul {
    font-style: normal;
    font-family: Raleway;
    line-height:  clamp(1.2rem, 2.7vw, 1.5rem);
    font-size: clamp(1rem, 2.5vw, 1.3rem);
}

li {

}

.gimmePointer {
    cursor: pointer;
}



/* LINKS */
a:link, a:visited {
    color: #60b060;
    color: var(--primaryGreen);
    text-decoration: none;
    font-weight: 500;
}
a:hover, a:active {
    color: #037a24;
    color: var(--secondaryGreen);
}

a.menu:link, a.menu:visited {
    color: #60b060;
    color: var(--primaryGreen);
    text-decoration: none;
    font-family: 'Raleway';
    font-size: clamp(0.9rem, 2.0vw, 1.5rem);
}
a.menu:hover, a.menu:active {
    color: white;
}


/* GREEN AUDIO PLAYER */

.green-audio-player .volume {
    display: none;
}

.green-audio-player {
    background-color: unset;
    width: 30px;
    min-width: 0;
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    display: inline-block !important;
    height: 18px;
    position: relative;
}

.green-audio-player .controls span {
    display: none;
}

.green-audio-player .slider .gap-progress .pin {
    display:none;
}

.green-audio-player .slider {
    background-color: unset;
}

.green-audio-player .controls .controls__slider {
    margin-left: 16px;
    margin-right: 16px;
    border-radius: 2px;
    position: absolute;
    background-color: unset;
    width: 800px;
    left: -23px;
    height: 36px;
    top: -6px;
    z-index: 0;
}

.playerText {
    font-family: Raleway;
    color: white;
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    display: block;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tags {
    font-size: clamp(0.8rem, 2vw, 1rem);
    opacity: 0.4;
    line-height: 0.9rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    display: block;
    padding: 0 10px;
}

.mp3PlayerContainer {
    background-color: #21262d;
    padding: 5px 20px;
    max-width: 800px;
    margin: auto;
    position: relative;
}

.audiobook {
    max-width: 386px;
}

.progressBar {
    background-color: #282f38;
    width: 20%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.green-audio-player .holder {
    z-index: 10;
}

.green-audio-player .slider .gap-progress {
    background-color: #282f38;
}

@keyframes commentFontSize {
    0% {
        font-size: 0.8rem;
    }
    100% {
        font-size: 1.25rem;
    }
}

.topLine {
    background-color: var(--lightBG);
}

/* MOBILE */

@media screen and (max-width: 1200px) {

}

@media screen and (max-width: 767px) {
    li {
        margin-bottom: 10px;
    }
    a.menu {
        font-size: clamp(1.5rem, 2.7vw, 2.0rem) !important;
    }
}

@media screen and (max-width: 1024px) {

}