/*!
 * Cravious
 * ------
 * author: http://kl-webmedia.com/
 * coder: empanda | roll4@outlook.com;
 * date: 2014 II-V
 * version: 1.0
 */

/*------------------------------------------------------------------
[Table of contents]

CTRL + F To search for e.g. !fonts

1. Fonts !fonts
2. General !general
3. List !list
4. Buttons !buttons
5. Colors !colors
6. Navbar !navbar
7. Header !header
8. Features !features
9. Dropdown !dropdown
10. Sections !section
11. Tabs !tabs
12. Columns !columns
13. Price Tables !price
14. Comments !comments
15. Timeline !timeline
16. Blog !blog
17. Accordion !accordion
18. Footer !footer

-------------------------------------------------------------------*/

/* Fonts !fonts */

@font-face {
    font-family: 'Helvetica New';
    src: url('fonts/Helvetica CE Regular.ttf');
}

@font-face {
    font-family: 'Helvetica Bold';
    src: url('fonts/Helvetica CE Bold.ttf');
}

@font-face {
    font-family: 'Varela Round';
    src: url('fonts/VarelaRound-Regular.otf');
}

/* General !general */

html, body {
	border-top:1px solid #37c6ea;
	margin:0;
	border:0;
	font-family: 'Helvetica New';
	overflow-x:hidden;
}

body {
  font-size: 14px;
  padding-top:135px;
  line-height: 1.42857143;
  color: #333;
  background-color: #fff;
}

body.static {
	padding-top:121px;
}

.navbar a {
	font-family: 'Helvetica New';
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Varela Round', sans-serif;
	margin:20px 0;
	font-weight: 500;
}

h1.alt, h2.alt, h3.alt, h4.alt, h5.alt, h6.alt {
	font-family: 'Helvetica New', sans-serif;
	font-weight: 600;
	margin:20px 0;
	color:#8997a7;
	text-transform: uppercase;
}

a {
	color:#8997a7;
	font-family:'Varela Round';
	transition:all 0.3s ease;
}
a:hover {
	text-decoration: none;
}
p {
	font-family:'Varela Round';
	color:#8997a7 !important;
	line-height: 25px;
	margin:10px 0;
}

.muted {
	color:#7E8C9B !important;
}

hr {
	border:0;
	width:50px;
	height:6px;
	border-radius:30px;
	transition:all 0.3s ease;
}
.text-left > hr { margin-left:0 !important;}
.text-right > hr { margin-right:0 !important;}

i.fa.small-icon {
	font-size:16px;
}

/* Lists !lists */

ul {
	font-family:'Varela Round';
}



ul.list {
	font-family:'Varela Round';
	color:#8997a7;
	padding:0;
}

ul.list li {
	list-style-type:none;
	margin:20px 0;
	transition:all 0.3s ease;
}

ul.list li:hover {
	color:#22c0e8;
}

ul.list li:before {
	content: ' ';
	display: inline-block;
	width:15px;
	height: 15px;
	margin-right:15px;
	position: relative;
	top:3px;
	border-radius: 50%;
	border:2px solid #22c0e8;
}

ul.dropdown {
	list-style: none;
	padding:0;
	background: white;
	border-radius:5px;
	overflow: hidden;
	position: absolute;
	z-index:1500;
	min-width:150px;
	display: none;
}

ul.dropdown li {
	border-bottom:1px solid #aaa;
}

ul.dropdown li a {
	padding:10px;
	display: block;
	width:100%;
}

ul.social {
	list-style-type:none;
	margin:20px 0;
	padding:0;
}

ul.social > li {
	text-align:left;
	margin:15px 0;
}

/* Buttons !buttons */

.btn {
	margin: 0 10px;
	padding:10px 30px;
	border-radius:30px;
	color:white;
	font-family:'Varela Round';
	transition: all 0.3s ease;
}
.btn-small {
	font-size:12px;
	padding:10px 15px;
}
.btn i {
	font-size:12px;
	margin-left:5px;
}
.btn.read-more {
	position: relative;
	color:#3b3b3b;
	text-transform: lowercase;
	font-family: 'Varela Round';
	overflow: hidden;
	margin:20px 0;
}
.btn.read-more:hover {
	background:#22c0e8;
}
.btn.submit {
	margin:20px 0;
}

.btn:hover { color:white; }

.btn.blue:hover { background:#b72d2d; }
.btn.red:hover { background:#22c0e8; }
.btn.dark-red:hover { background:#22c0e8; }

/* Colors !colors */

.dark-red {
	background: #b72d2d;
}
.red {
	background: #fb4848;
}
.light-gray {
	background: #ececec;
}
.green {
	background:#65be3e;
}
.blue {
	background:#22c0e8;
}
.gray {
	background:#8997a7;
}
.yellow {
	background:#faba20;
}
.blue-color {
	color:#22c0e8 !important;
}
.gray-color {
	color:#8997a7;
}
.dark-gray-color {
	color:#3b3b3b;
}
.white-color {
	color:#fff;
}
.red-color {
	color:#fb4848;
}

/* Customized Navbar Styles !navbar */

.navbar .navbar-top {
	display: block;
	width:100%;
	padding:10px 15px;
}

.navbar .social a {
	margin:0 3px;
	width:30px;
	height: 30px;
	line-height: 30px;
	font-size:15px;
	display: inline-block;
	text-align: center;
	position: relative;
}
.navbar .social a:before {
	content:' ';
	z-index:-1;
	border-radius:50%;
	transition:all 0.15s ease;
	position:absolute;
	width:0; height:0;
	top:50%;
	left:50%;
	background:black;
}
.navbar .social a:hover {
	color:white;
}
.navbar .social a:hover:before { 
	width:100%;
 	height:100%;
 	top:0; left:0;
}
.navbar .social a.facebook:before {background:#3b5998;}
.navbar .social a.twitter:before {background:#55acee;}
.navbar .social a.dribbble:before {background:#ea4c89;}
.navbar .social a.vine:before {background:#00b488;}
.navbar .social a.google-plus:before {background:#dd4b39;}


.navbar input {
	padding:10px 15px;
	margin:0;
}

/* Header */

header {
	width:100%;
	background-size:cover;
}

header .job-form {
	background: rgba(255,66,66,.85);
	color:white;
	position: absolute;
	z-index:100;
	padding:60px 40px;
}
header .job-form .btn {
	position: relative;
	margin:20px 0;
}
header .owl-header .item {
	width:100%;
	width:50%\9;
	position: relative;
	z-index:10;
	height:100%;
	content:' ';
}
form h1, form h2, form h3, form h4, form h5, form h6 {
	margin-bottom:50px;
}

/* Features !features */

.feature {
	overflow: hidden;
	padding:20px 60px;
	transition: all 0.3s ease;
}

.feature:hover {
	background:#e8e8ea;
}

.feature:hover:before {
	width:80px;
	height:80px;
	bottom:-40px;
	right:-40px;
}

.feature:before {
	content:' ';
	background:#22c0e8;
	position: absolute;
	width:70px;
	height:70px;
	z-index:2;
	transform: rotate(45deg);
         -webkit-transform: rotate(45deg);
	bottom:-35px;
	right:-35px;
	transition: all 0.3s ease;
         -webkit-transition: all 0.3s ease;
}

.small-margin {
	margin:10px 0 !important;
}

/* Dropdowns !dropdown */

a.dropdown-input {
	display: block;
    width: 90%; 
    padding: 10px 20px;
    font-size: 14px;
    color: #999;
    font-family:"Helvetica New";
    background-color: #dcdfe3;
    border: 0;
    border-radius: 30px;
    margin:20px 0;
}
a.dropdown-input:after {
	content:"\f078";
	font-family:"FontAwesome";
	float:right;
}
a.dropdown-input.white {
    background-color: #fff;
}
a.dropdown-input i { font-size:12px; float:right; margin-top:4px;}
.form-control {
    display: block;
    width: 100%;
    padding: 15px 20px;
    font-size: 14px;
    color: #001C49;
    background-color: #dcdfe3;
    border: 0;
    margin:20px 0;
    border-radius: 30px;
}
.form-control.normal {
	background:white;
	border-radius:5px;
	border:1px solid #aaa;
}

.contact-form input, .contact-form textarea {
	padding-left:30px;
}

.contact-form input[name=name] {background:url('../img/inputs/user.png'); background-repeat:no-repeat; background-position:9px 11px;}
.contact-form input[name=email] {background:url('../img/inputs/email.png'); background-repeat:no-repeat; background-position:10px 14px;}
.contact-form input[name=subject] {background:url('../img/inputs/subject.png'); background-repeat:no-repeat; background-position:9px 11px;}
.contact-form textarea[name=message] {background:url('../img/inputs/message.png'); background-repeat:no-repeat; background-position:9px 20px;}

.form-control.white {
    background-color: #fff;
}
.form-control-white:focus {
    outline: 0;
}
.form-control:focus {
    outline: 0;
}

.owl-macbook {
	width:75% !important;
	position: absolute !important;
	top:7%;
	left:12.5%;
}

.owl-macbook .item {
	width:100%;
}

#map {
	margin-top:55px;
	height:250px;
	width:100%;
}

input[type=range] {
    -webkit-appearance: none;
    display:inline-block;
    border: 1px solid white;
    width: 300px;
}
input[type=range]::-webkit-slider-runnable-track {
    width: 300px;
    height: 5px;
    background: #dcdfe3;
    border: none;
    border-radius: 3px;
}
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #a8b4c4;
    margin-top: -4px;
}
input[type=range]:focus {
    outline: none;
}
input[type=range]:focus::-webkit-slider-runnable-track {
    background: #ccc;
}

/* Sections !sections */

section {
	padding:40px 0;
	margin:40px 0;
}

section.facts {
	background: #dcdfe3;
	margin:0;
	padding:20px;
	font-family:'Varela Round';
}
section.facts .fact {
	color:#8598b0;
	font-size:16px;
	line-height: 40px;
	height:40px;
}
/*section.section-alt {
	background: url('../img/section-alt.jpg');
	background-size:cover;
}
section.section-alt1 {
	padding:100px 0 !important;
	background: url('../img/section-alt1.jpg');
	background-size:cover;
}
section.section-alt2 {
	padding:100px 0 !important;
	background: url('../img/bg_alt.png');
	background-size:cover;
}*/
.row.title {
	margin:0 0 40px 0;
}
.row.title h3 {
	font-weight: 600;
}
.row.title .alt { color:#8997a7; }

/* Tabs !tabs */

.tabs-container .tab-nav {
	margin:30px 0;
}

.tabs-container .tab-nav > a {
	display: inline-block;
	padding:15px;
	margin-right: 20px;
}

.tabs-container .tab-nav > a.active {
	padding:15px;
	border-top:3px solid #22c0e8;
	color:#2f2f2f;
	margin-right: 20px;
}

.tabs-container .tab-holder .tab {
	width:100%;
}

table {
	font-family:'Varela Round';
}

table td {
	line-height:50px !important;
}

td img {
	margin-right:20px;
}

.tag {
	background: white;
	border:1px solid #b9bfc0;
	display:inline-block;
	padding:2px 10px;
	border-radius:5px;
	margin:10px 0;
	line-height: 1;
	transition:all 0.3s ease;
}

.tag:hover {
	border-color:#65be3e;
	background: #65be3e;
	color:white;
}

.employers .worker-header:nth-child(even) {
	background:white !important;
}

.worker-img {
	width:45px;
	height:45px;
	border-radius:50%;
}

.worker-mid-pic {
	width:80%;
	border-radius:50%;
}

.employer-pic {
	width:100%;
	margin-bottom:20px;
}

@media(max-width:768px) {
	.employer-pic {
		width:60%;
	}
}

.fullscreen-pic  {
	width:100%;
}

.nav li > a > .pill {
	margin-left:5px;
	width:30px !important;
}

.social-link.facebook:hover {color:#507cbe;}
.social-link.twitter:hover {color:#63cdf1;}
.social-link.google-plus:hover {color:#4d4f54;}
.social-link.link:hover {color:#65be3e;}

.pill {
	display:inline-block;
	padding:4px 4px;
	height:18px;
	line-height:12px;
	text-align: center;
	border-radius:30px;
	color:white;
}

.pill.medium {
	padding:4px 10px;
	height:22px;
	font-size:12px;
	line-height: 16px;
}

.btn-apply {
	margin-top:-5px;
}

.testimonial-box {

}

.testimonial-box {
	position: relative;
	background: #eeeeee;
	border: 2px solid #dbe2e9;
	text-align: center;
	padding:15px;
	width:80%;
	border-radius:5px;
	margin:0 auto;
}
.testimonial-box:after, .testimonial-box:before {
	top: 100%;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.testimonial-box:after {
	border-color: rgba(238, 238, 238, 0);
	border-top-color: #eeeeee;
	border-width: 10px;
	margin-left: -10px;
}
.testimonial-box:before {
	border-color: rgba(219, 226, 233, 0);
	border-top-color: #dbe2e9;
	border-width: 10px;
	margin-left: -10px;
}

img.testimonial-client {
	width:80px;
	border:2px solid #8997a7;
	margin:25px 0;
}

img.client {
	margin:20px;
}

a.sup {
	color:white;
	display:inline-block;
	width:25px;
	text-align:center;
	border-radius:50%;
	height:25px;
	line-height:25px;
	position:absolute;
	top:0;
}

.sidebar-people a.person {
	display:inline-block;
	height:100%;
	width:100%;
}

.sidebar-people a.sup {
	right:10px;
}

.sidebar-people img {
	width:100%;
}

/* Columns !columns */

.left-column {
    width: 80px;
    float: left;
    clear:none;
}

.right-column {
    /* the next props are meant to keep this block independent from the other floated one */
    width: auto;
    overflow: hidden;
    clear:none;
}

.checks label{background-image:url(http://csscheckbox.com/checkboxes/lite-cyan-check.png);}

.checks label[for="fader"] {
	background:none;
}

.distance {
	color:##001C49;
}

input[type=checkbox].css-checkbox {
	  position: absolute; 
    overflow: hidden; 
    clip: rect(0 0 0 0); 
    height:1px; 
    width:1px; 
    margin:-1px; 
    padding:0;
    border:0;
}

input[type=checkbox].css-checkbox + label {
	padding-left:20px;
	height:15px; 
	display:inline-block;
	line-height:15px;
	background-repeat:no-repeat;
	background-position: 0 0;
	font-size:14px;
	font-weight:500;
	vertical-align:middle;
	cursor:pointer;
	margin-right:30px;
}

input[type=checkbox].css-checkbox:checked + label {
	background-position: 0 -15px;
}

.price-table {
	position:relative;
	overflow:hidden;
	width:100%;
}

/* Price Tables !price */

.price-table:hover hr { background: #fb4848; }
.price-table:hover:before { background: #fb4848; }
.price-table:hover .btn { background: #fb4848; }

.price-table:before {
	content:' ';
	background:#22c0e8;
	position: absolute;
	width:70px;
	height:70px;
	z-index:-1;
	transform: rotate(45deg);
         -webkit-transform: rotate(45deg);
	top:-35px;
	left:-35px;
	transition: all 0.3s ease;
         -webkit-transition: all 0.3s ease;
}

.price-table ul { list-style-type:none; margin-top:40px; padding:0;}
.price-table li { margin:15px 0; }

.price-table .price .value { font-size:52px; font-weight:700; }
.price-table .price .month { font-size:24px; }

label {
	font-size:14px;
	font-weight:500;
	margin:0 10px;
}

.author {
	margin:50px 0;
	position:relative;
	overflow:hidden;
}
.author:before {
	content:' ';
	background:#22c0e8;
	position: absolute;
	width:70px;
	height:70px;
	z-index:2;
	transform: rotate(45deg);
	bottom:-35px;
	right:-35px;
	transition: all 0.3s ease;
}
.author:after {
	content:' ';
	background:#22c0e8;
	position: absolute;
	width:50px;
	height:50px;
	z-index:-1;
	transform: rotate(45deg);
	bottom:-25px;
	right:-25px;
}

.author img {
	border-radius:50%;
	width:80px;
	float:left;
}

.author .content {
	margin-left:100px;
}

.description {
}
.description:after {
	content:' ';
	display:block;
	width:100%;
	margin:40px 0 20px 0;
	border-bottom:1px solid #ccc;
}

/* Comments !comments */

.comments {
	margin:50px 0;
}

.comments .comment img {
	border-radius:50%;
	width:80px;
	float:left;
}

.comments .comment.nested {
	margin-left:100px;
}

.comments .comment {
	margin:50px 0;
}

.comments .comment .content {
	margin-left:100px;
}

/* Timeline */

ul.timeline {
	list-style-type:none;
	position:relative;
}

ul.timeline:before {
	content: ' ';
	background:#d4d9df;
	display:inline-block;
	position:absolute;
	left:29px;
	width:2px;
	height:100%;
	z-index:400;
}

ul.timeline > li {
	margin:20px 0;
	padding-left:20px;
}

ul.timeline > li:before {
	content: ' ';
	background:white;
	display:inline-block;
	position:absolute;
	border-radius:50%;
	border:3px solid #22c0e8;
	left:20px;
	width:20px;
	height:20px;
	z-index:400;
}

/* Blog Posts !blog */

.blog-post .blog-header {
	margin-top:40px;
	margin-bottom:30px;
	width:100%;
}

.blog-post .info {
	border-bottom:1px solid #d9dde2;
	padding-bottom:30px;
	margin-bottom:30px;
}

.blog-post .info a {
	margin-right:30px;
}

.social-widget a {
	width:35px;
	height:35px;
	line-height:35px;
	margin:15px 15px 0 0;
	text-align:center;
	border-radius:5px;
	color:white;
	display:inline-block;
}
.social-widget a:hover {
	opacity:0.8;
}
.social-widget .facebook { background:#507cbe;}
.social-widget .twitter { background:#63cdf1;}
.social-widget .dribbble { background:#d97aa6;}
.social-widget .instagram { background:#90cadd;}
.social-widget .pinterest { background:#f16261;}
.social-widget .google-plus { background:#4d4f54;}
.social-widget .deviantart { background:#95a696;}
.social-widget .youtube { background:#f16261;}
.social-widget .vine { background:#1aace3;}
.social-widget .behance { background:#1aace3;}
.social-widget .blogger { background:#fcc95d;}
.social-widget .tumblr { background:#4d7ea3;}

/* Accordion !accordion */

.accordions .accordion {
}

.accordions > .accordion a.heading {
	display:inline-block;
	width:100%;
	margin-bottom:10px;
	margin-left:20px;
}

.accordions > .accordion a.heading:before {
	content: '+';
	font-family: 'Varela Round';
	width:40px;
	height:40px;
	border-radius:50%;
	margin-right:20px;
	font-size:20px;
	text-align:center;
	line-height:40px;
	margin-top:8px;
	display:inline-block;
	float:left;
	color:white;
	background:#9faab6;
	transition:all 0.3s ease;
}

.accordions > .accordion.active a.heading:before {
	content:'-';
	background:#22c0e8;
}

.accordions > .accordion .content {
	margin-left:80px;
}

.spec .content {
	margin-top:-15px;
	margin-left:80px;
}

.spec .spec-icon {
	float:left;
	font-size:21px;
	background:#22c0e8;
	color:white;
	display:inline-block;
	height:60px;
	width:60px;
	text-align:center;
	line-height:60px;
	border-radius:50%;
	transition:all 0.3s ease;
}

.spec .spec-icon:hover {
	background:#fb4848;
}

.counter {
	color:#2c4057;
	font-weight: 700;
	font-family: 'Montserrat', 'Varela Round';
	font-size:48px;
}

 /* Footer !footer */

footer {
	padding:60px 0;
	padding-bottom:0;
	background:#373e46;
}

footer .heading {
	color:white;
}

footer a {
	display: block;
	margin:10px 0;
}

footer a:hover {
	color:white;
}

footer .bottom {
	background:#565f69;
}

footer .bottom .column-bottom {
	padding:10px 0;
}

footer p {
	color:white;
}

footer img.logo-white {
	height:23px;
	margin-bottom:20px;
}

footer .twitter-feed:before {
	content:"\f099";
	font-family: "FontAwesome";
	color:#2ddbf5;
	font-size:18px;
	display: inline-block;
	position: relative;
	left:-30px;
	top:30px;
}

footer .twitter-feed {
	position: relative;
	padding-right: 30px;
	width:auto;
	top:-20px;
	left:30px;
	color:white;
}

footer input.form-control {
	background:#586068;
}

/** 15 december 2016**/
@media (min-width:767px){
 .navbar-collapse .navbar-right li:hover .dropdown-menu {display: block;}   
    
}

.nav-tabs {border-bottom: none !important;}
.nav-tabs > li > a{border-top: 3px solid #fff !important;}
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {border: none !important;border-top: 3px solid #22c0e8 !important;
                                                                                             color: #2f2f2f;margin-right: 0px; border-radius: 0; }
.navbar-right .dropdown .dropdown-menu {margin-top: -12px;}

.accordions .panel-default > .panel-heading {background-color: #fff;border-color: #fff;}
.accordions .panel-default {border-color: #fff;}
.panel {border:none;box-shadow:none;-webkit-box-shadow: none;}
.accordions .panel-default > .panel-heading .panel-title a {color: #8997a7;
font-family: 'Varela Round';
transition: all 0.3s ease;
font-size: 14px;
line-height: 1.42857143;}
.accordions .panel-group .panel-heading + .panel-collapse > .panel-body {border-top: none ;}
.accordions .panel-default > .panel-heading .panel-title a.heading.collapsed:before {content: '+';
font-family: 'Varela Round';
width: 40px;
height: 40px;
border-radius: 50%;
margin-right: 20px;
font-size: 20px;
text-align: center;
line-height: 40px;
margin-top: 8px;
display: inline-block;
color: white;
background: #9faab6;
transition: all 0.3s ease;}

.accordions .panel-default > .panel-heading .panel-title a.heading:before {content: '-'; background-color: #22c0e8;font-family: 'Varela Round';
width: 40px;
height: 40px;
border-radius: 50%;
margin-right: 20px;
font-size: 20px;
text-align: center;
line-height: 40px;
margin-top: 8px;
display: inline-block;
color: white;
transition: all 0.3s ease;}

.nav-tabs > li > a:hover {
    border-color: #fff !important;
    background-color: #fff !important;
}

.checks #fader {padding-top: 12px;}
.owl-header .owl-controls .owl-buttons {left: auto !important; text-align: right;}

/*--------form start from here----------------*/
#apll-form{width:100%; padding:20px 0; margin:0;}
.form-sec ul {list-style:none; padding:0;}
.form-sec ul li{float:left; width:48%;}
.form-sec ul li:nth-child(2n+2){float:right !important}
.form-container{max-width:930px; width:100%; margin:0 auto; }
.form-box-wrap{float:left; width:100%; padding:5%; border: 1px solid #e9ecef; box-shadow: 1px 1px 6px #e9ecef; -webkit-box-shadow: 1px 1px 6px #e9ecef; -moz-box-shadow: 1px 1px 6px #e9ecef;}
.form-container .form-head{width:100%; float:left;}
.form-container .form-head h2{font-size:25px; color:#; font-family:'Varela Round', sans-serif; text-align:center; margin-bottom:30px}
.form-container h3{font-size:18px; color:#000; font-family:'Varela Round', sans-serif; text-align:left; margin:25px 0 10px 0;}
.input-text-wrap {

  margin-bottom:20px;
  width:100%;
  padding-top:14px;
  position:relative;
  float:left;
}
.input-text-wrap input:focus {border-bottom:2px solid #22c0e8}
.input-text-wrap input:focus +label,.input-text-wrap input.has_value +label{top:0;}
.form-sec .input-text-label {
	margin-left:0;
  display:inline-block;
  font-size:13px;
  line-height:18px;
  pointer-events:none;
  position:absolute;
  top:18px;
  transition:top 0.3s cubic-bezier(0.02, 0.01, 0.47, 1), font-size 0.3s;
      font-family: 'Varela Round', sans-serif;
	  left:0;
  
}

.form-sec label{text-align:center;
  text-transform:capitalize;
  margin:0;
  }
  
.form-sec input {
  background-color: transparent;
}
.input-text-wrap.is-required label::after {
  position: absolute;
  top: 6px;
  right: -9px;
  width: 4px;
  height: 4px;
  background: #b71c1c;
  border-radius: 4px;
  content: "";
}

.input-text-wrap.is-focused .input-text-label, .input-text-wrap.has-value .input-text-label {
  top: 0;
  font-size: 12px;
  line-height: 15px;
}

.input-text-wrap.is-focused label::after, .input-text-wrap.has-value label::after {
  top: 4px;
}

.input-text-wrap.is-disabled .input-text-label {
  color: rgba(158, 158, 158, 0.4);
}
.input-text-wrap.is-error [type="text"], .input-text-wrap.is-error [type="password"], .input-text-wrap.is-error [type="number"], .input-text-wrap.is-error [type="email"], .input-text-wrap.is-error [type="tel"]{
	 border-bottom-color: #b71c1c;
    box-shadow: #b71c1c 0 1px 0;}
.input-text-wrap [type="text"], .input-text-wrap [type="password"], .input-text-wrap [type="number"], .input-text-wrap [type="email"], .input-text-wrap [type="tel"]{
    font-family: 'Varela Round', sans-serif;
    font-style: normal;
    font-weight: 300;
    display: block;
    width: 100%;
    padding: 0;
    font-size: 13px;
    line-height: 24px;
    color: #294661;
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #d4dadf;
    box-shadow: transparent 0 1px 0;
    transition: 0.3s border-color, 0.3s box-shadow;	
}
.input-text-wrap input:focus{outline:none;}
.form-container h3 span{display:inline-block; margin-right:8px;}
.select-row select{width:100%; float:left; border-bottom:1px solid #ddd; border-right:0; border-left:0; border-top:0;}
.full-input-wrap{width:100% !important; float:left;}
.full-input-wrap label{float:left;}
.full-input-wrap .short-box{float:left; min-width:171px;} 
.input-info.danger{display:none;}
.full-sec,.full-box{width:100% !important; position:relative;}	
.middle-box,.last-box{float:left; margin:0 20px}
.full-input-wrap .short-box select{border-bottom:1px solid #ddd; border-left:0; border-top:0; border-right:0; width:100%; text-align:center;}
.state-box{width:100%; float:left;}
.state-box select{border-bottom:1px solid #ddd; border-left:0; border-top:0; border-right:0; width:100%;}
.edu-sec{width:100%; float:left;}
.edu-sec table,.edu-table{width:100%; float:left;}
.edu-table{margin-top:17px;}
.edu-sec table{border:1px solid #ddd;}
.edu-sec table tr th,.edu-sec table tr td{font-size:13px; text-align:center;  font-family: 'Varela Round', sans-serif; color:#000; padding:0px;}
.edu-sec table select{width:100%; float:left; border-bottom:1px solid #ddd; border-right:0; border-left:0; border-top:0; text-align:center; font-family: 'Varela Round', sans-serif; text-align-last:center}
.edu-sec table select option{text-align:left;}
.edu-sec table select:focus{outline:none;}
.edu-sec table label{width:100%; left:0; text-align:center; margin:0;}
.edu-sec table tr th:last-child,.edu-sec table tr td:last-child{width:16%;}
.edu-sec table tr th:nth-child(6),.edu-sec table tr td:nth-child(6){width:15%;}
.work-exp{width:100%; float:left; margin-bottom:15px;}
.bootstrap-select.btn-group .btn .filter-option,.bootstrap-select.btn-group .btn .caret{color:#000;}
.multiselect li{width:100% !important}
.multiselect .bs-searchbox .form-control{background:#fff !important;}
.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus{backgrond:#fff !important; color:#000 !important;}
.multiselect .dropdown-menu{left:0 !important;  top:30px !important; max-height::400px !important;}
.multiselect .selectpicker {padding:5px 6px !important; background:#fff !important; border-radius:0 !important;}
.multiselect .bootstrap-select{width:100% !important;}
.multiselect .form-control{padding: 8px 20px !important;; color:#000 !important;}
.multiselect .dropdown-menu > li > a{color:#000 !important;}
.input-text-wrap textarea{width:100%; border:1px solid #ddd;  margin-top:22px; resize:none; height:53px;}
.input-text-wrap textarea:focus +label,.input-text-wrap textarea.has_value +label{top:4px !important;}
.select-box{width:100% !important; margin-top:10px;}
.select-box .left-sec{width:48%; float:left;}
.select-box .right-sec{width:48%; float:right;}
.select-box select{width:100%; float:left;  border-bottom:1px solid #ddd; border-right:0; border-left:0; border-top:0;}
.multiselect .selectpicker{border-bottom:1px solid #ddd; border-right:0; border-left:0; border-top:0;}

.radio-box input[type="radio"]{margin:0 10px;}
.skills{float:left; width:100%;}
.skills h4{margin-bottom:6px !important;}
.skills input{margin:0;}
.skills label{font-size:15px;}
.cv-upload{float:left; position:relative}
.cv-upload input{padding:10px 15px;  font-size:17px;}

#apll-non-form{width:100%; background:#fff; margin:0; padding:0;}
.form-tab{width:100%; float:left; margin:28px 0 10px; 0; text-align:center;}
.form-tab ul{list-style:none; margin:0; padding:0;}
.form-tab ul li{ margin-left:20px; display:inline-block; position:relative; padding:10px 12px; background:#ddd; border-radius:4px; min-width:291px; cursor:pointer}
.form-tab ul li label{font-family: 'Varela Round', sans-serif; color:#000; font-size:18px; margin-right:10px;}
.form-sec ul li.multiselect{margin-bottom:0px;}
.form-tab ul li input{position: absolute; width: 100%; left: 0; right: 0; top: 0;  bottom: 0;  height: 100%; }
.form-tab ul li.active{background:#22c0e8 !important; color:#fff;}
.course-completed select{max-width:450px; width:100%; border-bottom:1px solid #ddd; border-right:0; border-left:0; border-top:0;}
.form-sec ul li select{border-bottom:1px solid #ddd; border-right:0; border-left:0; border-top:0; width:100%; height:25px}
.form-sec ul li .location{position: absolute; right: 23px; top: 0px;}
.form-sec ul li{position:relative; height:60px; }
.repeat-box{float:right; width:100%; padding:20px 0; text-align:right;}
.repeat-box a{display:inline-block; font-size:28px; line-height:32px; color:#fff; font-weight:bold; margin-right:10px;   padding: 0 20px;
    background: #37c6ea;}
.skills label{margin:0 5px}
.file-box{float:left; position:relative;}
.file-box input{position: absolute; left: 0; top: -1px; z-index: 99999; cursor:pointer; opacity:0; max-width:230px}
.file-box label{font-size: 16px; color: #fff; cursor:pointer;}
.skills textarea{height:50px; width:100%; border-bottom:1px solid #ddd; }
.form-sec ul li select + label{position:absolute; top:-2px; margin:0; left:0;}
.skills .common-box{float:left; margin-right:38px;}
.anual-box{margin-top:0px;}
.thousads-box{margin-top:0px;}
.full-sec.radio-box{margin-top:17px;}
.navbar-brand > img{width:166px;}
.radio-box label{margin-left:0;}
.form-sec .submit{float:left;}
.form-sec .submit input{color: #fff; cursor: pointer; font-size: 16px;  padding: 0px 15px; width: 118px; border:0; margin-left:10px;}
.textarea textarea{border: 1px solid #ddd;  height: 53px; margin-top: 22px; resize: none;  width: 100%;}

.edu-table table tr th:nth-child(4){width:137px}
.edu-table table tr td,.edu-table table tr th{text-align:center !important; position:relative}
.edu-table table input{text-align:center}
select{-moz-appearance: none;}
.edu-table .caret,.full-box .caret{position: absolute; right: 6px; top: 26px;}
.full-box .caret{top:9px}
.heading-div{width:100%; float:left;}
.file-box i,.btn-danger i{float:left; font-size: 20px;}
.cv-upload button,.cv-upload + button {min-width:220px}

.file-box label{min-width:229px}
@media screen and (-webkit-min-device-pixel-ratio:0) {
    .edu-table .caret,.full-box .caret{display:none;}
}
.register-radio .input-text-label{position:static !important; margin-right:10px}
.register-radio label{margin:0 10px !important}
.register-radio{padding-top:24px !important}
.danger{color:red}
.submit-row{width:100%; float:left;}
.submit-row input{background:#d9534f !important;}
.term{width:100%; float:left; margin-bottom:20px;}

*login css starts
--------------------------------------------------*/
.light { position: absolute; left: 0; top: 0; height: 100%; width: 100%; z-index: 99999; max-width:400px}
.light { background: url(img/light-bg.png); float: left; width: 100%;  position:fixed; left:0; right:0; bottom:0; top:0; z-index:99999 }
.light_box { position: absolute; top: 120px; left: 50%; margin-left:-200px; z-index:99999 }
.popup { width:100%; max-width:400px; background: #fff; float: left; display: inline-block; position: relative }
.popup_left { width:100%; float: left; text-align: center; }
.popup_left h1 { color: #303030; font-size: 24px; line-height: 30px; padding-top: 16px; font-family: 'Raleway', sans-serif; font-weight: 700; }
.popup_left p { color: #303030; font-size: 16px; line-height: 22px; padding-top: 10px; font-family: 'Raleway', sans-serif; font-weight: 300; }
.popup_left p span { color: #e82f10; }
.popup_left .fogt_pwd { color: #555555; font-size: 14px; line-height: 20px; font-family: 'Raleway', sans-serif; font-weight: 400; padding-top: 10px; display: inline-block; padding-bottom:20px }
.popup_right { width: 50%; float: right; border-left: 1px solid #b0b0b0; text-align: center; padding-bottom: 25px }
.popup_right h2 { color: #303030; font-size: 24px; line-height: 30px; font-family: 'Raleway', sans-serif; font-weight: 700; padding: 60px 0 40px; }
.popup_right span { color: #8e8e8e; font-size: 14px; line-height: 20px; font-family: 'Raleway', sans-serif; font-weight: 700; display: block; }
.popup_right p span a { color: #e82f10; }
.popup_right p { color: #707070; font-size: 12px; line-height: 18px; font-family: 'Raleway', sans-serif; font-weight: 400; display: block; }
.popup_left form input[type=text], .popup_right form input[type=email], .popup_right form input[type=password] { padding: 10px 12px; width: 80%; font-size: 14px; line-height: 20px; margin-top: 10px; border: none; border: 1px solid #b0b0b0; font-family: 'Raleway', sans-serif; font-weight: 400; border-radius: 5px; }
.check { width: 80%; display: inline-block; margin-top: 10px; }
.check input[type=checkbox] { float: left; margin: 2px 0 0; }
.check span { color: #8e8e8e; font-size: 12px; line-height: 18px; font-family: 'Raleway', sans-serif; font-weight: 400; display: block; }
.popup_right form input[type=submit] { background: #e82f10; color: #fff; font-size: 14px; line-height: 20px; margin: 30px 0 25px; font-family: 'Raleway', sans-serif; font-weight: 300; display: inline-block; border: 0px; padding: 15px 25px; border-radius: 5px; -webkit-appearance: none; }
.cross_popup { position: absolute; top: 15px; right: 15px; }

.popup_left input[type="text"], .popup_left input[type="password"] {
    border: 1px solid #b0b0b0;
    border-radius: 5px;
    font-family: "Raleway",sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin-top: 10px;
    padding: 10px 12px;
    width: 80%;
}
#LoginIndexForm input[type="submit"] {
    background: #e82f10 none repeat scroll 0 0;
    border: 0 none;
    border-radius: 5px;
    color: #fff;
    display: inline-block;
    font-family: "Raleway",sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    margin: 30px 0 25px;
    padding: 15px 25px;
    }
    
#LoginIndexForm input[type="submit"], .popup_right form input[type="submit"] {
    cursor: pointer;
    padding: 10px 25px;
}
.close-btn{
    border-radius: 100%;
    color: red;
    display: inline-block;
    font-size: 26px;
    height: 23px;
    line-height: 20px;
    position: absolute;
    right: 9px;
    top: 2px;
    }
    
 .popup_left span {
    color: #8e8e8e;
    display: block;
    font-family: "Raleway",sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
}
/*dashboard page starts
----------------------------------------*/
.header_right.dashboard {width: auto !important; float:right;  margin-top: 13px;}
.social_icon ul li{position:relative;}
.view{position:absolute;width:20px;height:20px;background:#e37740;border-radius:50%;top:-10px;left:10px;}
.view p{font-size:10px;line-height:15px;font-family: 'Raleway', sans-serif; font-weight: 300;color:#fff !important; text-align: center; margin:0 !important}
.dashboard-content{width:100%; padding-bottom:10%;padding-top:20px;}
.dash-left{width:20%;float:left;}
.edit-view{width:100%;float:left;margin-top:20px}
.profile-view,.profile-edit{font-size:14px;line-height:20px;color:#555555;font-family: 'Raleway', sans-serif; font-weight: 300;border:1px solid #69bd43;padding:10px;display:block;width:50%;float:left;}
.dash-left-top-top { float: left; text-align: center; width: 100%;}
.dash-left-top-top h4{font-size:18px;line-height:25px;color:#555555;font-family: 'Raleway', sans-serif; font-weight: 300;margin-top:20px;}
.dash-left-bottom{width:100%;float:left;margin-top:30px;border:1px solid #555555;background:#f6f6f6;}
.left-bottom-inner{width:100%;float:left;}
.left-bottom-inner h3{color:#fff;font-size:24px;line-height:30px;font-family: 'Raleway', sans-serif; font-weight: 300;text-align:center;background:#69bd43;padding:22px 0;}
.left-bottom-inner h5{color:#555555;font-size:18px;line-height:20px;font-family: 'Raleway', sans-serif; font-weight: 300;text-align:center;background:url(img/dash-border.png) no-repeat center bottom; padding: 8px 0;}

.event-dash{width:100%;float:left;padding:6px 24px;}
.side-img-dash{width:40px;float:left;text-align:center;margin-top:10px;}
.right-side-event{width:75%;float:left;}
.right-side-event small{color:#69bd43;font-size:24px;line-height:30px;font-family: 'Raleway', sans-serif; font-weight: 400;}
.right-side-event p{color:#555555;font-size:11px;line-height:18px;font-family: 'Raleway', sans-serif; font-weight: 300;}
.right-side-event span{color:#555555;font-size:12px;line-height:18px;font-family: 'Raleway', sans-serif; font-weight: 400;}
.event-dash p.dash-create{color:#555555;font-size:14px;line-height:20px;font-family: 'Raleway', sans-serif; font-weight: 300;width: 100%;float:left;border-bottom:1px solid #555555;padding:20px 0;}
.right-side-event > img {margin-right: 10px;}
.dash-right{width:75%;float:right;}
.dash-right h2{font-size:30px;line-height:35px;font-family: 'Raleway', sans-serif; font-weight: 300;color:#202020; }
.dash-right-top{width:100%;float:left;border-bottom:1px solid #a0a0a0;padding:15px 0 0px;}
.dash-right-top li { float: left;margin-right:20px;}
.dash-right-top li.active a{border-bottom:5px solid #69bd43;color:#69bd43;}
.dash-right-top li a{font-size:14px;line-height:20px;font-family: 'Raleway', sans-serif; font-weight: 300;color:#a0a0a0; padding: 16px 0;display: block;}
.dash-right-delete{width:100%;float:left;padding:30px 0 20px;border-bottom:1px solid #a0a0a0;}
.dash-right-delete ul li{ float: left;margin-right:27px;}
.dash-right-delete li.active  a{color:#69bd43;}
.dash-right-delete ul li a{font-size:14px;line-height:20px;font-family: 'Raleway', sans-serif; font-weight: 300;color:#a0a0a0; display: block;}
.dash-right-delete li:last-child{float:right;}
.dash-right-content{width:100%;float:left;margin-top:40px;}
.dash-right-content ul li{float:left;width:100%;}
.dash-right-content ul li a{font-size:14px;line-height:20px;font-family: 'Raleway', sans-serif; font-weight: 300;color:#a0a0a0; display: block;}
.right-content-1 {float: left;width: 40px;}
.right-content-2 > img {float: left;margin-right: 16px;margin-top: -5px;}
.right-content-2 {float: left;width: 25%;}
.right-content-2 > p{font-size:14px;line-height:20px;font-family: 'Raleway', sans-serif; font-weight: 300;color:#a0a0a0; }
.right-content-2.last {float: right;text-align: right;}
.left-bottom-inner.head {padding-bottom: 10px;}
.left-bottom-inner.head h3{margin-bottom:10px;}
.login.credit {
    float: left;
    margin-left: 25px;
    margin-top: 10px;
}
.login.credit p {
    color: #555555;
    font-family: "Raleway",sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
}
.header.product{width:100%; float:left; margin-top:10px}
.header.product .social_icon {
    margin-left: 25px;
    width: auto;
    float: left;
    margin-top: 10px;
}
.social_icon ul li {
    float: left;
    margin-right: 15px;
    position: relative;
}
.view {
    background: #e37740 none repeat scroll 0 0;
    border-radius: 50%;
    height: 20px;
    left: 10px;
    position: absolute;
    top: -10px;
    width: 20px;
}
.view p {
    color: #fff;
    font-family: "Raleway",sans-serif;
    font-size: 10px;
    font-weight: 300;
    line-height: 15px;
    text-align: center;
}
.login_details {
    float: right;
}

.login_details > img {
    float: left;
    height: 32px;
    margin-right: 10px;
    margin-top: 3px;
    width: 32px;
}

.login_details span {
    color: #555555;
    font-family: "Raleway",sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 38px;
}

.login_details .pdct_click {
    float: right;
    margin: 5px 0 0 5px;
}
ul{list-style:none; }


.login.credit p span {
    color: #69bd43;
}
.social_icon.dashboard ul{padding:0; margin:0;}

/*dashboard page end



/*--------Job Post------------*/
.form-sec .input-text-label{font-weight:bold;}
.row-box{width:100%; float:left;}
.half-row{width:50%; float:left;}
.button-row{width:100%; float:left; margin-top:20px;}
.button-row i{margin-right:10px;}
.textarea-row{width:100%; float:left;}
.textarea-row textarea{width:100%; float:left;}
.form-sec ul{padding:0;}
.form-sec label{font-family: 'Varela Round', sans-serif; margin:0;}
.half-row{margin-top:10px}
.multiselect ul li{height:auto !important}
section.section-alt1{background:url("../../img/section-alt1.jpg") repeat scroll 0 0 / cover; padding: 100px 0; }
section.section-alt2{background:url("../../img/bg_alt.png") repeat scroll 0 0 / cover; padding: 100px 0;}

/*--------16 March 2017------------*/
nav.navbar {padding:14px 0 !important}
.navbar .navbar-top{float:right; width:auto;}
.navbar-header{float:left;}
.navbar-brand > img {
    width: 145px;
}
#bs-example-navbar-collapse-1{float:left; margin-top:4px}

.navbar-form{display:none;}
body{padding-top:80px;}
.navbar-brand{padding:10px 15px;}
.banner .overlay {
    background-color: rgba(0, 0, 0, 0.25);
    height: 100%;
    position: absolute;
    width: 100%;
}
.desktop.banner{height:545px; overflow:hidden; position:relative;}
nav .social{float:left; margin-right:10px;}
nav .login{float:left;}
nav .login a{font-size:15px; line-height:26px}
.navbar .navbar-top{display:block !important}
.navbar-default{border-top:0 !important}

.form-box-wrap h4{font-size:16px}
.register-radio input{margin:0 6px; vertical-align:middle}
#UserCompanyRegistrationForm .multiselect{margin-bottom:0 !important}

/*--------18 April 2017------------*/
.content-area table tr td,.content-area table tr th{padding:8px 0; line-height:24px !important}
.login_details{position:relative;}
.login_details .dropdown-menu{left:0;}


/*--------21 April 2017------------*/
.popup_left label{padding-bottom:8px}
.popup_left label a{color:#e82f10}
.popup_left .fogt_pwd{padding-bottom:10px}
.nav > li > a{padding:10px 12px !important;}
.dash-right .form-container{margin:0; max-width:900px}

/*--------24 April 2017------------*/
.popup_left label{font-family:"Raleway",sans-serif; font-size:14px; color:#555555; font-weight:normal}
.navbar a{color:#8997a7 !important; font-family:"Varela Round"}
.dropdown-menu li a{color:#fff !important}
.dropdown-menu li a:hover{color:#8997a7 !important;}
.cv-upload .file-box:first-child{margin-right:9px}
.forgot-form input[type="submit"]{background: #e82f10 none repeat scroll 0 0;
    border: 0 none;
    border-radius: 5px;
    color: #fff;
    display: inline-block;
    font-family: "Raleway",sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    margin: 30px 0 25px;
    padding: 10px 25px;}
    .forgot-form{width:380px; padding-top:40px}
    
    /*--------28 April 2017------------*/
.form-first-part-btn input{background:#d9534f !important}
.submit-row{width:auto}
.slider-scroll .slider-container{width:100% !important; margin-top:39px}
.full-part{margin-top:31px}
.popup-confirm{max-width:100% !important; width:800px; padding:10px; text-align:center; border:3px solid #22c0e8; border-radius:4px}
.light_box-confirm{margin-left:-400px !important; top:240px !important; position:fixed;}
.light_box-confirm label a{display:inline-block; padding:5px 10px; color:#fff; border-radius:4px; min-width:50px}
.popup-overlay{   background:rgba(0,0,0,0.6); bottom: 0;  height: 100%; left: 0;  position: fixed; right: 0;  top: 0; width: 100%; z-index: 9999;}
#job-search-sec{margin:0; padding:0;}
#job-search-sec .title.text-left{margin:0}
.search-box-btn{position:relative; right:70px}

/*--------05 May 2017------------*/
.user-fill-popup{max-width:1000px; width:100%; position:absolute; left:0; right:0; top:10%; z-index:99999; margin:0 auto; background:#fff;}
.overaly-user-fill{ background:rgba(0,0,0,0.6); bottom: 0;  height: 100%; left: 0;  position: fixed; right: 0;  top: 0; width: 100%; z-index: 9999;}
.user-fill-popup ul li{float:left; width:48%; color:#000;}
.user-fill-popup p{color:#000 !important; margin:0;}
.user-fill-popup ul li:nth-child(2n+2){float:right;}
.user-fill-popup .form-box-wrap{padding:2% 5%;}
.user-fill-popup ul{padding-left:0;}
.user-fill-popup .input-text-wrap{margin-bottom:0; padding-top:4px;}
.user-fill-popup .edu-table table tr td, .user-fill-popup .edu-table table tr th{border-right:1px solid #ddd; border-bottom:1px solid #ddd; }
.user-fill-popup h4,.user-fill-popup h3{margin:0;}
.section-alt-bg{background:url("img/section-alt.jpg") repeat scroll 0 0 / cover }
.section-alt span.counter{border: 10px solid #22C0E8; border-radius: 100%; display: inline-block;  height: 114px; line-height: 102px;  width: 114px;}
.profle-img{width:100%; float:left; margin-top:10px; text-align:right;}
.dash-right .form-box-wrap{margin-left:-15px;}
.danger{float:right;}
.form-sec .input-text-label{margin-left:0 !important;}
input.css-checkbox[type="checkbox"] + label{margin-right:15px;}
.form-box-wrap h3{font-size:18px;}
.user-fill-popup .edu-table{margin-bottom:13px;}
.user-fill-popup .work-exp h3 +h4{margin-top:6px !important;}
.user-fill-popup ul li label{margin-left:0;}

/** 10-may-2017 css **/
.form-box-wrap.worker-profile-detail h3{font-weight:600;font-size: 16px;line-height:22px;}
.user-fill-popup span{font-weight:400;}
.form-box-wrap.worker-profile-detail ul{float:left;width:100%;margin:15px 0;}
.form-box-wrap.worker-profile-detail ul li{width:100%;margin: 0 0 2px;}
.form-box-wrap.worker-profile-detail ul li div{float:left;width:49%;}
.form-box-wrap.worker-profile-detail ul li div:last-child{margin-left:2%;}
.form-box-wrap.worker-profile-detail ul li div.input-text-label p{font-weight:600;}
.form-box-wrap.worker-profile-detail ul li div:last-child{padding-top:0;}
.user-fill-popup .edu-table table tr td, .user-fill-popup .edu-table table tr th{padding:6px;}

.work-exp{margin-top:10px;}
.user-fill-popup .skills{margin: 0 0 10px;}
.user-fill-popup .skills h3{float:left;width:auto;margin:0 10px 0 0;}
.user-fill-popup .skills ul{float:left;width:auto;margin:0;}
.user-fill-popup .skills ul li{float:left;margin:0 5px 0 0;width:auto;}

/***********11.05.17*********/
    .message{color: #202020;
    font-family: "Raleway",sans-serif;
    font-size: 20px;
    font-weight: 300;
    text-align: center;
    }
    
    
/*** 25.05.2017 ***/
header{height: 545px;}
header .job-form{height: 545px;left: 19%;margin-left:0;padding: 0 10px;display:table;}
header .job-form h3{margin:15px 0;}
header .job-form button.btn{margin-top:0;}
header .job-form .form-popup{display:table-cell;width:100%;height:100%;text-align:center;vertical-align:middle;}
.login_details .pdct_click{float:none;font-size: 15px;line-height: 20px;margin-left:0;}
.login_details .pdct_click i{font-size: 18px;line-height: 24px; vertical-align: middle;}
nav .social{margin-top: 4px;}
.navbar .social a i{color:#fff;}
.navbar .social a:before{width: 100%;height: 100%;top: 0;left: 0;}
.navbar .social a:hover:before{background:rgba(255,66,66,.85);}

.footer-social{width:100%;text-align:center;transform: translateY(28%);-webkit-transform: translateY(28%);-moz-transform: translateY(28%);}
.footer-social a{margin: 0 3px;width: 30px; height: 30px;line-height: 30px; font-size: 15px;
    display: inline-block; text-align: center; position: relative;border-radius: 50%;transition: all 0.15s ease;}

.footer-social a.facebook{ background: #3b5998;}
.footer-social a.twitter{background: #55acee;}
.footer-social a.google-plus{ background: #dd4b39;}
.footer-social a:hover{background:rgba(255,66,66,.85);}
.footer-social a i{color:#fff;}

section {padding: 10px 0; margin: 10px 0;}
section.facts{padding:0 20px;}
.row.title {margin: 0 0 10px 0;    padding: 5px 0;}
h6.alt{margin:5px 0;}
.row{padding: 10px 0;}
.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th,
.table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td{padding:16px 0;}
section.section-alt2, section.section-alt1{padding:50px 0;}
footer{padding:30px 0 0;}

form#ContactContactFormForm h4{margin-bottom:20px;}
form#ContactContactFormForm .submit{padding:0 15px;}
form#ContactContactFormForm .submit input[type="submit"]{padding: 10px 30px;border-radius: 30px; color: #fff;
    font-family: 'Varela Round';transition: all 0.3s ease;-webkit-transition: all 0.3s ease;-moz-transition: all 0.3s ease;
    background: #22c0e8;border:0;}
form#ContactContactFormForm .submit input[type="submit"]:hover{background: #b72d2d;}

table.candidate-search{margin-bottom:10px;}
table.candidate-search > thead > tr > th{text-align:center;padding-left:5px;padding-right:5px;}
table.candidate-search tbody tr td{text-align:center;padding-left:5px;padding-right:5px;}
table.candidate-search a.btn{padding:6px 8px;margin:0 3px;}
.pagination{margin:10px 0;}
.pagination > li > a, .pagination > li > span{width:20px;height:20px;line-height:20px;}

.form-control{margin:10px 0;}

.input-text-wrap label{top:0 !important;}

