@media (min-width: 1920px) {
	.container {
		max-width: 1900px;
		width: unset !important;
	}
}

.btn-icon {
	padding: 3px 6px;
	font-size: 18px;
}

/* Change all tooltip animations */
.tooltip {
    opacity: 0;
    transition: opacity 1s ease-in-out; /* 1 second duration */
}

.tooltip.in {
    opacity: 0.9;
}

.tooltip.top .tooltip-arrow {
    transition: all 0.3s ease-in-out;
}

.tooltip.bottom .tooltip-arrow {
    transition: all 0.3s ease-in-out;
}

.tooltip.left .tooltip-arrow {
    transition: all 0.3s ease-in-out;
}

.tooltip.right .tooltip-arrow {
    transition: all 0.3s ease-in-out;
}

