.table td:first-child, .table th:first-child, .table tr:first-child {
	padding-left: .75rem;
}

.table td:last-child, .table th:last-child, .table tr:last-child {
	padding-right: .75rem;
}

.iframe-container {
	overflow: hidden;
	/* 16:9 aspect ratio */
	padding-top: 56.25%;
	position: relative;
}

.iframe-container iframe {
	border: 0;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

/* width */
::-webkit-scrollbar {
	width: 5px;
	height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
	box-shadow: inset 0 0 5px #9fb8bf;
	border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: #096a85;
	border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: #b30000;
}