/* ========================= Global Rules ========================= */

* {
	background-repeat: no-repeat;
	box-sizing: border-box;
	/* position: relative; */
	transition-duration: 0.15ms;
	-webkit-box-sizing: border-box;
}

body {
	margin: 0;
}

a,
a:hover {
	text-decoration: none;
}

img {
	max-width: 100%;
}

input[type=submit] {
	-webkit-appearance: none;
}

/* ========================= Inline Styles ========================= */

.align-bottom {
	vertical-align: bottom !important;
}

.align-middle {
	vertical-align: middle !important;
}

.align-top {
	vertical-align: top !important;
}

.bg-center {
	background-position: center center !important;
}

.bg-bottom {
	background-position: bottom center !important;
}

.bg-left {
	background-position: center left !important;
}

.bg-contain {
	background-size: contain !important;
}

.bg-cover {
	background-size: cover !important;
}

html .btn {
	background-color: lightgray;
	border-radius: 0.25rem;
	display: inline-block;
	border: transparent solid 1px;
	cursor: pointer;
	font-size: 1rem;
	padding: 0.5rem 1rem;
	text-align: center;
}

.btn.block {
	display: block !important;
	width: 100% !important;
}

.btn:focus {
	box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.clearfix {
	clear: both !important;
}

.float-right {
	float: right !important;
}

.float-left {
	float: left !important;
}

.inline-block {
	display: inline-block !important;
}

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

.text-left {
	text-align: left !important;
}

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

.vertical-center {
	position: absolute !important;
	top: 50% !important;
	transform: translateY(-50%) !important;
	width: 100%;
}

/* ========================= Grid Layout ========================= */

row,
html .row {
	font-size: 0;
	margin: 0 !important;
	line-height: 0;
	user-select: none;
	-webkit-user-select: none;
}

row::after,
html .row::after {
	clear: both;
	content: "";
	display: block;
}

row > *,
html .row  > * {
	font-size: initial;
	line-height: initial;
	user-select: text;
	-webkit-user-select: text;
}

row > column {
	width: 100%;
}

row > column,
html .row > .col {
	display: inline-block;
	float: none;
	vertical-align: top;
	/* width: 100%; */
}

row > column.half,
.row > .col.half {
	width: 50%
}

row > column.third,
.row > .col.third {
	width: 33.33%
}

row > column.fourth,
.row > .col.fourth {
	width: 25%
}

row > column.fifth,
.row > .col.fifth {
	width: 20%
}

row > column.two-thirds,
.row > .col.two-thirds {
	width: 66.66%
}

row > column.three-fourths,
.row > .col.three-fourths {
	width: 75%;
}

row > column.square::after,
.row > .col.square::after {
	content: "";
	display: block;
	padding-top: 100%;
}

row > column.square > *,
.row > .col.square > * {
	position: absolute;
	width: 100%;
}

/* ========================= Media Queries ========================= */

/* --------------- Mobile Styles --------------- */
@media(max-width: 991px) {

	.hide-mobile {
		display: none !important;
	}

}

/* --------------- Desktop Styles --------------- */
@media(min-width: 992px) {

	.hide-desktop {
		display: none !important;
	}

}

/* ========================= Boostrap Nameing Fix Media Queries ========================= */

@media(max-width: 767px) {

	.col-sm-4 {
		width: 100%;
	}

}

@media(max-width: 991px) {

	.col-md-4 {
		width: 100%;
	}

}

@media(max-width: 1200px) {

	.col-lg-4 {
		width: 100%;
	}

}