/* 
 * Interjet Base Framework
 * Version: 1.0.7
 * Author: Israel Vainberg
 * License: MIT
*/


/* Position */
.relative {
	position: relative;
}

.absolute {
	position: absolute;
}

.fixed {
	position: fixed;
}

.left {
	float: left;
}

.right {
	float: right;
}

.clear {
	clear: both;
}

.clear-left {
	clear: left;
}

.clear-right {
	clear: right;
}

.center, .vCenter {
	margin: 0px auto;
}

.absolute.center, .fixed.center {
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}

.middle {
	vertical-align: middle;
}

/* Display */
.block {
	display: block;
}

.inline {
	display: inline;
}

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

.invisible {
	visibility: hidden;
}

/* Box Model */
.full-width {
	width: 100%;
}

.full-height {
	height: 100%;
}

.overflow-hidden {
	overflow: hidden;
}

.overflow-auto {
	overflow: auto;
}

/* Content */
.text-center {
	text-align: center;
}

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

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

.justify {
	text-align: justify;
}

.bold {
	font-weight: bold;
}

.underline {
	text-decoration: underline;
}

.line-through {
	text-decoration: line-through;
}

.italic {
	font-style: italic;
}

.rtl {
	direction: rtl;
}

.ltr {
	direction: ltr;
}

.transparent {
	background-color: transparent;
}

.pointer {
	cursor: pointer;
}

.contain {
	background-size: contain;
}

.cover {
	background-size: cover;
}

.break-all {
	word-break: break-all;
}

.keep-all {
	word-break: keep-all;
}

/* Lists */
.list-none {
	list-style-type: none;
}

.list-inside {
	list-style-type: inside;
}

.list-circle {
	list-style-type: circle;
}

.list-square {
	list-style-type: square;
}

/* Utilities */
/* sr-only: Hide the content to all but screen readers */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	border: 0;
}

/* clearfix: Clear floated elements without adding a clearing element */
.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}