@font-face {
    font-family: 'GothamBold'; /*a name to be used later*/
    src: url('fonts/GothamBold.ttf'); /*URL to font*/
}

@font-face {
    font-family: 'GothamMedium'; /*a name to be used later*/
    src: url('fonts/GothamMedium.ttf'); /*URL to font*/
    ascent-override: 70%;
}

#main {
    height: 100vh;
    padding-top: 5vh;
    padding-bottom: 5vh;
}

#main-column {
    border: none;
    border-radius: 0px;
}

#heading {
    height: 10vh;
    padding: 0 0.4vh;
    /*background-color: #bcd4e6;*/
    /*border-bottom: thin solid grey;*/
}

#body {
    height: 80vh;
    padding: 0 1vh 1vh 1vh;
}

body, html {
    /*background-color: #252020;*/
}

#body-inner {
    border: none;
    border-radius: 5px;
    height: 100%;
    /*width: 100%;*/
}

.body-column {
    height: 100%;
    width: 100%;
    padding: 1vh;
    border: None;
    border-radius: 5px;
}

h1 {
    padding-top: 0%;
    color: #1DB954;
    font-size: 64px;
    font-family: GothamBold;
}

.header {
    padding-top: 0%;
    color: #1DB954;
    font-size: 32px;
    font-family: GothamBold;
}

body {
    margin-left: 15%;
    margin-right: 15%;
}

.vertical-scrolling {
    padding-left: 8%;
    padding-right: 8%;
    width: 90%;
}

h2 {
    color: #1DB954;
    font-family: GothamMedium;
}

h3 {
    color: #1DB954;
    font-family: GothamMedium;
}

p {
    color: rgba(7, 51, 26, 0.53);
    /*color: rgba(152, 255, 152, 0.61);*/
    font-family: GothamMedium;
    font-size: 20px;
}

.row {
    margin-top: 5%;
}

.form-select {
    background-color: #1DB954;
    font-family: GothamMedium;
    color: white;
    margin-bottom: 20px;
    border-radius: 15px;
}

.btn-primary {
    background-color: #1DB954;
    font-family: GothamMedium;
    color: white;
    margin-bottom: 20px;
    margin-top: 15px;
    border-radius: 15px;

}

.btn-primary:hover {
    background-color: rgb(22, 136, 61);
}

.textContainer {
    background-color: rgba(29, 185, 84, 0.33);
    font-family: GothamMedium;
    padding: 12px;
    margin: 10px;
    border-radius: 10px;
    display: none;
}

.textInContainer {
    display: none;
    color: rgba(0, 0, 0, 0.68);
    /*color: rgba(255, 255, 255, 0.68);*/
}

::selection{
    color: #fff;
    background: #1DB954;
}

.wrapper{
    max-width: 450px;
    margin: 50px auto;
}

.wrapper .search-input{
    background: #fff;
    width: 100%;
    border-radius: 5px;
    position: relative;
    box-shadow: 0px 1px 5px 3px rgba(0,0,0,0.12);
}

.search-input input{
    height: 55px;
    width: 100%;
    outline: none;
    border: none;
    border-radius: 5px;
    padding: 0 60px 0 20px;
    font-size: 18px;
    box-shadow: 0px 1px 5px rgba(0,0,0,0.1);
}

.search-input.active input{
    border-radius: 5px 5px 0 0;
}

.search-input .autocom-box{
    padding: 0;
    opacity: 0;
    pointer-events: none;
    max-height: 280px;
    overflow-y: auto;
}

.search-input.active .autocom-box{
    padding: 10px 8px;
    opacity: 1;
    pointer-events: auto;
}

.autocom-box li{
    list-style: none;
    padding: 8px 12px;
    display: none;
    width: 100%;
    cursor: default;
    border-radius: 3px;
}

.search-input.active .autocom-box li{
    display: block;
}

.autocom-box li:hover{
    background: #efefef;
}

.search-input .icon{
    position: absolute;
    right: 0px;
    top: 0px;
    height: 55px;
    width: 55px;
    text-align: center;
    line-height: 55px;
    font-size: 20px;
    color: #1DB954;
    cursor: pointer;
}

.lyricContainer {
    /*overflow: scroll;*/
    /*width: auto;*/
    /*border: 1px solid black;*/
    /*!*height: 100%;*!*/
    /*!*display: -webkit-box;*!*/
    /*height: 100px;*/
    /*!*-webkit-line-clamp: 4;*!*/
    /*!*-webkit-box-orient: vertical;*!*/
    /*overflow: scroll;*/
    /*width:150px;*/
    /*height:150px;*/
    /*line-height:3em;*/
    /*overflow:scroll;*/
    /*padding:5px;*/
}
.tooltip {
    position: absolute;
    text-align: center;
    font: 12px sans-serif;
    /*  pointer-events: none;	This line needs to be removed */
}

.tooltip p {
    color: antiquewhite;
}

.tree {
    font-size: 10px;
}

.highlight {
    background-color: #1DB954;
}


.unhighlight {
    background-color: transparent;
}

.tooltip2 {
    position: absolute;
    text-align: left;
    font-family: "SuisseIntl";
    font-size: 12px;
    width: 80px;
    height: 52px;
    padding: 8px;
    background: white;
    pointer-events: none;
    background-color: white;
    line-height: 0.05em;
    /* border: solid;
    border-width: 1px; */
}

#repetition-matrix,
#repetition-matrix-mine {
    text-align: center;
}

.radar-chart .area {
    fill-opacity: 0.7;
}
.radar-chart.focus .area {
    fill-opacity: 0.3;
}
.radar-chart.focus .area.focused {
    fill-opacity: 0.9;
}
.area.germany, .germany .circle {
    fill: #FFD700;
    stroke: none;
}
.area.argentina, .argentina .circle {
    fill: #ADD8E6;
    stroke: none;
}