/* ======================================
    Default Theme
    ----------------------------------
    Fonts: Quixksand & Lato
    ----------------------------------
    Colors:
        
       


====================================== */
@charset "UTF-8";
@import 'icons.css';


/*@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800,900|Roboto:300,400,500,700,900');*/
@import url('https://fonts.googleapis.com/css?family=Lato:300,300i,400,400i,700,700i|Quicksand:400,500,700');

/* ======================================
                Html, Body
====================================== */

html,
body {
    background: #fff;
    height: 100%;
    font-family: 'Quicksand', sans-serif;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
        line-height: 27px;
}
body.gray {
    background-color: #fbfbfb;
}

/* ======================================
                Generics
====================================== */
button {
    border: none;
    margin: 0;
    padding: 0;
    width: auto;
    overflow: visible;
    background: 0 0;
    color: inherit;
    font: inherit;
    line-height: normal;
    cursor: pointer
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: "Quicksand", sans-serif;
}

h2 {
    font-weight: 600;
}

p {
    font-family: "Lato", sans-serif;
    font-size: 15px;
    color: #293038;
    letter-spacing: 0.1px;
    line-height: 1.8;
}

a {
    color: #4c4c4c;
    transition: .3s
}

a,
button {
    outline: none !important
}

a:focus,
a:hover {
    text-decoration: none;
    color: #333
}

img {
    max-width: 100%;
}

ul,
ol {
    padding: 0;
    margin: 0;
    list-style: none;
}

label,
legend {
    font-weight: 500;
}

option {
    font-weight: 400;
}

input[type=checkbox] {
    display: inline
}

input[type=radio] {
    width: 15px;
    height: 15px;
    cursor: pointer;
    box-shadow: none
}

input:-webkit-autofill {
    box-shadow: 0 0 0 30px transparent inset;
    -moz-box-shadow: 0 0 0 30px transparent inset;
    -webkit-box-shadow: 0 0 0 30px transparent inset;
    -o-box-shadow: 0 0 0 30px transparent inset;
    -ms-box-shadow: 0 0 0 30px transparent inset;
    background-color: transparent !important;
}

/*
input[type=file] {
    border-radius: 4px;
}

input[type=file]:before {
    content: '';
    position: absolute;
    background-color: #f7f7f7;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 10px;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    height: calc(2rem + 2px);
    width: 12%;
}

.form-control-file,
.form-control-range {
    border: 2px solid #ced4da;
    border-radius: .25rem;
}*/
.upload-btn-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.btn-upload {
    border: 2px solid gray;
    color: gray;
    background-color: white;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: bold;
}

.upload-btn-wrapper input[type=file] {
    font-size: 100px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

.svg {
    position: absolute;
}

.gray {
    background: #f7f7f7;
}

.section-heading {
    margin-bottom: 60px;
}

.row.no-gutters [class*=col-] {
    padding: 0;
}

#loginwithfb{

    margin-top: -8px;
}

label.error {
    color: #dc3545;
}

.form-control.error {
    border: 1px solid #dc3545;
}

h3.page-title {
    font-size: 20px;
}
/* ======================================
                Preloader
====================================== */
#preloader {
	background-color: #fff;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 9999;
}
.sk-three-bounce {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
    z-index: 10;
}

  .sk-three-bounce .sk-child {
      margin: 0 5px;
    width: 20px;
    height: 20px;
    background-color: #1689D6;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-three-bounce 1.4s ease-in-out 0s infinite both;
            animation: sk-three-bounce 1.4s ease-in-out 0s infinite both; }
  .sk-three-bounce .sk-bounce1 {
    -webkit-animation-delay: -0.32s;
            animation-delay: -0.32s; }
  .sk-three-bounce .sk-bounce2 {
    -webkit-animation-delay: -0.16s;
            animation-delay: -0.16s; }

@-webkit-keyframes sk-three-bounce {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0); }
  40% {
    -webkit-transform: scale(1);
            transform: scale(1); } }

@keyframes sk-three-bounce {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0); }
  40% {
    -webkit-transform: scale(1);
            transform: scale(1); } }




/* ======================================
                Buttons
====================================== */

.btn-general {
    font-family: "Quicksand", sans-serif;
    border-radius: 4px;
    font-size: 15px;
    margin-right: 6px;
    padding: 8px 40px;
    font-weight: 500;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.btn.big {
    font-size: 18px;
    padding: 13px 22px
}

.btn-save-changes {
    color: #fff;
}
.btn-save-changes:hover,
.btn-save-changes:focus {
    background: #276FBF;
    color: #fff;
}

/***** Header Buttons *****/

.btn-white {
    background: #fff;
    border: 2px solid #1689D6;
}

.join-community .btn-general {
    font-size: 20px;
    padding: 13px 40px;
    margin: 0 10px;
}

.btn-white:hover,
.btn-white:focus {
    background: #276FBF;
    border: 2px solid #276FBF;
    -webkit-box-shadow: 0px 2px 12px 0px #888888;
    box-shadow: 0px 2px 12px 0px #888888;
}

#navigation ul .btn-white:hover,
#navigation ul .btn-white:focus,
.btn-white:hover,
.btn-white:focus {
    color: #fff;
}

.btn-blue {
    background: #1689D6;
    border: 1px solid #1689D6;

}

#companycontract{
    
    font-weight: bold;
}
#expertcontract{
    
    font-weight: bold;
}

#navigation ul .btn-blue,
.btn-blue {
    color: #fff;
}

#navigation ul .btn-blue:hover,
#navigation ul .btn-blue:focus,
.btn-blue:hover,
.btn-blue:focus {
    color: #fff;
    background: #276FBF;
    border: 1px solid #276FBF;
    -webkit-box-shadow: 0px 2px 12px 0px #888888;
    box-shadow: 0px 2px 12px 0px #888888;
}

#navigation ul .btn-orange,
.btn-orange {
    color: #fff;
    background: #f79125;
    border: 1px solid #f79125;
}

#navigation ul .btn-orange:hover,
#navigation ul .btn-orange:focus,
.btn-orange:hover,
.btn-orange:focus {

    background: #f77b0b;
    border: 1px solid #f77b0b;
    color: #fff;
    -webkit-box-shadow: 0px 2px 12px 0px #888888;
    box-shadow: 0px 1px 12px 0px #888888;
}

.banner-btn-group .btn-general {
    font-size: 20px;
    padding: 12px 38px;
}

.banner-btn-group .btn-transparent {
    color: #fff;
    background: transparent;
    border: 2px solid #fff;
}

.banner-btn-group .btn-white {
    border: 2px solid #fff;
}

.btn-transparent:hover,
.btn-transparent:focus {
    color: #1689D6;
    background: #fff;
}

.banner-btn-group .btn-orange {
    border: 2px solid #f79125;
}

.banner-btn-group .btn-white:hover,
.banner-btn-group .btn-white:focus,
.banner-btn-group .btn-orange:hover,
.banner-btn-group .btn-orange:focus {
    color: #fff;
    background: #66b6ec;
    border: 2px solid #66b6ec;
    box-shadow: none;
}
#wrapper{
	padding-top: 82px;
}
/* ======================================
                Header
====================================== */


#logo {
    display: inline-block;
    height: 100%;
    vertical-align: top;
}

#logo img {
    height: 42px;
    width: auto;
    top: 50%;
    position: relative;
    transform: translate3d(0, -50%, 0)
}

#header {
    position: relative;
    z-index: 999;
    padding: 0;
    box-shadow: 0 0 18px 0 rgba(0, 0, 0, .12);
    font-size: 16px;
    height: 82px;
    background-color: #fff
}

#header .container,
#header .right-side,
#header .left-side {
    height: 100%
}

header.fullwidth .container {
    max-width: 100%;
    margin: 0;
    padding: 0 35px
}

#header .container {
    position: relative
}

#header .left-side {
    float: left;
    width: 100%;
    display: inline-block;
    position: relative;
    flex: 1
}

#header .right-side {
    float: right;
    text-align: right;
    width: auto;
    display: inline-block;
    position: absolute;
    right: 25px;
    background-color: #fff;
    flex: 1
}

.full-width #header .left-side {
    float: left;
    width: 100%;
    display: inline-block;
    position: relative
}

.full-width #header .right-side {
    float: right;
    text-align: right;
    width: auto;
    display: inline-block;
    position: absolute;
    right: 25px;
    background-color: #fff
}

.header-widget {
    display: inline-block;
    height: 100%;
    border-left: 1px solid #e0e0e0;
    padding: 0 30px;
    text-align: left;
    float: left
}

.fullwidth .header-widget:last-of-type {
    padding-right: 5px;
    float: right;
    border-right: none
}

.header-widget:last-of-type {
    padding-right: 0;
    margin-right: -5px
}

.fullwidth .header-widget:last-of-type {
    padding-right: 5px;
    margin-right: 0
}

.header-notifications-content .notification-avatar {
    height: 42px;
    width: 42px;
    max-width: 42px;
    display: inline-block;
    border-radius: 50%;
    overflow: hidden
}

.header-widget .log-in-button {
    padding: 10px 0;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    transition: .3s;
    color: #666;
    display: block;
    margin: 0 -3px
}

.header-widget .log-in-button i {
    font-size: 18px;
    line-height: 0;
    position: relative;
    top: 2px;
    margin-right: 4px;
    margin-left: -1px;
    color: #777;
    transition: .3s
}

.header-widget .log-in-button:hover,
.header-widget .log-in-button:hover i {
    color: #66676b
}

#langmobile{

    display: none;
}

@media(max-width: 1100px){
    #langmobile{
        display: inline-block; 
    }

}


@media(max-width:768px) {
    .header-widget .log-in-button span {
        display: none
    }

    .header-widget .log-in-button i {
        font-size: 20px;
        top: 3px
    }

    .header-widget .log-in-button i,
    .header-widget .log-in-button i:hover {
        color: #555
    }

    .header-widget .log-in-button {
        background-color: #f0f0f0;
        border-radius: 4px;
        height: 46px;
        width: 46px;
        text-align: center
    }

    
}

.header-notifications {
    height: 100%;
    display: inline-block;
    padding-right: 15px;
    position: relative
}

.header-notifications:last-child {
    margin-right: -15px
}

.header-notifications-trigger,
.header-notifications-trigger a {
    font-size: 22px;
    color: #333;
    position: relative;
    top: 55%;
    transform: translate3d(0, -50%, 0)
}

@media screen and (-ms-high-contrast:active),
screen and (-ms-high-contrast:none) {

    .header-notifications-trigger,
    .header-notifications-trigger a {
        height: 40px
    }

    .header-notifications.user-menu {
        top: -8px
    }
}

.header-notifications-trigger span {
    position: absolute;
    display: inline-block;
    top: -15px;
    margin-left: -10px;
    font-weight: 700;
    height: 19px;
    width: 19px;
    line-height: 19px;
    text-align: center;
    color: #fff;
    font-size: 11px;
    background-color: #66676b;
    border-radius: 50%;
    position: relative
}

.header-notifications-dropdown {
    width: 360px;
    border-radius: 4px;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .12);
    background-color: #fff;
    padding: 0;
    position: absolute;
    top: calc(100% - 10px);
    right: -15px;
    text-align: left;
    z-index: 100;
    transform: scale(.95);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    pointer-events: none
}

.header-notifications.active .header-notifications-dropdown {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: all
}

.header-notifications-dropdown:before {
    content: "";
    position: absolute;
    right: 43px;
    top: -6px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #d7d7d7
}

.header-notifications-headline {
    padding: 17px 25px;
    padding-top: 18px;
    line-height: 24px;
    border-bottom: 1px solid #e6e6e6
}

.header-notifications-headline h4,
.header-notifications-headline span {
    display: inline-block
}

button.mark-as-read {
    float: right;
    position: relative;
    border-radius: 4px;
    height: 32px;
    width: 32px;
    text-align: center;
    line-height: 36px;
    top: -4px;
    right: -8px;
    color: #888;
    transition: .25s
}

button.mark-as-read:hover {
    background-color: #f2f2f2;
    color: #888
}

.header-notifications-content {
    display: block;
    width: 100%
}

.header-notifications-scroll {
    display: block;
    overflow: hidden;
    height: auto
}

.header-notifications-content ul {
    padding: 0;
    margin: 0;
    list-style: none
}

.header-notifications-content ul li {
    border-bottom: 1px solid #e6e6e6;
    transition: .25s
}

.header-notifications-content ul li:hover {
    background-color: #fafafa
}

.header-notifications-content ul li:hover .notification-icon {
    background-color: #eee
}

.header-notifications-content ul li:last-child {
    border-bottom: none
}

.header-notifications-content ul li a {
    color: #666;
    position: relative;
    padding: 22px 25px;
    display: block
}

.header-notifications-content p {
    margin: 0;
    padding: 0
}

.header-notifications-content ul li a {
    display: flex;
    flex-wrap: wrap;
    align-items: center
}

.header-notifications-content .notification-icon,
.header-notifications-content .notification-text {
    flex: 1
}

.header-notifications-content .notification-icon i {
    position: relative
}

.notification-icon,
.header-notifications-content .notification-icon {
    font-size: 24px;
    height: 40px;
    width: 40px;
    max-width: 40px;
    display: inline-block;
    background-color: #f2f2f2;
    border-radius: 4px;
    line-height: 42px;
    text-align: center;
    color: #a0a0a0;
    transition: .25s;
    position: relative
}

.notification-icon .icon-material-outline-autorenew {
    font-size: 22px
}

.notification-icon .icon-material-outline-gavel {
    font-size: 19px;
    top: -2px;
    left: 1px
}

.header-notifications-content .notification-avatar {
    height: 42px;
    width: 42px;
    max-width: 42px;
    display: inline-block;
    border-radius: 50%;
    overflow: visible;
    align-self: flex-start
}

.header-notifications-content .notification-avatar img {
    width: 100%;
    image-rendering: -webkit-optimize-contrast;
    border-radius: 50%
}

.notification-text,
.header-notifications-content .notification-text {
    padding-left: 20px;
    padding-right: 5px;
    display: inline-block;
    line-height: 23px;
    font-size: 14.7px
}

.header-notifications-content .notification-msg-text {
    display: inline-block;
    line-height: 23px;
    font-size: 14.7px;
    margin: 4px 0
}

.notification-text strong,
.header-notifications-content .notification-text strong {
    font-weight: 600;
    color: #333
}

.notification-text span.color,
.header-notifications-content .notification-text span.color {
    color: #66676b;
    display: inline-block
}

.notification-text span.color {
    display: block
}

a.header-notifications-button {
    border-radius: 0 0 4px 4px;
    font-weight: 600;
    color: #fff;
    font-size: 14.7px;
    padding: 12px 16px;
    background-color: #66676b;
    width: 100%;
    display: block;
    text-align: center;
    transition: .3s
}

a.header-notifications-button i {
    font-size: 22px;
    line-height: 0;
    top: 4px;
    position: relative;
    max-width: 0;
    display: inline-block;
    margin-left: 7px
}

.user-menu {
    padding: 0
}

.header-notifications.user-menu {
    margin: 0 -5px
}

.user-menu .header-notifications-trigger,
.user-menu .header-notifications-trigger a {
    top: 50%
}

.user-menu .header-notifications-dropdown {
    top: calc(100% - 8px);
    width: 290px;
    right: -10px
}

.user-menu .header-notifications-dropdown:before {
    right: 23px
}

.notification-avatar {
    position: relative
}

.status-icon,
.notification-avatar:after,
.user-avatar:after {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    background-color: silver;
    bottom: 0;
    right: 0;
    display: block;
    border: 2px solid #fff;
    box-shadow: 0 2px 3px rgba(0, 0, 0, .3);
    border-radius: 50%
}

.notification-avatar:after {
    width: 11px;
    height: 11px
}

.status-icon.status-online,
.status-online:after {
    background-color: #38b653
}

.status-icon.status-offline,
.status-offline:after {
    background-color: silver
}

.user-avatar {
    display: inline-block;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    position: relative
}

.user-avatar img {
    width: 100%;
    display: inline-block;
    border-radius: 50%;
    image-rendering: -webkit-optimize-contrast
}

ul.user-menu-small-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    padding: 20px 25px
}

ul.user-menu-small-nav li {
    margin: 0;
    padding: 0
}

ul.user-menu-small-nav li a {
    display: block;
    padding: 2px 0;
    font-size: 16px;
    color: #666;
    transition: .3s
}

ul.user-menu-small-nav li a i {
    font-size: 16px;
    position: relative;
    top: 1px;
    margin-right: 2px;
    color: #666;
    -webkit-font-smoothing: antialiased;
    transition: .3s
}

ul.user-menu-small-nav li a:hover,
ul.user-menu-small-nav li a:hover i {
    color: #66676b
}

.user-status {
    padding: 25px;
    border-bottom: 1px solid #e6e6e6
}

.user-details {
    display: flex
}

.user-name {
    font-weight: 500;
    color: #333;
    line-height: 20px;
    padding: 2px 0 0 15px
}

.user-details span {
    display: block;
    font-size: 14.7px;
    color: #888;
    font-weight: 500
}

.status-switch {
    background-color: #eee;
    width: 100%;
    display: block;
    border-radius: 4px;
    height: 36px;
    padding: 0;
    position: relative;
    zoom: 1;
    margin-top: 20px
}

.status-switch:before,
.status-switch:after {
    content: " ";
    display: table
}

.status-switch label {
    float: left;
    width: 50%;
    position: relative;
    z-index: 2;
    line-height: 36px;
    cursor: pointer;
    color: #888;
    font-size: 14.7px;
    text-align: center;
    transition: .3s;
    margin: 0
}

.status-switch span.status-indicator {
    position: relative;
    z-index: 1;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    display: block;
    border-radius: 4px 0 0 4px;
    background-color: #38b653;
    box-shadow: 0 0 5px 1px rgba(56, 182, 83, .3);
    transition: all .4s cubic-bezier(.3, -.41, .19, 1.3), background-color .2s linear
}

.status-switch span.right {
    left: 50%;
    border-radius: 0 4px 4px 0;
    background-color: #333;
    box-shadow: none;
    color: #fff
}

.status-switch label.current-status {
    color: #fff
}

#navigation {
    position: relative;
    display: inline-block;
    margin-top: 22px
}

#navigation ul {
    list-style: none;
    position: relative;
    float: left;
    margin: 0;
    padding: 0
}

#navigation ul a {
    display: block;
    text-decoration: none;
    padding: 5px 0;
    
}

#navigation ul li {
    position: relative;
    float: left;
    margin: 0;
    padding: 0
}

#navigation ul li ul {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 9px;
    padding: 0;
    z-index: 99999
}

#navigation ul ul li {
    float: none
}

#navigation ul ul ul {
    top: 0;
    left: 100%;
    margin: 0 0 0 15px
}

#navigation ul ul {
    margin: 0
}

#navigation ul ul ul {
    pointer-events: none
}

#navigation ul ul li:hover > ul {
    pointer-events: all
}

#navigation ul ul:before {
    content: "";
    position: absolute;
    left: 0;
    top: -10px;
    background: transparent;
    width: 100%;
    height: 10px
}

#navigation ul ul ul:after {
    content: "";
    position: absolute;
    width: 15px;
    height: 100%;
    left: -15px;
    top: 0;
    opacity: 0
}

#navigation ul li:hover > ul {
    opacity: 1;
    visibility: visible;
    pointer-events: all
}

#navigation ul li a:after,
#navigation ul ul li a:after {
    font-family: material-icons;
    content: '\e914';
    opacity: 1;
    font-size: 16px;
    transition: .2s;
    opacity: 1;
    line-height: 17px;
    width: 17px;
    height: 17px;
    background-color: #f0f0f0;
    color: #a8a8a8;
    display: none;
    border-radius: 3px;
    margin-left: 7px;
    text-indent: 0;
    top: 1px;
    position: relative
}

#navigation ul ul.dropdown-nav ul.dropdown-nav li:hover a:after,
#navigation ul ul.dropdown-nav li:hover a:after,
#navigation ul li:hover a:after {
    color: #66676b;
    background: rgba(102, 103, 107, .13);
    opacity: .8
}

#navigation ul ul.dropdown-nav ul.dropdown-nav li a:after {
    background-color: #f0f0f0;
    color: #a8a8a8;
    opacity: 1
}

#navigation ul ul.dropdown-nav ul.dropdown-nav li:hover a:after,
#navigation ul ul.dropdown-nav li:hover a:after {
    color: #fff !important;
    background-color: #66676b;
    opacity: 1
}

#navigation ul ul.dropdown-nav ul.dropdown-nav li a:after,
#navigation ul ul.dropdown-nav li a:after {
    content: '\e917';
    position: absolute;
    left: auto;
    right: 20px;
    top: 6px;
    background-color: rgba(255, 255, 255, .1);
    color: #bbb;
    opacity: 1
}

#navigation ul li a.current {

    color: #66676b
}

#navigation ul li a.current:after {
    color: #66676b;
    background: rgba(102, 103, 107, .13);
    opacity: .8
}

#navigation ul li a:only-child:after,
#navigation ul ul li a:only-child:after {
    content: '';
    display: none
}

#navigation ul ul li:hover a:after {
    opacity: 1;
    transform: translateX(0)
}

#navigation ul li {
    transition: all .25s;
    margin: 0 5px;
    border-radius: 4px
}

#navigation ul li a,
#navigation ul ul li a {
    color: #666;
    cursor: pointer
}

#navigation ul a {
    line-height: 23px;
    padding: 7px 9px;
    border-right: 4px;
    font-weight: 500;
}

#navigation ul li:hover a {
    color: #66676b
}

#navigation ul ul {
    background-color: #303030;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .12);
    border-radius: 4px
}

#navigation ul ul li {
    border-radius: 4px
}

#navigation ul ul li:last-child {
    border-bottom: none
}

#navigation ul li:hover ul a,
#navigation ul ul a {
    padding: 4px 40px 4px 15px !important;
    line-height: 22px !important
}

#navigation ul li:hover ul a:only-child,
#navigation ul a:only-child {
    padding: 8px 15px !important
}

#navigation ul ul:after {
    content: "";
    position: absolute;
    left: 25px;
    top: -5px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #303030
}

body #navigation ul ul {
    padding: 14px 0;
    box-sizing: border-box;
    margin-top: 12px
}

body #navigation ul ul ul {
    margin-top: 0
}

#navigation ul ul:before {
    content: ".";
    position: absolute;
    width: 100%;
    height: 12px;
    top: -12px;
    opacity: 0;
    opacity: 0
}

#navigation ul ul ul:before {
    width: calc(100% + 15px);
    left: -15px
}

#navigation ul ul li {
    width: 208px
}

#navigation ul ul li:hover {
    border-radius: 0
}

#navigation ul ul li:first-child {
    border-radius: 4px 4px 0 0
}

#navigation ul ul li:last-child {
    border-radius: 0 0 4px 4px
}

#navigation ul ul {
    opacity: 0;
    visibility: hidden;
    transition: all .25s;
    transform: translate3d(0, 15px, 0)
}

#navigation ul ul ul {
    transform: translate3d(15px, 0, 0)
}

#navigation ul li ul {
    z-index: 10
}

#navigation ul li:hover ul {
    z-index: 20
}

#navigation ul li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0)
}

#navigation ul ul li {
    margin: 0;
    padding: 0 6px;
    border-radius: 0;
    font-size: 15.7px
}

#navigation ul ul.dropdown-nav ul.dropdown-nav ul.dropdown-nav li a,
#navigation ul ul.dropdown-nav ul.dropdown-nav li a,
#navigation ul ul.dropdown-nav li a {
    transition: .3s;
    color: #aaa
}

#navigation ul ul.dropdown-nav ul.dropdown-nav ul.dropdown-nav li:hover a,
#navigation ul ul.dropdown-nav ul.dropdown-nav li:hover a,
#navigation ul ul.dropdown-nav li:hover a {
    color: #fff
}

.mega-menu {
    opacity: 0;
    visibility: hidden;
    transition: all .25s;
    position: absolute;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .12);
    border-radius: 4px;
    font-size: 15px;
    display: flex;
    top: 100%;
    left: 0;
    padding: 20px 0;
    box-sizing: border-box;
    font-size: 14px;
    margin-top: -10px;
    background-color: #fff;
    width: 200px;
    z-index: 99;
    transform: translate3d(-42%, 24px, 0)
}

.mega-menu:before {
    content: "";
    position: absolute;
    top: -12px;
    left: 0;
    display: block;
    width: 100%;
    height: 12px;
    opacity: 0
}

#navigation ul li .mega-menu ul {
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0, 0, 0);
    position: relative;
    display: inline-block;
    flex: 1;
    padding: 0;
    margin: 0;
    box-shadow: none;
    border-radius: 0;
    top: auto;
    left: auto;
    background-color: transparent
}

#navigation ul li:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translate3d(-42%, 12px, 0)
}

#navigation ul li:hover .mega-menu ul {
    opacity: 1;
    visibility: visible
}

#navigation .mega-menu ul,
#navigation .mega-menu ul li {
    width: 100%
}

.mega-menu.two-columns {
    width: 429px
}

.mega-menu.three-columns {
    width: 643px
}

.mega-menu.four-columns {
    width: 857px
}

#navigation ul .mega-menu ul a {
    color: #bbb;
    padding: 0 !important;
    display: block;
    margin-left: 0;
    -wekkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out
}

#navigation ul li:hover .mega-menu ul a,
#navigation ul .mega-menu ul a {
    padding: 6px 0 !important;
    line-height: 22px !important;
    transform: translate3d(0, 0, 0) !important
}

#navigation .mega-menu ul li {
    padding: 0 30px
}

#navigation ul li a i {
    font-size: 14px;
    position: relative;
    top: 0;
    padding-right: 5px
}




.mega-menu-section {
    display: inline-block;
    float: left;
    width: 214px;
    padding: 0;
    border-right: 1px solid #e9e9e9
}

.mega-menu .mega-menu-section:last-child {
    border: none
}

.mega-menu-headline {
    color: #222;
    opacity: 1 !important;
    font-weight: 600;
    display: block;
    padding: 8px 30px !important;
    letter-spacing: 0;
    font-size: 14px;
    line-height: 21px
}

.mobile-styles .mm-listview {
    margin: 0 -20px !important
}

.mobile-styles .mm-listview .mega-menu-headline {
    color: #fff;
    padding: 15px 20px !important;
    background: #222 !important
}

.mobile-styles .mm-listview li a i {
    padding-right: 5px
}

.mobile-styles.mm-panel:before {
    height: 10px !important
}

#header-container {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000
}



#header {
    transition: background .3s
}

@media(max-width:1099px) {
    #header-container {
        position: relative
    }

    
}


.mm-hidden {
    display: none !important
}

.mm-wrapper {
    overflow-x: hidden;
    position: relative
}

.mm-menu {
    box-sizing: border-box;
    background: inherit;
    display: block;
    padding: 0;
    margin: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 0
}

.mm-panels,
.mm-panels > .mm-panel {
    background: inherit;
    border-color: inherit;
    box-sizing: border-box;
    margin: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 0
}

.mm-panels {
    overflow: hidden
}

.mm-panel {
    -webkit-transform: translate(100%, 0);
    -ms-transform: translate(100%, 0);
    transform: translate(100%, 0);
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    -webkit-transition: -webkit-transform .4s ease;
    transition: -webkit-transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .4s ease;
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left
}

.mm-panel.mm-opened {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.mm-panel.mm-subopened {
    -webkit-transform: translate(-30%, 0);
    -ms-transform: translate(-30%, 0);
    transform: translate(-30%, 0);
    -webkit-transform: translate3d(-30%, 0, 0);
    transform: translate3d(-30%, 0, 0)
}

.mm-panel.mm-highest {
    z-index: 1
}

.mm-panel.mm-noanimation {
    -webkit-transition: none !important;
    transition: none !important
}

.mm-panel.mm-noanimation.mm-subopened {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.mm-panels > .mm-panel {
    -webkit-overflow-scrolling: touch;
    overflow: scroll;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0 20px
}

.mm-panels > .mm-panel.mm-hasnavbar {
    padding-top: 40px
}

.mm-panels > .mm-panel:not(.mm-hidden) {
    display: block
}

.mm-panels > .mm-panel:after,
.mm-panels > .mm-panel:before {
    content: '';
    display: block;
    height: 20px
}

.mm-vertical .mm-panel {
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important
}

.mm-listview .mm-vertical .mm-panel,
.mm-vertical .mm-listview .mm-panel {
    display: none;
    padding: 10px 0 10px 10px
}

.mm-listview .mm-vertical .mm-panel .mm-listview > li:last-child:after,
.mm-vertical .mm-listview .mm-panel .mm-listview > li:last-child:after {
    border-color: transparent
}

.mm-vertical li.mm-opened > .mm-panel,
li.mm-vertical.mm-opened > .mm-panel {
    display: block
}

.mm-listview > li.mm-vertical > .mm-next,
.mm-vertical .mm-listview > li > .mm-next {
    box-sizing: border-box;
    height: 40px;
    bottom: auto
}

.mm-listview > li.mm-vertical.mm-opened > .mm-next:after,
.mm-vertical .mm-listview > li.mm-opened > .mm-next:after {
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(225deg);
    right: 19px
}

.mm-btn {
    box-sizing: border-box;
    width: 40px;
    height: 50px;
    position: absolute;
    top: 0;
    z-index: 1
}

.mm-clear:after,
.mm-clear:before,
.mm-close:after,
.mm-close:before {
    content: '';
    border: 2px solid transparent;
    display: block;
    width: 5px;
    height: 5px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.mm-clear:before,
.mm-close:before {
    border-right: none;
    border-bottom: none;
    right: 18px
}

.mm-clear:after,
.mm-close:after {
    border-left: none;
    border-top: none;
    right: 25px
}

.mm-next:after,
.mm-prev:before {
    content: '';
    border-top: 2px solid transparent;
    border-left: 2px solid transparent;
    display: block;
    width: 8px;
    height: 8px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0
}

.mm-prev:before {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    left: 23px;
    right: auto
}

.mm-next:after {
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
    right: 23px;
    left: auto
}

.mm-navbar {
    border-bottom: 1px solid;
    border-color: inherit;
    text-align: center;
    line-height: 30px;
    height: 50px;
    padding: 0 40px;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0
}

.mm-navbar > * {
    display: block;
    padding: 10px 0
}

.mm-navbar a,
.mm-navbar a:hover {
    text-decoration: none
}

.mm-navbar .mm-title {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden
}

.mm-navbar .mm-btn:first-child {
    left: 0
}

.mm-navbar .mm-btn:last-child {
    text-align: right;
    right: 0
}

.mm-panel .mm-navbar {
    display: none
}

.mm-panel.mm-hasnavbar .mm-navbar {
    display: block;
    background-color: #262626
}

.mm-listview,
.mm-listview > li {
    list-style: none;
    display: block;
    padding: 0;
    margin: 0
}

.mm-listview {
    font: inherit;
    font-size: 14px;
    line-height: 20px
}

.mm-listview a,
.mm-listview a:hover {
    text-decoration: none
}

.mm-listview > li {
    position: relative
}

.mm-listview > li,
.mm-listview > li .mm-next,
.mm-listview > li .mm-next:before,
.mm-listview > li:after {
    border-color: inherit
}

.mm-listview > li {
    border-bottom: 1px solid #404040
}

.mm-listview > li > a,
.mm-listview > li > span {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    color: inherit;
    display: block;
    padding: 14px 10px 14px 20px;
    margin: 0
}

.mm-listview > li:not(.mm-divider):after {
    content: '';
    border-bottom-width: 1px;
    border-bottom-style: solid;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: none
}

.mm-listview > li:not(.mm-divider):after {
    left: 20px
}

.mm-listview .mm-next {
    background: transparent;
    width: 50px;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 2
}

.mm-listview .mm-next:before {
    content: '';
    border-left-width: 1px;
    border-left-style: solid;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0
}

.mm-listview .mm-next + a,
.mm-listview .mm-next + span {
    margin-right: 50px
}

.mm-listview .mm-next.mm-fullsubopen {
    width: 100%
}

.mm-listview .mm-next.mm-fullsubopen:before {
    border-left: none
}

.mm-listview .mm-next.mm-fullsubopen + a,
.mm-listview .mm-next.mm-fullsubopen + span {
    padding-right: 50px;
    margin-right: 0
}

.mm-panels > .mm-panel > .mm-listview {
    margin: 20px -20px
}

.mm-panels > .mm-panel > .mm-listview:first-child,
.mm-panels > .mm-panel > .mm-navbar + .mm-listview {
    margin-top: -10px
}

.mm-menu {
    background: #2a2a2a;
    border-color: rgba(255, 255, 255, .1);
    color: #fff
}

.mm-menu .mm-navbar a,
.mm-menu .mm-navbar > * {
    color: #fff;
    font-weight: 600;
    font-size: 16px
}

.mm-menu .mm-btn:after,
.mm-menu .mm-btn:before {
    border-color: rgba(255, 255, 255, .8)
}

.mm-menu .mm-listview {
    border-color: #2a2a2a
}

.mm-menu .mm-listview > li .mm-next:after {
    border-color: rgba(255, 255, 255, .8)
}

.mm-menu .mm-listview > li a:not(.mm-next) {
    -webkit-tap-highlight-color: rgba(255, 255, 255, .5);
    tap-highlight-color: rgba(255, 255, 255, .5)
}

.mm-menu .mm-listview > li.mm-selected > a:not(.mm-next),
.mm-menu .mm-listview > li.mm-selected > span {
    background: rgba(255, 255, 255, .05)
}

.mm-menu .mm-listview > li {
    transition: .2s
}

.mm-menu .mm-listview > li:hover {
    background: rgba(255, 255, 255, .03)
}

.mm-menu .mm-listview > li.mm-opened.mm-vertical > .mm-panel,
.mm-menu .mm-listview > li.mm-opened.mm-vertical > a.mm-next,
.mm-menu.mm-vertical .mm-listview > li.mm-opened > .mm-panel,
.mm-menu.mm-vertical .mm-listview > li.mm-opened > a.mm-next {
    background: rgba(0, 0, 0, .05)
}

.mm-menu .mm-divider {
    background: rgba(0, 0, 0, .05)
}

.mm-page {
    box-sizing: border-box;
    position: relative
}

.mm-slideout {
    -webkit-transition: -webkit-transform .4s ease;
    transition: -webkit-transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .4s ease;
    z-index: 1
}

html.mm-opened {
    overflow-x: hidden;
    position: relative
}

html.mm-blocking {
    overflow: hidden
}

html.mm-blocking body {
    overflow: hidden
}

html.mm-background .mm-page {
    background: inherit
}

#mm-blocker {
    background: transparent;
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2
}

html.mm-blocking #mm-blocker {
    display: block
}

.mm-menu.mm-offcanvas {
    z-index: 0;
    display: none;
    position: fixed
}

.mm-menu.mm-offcanvas.mm-opened {
    display: block
}

.mm-menu.mm-offcanvas.mm-no-csstransforms.mm-opened {
    z-index: 10
}

.mm-menu.mm-offcanvas {
    width: 80%;
    min-width: 140px;
    max-width: 440px
}

html.mm-opening .mm-menu.mm-opened ~ .mm-slideout {
    -webkit-transform: translate(80%, 0);
    -ms-transform: translate(80%, 0);
    transform: translate(80%, 0);
    -webkit-transform: translate3d(80%, 0, 0);
    transform: translate3d(80%, 0, 0)
}

@media all and (max-width:175px) {
    html.mm-opening .mm-menu.mm-opened ~ .mm-slideout {
        -webkit-transform: translate(140px, 0);
        -ms-transform: translate(140px, 0);
        transform: translate(140px, 0);
        -webkit-transform: translate3d(140px, 0, 0);
        transform: translate3d(140px, 0, 0)
    }
}

@media all and (min-width:550px) {
    html.mm-opening .mm-menu.mm-opened ~ .mm-slideout {
        -webkit-transform: translate(440px, 0);
        -ms-transform: translate(440px, 0);
        transform: translate(440px, 0);
        -webkit-transform: translate3d(440px, 0, 0);
        transform: translate3d(440px, 0, 0)
    }
}

.mm-sronly {
    border: 0 !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    -webkit-clip-path: inset(50%) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    position: absolute !important
}

em.mm-counter {
    font: inherit;
    font-size: 14px;
    font-style: normal;
    text-indent: 0;
    line-height: 20px;
    display: block;
    margin-top: -10px;
    position: absolute;
    right: 45px;
    top: 50%
}

em.mm-counter + a.mm-next {
    width: 90px
}

em.mm-counter + a.mm-next + a,
em.mm-counter + a.mm-next + span {
    margin-right: 90px
}

em.mm-counter + a.mm-fullsubopen {
    padding-left: 0
}

em.mm-counter + a.mm-fullsubopen + a,
em.mm-counter + a.mm-fullsubopen + span {
    padding-right: 90px
}

.mm-listview em.mm-counter + .mm-next.mm-fullsubopen + a,
.mm-listview em.mm-counter + .mm-next.mm-fullsubopen + span {
    padding-right: 90px
}

.mm-vertical > .mm-counter {
    top: 12px;
    margin-top: 0
}

.mm-vertical.mm-spacer > .mm-counter {
    margin-top: 40px
}

.mm-nosubresults > .mm-counter {
    display: none
}

.mm-menu em.mm-counter {
    background-color: rgba(0, 0, 0, .3);
    height: 20px;
    width: 20px;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    line-height: 21px;
    font-size: 10px;
    font-weight: 600
}

.mm-menu em.mm-counter {
    background-color: #66676b;
    display: none;
}

.mmenu-trigger {
    height: 46px;
    width: 46px;
    display: none;
    position: relative;
    margin: 0;
    background-color: #eee;
    border-radius: 4px;
    cursor: pointer
}

.hamburger {
    padding: 0;
    top: 12px;
    left: 12px;
    transform: scale(.67);
    -moz-transform: scale(.7) translateY(4px);
    position: relative;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: .15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible
}

.hamburger-box {
    position: relative
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 33px;
    height: 4px;
    background-color: #555;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: .15s;
    transition-timing-function: ease
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block
}

.hamburger-inner::before {
    top: -10px
}

.hamburger-inner::after {
    bottom: -10px
}

.hamburger--collapse .hamburger-inner {
    top: auto;
    bottom: 0;
    transition-duration: .13s;
    transition-delay: .13s;
    transition-timing-function: cubic-bezier(.55, .055, .675, .19)
}

.hamburger--collapse .hamburger-inner::after {
    top: -20px;
    transition: top .2s .2s cubic-bezier(.33333, .66667, .66667, 1), opacity .1s linear
}

.hamburger--collapse .hamburger-inner::before {
    transition: top .12s .2s cubic-bezier(.33333, .66667, .66667, 1), transform .13s cubic-bezier(.55, .055, .675, .19)
}

.hamburger--collapse.is-active .hamburger-inner {
    transform: translate3d(0, -10px, 0) rotate(-45deg);
    transition-delay: .22s;
    transition-timing-function: cubic-bezier(.215, .61, .355, 1)
}

.hamburger--collapse.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top .2s cubic-bezier(.33333, 0, .66667, .33333), opacity .1s .22s linear
}

.hamburger--collapse.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-90deg);
    transition: top .1s .16s cubic-bezier(.33333, 0, .66667, .33333), transform .13s .25s cubic-bezier(.215, .61, .355, 1)
}

.mmenu-trigger {
    display: none
}

@media(max-width:1099px) {
    #responsive {
        display: none
    }

    .mmenu-trigger {
        display: inline-block !important
    }

    #header {
        height: 76px
    }

    #logo {
        border: none
    }

    #logo img {
        border: none;
        max-width: 100px;
        height: auto
    }

    header.fullwidth .container {
        padding: 0 20px
    }

    .header-widget {
        float: left
    }

    .fullwidth .header-widget:last-of-type,
    .header-widget:last-of-type {
        padding-right: 25px;
        float: left
    }

    #header .right-side {
        position: absolute;
        width: auto;
        background-color: #fff;
        text-align: left
    }

    .mmenu-trigger {
        margin: 0 -5px 0 23px;
        top: 15px;
        float: right
    }

    #header .right-side .header-widget {
        border-right: 1px solid #e0e0e0;
        margin-right: -1px
    }

    .header-widget {
        padding: 0 25px
    }

    .header-notifications:first-child {
        margin-right: -5px
    }

    #header-container.cloned {
        display: none
    }
}

@media(max-width:768px) {
    .header-notifications {
        position: initial
    }

    .header-notifications-dropdown:before {
        display: none
    }

    .user-menu .header-notifications-dropdown,
    .header-notifications-dropdown {
        width: calc(100vw - 45px);
        right: -10px;
        top: calc(100% + 15px)
    }
}

@media(max-width:480px) {
    .hide-on-mobile {
        display: none
    }
    #wrapper{
    padding-top: 0px;
    }
}


/* ======================================
                Home Banner
====================================== */
.home-content-area {
    background-color: #e4e4e4;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 1200px;
    position: relative;
    z-index: 0;
}

.home-content-wrapper {
    height: 98vh;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    /*margin-right: -15px;
    margin-left: -15px;*/
}

.home-content-left {
    align-self: center;
}

.home-content-left h1 {
    color: #222;
    font-size: 40px;
    line-height: 1.1em;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

.home-content-left h2 {
    color: #222;
    font-weight: 500;
    padding: 15px 0;
}

.home-content-right img {
    margin-right: auto !important;
    margin-left: auto !important;
    display: block;
    z-index: 33;
    max-width: 100% !important;
}

/******* Home SVG Contents ******/
#home-svg-1 {
    right: 0;
    bottom: -1px;
}

#home-svg-2 {
    right: 0;
    bottom: -1px;
}

#home-svg-3 {
    right: 0;
    bottom: -1px;
}

/* ======================================
                Pagination
====================================== */


.pagination {
    margin: 0;
    text-align: center;
    display: inline;
}
.dataTables_paginate .pagination{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: .25rem;
}

.pagination-next-prev {
    position: relative;
    top: -66px
}

.pagination ul {
    margin: 0;
    padding: 0
}

.pagination ul li {
    display: inline-block;
    margin: 0;
    padding: 0
}

.pagination ul li a,
.pagination-next-prev ul li a {
    padding: 10px 0;
    border-bottom: none;
    display: inline-block;
    color: #333;
    background-color: transparent;
    font-weight: 700;
    margin: 0;
    line-height: 22px;
    -webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    -ms-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
    font-size: 14px;
    float: left
}

.pagination ul li a {
    border-radius: 4px;
    width: 44px;
    height: 44px;
    padding: 0;
    line-height: 44px
}

.pagination ul li a i {
    line-height: 44px;
    font-size: 24px
}

.pagination ul li.blank {
    color: #a0a0a0;
    padding: 0 6px
}

.section.gray .pagination .pagination-arrow a:hover,
.pagination ul li a.current-page,
.pagination ul li a:hover {
    background-color: #333;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .2)
}

.pagination ul li a.current-page {
    background-color: #66676b;
    color: #fff;
    box-shadow: 0 2px 8px rgba(102, 103, 107, .25)
}

.pagination .pagination-arrow a {
    background-color: #f0f0f0
}

.section.gray .pagination .pagination-arrow a {
    background-color: #eaeaea
}

/* ======================================
                Back to Top
====================================== */


#backtotop {
    position: fixed;
    right: 0;
    opacity: 0;
    visibility: hidden;
    bottom: 25px;
    margin: 0 25px 0 0;
    z-index: 999;
    transition: .35s;
    transform: translateY(10px)
}

#backtotop.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

#backtotop a {
    text-decoration: none;
    border: 0;
    display: block;
    width: 46px;
    height: 46px;
    background-color: #1689D6;
    opacity: 1;
    transition: all .3s;
    border-radius: 4px;
    text-align: center;
    font-size: 26px
}

#backtotop a:hover,
#backtotop a:focus {
    background: #fff;
    color: #161e2c;
}

body #backtotop a {
    color: #fff
}

#backtotop a i {
    position: relative;
    display: block;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}


@media(max-width:768px) {
    #backtotop {
        display: none
    }
    #wrapper{
    padding-top: 0px;
    }
}



.sidebar-container {
    margin-bottom: 40px
}

.full-page-container .sidebar-container {
    margin-bottom: 0
}

.sidebar-widget input {
    margin-bottom: 0
}

.sidebar-widget {
    margin-bottom: 50px;
    display: block
}

.sidebar-widget h3 {
    font-size: 20px;
    margin-bottom: 20px
}

.content-left-offset {
    padding-left: 30px
}

.content-right-offset {
    padding-right: 30px
}

@media(max-width:992px) {
    .content-left-offset {
        padding-left: 15px
    }

    .content-right-offset {
        padding-right: 15px
    }
     #wrapper{
    padding-top: 0px;
    }
}

@media(max-width:768px) {
    .content-left-offset {
        padding-left: 15px
    }

    .content-right-offset {
        padding-left: 15px
    }
}


.freelancers-container {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 30px)
}

.freelancer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 30px 30px 0;
    width: calc(100% * (1/2) - 30px);
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .12);
    background-color: #fff;
    transition: .3s;
    position: relative;
    cursor: default
}

.freelancer:hover {
    box-shadow: 0 2px 18px rgba(0, 0, 0, .14);
    transform: translateY(-4px)
}

.freelancer .bookmark-icon {
    cursor: pointer
}

.employer-overview,
.freelancer-overview {
    text-align: center;
    padding: 38px 20px;
    flex-grow: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center
}

.employer-overview-inner,
.freelancer-overview-inner {
    flex: 1
}

.employer-overview .employer-avatar ,
.freelancer-overview .freelancer-avatar {
    width: 110px;
    margin: 0 auto;
    position: relative
}

.employer-overview .employer-avatar img ,
.freelancer-overview .freelancer-avatar img {
    width: 100%;
    border-radius: 50%;
    cursor: pointer
}

.employer-overview .employer-avatar .verified-badge,
.freelancer-overview .freelancer-avatar .verified-badge {
    position: absolute;
    bottom: 0;
    right: 0
}

.employer-name ,
.freelancer-name {
    margin-top: 19px
}

.employer-rating,
.freelancer-rating {
    margin-top: 5px;
    margin-bottom: -10px
}

.employer-name h4,
.employer-name h4 a ,
.freelancer-name h4,
.freelancer-name h4 a {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    cursor: pointer
}

.freelancer-name img.flag,
.employer-name img.flag {
    height: 15px;
    border-radius: 3px;
    position: relative;
    top: -1px;
    display: inline-block;
    box-shadow: 0 0 3px rgba(0, 0, 0, .2);
    margin-left: 4px;
    cursor: default
}

.freelancer-name span,
.employer-name span {
    color: #888
}

.freelancer-details ,
.employer-details {
    padding: 35px;
    background-color: #fafafa;
    flex-grow: 0
}

.freelancers-grid-layout .freelancer-details {
    border-radius: 0 0 4px 4px
}

.freelancers-grid-layout .freelancer-details a.button {
    display: block;
    text-align: center;
    width: 100% !important;
    transition: .3s;
    box-shadow: 0 4px 12px rgba(102, 103, 107, .1)
}

.freelancer-details a.button:hover {
    box-shadow: 0 4px 12px rgba(102, 103, 107, .2)
}

.freelancer-details-list ul {
    list-style: none;
    padding: 0;
    margin: 0 0 5px;
    font-size: 14.7px
}

.freelancer-details-list ul li {
    display: inline-block;
    margin-right: 25px;
    line-height: 23px;
    color: gray;
    margin-bottom: 15px
}

.freelancer-details-list ul li:last-child {
    margin-right: 0
}

.freelancer-details-list ul li strong {
    display: block;
    color: #333
}

.freelancer-details-list ul li strong i {
    position: relative;
    top: 1px;
    margin-right: -1px;
    margin-left: -2px
}

.employer-detail-item,
.freelancer-detail-item {
    display: inline-block;
    margin: 10px 10px 5px 0
}
.employer-detail-item a,
.employer-detail-item,
.freelancer-detail-item a,
.freelancer-detail-item {
    color: #888
}

.employer-detail-item a:hover,
.freelancer-detail-item a:hover {
    color: #66676b
}

.employer-detail-item i ,
.freelancer-detail-item i {
    position: relative;
    top: 2px;
    margin-right: 3px
}

@media(max-width:1366px) {
    .freelances-grid-layout .freelancer-overview .freelancer-avatar, 
    .freelances-grid-layout .employer-overview .employer-avatar {
        width: 100px
    }


}

@media(max-width:768px) {
    .freelances-grid-layout.freelancers-container {
        width: 100%
    }

    .freelances-grid-layout .freelancer {
        margin: 0 0 30px;
        width: 100%
    }

    .freelancers-container.freelancers-grid-layout {
        width: 100%
    }

    .freelancers-container.freelancers-grid-layout .freelancer {
        width: 100%;
        margin-right: 0
    }
}

@media(max-width:2560px) {
    .full-page-container .freelancer {
        width: calc(100% * (1/4) - 30px)
    }
}

@media(max-width:1920px) {
    .full-page-container .freelancer {
        width: calc(100% * (1/3) - 30px)
    }
}

@media(max-width:1366px) {
    .full-page-container .freelancer {
        width: calc(100% * (1/2) - 30px)
    }
}

@media(max-width:1099px) {
    .full-page-container .freelancers-container {
        width: 100%
    }

    .full-page-container .freelancer {
        width: 100%;
        margin-right: 0
    }

     #wrapper{
    padding-top: 0px;
    }
}

.freelancers-container.freelancers-list-layout {
    width: 100%
}

.freelancers-list-layout .freelancer {
    margin: 0 0 30px;
    width: 100%;
    flex-direction: row;
    justify-content: center
}

.freelancers-list-layout .freelancer-overview,
.freelancers-list-layout .employer-overview {
    text-align: left;
    padding: 45px 40px;
    flex-grow: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center
}

.freelancers-list-layout .freelancer-overview-inner {
    flex: 1;
    display: flex;
    align-items: center
}

.freelancers-list-layout .freelancer-details,
.employer-list-layout .employer-details {
    padding: 45px 40px 45px 0;
    background-color: transparent;
    flex: 0 0 360px
}

.freelancers-list-layout .freelancer-overview .freelancer-avatar,
.employer-list-layout .employer-overview .employer-avatar {
    width: 100px;
    margin: 0
}

.freelancers-list-layout .freelancer-overview .freelancer-name,
.freelancers-list-layout .freelancer-overview .employer-name {
    text-align: left;
    margin: 0 0 0 30px
}

.freelancers-list-layout .freelancer-details a.button {
    display: block;
    text-align: center;
    min-width: 50%;
    max-width: 100%;
    width: auto !important;
    transition: .3s;
    float: right;
    box-shadow: 0 4px 12px rgba(102, 103, 107, .15)
}

.freelancers-list-layout .freelancer-details a.button:hover {
    box-shadow: 0 4px 12px rgba(102, 103, 107, .25)
}

.freelancers-list-layout .bookmark-icon {
    display: none
}

.freelancers-list-layout .freelancer-details-list ul {
    float: right;
    display: block
}

.freelancers-list-layout .freelancer-details-list ul li {
    margin-left: 25px;
    margin-right: 0;
    float: right
}

.compact-list.freelancers-list-layout .freelancer {
    border-radius: 0;
    margin-bottom: 0;
    box-shadow: none
}

.compact-list.freelancers-list-layout .freelancer:hover {
    transform: translateY(0)
}

.compact-list.freelancers-list-layout {
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .12)
}

.compact-list.freelancers-list-layout .freelancer:nth-child(2n) {
    background-color: #fafafa
}

.compact-list.freelancers-list-layout .freelancer:hover:before {
    opacity: 1
}

.compact-list.freelancers-list-layout .freelancer:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    display: block;
    background: #66676b;
    transition: .3s;
    opacity: 0
}

.compact-list.freelancers-list-layout .freelancer:last-of-type {
    border-radius: 0 0 3px 3px;
    overflow: hidden
}

.compact-list.freelancers-list-layout .freelancer:first-of-type {
    border-radius: 3px 3px 0 0;
    overflow: hidden
}

@media(max-width:1366px) {
    .freelancers-list-layout .freelancer-overview .freelancer-avatar {
        width: 100px
    }
}

@media(max-width:1240px) {
    .freelancers-list-layout .freelancer {
        flex-direction: column
    }

    .freelancers-list-layout .freelancer-details {
        flex: 1;
        padding: 35px 40px;
        background-color: #fafafa
    }

    .freelancers-list-layout .freelancer-details-list ul {
        float: left
    }

    .freelancers-list-layout .freelancer-details-list ul li {
        margin-left: 0;
        margin-right: 25px;
        float: left
    }

    .freelancers-list-layout .freelancer-details a.button {
        float: none;
        width: 100% !important
    }

    .freelancers-list-layout .freelancer-overview .freelancer-avatar {
        width: 90px
    }

    .compact-list.freelancers-list-layout .freelancer-details {
        background-color: transparent;
        padding-top: 0
    }
}

@media(max-width:768px) {

    .freelancers-list-layout .freelancer-overview,
    .freelancers-list-layout .freelancer-details {
        padding: 30px
    }

    .freelancers-list-layout .freelancer-overview .freelancer-avatar {
        width: 80px
    }

    .freelancers-list-layout .star-rating:before {
        display: block;
        float: none;
        text-align: center;
        max-width: 40px;
        margin-bottom: 4px
    }
}

.bootstrap-select .dropdown-menu {
    opacity: 0;
    transition: .4s;
    display: block;
    pointer-events: none;
    visibility: hidden;
    cursor: default
}

.bootstrap-select.open .dropdown-menu {
    opacity: 1;
    pointer-events: all;
    visibility: visible
}
.notify-box {
    display: block;
    width: 100%;
    background-color: #f2f2f2;
    border-radius: 4px;
    padding: 15px 25px;
    position: relative;
    line-height: 28px;
    min-height: 59px
}

.notify-box label {
    margin-bottom: 0;
    cursor: pointer
}

.notify-box .switch-button {
    margin-right: 10px
}

.sort-by .bootstrap-select {
    position: relative;
    right: 0;
    top: 0
}

.sort-by .dropdown-menu {
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, .14)
}

.sort-by .bootstrap-select.btn-group button {
    flex: 1;
    position: relative;
    right: 0;
    top: 4px;
    font-weight: 600;
    margin-left: 10px;
    width: auto;
    padding: 0;
    padding-right: 12px;
    background-color: transparent;
    box-shadow: none;
    height: 20px;
    color: #333
}

.sort-by .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: auto
}

.sort-by .bootstrap-select.btn-group .dropdown-toggle .caret {
    right: 0
}

.sort-by .bootstrap-select .dropdown-menu {
    padding-top: 15px;
    top: 40px;
    right: 0;
    left: auto;
    position: absolute;
    min-width: 160px !important;
    flex: 1
}

.sort-by .bootstrap-select.open:before {
    display: none
}

.sort-by {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    position: relative;
    float: right
}

@media(max-width:768px) {
    .notify-box {
        margin-bottom: 90px
    }

    .notify-box .sort-by {
        position: absolute;
        margin-top: 35px;
        left: 0
    }

    .notify-box .sort-by .bootstrap-select .dropdown-menu {
        left: 0;
        right: auto
    }
}

.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-top: 4px solid #aaa;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent
}

.dropup,
.dropdown {
    position: relative
}

.dropdown-toggle:focus {
    outline: 0
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    padding: 10px 5px;
    margin: -4px 0 0;
    font-size: 15px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    border: none;
    border-radius: 4px;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .12)
}


.dropdown-menu.pull-right {
    right: 0;
    left: auto
}

.dropdown-menu .divider {
    display: none
}

.dropdown-menu > li > a {
    display: block;
    padding: 7px 10px;
    padding-right: 35px;
    clear: both;
    font-weight: 400;
    line-height: 21px;
    color: gray;
    border-radius: 4px
}






.bootstrap-select:before {
    content: "";
    position: absolute;
    z-index: 2100;
    bottom: 0;
    left: 0;
    height: 8px;
    width: 100%;
    background-color: #fff;
    display: block;
    opacity: 0;
    pointer-events: none;
    transition: .4s
}

.bootstrap-select.open:before {
    opacity: 1
}

.dropdown-menu > li > a:hover,
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover {
    color: #66676b;
    text-decoration: none;
    background-color: rgba(102, 103, 107, .07)
}

.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover {
    color: #777
}

.dropdown-menu > .disabled > a:hover {
    text-decoration: none;
    cursor: not-allowed;
    background-color: transparent;
    background-image: none
}

.dropdown-menu.inner::-webkit-scrollbar {
    width: 5px
}

.dropdown-menu.inner::-webkit-scrollbar-track {
    background-color: transparent;
    border-radius: 12px
}

.dropdown-menu.inner::-webkit-scrollbar-thumb {
    border-radius: 12px;
    background-color: #d8d8d8
}

.dropdown-menu.inner::-webkit-scrollbar-thumb:hover {
    border-radius: 12px;
    background-color: #c8c8c8
}

.bootstrap-select .dropdown-menu {
    opacity: 0;
    transition: .4s;
    display: block;
    pointer-events: none;
    visibility: hidden;
    cursor: default
}


.open > a {
    outline: 0
}

.dropdown-menu-right {
    right: 0;
    left: auto
}

.dropdown-menu-left {
    right: auto;
    left: 0
}

.dropdown-header {
    display: block;
    padding: 7px 10px;
    line-height: 20px;
    white-space: nowrap;
    background: #f6f6f6;
    color: #777;
    border-radius: 4px;
    margin-bottom: 1px
}

.dropdown-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 990
}

.pull-right > .dropdown-menu {
    right: 0;
    left: auto
}

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
    content: "";
    border-top: 0;
    border-bottom: 4px dashed;
    border-bottom: 4px solid \9
}

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
    top: 100%;
    bottom: auto;
    margin-bottom: 2px
}

@media(min-width:767px) {
    .navbar-right .dropdown-menu {
        right: 0;
        left: auto
    }

    .navbar-right .dropdown-menu-left {
        right: auto;
        left: 0
    }
}
.dropdown-toggle::after {
    display: none;
}
.bootstrap-select.btn-group {
    position: relative
}

.bootstrap-select.btn-group button {
    position: relative;
    display: inline-block;
    height: 48px;
    line-height: 0;
    padding: 0 20px;
    margin: 0;
    outline: none;
    font-size: 16px;
    color: gray;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    display: block;
    background-color: #fff;
    font-weight: 500;
    opacity: 1;
    border-radius: 4px;
    border: none;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .12)
}

.hide-tick .check-mark {
    display: none !important
}

.bootstrap-select.btn-group .dropdown-menu li a span.check-mark {
    position: absolute;
    display: inline-block;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    line-height: 0;
    width: 20px;
    height: 20px;
    text-align: center
}

.bootstrap-select.btn-group .dropdown-menu li span.check-mark:before {
    font-family: feather-icons;
    content: "\e92b";
    font-size: 18px;
    transition: all .3s;
    display: inline-block;
    top: 50%;
    right: 0;
    position: absolute;
    margin: 0;
    opacity: 0;
    transform: scale(.5)
}

.bootstrap-select.btn-group .dropdown-menu li.selected span.check-mark:before {
    opacity: 1;
    transform: scale(1);
    transition: all .35s cubic-bezier(.3, -.41, .19, 2), opacity .3s
}

.bootstrap-select .dropdown-menu li.selected a span.check-mark:before,
.bootstrap-select .dropdown-menu li.selected:hover a span.check-mark:before {
    color: #66676b
}

.bootstrap-select .glyphicon:not(.check-mark) {
    font-size: 17px;
    line-height: 0;
    position: relative;
    top: 1px;
    margin-right: 3px
}

.bootstrap-select .filter-option .glyphicon {
    position: relative;
    top: 1px
}

.with-border .dropdown-menu,
.with-border.bootstrap-select.btn-group button {
    border: 1px solid #e0e0e0;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .05)
}

.with-border.bootstrap-select:before {
    width: calc(100% - 2px);
    left: 1px
}

select.bs-select-hidden,
select.selectpicker {
    display: none !important
}

.bootstrap-select.btn-group.disabled,
.bootstrap-select.btn-group > .disabled {
    cursor: not-allowed
}

.bootstrap-select.btn-group.disabled:focus,
.bootstrap-select.btn-group > .disabled:focus {
    outline: none !important
}

.bootstrap-select.btn-group.bs-container {
    position: absolute;
    height: 0 !important;
    padding: 0 !important
}

.bootstrap-select.btn-group.bs-container .dropdown-menu {
    z-index: 1060
}

.bootstrap-select.btn-group .dropdown-toggle .filter-option {
    overflow: hidden;
    width: 100%;
    line-height: 48px;
    text-align: left;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 90%;
    float: left;
    height: 48px;
    display: block
}

.bootstrap-select.btn-group .dropdown-menu li.hidden {
    display: none
}

.language-switcher.bootstrap-select.btn-group .dropdown-toggle .filter-option,
.sort-by .bootstrap-select.btn-group .dropdown-toggle .filter-option {
    max-width: 100%;
    float: left
}

.sort-by .bootstrap-select.btn-group .dropdown-toggle .filter-option {
    line-height: 20px;
    height: auto
}

.bootstrap-select.btn-group .dropdown-toggle .caret {
    position: absolute;
    top: 50%;
    right: 20px;
    margin-top: -2px;
    vertical-align: middle;
    transition: .35s
}

.bootstrap-select.open .dropdown-toggle .caret {
    transform: rotate(180deg)
}

.bootstrap-select.btn-group[class*=col-] .dropdown-toggle {
    width: 100%
}

.bootstrap-select.btn-group .dropdown-menu {
    min-width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 16px
}

.bootstrap-select.btn-group .dropdown-menu.inner {
    position: static;
    float: none;
    border: 0;
    padding: 0 5px;
    border-radius: 0;
    box-shadow: none
}

.bootstrap-select.btn-group .dropdown-menu li {
    position: relative;
    margin-bottom: 1px
}

.bootstrap-select.btn-group .dropdown-menu li.disabled {
    opacity: .75
}

.bootstrap-select.btn-group .dropdown-menu li.active small {
    color: #fff
}

.bootstrap-select.btn-group .dropdown-menu li.disabled a {
    cursor: not-allowed
}

.bootstrap-select.btn-group .dropdown-menu li a {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.bootstrap-select.btn-group .dropdown-menu li a span.text {
    display: inline-block
}

.bootstrap-select.btn-group .dropdown-menu li small {
    padding-left: 7px;
    opacity: .8
}

.bootstrap-select.btn-group .dropdown-menu .notify {
    position: absolute;
    bottom: 5px;
    width: calc(100% - 20px);
    margin: 0;
    min-height: 26px;
    padding: 3px 5px;
    pointer-events: none;
    padding: 5px 10px;
    background: #333;
    color: #fff;
    margin: 5px;
    margin-bottom: 5px;
    border-radius: 4px;
    white-space: nowrap;
    font-size: 14px;
    border: none
}

.bootstrap-select.btn-group .no-results {
    padding: 5px 10px;
    background: #f6f6f6;
    margin: 5px 0;
    margin-bottom: 0;
    border-radius: 4px;
    white-space: nowrap;
    font-size: 14px
}

.bootstrap-select.btn-group.fit-width .dropdown-toggle .filter-option {
    position: static
}

.bootstrap-select.btn-group.fit-width .dropdown-toggle .caret {
    position: static;
    top: auto;
    margin-top: -1px
}

.bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text {
    white-space: normal
}

.bootstrap-select.show-menu-arrow.open > .dropdown-toggle {
    z-index: 1061
}

.bootstrap-select.show-menu-arrow .dropdown-toggle:before {
    content: '';
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid rgba(204, 204, 204, .2);
    position: absolute;
    bottom: -4px;
    left: 9px;
    display: none
}

.bootstrap-select.show-menu-arrow .dropdown-toggle:after {
    content: '';
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
    position: absolute;
    bottom: -4px;
    left: 10px;
    display: none
}

.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:before {
    bottom: auto;
    top: -3px;
    border-top: 7px solid rgba(204, 204, 204, .2);
    border-bottom: 0
}

.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:after {
    bottom: auto;
    top: -3px;
    border-top: 6px solid #fff;
    border-bottom: 0
}

.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:before {
    right: 12px;
    left: auto
}

.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:after {
    right: 13px;
    left: auto
}

.bootstrap-select.show-menu-arrow.open > .dropdown-toggle:before,
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle:after {
    display: block
}


select.bs-select-hidden,
select.selectpicker {
    display: none !important
}

.bootstrap-select .btn {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.bootstrap-select > .dropdown-toggle {
    width: 100%;
    padding-right: 25px;
    z-index: 1
}

.bootstrap-select > .dropdown-toggle.bs-placeholder,
.bootstrap-select > .dropdown-toggle.bs-placeholder:hover,
.bootstrap-select > .dropdown-toggle.bs-placeholder:focus,
.bootstrap-select > .dropdown-toggle.bs-placeholder:active {
    color: gray
}

.bootstrap-select > select {
    position: absolute !important;
    bottom: 0;
    left: 50%;
    display: block !important;
    width: .5px !important;
    height: 100% !important;
    padding: 0 !important;
    opacity: 0 !important;
    border: none
}

.bootstrap-select > select.mobile-device {
    top: 0;
    left: 0;
    display: block !important;
    width: 100% !important;
    z-index: 2
}

.has-error .bootstrap-select .dropdown-toggle,
.error .bootstrap-select .dropdown-toggle {
    border-color: #b94a48
}

.bootstrap-select.fit-width {
    width: auto !important
}

.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: 100%
}

.bootstrap-select.form-control {
    margin-bottom: 0;
    padding: 0;
    border: none
}

.bootstrap-select.form-control:not([class*=col-]) {
    width: 100%
}

.bootstrap-select.form-control.input-group-btn {
    z-index: auto
}

.bootstrap-select.form-control.input-group-btn:not(:first-child):not(:last-child) > .btn {
    border-radius: 0
}

.bootstrap-select.btn-group:not(.input-group-btn),
.bootstrap-select.btn-group[class*=col-] {
    float: none;
    display: flex;
    margin-left: 0
}

.bootstrap-select.btn-group.dropdown-menu-right,
.bootstrap-select.btn-group[class*=col-].dropdown-menu-right,
.row .bootstrap-select.btn-group[class*=col-].dropdown-menu-right {
    float: right
}

.form-inline .bootstrap-select.btn-group,
.form-horizontal .bootstrap-select.btn-group,
.checkbox .bootstrap-select.btn-group {
    margin-bottom: 0
}

.checkbox-lg .bootstrap-select.btn-group.form-control,
.checkbox-sm .bootstrap-select.btn-group.form-control {
    padding: 0
}

.checkbox-lg .bootstrap-select.btn-group.form-control .dropdown-toggle,
.checkbox-sm .bootstrap-select.btn-group.form-control .dropdown-toggle {
    height: 100%;
    font-size: inherit;
    line-height: inherit;
    border-radius: inherit
}

.form-inline .bootstrap-select.btn-group .form-control {
    width: 100%
}

.bootstrap-select.btn-group.disabled,
.bootstrap-select.btn-group > .disabled {
    cursor: not-allowed
}

.bootstrap-select.btn-group.disabled:focus,
.bootstrap-select.btn-group > .disabled:focus {
    outline: none !important
}

.bootstrap-select.btn-group.bs-container {
    position: absolute;
    height: 0 !important;
    padding: 0 !important
}

.bootstrap-select.btn-group.bs-container .dropdown-menu {
    z-index: 1060
}

.bootstrap-select.btn-group .dropdown-toggle .filter-option {
    overflow: hidden;
    width: 100%;
    line-height: 48px;
    text-align: left;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 90%;
    float: left;
    height: 48px;
    display: block
}

.bootstrap-select.btn-group .dropdown-menu li.hidden {
    display: none
}

.language-switcher.bootstrap-select.btn-group .dropdown-toggle .filter-option,
.sort-by .bootstrap-select.btn-group .dropdown-toggle .filter-option {
    max-width: 100%;
    float: left
}

.sort-by .bootstrap-select.btn-group .dropdown-toggle .filter-option {
    line-height: 20px;
    height: auto
}

.bootstrap-select.btn-group .dropdown-toggle .caret {
    position: absolute;
    top: 50%;
    right: 20px;
    margin-top: -2px;
    vertical-align: middle;
    transition: .35s
}

.bootstrap-select.open .dropdown-toggle .caret {
    transform: rotate(180deg)
}

.bootstrap-select.btn-group[class*=col-] .dropdown-toggle {
    width: 100%
}

.bootstrap-select.btn-group .dropdown-menu {
    min-width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 16px
}

.bootstrap-select.btn-group .dropdown-menu.inner {
    position: static;
    float: none;
    border: 0;
    padding: 0 5px;
    border-radius: 0;
    box-shadow: none
}

.bootstrap-select.btn-group .dropdown-menu li {
    position: relative;
    margin-bottom: 1px
}

.bootstrap-select.btn-group .dropdown-menu li.disabled {
    opacity: .75
}

.bootstrap-select.btn-group .dropdown-menu li.active small {
    color: #fff
}

.bootstrap-select.btn-group .dropdown-menu li.disabled a {
    cursor: not-allowed
}

.bootstrap-select.btn-group .dropdown-menu li a {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.bootstrap-select.btn-group .dropdown-menu li a span.text {
    display: inline-block
}

.bootstrap-select.btn-group .dropdown-menu li small {
    padding-left: 7px;
    opacity: .8
}

.bootstrap-select.btn-group .dropdown-menu .notify {
    position: absolute;
    bottom: 5px;
    width: calc(100% - 20px);
    margin: 0;
    min-height: 26px;
    padding: 3px 5px;
    pointer-events: none;
    padding: 5px 10px;
    background: #333;
    color: #fff;
    margin: 5px;
    margin-bottom: 5px;
    border-radius: 4px;
    white-space: nowrap;
    font-size: 14px;
    border: none
}

.bootstrap-select.btn-group .no-results {
    padding: 5px 10px;
    background: #f6f6f6;
    margin: 5px 0;
    margin-bottom: 0;
    border-radius: 4px;
    white-space: nowrap;
    font-size: 14px
}

.bootstrap-select.btn-group.fit-width .dropdown-toggle .filter-option {
    position: static
}

.bootstrap-select.btn-group.fit-width .dropdown-toggle .caret {
    position: static;
    top: auto;
    margin-top: -1px
}

.bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text {
    white-space: normal
}

.bootstrap-select.show-menu-arrow.open > .dropdown-toggle {
    z-index: 1061
}

.bootstrap-select.show-menu-arrow .dropdown-toggle:before {
    content: '';
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid rgba(204, 204, 204, .2);
    position: absolute;
    bottom: -4px;
    left: 9px;
    display: none
}

.bootstrap-select.show-menu-arrow .dropdown-toggle:after {
    content: '';
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
    position: absolute;
    bottom: -4px;
    left: 10px;
    display: none
}

.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:before {
    bottom: auto;
    top: -3px;
    border-top: 7px solid rgba(204, 204, 204, .2);
    border-bottom: 0
}

.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:after {
    bottom: auto;
    top: -3px;
    border-top: 6px solid #fff;
    border-bottom: 0
}

.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:before {
    right: 12px;
    left: auto
}

.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:after {
    right: 13px;
    left: auto
}

.bootstrap-select.show-menu-arrow.open > .dropdown-toggle:before,
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle:after {
    display: block
}

.bs-searchbox,
.bs-actionsbox,
.bs-donebutton {
    padding: 0 5px
}

.bs-actionsbox {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 5px;
    margin-bottom: 10px;
    margin-top: -5px
}

.bs-actionsbox div {
    display: flex
}

.bootstrap-select.btn-group .bs-actionsbox div button {
    flex: 1;
    background: #f6f6f6;
    box-shadow: none;
    padding: 5px;
    height: 36px;
    font-size: 14px;
    color: #777;
    transition: .3s
}

.bootstrap-select.btn-group .bs-actionsbox div button:first-child {
    border-radius: 4px 0 0 4px;
    background-color: #f0f0f0
}

.bootstrap-select.btn-group .bs-actionsbox div button:last-child {
    border-radius: 0 4px 4px 0
}

.bootstrap-select.btn-group .bs-actionsbox div button:hover {
    background: #66676b;
    color: #fff
}

.bs-actionsbox .btn-group button {
    width: 50%
}

.bs-donebutton {
    float: left;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.bs-donebutton .btn-group button {
    width: 100%
}

.bs-searchbox + .bs-actionsbox {
    padding: 0
}

.bs-searchbox .form-control:focus,
.bs-searchbox .form-control {
    margin-bottom: 0;
    width: 100%;
    float: none;
    box-shadow: none;
    background: #f4f4f4;
    margin: -5px 0 10px;
    height: 38px;
    line-height: 38px;
    padding: 10px
}

.bs-searchbox {
    position: relative
}

.bs-searchbox:after {
    font-family: material-icons;
    content: "\e982";
    font-size: 20px;
    width: 20px;
    height: 20px;
    line-height: 0;
    display: inline-block;
    position: absolute;
    margin: 0;
    color: #a0a0a0;
    right: 15px;
    top: 18px
}

.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-top: 4px solid #aaa;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent
}

.dropup,
.dropdown {
    position: relative
}

.dropdown-toggle:focus {
    outline: 0
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    padding: 10px 5px;
    margin: -4px 0 0;
    font-size: 15px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    border: none;
    border-radius: 4px;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .12)
}

.dropdown-menu.pull-right {
    right: 0;
    left: auto
}

.dropdown-menu .divider {
    display: none
}

.dropdown-menu > li > a {
    display: block;
    padding: 7px 10px;
    padding-right: 35px;
    clear: both;
    font-weight: 400;
    line-height: 21px;
    color: gray;
    border-radius: 4px
}

.bootstrap-select:before {
    content: "";
    position: absolute;
    z-index: 2100;
    bottom: 0;
    left: 0;
    height: 8px;
    width: 100%;
    background-color: #fff;
    display: block;
    opacity: 0;
    pointer-events: none;
    transition: .4s
}

.bootstrap-select.open:before {
    opacity: 1
}

.dropdown-menu > li > a:hover,
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover {
    color: #66676b;
    text-decoration: none;
    background-color: rgba(102, 103, 107, .07)
}

.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover {
    color: #777
}

.dropdown-menu > .disabled > a:hover {
    text-decoration: none;
    cursor: not-allowed;
    background-color: transparent;
    background-image: none
}

.dropdown-menu.inner::-webkit-scrollbar {
    width: 5px
}

.dropdown-menu.inner::-webkit-scrollbar-track {
    background-color: transparent;
    border-radius: 12px
}

.dropdown-menu.inner::-webkit-scrollbar-thumb {
    border-radius: 12px;
    background-color: #d8d8d8
}

.dropdown-menu.inner::-webkit-scrollbar-thumb:hover {
    border-radius: 12px;
    background-color: #c8c8c8
}

.bootstrap-select .dropdown-menu {
    opacity: 0;
    transition: .4s;
    display: block;
    pointer-events: none;
    visibility: hidden;
    cursor: default
}

.bootstrap-select.open .dropdown-menu {
    opacity: 1;
    pointer-events: all;
    visibility: visible
}

.open > a {
    outline: 0
}

.dropdown-menu-right {
    right: 0;
    left: auto
}

.dropdown-menu-left {
    right: auto;
    left: 0
}

.dropdown-header {
    display: block;
    padding: 7px 10px;
    line-height: 20px;
    white-space: nowrap;
    background: #f6f6f6;
    color: #777;
    border-radius: 4px;
    margin-bottom: 1px
}

.dropdown-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 990
}

.pull-right > .dropdown-menu {
    right: 0;
    left: auto
}

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
    content: "";
    border-top: 0;
    border-bottom: 4px dashed;
    border-bottom: 4px solid \9
}

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
    top: 100%;
    bottom: auto;
    margin-bottom: 2px
}

@media(min-width:767px) {
    .navbar-right .dropdown-menu {
        right: 0;
        left: auto
    }

    .navbar-right .dropdown-menu-left {
        right: auto;
        left: 0
    }
}

.bootstrap-select.btn-group {
    position: relative
}

.hide-tick .check-mark {
    display: none !important
}

.bootstrap-select.btn-group .dropdown-menu li a span.check-mark {
    position: absolute;
    display: inline-block;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    line-height: 0;
    width: 20px;
    height: 20px;
    text-align: center
}

.bootstrap-select.btn-group .dropdown-menu li span.check-mark:before {
    font-family: feather-icons;
    content: "\e92b";
    font-size: 18px;
    transition: all .3s;
    display: inline-block;
    top: 50%;
    right: 0;
    position: absolute;
    margin: 0;
    opacity: 0;
    transform: scale(.5)
}

.bootstrap-select.btn-group .dropdown-menu li.selected span.check-mark:before {
    opacity: 1;
    transform: scale(1);
    transition: all .35s cubic-bezier(.3, -.41, .19, 2), opacity .3s
}

.bootstrap-select .dropdown-menu li.selected a span.check-mark:before,
.bootstrap-select .dropdown-menu li.selected:hover a span.check-mark:before {
    color: #66676b
}

.bootstrap-select .glyphicon:not(.check-mark) {
    font-size: 17px;
    line-height: 0;
    position: relative;
    top: 1px;
    margin-right: 3px
}

.bootstrap-select .filter-option .glyphicon {
    position: relative;
    top: 1px
}

.edit-icon i {
    font-size: 25px;
}

.edit-icon:hover i {
    color: #293038;
}

#profile-settings-btn,
#pass-settings-btn,
#account-settings-btn,
#skill-settings-btn,
#payment-settings-btn ,
#shift-settings-btn {
    display: none;
}



.sidebar-search-button-container {
    position: absolute;
    width: calc(100% - 15px);
    padding-top: 10px;
    z-index: 100;
}

.sidebar-search-button-container button {
    width: calc(100% - 15px);
    line-height: 46px;
    height: 46px;
    transition: .3s;
    box-shadow: 0 4px 12px rgba(102, 103, 107, .1)
}

.sidebar-search-button-container button:hover {
    box-shadow: 0 4px 12px rgba(102, 103, 107, .25);
    transform: translateY(-2px)
}

@media(max-width:3860px) {
    .full-page-content-inner .grid-layout .job-listing {
        width: calc(100% * (1/4) - 30px)
    }

    .full-page-container.with-map .full-page-content-inner .grid-layout .job-listing {
        width: calc(100% * (1/3) - 30px)
    }
}

@media(max-width:2560px) {
    .full-page-content-inner .grid-layout .job-listing {
        width: calc(100% * (1/4) - 30px)
    }

    .full-page-container.with-map .full-page-content-inner .grid-layout .job-listing {
        width: calc(100% * (1/2) - 30px)
    }
}

@media(max-width:1920px) {
    .full-page-content-inner .grid-layout .job-listing {
        width: calc(100% * (1/3) - 30px)
    }

    .full-page-container.with-map .full-page-sidebar {
        flex: 0 0 340px
    }

    .full-page-container.with-map .full-page-sidebar .full-page-sidebar-inner {
        width: 340px
    }

    .full-page-container.with-map .full-page-content-inner .grid-layout .job-listing {
        width: calc(100% * (1/2) - 30px)
    }
}

@media(max-width:1600px) {
    .full-page-content-inner .grid-layout .job-listing {
        width: calc(100% * (1/2) - 30px)
    }

    .full-page-sidebar {
        flex: 0 0 340px
    }

    .full-page-container.with-map .full-page-sidebar {
        flex: 0 0 320px
    }

    .full-page-container.with-map .full-page-sidebar .full-page-sidebar-inner {
        width: 320px
    }

    .full-page-container.with-map .full-page-content-inner .grid-layout .job-listing {
        width: calc(100% - 30px)
    }

    .full-page-container.with-map .full-page-content-container {
        flex: 0 0 55vw
    }
}

@media(max-width:1365px) {
    .location-field-on-map {
        left: 0;
        right: auto;
        width: calc(100% - 80px);
        max-width: calc(100% - 80px);
        margin: 0 40px
    }

    .full-page-container .notify-box {
        margin-bottom: 80px
    }

    .full-page-container .notify-box .sort-by {
        position: absolute;
        margin-top: 40px;
        left: 0
    }

    .full-page-container .notify-box .sort-by .bootstrap-select .dropdown-menu {
        left: 0;
        right: auto
    }
}

@media(max-width:1099px) {
    .full-page-content-inner .grid-layout .job-listing {
        width: calc(100% - 30px)
    }

    .full-page-sidebar {
        flex: 0 0 340px
    }

    .full-page-map-container {
        order: -1;
        width: 100%;
        height: 400px;
        position: absolute;
        top: 0
    }

    .full-page-container.with-map {
        padding-top: 400px;
        height: auto !important;
        width: 100%;
        position: relative
    }

    .full-page-container.with-map .full-page-sidebar {
        max-width: 100%;
        visibility: visible;
        opacity: 1
    }

    .filter-button-container {
        display: none
    }

    .full-page-container.with-map .full-page-sidebar .full-page-sidebar-inner {
        position: relative;
        width: 100%
    }

    .full-page-container.with-map .full-page-content-container {
        flex: 1
    }

    .full-page-container,
    .full-page-sidebar-inner,
    .full-page-content-container,
    .full-page-container .full-page-sidebar {
        height: auto !important
    }

    .full-page-container .simplebar-track {
        display: none
    }
}
.dropup .dropdown-toggle::after {
    display: none;
}
@media(max-width:992px) {
    .location-field-on-map {
        width: calc(100% - 50px);
        max-width: calc(100% - 50px);
        margin: 0 25px;
        top: 25px
    }

    .sidebar-search-button-container,
    .full-page-sidebar .sidebar-container,
    .full-page-content-inner {
        padding: 35px
    }

    .full-page-content-inner {
        padding-bottom: 0
    }

    .full-page-content-inner .grid-layout .job-listing {
        width: calc(100% - 30px)
    }

    .full-page-sidebar {
        flex: 0 0 320px
    }

    .full-page-sidebar-inner,
    .full-page-content-container,
    .full-page-container .full-page-sidebar {
        height: auto !important
    }
}

@media(max-width:768px) {
    .location-field-on-map {
        width: calc(100% - 30px);
        max-width: calc(100% - 30px);
        margin: 0 15px
    }

    .sidebar-search-button-container,
    .full-page-sidebar .sidebar-container,
    .full-page-content-inner {
        padding: 40px 15px
    }

    .full-page-content-inner {
        padding-bottom: 0
    }

    .full-page-content-inner .grid-layout .job-listing {
        width: calc(100% - 30px)
    }

    .full-page-sidebar {
        flex: 1;
        width: 100%
    }

    .full-page-container {
        display: block;
        width: 100%;
        flex-wrap: wrap;
        height: auto
    }

    .small-footer {
        display: block;
        text-align: center
    }

    .small-footer .footer-social-links {
        float: none;
        left: -10px;
        margin-top: 10px
    }
}
/* ======================================
                Content Boxes
====================================== */
.content-box-lg {
    padding: 120px 0;
}

.content-box-md {
    padding: 100px 0 150px 0;
}

.content-box-sm {
    padding: 70px 0 130px 0;
}

/* ======================================
            Promo Section
====================================== */
.promo-section {
    position: relative;
}

.promo-details {
    margin-bottom: 35px;
}

.promo {
    background: #fff;
    box-shadow: 0 0 12px rgba(0, 0, 0, .1);
    padding: 45px;
    border-radius: 8px;
    position: relative;
    min-height: 365px;
	pointer-events: none;
}
.promo h4 {
    margin-bottom: 30px;
    font-weight: 600;
}
.promo-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.promo-left:hover,
.promo-left:focus {
    background: #1689D6;
    color: #fff;
}

.promo-left:hover p,
.promo-left:focus p{
    color: #fff;
}

.promo-left:hover .btn-promo,
.promo-left:focus .btn-promo {
    background: #fff;
    color: #00467f;
}

.promo-right:hover,
.promo-right:focus {
    background: #f79125;
    color: #fff;
}

.promo-right:hover p,
.promo-right:focus p{
    color: #fff;
}

.promo-right:hover .btn-promo,
.promo-right:focus .btn-promo {
    background: #fff;
    color: #f79125;
}

.promo .btn-promo {
    pointer-events: auto;
}
.promo {
    transition: .3s linear;
}
/* ======================================
                How It Works
====================================== */
.how-it-works {
    position: relative;
}

.section-heading-left {
    padding: 0 0 40px 0;
    margin-left: 15px;
    text-align: left;
}

.section-heading-left h2 span {
    color: #1689D6;
    font-weight: 700;
}

.svg-icon {
    height: 100px;

}

.step {
    box-shadow: 0 0 12px rgba(0, 0, 0, .1);
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    min-height: 315px;
    position: relative;
    text-align: center;
}

.step img {
    margin: 0 auto;
    margin-bottom: 30px;
    margin-top: 20px;
}

.step .row {
    margin: 0;
}

.step .circle {
    text-align: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #1689D6;
    color: #fff;
    line-height: 1.9;
    font-size: 16px;
    margin-left: 0;
    position: absolute;
    top: 20px;
}



.section-bottom-svg {
    bottom: -1px;
    right: 0;
    left: 0;
}

.section-top-svg {
    top: -1px;
    right: 0;
    left: 0;
}

/********************************
	        Client
*********************************/

.client-area .content-box-sm {
    padding: 60px 0 90px 0;
}

.client-area {
    background: #F5F5F5;
    position: relative;
}

.client-area .section-heading {
    margin-bottom: 20px;
}

.section-heading h2 {
    margin-bottom: 15px;
}

.single-client {
    text-align: center;
}

.single-client img {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 90%;
    height: 90%;

}

.single-client img:hover {
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -ms-filter: grayscale(0%);
    -o-filter: grayscale(0%);
    filter: grayscale(0%);
}

@media (max-width: 800px) {
    .single-client img {
        margin-bottom: 40px;
    }
}

/********************************
	        Our Service Area
*********************************/
.services {
    position: relative;
}

.service-details {
    margin-bottom: 50px;
}

.service {
    background: #fff;
    box-shadow: 0 0 12px rgba(0, 0, 0, .1);
    padding: 20px;
    border-radius: 8px;
    min-height: 600px;
    position: relative;

}

.service h5 {
    margin-bottom: 30px;
}

/*.service-details h5::after {
	content: "";
    width: 80px;
    height: 3px;
    background-color: #1689D6;
    position: relative;
    display: block;
	top: 15%;
}*/
.service img {
    margin: 0 auto;
    margin-bottom: 30px;
    margin-top: 20px;
}

.service .row {
    margin: 0;
}

.service i {
    color: #1689D6;
}

.service-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

/********************************
	       Advantages
*********************************/
.advantages {
    position: relative;
    background: #F5F5F5;
}

.advantages-details {
    margin-bottom: 50px;
}

.advantage {
    background: #fff;
    box-shadow: 0 0 12px rgba(0, 0, 0, .1);
    padding: 20px;
    border-radius: 8px;
    min-height: 395px;
    position: relative;

}

.advantage h5 {
    margin-bottom: 30px;
}

/*.service-details h5::after {
	content: "";
    width: 80px;
    height: 3px;
    background-color: #1689D6;
    position: relative;
    display: block;
	top: 15%;
}*/
.advantage img {
    margin: 0 auto;
    margin-bottom: 30px;
    margin-top: 20px;
}

.advantage .row {
    margin: 0;
}

.advantage i {
    color: #1689D6;
}

.advantage-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}
/********************************
	       Features
*********************************/
.features {
    position: relative;
    background: #F5F5F5;
}



.features .nav-tabs .nav-link {
    border: 1px solid transparent;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
    color: #293038;
    font-size: 16px;
}
.features .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #f77b0b;
    background-color: transparent;
    border-color: transparent transparent #f77b0b;
    border-bottom: 4px solid !important;
    font-size: 16px;
    font-weight: bold;
}
.feature-img {
    margin: 0 auto;
}

.feature{
    margin-top: 20px;
}

.feature-title {
    font-size: 20px;
    margin-bottom: 10px;
    vertical-align: middle;
}
.tab-content {
    margin-top: 20px;
}
/********************************
	        Why Choose Us 
*********************************/
.why-choose-us .content-box-sm {
    padding-bottom: 70px;
}

.why-choose-us .section-heading p {
    width: 80%;
    margin: auto;
}

.choose-us-content,
.benefits {
    background: #fff;
    box-shadow: 0 0 12px rgba(0, 0, 0, .1);
    padding: 20px 20px 20px 20px;
    border-radius: 8px;

}

.choose-us-content h4 {
    margin-bottom: 10px;
}

.choose-us-content h4 i {
    font-size: 20px;
    margin-right: 5px;
    color: #1689D6;
}

.benefits {
    min-height: inherit;
    height: 97%;
}

.choose-us-content {
    margin-bottom: 15px;
    padding-bottom: 0;
}

.benefits h3 {
    margin-bottom: 20px;
}

.benefits ul li {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
}

.benefits ul li i {
    color: #f79125;
    margin-right: 10px;
}

.try-us h5 span {
    color: #1689D6;
}

/********************************
	        Home About 
*********************************/
.about {
    background: url("../images/abstract-background-1-01.png") no-repeat fixed center;
    background-size: cover;
    position: relative;
}

.about .content-box-sm {
    background: rgba(255, 255, 255, 0.8);
    text-align: left;
}

.about .section-heading-left {
    margin-left: 0;
}

.about h4 {
    margin-bottom: 20px;
}

.about .content-box-sm {
    padding-bottom: 100px;
}

/********************************
	        Join Community 
*********************************/
.join-community {
    text-align: center;
    position: relative;
}


.join-community .section-heading {
    margin-bottom: 20px;
}

.btn-join-community {
    margin: auto;
    margin-top: 20px;
}

.join-community h4 {
    color: #293038;
}

.job-career {
    background: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, .1);
    padding: 20px;
    border-radius: 8px;
    margin-top: 40px;
}

.job-career p {
    font-size: 16px;
}

.job-career p span {
    color: #1689D6;
}

/*******************************************
	        Contact (Get in Touch) 
********************************************/
.contact {
    background: #f7f7f7;
    position: relative;
}

.contact .content-box-sm {
    padding-bottom: 0;
}

.contact .contact-info {
    position: absolute;
    z-index: 1;
    box-shadow: 0 0 15px rgba(0, 0, 0, .1);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    background: #fff;
    left: 50%;
    transform: translateX(-50%);
    top: 200px;
}

.contact .svg-icon {
    height: 60px;

}

.contact .icon-box h6 {
    font-size: 14px;
    font-weight: 400;
    margin: 20px 0 10px 0;
}

.contact .icon-box h5 {
    font-size: 18px;
}

/* ======================================
                Google Map
====================================== */
#map {
    height: 600px;
    margin-left: -15px;
    margin-right: -15px;
    margin-top: 80px;
}

/*********************************
            Footer
*********************************/

.footer {
    padding-top: 70px;
    background-color: #161e2c;
}

.footer_logo {
    padding-left: 0px;
    margin-bottom: 39px;
}

.footer_intro p {
    margin-bottom: 0px;
    color: #BEC0C2;
}

.footer_social {
    margin-top: 27px;
}

.footer_social ul {
    display: inline-block;
    margin-left: -5px;
}

.footer_social ul li {
    display: inline-block;
    margin-right: 12px;
}

.footer_social ul li a {
    padding: 5px;
}

.footer_social ul li a i {
    font-size: 20px;
    color: #BEC0C2;
}

.footer_social ul li a:hover i {
    color: #F5F5F5;
}

ul.contact-options li {
    margin-top: 10px;
    color: #BEC0C2;
    font-weight: 500;
}

ul.contact-options li > i {
    margin-right: 10px;
}
.footer_cr {
    padding: 35px 0 0 0;
    margin-top: 30px;
}
.footer_cr, .footer_cr_2 {
    font-size: 16px;
    font-weight: 500;
    color: #909090;
    margin-bottom: 40px;
}

.footer_cr span {
    color: #F5F5F5;
}

.footer_col {
    margin-bottom: 27px;
}

.footer_col:last-child {
    margin-bottom: 0px;
}

.footer_col_title {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 9px;
}

.footer_col ul li {
    margin-bottom: 4px;
}

.footer_col ul li a {
    font-size: 16px;
    font-weight: 500;
    color: #BEC0C2;
    position: relative;
    display: block;
    z-index: 100;
    padding: 4px 0;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.footer_col ul li a:hover {
    color: #F5F5F5;
}

.footer_col ul li a span {
    display: inline-block;
    position: relative
}

.footer_col ul li a span:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #66676b;
    height: 2px;
    display: block;
    transition: all .25s, opacity .2s;
    z-index: -1;
    border-radius: 3px;
    color: #1389D6;
    opacity: .5;
    width: 0;
}

.footer_col ul li a:hover span:before {
    width: 100%;
    opacity: 1
}

/********************************
	        Tippy CSS 
*********************************/

.tippy-tooltip.dark-theme {
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    padding: 6px 12px
}

.tippy-tooltip.dark-theme .tippy-backdrop {
    background-color: #333
}

.tippy-popper[x-placement^=top] .tippy-tooltip.dark-theme .tippy-arrow {
    border-top-color: #333
}

.tippy-popper[x-placement^=bottom] .tippy-tooltip.dark-theme .tippy-arrow {
    border-bottom-color: #333
}

.tippy-popper[x-placement^=right] .tippy-tooltip.dark-theme .tippy-arrow {
    border-right-color: #333
}

.tippy-popper[x-placement^=left] .tippy-tooltip.dark-theme .tippy-arrow {
    border-left-color: #333
}

.tippy-tooltip.dark-theme .tippy-arrow {
    transform: scale(.7)
}

.tippy-tooltip.light-theme {
    color: #333;
    font-weight: 500;
    font-size: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .1);
    padding: 5px 10px;
    background-color: #fff
}

.tippy-popper[x-placement^=top] .tippy-tooltip.light-theme .tippy-arrow {
    border-top-color: #fff
}

.tippy-popper[x-placement^=bottom] .tippy-tooltip.light-theme .tippy-arrow {
    border-bottom-color: #fff
}

.tippy-popper[x-placement^=right] .tippy-tooltip.light-theme .tippy-arrow {
    border-right-color: #fff
}

.tippy-popper[x-placement^=left] .tippy-tooltip.light-theme .tippy-arrow {
    border-left-color: #fff
}




/*******************************************
	        Expert Registration Page
********************************************/
.expert-registration, .contact-section {
    background: #f7f7f7;
}

.expert-registration .section-heading, 
.contact-section .section-heading
.login .section-heading {
    margin-bottom: 40px;
}

.registration-form-area, .contact-form-area {
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 0 17px rgba(0, 0, 0, .1);
    padding: 40px 40px 30px 40px;
    border-radius: 8px;
}

.form-bottom {

    text-align: center;

}

.form-bottom button {
    margin-top: 20px;
    margin-bottom: 10px;
}

.form-bottom p {
    font-size: 15px;
}

form a {
    color: #1689D6;
}

/*******************************************
	        Confirm Email Page
********************************************/
.confirmation-text {
    text-align: center;
    margin: 0 auto;
}

.confirmation-text p {
    font-size: 20px;
    margin-bottom: 30px;
}

.confirmation-text a {
    color: #1389D6;
    font-size: 20px;
    font-weight: 500;
}

.email-confirmation .section-heading {
    margin-bottom: 20px;
}


/*******************************************
	        Login Page
********************************************/
.login-form-area {
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 0 17px rgba(0, 0, 0, .1);
    padding: 50px 40px 30px 40px;
    border-radius: 8px;
}

.login {
    background: #f7f7f7;
}


/*******************************************
	        Complete expert profile page
********************************************/
/* @extend display-flex; */
display-flex,
.steps ul,
.actions ul,
.actions ul li a,
.title,
.number {
    display: flex;
    display: -webkit-flex;
}

/* @extend list-type-ulli; */
list-type-ulli,
.actions ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}


a:focus,
a:active {
    text-decoration: none;
    outline: none;
    transition: all 300ms ease 0s;
    -moz-transition: all 300ms ease 0s;
    -webkit-transition: all 300ms ease 0s;
    -o-transition: all 300ms ease 0s;
    -ms-transition: all 300ms ease 0s;
}


.clear {
    clear: both;
}


.signup-form {
    padding: 0 20px;
    position: relative;
}



.switch-container {
    display: inline-block;
    cursor: pointer
}

label.switch {
    position: relative
}

.switches-list .switch-container label {
    cursor: pointer;
    position: relative;
    padding-left: 45px;
    line-height: 26px
}

.switch-button {
    position: relative;
    display: inline-block;
    width: 34px;
    height: 20px;
    cursor: pointer;
    background-color: #ccc;
    border-radius: 50px;
    transition: .4s;
    margin: 0 7px 0 0;
    top: 4px;
    position: absolute;
    top: 2px;
    left: 0
}

.notify-box .switch-button {
    top: 0
}

.notify-box .switch-container {
    top: 1px;
    position: relative
}

.switch span.switch-text {
    display: block;
    padding-left: 48px;
    font-size: 16px;
    line-height: 22px;
    color: #666
}

.switch input {
    display: none
}

.switch.interactive-effect input:checked + .switch-button:before {
    animation: switch-shadow-color .4s
}

.switch.interactive-effect .switch-button:before {
    animation: switch-shadow .4s
}

@keyframes switch-shadow {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, .3)
    }

    100% {
        box-shadow: 0 0 0 10px transparent
    }
}

@keyframes switch-shadow-color {
    0% {
        box-shadow: 0 0 0 0 rgba(102, 103, 107, .6)
    }

    100% {
        box-shadow: 0 0 0 10px transparent
    }
}

.switch-button:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    bottom: 2px;
    left: 2px;
    background-color: #fff;
    transition: .4s, box-shadow .3s;
    border-radius: 50px
}

input:checked + .switch-button {
    background-color: #66676b
}

input:checked + .switch-button:before {
    transform: translateX(14px)
}


.form-textarea textarea {
    height: 150px;
    width: 534px;
}

.form-radio {
    margin-bottom: 40px;
}

.form-radio-item input {
    width: 0;
    height: 0;
    position: absolute;
    left: -9999px;
}

.form-radio-item input + label {
    margin: 0px;
    padding: 12px 10px;
    width: 85px;
    height: 50px;
    box-sizing: border-box;
    position: relative;
    display: inline-block;
    text-align: center;
    background-color: #f8f8f8;
    font-size: 14px;
    font-weight: 400;
    color: #f8f8f8;
    text-align: center;
    text-transform: none;
    transition: border-color .15s ease-out, color .25s ease-out, background-color .15s ease-out, box-shadow .15s ease-out;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
}

.form-radio-item input:checked + label {
    background-color: #1abc9c;
    color: #FFF;
    z-index: 1;
}

.form-radio-item input:focus + label {
    outline: none;
}

.form-radio-item input:hover {
    background-color: #1abc9c;
    color: #FFF;
}

.form-radio-item input + label:first-of-type {
    border-radius: 5px 0 0 5px;
    -moz-border-radius: 5px 0 0 5px;
    -webkit-border-radius: 5px 0 0 5px;
    -o-border-radius: 5px 0 0 5px;
    -ms-border-radius: 5px 0 0 5px;
    border-right: none;
}

.form-radio-item input + label:last-of-type {
    border-radius: 0 5px 5px 0;
    -moz-border-radius: 0 5px 5px 0;
    -webkit-border-radius: 0 5px 5px 0;
    -o-border-radius: 0 5px 5px 0;
    -ms-border-radius: 0 5px 5px 0;
    border-left: none;
}

.form-radio-flex input {
    width: 0;
    height: 0;
    position: absolute;
    left: -9999px;
}

.form-radio-flex input + label {
    margin: 0px;
    padding: 12px 10px;
    width: 86px;
    height: 50px;
    box-sizing: border-box;
    position: relative;
    display: inline-block;
    text-align: center;
    background-color: transparent;
    border: 1px solid #ebebeb;
    text-align: center;
    text-transform: none;
    transition: border-color .15s ease-out, color .25s ease-out, background-color .15s ease-out, box-shadow .15s ease-out;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
}

.form-radio-flex input:checked + label {
    border: 1px solid #1689D6;
    z-index: 1;
}

.form-radio-flex input:focus + label {
    outline: none;
}

.form-radio-flex input:hover {
    border: 1px solid #1689D6;
}

#signup-form-p-2 .form-radio-flex,
#signup-form-p-2 .form-flex,
#signup-form-p-2 .form-group input {
    width: 534px;
}

#signup-form-p-2 #credit_card {
    width: 275px;
}

#signup-form-p-2 #cvc {
    width: 143px;
}

.form-row .form-group label {
    width: auto;
}

.form-row .form-group:first-child {
    float: left;
}

.form-row .form-group:last-child {
    float: right;
}

.form-date {
    clear: both;
}

.form-date-item {
    position: relative;
    overflow: hidden;
}

.form-date-item:last-child:after {
    width: 0px;
}

.form-date-item select {
    position: relative;
    background: 0 0;
    z-index: 10;
    cursor: pointer;
    margin-right: 10px;
}

.form-date-item #expiry_date {
    width: 86px;
}

.form-date-item #expiry_year {
    width: 104px;
}

.form-date-item .select-icon {
    z-index: 0;
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    justify-content: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -o-justify-content: center;
    -ms-justify-content: center;
    align-items: center;
    -moz-align-items: center;
    -webkit-align-items: center;
    -o-align-items: center;
    -ms-align-items: center;
}

.form-date-item .select-icon i {
    justify-content: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -o-justify-content: center;
    -ms-justify-content: center;
    align-items: center;
    -moz-align-items: center;
    -webkit-align-items: center;
    -o-align-items: center;
    -ms-align-items: center;
    width: 30px;
    height: 20px;
    font-size: 22px;
    color: #999;
}

.custom-file-input::-webkit-file-upload-button {
    visibility: hidden;
}


#val {
    width: 345px;
    height: 50px;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 14px;
    font-weight: bold;
    pointer-events: none;
    border: 1px solid #ebebeb;
    font-family: 'Roboto Slab';
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    align-items: center;
    -moz-align-items: center;
    -webkit-align-items: center;
    -o-align-items: center;
    -ms-align-items: center;
    justify-content: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -o-justify-content: center;
    -ms-justify-content: center;
}

#button {
    cursor: pointer;
    width: 130px;
    background: #f8f8f8;
    height: 50px;
    color: #999;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 14px;
    text-align: center;
    -webkit-transition: 500ms all;
    -moz-transition: 500ms all;
    transition: 500ms all;
    align-items: center;
    -moz-align-items: center;
    -webkit-align-items: center;
    -o-align-items: center;
    -ms-align-items: center;
    justify-content: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -o-justify-content: center;
    -ms-justify-content: center;
}

#button:hover {
    background-color: #dfdfdf;
}

.form-file {
    width: 488px;
    position: relative;
}

.form-password {
    position: relative;
}

.bar-strength {
    width: 60px;
    height: 15px;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    -o-border-radius: 8px;
    -ms-border-radius: 8px;
    background: #f8f8f8;
    position: absolute;
    right: 193px;
    top: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.bar-process {
    width: 100%;
    height: 100%;
    position: relative;
}

.bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    -o-border-radius: 8px;
    -ms-border-radius: 8px;
}

.pw-very-weak .bar {
    background: #d00;
    width: 25px;
}

.pw-very-weak .label,
.pw-weak .label {
    color: #d00;
}

.pw-weak .bar {
    background: #d00;
    width: 25px;
}

.pw-mediocre .bar {
    background: #fca812;
    width: 35px;
}

.pw-strong .bar {
    background: #fca812;
    width: 42px;
}

.pw-mediocre .label,
.pw-strong .label {
    color: #fca812;
}

.pw-very-strong .bar {
    background: #1abc9c;
    width: 100%;
}

.pw-very-strong .label {
    color: #1abc9c;
}

fieldset {
    border: none;
    padding: 0px;
    margin: 0px;
}

.steps {
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
    padding: 12px 20px;
}

.steps ul {
    justify-content: space-around;
    -moz-justify-content: space-around;
    -webkit-justify-content: space-around;
    -o-justify-content: space-around;
    -ms-justify-content: space-around;
}

.steps ul li {
    padding-right: 80px;
    padding-left: 0px;
    position: relative;
}

.steps ul li:after {
    position: absolute;
    width: 1px;
    height: 30px;
    content: "";
    background: #ebebeb;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.steps ul li a {
    color: #999;
    text-decoration: none;
    font-weight: bold;
}

.steps ul li:last-child:after {
    width: 0px;
}

.steps ul .current a {
    color: #222;
}

.steps ul .current a .number {
    border: 2px solid #222;
}

.steps ul .done a {
    color: #1689D6;
}

.steps ul .done a .number {
    position: relative;
    font-size: 0px;
    border: 2px solid #1689D6;
}

.steps ul .done a .number:after {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    font-size: 14px;
    color: #1689D6;
    font-family: 'Material-Design-Iconic-Font';
    content: '\f26b';
    font-weight: bold;
}

.actions {
    position: absolute;
    bottom: 14px;
    width: 100%;
    /* text-align: right; */
    padding: 0 20px;
    /* margin: 0 15px; */
    right: 0;
}

.actions ul {
    align-items: center;
    -moz-align-items: center;
    -webkit-align-items: center;
    -o-align-items: center;
    -ms-align-items: center;
    justify-content: flex-end;
    -moz-justify-content: flex-end;
    -webkit-justify-content: flex-end;
    -o-justify-content: flex-end;
    -ms-justify-content: flex-end;
    width: 100%;
}

.actions ul .disabled {
    display: none;
}

.actions ul li {
    margin-left: 10px;
}

.actions ul li:first-child a {
    background: #f8f8f8;
    color: #999;
}

.actions ul li:first-child a:hover {
    background-color: #dfdfdf;
}

.actions ul li a {
    width: 150px;
    height: 50px;
    color: #fff;
    background: #1689D6;
    align-items: center;
    -moz-align-items: center;
    -webkit-align-items: center;
    -o-align-items: center;
    -ms-align-items: center;
    justify-content: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -o-justify-content: center;
    -ms-justify-content: center;
    text-decoration: none;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
}

.actions ul li a:hover {
    background-color: #276FBF;
    -webkit-box-shadow: 0px 2px 12px 0px #888888;
    box-shadow: 0px 2px 12px 0px #888888;
}

.content {
    overflow: hidden;
}

.content .current {
    padding-top: 60px;
}


.fieldset-content {
    border-bottom: 1px solid #ebebeb;
}

.fieldset-footer {
    padding: 28px 0;
}

.fieldset-footer span {
    color: #999;
}

.content .title {
    align-items: center;
    -moz-align-items: center;
    -webkit-align-items: center;
    -o-align-items: center;
    -ms-align-items: center;
    position: absolute;
    left: -999em;
}

.number {
    width: 31px;
    height: 31px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    align-items: center;
    -moz-align-items: center;
    -webkit-align-items: center;
    -o-align-items: center;
    -ms-align-items: center;
    justify-content: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -o-justify-content: center;
    -ms-justify-content: center;
    border: 2px solid #999;
    margin-right: 15px;
}


/*# sourceMappingURL=style.css.map */



.profile-steps-wrapper {
    box-shadow: 0 0 17px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 0 17px rgba(0, 0, 0, .1);
    -webkit-box-shadow: 0 0 17px rgba(0, 0, 0, .1);
    -o-box-shadow: 0 0 17px rgba(0, 0, 0, .1);
    -ms-box-shadow: 0 0 17px rgba(0, 0, 0, .1);
    padding: 40px 40px 30px 40px;
    border-radius: 8px;
    margin: 0 auto;
}




.complete-profile-steps .section-heading {
    margin-bottom: 40px;
}

.complete-profile-steps .section-heading h2 {
    font-size: 25px;
}

.complete-profile-steps .section-heading h2 span {
    color: #1689D6;
}

.complete-profile-steps .section-heading h4 {
    font-size: 20px;
}

.profile-steps-wrapper {
    background: #fff;
}


.profile-steps-wrapper .form-check-input, 
.submit-field .form-check-input {
    opacity: 0;
}



/*
.styled-checkbox + label.form-check-label {
    position: relative;
    cursor: pointer;
    padding: 0;

}

.styled-checkbox + label.form-check-label:before {
    content: '';
    margin-right: 10px;
    display: inline-block;
    vertical-align: text-top;
    width: 20px;
    height: 20px;
    border-radius: 3px;
    background: #fff;
    border: 2px solid #1689D6;
}

.styled-checkbox:hover + label.form-check-label:before {
    background: #1689D6;
}

.styled-checkbox:focus + label.form-check-label:before {
}

.styled-checkbox:checked + label.form-check-label:before {
    background: #1689D6;
}

.styled-checkbox:checked + label.form-check-label:after {
    content: '';
    position: absolute;
    left: 5px;
    top: 9px;
    background: white;
    width: 2px;
    height: 2px;
    box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
*/

.fieldset-content .form-check,
.submit-field .form-check {
    padding-left: 0;
}


label.form-check-label {
    font-weight: 400;
}

.modified-label label.error {
    position: absolute;
    display: block;
    margin-bottom: -93px;
    color: #dc3545;
    top: 44px;
    left: -105px;
}

/*
.check-error label.error {
    position: absolute;
    display: block;
    color: #dc3545;
    top: 75px;
    left: 0px;
}*/

/*******************************************
	        File Upload
********************************************/
/*.file-upload {
  background-color: #ffffff;
  width: 600px;
  margin: 0 auto;
  padding: 20px;
}

.file-upload-btn {
  width: 100%;
  margin: 0;
  color: #fff;
  background: #1FB264;
  border: none;
  padding: 10px;
  border-radius: 4px;
  transition: all .2s ease;
  outline: none;
  text-transform: uppercase;
  font-weight: 700;
}

.file-upload-btn:hover {
  background: #1AA059;
  color: #ffffff;
  transition: all .2s ease;
  cursor: pointer;
}

.file-upload-btn:active {
  border: 0;
  transition: all .2s ease;
}

.file-upload-content {
  display: none;
  text-align: center;
}

.file-upload-input {
  position: absolute;
  margin: 0;
  padding: 0;
  width: 100%;
    height: 100%;
  outline: none;
  opacity: 0;
  cursor: pointer;
}

.image-dropping, .image-upload-wrap:hover {
    background-color: #1689d6;
    border: 4px dashed #ffffff;
}
.image-upload-wrap {
    margin-top: 20px;
    height: 166px;
    border: 2px dashed #1689d6;
    position: relative;
}

.image-title-wrap {
  padding: 0 15px 15px 15px;
  color: #222;
}

.drag-text {
  text-align: center;
}

.drag-text h3 {
  font-weight: 100;
  text-transform: uppercase;
  color: #15824B;
  padding: 60px 0;
}

.file-upload-image {
  max-height: 200px;
  max-width: 200px;
  margin: auto;
  padding: 20px;
}

.remove-image {
  width: 200px;
  margin: 0;
  color: #fff;
  background: #cd4535;
  border: none;
  padding: 10px;
  border-radius: 4px;
  border-bottom: 4px solid #b02818;
  transition: all .2s ease;
  outline: none;
  text-transform: uppercase;
  font-weight: 700;
}

.remove-image:hover {
  background: #c13b2a;
  color: #ffffff;
  transition: all .2s ease;
  cursor: pointer;
}

.remove-image:active {
  border: 0;
  transition: all .2s ease;
}*/


.custom-cv-btn, .profile-pic-btn {
    position: absolute;
    top: 0px;
}

.cv-upload {
    position: relative;
}

#cv,#profilepic {
    opacity: 0;
}

#cv-upload-button, #pic-upload-button {
    padding: 10px;
    color: white;
    background-color: #1689D6;
    border-radius: 5px;
    cursor: pointer;
}

#cv-upload-button, #pic-upload-button:hover,
#cv-upload-button, #pic-upload-button:focus {
    background-color: #276FBF;
}

#nofile-choosen-text, #pic-choosen-text {
    margin-left: 10px;
    font-family: sans-serif;
    color: #909090;
}

input[type=File] {
    margin-bottom: 10px;
}

.cc-img {
    margin: 0 auto;
}
.cc-images {
    margin: 0 auto;
}
#expirationdate.hasDatepicker.ui-datepicker-calendar {
        display: none;
    }


#completeProfileForm label span ,
#completeHirerProfileForm label span {
    color: #dc3545;
}



/*******************************************
	        Dashboard 
********************************************/

    .full-page-container,
.dashboard-container {
    height: calc(100vh - 82px)
}


@media(max-width:1099px) {

    .full-page-container,
    .dashboard-container {
        height: calc(100vh - 76px)
    }
}

.dashboard-container {
    display: flex;
    width: 100%;
    flex-wrap: wrap
}

.dashboard-sidebar {
    flex: 0 0 280px;
    background-color: #fff;
    position: relative;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .1);
    z-index: 100
}

.dashboard-sidebar .dashboard-sidebar-inner {
    overflow: auto;
    height: 100%
}

.dashboard-content-container {
    flex: 1;
    background-color: #fafafa;
    padding: 0;
    overflow: auto;
    position: relative;
    z-index: 99
}

.dashboard-content-inner {
    padding: 50px;
    padding-bottom: 0;
    position: relative
}

@media(min-width:1099px) {
    #header-container.dashboard-header .container {
        padding-right: 35px;
        padding-left: 0
    }

    #header-container.dashboard-header #logo {
        width: 281px;
        padding-left: 35px
    }
}

@media(max-width:1240px) {
    #header-container.dashboard-header #logo {
        width: auto
    }
}

.dashboard-nav {
    display: block;
    z-index: 11;
    padding-bottom: 30px
}

a.dashboard-responsive-nav-trigger {
    display: none
}

.dashboard-nav ul {
    list-style: none;
    padding: 0;
    margin: 25px 0 0
}

.dashboard-nav ul:first-child {
    margin: 30px 0 0
}

.dashboard-nav ul:before {
    content: attr(data-submenu-title);
    padding: 0 35px;
    margin-bottom: 5px;
    display: block;
    color: #66676b;
    font-weight: 600;
    font-size: 14px
}

.dashboard-nav ul li {
    display: block;
    border-left: 3px solid transparent;
    transition: .3s;
    line-height: 25px;
    font-size: 15px
}

.dashboard-nav ul li a {
    color: #707070;
    display: block;
    padding: 11px 32px;
    transition: .3s;
    cursor: pointer;
    position: relative
}

.dashboard-nav ul li a i {
    padding-right: 8px;
    width: 20px;
    font-size: 20px;
    color: #909090;
    transition: .3s;
    position: relative;
    top: 2px
}

.dashboard-nav ul li ul li:hover a {
    padding-left: 4px
}

.dashboard-nav ul li.active-submenu a i,
.dashboard-nav ul li.active a i,
.dashboard-nav ul li:hover a i {
    color: #66676b
}

.dashboard-nav ul li.active-submenu,
.dashboard-nav ul li.active,
.dashboard-nav ul li:hover {
    border-color: #66676b;
    background-color: rgba(102, 103, 107, .04)
}

.dashboard-nav ul li.active-submenu a,
.dashboard-nav ul li:hover a,
.dashboard-nav ul li.active a {
    color: #66676b
}

.dashboard-nav ul li span.nav-tag {
    display: inline-block;
    font-weight: 700;
    height: 19px;
    width: 19px;
    line-height: 19px;
    text-align: center;
    color: #fff;
    font-size: 11px;
    background-color: #66676b;
    border-radius: 50%;
    position: relative;
    margin: 0 0 0 4px;
    top: -2px
}

.dashboard-nav ul li ul {
    padding: 0;
    margin: 0;
    visibility: hidden;
    max-height: 0;
    opacity: 0;
    line-height: 0;
    transition: .3s;
    pointer-events: none
}

.dashboard-nav ul li.active-submenu ul {
    visibility: visible;
    padding: 0 0 18px;
    line-height: 24px;
    opacity: 1;
    max-height: 200px;
    pointer-events: all
}

.dashboard-nav ul li ul li {
    background-color: transparent;
    border: none;
    padding-left: 63px;
    position: relative;
    margin: 0
}

.dashboard-nav ul li ul li a {
    padding: 5px 0
}

.dashboard-nav ul li ul li:hover {
    border: none;
    background-color: transparent
}

.dashboard-nav ul li a:after {
    font-family: material-icons;
    content: '\e914';
    opacity: 1;
    font-size: 16px;
    transition: .3s;
    opacity: 1;
    line-height: 17px;
    width: 17px;
    height: 17px;
    background-color: #f0f0f0;
    color: #a8a8a8;
    display: inline-block;
    border-radius: 3px;
    margin-left: 7px;
    text-indent: 0;
    top: 1px;
    position: absolute;
    right: 35px;
    top: 15px
}

.dashboard-nav ul li.active-submenu a:after,
.dashboard-nav ul li.active a:after,
.dashboard-nav ul li:hover a:after {
    color: #66676b;
    background: rgba(102, 103, 107, .13);
    opacity: .8
}

.dashboard-nav ul li ul:before,
.dashboard-nav ul li a:only-child:after {
    content: '';
    display: none
}

.dashboard-headline {
    display: block;
    position: relative;
    margin-bottom: 50px
}

.dashboard-headline h3 {
    display: block;
    font-size: 26px;
    color: #333
}

.dashboard-headline span {
    display: block;
    font-size: 18px;
    color: #888;
    line-height: 30px;
    margin-top: 5px
}

.dashboard-headline #breadcrumbs {
    right: 0
}

#breadcrumbs {
    position: absolute;
    right: 15px;
    display: inline-block;
    font-size: 14.7px;
    top: 50%;
    transform: translateY(-51%);
    border-radius: 4px;
    font-weight: 600;
    color: #333;
    background-color: #f0f0f0
}

#breadcrumbs ul {
    margin: 0;
    padding: 12px 22px;
    line-height: 23px
}

#breadcrumbs ul li a {
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    color: #666;
    font-weight: 500
}

#breadcrumbs ul li a:hover {
    color: #66676b
}

#breadcrumbs ul li {
    display: inline-block;
    list-style: none;
    margin: 0 0 0 7px
}

#breadcrumbs ul li:first-child:before {
    display: none
}

#breadcrumbs ul li:first-child {
    margin-left: 0
}

#breadcrumbs ul li:before {
    content: "";
    display: inline-block;
    height: 0;
    width: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 4px solid #aaa;
    font-size: 14px;
    margin-right: 12px
}

#breadcrumbs ul li.home-icon a {
    opacity: 1;
    font-size: 24px;
    top: 4px;
    position: relative;
    line-height: 0;
    padding: 0;
    display: inline-block
}

#breadcrumbs ul li.home-icon i {
    line-height: 0
}

#breadcrumbs.dark {
    color: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .15);
    background-color: #333
}

#breadcrumbs.dark ul li a,
#breadcrumbs.dark ul li a:hover {
    color: #fff
}

#breadcrumbs.dark ul li:before {
    border-left: 4px solid rgba(255, 255, 255, .3)
}


@media(max-width:992px) {
    .dashboard-content-inner {
        min-height: auto !important
    }

    .dashboard-sidebar .dashboard-nav-container,
    .dashboard-content-inner {
        padding: 15px
    }

    .dashboard-sidebar-inner {
        padding-bottom: 30px
    }

    .dashboard-sidebar .simplebar-content {
        overflow-x: hidden
    }

    .dashboard-nav-inner {
        padding: 30px 0;
        margin-bottom: 0
    }

    .dashboard-sidebar {
        flex: 1;
        width: 100%;
        background-color: transparent;
        box-shadow: none;
        height: auto !important
    }

    .full-page-sidebar .simplebar-track,
    .dashboard-sidebar .simplebar-track {
        display: none
    }

    .full-page-sidebar-inner,
    .dashboard-sidebar-inner {
        height: auto !important
    }

    .dashboard-container {
        display: block;
        width: 100%;
        flex-wrap: wrap;
        height: auto !important
    }

    .dashboard-content-container {
        height: auto !important
    }

    .dashboard-content-container .simplebar-scrollbar {
        display: none
    }

    .dashboard-nav {
        width: 100%;
        margin: 0;
        border-radius: 0 0 4px 4px;
        position: relative;
        min-height: auto;
        opacity: 1;
        visibility: hidden;
        max-height: 0;
        padding: 0;
        transition: all .3s;
        box-shadow: 0 0 10px rgba(0, 0, 0, .1);
        background: #fff
    }

    .dashboard-nav ul:first-child {
        margin: 0
    }

    .dashboard-nav ul {
        margin-top: 15px
    }

    .dashboard-nav.active ul,
    .dashboard-nav.active {
        opacity: 1;
        visibility: visible;
        max-height: 900px
    }

    .dashboard-nav ul:before {
        padding: 0 29px
    }

    .dashboard-nav ul li a {
        padding: 10px 25px
    }

    .dashboard-nav ul,
    .dashboard-nav.active ul li ul,
    .dashboard-nav ul li ul {
        visibility: hidden;
        opacity: 0;
        max-height: 0;
        transition: all .3s
    }

    .dashboard-nav.active ul li.active-submenu ul {
        visibility: visible;
        opacity: 1;
        max-height: 300px
    }

    a.dashboard-responsive-nav-trigger {
        width: 100%;
        margin: 0;
        margin-top: 15px;
        background-color: #333;
        border-radius: 5px;
        color: #fff;
        padding: 16px 30px;
        font-weight: 600;
        transition: .2s;
        display: block;
        line-height: 26px
    }

    a.dashboard-responsive-nav-trigger span.trigger-title {
        padding-left: 33px
    }

    a.dashboard-responsive-nav-trigger .hamburger-inner,
    a.dashboard-responsive-nav-trigger .hamburger-inner::before,
    a.dashboard-responsive-nav-trigger .hamburger-inner::after {
        background-color: #fff
    }

    a.dashboard-responsive-nav-trigger .hamburger {
        top: 2px;
        left: 0;
        transform: scale(.66)
    }

    a.dashboard-responsive-nav-trigger i {
        margin-right: 8px;
        margin-left: -2px;
        font-size: 28px;
        line-height: 0;
        position: relative;
        top: 6px
    }

    a.dashboard-responsive-nav-trigger.active {
        border-radius: 4px 4px 0 0
    }

    .buttons-to-right:not(.single-right-button) {
        opacity: 1
    }

    .fun-facts-container {
        width: calc(100% + 15px);
        margin-bottom: -15px
    }

    .fun-fact {
        flex: 1 1 calc(50% - 15px);
        max-width: calc(50% - 15px);
        margin: 0 15px 15px 0
    }
}

@media(max-width:768px) {
    .fun-fact {
        flex: 1 1 100%;
        max-width: 100%
    }

    #titlebar #breadcrumbs,
    .dashboard-headline #breadcrumbs {
        right: 0;
        position: relative;
        top: 0;
        transform: none;
        margin-top: 30px;
        max-width: 100%
    }

    .buttons-to-right:not(.single-right-button) {
        position: relative;
        transform: none;
        top: 0;
        margin: 10px 0 0;
        opacity: 1;
        right: auto;
        display: inline-block;
        box-shadow: none;
        width: 100%
    }

    .dashboard-box .headline .sort-by {
        float: none;
        display: inline-block;
        position: relative;
        top: 0;
        transform: none;
        right: 0;
        top: 5px;
        left: -8px
    }

    .dashboard-box .headline .sort-by .bootstrap-select .dropdown-menu {
        left: 0;
        right: auto
    }
}

.single-page-header #breadcrumbs {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    margin-left: auto
}

@media(max-width:992px) {
    .single-page-header #breadcrumbs {
        margin: 30px 0 20px
    }
}

.single-page-header {
    margin-bottom: 65px;
    padding: 60px 0;
    position: relative
}

.single-page-header .container {
    z-index: 100;
    position: relative
}

.single-page-header:after,
.single-page-header:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    display: block;
    top: 0;
    left: 0;
    z-index: 15;
    background: linear-gradient(to right, rgba(247, 247, 247, 1) 50%, rgba(247, 247, 247, 0.8) 70%, rgba(247, 247, 247, 0.8) 90%)
}

.single-page-header:after {
    z-index: 5;
    background-color: #f7f7f7
}

.single-page-header .background-image-container {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 100% 50%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    left: 50%;
    z-index: 10
}

.single-page-header .single-page-header-inner {
    display: flex
}

.single-page-header .left-side,
.single-page-header .right-side {
    flex: 1;
    display: flex;
    align-items: center
}

.single-page-header .left-side {
    padding-right: 30px
}

.single-page-header .right-side {
    max-width: 35%
}

@media(min-width:1365px) {
    .single-page-header .right-side {
        max-width: 30%
    }
}

.single-page-header .header-image a {
    display: flex;
    height: 100%
}

.single-page-header .header-image {
    height: 140px;
    flex: 0 0 140px;
    margin-right: 35px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .1);
    display: flex;
    padding: 0 20px
}

@media screen and (-ms-high-contrast:active),
screen and (-ms-high-contrast:none) {
    .single-page-header .header-image {
        max-width: 140px
    }
}

.single-page-header.freelancer-header .header-image {
    background: #fff;
    border-radius: 50%;
    box-shadow: none;
    display: flex;
    padding: 0;
    overflow: hidden;
    height: 130px;
    flex: 0 0 130px;
    width: 130px
}

.single-page-header .header-image img {
    align-self: center;
    transform: translate3d(0, 0, 0)
}

@media all and (-ms-high-contrast:none) {
    .single-page-header .header-image img {
        width: 100%
    }
}

.single-page-header .header-details {
    flex: 1
}

.single-page-header .header-details h3 {
    color: #333;
    font-size: 26px;
    margin: 0;
    padding: 0;
    margin-bottom: 12px;
    margin-top: 3px;
    line-height: 36px;
    position: relative;
    padding-right: 0;
    display: inline-block
}

.single-page-header .header-details h3 span {
    color: gray;
    display: block;
    font-size: 20px;
    font-weight: 300;
    margin-top: -3px
}

.single-page-header .header-details h5 {
    font-size: 16px;
    font-weight: 600;
    color: #333
}

.single-page-header .header-details h5 {
    font-size: 16px;
    font-weight: 600;
    color: #333
}

.single-page-header .header-details ul {
    padding: 0;
    margin: 0;
    list-style: none;
    line-height: 24px;
    margin-bottom: -7px
}

.single-page-header .header-details li {
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 12px
}

.single-page-header .header-details li:last-child {
    margin-right: 0
}

.single-page-header .header-details li a {
    color: #666
}

.single-page-header .header-details li a:hover {
    color: #66676b
}

.single-page-header .header-details li i {
    font-size: 20px;
    position: relative;
    top: 2px;
    margin-right: 2px
}

.single-page-header .header-details li .verified-badge {
    transform: scale(.85);
    position: relative;
    top: 2px
}

.single-page-header .header-details li .verified-txt {
    color: #299840
}

.single-page-header .header-details li .star-rating {
    position: relative;
    top: 6px
}

.single-page-header .header-details ul li img.flag {
    height: 16px;
    border-radius: 3px;
    position: relative;
    top: -1px;
    display: inline-block;
    box-shadow: 0 0 3px rgba(0, 0, 0, .2);
    margin-right: 5px;
    cursor: default
}

.single-page-header .salary-box {
    border-radius: 4px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, .08);
    background-color: #fff;
    display: inline-block;
    padding: 20px 25px;
    margin-left: auto
}

.salary-box .salary-type {
    color: #888;
    line-height: 20px;
    margin: 3px 0 8px
}

.salary-box .salary-amount {
    color: #333;
    font-size: 28px;
    line-height: 36px;
    font-weight: 300
}

@media(max-width:1366px) {
    .single-page-header.freelancer-header .header-image {
        height: 130px;
        flex: 0 0 130px;
        width: 130px
    }
}

@media(max-width:1240px) {
    .single-page-header .header-details h3 {
        font-size: 26px
    }

    .single-page-header {
        padding: 55px 0
    }

    .salary-box .salary-amount {
        font-size: 26px;
        line-height: 32px
    }

    .single-page-header .header-image {
        height: 120px;
        flex: 0 0 120px
    }

    .single-page-header.freelancer-header .header-image {
        height: 120px;
        flex: 0 0 120px;
        width: 120px
    }
}

@media(max-width:992px) {
    .single-page-header .single-page-header-inner {
        display: flex;
        flex-direction: column
    }

    .single-page-header .left-side {
        padding-right: 0
    }

    .single-page-header .header-details h3 {
        font-size: 24px
    }

    .single-page-header {
        padding: 35px 0
    }

    .single-page-header .salary-amount {
        font-size: 22px;
        line-height: 24px
    }

    .single-page-header .salary-box {
        padding: 0;
        margin-top: 15px;
        margin-bottom: 20px;
        background-color: transparent;
        box-shadow: none
    }

    .salary-box .salary-type {
        font-weight: 600;
        color: #333
    }

    .single-page-header .left-side,
    .single-page-header .right-side,
    .single-page-header-inner {
        display: block;
        max-width: 100%
    }

    .single-page-header .header-image {
        height: 70px;
        width: auto;
        padding: 15px 20px;
        margin: 15px 0;
        display: inline-block
    }

    .single-page-header .header-image img {
        height: 100%
    }

    .single-page-header .header-details h5 {
        border-top: 1px solid #e0e0e0;
        padding-top: 25px
    }

    .single-page-header.freelancer-header .header-image {
        height: 70px;
        flex: 0 0 70px;
        width: 70px;
        margin-bottom: -70px
    }

    .single-page-header.freelancer-header .header-details h3 {
        margin-left: 90px
    }
}

@media(max-width:768px) {

    .single-page-header:after,
    .single-page-header:before {
        background: #f7f7f7
    }

    .single-page-header.freelancer-header .header-image {
        height: 70px;
        flex: 0 0 70px;
        width: 70px;
        margin-bottom: -70px
    }

    .single-page-header.freelancer-header .header-details h3 {
        margin-left: 90px
    }
}

.dashboard-box {
    display: block;
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
    margin-top: 30px;
    position: relative
}

.dashboard-box .headline {
    display: block;
    padding: 20px 30px;
    border-bottom: 1px solid #e4e4e4;
    position: relative
}

.dashboard-box .headline.profile-settings {
    display: flex;
    justify-content: space-between;
}
.dashboard-box .headline h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 26px
}

.dashboard-box .headline h3 i {
    color: #66676b;
    font-size: 21px;
    line-height: 0;
    position: relative;
    top: 2px;
    margin-right: 4px
}

.dashboard-box .headline h3 i.icon-material-outline-gavel {
    font-size: 20px
}

.dashboard-box .headline h3 i.icon-material-outline-supervisor-account {
    font-size: 24px;
    top: 3px
}

.dashboard-box .headline h3 i.icon-feather-folder-plus {
    font-size: 20px;
    top: 2px;
    margin-right: 5px
}

.button.big i.icon-feather-plus {
    font-size: 20px;
    top: 2px;
    margin-left: -4px;
    margin-right: 5px
}

.dashboard-box .content.with-padding {
    padding: 30px
}

.dashboard-box .chart {
    padding: 30px 20px 17px 18px
}

.dashboard-box .headline .sort-by {
    float: none;
    display: inline-block;
    position: absolute;
    top: calc(50% + 3px);
    transform: translateY(-50%);
    right: 30px;
    z-index: 100;
    height: 33px
}

.dashboard-box .headline .bootstrap-select.btn-group .dropdown-toggle .filter-option {
    font-weight: 500;
    color: #666
}

.dashboard-note {
    border-radius: 4px;
    background-color: #f8f8f8;
    padding: 25px;
    padding-top: 20px;
    margin-bottom: 20px;
    position: relative
}

.dashboard-note:last-child {
    margin-bottom: 65px
}

.dashboard-note:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    border-width: 0 20px 20px 0;
    border-style: solid;
    border-color: rgba(0, 0, 0, .15) #fff;
    transition: .3s;
    border-radius: 0 0 0 4px
}

.dashboard-note p {
    line-height: 24px;
    margin-bottom: 20px;
    color: #777;
    font-size: 14.7px
}


.dashboard-box .boxed-list-item {
    padding: 10px 0;
    width: 100%
}
.dashboard-box .job-listing-details {
    box-shadow: none;
    padding: 10px 0;
    align-items: center;
    flex: auto
}

.dashboard-box .job-listing {
    box-shadow: none;
    padding: 0;
    margin: 0;
    background-color: transparent;
    display: flex;
    flex-direction: row;
    width: 100%
}

.dashboard-box .job-listing.width-adjustment {
    max-width: 60%
}

.dashboard-box .job-listing h3 a {
    color: #333;
    font-size: 18px
}

.dashboard-box .job-listing .job-listing-company-logo {
    max-width: 50px
}

.dashboard-box .job-listing .job-listing-description {
    padding-top: 0
}

.dashboard-box .job-listing:hover {
    transform: none
}

.dashboard-box .job-listing .job-listing-footer {
    background-color: transparent;
    padding: 0;
    border-radius: none
}
.dashboard-box-list .job-location-details {
    padding: 10px 0;
}
.dashboard-box .freelancer-overview ,
.dashboard-box .employer-overview {
    padding: 15px 0
}

.dashboard-box .freelancer-overview-inner,
.dashboard-box .employer-overview-inner {
    flex: auto;
    display: flex;
    align-items: center
}

.dashboard-box .freelancer-overview .freelancer-name,
.dashboard-box .employer-overview .employer-name {
    text-align: left;
    margin: 0 0 0 30px;
    width: 100%
}

.dashboard-box .freelancer-overview .freelancer-avatar,
.dashboard-box .employer-overview .employer-avatar {
    margin: 0;
    width: 90px
}

.dashboard-box .freelancer-overview.manage-candidates .freelancer-avatar,
.dashboard-box .employer-overview.manage-requests .employer-avatar {
    align-self: flex-start
}

.dashboard-task-details {
    padding-top: 20px;
}
.dashboard-task-info {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #f4f4f4;
    text-align: center;
    border-radius: 4px;
    padding: 14px 25px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    align-self: flex-end;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    transition: .3s;
    justify-content: center
}

.dashboard-box li:hover .dashboard-task-info {
    background-color: #f0f0f0
}

.dashboard-task-info li {
    display: inline-block;
    border-right: 1px solid #d0d0d0;
    padding-right: 22px;
    margin-right: 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

.dashboard-task-info li:last-child {
    margin-right: 0;
    padding-right: 0;
    border: none
}

.dashboard-task-info li strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 22px
}

.dashboard-task-info li span {
    display: block;
    font-size: 14px;
    color: #888;
    line-height: 20px
}


.dashboard-status-button {
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    line-height: 21px;
    padding: 2px 8px;
    display: inline-block;
    position: relative;
    top: -2px;
    margin: 0 0 4px 4px
}

.dashboard-status-button.green {
    background: #e0f5d7;
    color: #449626
}

.dashboard-status-button.yellow {
    background-color: #fbf6dd;
    color: #a18d29
}

.dashboard-status-button.red {
    background-color: #ffe6e6;
    color: #ea5252
}

.bid-acceptance {
    display: flex;
    color: #289c41;
    background-color: #e4f6e9;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    border-radius: 4px;
    padding: 12px 18px;
    display: inline-block;
    margin: 0 auto;
    line-height: 20px
}

.bid-acceptance span {
    font-size: 14px;
    opacity: .86;
    line-height: 20px
}

@media(max-width:1366px) {
    .dashboard-box .job-listing.width-adjustment {
        max-width: 100%
    }

    .dashboard-task-info {
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        margin: 10px 0 20px
    }

    .dashboard-task-info.bid-info {
        margin-bottom: 0;
        margin-top: 20px
    }
}

@media(max-width:768px) {
    .dashboard-box .freelancer-overview .freelancer-avatar {
        width: 60px
    }

    .dashboard-box .freelancer-overview .freelancer-avatar .verified-badge {
        transform: scale(.8);
        bottom: -5px;
        right: -5px
    }

    .dashboard-box .freelancer-overview .freelancer-name {
        margin: 0 0 0 25px
    }

    .dashboard-box .job-listing .job-listing-company-logo {
        display: none
    }

    .dashboard-task-info.bid-info,
    .dashboard-task-info:not(.bid-info) {
        flex-direction: column;
        width: 100%
    }

    .dashboard-task-info li {
        border-right: none;
        border-bottom: 1px solid #d0d0d0;
        padding: 0 0 10px;
        margin: 0 0 10px;
        width: 100%
    }

    .dashboard-task-info li:last-child {
        border-right: none;
        border-bottom: none;
        padding: 0;
        margin: 0
    }
}


ul.dashboard-box-list {
    list-style: none;
    padding: 0;
    margin: 0
}

ul.dashboard-box-list > li {
    border-bottom: 1px solid #e4e4e4;
    padding: 0;
    line-height: 26px;
    padding: 22px 30px;
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    flex-flow: row wrap;
    transition: .3s
}

ul.dashboard-box-list > li:last-child {
    border-bottom: none
}

ul.dashboard-box-list > li:hover {
    background-color: #fcfcfc
}

.dashboard-box-list .notification-text {
    font-size: 14.7px;
    flex: 1
}

.dashboard-box-list .notification-icon {
    flex: 0 0 40px
}

.dashboard-box-list .notification-text .star-rating {
    position: relative;
    top: -18px;
    line-height: 0;
    height: 0;
    display: inline-block;
    margin: 0 3px;
    transform: scale(.93)
}

.buttons-to-right,
.dashboard-box-list .button.to-right {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: .3s;
    box-shadow: 0 0 10px 15px #fff;
    background-color: #fff
}

.dashboard-box-list .buttons-to-right.always-visible,
.dashboard-box-list li:hover .buttons-to-right {
    opacity: 1
}

.dashboard-box-list .buttons-to-right.always-visible:not(.single-right-button) {
    position: relative;
    transform: none;
    top: 0;
    margin: 5px 0 10px -2px;
    opacity: 1;
    right: auto;
    display: inline-block;
    box-shadow: none;
    width: 100%;
    background-color: transparent;
    box-shadow: none
}

.dashboard-box-list .button {
    padding: 6px 15px;
    line-height: 20px;
    font-size: 13px;
    font-weight: 600;
    margin: 0;
    display: inline-block;
    box-shadow: 0 3px 8px rgba(102, 103, 107, .15)
}

.dashboard-box-list .button i[class*=icon-material] {
    font-size: 18px;
    top: 3px;
    margin-right: 2px;
    margin-left: -2px
}

.dashboard-box-list .buttons-to-right .button {
    margin: 0 0 -6px 2px
}

.dashboard-box-list .buttons-to-right.always-visible .button {
    margin: 0 3px 0 0
}

.dashboard-box .button.red {
    background-color: #dc3139;
    box-shadow: 0 3px 8px rgba(234, 65, 81, .15)
}

.dashboard-box .button.green {
    background-color: #40b660;
    box-shadow: 0 3px 8px rgba(64, 182, 96, .15)
}

.dashboard-box .button.dark {
    background-color: #333;
    box-shadow: 0 3px 8px rgba(0, 0, 0, .1)
}

.dashboard-box .button.gray {
    background-color: #eee;
    color: #666;
    box-shadow: none
}

.dashboard-box .dashboard-box-list .button:not(.ico):hover,
.dashboard-box .button.red:not(.ico):hover,
.dashboard-box .button.green:not(.ico):hover,
.dashboard-box .button.gray:not(.ico):hover {
    color: #fff;
    background-color: #333;
    box-shadow: 0 3px 8px rgba(0, 0, 0, .1)
}

.dashboard-box .button.dark:not(.ico):hover {
    background-color: #66676b;
    box-shadow: 0 3px 8px rgba(102, 103, 107, .15)
}

.dashboard-box .button.ico {
    width: 32px;
    text-align: center
}

.dashboard-box .button.ico i {
    font-size: 15px;
    margin-left: -7px;
    top: 2px;
    position: relative
}

.dashboard-box .button i.icon-material-outline-check {
    margin-left: -5px
}

.dashboard-box .button.ico i[class*=icon-material] {
    font-size: 18px;
    margin-left: -8px;
    top: 3px;
    position: relative
}

.dashboard-box-list {
    box-shadow: none
}

.dashboard-box-list a.button i {
    margin: 0;
    padding: 0;
    position: relative;
    top: 1px;
    font-size: 14px;
    line-height: 0;
    margin-left: -2px
}

.dashboard-box .mark-as-read {
    float: none;
    background-color: #f4f4f4;
    position: absolute;
    right: 30px;
    top: 18px
}

.submit-field {
    margin-bottom: 28px;
    display: block
}

.submit-field .pac-container {
    box-shadow: none;
    border: 1px solid #e0e0e0;
    border-top: 1px solid #fff;
    padding-top: 0;
    z-index: 9;
    left: 0 !important;
    top: 47px !important;
    border-radius: 0 0 4px 4px
}

.submit-field h5 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px
}

.submit-field h5 span {
    color: #888;
    font-weight: 500
}

.help-icon {
    color: #66676b;
    display: inline-block;
    font-size: 19px;
    font-weight: 400;
    line-height: 18px;
    height: 16px;
    position: relative;
    top: 3px;
    margin: 0 3px;
    font-style: normal;
    cursor: help
}

.help-icon:before {
    content: "\e97c";
    font-family: feather-icons
}


.single-page-section {
    margin-bottom: 55px;
    display: block
}

.single-page-section p:last-of-type {
    padding-bottom: 0;
    margin-bottom: 0
}

.single-page-section h3 {
    margin-bottom: 20px;
    font-size: 20px
}

.single-page-section .job-listing h3.job-listing-title {
    margin-bottom: 0
}

.job-listing {
    display: block;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .12);
    margin-bottom: 35px;
    background-color: #fff;
    transition: .3s;
    position: relative
}

.job-listing:hover {
    box-shadow: 0 2px 18px rgba(0, 0, 0, .14);
    transform: translateY(-4px)
}

.job-listing-details {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 35px;
    padding-bottom: 32px
}

.job-listing .job-listing-company-logo {
    flex: 1;
    max-width: 55px;
    margin-right: 25px;
    position: relative;
    top: 3px
}

.job-listing .job-listing-company-logo img {
    border-radius: 4px;
    transform: translate3d(0, 0, 0)
}

.job-listing .job-listing-description {
    flex: 1;
    padding-top: 3px
}

.job-listing .job-listing-description p {
    margin: 15px 0 0;
    padding: 0;
    color: #666
}

.employer-overview h4.job-listing-company,
.job-listing h4.job-listing-company {
    font-size: 16px;
    color: gray
}

.employer-overview .employer-overview-inner h3.job-listing-title,
.job-listing h3.job-listing-title {
    font-size: 20px;
    color: #333;
    line-height: 30px
}

.job-listing .job-listing-footer {
    background-color: #f9f9f9;
    padding: 20px 35px;
    border-radius: 0 0 4px 4px;
    position: relative
}

.job-listing .job-listing-footer ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.job-listing .job-listing-footer ul li {
    display: inline-block;
    margin-right: 14px;
    color: #777
}

.job-listing .job-listing-footer ul li:last-child {
    margin-right: 0
}

.job-listing .job-listing-footer ul li i.icon-material-outline-location-on {
    margin-right: 0
}

.job-listing .job-listing-footer ul li i {
    position: relative;
    top: 1px;
    margin-right: 3px;
    color: #777
}

@media(max-width:768px) {
    .job-listing .job-listing-company-logo {
        display: none
    }

    .job-listing .job-listing-title {
        padding-right: 10%
    }
}

.button-sliding-icon {
    text-align: center
}

.button-sliding-icon i {
    opacity: 0;
    max-width: 0;
    transition: .25s;
    display: inline-block;
    transform: translateX(-20px)
}

.button-sliding-icon:hover i {
    max-width: 20px;
    opacity: 1;
    transform: translateX(0)
}

.button.button-sliding-icon {
    padding-left: 20px;
    padding-right: 10px
}

.button.button-sliding-icon:hover {
    padding-right: 20px
}

.button.button-sliding-icon i {
    padding-right: 5px
}

.button.button-sliding-icon:hover i {
    max-width: 20px;
    opacity: 1;
    transform: translateX(0)
}


span.button,
button.button,
input[type=button],
input[type=submit],
a.button {
    background-color: #66676b;
    top: 0;
    padding: 10px 20px;
    line-height: 24px;
    color: #fff;
    position: relative;
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    transition: all .2s ease-in-out;
    cursor: pointer;
    overflow: hidden;
    border: none;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(102, 103, 107, .15)
}

.button i[class^=icon-material],
button.button i[class^=icon-material],
input[type=button] i[class^=icon-material],
input[type=submit] i[class^=icon-material],
a.button i[class^=icon-material] {
    font-size: 18px;
    height: 0;
    width: 18px;
    line-height: 0;
    top: 2px;
    position: relative;
    display: inline-block;
    margin-left: 3px
}

.button i[class^=icon-feather],
button.button i[class^=icon-feather],
input[type=button] i[class^=icon-feather],
input[type=submit] i[class^=icon-feather],
a.button i[class^=icon-feather] {
    font-size: 16px;
    height: 0;
    width: 16px;
    line-height: 0;
    top: 2px;
    position: relative;
    display: inline-block;
    margin-left: 3px
}

button.button.dark,
input[type=button].dark,
input[type=submit].dark,
a.button.dark {
    background-color: #333;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .1)
}

button.button.gray,
input[type=button].gray,
input[type=submit].gray,
a.button.gray {
    background-color: #eaeaea;
    color: #666;
    box-shadow: none
}

button.button.gray:hover,
input[type=button].gray:hover,
input[type=submit].gray:hover,
a.button.gray:hover {
    background-color: #e0e0e0
}

body .button i.icon-material-outline-arrow-right-alt {
    font-size: 22px;
    top: 4px
}

.notify-box button.button {
    padding: 7px 20px;
}

.button.full-width {
    max-width: 100%;
    width: 100%;
    text-align: center;
    display: block
}

.button.big {
    font-size: 18px;
    padding: 13px 22px
}

body .button.big i {
    font-size: 22px;
    top: 3px;
    position: relative
}

.button.button-slide-out span {
    transform: translateY(0px);
    opacity: 1;
    transition: .3s
}

.button.button-slide-out:hover span {
    transform: translateY(-10px);
    opacity: 0;
    display: inline-block;
    transition: .3s
}

.button.button-slide-out i {
    transform: translateY(calc(-50% + 10px));
    opacity: 0;
    display: inline-block;
    transition: .3s;
    position: absolute;
    left: 0;
    right: 0;
    font-size: 18px;
    top: 50%;
    height: 20px
}

.button.button-slide-out:hover i {
    transform: translateY(calc(-50% + 0px));
    opacity: 1
}

.move-on-hover {
    box-shadow: 0 4px 12px rgba(102, 103, 107, .1);
    transform: translateY(0);
    transition: .3s
}

.move-on-hover:hover {
    box-shadow: 0 4px 12px rgba(102, 103, 107, .2);
    transform: translateY(-2px)
}

.centered-button {
    text-align: center;
    display: block
}

.centered-button .button {
    margin: 0 auto
}


.table-action a {
    font-size: 22px;
}





.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    overflow: hidden;
    position: fixed;
    background: #111
}

.mfp-wrap {
    top: -10px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2001;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden
}

.mfp-container {
    height: 100%;
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 18px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.mfp-container:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle
}

.mfp-align-top .mfp-container:before {
    display: none
}

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 505
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto
}

.mfp-ajax-cur {
    cursor: progress
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -moz-zoom-out;
    cursor: -webkit-zoom-out;
    cursor: zoom-out
}

.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in
}

.mfp-auto-cursor .mfp-content {
    cursor: auto
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.mfp-loading.mfp-figure {
    display: none
}

.mfp-hide {
    display: none !important
}

.mfp-preloader {
    color: #aaa;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -.8em;
    left: 8px;
    right: 8px;
    z-index: 504
}

.mfp-preloader a {
    color: #ccc
}

.mfp-preloader a:hover {
    color: #fff
}

.mfp-s-ready .mfp-preloader {
    display: none
}

.mfp-s-error .mfp-content {
    display: none
}

.mfp-s-loading .mfp-arrow {
    display: none
}

button.mfp-close,
button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    border: 0;
    -webkit-appearance: none;
    display: block;
    padding: 0;
    z-index: 506
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    right: 0;
    top: -40px
}

.og-close,
button.mfp-close {
    position: absolute;
    width: 45px;
    height: 45px;
    top: -20px;
    display: block;
    right: -12px;
    cursor: pointer !important;
    z-index: 9999;
    color: #fff;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    border-radius: 50%;
    margin: 0;
    background-color: transparent;
    outline: none;
    transform: translate3d(0, 0, 0)
}

.mfp-iframe-holder .mfp-close {
    top: -50px;
    right: -12px;
    transform: translate3d(0, 0, 0)
}

.mfp-gallery .mfp-close {
    top: 20px;
    right: 10px
}

.mfp-gallery .mfp-content .mfp-close {
    display: none
}

.mfp-close::after,
.mfp-close::before {
    top: 0
}

.og-close {
    margin: 17px;
    right: 10px;
    background: 0 0;
    color: #222
}

.og-close:before,
.mfp-close:before {
    font-family: feather-icons;
    font-size: 20px;
    top: 2px;
    left: 0;
    position: relative;
    height: 10px
}

.og-close:before,
.mfp-close:before {
    content: "\ea02"
}

#small-dialog .mfp-close,
#small-dialog-1 .mfp-close,
#small-dialog-2 .mfp-close,
#small-dialog-3 .mfp-close,
#small-dialog-4 .mfp-close,
#sign-in-dialog,
.mfp-close,
.mfp-close:hover {
    color: #fff
}

#sign-in-dialog .mfp-close,
#small-dialog-1 .mfp-close,
#small-dialog-2 .mfp-close,
#small-dialog-3 .mfp-close,
#small-dialog-4 .mfp-close,
#small-dialog .mfp-close {
    color: #666;
    background-color: #e4e4e4;
    border-radius: 4px;
    top: 28px;
    right: 40px;
    width: 40px;
    height: 40px
}

#sign-in-dialog .mfp-close:hover,
#small-dialog-1 .mfp-close:hover,
#small-dialog-2 .mfp-close:hover,
#small-dialog-3 .mfp-close:hover,
#small-dialog-4 .mfp-close:hover,
#small-dialog .mfp-close:hover {
    color: #fff;
    background-color: #66676b
}

.small-dialog-content input[type=submit] {
    width: 100%;
    margin-top: 26px;
    margin-bottom: 10px
}

.small-dialog-content .divider {
    display: inline-block;
    width: 100%;
    margin-top: 15px;
    padding-bottom: 0
}

.small-dialog-header {
    font-size: 22px;
    width: calc(100% + 80px);
    position: relative;
    left: -40px;
    top: 0;
    border-radius: 4px 4px 0 0;
    display: inline-block;
    background-color: #f6f6f6;
    padding: 35px 40px;
    margin-bottom: 40px
}

.small-dialog-header h3 {
    padding: 0;
    margin: 0;
    font-size: 23px
}

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #aaa;
    font-size: 13px;
    line-height: 18px
}

.mfp-arrow {
    opacity: 1;
    margin: 0 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    color: #fff;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    cursor: pointer;
    width: 60px;
    height: 60px;
    position: absolute;
    display: block;
    z-index: 100;
    overflow: hidden;
    background: rgba(255, 255, 255, .15);
    border-radius: 50%;
    outline: none
}

.mfp-arrow:hover {
    background: #66676b;
    color: #fff
}

.mfp-arrow.mfp-arrow-left,
.mfp-arrow.mfp-arrow-right {
    font-family: simple-line-icons;
    font-size: 20px
}

.mfp-arrow.mfp-arrow-right {
    right: 15px
}

.mfp-arrow.mfp-arrow-left:before {
    content: "\e605";
    left: -1px;
    top: 0;
    position: relative
}

.mfp-arrow.mfp-arrow-right:before {
    content: "\e606";
    left: 1px;
    top: 0;
    position: relative
}

.mfp-content:hover .mfp-arrow {
    opacity: 1
}

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px
}

.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 1180px
}

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 54%
}

.mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, .6);
    background: #000
}

#sign-in-dialog,
#small-dialog-1,
#small-dialog-2,
#small-dialog-3,
#small-dialog-4,
#small-dialog {
    background: #fff;
    padding: 40px;
    padding-top: 0;
    text-align: left;
    max-width: 610px;
    margin: 40px auto;
    position: relative;
    box-sizing: border-box;
    border-radius: 4px;
    max-width: 550px
}

#sign-in-dialog-1 span.line,
#sign-in-dialog-2 span.line,
#sign-in-dialog-3 span.line,
#sign-in-dialog-4 span.line,
#sign-in-dialog span.line,
#small-dialog span.line {
    padding-top: 0
}

.my-mfp-zoom-in .zoom-anim-dialog {
    opacity: 0;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    -webkit-transform: scale(.8);
    -moz-transform: scale(.8);
    -ms-transform: scale(.8);
    -o-transform: scale(.8);
    transform: scale(.8)
}

.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
    -webkit-transform: scale(.8);
    -moz-transform: scale(.8);
    -ms-transform: scale(.8);
    -o-transform: scale(.8);
    transform: scale(.8);
    opacity: 0
}

.my-mfp-zoom-in.mfp-bg {
    opacity: .001;
    -webkit-transition: opacity .3s ease-out;
    -moz-transition: opacity .3s ease-out;
    -o-transition: opacity .3s ease-out;
    transition: opacity .3s ease-out
}

.my-mfp-zoom-in.mfp-ready.mfp-bg {
    opacity: .85
}

.my-mfp-zoom-in.mfp-removing.mfp-bg {
    opacity: 0
}

.dupa {
    display: block;
    height: 30px
}

img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 40px auto;
    border-radius: 4px
}

.mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 18px rgba(11, 11, 11, .6)
}

.mfp-figure {
    line-height: 0
}

.mfp-bottom-bar {
    margin-top: -30px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto
}

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #f3f3f3;
    word-break: break-word;
    padding-right: 36px
}

.mfp-figure small {
    color: #bdbdbd;
    display: block;
    font-size: 12px;
    line-height: 14px
}

.mfp-image-holder .mfp-content {
    max-width: 100%
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer
}

@media screen and (max-width:800px) and (orientation:landscape),
screen and (max-height:300px) {
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0
    }

    .mfp-img-mobile img.mfp-img {
        padding: 0
    }

    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0
    }

    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, .6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box
    }

    .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0
    }

    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px
    }

    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, .6);
        position: fixed;
        text-align: center;
        padding: 0
    }

    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px
    }
}

.mfp-ie7 .mfp-img {
    padding: 0
}

.mfp-ie7 .mfp-bottom-bar {
    width: 600px;
    left: 50%;
    margin-left: -300px;
    margin-top: 5px;
    padding-bottom: 5px
}

.mfp-ie7 .mfp-container {
    padding: 0
}

.mfp-ie7 .mfp-content {
    padding-top: 44px
}

.mfp-ie7 .mfp-close {
    top: 0;
    right: 0;
    padding-top: 0
}

.mfp-fade.mfp-bg {
    opacity: 0;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    transition: all .2s ease-out
}

.mfp-fade.mfp-bg.mfp-ready {
    opacity: .92;
    background-color: #111
}

.mfp-fade.mfp-bg.mfp-removing {
    opacity: 0
}

.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    transition: all .2s ease-out
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0
}

.feedback-yes-no strong {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    display: block
}

.feedback-yes-no .radio {
    margin-right: 15px
}

.feedback-yes-no {
    margin-bottom: 15px
}

.feedback-yes-no .leave-rating {
    transform: scale(1.1);
    margin: 3px 0 10px 3px
}

.popup-tabs-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    display: block;
    height: 62px;
    background: #f8f8f8;
    border-radius: 4px 4px 0 0;
    border-bottom: 1px solid #e0e0e0
}

.popup-tabs-nav li {
    float: left;
    line-height: 62px;
    height: 62px;
    padding: 0;
    margin-right: 0;
    position: relative
}

.popup-tabs-nav li:first-child a {
    border-radius: 4px 0 0 0
}

.popup-tabs-nav li a,
.popup-tab-reviews {
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out
}

.popup-tabs-nav li a {
    border: none;
    color: #777;
    display: inline-block;
    outline: none;
    padding: 0;
    text-decoration: none;
    font-size: 16px;
    z-index: 10;
    position: relative;
    height: 100%;
    padding: 0 30px;
    border-right: 1px solid transparent;
    border-left: 1px solid transparent;
    transition: all .3s, font-weight 0s;
    border-right: 1px solid #e0e0e0
}

.popup-tabs-nav li.active {
    background-color: #fff;
    position: relative
}

.popup-tabs-nav li a:hover {
    background-color: #f3f3f3;
    height: calc(100% - 1px);
    color: #333
}

.popup-tabs-nav li:last-child a:hover {
    border-right: 1px solid #e0e0e0
}

.popup-tabs-nav li.active a:hover,
.popup-tabs-nav li.active {
    background-color: #fff
}

.popup-tabs-nav li.active a {
    color: #66676b;
    font-weight: 500;
}

.popup-tabs-nav li.active:after {
    content: "";
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
    z-index: 111
}

.popup-tabs-nav li:first-child.active {
    border-left: none;
    border-radius: 4px 0 0 0
}

.popup-tab-content {
    padding: 50px 35px;
    position: relative;
    z-index: 10;
    display: inline-block;
    width: 100%
}

.popup-tabs-container {
    overflow: hidden;
    width: 100%
}

.popup-tab-content p:last-child {
    margin-bottom: 0
}

.dialog-with-tabs#sign-in-dialog,
.dialog-with-tabs#small-dialog-1,
.dialog-with-tabs#small-dialog-2,
.dialog-with-tabs#small-dialog-3,
.dialog-with-tabs#small-dialog-4,
.dialog-with-tabs#small-dialog {
    padding: 0;
    color: #666;
    max-width: 540px;
    box-shadow: 0 0 25px rgba(0, 0, 0, .25)
}

#sign-in-dialog.dialog-with-tabs .mfp-close,
#small-dialog.dialog-with-tabs .mfp-close,
#small-dialog-1.dialog-with-tabs .mfp-close,
#small-dialog-2.dialog-with-tabs .mfp-close,
#small-dialog-3.dialog-with-tabs .mfp-close,
#small-dialog-4.dialog-with-tabs .mfp-close {
    color: #888;
    background-color: #f8f8f8;
    border-left: 1px solid #e0e0e0;
    border-radius: 0 4px 0 0;
    top: 0;
    right: 0;
    width: 62px;
    height: 61px
}

#sign-in-dialog.dialog-with-tabs .mfp-close:hover,
#small-dialog-1.dialog-with-tabs .mfp-close:hover,
#small-dialog-2.dialog-with-tabs .mfp-close:hover,
#small-dialog-3.dialog-with-tabs .mfp-close:hover,
#small-dialog-4.dialog-with-tabs .mfp-close:hover,
#small-dialog.dialog-with-tabs .mfp-close:hover {
    color: #333;
    background-color: #f2f2f2
}

.dialog-with-tabs .mfp-close:before,
.dialog-with-tabs .mfp-close:before {
    font-size: 24px
}

.dialog-with-tabs input:-webkit-autofill,
.dialog-with-tabs input:focus:-webkit-autofill {
    border: 1px solid #e0e0e0;
    -webkit-box-shadow: inset 0 0 0 9999px #fff, 0 1px 4px rgba(0, 0, 0, .07)
}

.dialog-with-tabs input {
    margin-bottom: 22px
}

.dialog-with-tabs .forgot-password {
    font-size: 14px;
    color: #888;
    margin-top: -12px;
    display: block
}

.dialog-with-tabs .forgot-password:hover {
    color: #66676b
}

.dialog-with-tabs .button {
    height: 48px;
    width: 100% !important;
    margin-top: 25px;
    box-shadow: 0 4px 12px rgba(102, 103, 107, .15)
}

.welcome-text {
    display: block;
    text-align: center;
    color: gray;
    margin-bottom: 33px
}

.welcome-text h3 {
    display: block;
    font-weight: 700;
    color: #333;
    font-size: 24px
}

.welcome-text span a {
    font-weight: 500
}

.welcome-text span {
    display: block;
    margin-top: 4px
}
/*****************************
        Attachment
******************************/

.attachments-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: calc(100% + 20px);
    margin-bottom: -30px
}

.attachment-box {
    display: flex;
    margin: 0 20px 20px 0;
    background-color: #f4f4f4;
    border-radius: 4px 0 4px 4px;
    font-weight: 600;
    padding: 15px 20px;
    padding-bottom: 45px;
    padding-right: 25px;
    line-height: 24px;
    flex-direction: column;
    color: #666;
    position: relative;
    transition: .3s;
    flex: 0 1 calc(50% - 21px);
    cursor: default;
    position: relative
}

.single-page-section .attachment-box {
    flex: 0 1 calc(33% - 20px)
}

.single-page-section .attachments-container {
    margin-bottom: -20px
}

a.attachment-box {
    cursor: pointer
}

.attachment-box:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    border-width: 0 20px 20px 0;
    border-style: solid;
    border-color: rgba(0, 0, 0, .15) #fff;
    transition: .3s;
    border-radius: 0 0 0 4px
}

a.attachment-box:hover {
    background-color: #66676b;
    color: #fff
}

a.attachment-box:hover:before {
    border-color: rgba(0, 0, 0, .25) #fff
}

.attachment-box span {
    font-size: 14px;
    line-height: 20px;
    display: inline-block;
    flex: auto
}

.attachment-box i {
    display: block;
    font-style: normal;
    font-size: 14px;
    color: #999;
    font-weight: 500;
    margin-top: 10px;
    position: absolute;
    bottom: 10px;
    transition: .3s
}

a.attachment-box:hover i {
    color: rgba(255, 255, 255, .7)
}

.attachment-box .remove-attachment {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: #fff;
    background-color: #dc3139;
    box-shadow: 0 3px 8px rgba(234, 65, 81, .15);
    height: 28px;
    width: 28px;
    line-height: 28px;
    border-radius: 3px;
    font-weight: 500;
    font-size: 14px;
    transition: .3s;
    opacity: 0;
    transform: translateY(3px)
}

.attachment-box .remove-attachment:before {
    content: "\e9e4";
    font-family: feather-icons
}

.attachment-box:hover .remove-attachment {
    opacity: 1;
    transform: translateY(0)
}


.profile-overview {
    display: flex;
    line-height: 22px;
    align-items: center;
    margin-bottom: 25px;
    width: calc(100% + 25px)
}

.profile-overview .overview-item {
    flex: 1;
    border-right: 1px solid #e0e0e0;
    margin-right: 20px;
    padding-right: 20px;
    flex-grow: 1
}

.profile-overview .overview-item:last-child {
    border-right: 0;
    padding-right: 0
}

.profile-overview .overview-item strong {
    display: block;
    font-weight: 600;
    color: #333;
    font-size: 18px;
    margin-bottom: 5px
}

.profile-overview .overview-item span {
    color: gray
}

.freelancer-indicators {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 30px);
    line-height: 24px;
    margin-bottom: -20px
}

.freelancer-indicators .indicator {
    width: calc(50% - 31px);
    margin-right: 30px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column
}

.freelancer-indicators .indicator strong {
    color: #333;
    font-weight: 600
}

.freelancer-indicators .indicator-bar span,
.freelancer-indicators .indicator-bar {
    width: 100%;
    height: 4px;
    background-color: #e0e0e0;
    border-radius: 10px;
    position: relative;
    margin: 10px 0;
    transition: 1s
}

.freelancer-indicators .indicator-bar span {
    width: 0;
    background-color: #66676b;
    position: absolute;
    top: 0;
    margin: 0
}

@media(max-width:1240px) {

    .profile-overview,
    .profile-overview .overview-item {
        display: block;
        width: 100%
    }

    .profile-overview .overview-item {
        border-right: 0;
        border-bottom: 1px solid #e0e0e0;
        padding: 15px 0;
        margin: 0
    }

    .profile-overview .overview-item:last-child {
        border-right: none;
        border-bottom: none
    }
}

@media(max-width:768px) {

    .boxed-list-item .item-details,
    .attachments-container,
    .attachments-container .attachment-box,
    .freelancer-indicators,
    .freelancer-indicators .indicator {
        display: block;
        width: 100%
    }

    .boxed-list-item .item-image {
        display: none
    }
}



a.apply-now-button {
    background-color: #66676b;
    color: #fff;
    text-align: center;
    font-size: 18px;
    border-radius: 4px;
    padding: 14px 20px;
    margin-bottom: 35px;
    box-shadow: 0 2px 8px rgba(102, 103, 107, .15);
    transition: .3s;
    display: block
}

a.apply-now-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 2px 8px rgba(102, 103, 107, .35)
}

a.apply-now-button i {
    font-size: 22px;
    position: relative;
    line-height: 0;
    top: 3px;
    margin-left: 5px
}

/*****************************************
  image upload button styles
******************************************/
.image-file-upload {
    position: relative;
    display: inline-block;
    margin-top: 20px; 
  }
  
  .image-upload__label {
    display: block;
    padding: 8px 20px;
    color: #fff;
    border-radius: .4em;
    transition: background .3s;
  }
  .image-upload__label:hover {
    cursor: pointer;
    background: #276FBF;
  }
  
  .image-upload__input {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    font-size: 1;
    width: 0;
    height: 100%;
    opacity: 0;
  }
  

.complete-profile-avatar-container {
    text-align: center;
}
.complete-profile-avatar-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: none;
    margin: 0 auto;
    transition: all .3s ease
}
.complete-profile-avatar-wrapper .profile-pic {
    height: 100%;
    width: 100%;
    transition: all .3s ease;
    object-fit: cover
}

.complete-profile-avatar-wrapper .profile-pic:after {
    font-family: Feather-Icons;
    content: "\e9f1";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    line-height: 120px;
    position: absolute;
    font-size: 60px;
    background: #f0f0f0;
    color: #aaa;
    text-align: center
}
.avatar-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: none;
    margin: 0 10px 30px 0;
    transition: all .3s ease
}

.avatar-wrapper:hover {
    transform: scale(1.05);
    cursor: pointer
}

.avatar-wrapper .profile-pic {
    height: 100%;
    width: 100%;
    transition: all .3s ease;
    object-fit: cover
}

.avatar-wrapper .profile-pic:after {
    font-family: Feather-Icons;
    content: "\e9f1";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    line-height: 120px;
    position: absolute;
    font-size: 60px;
    background: #f0f0f0;
    color: #aaa;
    text-align: center
}

.avatar-wrapper .upload-button {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%
}

.avatar-wrapper .file-upload {
    opacity: 0;
    pointer-events: none;
    position: absolute
}


.account-type {
    display: flex;
    width: calc(100% + 20px);
    margin: 0 0 20px
}

.account-type div {
    flex: 1;
    margin-right: 20px
}

.account-type label {
    border-radius: 3px;
    border: none;
    background-color: #f2f2f2;
    width: 100%
}

.account-type input.account-type-radio:empty {
    display: none
}

.account-type label i {
    position: relative;
    font-size: 18px;
    top: 2px;
    margin-right: 2px
}

.account-type input.account-type-radio:empty ~ label {
    position: relative;
    float: left;
    padding: 10px;
    text-align: center;
    padding-bottom: 11px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-radius: 4px;
    color: #888;
    transition: .4s;
    height: 48px;
    line-height: 28px;
    overflow: hidden
}

.account-type input.account-type-radio ~ label:hover {
    color: #289c41;
    background-color: #e4f6e9
}

.account-type input.account-type-radio:checked ~ label {
    color: #fff;
    background-color: #47bb67
}

.account-type input.account-type-radio:empty ~ label:after,
.account-type input.account-type-radio:empty ~ label:before {
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 48px;
    border-radius: 4px;
    font-size: 22px;
    background: 0 0;
    z-index: 100;
    opacity: 0
}

.account-type .ripple-effect-dark span.ripple-overlay {
    animation: ripple 1.2s;
    opacity: .03
}

@keyframes typeCheck {
    0% {
        opacity: 0;
        transform: translateY(10px)
    }

    50% {
        opacity: 1;
        transform: translateY(0px)
    }

    100% {
        opacity: 0;
        transform: translateY(-10px)
    }
}

@keyframes typeBG {
    0% {
        opacity: 0
    }

    50% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}


.boxed-list {
    margin-top: 10px;
    display: block
}

.boxed-list-headline {
    background-color: #f2f2f2;
    border-radius: 4px;
    padding: 20px 35px
}

.boxed-list-headline h3 {
    font-size: 18px
}

.boxed-list-headline h3 span {
    color: #888
}

.boxed-list-headline h3 i {
    font-size: 18px;
    color: #66676b;
    font-size: 24px;
    position: relative;
    top: 3px;
    line-height: 0;
    display: inline-block;
    margin-right: 5px
}

.boxed-list ul.boxed-list-ul {
    padding: 0;
    margin: 0;
    list-style: none
}

.boxed-list ul.boxed-list-ul > li {
    display: block;
    background-color: transparent;
    padding: 35px;
    border-radius: 4px
}

.boxed-list ul.boxed-list-ul > li:nth-child(2n) {
    background-color: #fafafa
}
.boxed-list ul.boxed-list-ul > li h4 {
    line-height: 27px;
}

.fields-ul {
    padding: 0;
    margin: 0;
    list-style: none
}

.fields-ul > li {
    display: block;
    background-color: transparent;
    padding: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e4e4e4
}

.boxed-list-item {
    display: flex
}

.boxed-list-item .item-image {
    flex: 0 0 60px;
    height: 60px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    padding: 10px;
    margin-right: 25px;
    position: relative;
    top: -2px;
    display: flex;
    background-color: #fff
}

@media screen and (-ms-high-contrast:active),
screen and (-ms-high-contrast:none) {
    .boxed-list-item .item-image {
        max-width: 60px
    }

    .boxed-list-item .item-image img {
        width: 100%
    }
}

.boxed-list-item .item-image img {
    height: auto;
    align-self: center
}

.boxed-list-item .item-content h4 a,
.boxed-list-item .item-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333
}

.boxed-list-item .item-content h4 span {
    font-size: 16px;
    color: gray;
    display: block;
    font-weight: 500
}

.boxed-list-item .item-details {
    display: flex;
    margin-top: 5px
}

.boxed-list-item .item-details .star-rating {
    top: -2px;
    position: relative;
    margin-right: 15px
}

.boxed-list-item .item-details .detail-item {
    margin-right: 15px;
    color: gray
}

.boxed-list-item .item-details .detail-item a {
    color: gray
}

.boxed-list-item .item-details .detail-item a:hover {
    color: #66676b
}

.boxed-list-item .item-details .detail-item i {
    margin-right: 3px;
    position: relative;
    top: 0
}

.boxed-list-item .item-description p {
    margin-bottom: 0;
    padding-bottom: 0
}

.boxed-list-item .item-description {
    margin-top: 15px
}


.radio {
    display: inline-block;
    vertical-align: top
}

.radio label {
    margin: 3px 0;
    cursor: pointer;
    position: relative;
    padding-left: 29px;
    line-height: 25px
}

.radio input[type=radio] {
    position: absolute;
    opacity: 0
}

.radio input[type=radio] + label .radio-label {
    content: '';
    background: #fff;
    border-radius: 100%;
    border: 2px solid #b4b4b4;
    display: inline-block;
    width: 18px;
    height: 18px;
    position: relative;
    margin-right: 5px;
    vertical-align: top;
    cursor: pointer;
    text-align: center;
    transition: all 250ms ease;
    background-color: #fff;
    box-shadow: inset 0 0 0 8px #fff;
    z-index: 100;
    position: absolute;
    top: 2px;
    left: 0
}

.radio input[type=radio] + label .radio-label:after {
    background-color: #66676b;
    content: "";
    top: 3px;
    left: 0;
    right: 0;
    margin: 0 auto;
    position: absolute;
    opacity: 1;
    transition: .3s;
    border-radius: 50%;
    transform: scale(0);
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    z-index: 99
}

.radio input[type=radio]:checked + label .radio-label {
    background-color: #66676b;
    border-color: #66676b;
    box-shadow: inset 0 0 0 3px #fff
}

.radio-label:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    background-color: transparent;
    display: block
}

.interactive-effect label .radio-label:before {
    animation: radius-shadow .4s
}

@keyframes radius-shadow {
    0% {
        box-shadow: 0 0 0 0 rgba(102, 103, 107, .4)
    }

    100% {
        box-shadow: 0 0 0 10px transparent
    }
}


.checkbox {
    display: inline-block;
    margin-bottom: 0
}

.checkbox input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    /*display: none;*/
    cursor: pointer
}

.checkbox label {
    position: relative;
    cursor: pointer;
    padding-left: 30px;
    font-size: 14px;
    line-height: 25px;
}

.checkbox label span.checkbox-icon {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 2px solid #b4b4b4;
    height: 20px;
    width: 20px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
    border-radius: 4px;
    transition: .3s;
    position: absolute;
    left: 0;
    top: 1px
}

.checkbox input + label span.checkbox-icon:after {
    position: absolute;
    top: 2px;
    left: 0;
    right: 0;
    margin: 0 auto;
    opacity: 0;
    content: '';
    display: block;
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: scale(.5) rotate(45deg);
    transition: all .35s cubic-bezier(.3, -.41, .19, 2), opacity .3s
}

.checkbox input:checked + label span.checkbox-icon {
    border-color: #66676b;
    background-color: #66676b
}

.checkbox input:checked + label span.checkbox-icon:after {
    transform: scale(1) rotate(45deg);
    opacity: 1
}
.uploadButton {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 10px;
    width: 100%;
    font-style: normal;
    font-size: 14px
}

.uploadButton .uploadButton-input {
    opacity: 0;
    position: absolute;
    overflow: hidden;
    z-index: -1;
    pointer-events: none
}

.uploadButton .uploadButton-button {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    height: 44px;
    padding: 10px 18px;
    cursor: pointer;
    border-radius: 4px;
    color: #66676b;
    background-color: transparent;
    border: 1px solid #66676b;
    flex-direction: row;
    transition: .3s;
    margin: 0;
    outline: none;
    box-shadow: 0 3px 10px rgba(102, 103, 107, .1)
}

.uploadButton .uploadButton-button:hover {
    background-color: #66676b;
    box-shadow: 0 4px 12px rgba(102, 103, 107, .15);
    color: #fff
}

.uploadButton .uploadButton-file-name {
    flex-grow: 1;
    display: flex;
    align-items: center;
    flex: 1;
    box-sizing: border-box;
    padding: 0 10px;
    padding-left: 18px;
    min-height: 42px;
    top: 1px;
    position: relative;
    color: #888;
    background-color: transparent;
    overflow: hidden;
    line-height: 22px
}





.small-footer {
    border-top: 1px solid #e0e0e0;
    padding-top: 0;
    width: calc(100% + 80px);
    left: -40px;
    position: relative;
    padding: 25px 40px;
    display: flex
}

.small-footer strong {
    color: #333
}

.small-footer-copyrights {
    flex: 2
}

.small-footer .footer-social-links {
    transform: none;
    flex: 1;
    text-align: right;
    float: right;
    display: inline-block;
    margin: 0 -5px 0 0;
    position: relative;
    top: 2px
}

.small-footer .footer-social-links li {
    color: #333;
    transform: none;
    float: none;
    margin: 0 -3px
}

.small-footer .footer-social-links li a {
    color: #333;
    transform: none
}

.dashboard-content-inner .small-footer {
    width: 100%;
    left: 0;
    padding: 25px 50px;
    position: absolute;
    bottom: 0
}

.dashboard-footer-spacer {
    padding-top: 125px
}

.footer-social-links {
    list-style: none;
    margin: 0 -10px;
    margin-top: 3px;
    padding: 0
}

.footer-social-links li {
    display: inline-block;
    padding: 0;
    margin: 0;
    float: left
}

.footer-social-links li a {
    font-size: 20px;
    padding: 0 10px;
    color: #fff;
    display: inline-block;
    transition: .3s;
    opacity: .5;
    transform: translate3d(0, -0.5px, 0)
}

.footer-social-links li a:hover {
    opacity: 1
}


.verified-badge {
    position: relative;
    height: 25px;
    width: 25px;
    display: inline-block;
    background-color: #38b653;
    border-radius: 50%;
    text-align: center;
    z-index: 10;
    font-weight: 500
}

.verified-badge:before {
    content: "\e92b";
    font-family: feather-icons;
    font-size: 16px;
    color: #fff;
    position: relative;
    top: 0;
    line-height: 27px
}

.job-listing .job-listing-company-logo .verified-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translate(7px, 7px)
}

.verified-badge-with-title {
    position: relative;
    height: 26px;
    display: flex;
    top: -1px;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    background-color: #30ab4a;
    text-align: center;
    z-index: 10;
    font-weight: 500;
    border-radius: 4px;
    padding: 0 8px 0 0;
    margin: 0;
    overflow: hidden;
    padding-left: 34px;
    line-height: 27px
}

.verified-badge-with-title:before {
    content: "\e92b";
    font-family: feather-icons;
    font-size: 16px;
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 26px;
    height: 26px;
    width: 26px;
    display: inline-block;
    background-color: #38b653
}

.star-rating {
    display: inline-block
}

.star-rating .star {
    display: inline-block;
    margin: 0;
    padding: 0;
    float: left;
    margin-right: 0;
    position: relative
}

.star-rating .star.half:after,
.star-rating .star:before {
    font-family: material-icons;
    content: "\e988";
    display: block;
    color: #febe42;
    font-size: 22px
}

.star-rating .star.empty:before {
    color: #ddd
}

.rating:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0
}

.star-rating .star.half:before {
    color: #ddd
}

.star-rating .star.half:after {
    color: #febe42;
    position: absolute;
    top: 0;
    width: 50%;
    display: block;
    height: 100%;
    overflow: hidden
}

.star-rating:before {
    content: attr(data-rating);
    float: left;
    border-radius: 4px;
    background-color: #febe42;
    color: #fff;
    font-size: 14px;
    line-height: 15px;
    font-weight: 700;
    padding: 5px 7px;
    position: relative;
    top: 1px;
    margin-right: 10px
}

.star-rating.no-stars .star {
    display: none
}

.star-rating.no-stars:before {
    margin-right: 0
}

.leave-rating {
    height: 24px;
    float: left;
    position: relative
}

.leave-rating:hover input[type=radio]:checked ~ label {
    color: #dadada
}

.leave-rating input[type=radio] {
    display: inline-block;
    width: 1px;
    position: absolute;
    opacity: 0;
    pointer-events: none;
    height: 100%;
    margin-left: 50%;
    left: 0;
    top: 0;
    transform: translateX(-50%)
}

.leave-rating input[type=radio]:checked ~ label {
    color: #ffc600
}

.leave-rating label {
    font-size: 24px;
    float: right;
    letter-spacing: 0;
    color: #dadada;
    cursor: pointer;
    transition: .3s
}

.leave-rating label:hover,
.leave-rating label:hover ~ label {
    color: #ffc600 !important
}

.leave-rating-title {
    display: block;
    margin: 0 0 4px
}

.welcome-text .leave-rating-container {
    text-align: center;
    margin: 0 auto;
    margin-top: 15px;
    left: 50%;
    width: 100%;
    display: block
}

.welcome-text .leave-rating {
    position: relative;
    left: 50%;
    transform: translateX(-50%) scale(1.2)
}
.ripple-effect-dark,
.ripple-effect {
    overflow: hidden;
    position: relative;
    z-index: 1
}
/*******************************************
	               Margin and Padding 
********************************************/


.margin-top-0 {
    margin-top: 0 !important
}

.margin-top-1 {
    margin-top: 1px !important
}

.margin-top-2 {
    margin-top: 2px !important
}

.margin-top-3 {
    margin-top: 3px !important
}

.margin-top-4 {
    margin-top: 4px !important
}

.margin-top-5 {
    margin-top: 5px !important
}

.margin-top-6 {
    margin-top: 6px !important
}

.margin-top-7 {
    margin-top: 7px !important
}

.margin-top-8 {
    margin-top: 8px !important
}

.margin-top-9 {
    margin-top: 9px !important
}

.margin-top-10 {
    margin-top: 10px !important
}

.margin-top-11 {
    margin-top: 11px !important
}

.margin-top-12 {
    margin-top: 12px !important
}

.margin-top-13 {
    margin-top: 13px !important
}

.margin-top-14 {
    margin-top: 14px !important
}

.margin-top-15 {
    margin-top: 15px !important
}

.margin-top-16 {
    margin-top: 16px !important
}

.margin-top-17 {
    margin-top: 17px !important
}

.margin-top-18 {
    margin-top: 18px !important
}

.margin-top-19 {
    margin-top: 19px !important
}

.margin-top-20 {
    margin-top: 20px !important
}

.margin-top-21 {
    margin-top: 21px !important
}

.margin-top-22 {
    margin-top: 22px !important
}

.margin-top-23 {
    margin-top: 23px !important
}

.margin-top-24 {
    margin-top: 24px !important
}

.margin-top-25 {
    margin-top: 25px !important
}

.margin-top-26 {
    margin-top: 26px !important
}

.margin-top-27 {
    margin-top: 27px !important
}

.margin-top-28 {
    margin-top: 28px !important
}

.margin-top-29 {
    margin-top: 29px !important
}

.margin-top-30 {
    margin-top: 30px !important
}

.margin-top-31 {
    margin-top: 31px !important
}

.margin-top-32 {
    margin-top: 32px !important
}

.margin-top-33 {
    margin-top: 33px !important
}

.margin-top-34 {
    margin-top: 34px !important
}

.margin-top-35 {
    margin-top: 35px !important
}

.margin-top-36 {
    margin-top: 36px !important
}

.margin-top-37 {
    margin-top: 37px !important
}

.margin-top-38 {
    margin-top: 38px !important
}

.margin-top-39 {
    margin-top: 39px !important
}

.margin-top-40 {
    margin-top: 40px !important
}

.margin-top-41 {
    margin-top: 41px !important
}

.margin-top-42 {
    margin-top: 42px !important
}

.margin-top-43 {
    margin-top: 43px !important
}

.margin-top-44 {
    margin-top: 44px !important
}

.margin-top-45 {
    margin-top: 45px !important
}

.margin-top-46 {
    margin-top: 46px !important
}

.margin-top-47 {
    margin-top: 47px !important
}

.margin-top-48 {
    margin-top: 48px !important
}

.margin-top-49 {
    margin-top: 49px !important
}

.margin-top-50 {
    margin-top: 50px !important
}

.margin-top-51 {
    margin-top: 51px !important
}

.margin-top-52 {
    margin-top: 52px !important
}

.margin-top-53 {
    margin-top: 53px !important
}

.margin-top-54 {
    margin-top: 54px !important
}

.margin-top-55 {
    margin-top: 55px !important
}

.margin-top-56 {
    margin-top: 56px !important
}

.margin-top-57 {
    margin-top: 57px !important
}

.margin-top-58 {
    margin-top: 58px !important
}

.margin-top-59 {
    margin-top: 59px !important
}

.margin-top-60 {
    margin-top: 60px !important
}

.margin-top-61 {
    margin-top: 61px !important
}

.margin-top-62 {
    margin-top: 62px !important
}

.margin-top-63 {
    margin-top: 63px !important
}

.margin-top-64 {
    margin-top: 64px !important
}

.margin-top-65 {
    margin-top: 65px !important
}

.margin-top-66 {
    margin-top: 66px !important
}

.margin-top-67 {
    margin-top: 67px !important
}

.margin-top-68 {
    margin-top: 68px !important
}

.margin-top-69 {
    margin-top: 69px !important
}

.margin-top-70 {
    margin-top: 70px !important
}

.margin-top-71 {
    margin-top: 71px !important
}

.margin-top-72 {
    margin-top: 72px !important
}

.margin-top-73 {
    margin-top: 73px !important
}

.margin-top-74 {
    margin-top: 74px !important
}

.margin-top-75 {
    margin-top: 75px !important
}

.margin-top-76 {
    margin-top: 76px !important
}

.margin-top-77 {
    margin-top: 77px !important
}

.margin-top-78 {
    margin-top: 78px !important
}

.margin-top-79 {
    margin-top: 79px !important
}

.margin-top-80 {
    margin-top: 80px !important
}

.margin-top-81 {
    margin-top: 81px !important
}

.margin-top-82 {
    margin-top: 82px !important
}

.margin-top-83 {
    margin-top: 83px !important
}

.margin-top-84 {
    margin-top: 84px !important
}

.margin-top-85 {
    margin-top: 85px !important
}

.margin-top-86 {
    margin-top: 86px !important
}

.margin-top-87 {
    margin-top: 87px !important
}

.margin-top-88 {
    margin-top: 88px !important
}

.margin-top-89 {
    margin-top: 89px !important
}

.margin-top-90 {
    margin-top: 90px !important
}

.margin-top-91 {
    margin-top: 91px !important
}

.margin-top-92 {
    margin-top: 92px !important
}

.margin-top-93 {
    margin-top: 93px !important
}

.margin-top-94 {
    margin-top: 94px !important
}

.margin-top-95 {
    margin-top: 95px !important
}

.margin-top-96 {
    margin-top: 96px !important
}

.margin-top-97 {
    margin-top: 97px !important
}

.margin-top-98 {
    margin-top: 98px !important
}

.margin-top-99 {
    margin-top: 99px !important
}

.margin-top-100 {
    margin-top: 100px !important
}

.margin-bottom-0 {
    margin-bottom: 0 !important
}

.margin-bottom-1 {
    margin-bottom: 1px !important
}

.margin-bottom-2 {
    margin-bottom: 2px !important
}

.margin-bottom-3 {
    margin-bottom: 3px !important
}

.margin-bottom-4 {
    margin-bottom: 4px !important
}

.margin-bottom-5 {
    margin-bottom: 5px !important
}

.margin-bottom-6 {
    margin-bottom: 6px !important
}

.margin-bottom-7 {
    margin-bottom: 7px !important
}

.margin-bottom-8 {
    margin-bottom: 8px !important
}

.margin-bottom-9 {
    margin-bottom: 9px !important
}

.margin-bottom-10 {
    margin-bottom: 10px !important
}

.margin-bottom-11 {
    margin-bottom: 11px !important
}

.margin-bottom-12 {
    margin-bottom: 12px !important
}

.margin-bottom-13 {
    margin-bottom: 13px !important
}

.margin-bottom-14 {
    margin-bottom: 14px !important
}

.margin-bottom-15 {
    margin-bottom: 15px !important
}

.margin-bottom-16 {
    margin-bottom: 16px !important
}

.margin-bottom-17 {
    margin-bottom: 17px !important
}

.margin-bottom-18 {
    margin-bottom: 18px !important
}

.margin-bottom-19 {
    margin-bottom: 19px !important
}

.margin-bottom-20 {
    margin-bottom: 20px !important
}

.margin-bottom-21 {
    margin-bottom: 21px !important
}

.margin-bottom-22 {
    margin-bottom: 22px !important
}

.margin-bottom-23 {
    margin-bottom: 23px !important
}

.margin-bottom-24 {
    margin-bottom: 24px !important
}

.margin-bottom-25 {
    margin-bottom: 25px !important
}

.margin-bottom-26 {
    margin-bottom: 26px !important
}

.margin-bottom-27 {
    margin-bottom: 27px !important
}

.margin-bottom-28 {
    margin-bottom: 28px !important
}

.margin-bottom-29 {
    margin-bottom: 29px !important
}

.margin-bottom-30 {
    margin-bottom: 30px !important
}

.margin-bottom-31 {
    margin-bottom: 31px !important
}

.margin-bottom-32 {
    margin-bottom: 32px !important
}

.margin-bottom-33 {
    margin-bottom: 33px !important
}

.margin-bottom-34 {
    margin-bottom: 34px !important
}

.margin-bottom-35 {
    margin-bottom: 35px !important
}

.margin-bottom-36 {
    margin-bottom: 36px !important
}

.margin-bottom-37 {
    margin-bottom: 37px !important
}

.margin-bottom-38 {
    margin-bottom: 38px !important
}

.margin-bottom-39 {
    margin-bottom: 39px !important
}

.margin-bottom-40 {
    margin-bottom: 40px !important
}

.margin-bottom-41 {
    margin-bottom: 41px !important
}

.margin-bottom-42 {
    margin-bottom: 42px !important
}

.margin-bottom-43 {
    margin-bottom: 43px !important
}

.margin-bottom-44 {
    margin-bottom: 44px !important
}

.margin-bottom-45 {
    margin-bottom: 45px !important
}

.margin-bottom-46 {
    margin-bottom: 46px !important
}

.margin-bottom-47 {
    margin-bottom: 47px !important
}

.margin-bottom-48 {
    margin-bottom: 48px !important
}

.margin-bottom-49 {
    margin-bottom: 49px !important
}

.margin-bottom-50 {
    margin-bottom: 50px !important
}

.margin-bottom-51 {
    margin-bottom: 51px !important
}

.margin-bottom-52 {
    margin-bottom: 52px !important
}

.margin-bottom-53 {
    margin-bottom: 53px !important
}

.margin-bottom-54 {
    margin-bottom: 54px !important
}

.margin-bottom-55 {
    margin-bottom: 55px !important
}

.margin-bottom-56 {
    margin-bottom: 56px !important
}

.margin-bottom-57 {
    margin-bottom: 57px !important
}

.margin-bottom-58 {
    margin-bottom: 58px !important
}

.margin-bottom-59 {
    margin-bottom: 59px !important
}

.margin-bottom-60 {
    margin-bottom: 60px !important
}

.margin-bottom-61 {
    margin-bottom: 61px !important
}

.margin-bottom-62 {
    margin-bottom: 62px !important
}

.margin-bottom-63 {
    margin-bottom: 63px !important
}

.margin-bottom-64 {
    margin-bottom: 64px !important
}

.margin-bottom-65 {
    margin-bottom: 65px !important
}

.margin-bottom-66 {
    margin-bottom: 66px !important
}

.margin-bottom-67 {
    margin-bottom: 67px !important
}

.margin-bottom-68 {
    margin-bottom: 68px !important
}

.margin-bottom-69 {
    margin-bottom: 69px !important
}

.margin-bottom-70 {
    margin-bottom: 70px !important
}

.margin-bottom-71 {
    margin-bottom: 71px !important
}

.margin-bottom-72 {
    margin-bottom: 72px !important
}

.margin-bottom-73 {
    margin-bottom: 73px !important
}

.margin-bottom-74 {
    margin-bottom: 74px !important
}

.margin-bottom-75 {
    margin-bottom: 75px !important
}

.margin-bottom-76 {
    margin-bottom: 76px !important
}

.margin-bottom-77 {
    margin-bottom: 77px !important
}

.margin-bottom-78 {
    margin-bottom: 78px !important
}

.margin-bottom-79 {
    margin-bottom: 79px !important
}

.margin-bottom-80 {
    margin-bottom: 80px !important
}

.margin-bottom-81 {
    margin-bottom: 81px !important
}

.margin-bottom-82 {
    margin-bottom: 82px !important
}

.margin-bottom-83 {
    margin-bottom: 83px !important
}

.margin-bottom-84 {
    margin-bottom: 84px !important
}

.margin-bottom-85 {
    margin-bottom: 85px !important
}

.margin-bottom-86 {
    margin-bottom: 86px !important
}

.margin-bottom-87 {
    margin-bottom: 87px !important
}

.margin-bottom-88 {
    margin-bottom: 88px !important
}

.margin-bottom-89 {
    margin-bottom: 89px !important
}

.margin-bottom-90 {
    margin-bottom: 90px !important
}

.margin-bottom-91 {
    margin-bottom: 91px !important
}

.margin-bottom-92 {
    margin-bottom: 92px !important
}

.margin-bottom-93 {
    margin-bottom: 93px !important
}

.margin-bottom-94 {
    margin-bottom: 94px !important
}

.margin-bottom-95 {
    margin-bottom: 95px !important
}

.margin-bottom-96 {
    margin-bottom: 96px !important
}

.margin-bottom-97 {
    margin-bottom: 97px !important
}

.margin-bottom-98 {
    margin-bottom: 98px !important
}

.margin-bottom-99 {
    margin-bottom: 99px !important
}

.margin-bottom-100 {
    margin-bottom: 100px !important
}

.margin-left-0 {
    margin-left: 0 !important
}

.margin-left-1 {
    margin-left: 1px !important
}

.margin-left-2 {
    margin-left: 2px !important
}

.margin-left-3 {
    margin-left: 3px !important
}

.margin-left-4 {
    margin-left: 4px !important
}

.margin-left-5 {
    margin-left: 5px !important
}

.margin-left-6 {
    margin-left: 6px !important
}

.margin-left-7 {
    margin-left: 7px !important
}

.margin-left-8 {
    margin-left: 8px !important
}

.margin-left-9 {
    margin-left: 9px !important
}

.margin-left-10 {
    margin-left: 10px !important
}

.margin-left-15 {
    margin-left: 15px !important
}

.margin-left-20 {
    margin-left: 20px !important
}

.margin-left-25 {
    margin-left: 25px !important
}

.margin-left-30 {
    margin-left: 30px !important
}

.margin-left-35 {
    margin-left: 35px !important
}

.margin-left-40 {
    margin-left: 40px !important
}

.margin-left-45 {
    margin-left: 45px !important
}

.margin-left-50 {
    margin-left: 50px !important
}

.margin-left-55 {
    margin-left: 55px !important
}

.margin-left-60 {
    margin-left: 60px !important
}

.margin-left-65 {
    margin-left: 65px !important
}

.margin-left-70 {
    margin-left: 70px !important
}

.margin-left-75 {
    margin-left: 75px !important
}

.margin-left-80 {
    margin-left: 80px !important
}

.margin-left-85 {
    margin-left: 85px !important
}

.margin-left-90 {
    margin-left: 90px !important
}

.margin-left-95 {
    margin-left: 95px !important
}

.margin-left-100 {
    margin-left: 100px !important
}

.margin-right-0 {
    margin-right: 0 !important
}

.margin-right-1 {
    margin-right: 1px !important
}

.margin-right-2 {
    margin-right: 2px !important
}

.margin-right-3 {
    margin-right: 3px !important
}

.margin-right-4 {
    margin-right: 4px !important
}

.margin-right-5 {
    margin-right: 5px !important
}

.margin-right-6 {
    margin-right: 6px !important
}

.margin-right-7 {
    margin-right: 7px !important
}

.margin-right-8 {
    margin-right: 8px !important
}

.margin-right-9 {
    margin-right: 9px !important
}

.margin-right-10 {
    margin-right: 10px !important
}

.margin-right-15 {
    margin-right: 15px !important
}

.margin-right-20 {
    margin-right: 20px !important
}

.margin-right-25 {
    margin-right: 25px !important
}

.margin-right-30 {
    margin-right: 30px !important
}

.margin-right-35 {
    margin-right: 35px !important
}

.margin-right-40 {
    margin-right: 40px !important
}

.margin-right-45 {
    margin-right: 45px !important
}

.margin-right-50 {
    margin-right: 50px !important
}

.margin-right-55 {
    margin-right: 55px !important
}

.margin-right-60 {
    margin-right: 60px !important
}

.margin-right-65 {
    margin-right: 65px !important
}

.margin-right-70 {
    margin-right: 70px !important
}

.margin-right-75 {
    margin-right: 75px !important
}

.margin-right-80 {
    margin-right: 80px !important
}

.margin-right-85 {
    margin-right: 85px !important
}

.margin-right-90 {
    margin-right: 90px !important
}

.margin-right-95 {
    margin-right: 95px !important
}

.margin-right-100 {
    margin-right: 100px !important
}

.padding-top-0 {
    padding-top: 0 !important
}

.padding-top-1 {
    padding-top: 1px !important
}

.padding-top-2 {
    padding-top: 2px !important
}

.padding-top-3 {
    padding-top: 3px !important
}

.padding-top-4 {
    padding-top: 4px !important
}

.padding-top-5 {
    padding-top: 5px !important
}

.padding-top-6 {
    padding-top: 6px !important
}

.padding-top-7 {
    padding-top: 7px !important
}

.padding-top-8 {
    padding-top: 8px !important
}

.padding-top-9 {
    padding-top: 9px !important
}

.padding-top-10 {
    padding-top: 10px !important
}

.padding-top-11 {
    padding-top: 11px !important
}

.padding-top-12 {
    padding-top: 12px !important
}

.padding-top-13 {
    padding-top: 13px !important
}

.padding-top-14 {
    padding-top: 14px !important
}

.padding-top-15 {
    padding-top: 15px !important
}

.padding-top-16 {
    padding-top: 16px !important
}

.padding-top-17 {
    padding-top: 17px !important
}

.padding-top-18 {
    padding-top: 18px !important
}

.padding-top-19 {
    padding-top: 19px !important
}

.padding-top-20 {
    padding-top: 20px !important
}

.padding-top-21 {
    padding-top: 21px !important
}

.padding-top-22 {
    padding-top: 22px !important
}

.padding-top-23 {
    padding-top: 23px !important
}

.padding-top-24 {
    padding-top: 24px !important
}

.padding-top-25 {
    padding-top: 25px !important
}

.padding-top-26 {
    padding-top: 26px !important
}

.padding-top-27 {
    padding-top: 27px !important
}

.padding-top-28 {
    padding-top: 28px !important
}

.padding-top-29 {
    padding-top: 29px !important
}

.padding-top-30 {
    padding-top: 30px !important
}

.padding-top-31 {
    padding-top: 31px !important
}

.padding-top-32 {
    padding-top: 32px !important
}

.padding-top-33 {
    padding-top: 33px !important
}

.padding-top-34 {
    padding-top: 34px !important
}

.padding-top-35 {
    padding-top: 35px !important
}

.padding-top-36 {
    padding-top: 36px !important
}

.padding-top-37 {
    padding-top: 37px !important
}

.padding-top-38 {
    padding-top: 38px !important
}

.padding-top-39 {
    padding-top: 39px !important
}

.padding-top-40 {
    padding-top: 40px !important
}

.padding-top-41 {
    padding-top: 41px !important
}

.padding-top-42 {
    padding-top: 42px !important
}

.padding-top-43 {
    padding-top: 43px !important
}

.padding-top-44 {
    padding-top: 44px !important
}

.padding-top-45 {
    padding-top: 45px !important
}

.padding-top-46 {
    padding-top: 46px !important
}

.padding-top-47 {
    padding-top: 47px !important
}

.padding-top-48 {
    padding-top: 48px !important
}

.padding-top-49 {
    padding-top: 49px !important
}

.padding-top-50 {
    padding-top: 50px !important
}

.padding-top-51 {
    padding-top: 51px !important
}

.padding-top-52 {
    padding-top: 52px !important
}

.padding-top-53 {
    padding-top: 53px !important
}

.padding-top-54 {
    padding-top: 54px !important
}

.padding-top-55 {
    padding-top: 55px !important
}

.padding-top-56 {
    padding-top: 56px !important
}

.padding-top-57 {
    padding-top: 57px !important
}

.padding-top-58 {
    padding-top: 58px !important
}

.padding-top-59 {
    padding-top: 59px !important
}

.padding-top-60 {
    padding-top: 60px !important
}

.padding-top-61 {
    padding-top: 61px !important
}

.padding-top-62 {
    padding-top: 62px !important
}

.padding-top-63 {
    padding-top: 63px !important
}

.padding-top-64 {
    padding-top: 64px !important
}

.padding-top-65 {
    padding-top: 65px !important
}

.padding-top-66 {
    padding-top: 66px !important
}

.padding-top-67 {
    padding-top: 67px !important
}

.padding-top-68 {
    padding-top: 68px !important
}

.padding-top-69 {
    padding-top: 69px !important
}

.padding-top-70 {
    padding-top: 70px !important
}

.padding-top-71 {
    padding-top: 71px !important
}

.padding-top-72 {
    padding-top: 72px !important
}

.padding-top-73 {
    padding-top: 73px !important
}

.padding-top-74 {
    padding-top: 74px !important
}

.padding-top-75 {
    padding-top: 75px !important
}

.padding-top-76 {
    padding-top: 76px !important
}

.padding-top-77 {
    padding-top: 77px !important
}

.padding-top-78 {
    padding-top: 78px !important
}

.padding-top-79 {
    padding-top: 79px !important
}

.padding-top-80 {
    padding-top: 80px !important
}

.padding-top-81 {
    padding-top: 81px !important
}

.padding-top-82 {
    padding-top: 82px !important
}

.padding-top-83 {
    padding-top: 83px !important
}

.padding-top-84 {
    padding-top: 84px !important
}

.padding-top-85 {
    padding-top: 85px !important
}

.padding-top-86 {
    padding-top: 86px !important
}

.padding-top-87 {
    padding-top: 87px !important
}

.padding-top-88 {
    padding-top: 88px !important
}

.padding-top-89 {
    padding-top: 89px !important
}

.padding-top-90 {
    padding-top: 90px !important
}

.padding-top-91 {
    padding-top: 91px !important
}

.padding-top-92 {
    padding-top: 92px !important
}

.padding-top-93 {
    padding-top: 93px !important
}

.padding-top-94 {
    padding-top: 94px !important
}

.padding-top-95 {
    padding-top: 95px !important
}

.padding-top-96 {
    padding-top: 96px !important
}

.padding-top-97 {
    padding-top: 97px !important
}

.padding-top-98 {
    padding-top: 98px !important
}

.padding-top-99 {
    padding-top: 99px !important
}

.padding-top-100 {
    padding-top: 100px !important
}

.padding-bottom-0 {
    padding-bottom: 0 !important
}

.padding-bottom-1 {
    padding-bottom: 1px !important
}

.padding-bottom-2 {
    padding-bottom: 2px !important
}

.padding-bottom-3 {
    padding-bottom: 3px !important
}

.padding-bottom-4 {
    padding-bottom: 4px !important
}

.padding-bottom-5 {
    padding-bottom: 5px !important
}

.padding-bottom-6 {
    padding-bottom: 6px !important
}

.padding-bottom-7 {
    padding-bottom: 7px !important
}

.padding-bottom-8 {
    padding-bottom: 8px !important
}

.padding-bottom-9 {
    padding-bottom: 9px !important
}

.padding-bottom-10 {
    padding-bottom: 10px !important
}

.padding-bottom-11 {
    padding-bottom: 11px !important
}

.padding-bottom-12 {
    padding-bottom: 12px !important
}

.padding-bottom-13 {
    padding-bottom: 13px !important
}

.padding-bottom-14 {
    padding-bottom: 14px !important
}

.padding-bottom-15 {
    padding-bottom: 15px !important
}

.padding-bottom-16 {
    padding-bottom: 16px !important
}

.padding-bottom-17 {
    padding-bottom: 17px !important
}

.padding-bottom-18 {
    padding-bottom: 18px !important
}

.padding-bottom-19 {
    padding-bottom: 19px !important
}

.padding-bottom-20 {
    padding-bottom: 20px !important
}

.padding-bottom-21 {
    padding-bottom: 21px !important
}

.padding-bottom-22 {
    padding-bottom: 22px !important
}

.padding-bottom-23 {
    padding-bottom: 23px !important
}

.padding-bottom-24 {
    padding-bottom: 24px !important
}

.padding-bottom-25 {
    padding-bottom: 25px !important
}

.padding-bottom-26 {
    padding-bottom: 26px !important
}

.padding-bottom-27 {
    padding-bottom: 27px !important
}

.padding-bottom-28 {
    padding-bottom: 28px !important
}

.padding-bottom-29 {
    padding-bottom: 29px !important
}

.padding-bottom-30 {
    padding-bottom: 30px !important
}

.padding-bottom-31 {
    padding-bottom: 31px !important
}

.padding-bottom-32 {
    padding-bottom: 32px !important
}

.padding-bottom-33 {
    padding-bottom: 33px !important
}

.padding-bottom-34 {
    padding-bottom: 34px !important
}

.padding-bottom-35 {
    padding-bottom: 35px !important
}

.padding-bottom-36 {
    padding-bottom: 36px !important
}

.padding-bottom-37 {
    padding-bottom: 37px !important
}

.padding-bottom-38 {
    padding-bottom: 38px !important
}

.padding-bottom-39 {
    padding-bottom: 39px !important
}

.padding-bottom-40 {
    padding-bottom: 40px !important
}

.padding-bottom-41 {
    padding-bottom: 41px !important
}

.padding-bottom-42 {
    padding-bottom: 42px !important
}

.padding-bottom-43 {
    padding-bottom: 43px !important
}

.padding-bottom-44 {
    padding-bottom: 44px !important
}

.padding-bottom-45 {
    padding-bottom: 45px !important
}

.padding-bottom-46 {
    padding-bottom: 46px !important
}

.padding-bottom-47 {
    padding-bottom: 47px !important
}

.padding-bottom-48 {
    padding-bottom: 48px !important
}

.padding-bottom-49 {
    padding-bottom: 49px !important
}

.padding-bottom-50 {
    padding-bottom: 50px !important
}

.padding-bottom-51 {
    padding-bottom: 51px !important
}

.padding-bottom-52 {
    padding-bottom: 52px !important
}

.padding-bottom-53 {
    padding-bottom: 53px !important
}

.padding-bottom-54 {
    padding-bottom: 54px !important
}

.padding-bottom-55 {
    padding-bottom: 55px !important
}

.padding-bottom-56 {
    padding-bottom: 56px !important
}

.padding-bottom-57 {
    padding-bottom: 57px !important
}

.padding-bottom-58 {
    padding-bottom: 58px !important
}

.padding-bottom-59 {
    padding-bottom: 59px !important
}

.padding-bottom-60 {
    padding-bottom: 60px !important
}

.padding-bottom-61 {
    padding-bottom: 61px !important
}

.padding-bottom-62 {
    padding-bottom: 62px !important
}

.padding-bottom-63 {
    padding-bottom: 63px !important
}

.padding-bottom-64 {
    padding-bottom: 64px !important
}

.padding-bottom-65 {
    padding-bottom: 65px !important
}

.padding-bottom-66 {
    padding-bottom: 66px !important
}

.padding-bottom-67 {
    padding-bottom: 67px !important
}

.padding-bottom-68 {
    padding-bottom: 68px !important
}

.padding-bottom-69 {
    padding-bottom: 69px !important
}

.padding-bottom-70 {
    padding-bottom: 70px !important
}

.padding-bottom-71 {
    padding-bottom: 71px !important
}

.padding-bottom-72 {
    padding-bottom: 72px !important
}

.padding-bottom-73 {
    padding-bottom: 73px !important
}

.padding-bottom-74 {
    padding-bottom: 74px !important
}

.padding-bottom-75 {
    padding-bottom: 75px !important
}

.padding-bottom-76 {
    padding-bottom: 76px !important
}

.padding-bottom-77 {
    padding-bottom: 77px !important
}

.padding-bottom-78 {
    padding-bottom: 78px !important
}

.padding-bottom-79 {
    padding-bottom: 79px !important
}

.padding-bottom-80 {
    padding-bottom: 80px !important
}

.padding-bottom-81 {
    padding-bottom: 81px !important
}

.padding-bottom-82 {
    padding-bottom: 82px !important
}

.padding-bottom-83 {
    padding-bottom: 83px !important
}

.padding-bottom-84 {
    padding-bottom: 84px !important
}

.padding-bottom-85 {
    padding-bottom: 85px !important
}

.padding-bottom-86 {
    padding-bottom: 86px !important
}

.padding-bottom-87 {
    padding-bottom: 87px !important
}

.padding-bottom-88 {
    padding-bottom: 88px !important
}

.padding-bottom-89 {
    padding-bottom: 89px !important
}

.padding-bottom-90 {
    padding-bottom: 90px !important
}

.padding-bottom-91 {
    padding-bottom: 91px !important
}

.padding-bottom-92 {
    padding-bottom: 92px !important
}

.padding-bottom-93 {
    padding-bottom: 93px !important
}

.padding-bottom-94 {
    padding-bottom: 94px !important
}

.padding-bottom-95 {
    padding-bottom: 95px !important
}

.padding-bottom-96 {
    padding-bottom: 96px !important
}

.padding-bottom-97 {
    padding-bottom: 97px !important
}

.padding-bottom-98 {
    padding-bottom: 98px !important
}

.padding-bottom-99 {
    padding-bottom: 99px !important
}

.padding-bottom-100 {
    padding-bottom: 100px !important
}

.padding-right-0 {
    padding-right: 0 !important
}

.padding-right-5 {
    padding-right: 5px !important
}

.padding-right-10 {
    padding-right: 10px !important
}

.padding-right-15 {
    padding-right: 15px !important
}

.padding-right-20 {
    padding-right: 20px !important
}

.padding-right-25 {
    padding-right: 25px !important
}

.padding-right-30 {
    padding-right: 30px !important
}

.padding-right-35 {
    padding-right: 35px !important
}

.padding-right-40 {
    padding-right: 40px !important
}

.padding-right-45 {
    padding-right: 45px !important
}

.padding-right-50 {
    padding-right: 50px !important
}

.padding-right-55 {
    padding-right: 55px !important
}

.padding-right-55 {
    padding-right: 55px !important
}

.padding-right-55 {
    padding-right: 55px !important
}

.padding-right-55 {
    padding-right: 55px !important
}

.padding-right-60 {
    padding-right: 60px !important
}

.padding-right-65 {
    padding-right: 65px !important
}

.padding-right-70 {
    padding-right: 70px !important
}

.padding-right-75 {
    padding-right: 75px !important
}

.padding-right-80 {
    padding-right: 80px !important
}

.padding-right-85 {
    padding-right: 85px !important
}

.padding-right-90 {
    padding-right: 90px !important
}

.padding-right-95 {
    padding-right: 95px !important
}

.padding-right-100 {
    padding-right: 100px !important
}

.padding-left-0 {
    padding-left: 0 !important
}

.padding-left-5 {
    padding-left: 5px !important
}

.padding-left-10 {
    padding-left: 10px !important
}

.padding-left-15 {
    padding-left: 15px !important
}

.padding-left-20 {
    padding-left: 20px !important
}

.padding-left-25 {
    padding-left: 25px !important
}

.padding-left-30 {
    padding-left: 30px !important
}

.padding-left-35 {
    padding-left: 35px !important
}

.padding-left-40 {
    padding-left: 40px !important
}

.padding-left-45 {
    padding-left: 45px !important
}

.padding-left-50 {
    padding-left: 50px !important
}

.padding-left-55 {
    padding-left: 55px !important
}

.padding-left-55 {
    padding-left: 55px !important
}

.padding-left-55 {
    padding-left: 55px !important
}

.padding-left-55 {
    padding-left: 55px !important
}

.padding-left-60 {
    padding-left: 60px !important
}

.padding-left-65 {
    padding-left: 65px !important
}

.padding-left-70 {
    padding-left: 70px !important
}

.padding-left-75 {
    padding-left: 75px !important
}

.padding-left-80 {
    padding-left: 80px !important
}

.padding-left-85 {
    padding-left: 85px !important
}

.padding-left-90 {
    padding-left: 90px !important
}

.padding-left-95 {
    padding-left: 95px !important
}

.padding-left-100 {
    padding-left: 100px !important
}


/*******************************************
	        Color 
********************************************/
.header-notifications-trigger span,
 a.header-notifications-button,
.dashboard-nav ul li span.nav-tag,
 .dashboard-box .button.dark:not(.ico):hover,
 .messages-inbox ul li:before,
 .message-by h5 i,
 .message-bubble.me .message-text,
.checkbox input:checked + label span.checkbox-icon,
.uploadButton .uploadButton-button:hover,
a.button,
a.apply-now-button,
.pagination ul li a.current-page,
button.button,
.image-upload__label,
input:checked + .switch-button,
.radio input[type="radio"]:checked + label .radio-label{
     background-color:#1689D6;
}

.dashboard-nav ul li.active-submenu, .dashboard-nav ul li.active, .dashboard-nav ul li:hover {
     background-color: rgba(42,65,232,0.04);
}
 .dashboard-nav ul li.active-submenu a:after, .dashboard-nav ul li.active a:after, .dashboard-nav ul li:hover a:after {
     background: rgba(42,65,232,0.13);
}
 .dashboard-box-list .button {
     box-shadow: 0 3px 8px rgba(42,65,232,0.15);
}
 .dashboard-box .button.dark:not(.ico):hover {
     box-shadow: 0 3px 8px rgba(42,65,232,0.15);
}

.dialog-with-tabs .button {
     box-shadow: 0 4px 12px rgba(42,65,232,0.15);
}

.payment-tab-trigger > input:checked ~ label::before, 
.dashboard-nav ul li.active-submenu, 
.dashboard-nav ul li.active, 
.dashboard-nav ul li:hover,
.checkbox input:checked + label span.checkbox-icon,
.radio input[type="radio"]:checked + label .radio-label {
    border-color: #1689D6;
}

.uploadButton .uploadButton-button,
 .pricing-plan .button {
     color:#1689D6;
     border:1px solid #1689D6;
}

.dashboard-nav ul:before, 
.dashboard-nav ul li.active-submenu a i, 
.dashboard-nav ul li.active a i, 
.dashboard-nav ul li:hover a i,
.dashboard-nav ul li.active-submenu a, 
.dashboard-nav ul li:hover a, 
.dashboard-nav ul li.active a, 
.dashboard-nav ul li.active-submenu a:after, 
.dashboard-nav ul li.active a:after, 
.dashboard-nav ul li:hover a:after,
.dashboard-box .headline h3 i,
.boxed-list-headline h3 i,
.popup-tabs-nav li.active a,
ul.user-menu-small-nav li a:hover, 
ul.user-menu-small-nav li a:hover i,
 #navigation ul li:hover a:after, 
#navigation ul li a.current, 
#navigation ul li a.current:after, 
#navigation ul li:hover a,
.edit-icon i,
.table-action a:hover {
    color: #1689D6;
}