@import url(../monster/scss/icons/font-awesome/css/font-awesome.min.css);
/* Main row container */
.row {
	display: flex;
	flex-wrap: wrap;
	margin-top: 140px;
    margin-right: 0px;
    margin-left: 0px;
    /* justify-content: space-around; */
	/* background-color: salmon; */
}

.default-row {
    display: flex;
}

.default-column {
    display: flex;
    flex-direction: column;
}

.percent-column {
    display: flex;
    flex-direction: column;
    flex-basis: 220px;
}

/* Left sidebar */
.left-column{
	flex-direction: column;
	/* background-color: pink; */
	width: 40vw;
    flex-basis: 8vw;
    flex-grow: 1;
    min-width: 200px;
    /* margin: 15px; */
	/* margin-left: 15px; */
}

.left-column div{
	/*margin: 10px;*/
}

.section-button{
	flex-direction: row;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 10px;
	background-color: #868686;
	color: #FFFFFF;
	font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-style: normal;
	font-size: 15px;
    cursor: none;
}

.section-selected, .section-button:hover {
    background-color: #efd038;
}

.static-bar {
    display: flex;
    height: 5vh;
    background-color: #2b961f;
    align-items: center;
}

.static-bar .text-box {
    color: white;
    text-align: left;
    padding: 10px;
    font-size: 1.2em;
    font-weight: bold;
    white-space: nowrap;
}

.static-bar .content-box {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 9px;
    overflow: hidden;
}

.expanded-container .content-box {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 9px;
    margin: 20px;
    flex-wrap: wrap;
}

.static-bar .drop-button {
    padding: 10px;
    cursor: pointer;
}

.filter-card-container {
    font-size: 0.9em;
    display: flex;
}

.filter-card-container .filter-card-label {
    font-weight: bold;
    background-color: #ffffff;
    color: #2b961f;
    padding: 2px;
    white-space: nowrap;
}

.filter-card-container .filter-card-button {
    background-color: #dadada;
    padding: 2px;
}

.subsection-button{
	display: flex;
	flex-direction: row;
	padding-left: 10px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #BCBEC0;
    font-size: 12px;
    cursor: pointer
}

.subsection-button:hover {
    color: #6E4C1F;
  }

.subsection-selected {
    font-weight: 700;
    color: #6E4C1F;
}

.right-side {
	flex-direction: column;
	width: 60vw;
    flex-basis: 60vw;
    flex-grow: 1;
    /*min-height: 80vh;*/
	margin-top: 10px;
    margin: 10px;
}

.menus-row {
	flex-direction: row;
	/* background-color: yellow; */
}

.nav-tabs-container{
	margin-top: 5px;
}

.canvas-row {
	display: flex;
    flex-wrap: wrap;
	flex-direction: row;
	/* background-color: blue; */
}

.hide-item {
    display: none;
}

.map-canvas-container{
	flex-direction: column;
	/* background-color: red; */
	/*width: 45%;*/
    flex-grow: 1;
    flex-basis: 45%;
    min-width: 300px;
	margin-right: 10px;
}

.data-canvas-container{
	flex-direction: column;
	/*background-color: rosybrown;*/
	/* width: 50%; */
    flex-grow: 1;
    flex-basis: 45%;
	max-height: 75vh;					/* This setting allows scrolling on this section*/
	overflow: auto;
	/* background-color: springgreen; */
}

.row-flex {
	display: flex;
	flex-direction: row;
}

.position-container {
	display: flex;
	flex-direction: row;
    justify-content: center;
}

.row-percents {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    margin-bottom: 40px;
}

.chart-container {
    position: relative;
    height: 450px;
    max-width: 800px;
    margin: auto;
}

@media (max-width: 800px){
    .chart-container {
        position: relative;
        margin-left: 20px;
    }
}

/* MAP STYLES */
.year-filter{
    position: relative;
    color: #404040;
    font-weight: 400;
    text-align-last: center;
    outline: none;
    border-radius: 3px;
    border: 2px solid rgba(0, 0, 0, 0.315);
    background-color: white;
}

/* PODIUM STYLES */
.podium{
    padding: 20px;
    margin-right: 10px;
    width: 85px;
    color: white;
    font-weight: bold;
    font-size: 2.5em;
    line-height: 0.6em;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.podium-label{
    width: 85px;
    margin-right: 10px;
    text-align: center;
    font-weight: 400;
}
.podium-first{
    background-color: #a82f31;
    height: 180px;
}
.podium-second{
    background-color: #F89A21;
    height: 150px;
}
.podium-third{
    background-color: #A86F0C;
    height: 120px;
}
.podium-fourth{
    background-color: #BD4F28;
    height: 100px;
}

.podium-draw{
    background-color: #4F0614;
    height: 20vh;
    margin-top: 5vh;
}

.podium-icon-image{
    width: 85px;
    padding: 20px;
    padding-top: 0px;
    margin-right: 10px;
    align-items: flex-start;
}

.podium-align {
    align-items: flex-end;
}

.percent-data{
    font-size: 45px;
    color: #a82f31;
    font-weight: 800;
    text-align: center;
}

.percent-text{
    font-weight: bold;
    text-align: center;
}

/* POSITION STYLES */
.style-position-number{
    color: #a82f31;
    font-weight: 800;
    font-size: 40px;
    position: relative;
    left: 15%;
    bottom: 20px;
}

.percent-year{
    color: #a82f31;
    font-weight: 800;
    font-size: 20px;
}

b {
    font-weight: bold;
}

.sidebar_hide_show_sections_a{
    display: flex;
    flex-direction: column;
    background-color: transparent;
    justify-content: center;
    height: 80vh;
    /* width: 1.5vw;  */
    position: absolute;
    z-index: 999;
}

.btns_hide_show_map_charts{
    /* background-color: rgb(190, 190, 190);  */
    background-color: white;
    border-radius: 3px;
    border: 2px solid rgba(0, 0, 0, 0.315);
    width: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 10px;
    flex-basis: 10vh;
}

.legend {
    line-height: 18px;
    color: #555;
}
.legend i {
    width: 18px;
    height: 18px;
    float: left;
    margin-right: 8px;
    opacity: 0.7;
}

.checkboxSel {
    background-color: #ddd;
}

.select-filter {
    color: #2b961f;
    font-weight: 800;
    text-align-last: center;
    outline: none;
    border-radius: 6px;
    border: 2px solid black;
    display: none;
}

.info {
    padding: 10px;
    background: white;
    background: rgba(255,255,255,0.8);
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    border-radius: 5px;
    width: fit-content;
}
.info h4 {
    margin: 0 0 5px;
}



/* This makes the new controls in the map to be added at the left */
.leaflet-control {
    clear: none;
}

.podium-download {
    text-align: right;
    margin-right: 35px;
}

.map-download {
    position: absolute;
    top: 10px;
    right: 30px;
    z-index: 400;
    border-radius: 3px;
    border: 2px solid rgba(0, 0, 0, 0.315);
  }

.watermark {
    text-align: center;
    font-size: 0.7rem;
}

.bottom-text-map {
    position: absolute;
    bottom: 0px;
    right: 45px;
    z-index: 400;
    color: darkgray;
}

.filters-floatting-container{
	//position: absolute;
	background-color: white;
	//top: 10px;
	//left: 60px;
	z-index: 99;
	display: flex;
	flex-direction: column;
}

@media (max-width: 768px){
	.filters-floatting-container{
		top : 60px;
	}
}

.filter-second-option{
	display: flex;
	flex-direction: row;
    width: 30vw;
}

.drop-down-icon{
    display: unset !important;
	width: 8px;
	height: 8px;
}

.filter-main-option{
	padding : 8px;
	white-space: nowrap;
}

/* .filter-main-option:hover{
	color : #78A22F;
	cursor : pointer;
} */

.filter-second-item-option{
	padding : 8px;
	margin : 5px;
	margin-bottom: 0px;
	margin-top: 0px;
    margin-right: 5px;
}

.filter-second-item-option:hover{
	color : #78A22F !important;
	cursor : pointer;
}

.filters-section{
	display: flex;
	flex-direction: row;
	//max-width: 36vw;
	overflow: auto;
	padding: 6px;
}

.filters-section::-webkit-scrollbar {
  display: none;
}

.filter-child-option{
	transition-duration: 1s;
	display: flex;
	flex-direction: column;
	background-color: #f2f2f2;
	padding : 10px;
	padding-bottom: 15px;
	padding-top: 15px;
	color : #006db5;
	margin-right: 5px;
	border-style: solid;
	border-width: 0px;
	border-bottom-width: 2px;
	border-color: #54667a;
	color : #54667a;
	background-color: white;
	margin : 10px;
	cursor: pointer;
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

.child-selected{
	color : #006db5;
	border-color: #006db5;
}

.filter-child-option-head{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width : 60px;
	height: 80%;
	margin : auto;
}

.filter-child-option-body{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	/* height: 20%; */
}

.filter-child-option-image{
	width : 50px;
}


.filter-child-option:hover{
	background-color: #e6e6e6;
}

.filter-child-option:selected{
	background-color: #e6e6e6;
}


.no-padding{
	padding: 0px;
	background-color: white;
	margin-left: 15px;
	margin-right: 15px;
}

.filter-second-item-option:active{
	border-style: none;
	border-color: #78A22F;
}

.score-1{
    background-color: rgba(255,0,0,0.5);
}
.score-2{
    background-color: rgba(254,192,0,0.5);
}
.score-3{
    background-color: rgba(254,255,0,0.5);

}
.score-4{
    background-color: rgba(0,206,0,0.5);

}
.score-5{
    background-color:rgba(0,103,0,0.5);
}
.textTable{
    font-style: italic;
    font-weight: bold;
    text-align: center;
}

.slick-cbtn{
    background-color: white;
    border-color: white;
    border-style: solid;
}

.expanded-container {
    display: flex;
    z-index: 1500;
    background-color: #2b961f;
}

.leaflet-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
