        #chart-container{
            height: 500px;
            width: 100%;
	    }

		canvas{
			-moz-user-select: none;
			-webkit-user-select: none;
			-ms-user-select: none;
		}

		body {font-family: Arial;}

		.indicators-panel {
			display: none;
			background: snow; 
			border: 1px solid lightblue; 
			margin-bottom: 10px;
		}
		
		.download-formats-panel {
			display: none;
			background: snow; 
			border: 1px solid lightblue; 
			margin-bottom: 10px;
		}		
		.tool-button:hover {
			background: white;
		}

		.mobile-tool-button-indicators {
			border:none;
			background: white;
            padding-top: 15px;
		}
		
		.mobile-tool-button-indicators :hover {
			color: green;
		}

		.mobile-tool-button-download {
			border:none;
			background: white;
            padding-top: 15px;
		}
		
		.mobile-tool-button-download :hover {
			color: #2196F3;
		}
		
		.mobile-tool-button-more-data:hover {
			background: white;
			color: crimson;
		}

		.mobile-tool-button-cif:hover {
			background: white;
			color: orangered;
		}
        
        .mobile-icon {
            padding-bottom: 15px;
            padding-top: 4px;
		}

		/* Style the tab */
		.tab {
			overflow: hidden;
			//border: 1px solid #ccc;
			//background-color: #f1f1f1;
            padding-bottom: 10px;
		}

		/* Style the buttons inside the tab */
		.tab-button {
            border-bottom: 1px solid #ccc;
            border-top: none;
            border-left: none;
            border-right: none;
			background-color: inherit;
			float: left;
			outline: none;
			cursor: pointer;
			padding: 14px 5px;
			transition: 0.3s;
			font-weight: normal;
		}


		/* Change background color of buttons on hover */
		.tab button:hover {
			background-color: #ddd;
		}

		/* Create an active/current tablink class */
		.tab button.active {
			background-color: #ccc;
		}

		/* Style the tab content */
		.tabcontent {
			display: none;
			padding: 6px 12px;
			border: 1px solid #ccc;
			border-top: none;
		}

		/* Style the close button */
		.topright {
			float: right;
			cursor: pointer;
			font-size: 28px;
		}

		.topright:hover {color: red;}

		#snackbar {
			visibility: hidden;
			min-width: 250px;
			margin-left: -125px;
			//background-color: #333;
			background-color: red;
			color: #fff;
			text-align: center;
			border-radius: 2px;
			padding: 16px;
			position: fixed;
			z-index: 1;
			left: 50%;
			bottom: 30px;
			font-size: 17px;
		}

		#snackbar.show {
			visibility: visible;
			-webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
			animation: fadein 0.5s, fadeout 0.5s 2.5s;
		}

		@-webkit-keyframes fadein {
			from {bottom: 0; opacity: 0;} 
			to {bottom: 30px; opacity: 1;}
		}

		@keyframes fadein {
			from {bottom: 0; opacity: 0;}
			to {bottom: 30px; opacity: 1;}
		}

		@-webkit-keyframes fadeout {
			from {bottom: 30px; opacity: 1;} 
			to {bottom: 0; opacity: 0;}
		}

		@keyframes fadeout {
			from {bottom: 30px; opacity: 1;}
			to {bottom: 0; opacity: 0;}
		}

		/* The Modal (background) */
		.modal {
			display: none; /* Hidden by default */
			position: fixed; /* Stay in place */
			z-index: 10000; /* Sit on top */
			padding-top: 10px; /* Location of the box */
			left: 0;
			top: 0;
			width: 100%; /* Full width */
			height: 100%; /* Full height */
			overflow: auto; /* Enable scroll if needed */
			background-color: rgb(0,0,0); /* Fallback color */
			background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
		}

		/* Modal Content */
	.modal-content {
		background-color: darkgreen;
		color: white;
		margin-top: 100px;
		padding: 20px;
		width: 30%;
		border: 1px solid lightgrey;
		border-radius: 10px;
		margin: 15% auto;
	}
		.modal-content p {
			font-size:16px;
		}

		.modal-content p a {
			color: white;
		}

	/* The Close Button */
	.close {
		color: #aaaaaa;
		float: right;
		font-size: 28px;
		font-weight: bold;
	}

		.close:hover,
		.close:focus {
			color: #000;
			text-decoration: none;
			cursor: pointer;
		}

		.btn-m {
			border: none;
			color: white;
			padding: 5px;
			font-size: 12px;
			cursor: pointer;
		}
		.more-data {
			background-color: #f44336;
			margin-left: 30px;
		}
		
		.more-data:hover {background: #da190b;}

		.btn-n {
			background-color: green;
			color: white;
			padding: 10px;
			font-size: 14px;
			border: none;
			outline: none;
		}

		.btn-n:hover, .dropdown:hover .btn-n {
			background-color: darkgreen;
			cursor: pointer;
		}

		.messagebox{
			background-color: green;
			color: white;
			padding-right: 20px;
		}

		.messagebox-topright {
			float: right;
			cursor: pointer;
			font-size: 26px;
		}

		.messagebox-topright:hover {
			color: black;
		}
		.btn-f {
			background-color: transparent;
			color: dimgray;
			border: none;
			outline: none;
			background: white;
		}

		.btn-f:hover {
			background: lightgrey;
			cursor: pointer;
		}


		.arrow-right {
			border: solid black;
			border-width: 0 3px 3px 0;
			display: inline-block;
			padding: 2px;
			transform: rotate(-45deg);
			-webkit-transform: rotate(-45deg);
		}

		.sidebar-box {
		  position: relative;
		  overflow: hidden;
		}

		.sidebar-box .read-more { 
		  position: absolute; 
		  bottom: 0; 
		  left: 0;
		  width: 100%; 
		  text-align: center; 
		  margin: 0; 
		  padding: 20px 0; 
			
		  background-image: linear-gradient(to bottom, transparent, white);
		}

		#leftcolumn, #rightcolumn {
			border: 1px solid white;
			float: left;
		}
		#leftcolumn {
			max-width: 20%;
			background-color: white;
			padding-right: 10px;
		}
		#rightcolumn {
			width: 98%;
		}

		.downloads-list-title {
			font-size: 16px;
			font-weight: bold;
			margin-bottom: 20px;
			margin-top: 10px;
			margin-left: 10px;
		}

		.downloads-title {
			font-size: 14px;
			margin-bottom: 5px;
			margin-right: 15px;
			margin-left: 15px;
		}

		.indicators-list-title {
			font-size: 14px;
			color: dimgray;
			font-weight: bold;
			margin-bottom: 10px;
			margin-top: 10px;
			margin-left: 10px;
		}

		.indicators-list-title-icon {
			margin-right: 5px;
		}
		
		.indicator-title {
			font-size: 14px;
			margin-bottom: 5px;
			margin-right: 15px;
			margin-left: 15px;
		}

		.indicator-title-selected {
			font-size: 15px;
			font-weight: bold;
		}

		.indicator-group-title {
			font-size: 15px;
			margin-bottom: 10px;
			margin-right: 15px;
			margin-left: 15px;
			color: brown; 			
		}

		.indicator-bullet {
			height: 10px;
			width: 10px;
			margin-right: 5px;
		}

		.indicator-bullet-selected {
			height: 15px;
			width: 15px;
			margin-right: 5px;
		}
		.float-left {
			float: left;
		}

		.float-right {
			float: right;
		}

		footer {
			clear: both;
			background-color: #484646;
			font-size: .8em;
			height: 100px;
		}

		footer.footer-text a {
			text-decoration: none;
			color:#ffffff;
		}

		footer {
			text-align: center;
			height: auto;
			padding: 10px 0;
		}

		footer p {
			margin: 0;
		}
			
		.content-wrapper {
			margin: 0 auto;
			max-width: 960px;
		}

		.no-wrapper {
			white-space:nowrap;
		}	
		.page-title {
			font-size: 28px;
			font-weight: bold;
			margin-top: 20px;
			margin-bottom: 20px;
		}
		
		.page-title-small {
			font-size: 12px;
			font-weight: bold;
			display:inline;
		}

		.page-detail {
			font-size: 12px;
			display:inline;
			margin-left: 10px;
		}
		
		
		.mobile-tool-panel-element {
			display: inline-block;
			margin-left: 0px;
			margin-right: 0px;
            margin-top: -10px;
		}
		
		.mobile-tool-panel-element i{
			margin-left: 0px;
			margin-right: 0px;
		}
		
		.mobile-tool-panel-element-right-icon {
			margin-top: 8px;
		}
		
		.btn-d {
			background-color: #2196F3;
			color: white;
			padding: 5px;
			font-size: 12px;
			border: none;
			outline: none;
		}

		.btn-d-wrapper {
            margin-top: 0px;
			margin-bottom: 0px;
		}

		.dropdown {
			position: absolute;
			display: inline-block;
		}

		.dropdown button {
			border-left: 1px solid #0d8bf2;
		}
		
		.dropdown-content {
			display: none;
			position: absolute;
			background-color: #f1f1f1;
			min-width: 160px;
			z-index: 1;
		}

		.dropdown-content a {
			color: black;
			padding: 12px 16px;
			text-decoration: none;
			display: block;
		}

		.dropdown-content a:hover {background-color: #ddd}

		.dropdown:hover .dropdown-content {
			display: block;
		}

		.btn-d:hover, .dropdown:hover .btn-d {
			background-color: #0b7dda;
		}
		.my-page-wrapper {
			margin-left: 20px;
			margin-right: 20px;
		}

		.unece-logo-big {
			margin: 5px 5px 5px 5px;
		}
		
		.countries-in-figures {
			display: table; 
			width:100%;
		}
		
		.countries-in-figures-link {
			display: table-cell; 
			vertical-align: middle;
		}
		
		.countries-in-figures-image {
			width: 40px;
		}
		
		.countries-in-figures-label {
			display: table-cell; 
			vertical-align: middle; 
			font-size: 15px; 
			font-weight: bold; 
			color: dimgray;	
		}
		
		.country-selection-div {
			margin: 0 auto;
		}
		
		.country-selection-column {
			width: 30%; 
			float: left; 
			margin: 4px;
		}
		
		.time-series-table-country {
			text-align: left; 
			font-weight: bold;
		}
		
		.time-series-table-value {
			text-align: right; 
			padding-right: 50px;
		}
		
		.sidebar-box {
			max-height: 40px;
			width: 100%;
		}
				
		.btn-f {
			padding-top: 10px;
			padding-right: 5px;
			padding-bottom: 5px;
			padding-left: 10px;
		}
			
		.sortable {
			margin-bottom: 10px;
		}
		
		.mobile-tool-panel {
			display: block;
		}

        .desktop-elements {
            display: none;
        }		

        .dropdown-content {
          display: none;
          margin-top: 50px;
          position: absolute;
          background-color: #f1f1f1;
          min-width: 160px;
          box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
          z-index: 9999;
        }

        .dropdown-content a {
          color: black;
          padding: 12px 16px;
          text-decoration: none;
          display: block;
        }

        .dropdown-content a:hover {background-color: #ddd}

        .show {display:block;}	

        .mouse-pointer {
	        cursor: pointer;
        }

@media screen and (min-width:760px) {
   .mobile-tool-panel-element-right-icon {
	    margin-top: 8px;
   }

    .btn-d-wrapper {
        margin-top: 0px;
        margin-bottom: 0px;
	}

    #chart-container{
        height: 700px;
        width: 80%;
	}

	#rightcolumn {
		width: 98%;
	}

	.sidebar-box {
		max-height: 40px;
		width: 70%;
	}

	.btn-f {
		padding-top: 10px;
		padding-right: 10px;
		padding-bottom: 10px;
		padding-left: 10px;
	}
	
	.mobile-tool-panel {
		display: block;
	}
 
    .desktop-elements {
        display: none;
    }

    .tab button {
        padding: 14px 16px;
	}

}


@media screen and (min-width:1024px) {
   .mobile-tool-panel-element-right-icon {
	    margin-top: 8px;
   }

    .btn-d-wrapper {
        margin-top: 5px;
        margin-bottom: 20px;
	}

    #chart-container{
        height: 900px;
        width: 60%;
	}

	#rightcolumn {
		width: 78%;
	}

	.sidebar-box {
		max-height: 60px;
		width: 50%;
	}
	
	.btn-f {
		padding-top: 10px;
		padding-right: 10px;
		padding-bottom: 10px;
		padding-left: 10px;
	}
	
	.mobile-tool-panel {
		display: none;
	}

    .desktop-elements {
        display: block;
    }

    .tab button {
        padding: 14px 16px;
	}

}		











/* The Modal (background) */
.modal-download {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 9999; /* Sit on top */
  padding-top: 250px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal-select-countries {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 9999; /* Sit on top */
  padding-top: 50px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal-content-download {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  border: 1px solid #888;
  width: 40%;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s
}

.modal-content-select-countries {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  border: 1px solid #888;
  width: 70%;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  -webkit-animation-name: animatetop-countries;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop-countries;
  animation-duration: 0.4s
}
/* Add Animation */
@-webkit-keyframes animatetop {
  from {top:-300px; opacity:0} 
  to {top:0; opacity:1}
}

@keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}

/* Add Animation */
@-webkit-keyframes animatetop-countries {
  from {top:-300px; opacity:0} 
  to {top:0; opacity:1}
}

@keyframes animatetop-countries {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}

.close-download-file {
  color: white;
  text-decoration: none;
  cursor: pointer;
  float: right;
  font-size: 20px;
  font-weight: bold;
  margin-right: 5px;
  margin-top: -5px;
}

.close-select-countries {
  color: white;
  text-decoration: none;
  cursor: pointer;
  float: right;
  font-size: 20px;
  font-weight: bold;
  margin-right: 5px;
  margin-top: -5px;
}

.btn-close-select-countries {
	background-color: lightblue;
    border-radius: 5px;
	padding: 10px;
    font-size: 14px;
    color: darkslategrey;
    border: 1px solid darkslategrey;
}

.btn-close-select-countries:hover {
    background: black;
    color: white;
}

.btn-download-image {
	background-color: lightblue;
    border-radius: 5px;
	padding: 10px;
    font-size: 14px;
    color: darkslategrey;
    border: 1px solid darkslategrey;
}
		
.btn-download-image:hover {
    background: black;
    color: white;
}

.modal-body {
    margin-top: 20px;
    margin-bottom: 20px;
}

.modal-header {
  padding: 2px 14px;
  background-color: #add8e6; //#5cb85c;
  color: white;
}

.modal-explanation {
	font-size: 14px; 
	font-weight: bold;
}

.modal-body-download {
	padding: 10px 14px;
	height: 30px;
}


.modal-body-download-link {
	font-size: 18px; 
	position: fixed; 
	left: 50%;
}

.modal-footer {
  padding: 2px 14px;
  background-color: #add8e6; //#5cb85c;
  color: white;
}

@media screen and (max-width: 800px) {
	.modal-content-download {
	  width: 80%;
	}

	.modal-content {
		width: 80%;
	}


}















.select-country-button {
  display: inline-block;
  border-radius: 4px;
  background-color: silver;
  border: 1px solid grey;
  color: white;
  text-align: center;
  font-size: 11px;
  padding: 10px;
  width: 150px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
  vertical-align:middle;
}

.select-country-button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.select-country-button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.select-country-button:hover span {
  padding-right: 25px;
}

.select-country-button:hover span:after {
  opacity: 1;
  right: 0;
}


@media screen and (max-width: 800px) {
	.select-country-button {
	  font-size: 10px;
	}	
}	

