/**
*
* @package Cariera
*
* @since 1.3.0
* 
* ========================
* DEFAULT STYLES
* ========================
*     
**/

/*------------------------------------------------------------------

[Table of contents]

1.  DEFAULT TYPOGRAPHY
2.  GENERAL TAG STYLES
3.  GENERAL CLASS STYLES
4.  MARGINS & PADDINGS
5.  ALIGNMENTS
6.  CAPTIONS
7.  GALLERIES
8.  PAGINATION
9.  SIDEBAR
10. WIDGETS

-------------------------------------------------------------------*/

/* --------------------------------------
    1. Default Typography
-------------------------------------- */

h1.logo {
    margin: 0;
}

.h1,
.h2,
.h3,
h1,
h2,
h3 {
    margin-top: 20px;
    margin-bottom: 10px;
}

.h4,
.h5,
.h6,
h4,
h5,
h6 {
    margin: 10px 0;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    font-family: inherit;
}

a:hover h1,
a:hover h2,
a:hover h3,
a:hover h4,
a:hover h5,
a:hover h6 {
    color: inherit;
}

a h1,
a h2,
a h3,
a h4,
a h5,
a h6 {
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

a:hover,
a:focus,
a:visited {
    text-decoration: none !important;
    outline: none !important;
}

label {
    font-weight: 500;
}

p {
    margin-bottom: 1.7em;
    margin-top: 0;
}


/* --------------------------------------
    2. General Tag Styles
-------------------------------------- */

* {
    outline: none;
}

html,
body {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0 !important;
}

body {
    overflow-x: hidden;
    color: #948a99;
}

body.mfp-zoom-out-cur {
    overflow: hidden;
}

body > .wrapper {
    padding: 0;
    margin: 0;
    width: 100%;
    overflow: hidden;
    position: relative;
}

body > .wrapper.boxed {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

body.page-template-user-dashboard > .wrapper.boxed {
    max-width: 100%;
}

body.general_search_form_open {
    position: fixed;
}

main,
section {
    position: relative;
}

a {
    color: inherit;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

a:hover,
a:focus,
a:visited {
    text-decoration: none !important;
    outline: none !important;
    /*color: #666;*/
}

a,
button,
input {
    outline: none !important;
}
input[type="text"],
input[type="number"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="phone"],
input[type="url"],
textarea,
select {
    width: 100%;
    padding: 10px 20px;
    color: #666;
    border: 1px solid #e3e3e3;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    height: auto;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-appearance: none;
}

select {
    background: #fff;
    background: linear-gradient(45deg, transparent 50%, #948a99 50%), linear-gradient(135deg, #948a99 50%, transparent 50%), #fff;
    background-position: calc(100% - 19px) calc(1em + 5px), calc(100% - 15px) calc(1em + 5px), 100% 0;
    background-size: 5px 5px, 5px 5px, 0;
    background-repeat: no-repeat;
}

textarea {
    max-width: 100%;
    min-height: 200px;
}

::-webkit-input-placeholder {
    opacity: 1;
    color: #948a99;
}

::-moz-placeholder {
    opacity: 1;
    color: #948a99;
}

:-ms-input-placeholder {
    opacity: 1;
    color: #948a99;
}

:-moz-placeholder {
    opacity: 1;
    color: #948a99;
}

::-webkit-file-upload-button {
    cursor: pointer;
}

ul {
    margin: 0;
}

li {
    margin-bottom: 5px;
}

img {
    max-width: 100%;
    height: auto;
    -moz-user-select: none;
    /* These user-select properties are inheritable, used to prevent text selection */
    -webkit-user-select: none;
    -ms-user-select: none;
    /* From IE10 only */
    -webkit-user-drag: none;
    /* Prevents dragging of images/divs etc */
    user-drag: none;
}

embed,
iframe,
object {
    max-width: 100%;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    border-width: 1px 0 0 1px;
}

caption,
td,
th {
    padding: 0;
    font-weight: normal;
    text-align: left;
}

table,
th,
td {
    border: 1px solid #e3e3e3;
}

th {
    border-width: 0 1px 1px 0;
    font-weight: 700;
}

td {
    border-width: 0 1px 1px 0;
}

th,
td {
    padding: 0.4375em;
}

dl {
    margin: 0 0 1.75em;
}

dt {
    font-weight: 700;
}

dd {
    margin: 0 0 1.75em;
}

blockquote {
    padding: 10px 80px;
    border-left: 4px solid;
    color: #333;
    font-size: 22px;
    line-height: 1.4;
    margin: 0 0 1.7em;
}

hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0,0,0,.1);
}

pre {
    font-size: 14px;
    margin: 20px 0;
    padding: 20px;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* Protected post - button */

form.post-password-form input[type=submit] {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    outline: none;
    padding: 0 15px;
    position: relative;
    line-height: 44px;
    margin-left: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #f6f6f6 !important;
    border: 0;
    text-transform: uppercase;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

form.post-password-form input[type=submit]:hover {
    -webkit-filter: brightness(113%);
    filter: brightness(113%);
}

/* --------------------------------------
    3. General Class Styles
-------------------------------------- */

.form-control {
    width: 100%;
    padding: 10px 20px;
    color: inherit;
    border: 1px solid #e3e3e3;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    height: auto;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-appearance: none;
}

.form-control:focus {
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border-color: #e3e3e3;
}

select.form-control {
    cursor: pointer;
    color: #999;
}

.uppercase {
    text-transform: uppercase
}

.capitalize {
    text-transform: capitalize
}

.fullscreen {
    width: 100%;
    height: 100%;
}

.shadow {
    -webkit-box-shadow: 5px 5px 30px 0px rgba(0, 0, 0, .1);
    -moz-box-shadow: 5px 5px 30px 0px rgba(0, 0, 0, .1);
    box-shadow: 5px 5px 30px 0px rgba(0, 0, 0, .1);
}

.shadow-hover {
    -webkit-transition: all .6s ease;
    -moz-transition: all .6s ease;
    -ms-transition: all .6s ease;
    -o-transition: all .6s ease;
    transition: all .6s ease;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.shadow-hover:hover {
    -webkit-box-shadow: 5px 5px 30px 0px rgba(0, 0, 0, .1);
    -moz-box-shadow: 5px 5px 30px 0px rgba(0, 0, 0, .1);
    box-shadow: 5px 5px 30px 0px rgba(0, 0, 0, .1);
}

.vc_row[data-vc-full-width=true] > .vc_column_container,
.vc_row[data-vc-full-width=true] > .overlay {
    -webkit-transition: opacity .3s ease;
    -moz-transition: opacity .3s ease;
    -ms-transition: opacity .3s ease;
    -o-transition: opacity .3s ease;
    transition: opacity .3s ease;
    opacity: 1;
}

.vc_row > .overlay {
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    position: absolute;
}

.overlay-black:before {
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    display: block;
    content: '';
    overflow: hidden;
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
}

.overlay-blue:before {
    background: rgba(41, 177, 253, 0.25);
    width: 100%;
    height: 100%;
    display: block;
    content: '';
    overflow: hidden;
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
}

.overlay-gradient:before {
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    display: block;
    content: '';
    overflow: hidden;
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
}

.overlay-gradient:after {
    width: 100%;
    height: 100%;
    display: block;
    content: '';
    overflow: hidden;
    z-index: 3;
    position: absolute;
    top: 0;
    left: 0;
    opacity: .4;
}

.overlay-black > div,
.overlay-gradient > div,
.overlay-blue > div .overlay-gradient > div {
    position: relative;
    z-index: 5;
}

.hover-link:after {
    content: '\f0c1';
    font-family: 'fontawesome';
    color: #f6f6f6;
    font-size: 32px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: -20%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    -webkit-transition: all .6s ease;
    -moz-transition: all .6s ease;
    -ms-transition: all .6s ease;
    -o-transition: all .6s ease;
    transition: all .6s ease;
}

.hover-link:hover:after {
    left: 50%;
    opacity: .9;
}

.hover-zoom:after {
    content: '\f00e';
    font-family: 'fontawesome';
    font-size: 30px;
    color: #f6f6f6;
    cursor: pointer;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 5;
    display: block;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
    opacity: 0;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.hover-zoom:hover:after {
    opacity: .8;
    font-size: 38px;
}

.transparent {
    background: transparent !important;
}

.text-white {
    color: #f6f6f6;
}

.section-title {
    text-align: center;
    padding-bottom: 60px;
    margin: 0;
    text-transform: capitalize;
}

.section-title h2:after {
    content: '';
    width: 50px;
    height: 3px;
    display: block;
    margin: 0 auto;
    margin-top: 20px;
}

ul.list {
    margin-left: 0px;
    padding: 0;
}

.list li {
    list-style: outside none none;
    margin: 10px 0px 10px 25px;
    position: relative;
}

.list li:first-child {
    margin-top: 0;
}

.list li:before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    left: -25px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.table {
    max-width: none;
}

.sidebar-left {
    order: -1;
}

/***** Checkboxes *****/
.checkbox {
	display: inline-block;
	margin-bottom: 0;
}

.checkbox input[type="checkbox"] {
	height: initial;
	width: initial;
	padding: 0;
	margin: 0;
	display: none;
	cursor: pointer;
}

.checkbox label {
	position: relative;
	cursor: pointer;
	padding-left: 30px;
	line-height: 25px;
	margin: 0;
}

.checkbox input[type="checkbox"] ~ label:before {
	content:'';
	display: inline-block;
	position: absolute;
	top: 2px;
	left: 0;
	-webkit-appearance: none;
	background-color: transparent;
	border: 2px solid #bbb;
	height: 20px;
	width: 20px;
	vertical-align: middle;
	cursor: pointer;
	margin-right: 5px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.checkbox input[type="checkbox"] ~ label:after {
	content: '\f00c';
	font-family: 'fontawesome';
	color: #fff;
	opacity: 0;
	position: absolute;
	display: block;
	top: 3px;
	left: 2px;
	font-size: 16px;
	line-height: 1;
	-webkit-transform: scale(0.5);
	-moz-transform: scale(0.5);
	-ms-transform: scale(0.5);
	-o-transform: scale(0.5);
	transform: scale(0.5);
	-webkit-transition: all 0.35s cubic-bezier(0.3,-.41,.19,2), opacity 0.3s;
	-moz-transition: all 0.35s cubic-bezier(0.3,-.41,.19,2), opacity 0.3s;
	-ms-transition: all 0.35s cubic-bezier(0.3,-.41,.19,2), opacity 0.3s;
	-o-transition: all 0.35s cubic-bezier(0.3,-.41,.19,2), opacity 0.3s;
	transition: all 0.35s cubic-bezier(0.3,-.41,.19,2), opacity 0.3s;
}

.checkbox [type="checkbox"]:checked ~ label:before {
    background-color: #333;
    border-color: #333;
}

.checkbox [type="checkbox"]:checked ~ label:after {
	opacity: 1;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

/***** Radio Inputs *****/
.radio {
	display: inline-block;
	vertical-align: top;
	position: relative;
}

.radio input[type="radio"] {
	display: none;
}

.radio label {
	position: relative;
	padding-left: 25px;
	line-height: 25px;
	margin: 3px 0;
	cursor: pointer;
}

.radio input[type="radio"] ~ label:before {
	content: '';
	position: relative;
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 0;
	border: 2px solid #bbb;
	width: 18px;
	height: 18px;
	margin-right: 5px;
	vertical-align: top;
	cursor: pointer;
	text-align: center;
	z-index: 100;
	-webkit-box-shadow: inset 0 0 0 8px #fff;
	-moz-box-shadow: inset 0 0 0 8px #fff;
	box-shadow: inset 0 0 0 8px #fff;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	-webkit-transition: all .25s ease;
	-moz-transition: all .25s ease;
	-ms-transition: all .25s ease;
	-o-transition: all .25s ease;
	transition: all .25s ease;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.radio input[type="radio"] ~ label:after {
	content: "";
	position: absolute;
	top: 3px;
	left: 0;
	right: 0;
	margin: 0 auto;
	opacity: 1;
    width: 100%;
    height: 100%;
    z-index: 99;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
}

.radio input[type="radio"]:checked ~ label:before {
	background-color: #666;
	border-color: #666;
	-webkit-box-shadow: inset 0 0 0 3px #fff;
	-moz-box-shadow: inset 0 0 0 3px #fff;
	box-shadow: inset 0 0 0 3px #fff;
}

/* Owl Dots */

.owl-nav.disabled + .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
}

.owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px;
    background: #ddd;
    display: block;
    -webkit-backface-visibility: visible;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.owl-dots .owl-dot.active span {}

/* Text meant only for screen readers. */

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    left: -9999px;
    bottom: 50px;
}

.circle-img img {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

/* Star Rating */

.rating {
    box-sizing: content-box;
    overflow: hidden;
    position: relative;
    width: 110px;
    height: 24px;
    display: block;
}

.rating .star-rating {
    position: relative;
    width: inherit;
    display: block;
    padding: 0;
    margin: 0;
}

.rating.five-stars .star-rating:after {
    width: 100%;
}

.rating.four-and-half-stars .star-rating:after,
.rating.four-stars .star-rating:after {
    width: 80%;
}

.rating.three-and-half-stars .star-rating:after,
.rating.three-stars .star-rating:after {
    width: 60%;
}

.rating.two-and-half-stars .star-rating:after,
.rating.two-stars .star-rating:after {
    width: 40%;
}

.rating.one-and-half-stars .star-rating:after,
.rating.one-stars .star-rating:after {
    width: 20%;
}

.rating.no-stars .star-rating:after {
    display: none;
}

.rating .star-rating:after {
    content: "\f005  \f005  \f005  \f005  \f005";
    font-family: "FontAwesome";
    color: #ffc741;
    display: block;
    position: absolute;
    font-size: 19px;
    z-index: 10;
    letter-spacing: -0.5px;
}

.rating .star-bg:after {
    content: "\f006  \f006  \f006  \f006  \f006";
    font-family: "FontAwesome";
    color: #c0c0c0;
    display: block;
    position: absolute;
    font-size: 19px;
    z-index: 9;
    padding: 0;
    margin: 0;
    letter-spacing: -0.5px;
}

/* GoogleMap Cluster img */

.cluster img {
    display: none;
}

/*** Select2 Plugin */
.select2 {
    width: 100% !important;
}

.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple {
    padding: 0 20px;
    border: 1px solid #e3e3e3;
    text-align: left;
    background-color: #fff;
    height: 48px;
    line-height: 48px;
    overflow: hidden;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.select2-container--default .select2-selection--multiple {
    line-height: 1;
}

.select2-container--default .select2-selection--multiple,
.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: 1px solid #e3e3e3;
}

.select2-container--default .select2-selection--single .select2-selection__rendered,
.select2-container--default .select2-selection--multiple select2-selection__rendered {
    display: inline;
    padding: 0;
    color: inherit;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    padding: 0;
    line-height: 48px;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
    margin: 0;
}

body .select2-container--default .select2-selection--multiple .select2-selection__choice {    
    display: inline-block;
    height: 32px;
    line-height: 32px;
    padding: 0 15px;
    margin: 4px 8px 4px 0;
    color: #fff;
    white-space: nowrap;
    border: 0;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    font-size: 0;
    cursor: pointer;
    float: right;
    margin: 4px -7px 0 7px;
    color: rgba(255, 255, 255, .5);
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #fff;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:before {
    content: "\e082";
    font-family: "simple-line-icons";
    font-size: 16px;
    line-height: 1;
    padding-top: 4px;
    display: inline-block;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: 1px solid #e3e3e3;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 12px;
    right: 10px;
}

.select2-container .select2-selection--single .select2-selection__clear {
    display: none;
}

.select2-dropdown {
    padding: 5px;
    border-color: #e3e3e3;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 10px 15px rgba(0, 0, 0, .1);
    box-shadow: 0 10px 15px rgba(0, 0, 0, .1);
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    margin-bottom: 10px;
    border-color: #ccc;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.select2-container--default .select2-results>.select2-results__options {
    max-height: 250px;
}

.select2-container--default .select2-results__option {
    margin: 10px;
    border-radius: 4px;
    padding: 6px 12px;
}

.select2-container--default .select2-results__option.select2-results__option--highlighted {
    -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 3px 10px rgba(0, 0, 0, .1);
    box-shadow: 0 3px 10px rgba(0, 0, 0, .1);
}

/* Custom Scrollbar*/
.select2-container--open .select2-dropdown ::-webkit-scrollbar {
    width: 10px;
    background-color: rgba(255, 255, 255, 0);
}

.select2-container--open .select2-dropdown ::-webkit-scrollbar-track,
.select2-container--open .select2-dropdown ::-webkit-scrollbar-thumb {
    border-left: 1px solid rgba(255, 255, 255, 0);
    border-right: 1px solid rgba(255, 255, 255, 0);
    background-clip: padding-box;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

.select2-container--open .select2-dropdown ::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0.05);
}

.select2-container--open .select2-dropdown ::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
}

.select2-container--default .select2-selection--multiple ::-webkit-scrollbar {
    height: 15px;
    width: 12px;
    background-color: rgba(255, 255, 255, 0);
}

.select2-container--default .select2-selection--multiple ::-webkit-scrollbar-track,
.select2-container--default .select2-selection--multiple ::-webkit-scrollbar-thumb {
    border: 3px solid rgba(255, 255, 255, 0);
    background-clip: padding-box;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

.select2-container--default .select2-selection--multiple ::-webkit-scrollbar-track {
    background-color: transparent;
}

.select2-container--default .select2-selection--multiple ::-webkit-scrollbar-thumb {
    background-color: #ccc;
}

/* --------------------------------------
    4. Margins & Paddings
-------------------------------------- */

.nopadding{ padding: 0 !important;}
.nomargin{ margin: 0 !important;}

/********** Margin Top **********/

.mt5 { margin-top: 5px; }
.mt10 { margin-top: 10px; }
.mt15 { margin-top: 15px; }
.mt20 { margin-top: 20px; }
.mt25 { margin-top: 25px; }
.mt30 { margin-top: 30px; }
.mt35 { margin-top: 35px; }
.mt40 { margin-top: 40px; }
.mt45 { margin-top: 45px; }
.mt50 { margin-top: 50px; }
.mt60 { margin-top: 60px; }
.mt70 { margin-top: 70px; }
.mt80 { margin-top: 80px; }
.mt90 { margin-top: 90px; }
.mt100 { margin-top: 100px; }
.mt110 { margin-top: 110px; }
.mt120 { margin-top: 120px; }
.mt125 { margin-top: 125px; }
.mt130 { margin-top: 130px; }
.mt140 { margin-top: 140px; }
.mt150 { margin-top: 150px; }

/********** Margin Right **********/

.mr5 { margin-right: 5px; }
.mr10 { margin-right: 10px; }
.mr15 { margin-right: 15px; }
.mr20 { margin-right: 20px; }
.mr25 { margin-right: 25px; }
.mr30 { margin-right: 30px; }
.mr35 { margin-right: 35px; }
.mr40 { margin-right: 40px; }
.mr45 { margin-right: 45px; }
.mr50 { margin-right: 50px; }
.mr60 { margin-right: 60px; }
.mr70 { margin-right: 70px; }
.mr80 { margin-right: 80px; }
.mr90 { margin-right: 90px; }
.mr100 { margin-right: 100px; }
.mr110 { margin-right: 110px; }
.mr120 { margin-right: 120px; }
.mr125 { margin-right: 125px; }
.mr130 { margin-right: 130px; }
.mr140 { margin-right: 140px; }
.mr150 { margin-right: 150px; }

/********** Margin Bottom **********/

.mb5 { margin-bottom: 5px; }
.mb10 { margin-bottom: 10px; }
.mb15 { margin-bottom: 15px; }
.mb20 { margin-bottom: 20px; }
.mb25 { margin-bottom: 25px; }
.mb30 { margin-bottom: 30px; }
.mb35 { margin-bottom: 35px; }
.mb40 { margin-bottom: 40px; }
.mb45 { margin-bottom: 45px; }
.mb50 { margin-bottom: 50px; }
.mb60 { margin-bottom: 60px; }
.mb70 { margin-bottom: 70px; }
.mb80 { margin-bottom: 80px; }
.mb90 { margin-bottom: 90px; }
.mb100 { margin-bottom: 100px; }
.mb110 { margin-bottom: 110px; }
.mb120 { margin-bottom: 120px; }
.mb125 { margin-bottom: 125px; }
.mb130 { margin-bottom: 130px; }
.mb140 { margin-bottom: 140px; }
.mb150 { margin-bottom: 150px; }

/********** Margin Left **********/

.ml5 { margin-left: 5px; }
.ml10 { margin-left: 10px; }
.ml15 { margin-left: 15px; }
.ml20 { margin-left: 20px; }
.ml25 { margin-left: 25px; }
.ml30 { margin-left: 30px; }
.ml35 { margin-left: 35px; }
.ml40 { margin-left: 40px; }
.ml45 { margin-left: 45px; }
.ml50 { margin-left: 50px; }
.ml60 { margin-left: 60px; }
.ml70 { margin-left: 70px; }
.ml80 { margin-left: 80px; }
.ml90 { margin-left: 90px; }
.ml100 { margin-left: 100px; }
.ml110 { margin-left: 110px; }
.ml120 { margin-left: 120px; }
.ml125 { margin-left: 125px; }
.ml130 { margin-left: 130px; }
.ml140 { margin-left: 140px; }
.ml150 { margin-left: 150px; }

/********** Margin Top & Bottom **********/

.mtb5 { margin: 5px 0; }
.mtb10 { margin: 10px 0; }
.mtb15 { margin: 15px 0; }
.mtb20 { margin: 20px 0; }
.mtb25 { margin: 25px 0; }
.mtb30 { margin: 30px 0; }
.mtb35 { margin: 35px 0; }
.mtb40 { margin: 40px 0; }
.mtb45 { margin: 45px 0; }
.mtb50 { margin: 50px 0; }
.mtb60 { margin: 60px 0; }
.mtb70 { margin: 70px 0; }
.mtb80 { margin: 80px 0; }
.mtb90 { margin: 90px 0; }
.mtb100 { margin: 100px 0; }
.mtb110 { margin: 110px 0; }
.mtb120 { margin: 120px 0; }
.mtb130 { margin: 130px 0; }
.mtb140 { margin: 140px 0; }
.mtb150 { margin: 150px 0; }

/********** Padding Top **********/

.pt5 { padding-top: 5px; }
.pt10 { padding-top: 10px; }
.pt15 { padding-top: 15px; }
.pt20 { padding-top: 20px; }
.pt25 { padding-top: 25px; }
.pt30 { padding-top: 30px; }
.pt35 { padding-top: 35px; }
.pt40 { padding-top: 40px; }
.pt45 { padding-top: 45px; }
.pt50 { padding-top: 50px; }
.pt60 { padding-top: 60px; }
.pt70 { padding-top: 70px; }
.pt80 { padding-top: 80px; }
.pt90 { padding-top: 90px; }
.pt100 { padding-top: 100px; }
.pt110 { padding-top: 110px; }
.pt120 { padding-top: 120px; }
.pt130 { padding-top: 130px; }
.pt140 { padding-top: 140px; }
.pt150 { padding-top: 150px; }
.pt160 { padding-top: 160px; }

/********** Padding Right **********/

.pr5 { padding-right: 5px; }
.pr10 { padding-right: 10px; }
.pr15 { padding-right: 15px; }
.pr20 { padding-right: 20px; }
.pr25 { padding-right: 25px; }
.pr30 { padding-right: 30px; }
.pr35 { padding-right: 35px; }
.pr40 { padding-right: 40px; }
.pr45 { padding-right: 45px; }
.pr50 { padding-right: 50px; }
.pr60 { padding-right: 60px; }
.pr70 { padding-right: 70px; }
.pr80 { padding-right: 80px; }
.pr90 { padding-right: 90px; }
.pr100 { padding-right: 100px; }
.pr110 { padding-right: 110px; }
.pr120 { padding-right: 120px; }
.pr125 { padding-right: 125px; }
.pr130 { padding-right: 130px; }
.pr140 { padding-right: 140px; }
.pr150 { padding-right: 150px; }

/********** Padding Bottom **********/

.pb5 { padding-bottom: 5px; }
.pb10 { padding-bottom: 10px; }
.pb15 { padding-bottom: 15px; }
.pb20 { padding-bottom: 20px; }
.pb25 { padding-bottom: 25px; }
.pb30 { padding-bottom: 30px; }
.pb35 { padding-bottom: 35px; }
.pb40 { padding-bottom: 40px; }
.pb45 { padding-bottom: 45px; }
.pb50 { padding-bottom: 50px; }
.pb60 { padding-bottom: 60px; }
.pb70 { padding-bottom: 70px; }
.pb80 { padding-bottom: 80px; }
.pb90 { padding-bottom: 90px; }
.pb100 { padding-bottom: 100px; }
.pb110 { padding-bottom: 110px; }
.pb120 { padding-bottom: 120px; }
.pb130 { padding-bottom: 130px; }
.pb140 { padding-bottom: 140px; }
.pb150 { padding-bottom: 150px; }
.pb160 { padding-bottom: 160px; }

/********** Padding Left **********/

.pl5 { padding-left: 5px; }
.pl10 { padding-left: 10px; }
.pl15 { padding-left: 15px; }
.pl20 { padding-left: 20px; }
.pl25 { padding-left: 25px; }
.pl30 { padding-left: 30px; }
.pl35 { padding-left: 35px; }
.pl40 { padding-left: 40px; }
.pl45 { padding-left: 45px; }
.pl50 { padding-left: 50px; }
.pl60 { padding-left: 60px; }
.pl70 { padding-left: 70px; }
.pl80 { padding-left: 80px; }
.pl90 { padding-left: 90px; }
.pl100 { padding-left: 100px; }
.pl110 { padding-left: 110px; }
.pl120 { padding-left: 120px; }
.pl125 { padding-left: 125px; }
.pl130 { padding-left: 130px; }
.pl140 { padding-left: 140px; }
.pl150 { padding-left: 150px; }

/********** Padding Top & Bottom **********/

.ptb5 { padding: 5px 0; }
.ptb10 { padding: 10px 0; }
.ptb15 { padding: 15px 0; }
.ptb20 { padding: 20px 0; }
.ptb25 { padding: 25px 0; }
.ptb30 { padding: 30px 0; }
.ptb35 { padding: 35px 0; }
.ptb40 { padding: 40px 0; }
.ptb45 { padding: 45px 0; }
.ptb50 { padding: 50px 0; }
.ptb60 { padding: 60px 0; }
.ptb70 { padding: 70px 0; }
.ptb80 { padding: 80px 0; }
.ptb90 { padding: 90px 0; }
.ptb100 { padding: 100px 0; }
.ptb110 { padding: 110px 0; }
.ptb120 { padding: 120px 0; }
.ptb130 { padding: 130px 0; }
.ptb140 { padding: 140px 0; }
.ptb150 { padding: 150px 0; }
.ptb160 { padding: 160px 0; }

/********** Opacity **********/
.op-1 { opacity: 0.1; }
.op-2 { opacity: 0.2; }
.op-3 { opacity: 0.3; }
.op-4 { opacity: 0.4; }
.op-5 { opacity: 0.5; }
.op-6 { opacity: 0.6; }
.op-7 { opacity: 0.7; }
.op-8 { opacity: 0.8; }
.op-9 { opacity: 0.9; }

/* --------------------------------------
    5. Alignments
-------------------------------------- */

.alignleft {
    display: inline;
    float: left;
    margin-right: 1.5em;
}

.alignright {
    display: inline;
    float: right;
    margin-left: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Gutenber Support for alignfull */

.alignfull {
    max-width: 100vw;
    width: 100vw;
    position: relative;
    left: -50vw;
    right: -50vw;
    margin-left: 25vw;
    margin-right: 25vw;
    text-align: center;
}

.alignfull img {
    width: 100%;
}


/* --------------------------------------
    6. Captions
-------------------------------------- */

.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption .wp-caption-text,
figure.image-right figcaption,
figure.image-left figcaption,
.wp-caption-text {
    background-color: #f4f4f4;
    font-weight: 600;
    font-size: 15px;
    color: #888;
    padding: 10px 20px;
}

.wp-caption-text {
    background-color: #fff;
    margin: 0 !important;
}

/* --------------------------------------
    7. Galleries
-------------------------------------- */

.gallery {
    margin-left: -0.5em;
    margin-right: -0.5em;
}

.gallery:after {
    display: table;
    content: "";
    clear: both;
}

.gallery-item {
    margin: 0;
    float: left;
    padding: 5px;
    position: relative;
}

.gallery-item img {
    width: auto;
}

.gallery-columns-1 .gallery-item {
    width: 100%;
    float: none;
}

.gallery-columns-2 .gallery-item {
    width: 50%
}

.gallery-columns-3 .gallery-item {
    width: 33.3333%
}

.gallery-columns-4 .gallery-item {
    width: 25%
}

.gallery-columns-5 .gallery-item {
    width: 20%
}

.gallery-columns-6 .gallery-item {
    width: 16.6667%
}

.gallery-columns-7 .gallery-item {
    width: 14.2857%
}

.gallery-columns-8 .gallery-item {
    width: 12.5%
}

.gallery-columns-9 .gallery-item {
    width: 11.1111%
}

.gallery-columns-2 .gallery-item:nth-child(2n+1),
.gallery-columns-3 .gallery-item:nth-child(3n+1),
.gallery-columns-4 .gallery-item:nth-child(4n+1),
.gallery-columns-5 .gallery-item:nth-child(5n+1),
.gallery-columns-6 .gallery-item:nth-child(6n+1),
.gallery-columns-7 .gallery-item:nth-child(7n+1),
.gallery-columns-8 .gallery-item:nth-child(8n+1),
.gallery-columns-9 .gallery-item:nth-child(9n+1) {
    clear: left;
}

.gallery-item .gallery-caption {
    position: absolute;
    display: block;
    font-weight: 400;
    background: rgba(0, 0, 0, .6);
    color: #fff;
    padding: 10px;
    font-size: 12px;
    max-height: 50%;
    text-align: left;
    opacity: 0;
    bottom: 5px;
    left: 5px;
    right: 5px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
}

/* --------------------------------------
    8. Pagination
-------------------------------------- */

nav.job-manager-pagination,
.woocommerce-pagination,
.pagination {
    margin: 40px 0 0 0;
    padding: 0 !important;
    text-align: center;
    overflow: hidden;
    position: relative;
    border: 0 !important;
}

nav.job-manager-pagination ul,
.woocommerce nav.woocommerce-pagination ul,
.pagination ul {
    padding: 10px 0;
    margin: 0;
    border: 0;
}

.post-navigation {
    overflow: hidden;
}

.pagination-next-prev {
    position: relative;
}

.pagination-next-prev ul {
    list-style: none;
}

.pagination ul li a:before {
    display: none;
}

nav.job-manager-pagination ul li,
.woocommerce nav.woocommerce-pagination ul li,
.pagination ul li {
    display: inline-block;
    padding: 0 5px;
    border: 0;
}

.woocommerce-pagination ul li a,
.pagination ul li a,
.nav-links a,
.job-manager-pagination a,
.job-manager-pagination .current,
.woocommerce-pagination .current,
.pagination .current,
.page-links a,
.pagination-next-prev ul li a {
    font-size: 14px !important;
    color: #f6f6f6;
    border: 2px solid;
    padding: 7px 14px !important;
    font-weight: 600;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    float: none;
}

.page-links {
	clear: both;
	padding: 17px 0;
}

.page-links a:hover {
	background: none;
}

.job-manager-pagination a {
    border: 2px solid !important;
}

.job-manager-pagination a:hover,
.job-manager-pagination a:focus,
.job-manager-pagination .current {
    background: none !important;
}

.nav-links a:hover {
    color: #fff;
}

.pagination .current,
.pagination ul li a {
    display: inline-block;
    width: auto;
}

.pagination ul li {
    border: none;
}

.pagination ul li.blank {
    color: #a0a0a0;
    padding: 0 6px;
}

.pagination ul li a.current-page {
    background-color: #505050;
    color: #fff;
}

.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li a:focus,
.pagination .current,
.pagination ul li a:hover,
.pagination-next-prev ul li a:hover {
    background: none;
    border: 2px solid;
}

.nav-next,
.pagination-next-prev a.next {
    float: right;
}

.nav-previous,
.pagination-next-prev a.prev {
    float: left;
}

.nav-previous i {
    margin-right: 10px;
}

.nav-next i {
    margin-left: 10px;
}

.pagination-next-prev ul li a {
    color: #fff;
    padding: 12px 16px;
    text-transform: uppercase;
}

.pagination-next-prev .next {
    float: left;
}

.pagination-next-prev .previous {
    float: right;
}

.pagination span.pages {
    display: none;
}

/* --------------------------------------
    9. Sidebar
-------------------------------------- */

.sidebar {}

.sidebar.sidebar-empty {
    display: none;
}

.sidebar aside.widget {
    background: #f6f6f6;
    border: 1px solid #e3e3e3;
    padding: 40px 25px;
    margin-bottom: 40px;
}

.sidebar aside.widget:last-of-type {
    margin-bottom: 0;
}

.sidebar aside.widget .widget-title {
    font-size: 24px;
    margin: 0;
}

.sidebar aside.widget .widget-title:after {
    content: '';
    width: 50px;
    height: 3px;
    display: block;
    margin-top: 20px;
    margin-bottom: 40px;
}


/* Search Title */

.sidebar aside.widget_search .widget-title {
    display: none;
}


/* General Styling */

.sidebar .widget_archive li a,
.sidebar .widget_categories li a,
.sidebar .widget_recent_entries li a,
.sidebar .widget_recent_comments li,
.sidebar .widget_pages li a,
.sidebar .widget_nav_menu li a,
.sidebar .widget_nav_menu .menu ul>li>a,
.sidebar .widget_meta li a {
    font-size: 16px;
}

/* --------------------------------------
    10. Widgets
-------------------------------------- */

.widget ul {
    padding: 0;
    list-style: none;
}

.widget_archive li a,
.widget_categories li a,
.widget_product_categories li a,
.widget_recent_entries a,
.widget_recent_entries li a,
.widget_recent_comments li a,
.widget_pages li a,
.widget_nav_menu li a,
.widget_nav_menu .menu ul>li>a,
.widget_meta li a {
    text-transform: capitalize;
    color: inherit;
}

.widget_archive li a:hover,
.widget_categories li a:hover,
.widget_product_categories li a:hover,
.widget_recent_comments li a:hover,
.widget_pages li a:hover,
.widget_nav_menu li a:hover,
.widget_nav_menu .menu ul>li>a:hover,
.widget_meta li a:hover {
    padding-left: 10px;
}

.widget_archive li,
.widget_categories li,
.widget_product_categories li,
.widget_recent_entries li,
.widget_recent_comments li,
.widget_pages li,
.widget_meta li {
    padding: 8px 0;
    border-bottom: 1px solid #e3e3e3;
    margin: 0;
}

.widget_archive li:last-child,
.widget_categories li:last-child,
.widget_product_categories li a:last-child,
.widget_recent_entries li:last-child,
.widget_recent_comments li:last-child,
.widget_pages li:last-child,
.widget_meta li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}


/* Recent Posts Widget */

.widget_recent_entries .widget-blog-post {
    clear: both;
    border: 0;
    padding: 0;
}

.widget_recent_entries .widget-blog-post .post-thumbnail {
    width: 70px;
    height: 70px;
    overflow: hidden;
    position: relative;
    float: left;
    margin: 0 20px 20px 0;
}

.widget_recent_entries .widget-blog-post .post-thumbnail img {
    max-width: none;
    width: auto;
    height: 100%;
    position: absolute;
    left: -50%;
    -webkit-transition: all .6s ease;
    -moz-transition: all .6s ease;
    -ms-transition: all .6s ease;
    -o-transition: all .6s ease;
    transition: all .6s ease;
}

.widget_recent_entries .widget-blog-post .post-thumbnail img.post-no-thumb {
    left: 0;
}

.widget_recent_entries .widget-blog-post .post-thumbnail img:hover {
    opacity: .5;
}

.widget_recent_entries .widget-blog-post .post-info {
    padding-top: 10px;
}

.widget_recent_entries .widget-blog-post .post-info a {
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 600;
    display: block;
}

.widget_recent_entries .widget-blog-post .post-info span {
    font-size: .85em;
}

/* Tag Cloud Widget */
.widget_tag_cloud .tagcloud a,
.widget_product_tag_cloud .tagcloud a {
    color: inherit;
    font-size: 14px !important;
    background: #fff;
    border: 1px solid #e3e3e3;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    padding: 10px 15px;
    line-height: 50px;
    text-transform: capitalize;
    margin-right: 5px;
    white-space: nowrap;
}

.widget_tag_cloud .tagcloud a:hover,
.widget_product_tag_cloud .tagcloud a:hover {
    color: #fff;
    border: 1px solid transparent;
}

/* Calendar Widget */
.widget_calendar table#wp-calendar {
    width: 100%;
}

.widget_calendar table#wp-calendar caption {
    margin-bottom: 10px;
}

.widget_calendar table#wp-calendar th,
.widget_calendar table#wp-calendar td {
    text-align: center;
}

.widget_calendar table#wp-calendar th {
    color: #999;
}

.widget_calendar table#wp-calendar td {
    color: #777;
}

/* Mailchimp - Newsletter Widget */
.widget_mc4wp_form_widget form button {
    width: 100%;
    margin-top: 20px;
}


/********** Featured Job & Resume Widgets **********/

.widget ul.job_listings,
.widget ul.resumes {
    margin: 0;
    border: 0;
}

.widget ul.job_listings li.job_listing,
.widget ul.resumes li.resume {
    position: relative;
    background: none;
    border: 0;
    margin: 0;
    border-bottom: 1px solid #e3e3e3;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.widget ul.job_listings li.job_listing:last-child,
.widget ul.resumes li.resume:last-child {
    border: 0;
}

.widget ul.job_listings li.job_listing:before,
.widget ul.job_listings li.job_listing:after,
.widget ul.resumes li.resume:before,
.widget ul.resumes li.resume:after {
    display: none;
}

.widget ul.job_listings li.job_listing:hover,
.widget ul.resumes li.resume:hover,
.widget ul.job_listings li.job_listing > a:hover,
.widget ul.resumes li.resume > a:hover {
    background: none;
}

.widget ul.job_listings li.job_listing a,
.widget ul.resumes li.resume a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;    
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 20px 10px;
    background: none;
    color: inherit;
}

footer .widget ul.job_listings li.job_listing:first-child a,
footer .widget ul.resumes li.resume:first-child a {
    padding-top: 0;
}

.widget ul.job_listings li.job_listing .image {
    margin-bottom: 20px;
}

.widget ul.job_listings li.job_listing .image img {
    width: 80px;
    border: 1px solid #e3e3e3;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.widget ul.job_listings li.job_listing .content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.widget ul.job_listings li.job_listing .position h3,
.widget ul.resumes li.resume .candidate h3 {
    font-size: 1.2em;
    margin: 0 0 5px 0;
}

.widget ul.job_listings .job-manager-applications-applied-notice { 
    font-size: 10px;
}

.widget ul.job_listings .job-manager-applications-applied-notice:before {
    content: '\f00c';
    font-family: 'fontawesome' !important;
    font-size: inherit;
    width: auto;
    height: auto;
}

.widget ul.resumes li.resume .candidate,
.widget ul.resumes li.resume ul.meta {
    width: 100%;
}

.widget ul.resumes li.resume ul.meta li {
    display: block;
}

.widget ul.resumes li.resume ul.meta li:after {
    display: none;
}

.widget ul.job_listings > li.job_listing .meta > li,
.widget ul.resumes > li.resume .meta > li {
    font-size: 13px;
    padding: 0;
}

.widget ul.job_listings li.job_listing ul.meta li.job-type {
    padding: 2px 5px;
    display: inline-block;
    color: #fff;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

/* In Footer */
.footer1 .widget ul.job_listings li.job_listing a div.position h3,
.footer1 .widget ul.resumes li.resume .candidate h3,
.footer2 .widget ul.job_listings li.job_listing a div.position h3,
.footer2 .widget ul.resumes li.resume .candidate h3 {
    color: #fff;
}