.scrollbar-thin::-webkit-scrollbar {
	width: 6px;
	height: 6px;
	background-color: #F5F5F5;
}

.scrollbar-thin::-webkit-scrollbar-thumb {
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
	box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
	background-color: rgba(0, 0, 0, 0.4);
}

.scrollbar::-webkit-scrollbar {
	width: 8px;
	height: 8px;
	border-radius: 8px;
	background-color: rgba(0, 0, 0, 0.1);
}

#sidebar.scrollbar::-webkit-scrollbar {
	background-color: rgba(255, 255, 255, 0.2);
}

.scrollbar::-webkit-scrollbar-thumb {
	border-radius: 4px;
	background-color: rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
	box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
}

.scrollbar-light::-webkit-scrollbar {
	width: 6px;
	height: 6px;
	background-color: rgba(255, 255, 255, 0.2);
}

.scrollbar-light::-webkit-scrollbar-thumb {
	background-color: rgba(255, 255, 255, 0.5);
}

.container {
	max-width: 1600px;
	margin: auto;
	padding: 0 20px;
}

.container-outer {
	margin-left: 5%;
	margin-right: 5%;
}

.container-inner {
	margin-left: 10%;
	margin-right: 10%;
}

a {
	color: var(--defaultColor);
	text-decoration: none;
}

img {
	max-width: 100%;
	vertical-align: bottom;
}

p {
	margin: 0;
}

p+p {
	margin-top: 28px;
}

textarea {
	resize: vertical;
}

.flip-h {
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1);
}

.button {
	border: 3px solid var(--defaultColor);
	font-size: 30px;
	font-family: var(--fontBold);
	display: inline-block;
	vertical-align: bottom;
	height: 72px;
	line-height: 68px;
	border-radius: 36px;
	padding: 0 40px;
	background-color: #FFF;
	color: var(--defaultColor);
	text-decoration: none;
	cursor: pointer;
	white-space: nowrap;
	text-align: center;
	-webkit-transition: all 200ms;
	transition: all 200ms;
}

.button.button-sm {
	font-size: 26px;
	height: 62px;
	line-height: 60px;
	padding: 0 30px;
}

.button[disabled] {
	opacity: .4;
	border-color: var(--defaultColor) !important;
	color: var(--defaultColor) !important;
}

.button:hover {
	color: var(--accentColor);
	border-color: var(--accentColor);
}

.button.transparent {
	background-color: transparent;
}

.button.accent_border {
	border-color: var(--accentColor);
}

.button.accent_border:hover {
	color: var(--accentColor);
}

.button.circle {
	width: 72px;
	padding: 0;
	text-align: center;
	font-size: 40px;
	border-color: #c1c6c8;
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

.default-color {
	color: var(--defaultColor) !important;
}

.accent-color {
	color: var(--accentColor) !important;
}

.end_dots {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	display: block;
}

.grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

.flex {
	display: flex;
	justify-content: space-between;
}

.flex.start {
	align-items: flex-start;
}

.flex.center {
	align-items: center;
}

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

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

.flex .flex25 {
	flex: 0 0 25%;
}

.flex .flex30 {
	flex: 0 0 30%;
}

.flex .flex35 {
	flex: 0 0 35%;
}

.flex .flex40 {
	flex: 0 0 40%;
}

.flex .flex45 {
	flex: 0 0 45%;
}

.flex .flex50 {
	flex: 0 0 50%;
}

.flex .flex55 {
	flex: 0 0 55%;
}

.flex .flex60 {
	flex: 0 0 60%;
}

.flex .flex65 {
	flex: 0 0 65%;
}

.flex .flex70 {
	flex: 0 0 70%;
}

.hide {
	display: none !important;
}

.hiding {
	display: none;
}

.alert {
	padding: 15px;
	border-radius: 8px;
	font-size: 20px;
	line-height: 24px;
	border: 1px solid var(--defaultColor);
	color: var(--defaultColor);
	background-color: #EEE;
}

.alert a {
	text-decoration: underline;
}

.alert a:hover {
	text-decoration: none;
}

.alert.alert-info {
	color: #3a87ad;
	background-color: #d9edf7;
	border-color: #bce8f1;
}

.alert.alert-info a {
	color: #3a87ad;
}

.alert.alert-success {
	color: #468847;
	background-color: #dff0d8;
	border-color: #d6e9c6;
}

.alert.alert-success a {
	color: #468847;
}

.alert.alert-danger {
	color: #b94a48;
	background-color: #f2dede;
	border-color: #eed3d7;
}

.alert.alert-danger a {
	color: #b94a48;
}

.box-shadow {
	-webkit-box-shadow: 10px 20px 30px 0px rgba(0, 0, 0, 0.2);
	box-shadow: 10px 20px 30px 0px rgba(0, 0, 0, 0.2);
}

.box-shadow.round {
	border-radius: 10px;
	overflow: hidden;
}

.box-shadow.light {
	-webkit-box-shadow: 10px 20px 30px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 10px 20px 30px 0px rgba(0, 0, 0, 0.1);
}

.img_title {
	margin-top: 16px;
	padding: 0 10px;
	font-size: 20px;
}

ul {
	margin-top: 0;
	padding-left: 26px;
}

.underline {
	text-decoration: underline;
}

.inline_block {
	display: inline-block;
}

@media screen and (min-width: 1200px) {
	.show-on-tab {
		display: none !important;
	}
}

@media screen and (max-width: 1199px) {
	.hide-on-tab {
		display: none !important;
	}
}

@media screen and (min-width: 720px) {
	.show-on-mob {
		display: none !important;
	}
}

@media screen and (max-width: 719px) {
	.hide-on-mob {
		display: none !important;
	}
}

/* clears the 'X' from Chrome; https://blog.maximerouiller.com/post/remove-the-x-from-internet-explorer-and-chrome-input-type-search/ */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration { display: none; }
