/* ======================================================================
  Utils
======================================================================== */

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

.v2-strong {
	font-weight: 600;
}

.v2-medium {
	font-weight: 400;
}

.v2-italic {
	font-style: italic;
}
.v2-txt-align-left {
	text-align: left;
}

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

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

.v2-txt-uppercase {
	text-transform: uppercase;
}

.v2-txt-lowercase {
	text-transform: lowercase;
}

.v2-txt-ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fade {
	opacity: 0;
    -webkit-transition: opacity 0.15s linear;
    -moz-transition: opacity 0.15s linear;
    -o-transition: opacity 0.15s linear;
    transition: opacity 0.15s linear;
}

.fade.in {
	opacity: 1;
	-webkit-transition: opacity 0.15s linear;
    -moz-transition: opacity 0.15s linear;
    -o-transition: opacity 0.15s linear;
    transition: opacity 0.15s linear;
}

p:empty {
	display: none;
}

/* ======================================================================
  Borders
======================================================================== */
.v2-border-right {
	border-width: 0 1px 0 0;
	border-style: solid;
}

.v2-border-top {
	border-width: 1px 0 0 0;
	border-style: solid;
}

.v2-no-border {
	border: 0 !important;
}

/* ======================================================================
  Layout
======================================================================== */
.v2-full-width {
	width: 100%;
}

.v2-float-left {
	float: left;
}

.v2-float-right {
	float: right;
}

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

.v2-show {
	display: block !important;
}

.v2-clearfix {
	*zoom: 1;
}

.v2-clearfix:after,
.v2-clearfix:before {
	content: ".";
    display: table;
    font-size: 0;
    line-height: 0;
    height: 0;
    visibility: hidden;
    vertical-align: baseline;
}

.v2-clearfix:after {
	clear: both;
}

/* ======================================================================
  Paddings
======================================================================== */
.less-padding {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.pdr-small {
	padding-right: 5px;
}

.pdl-small {
	padding-left: 5px;
}

.pdl-40 {
	padding-left: 40px;
}

.pdr-40 {
	padding-right: 40px;
}

.pdl-30 {
	padding-left: 30px;
}

.pdr-30 {
	padding-right: 30px;
}

.pdt-20 {
	padding-top: 20px;
}

.pdl-0 {
	padding-left: 0 !important;
}

.pdr-0 {
	padding-right: 0 !important;
}

.pdt-0 {
	padding-top: 0 !important;
}

.pdb-0 {
	padding-bottom: 0 !important;
}

/* ======================================================================
  Margins
======================================================================== */
.mt-20 {
	margin-top: 20px;
}

.mt-10 {
	margin-top: 10px;
}

.mb-10 {
	margin-bottom: 10px;
}