/*
.oip-wrapper {
	margin-bottom: 30px;
}

.oip-chart {
	width: 100% !important;;
	border: 1px solid #dadada;
	height: 500px !important;
	padding-bottom: 20px;
	padding-top: 20px;
}

.oip-symbols {
	margin-bottom: 20px;
}


.oip-loader-wrapper {
	display: flex;
	justify-content: center; 
	align-items: center;
	height: 100%;
}

.oip-loader {
	border: 10px solid #f3f3f3;
	border-radius: 50%;
	border-top: 10px solid #3366cc;
	width: 100px;
	height: 100px;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
}*/

/* Safari */
/*
@-webkit-keyframes spin {
	0% { -webkit-transform: rotate(0deg); }
	100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.google-visualization-tooltip {
    display: none !important;
}*/

/* Custom style */
.oip-loader-global {
			position: absolute;
			top: 50%;
			left: 50%;
			transform: translate(-50%, -50%);
			padding: 10px 20px;
			background: rgba(255,255,255,0.9);
			border-radius: 8px;
			font-size: 14px;
			color: #272B5C;
			font-weight: bold;
			z-index: 1000;
		}
		.oip-wrapper {
			position: relative;
		}
		.oip-chart {
			width: 100% !important;
			height: 300px !important;
		}
		.oip-chart-global {
			visibility: hidden;
		}
		.oip-interactive {
			display: flex;
			flex-wrap: wrap;
			justify-content: space-between;
			align-items: flex-start;
		}
		.oip-chart.oip-interactive {
			background: #fff;
			border-radius: 20px;
			padding: 20px; 
			min-height: 350px;
			display: flex;
			flex-wrap: wrap;
			justify-content: center;
			align-items: center;
		}
		.oip-interactive-left {
			width: 48%;
			display: flex;
			flex-wrap: wrap;
			align-items: flex-start;
		}
		.oip-interactive-right {
			width: 48%;
		}
		.oip-filter-form label {
			margin-bottom: 7px;
			display: block;
			font-weight: bold;
		}
		.oip-filter-form select,
		.oip-filter-form input[type="date"] {
			width: 100%;
			padding: 8px;
			margin-bottom: 15px;
			border-radius: 0;
			border: 1px solid #eee;
			outline: none;
		}
		.oip-filter-form button {
			background-color: #272b5c;
			color: #fff;
			border-radius: 0;
			border: none;
			padding: 10px 15px;
		}
		.oip-filter-form button:hover,
		.oip-filter-form button:active,
		.oip-filter-form button:focus {
			background-color: #000 !important;
			color: #fff;
		}
		.oip-chart-title {
			color: #272b5c;
			font-weight: bold;
			text-align: center;
			width: 250px;
		}
		
		@media (max-width: 767px) {
			.oip-interactive-left {
				width: 100%;
			}
			.oip-interactive-right {
				width: 100%;
				margin-top: 20px;
			}
			.oip-chart.oip-interactive {
				padding: 10px !important;
			}
			.oip-chart.oip-interactive {
				min-width: 360px !important;
			}
		}