/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
@font-face {
  font-family: "summernote";
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/summernote.eot");
  src: url("../fonts/summernote.eot?#iefix") format("embedded-opentype"), url("../fonts/summernote.woff") format("woff"), url("../fonts/summernote.ttf") format("truetype");
}

[class^="note-icon-"]:before,
[class*=" note-icon-"]:before {
  display: inline-block;
  font: normal normal normal 14px summernote;
  font-size: inherit;
  -webkit-font-smoothing: antialiased;
  text-decoration: inherit;
  text-rendering: auto;
  text-transform: none;
  vertical-align: middle;
  speak: none;
  -moz-osx-font-smoothing: grayscale;
}

.note-icon-align-center:before {
  content: "\f101";
}

.note-icon-align-indent:before {
  content: "\f102";
}

.note-icon-align-justify:before {
  content: "\f103";
}

.note-icon-align-left:before {
  content: "\f104";
}

.note-icon-align-outdent:before {
  content: "\f105";
}

.note-icon-align-right:before {
  content: "\f106";
}

.note-icon-align:before {
  content: "\f107";
}

.note-icon-arrows-alt:before {
  content: "\f108";
}

.note-icon-bold:before {
  content: "\f109";
}

.note-icon-caret:before {
  content: "\f10a";
}

.note-icon-chain-broken:before {
  content: "\f10b";
}

.note-icon-circle:before {
  content: "\f10c";
}

.note-icon-close:before {
  content: "\f10d";
}

.note-icon-code:before {
  content: "\f10e";
}

.note-icon-eraser:before {
  content: "\f10f";
}

.note-icon-font:before {
  content: "\f110";
}

.note-icon-frame:before {
  content: "\f111";
}

.note-icon-italic:before {
  content: "\f112";
}

.note-icon-link:before {
  content: "\f113";
}

.note-icon-magic:before {
  content: "\f114";
}

.note-icon-menu-check:before {
  content: "\f115";
}

.note-icon-minus:before {
  content: "\f116";
}

.note-icon-orderedlist:before {
  content: "\f117";
}

.note-icon-pencil:before {
  content: "\f118";
}

.note-icon-picture:before {
  content: "\f119";
}

.note-icon-question:before {
  content: "\f11a";
}

.note-icon-redo:before {
  content: "\f11b";
}

.note-icon-special-character:before {
  content: "\f11c";
}

.note-icon-square:before {
  content: "\f11d";
}

.note-icon-strikethrough:before {
  content: "\f11e";
}

.note-icon-subscript:before {
  content: "\f11f";
}

.note-icon-summernote:before {
  content: "\f120";
}

.note-icon-superscript:before {
  content: "\f121";
}

.note-icon-table:before {
  content: "\f122";
}

.note-icon-text-height:before {
  content: "\f123";
}

.note-icon-trash:before {
  content: "\f124";
}

.note-icon-underline:before {
  content: "\f125";
}

.note-icon-undo:before {
  content: "\f126";
}

.note-icon-unorderedlist:before {
  content: "\f127";
}

.note-icon-video:before {
  content: "\f128";
}

/* Theme Variables
 ------------------------------------------*/
/* Layout
 ------------------------------------------*/
.note-editor {
  position: relative;
  /* dropzone */
}

.note-editor .note-dropzone {
  position: absolute;
  display: none;
  z-index: 100;
  color: lightskyblue;
  background-color: white;
  opacity: 0.95;
  pointer-event: none;
}

.note-editor .note-dropzone .note-dropzone-message {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  font-size: 28px;
  font-weight: bold;
}

.note-editor .note-dropzone.hover {
  color: #098ddf;
}

.note-editor.dragover .note-dropzone {
  display: table;
}

.note-editor .note-editing-area {
  position: relative;
}

.note-editor .note-editing-area .note-editable {
  outline: none;
}

.note-editor .note-editing-area .note-editable sup {
  vertical-align: super;
}

.note-editor .note-editing-area .note-editable sub {
  vertical-align: sub;
}

/* Frame mode layout
------------------------------------------*/
.note-editor.note-frame {
  border: 1px solid #a9a9a9;
  /* codeview mode */
  /* fullscreen mode */
  /* statusbar */
}

.note-editor.note-frame.codeview .note-editing-area .note-editable {
  display: none;
}

.note-editor.note-frame.codeview .note-editing-area .note-codable {
  display: block;
}

.note-editor.note-frame .note-editing-area {
  overflow: hidden;
  /* editable */
  /* codeable */
}

.note-editor.note-frame .note-editing-area .note-editable {
  background-color: #fff;
  color: #000;
  padding: 10px;
  overflow: auto;
}

.note-editor.note-frame .note-editing-area .note-editable[contenteditable="false"] {
  background-color: #e5e5e5;
}

.note-editor.note-frame .note-editing-area .note-codable {
  display: none;
  width: 100%;
  padding: 10px;
  border: none;
  box-shadow: none;
  font-family: Menlo, Monaco, monospace, sans-serif;
  font-size: 14px;
  color: #ccc;
  background-color: #222;
  resize: none;
  /* override BS2 default style */
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  margin-bottom: 0;
}

.note-editor.note-frame.fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  /* bs3 modal-backdrop: 1030, bs2: 1040 */
}

.note-editor.note-frame.fullscreen .note-editable {
  background-color: white;
}

.note-editor.note-frame.fullscreen .note-resizebar {
  display: none;
}

.note-editor.note-frame .note-statusbar {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.note-editor.note-frame .note-statusbar .note-resizebar {
  padding-top: 1px;
  height: 8px;
  width: 100%;
  cursor: ns-resize;
}

.note-editor.note-frame .note-statusbar .note-resizebar .note-icon-bar {
  width: 20px;
  margin: 1px auto;
  border-top: 1px solid #a9a9a9;
}

.note-editor.note-frame .note-placeholder {
  padding: 10px;
}

/* Popover
------------------------------------------*/
.note-popover.popover {
  max-width: none;
}

.note-popover.popover .popover-content a {
  display: inline-block;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  /* for FF */
  vertical-align: middle;
  /* for FF */
}

.note-popover.popover .arrow {
  left: 20px !important;
}

/* Popover and Toolbar (Button container)
------------------------------------------*/
.note-popover .popover-content, .panel-heading.note-toolbar {
  margin: 0;
  padding: 0 0 5px 5px;
  background: transparent;
  border-color: transparent;
  /* dropdown-menu for toolbar and popover */
  /* color palette for toolbar and popover */
}

.note-popover .popover-content > .btn-group, .panel-heading.note-toolbar > .btn-group {
  margin-top: 5px;
  margin-left: 0;
  margin-right: 5px;
}

.note-popover .popover-content .btn-group .note-table, .panel-heading.note-toolbar .btn-group .note-table {
  min-width: 0;
  padding: 5px;
}

.note-popover .popover-content .btn-group .note-table .note-dimension-picker, .panel-heading.note-toolbar .btn-group .note-table .note-dimension-picker {
  font-size: 18px;
}

.note-popover .popover-content .btn-group .note-table .note-dimension-picker .note-dimension-picker-mousecatcher, .panel-heading.note-toolbar .btn-group .note-table .note-dimension-picker .note-dimension-picker-mousecatcher {
  position: absolute !important;
  z-index: 3;
  width: 10em;
  height: 10em;
  cursor: pointer;
}

.note-popover .popover-content .btn-group .note-table .note-dimension-picker .note-dimension-picker-unhighlighted, .panel-heading.note-toolbar .btn-group .note-table .note-dimension-picker .note-dimension-picker-unhighlighted {
  position: relative !important;
  z-index: 1;
  width: 5em;
  height: 5em;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASAgMAAAAroGbEAAAACVBMVEUAAIj4+Pjp6ekKlAqjAAAAAXRSTlMAQObYZgAAAAFiS0dEAIgFHUgAAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfYAR0BKhmnaJzPAAAAG0lEQVQI12NgAAOtVatWMTCohoaGUY+EmIkEAEruEzK2J7tvAAAAAElFTkSuQmCC") repeat;
}

.note-popover .popover-content .btn-group .note-table .note-dimension-picker .note-dimension-picker-highlighted, .panel-heading.note-toolbar .btn-group .note-table .note-dimension-picker .note-dimension-picker-highlighted {
  position: absolute !important;
  z-index: 2;
  width: 1em;
  height: 1em;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASAgMAAAAroGbEAAAACVBMVEUAAIjd6vvD2f9LKLW+AAAAAXRSTlMAQObYZgAAAAFiS0dEAIgFHUgAAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfYAR0BKwNDEVT0AAAAG0lEQVQI12NgAAOtVatWMTCohoaGUY+EmIkEAEruEzK2J7tvAAAAAElFTkSuQmCC") repeat;
}

.note-popover .popover-content .note-style h1, .note-popover .popover-content .note-style h2, .note-popover .popover-content .note-style h3, .note-popover .popover-content .note-style h4, .note-popover .popover-content .note-style h5, .note-popover .popover-content .note-style h6, .note-popover .popover-content .note-style blockquote, .panel-heading.note-toolbar .note-style h1, .panel-heading.note-toolbar .note-style h2, .panel-heading.note-toolbar .note-style h3, .panel-heading.note-toolbar .note-style h4, .panel-heading.note-toolbar .note-style h5, .panel-heading.note-toolbar .note-style h6, .panel-heading.note-toolbar .note-style blockquote {
  margin: 0;
}

.note-popover .popover-content .note-color .dropdown-toggle, .panel-heading.note-toolbar .note-color .dropdown-toggle {
  width: 20px;
  padding-left: 5px;
}

.note-popover .popover-content .note-color .dropdown-menu, .panel-heading.note-toolbar .note-color .dropdown-menu {
  min-width: 340px;
}

.note-popover .popover-content .note-color .dropdown-menu .btn-group, .panel-heading.note-toolbar .note-color .dropdown-menu .btn-group {
  margin: 0;
}

.note-popover .popover-content .note-color .dropdown-menu .btn-group:first-child, .panel-heading.note-toolbar .note-color .dropdown-menu .btn-group:first-child {
  margin: 0 5px;
}

.note-popover .popover-content .note-color .dropdown-menu .btn-group .note-palette-title, .panel-heading.note-toolbar .note-color .dropdown-menu .btn-group .note-palette-title {
  font-size: 12px;
  margin: 2px 7px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.note-popover .popover-content .note-color .dropdown-menu .btn-group .note-color-reset, .panel-heading.note-toolbar .note-color .dropdown-menu .btn-group .note-color-reset {
  font-size: 11px;
  margin: 3px;
  padding: 0 3px;
  cursor: pointer;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.note-popover .popover-content .note-color .dropdown-menu .btn-group .note-color-row, .panel-heading.note-toolbar .note-color .dropdown-menu .btn-group .note-color-row {
  height: 20px;
}

.note-popover .popover-content .note-color .dropdown-menu .btn-group .note-color-reset:hover, .panel-heading.note-toolbar .note-color .dropdown-menu .btn-group .note-color-reset:hover {
  background: #eee;
}

.note-popover .popover-content .note-para .dropdown-menu, .panel-heading.note-toolbar .note-para .dropdown-menu {
  min-width: 216px;
  padding: 5px;
}

.note-popover .popover-content .note-para .dropdown-menu > div:first-child, .panel-heading.note-toolbar .note-para .dropdown-menu > div:first-child {
  margin-right: 5px;
}

.note-popover .popover-content .dropdown-menu, .panel-heading.note-toolbar .dropdown-menu {
  min-width: 90px;
  /* dropdown-menu right position */
  /* http://forrst.com/posts/Bootstrap_right_positioned_dropdown-2KB */
  /* dropdown-menu for selectbox */
}

.note-popover .popover-content .dropdown-menu.right, .panel-heading.note-toolbar .dropdown-menu.right {
  right: 0;
  left: auto;
}

.note-popover .popover-content .dropdown-menu.right::before, .panel-heading.note-toolbar .dropdown-menu.right::before {
  right: 9px;
  left: auto !important;
}

.note-popover .popover-content .dropdown-menu.right::after, .panel-heading.note-toolbar .dropdown-menu.right::after {
  right: 10px;
  left: auto !important;
}

.note-popover .popover-content .dropdown-menu.note-check li a i, .panel-heading.note-toolbar .dropdown-menu.note-check li a i {
  color: deepskyblue;
  visibility: hidden;
}

.note-popover .popover-content .dropdown-menu.note-check li a.checked i, .panel-heading.note-toolbar .dropdown-menu.note-check li a.checked i {
  visibility: visible;
}

.note-popover .popover-content .note-fontsize-10, .panel-heading.note-toolbar .note-fontsize-10 {
  font-size: 10px;
}

.note-popover .popover-content .note-color-palette, .panel-heading.note-toolbar .note-color-palette {
  line-height: 1;
}

.note-popover .popover-content .note-color-palette div .note-color-btn, .panel-heading.note-toolbar .note-color-palette div .note-color-btn {
  width: 20px;
  height: 20px;
  padding: 0;
  margin: 0;
  border: 1px solid #fff;
}

.note-popover .popover-content .note-color-palette div .note-color-btn:hover, .panel-heading.note-toolbar .note-color-palette div .note-color-btn:hover {
  border: 1px solid #000;
}

/* Dialog
------------------------------------------*/
.note-dialog > div {
  display: none;
  /* BS2's hide pacth. */
}

.note-dialog .form-group {
  /* overwrite BS's form-horizontal minus margins */
  margin-left: 0;
  margin-right: 0;
}

.note-dialog .note-modal-form {
  margin: 0;
  /* overwrite BS2's form margin bottom */
}

.note-dialog .note-image-dialog .note-dropzone {
  min-height: 100px;
  font-size: 30px;
  line-height: 4;
  /* vertical-align */
  color: lightgray;
  text-align: center;
  border: 4px dashed lightgray;
  margin-bottom: 10px;
}

/* Placeholder
------------------------------------------*/
.note-placeholder {
  position: absolute;
  display: none;
  color: gray;
}

/* Handle
------------------------------------------*/
.note-handle {
  /* control selection */
}

.note-handle .note-control-selection {
  position: absolute;
  display: none;
  border: 1px solid black;
}

.note-handle .note-control-selection > div {
  position: absolute;
}

.note-handle .note-control-selection .note-control-selection-bg {
  width: 100%;
  height: 100%;
  background-color: black;
  -webkit-opacity: 0.3;
  -khtml-opacity: 0.3;
  -moz-opacity: 0.3;
  opacity: 0.3;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=30);
  filter: alpha(opacity=30);
}

.note-handle .note-control-selection .note-control-handle, .note-handle .note-control-selection .note-control-holder, .note-handle .note-control-selection .note-control-sizing {
  width: 7px;
  height: 7px;
  border: 1px solid black;
}

.note-handle .note-control-selection .note-control-sizing {
  background-color: white;
}

.note-handle .note-control-selection .note-control-nw {
  top: -5px;
  left: -5px;
  border-right: none;
  border-bottom: none;
}

.note-handle .note-control-selection .note-control-ne {
  top: -5px;
  right: -5px;
  border-bottom: none;
  border-left: none;
}

.note-handle .note-control-selection .note-control-sw {
  bottom: -5px;
  left: -5px;
  border-top: none;
  border-right: none;
}

.note-handle .note-control-selection .note-control-se {
  right: -5px;
  bottom: -5px;
  cursor: se-resize;
}

.note-handle .note-control-selection .note-control-se.note-control-holder {
  cursor: default;
  border-top: none;
  border-left: none;
}

.note-handle .note-control-selection .note-control-selection-info {
  right: 0;
  bottom: 0;
  padding: 5px;
  margin: 5px;
  color: white;
  background-color: black;
  font-size: 12px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-opacity: 0.7;
  -khtml-opacity: 0.7;
  -moz-opacity: 0.7;
  opacity: 0.7;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=70);
  filter: alpha(opacity=70);
}

.note-hint-popover {
  min-width: 100px;
  padding: 2px;
}

.note-hint-popover .popover-content {
  padding: 3px;
  max-height: 150px;
  overflow: auto;
}

.note-hint-popover .popover-content .note-hint-group .note-hint-item {
  display: block !important;
  padding: 3px;
}

.note-hint-popover .popover-content .note-hint-group .note-hint-item.active, .note-hint-popover .popover-content .note-hint-group .note-hint-item:hover {
  display: block;
  clear: both;
  font-weight: 400;
  line-height: 1.4;
  color: white;
  white-space: nowrap;
  text-decoration: none;
  background-color: #428bca;
  outline: 0;
  cursor: pointer;
}

.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}

.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 34px;
  user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-selection--single .select2-selection__clear {
  position: relative;
}

.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}

.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline-block;
  overflow: hidden;
  padding-left: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-search--inline {
  float: left;
}

.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  padding: 0;
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}

.select2-results {
  display: block;
}

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.select2-results__option {
  padding: 6px;
  user-select: none;
  -webkit-user-select: none;
}

.select2-results__option[aria-selected] {
  cursor: pointer;
}

.select2-container--open .select2-dropdown {
  left: 0;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-search--dropdown {
  display: block;
  padding: 4px;
}

.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
  display: none;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 32px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 32px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 32px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  cursor: text;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 5px;
  width: 100%;
}

.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
  color: #999;
  margin-top: 5px;
  float: left;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-top: 5px;
  margin-right: 10px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  background-color: #0CAA41;
  border: 1px solid #aaa;
  border: 1px solid transparent;
  border-radius: 4px;
  border-radius: 0;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #333;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
  float: right;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
}

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--default .select2-results__option[role=group] {
  padding: 0;
}

.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999;
}

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd;
}

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #0CAA41;
  color: white;
}

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #a9a9a9;
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: -o-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
}

.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 34px;
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-right: 10px;
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #a9a9a9;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 32px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 32px;
  background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
  background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
  background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0);
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #a9a9a9;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-linear-gradient(top, white 0%, #eeeeee 50%);
  background-image: -o-linear-gradient(top, white 0%, #eeeeee 50%);
  background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #eeeeee 50%, white 100%);
  background-image: -o-linear-gradient(top, #eeeeee 50%, white 100%);
  background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0);
}

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #a9a9a9;
  border-radius: 4px;
  cursor: text;
  outline: 0;
}

.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
  list-style: none;
  margin: 0;
  padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #a9a9a9;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  color: #888;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  float: right;
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #a9a9a9;
  outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none;
}

.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent;
}

.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
  border-top: none;
}

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--classic .select2-results__option[role=group] {
  padding: 0;
}

.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey;
}

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: white;
}

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}

/*
 * Slider for Bootstrap
 *
 * Copyright 2012 Stefan Petre
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * SCSS File by Detlef Beyer
 */
/* Variables should be defined outside of this file     */
/* doing it here just to keep things together in github */
.slider {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}

.slider.slider-horizontal {
  width: 210px;
  height: 20px;
  margin-bottom: 15px;
}

.slider.slider-horizontal .slider-track {
  height: 10px;
  width: 100%;
  margin-top: -5px;
  top: 50%;
  left: 0;
}

.slider.slider-horizontal .slider-selection, .slider.slider-horizontal .slider-track-low, .slider.slider-horizontal .slider-track-high {
  height: 100%;
  top: 0;
  bottom: 0;
}

.slider.slider-horizontal .slider-tick,
.slider.slider-horizontal .slider-handle {
  margin-left: -10px;
  margin-top: -5px;
}

.slider.slider-horizontal .slider-tick.triangle,
.slider.slider-horizontal .slider-handle.triangle {
  border-width: 0 10px 10px 10px;
  width: 0;
  height: 0;
  border-bottom-color: #0480be;
  margin-top: 0;
}

.slider.slider-horizontal .slider-tick-label-container {
  white-space: nowrap;
}

.slider.slider-horizontal .slider-tick-label-container .slider-tick-label {
  margin-top: 24px;
  display: inline-block;
  text-align: center;
}

.slider.slider-vertical {
  height: 210px;
  width: 20px;
}

.slider.slider-vertical .slider-track {
  width: 10px;
  height: 100%;
  margin-left: -5px;
  left: 50%;
  top: 0;
}

.slider.slider-vertical .slider-selection {
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
}

.slider.slider-vertical .slider-track-low, .slider.slider-vertical .slider-track-high {
  width: 100%;
  left: 0;
  right: 0;
}

.slider.slider-vertical .slider-tick,
.slider.slider-vertical .slider-handle {
  margin-left: -5px;
  margin-top: -10px;
}

.slider.slider-vertical .slider-tick.triangle,
.slider.slider-vertical .slider-handle.triangle {
  border-width: 10px 0 10px 10px;
  width: 1px;
  height: 1px;
  border-left-color: #0480be;
  margin-left: 0;
}

.slider.slider-vertical .slider-tick .slider-tick-label-container,
.slider.slider-vertical .slider-handle .slider-tick-label-container {
  white-space: nowrap;
}

.slider.slider-vertical .slider-tick .slider-tick-label-container .slider-tick-label,
.slider.slider-vertical .slider-handle .slider-tick-label-container .slider-tick-label {
  padding-left: 4px;
}

.slider.slider-disabled .slider-handle {
  background-color: #f7f7f7;
  background-image: -moz-linear-gradient(top, #dfdfdf, #bebebe);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#dfdfdf), to(#bebebe));
  background-image: -webkit-linear-gradient(top, #dfdfdf, #bebebe);
  background-image: -o-linear-gradient(top, #dfdfdf, #bebebe);
  background-image: linear-gradient(to bottom, #dfdfdf, #bebebe);
  background-repeat: repeat-x;
}

.slider.slider-disabled .slider-track {
  background: #999;
  cursor: not-allowed;
}

.slider input {
  display: none;
}

.slider .tooltip-inner {
  white-space: nowrap;
  max-width: none;
}

.slider .tooltip.top {
  margin-top: -36px;
}

.slider .hide {
  display: none;
}

.slider-track {
  position: absolute;
  cursor: pointer;
  background: #999;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.slider-selection {
  position: absolute;
  background: #0CAA41;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 4px;
}

.slider-selection.tick-slider-selection {
  background-color: #f7f7f7;
  background-image: -moz-linear-gradient(top, #89cdef, #81bfde);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#89cdef), to(#81bfde));
  background-image: -webkit-linear-gradient(top, #89cdef, #81bfde);
  background-image: -o-linear-gradient(top, #89cdef, #81bfde);
  background-image: linear-gradient(to bottom, #89cdef, #81bfde);
  background-repeat: repeat-x;
}

.slider-track-low, .slider-track-high {
  position: absolute;
  background: transparent;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 4px;
}

.slider-handle {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #0CAA41;
  border: 0px solid transparent;
}

.slider-handle.round {
  border-radius: 50%;
}

.slider-handle.triangle {
  background: transparent none;
}

.slider-handle.custom {
  background: transparent none;
}

.slider-handle.custom:before {
  line-height: 20px;
  font-size: 20px;
  content: '\2605';
  color: #726204;
}

.slider-tick {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #f7f7f7;
  background-image: -moz-linear-gradient(top, #f9f9f9, #f5f5f5);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f9f9f9), to(#f5f5f5));
  background-image: -webkit-linear-gradient(top, #f9f9f9, #f5f5f5);
  background-image: -o-linear-gradient(top, #f9f9f9, #f5f5f5);
  background-image: linear-gradient(to bottom, #f9f9f9, #f5f5f5);
  background-repeat: repeat-x;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  filter: none;
  opacity: 0.8;
  border: 0px solid transparent;
}

.slider-tick.round {
  border-radius: 50%;
}

.slider-tick.triangle {
  background: transparent none;
}

.slider-tick.custom {
  background: transparent none;
}

.slider-tick.custom::before {
  line-height: 20px;
  font-size: 20px;
  content: '\2605';
  color: #726204;
}

.slider-tick.in-selection {
  background-color: #f7f7f7;
  background-image: -moz-linear-gradient(top, #89cdef, #81bfde);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#89cdef), to(#81bfde));
  background-image: -webkit-linear-gradient(top, #89cdef, #81bfde);
  background-image: -o-linear-gradient(top, #89cdef, #81bfde);
  background-image: linear-gradient(to bottom, #89cdef, #81bfde);
  background-repeat: repeat-x;
  opacity: 1;
}

.text-green {
  color: #0CAA41;
}

.text-yellow {
  color: #fcc755;
}

body {
  color: #4c4b49;
  font-family: "Dosis", sans-serif;
}

.form-control {
  background: #fff;
  border-color: #aaa;
}

a {
  color: #0CAA41;
}

a:focus {
  outline: 0;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: #007549;
}

hr {
  margin-top: 40px;
  margin-bottom: 40px;
}

img {
  max-width: 100%;
  height: auto;
}

textarea {
  outline: 0;
}

textarea:focus {
  outline: 0;
}

.alert-custom {
  border-width: 0 0 0 5px;
}

.form-horizontal .form-group .form-group {
  margin-left: 0;
  margin-right: 0;
}

/* navbar */
.navbar-brand {
  height: auto;
  padding: 13px 15px;
}

.navbar-brand img {
  height: 42px;
  width: auto;
}

.navbar-custom {
  border: 0;
  border-radius: 0;
  margin: 0;
  border-bottom: 2px solid #0CAA41;
}

.navbar-custom .nav {
  margin-top: 10px;
}

.navbar-custom .navbar-form {
  margin-top: 18px;
}

.navbar-custom .active a,
.navbar-custom a {
  color: #545454;
}

.navbar-custom .active a:hover,
.navbar-custom a:hover {
  color: #0CAA41;
}

.navbar-custom .width-userthumb > a {
  padding-top: 0;
  padding-bottom: 0;
}

.navbar-custom .navbar-nav > li > a {
  position: relative;
}

.navbar-custom .navbar-nav > li > a .badge {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 1.5em;
  height: 1.5em;
  padding: 0;
  line-height: 1.5em;
  background: #0CAA41;
}

.navbar-toggle {
  background: #0CAA41;
  margin-top: 17px;
}

.navbar-toggle .icon-bar {
  background-color: #fff;
}

/* sub-navbar */
.sub-navbar {
  background: #f3f3f3;
  padding: 15px;
}

.sub-navbar ul {
  margin: 0;
  padding: 0;
}

.sub-navbar li {
  min-width: 140px;
}

.sub-navbar a {
  color: #545454;
}

.sub-navbar a:hover {
  color: #0CAA41;
}

.sub-navbar a:hover .fa {
  color: inherit;
}

.sub-navbar .fa {
  color: #999;
  margin-right: 7px;
}

/* common post */
.common-post .post-stats-line,
.common-post .posted-date {
  font-size: 0.9em;
  margin: 3px 0;
}

.common-post .post-stats-line span {
  display: inline-block;
  margin-right: 20px;
}

.common-post .post-stats-line em {
  display: inline-block;
  margin-right: 4px;
}

.common-post h3 {
  margin: 10px 0;
}

.post-skills-line {
	font-size: 0.9em;
	margin-bottom: 5px;
}

/* style1 */
.job-style1 {
  margin: 30px 0;
}

.job-style1 .job-thumb {
  float: left;
  border: 1px solid #c1c1c1;
  width: 140px;
  height: 140px;
  padding: 2px;
}

.job-style1 .job-thumb img {
  display: block;
}

.job-style1 .job-thumb + .job-content {
  margin-left: 155px;
}

.job-style1 .action-btns {
  float: right;
  margin-left: 30px;
}

/* action  buttons */
.action-btns a {
  border: 1px solid;
  border-radius: 50%;
  line-height: 2em;
  text-align: center;
  height: 2.1em;
  width: 2.1em;
  color: #9a9a9a;
  margin-left: 2px;
}

.action-btns a:hover {
  background: #0CAA41;
  color: #fff;
  border-color: transparent;
}

.post-current-status {
  border: 1px solid;
  padding: 5px 15px;
  color: #9a9a9a;
  border-radius: 3px;
}

.post-current-status .circle {
  display: inline-block;
  margin-right: 4px;
  width: 12px;
  height: 12px;
  margin-bottom: 2px;
  border-radius: 50%;
  background: #9a9a9a;
  line-height: 16px;
  vertical-align: middle;
}

.post-current-status.status-live .circle {
  background: #0CAA41;
}

/* tabs-custom */
.tabs-custom .tab-content {
  margin: 30px 0;
}

.nav-tabs-custom {
  padding-left: 100px;
  border-bottom-width: 2px;
}

.nav-tabs-custom > li {
  margin: 0 10px -2px;
}

.nav-tabs-custom a:focus {
  color: #0CAA41;
}

.nav-tabs-custom li.active {
  border-bottom: 2px solid #0CAA41;
}

.nav-tabs-custom2 {
  border-bottom: none;
  padding-left: 25px;
}

.nav-tabs-custom2 > li.active > a {
  background: #f3f3f3;
  color: #0CAA41;
  border-color: #cbcbcb;
}

.nav-tabs-custom2 > li {
  margin-right: 7px;
}

.nav-tabs-custom2 > li > a {
  padding: 6px 15px;
  background: #0CAA41;
  border-color: #0CAA41;
  border-bottom: none;
  color: #fff;
}

.tab-content-2 {
  background: #f3f3f3;
  padding: 15px;
  border: 1px solid #d4d4d4;
  min-height: 150px;
  margin-bottom: 20px;
}

/* chart-circle */
.chart-circle {
  position: relative;
  margin-bottom: 80px;
}

.chart-circle .chart-inner {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  padding-top: 40px;
  z-index: -1;
  font-size: 16px;
  text-align: center;
}

.chart-circle .chart-inner label {
  font-weight: normal;
  font-size: 40px;
  margin-bottom: 0;
  line-height: 1.2;
  color: #0CAA41;
}

/* button */
.btn-outline {
  border: 1px solid;
}

.btn-lg {
  min-width: 300px;
  font-size: 16px;
}

.btn-grey {
  background: #c2c2c2;
  color: #fff;
}

.btn-grey:hover {
  color: #fff;
  background: #0CAA41;
}

.btn-grey:focus {
  color: #fff;
  outline: 0;
}

.btn-darkgrey {
  background: #494846;
  color: #fff;
}

.btn-darkgrey:hover {
  color: #fff;
  background: #0CAA41;
}

.btn-darkgrey:focus {
  color: #fff;
  outline: 0;
}

.btn-green {
  background: #0CAA41;
  color: #fff;
}

.btn-green:hover {
  color: #fff;
  background: #007549;
}

.btn-green:focus {
  color: #fff;
  outline: 0;
}

.btn-theme {
  background: #0CAA41;
  color: #fff;
  font-weight: 600;
  padding: 4px 15px 4px;
}

.btn-theme:hover {
  color: #fff;
  background: #007549;
}

.btn-theme:focus {
  color: #fff;
  outline: 0;
}

.btn-offwhite {
  background: #f2f2f2;
  color: #545454;
}

.btn-offwhite:hover {
  color: #545454;
  background: #eaeaea;
}

.btn-offwhite:focus {
  color: #545454;
  outline: 0;
}

.btn-facebook {
  background: #3b5999;
  color: #fff;
}

.btn-facebook:hover {
  color: #fff;
  background: #37538e;
}

.btn-facebook:focus {
  color: #fff;
  outline: 0;
}

.btn-linkedin {
  background: #007ab9;
  color: #fff;
}

.btn-linkedin:hover {
  color: #fff;
  background: #0070aa;
}

.btn-linkedin:focus {
  color: #fff;
  outline: 0;
}

.btn-standard {
  padding: 12px 18px;
  text-transform: uppercase;
}

.btn-rounded {
  border-radius: 5px;
}

.btn-bordered {
  border-bottom: 4px solid rgba(0, 0, 0, 0.05);
}

/* search-sidebar */
.search-sidebar {
  background: #f3f3f3;
  padding: 20px;
  margin-bottom: 15px;
}

.search-sidebar label {
  font-weight: 600;
}

.sidebar-head:first-child {
  margin-top: 0;
  margin-bottom: 20px;
}

.sidebar-head {
  font-size: 20px;
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 5px 15px;
  padding-bottom: 7px;
  border-bottom: 1px solid;
}

.filter-results-list {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
}

.filter-results-list li {
  padding: 5px 0;
}

.filter-results-list li:before, .filter-results-list li:after {
  content: " ";
  display: table;
}

.filter-results-list li:after {
  clear: both;
}

.filter-results-list .close-icon {
  float: right;
  font-size: 0.8em;
  height: 18px;
  width: 18px;
  line-height: 15px;
  text-align: center;
  border-radius: 15px;
  display: inline-block;
  border: 1px solid;
  color: #545454;
}

.filter-results-list .close-icon:hover {
  color: #999;
}

.vlabel {
  cursor: pointer;
  margin: 0;
  display: block;
}

.vlabel .vcheck {
  display: block;
  margin: 0;
  width: 16px;
  height: 16px;
  border: 1px solid #b3b3b1;
}

.vlabel input:checked + .vcheck {
  border-color: #0CAA41;
}

.vlabel input:checked + .vcheck:before {
  border-color: #0CAA41;
  content: "\f00c";
  font-family: "FontAwesome";
  color: #0CAA41;
  line-height: 16px;
  text-align: center;
  font-size: 10px;
  vertical-align: top;
}

.vlabel .vradio {
  border-radius: 50%;
  display: inline-block;
  margin: 0;
  width: 16px;
  height: 16px;
  border: 1px solid #b3b3b1;
}

.vlabel input:checked + .vradio:before {
  content: "";
  display: block;
  margin: 0 auto;
  width: 6px;
  height: 6px;
  background: #0CAA41;
  border-radius: 50%;
  margin-top: 4px;
}

.vlabel-inline {
  display: inline-block;
  font-weight: normal;
}

.vlabel-inline .vcheck {
  display: inline-block;
  text-align: center;
}

.vlabel-inline input:checked + .vcheck:before {
  line-height: 14px;
}

.vlabel-inline span {
  display: inline-block;
  vertical-align: middle;
}

.vlabel-noborder input:checked + .vcheck,
.vlabel-noborder .vcheck {
  border-color: transparent;
}

.text-color {
  color: #545454;
}

hr {
  border-top-color: #545454;
}

.filter-checkbox-list label, .filter-radio-list label, .interviews-list label,
.applications-list label, .chat-widget label {
  font-weight: normal;
  cursor: pointer;
}

.filter-checkbox-list input[type="checkbox"]:checked + span, .filter-radio-list input[type="checkbox"]:checked + span, .interviews-list input[type="checkbox"]:checked + span,
.applications-list input[type="checkbox"]:checked + span, .chat-widget input[type="checkbox"]:checked + span, .filter-checkbox-list input[type="radio"]:checked + span, .filter-radio-list input[type="radio"]:checked + span, .interviews-list input[type="radio"]:checked + span,
.applications-list input[type="radio"]:checked + span, .chat-widget input[type="radio"]:checked + span {
  color: #0CAA41;
}

.filter-checkbox-list input[type="checkbox"]:checked + span:before, .filter-radio-list input[type="checkbox"]:checked + span:before, .interviews-list input[type="checkbox"]:checked + span:before,
.applications-list input[type="checkbox"]:checked + span:before, .chat-widget input[type="checkbox"]:checked + span:before, .filter-checkbox-list input[type="radio"]:checked + span:before, .filter-radio-list input[type="radio"]:checked + span:before, .interviews-list input[type="radio"]:checked + span:before,
.applications-list input[type="radio"]:checked + span:before, .chat-widget input[type="radio"]:checked + span:before {
  border-color: #0CAA41;
  content: "\f00c";
  font-family: "FontAwesome";
  color: #0CAA41;
  line-height: 14px;
  text-align: center;
  font-size: 10px;
}

.filter-checkbox-list input[type="checkbox"] + span, .filter-radio-list input[type="checkbox"] + span, .interviews-list input[type="checkbox"] + span,
.applications-list input[type="checkbox"] + span, .chat-widget input[type="checkbox"] + span, .filter-checkbox-list input[type="radio"] + span, .filter-radio-list input[type="radio"] + span, .interviews-list input[type="radio"] + span,
.applications-list input[type="radio"] + span, .chat-widget input[type="radio"] + span {
  display: block;
  padding-left: 25px;
  margin-bottom: 5px;
  position: relative;
}

.filter-checkbox-list input[type="checkbox"] + span:before, .filter-radio-list input[type="checkbox"] + span:before, .interviews-list input[type="checkbox"] + span:before,
.applications-list input[type="checkbox"] + span:before, .chat-widget input[type="checkbox"] + span:before, .filter-checkbox-list input[type="radio"] + span:before, .filter-radio-list input[type="radio"] + span:before, .interviews-list input[type="radio"] + span:before,
.applications-list input[type="radio"] + span:before, .chat-widget input[type="radio"] + span:before {
  width: 16px;
  height: 16px;
  display: block;
  position: absolute;
  left: 0;
  top: 3px;
  content: '';
  border: 1px solid;
}

.filter-radio-list input[type="radio"] + span:before {
  border-radius: 50px;
}

.collapse-section-wrap {
  border-bottom: 1px solid #666;
  position: relative;
  margin-bottom: 55px;
  padding-bottom: 20px;
}

.collapse-section-wrap .collapse-trigger {
  position: absolute;
  display: block;
  width: 60px;
  margin: 0 auto;
  text-align: center;
  background: #0CAA41;
  left: 50%;
  margin-left: -30px;
  color: #fff;
  top: 100%;
  font-size: 10px;
  line-height: 15px;
}

/* tab-header */
.tab-header {
  margin-bottom: 20px;
}

.tab-header h2 {
  margin: 0;
}

.tab-header h3 {
  margin: 4px 0;
}

.tab-header .fa {
  color: #999;
}

.sortby-secton {
  display: block;
  margin: 6px 0 4px;
}

/* applications-list */
.interviews-list,
.applications-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.interviews-list > li,
.applications-list > li {
  position: relative;
  background: #f3f3f3;
  padding: 15px;
}

.interviews-list > li:before, .interviews-list > li:after,
.applications-list > li:before,
.applications-list > li:after {
  content: " ";
  display: table;
}

.interviews-list > li:after,
.applications-list > li:after {
  clear: both;
}

.interviews-list > li:nth-child(2n),
.applications-list > li:nth-child(2n) {
  background: #e6e6e6;
}

.interviews-list .app-userthumb,
.applications-list .app-userthumb {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  float: left;
}

.interviews-list .checkbox-label,
.applications-list .checkbox-label {
  position: absolute;
  left: 15px;
  top: 40px;
}

.interviews-list .title-section,
.applications-list .title-section {
  float: left;
  margin-left: 15px;
  width: 240px;
}

.interviews-list .dropdown-1,
.applications-list .dropdown-1 {
  position: absolute;
  right: 15px;
  top: 15px;
}

.applications-list .app-stats {
  display: table;
  width: 100%;
  text-align: center;
  margin-top: 15px;
}

.applications-list .app-stats .fa {
  color: #999;
  font-size: 1.3em;
}

.applications-list .app-stats > div {
  padding: 0 15px;
  display: table-cell;
  vertical-align: middle;
}

.applications-list .app-stats .app-req, .applications-list .app-stats .location {
  border-left: 1px solid #ced2db;
}

.dropdown-1 > a {
  color: #545454;
}

.interviews-list .time-section, .interviews-list .date-section {
  width: 220px;
  float: left;
  padding: 0 7px;
}

.activity-row-date {
  background: #c2c2c2;
  padding: 7px 30px;
  color: #50504e;
}

.activity-row-date a {
  color: inherit;
}

.activity-row {
  padding: 10px;
  padding-left: 45px;
}

.activity-row:nth-child(2n+1) {
  background: #f3f3f3;
}

.activity-thumb {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  overflow: hidden;
  float: left;
  margin-right: 15px;
}

.activity-text {
  float: left;
  padding-top: 7px;
}

.activity-time {
  padding-top: 7px;
  float: right;
  width: 150px;
}

.form-inline .form-group {
  vertical-align: top;
  margin-right: 4px;
}

.form-inline .form-control {
  min-width: 200px;
}

.form-inline .radio, .form-inline .checkbox {
  padding-top: 4px;
  vertical-align: top;
  margin-right: 4px;
}

.help-block {
  font-size: 12px;
}

.form {
  margin-bottom: 20px;
}

/* ============================================================
  SWITCH 2 - ROUND FLAT
============================================================ */
.vswitch-input {
  position: absolute;
  margin-left: -9999px;
  visibility: hidden;
}

.vswitch-input + .vswitch-toggle {
  display: block;
  position: relative;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 2px;
  width: 64px;
  height: 30px;
  background-color: #999;
  border-radius: 30px;
  transition: background 0.4s;
}

.vswitch-input + .vswitch-toggle:before, .vswitch-input + .vswitch-toggle:after {
  display: block;
  position: absolute;
  content: "";
}

.vswitch-input + .vswitch-toggle:before {
  content: attr(data-off);
  top: 2px;
  left: 2px;
  bottom: 2px;
  right: 2px;
  border-radius: 30px;
  transition: background 0.2s;
  font-size: 12px;
  text-indent: 32px;
  line-height: 26px;
  color: #fff;
}

.vswitch-input + .vswitch-toggle:after {
  top: 3px;
  left: 3px;
  bottom: 3px;
  width: 24px;
  background-color: #fff;
  border-radius: 20px;
  transition: margin 0.2s, background 0.2s;
}

.vswitch-input:checked + .vswitch-toggle {
  background-color: #0CAA41;
}

.vswitch-input:checked + .vswitch-toggle:before {
  content: attr(data-on);
  text-indent: 6px;
}

.vswitch-input:checked + .vswitch-toggle:after {
  margin-left: 34px;
}

/* search-widget */
.search-widget {
  background: #f3f3f3;
  padding: 15px;
  margin: 0 0 15px;
}

.search-widget .form-control {
  height: auto;
  padding: 4px 6px;
  outline: 0;
}

.search-widget .form-control:focus {
  outline: 0;
}

.search-widget .input-group-btn:last-child {
  padding-left: 10px;
}

/* chat-widget */
.chat-widget {
  background: #999;
  margin: 0 0 15px;
  color: #fff;
}

.chat-widget {
  position: relative;
}

.chat-widget input[type="radio"]:checked + span:before,
.chat-widget input[type="checkbox"]:checked + span:before {
  border-color: #fff;
  color: #fff;
}

.chat-widget .chat-section {
  padding: 13px 13px 40px 35px;
  position: relative;
  border-right: 3px solid transparent;
  cursor: pointer;
}

.chat-widget .chat-section:hover {
  border-right-color: #0CAA41;
}

.chat-widget .chat-section:nth-child(2n) {
  background: #494846;
}

.chat-widget .chat-thumb {
  width: 30px;
  height: 30px;
  float: left;
  margin-right: 10px;
  border-radius: 50%;
  overflow: hidden;
}

.chat-widget .chat-text {
  padding-top: 5px;
}

.chat-widget .chat-time {
  position: absolute;
  right: 15px;
  bottom: 10px;
  font-size: 12px;
}

.chat-widget p {
  margin: 0;
  font-size: 11px;
}

.chat-widget p strong {
  font-size: 12px;
}

.chat-widget .checkbox-label {
  position: absolute;
  left: 10px;
  top: 22px;
}

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

.selected-chat-title {
  background: #f3f3f3;
  padding: 7px 15px;
  color: #9b9b9b;
  margin-bottom: 15px;
}

.selected-chat-title a {
  color: inherit;
}

.dvconversation-messages {
  overflow-y: auto;
  height: 300px;
  padding: 15px;
  margin-bottom: 15px;
}

.conversation-section-wrap .btnLoadMore {
  position: absolute;
  left: 50%;
  width: 120px;
  margin-left: -60px;
  background: #0CAA41;
  color: #fff;
  padding: 6px 12px;
  border-radius: 0 0 4px 4px;
  text-align: center;
  z-index: 9;
}

.conversation-section.conversation-reply .conversation-content-body {
  background: #f3f3f3;
}

.conversation-section.conversation-write .conversation-content-body {
  display: block;
  background: #f3f3f3;
}

.conversation-section.conversation-write .btn-send {
  height: 52px;
  width: 52px;
}

.conversation-section {
  margin-bottom: 15px;
}

.conversation-section.conversation-reply {
  text-align: right;
}

.conversation-section.conversation-reply .conversation-thumb {
  float: right;
}

.conversation-section.conversation-reply .conversation-content {
  margin-left: 0;
  margin-right: 55px;
}

.conversation-section.conversation-reply .conversation-content-title .conversion-time {
  float: left;
}

.conversation-section.conversation-reply .conversation-content-body {
  background: #f3f3f3;
}

.conversation-section.conversation-reply .conversation-content-body .conversation-status {
  left: auto;
  right: 15px;
}

.conversation-section.conversation-write .conversation-content-body {
  display: block;
  background: #f3f3f3;
}

.conversation-section.conversation-write .btn-send {
  height: 52px;
  width: 52px;
}

.conversation-section .conversation-thumb {
  text-align: center;
  float: left;
  width: 35px;
}

.conversation-section .conversation-thumb img {
  max-width: 35px;
  height: 35px;
  border-radius: 50%;
}

.conversation-section .conversation-content {
  margin-left: 45px;
}

.conversation-section .conversation-content-title {
  display: none;
}

.conversation-section .conversion-time {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  color: #ccc;
  font-style: italic;
}

.conversation-section .conversation-content-body {
  padding: 10px 15px;
  position: relative;
  background: #f2fcfe;
  display: inline-block;
  max-width: 100%;
  border-radius: 3px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
}

.conversation-section .conversation-content-body p {
  margin: 0;
}

.conversation-section .conversation-content-body .conversation-status {
  position: absolute;
  bottom: 7px;
  left: 15px;
  font-size: 12px;
  color: #9c9c9c;
  display: none;
}

.conversation-section.conversation-write .conversation-content-body {
  padding: 15px;
}

.conversation-section .conversation-textarea {
  resize: none;
}

.conversation-sidebar-scroll {
  height: 300px;
  overflow: auto;
}

.general-info-list li {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: normal;
  font-family: inherit;
}

.general-info-list label {
  margin: 0;
  font-weight: 500;
  display: inline-block;
  width: 250px;
  font-family: inherit;
}

.general-info-section .form-group {
  position: relative;
}

.cv-builder-section {
  padding: 30px 0;
}

.cv-builder-section h2 {
  margin: 0 0 10px;
}

.cv-builder-section h3 {
  margin: 5px 0 15px;
  font-size: 20px;
}

.cv-builder-section .nomb {
  margin-bottom: 5px;
}

.cv-builder-section .rank-text {
  color: #adadad;
}

.cv-builder-section .icon-circle {
  border-radius: 0;
  background: #999;
  color: #fff;
  width: 54px;
  height: 54px;
  display: inline-block;
  font-size: 24px;
  border-radius: 50%;
  line-height: 56px;
  vertical-align: middle;
  text-align: center;
  margin-right: 20px;
  z-index: 1;
  position: relative;
}

.cv-builder-section .label {
  font-size: 14px;
  font-weight: normal;
  max-width: 170px;
  white-space: normal;
  display: inline-block;
}

.cv-builder-section .left-years-section {
  float: left;
}

.cv-builder-section .left-years-section + .cv-right-content {
  margin-left: 270px;
}

.cv-builder-section .cv-right-content {
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
  margin-bottom: 15px;
  min-height: 103px;
}

.cv-builder-section .cv-builder-text-section {
  position: relative;
}

.cv-builder-section .cv-builder-text-section:after {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  left: 27px;
  content: '';
  background: #999;
}

.cv-builder-section .cv-builder-text-section:last-child:after {
  display: none;
}

.cv-builder-section .cv-builder-text-section:last-child .cv-right-content {
  border-bottom: none;
  padding-bottom: 0;
}

.cv-builder-section:hover .cv-controls {
  display: block;
}

.cv-builder-section .cv-controls {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 20px;
  display: none;
}

.cv-builder-section .cv-controls a {
  color: #b5b5b5;
}

.cv-builder-section .cv-controls a:hover {
  color: #0CAA41;
}

.cv-builder-section .user-thumb {
  border: 4px solid #e3e7e8;
  width: 150px;
  height: 150px;
  position: relative;
  overflow: hidden;
}

.cv-builder-section .user-thumb img {
  width: 100%;
  height: auto;
}

.cv-builder-section .user-thumb .fa-plus {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2em;
  height: 2em;
  background: #999;
  line-height: 2em;
  text-align: center;
  border-radius: 50%;
  margin-left: -1em;
  margin-top: -1em;
  cursor: pointer;
}

.cv-builder-section .user-thumb .delete-pic {
  background: #fff;
  border-radius: 50%;
  color: #000;
  font-size: 24px;
  height: 1.4em;
  line-height: 1.4em;
  position: absolute;
  right: 5px;
  text-align: center;
  top: 5px;
  width: 1.4em;
}

.user-thumb-custom {
  border: 4px solid #e3e7e8;
  width: 150px;
  height: 150px;
  position: relative;
  overflow: hidden;
}

.user-thumb-custom img {
  width: 100%;
  height: auto;
}

.user-thumb-custom .fa-plus {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2em;
  height: 2em;
  background: #999;
  line-height: 2em;
  text-align: center;
  border-radius: 50%;
  margin-left: -1em;
  margin-top: -1em;
  cursor: pointer;
}

.user-thumb-custom .delete-pic {
  background: #fff;
  border-radius: 50%;
  color: #000;
  font-size: 24px;
  height: 1.4em;
  line-height: 1.4em;
  position: absolute;
  right: 5px;
  text-align: center;
  top: 5px;
  width: 1.4em;
}

.modal-fullscreen {
  padding: 60px !important;
}

.modal-fullscreen .modal-dialog {
  width: 100%;
  margin: 0 auto;
}

.modal-fullscreen .modal-content {
  border: 0;
  background: #f6f7f9;
}

.modal-fullscreen .modal-header {
  border-bottom-color: transparent;
}

.modal-fullscreen .sub-navbar {
  background: #e9eaee;
}

.modal-fullscreen .sub-navbar .active .fa,
.modal-fullscreen .sub-navbar .active a {
  color: #0CAA41;
}

.modal-fullscreen .sub-navbar a {
  color: #a6a9ae;
}

.modal-fullscreen .sub-navbar .fa {
  color: #9197a3;
}

.modal-fullscreen .sub-navbar li {
  min-width: inherit;
}

.modal-fullscreen .close {
  opacity: 1;
  margin-top: 2px;
  margin-left: 40px;
}

.add-more-link {
  color: #c3c3c3;
  font-size: 18px;
}

.add-more-link .fa {
  border: 1px solid;
  width: 1.5em;
  height: 1.5em;
  line-height: 1.5em;
  text-align: center;
  border-radius: 50%;
  vertical-align: middle;
}

.progress-xs {
  height: 10px;
}

.skill-row {
  margin: 0 -5px;
}

.skill-column {
  padding: 0 5px;
  margin-bottom: 10px;
}

.skill-column .skill-controls {
  display: none;
}

.skill-column:hover .skill-controls {
  display: block;
}

.skill-section {
  position: relative;
  padding: 10px;
  background: #f3f3f3;
}

.skill-section p {
  margin: 0 0 5px;
}

.skill-section .progress {
  margin-bottom: 0;
}

.skill-section a {
  color: #b6b6b6;
}

.hobbies-list li:hover {
  color: #fff;
  background: #0CAA41;
}

.hobbies-list li:hover .trash-icon {
  display: block;
  color: #fff;
}

.hobbies-list li {
  float: left;
  width: 115px;
  height: 90px;
  background: #f3f3f3;
  margin: 0 15px 30px;
  padding: 13px 10px;
  text-align: center;
  border-radius: 2px;
  position: relative;
}

.hobbies-list {
  list-style: none;
  margin: 0 -15px;
  padding: 0;
}

.hobbies-list .related-icon {
  font-size: 35px;
  display: block;
  margin: 7px auto 10px;
}

.hobbies-list .trash-icon {
  font-size: 14px;
  position: absolute;
  right: 10px;
  top: 8px;
  display: none;
}

.hobbies-list em {
  font-style: normal;
  display: block;
  margin-top: 5px;
  font-size: 12px;
}

.reference-box {
  padding: 10px 15px;
  position: relative;
}

.reference-box h4 {
  color: #606062;
  padding-bottom: 7px;
  border-bottom: 1px solid #606062;
  margin: 0;
  margin-bottom: 7px;
}

.reference-box p {
  margin: 0;
}

.reference-box:hover {
  background: #f3f3f3;
}

.reference-box:hover h4 {
  color: #97c121;
}

.cv-builder-section .reference-box .cv-controls {
  bottom: 7px;
  right: 10px;
  top: auto;
  display: none;
}

.cv-builder-section .reference-box:hover .cv-controls {
  display: block;
}

.related-icons-list {
  font-size: 16px;
}

.related-icons-list li {
  margin-bottom: 10px;
}

.related-icons-list .fa {
  margin-right: 10px;
  color: #0CAA41;
}

.hobbies-list .hobby-icon {
  display: block;
  margin: 7px auto 10px;
  height: 40px;
}

.hobbies-list .hobby-icon img {
  width: auto;
  height: auto;
  max-width: 40px;
  max-height: 40px;
}

.select-company-select .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 57px;
}

.select-company-select .select2-container--default .select2-selection--single .select2-selection__rendered label {
  line-height: 1.3;
}

.output-list {
  font-size: 16px;
}

.output-list .fa {
  width: 2em;
  height: 2em;
  background: #494846;
  line-height: 2em;
  text-align: center;
  color: #0CAA41;
}

.output-list .fa:hover {
  color: #494846;
  background: #0CAA41;
}

.share-social-icons {
  font-size: 16px;
}

.share-social-icons .fa {
  width: 2em;
  height: 2em;
  background: #999;
  line-height: 2em;
  text-align: center;
  color: #fff;
  border-radius: 50%;
}

.share-social-icons .fa:hover {
  color: #fff;
  background: #0CAA41;
}

.company-jobs {
  padding: 20px;
  font-size: 16px;
  background: #f3f3f3;
  margin-bottom: 20px;
  margin-top: 0;
}
.company-ads-jobs {
 
  margin-bottom: 20px;
  
}
.company-jobs h3, .company-jobs h2 {
  margin: 0 0 7px;
  font-size: 20px;
}

.company-jobs .dl-horizontal dt {
  text-align: left;
}

.job-actions-section {
  margin: 25px 0 0;
}

.job-actions-section .btn {
  font-size: 16px;
  min-width: 180px;
  padding: 6px 15px;
  border-radius: 2px;
}

.job-actions-section p {
  margin: 10px 0;
  margin-top: 25px;
}

.job-actions-section p a {
  color: #717171;
  display: inline-block;
  margin: 0 5px;
}

.pager-navigation a {
  display: inline-block;
  margin: 0 10px;
  color: #222328;
}

.pager-navigation a span {
  vertical-align: middle;
  display: inline-block;
}

.feedback-stars-section {
  margin: 30px 0;
}

.feedback-stars-section .feedback-stars {
  margin: 0 0 10px;
  color: #999;
}

.feedback-stars-section .fa {
  margin: 0 0 0 5px;
}

.feedback-stars {
  font-size: 20px;
}

.custom-tags {
  margin: 10px 0;
}

.custom-tag {
  background: #fff;
  border: 1px solid #0CAA41;
  color: #0CAA41;
  display: inline-block;
  min-width: 66px;
  text-align: center;
  padding: 3px 5px;
  margin: 3px 0;
  margin-right: 7px;
  font-size: 14px;
  border-radius: 1px;
  font-weight: 500;
}

.custom-tags-solid {
  /* color: #9e9e9e;
	.custom-tag{
		margin: 0;
		background:#3acf95;
		color: #fff;
		border-color: transparent;
		border-radius: 4px;
		&:focus{
			color: #fff;
		}
	} */
}

.custom-tags-solid li {
  padding: 0;
  margin: 3px 0;
}

a.custom-tag:hover {
  color: #fff;
  background: #0CAA41;
  border-color: #0CAA41;
}

a.custom-tag:focus {
  color: #0CAA41;
}

.post-by-section {
  font-size: 14px;
}

.company-jobs-sm .feedback-stars-section {
  margin: 0;
}

.company-jobs-sm .job-thumb {
  width: 140px;
  height: 140px;
  border: 1px solid #d9d9d9;
  margin: 0 auto 10px;
}

.accordion-style-2 {
  padding-bottom: 10px;
}

.accordion-style-2 .accordion-title {
  font-size: 16px;
  text-transform: uppercase;
}

.accordion-style-2 .post-sm h5 {
  color: #0CAA41;
  font-weight: 500;
}

.accordion-style-3 {
  text-align: center;
}

.accordion-style-3 .accordion-title {
  font-size: 16px;
  text-transform: uppercase;
  color: #0CAA41;
}

.accordion-style-3 .post-sm .post-sm-thumb {
  float: none;
  margin: 0 auto 10px;
}

.accordion-style-3 .post-sm .post-sm-thumb + .post-sm-content {
  margin-left: 0;
}

.accordion-title {
  margin: 10px 0 15px;
}

.accordion-title a {
  color: inherit;
  display: block;
}

.accordion-title .badge {
  width: 1.7em;
  height: 1.7em;
  padding: 0;
  line-height: 1.7em;
  margin-right: 3px;
  background: #0CAA41;
}

.accordion-title [aria-expanded="false"] .fa-angle-down:before {
  content: "\f106";
}

.post-sm {
  margin-bottom: 10px;
}

.post-sm .post-sm-thumb {
  width: 46px;
  height: 46px;
  overflow: hidden;
  border-radius: 50%;
  float: left;
}

.post-sm .post-sm-thumb + .post-sm-content {
  margin-left: 55px;
}

.post-sm h5 {
  margin: 0;
  padding: 3px 0 5px;
  font-size: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.post-sm p {
  font-size: 12px;
}

.post-md {
  margin-bottom: 10px;
  position: relative;
}

.post-md .post-md-thumb {
  width: 100px;
  height: 100px;
  overflow: hidden;
  float: left;
}

.post-md .post-md-thumb + .post-md-content {
  margin-left: 115px;
}

.post-md .post-md-thumb + .post-md-content + .post-absolute-footer {
  margin-left: 115px;
}

.post-md .post-absolute-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.post-md h5 {
  margin: 0;
  padding: 3px 0 5px;
  font-size: 18px;
  white-space: nowrap;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
}

.post-md p {
  font-size: 12px;
}

.post-sm-style2 p {
  margin: 0;
}

.post-sm-style2 .post-sm-thumb {
  border-radius: 0;
  width: 51px;
  height: 51px;
  border: 1px solid #c6c6c6;
}

.post-sm-style2 .post-sm-thumb + .post-sm-content {
  margin-left: 60px;
}

.post-sm-style2 h5 {
  padding: 0;
  font-weight: 500;
}

.filter-jobs-form {
  margin: 40px 0;
}

.filter-jobs-form .input-small {
  width: 30%;
  float: left;
  padding-left: 10px;
  padding-right: 10px;
}

.filter-jobs-form .input-long {
  width: 70%;
  float: left;
}

.filter-jobs-form .btn {
  height: 46px;
  padding: 6px 12px;
  min-width: 100px;
  border-radius: 3px;
}

.offwhite-bg {
  background: #f3f3f3;
}

.job-details-wrap {
  padding: 20px 0;
  line-height: 1.8;
}

.job-details-wrap .dl-horizontal {
  color: #5f6062;
}

.job-details-wrap .dl-horizontal dt {
  text-align: left;
  color: #acacac;
  font-weight: normal;
}

.job-details-wrap .dl-horizontal dd {
  margin-bottom: 10px;
}

.custom-list li {
  margin-bottom: 10px;
}

.wizard-box .wizard-nav {
  border-bottom: 1px solid #d7d7d7;
}

.wizard-nav {
  display: table;
  width: 100%;
  padding: 15px 0;
  margin: 10px 0;
}

.wizard-nav .wizard-step {
  display: table-cell;
  text-align: center;
  position: relative;
}

.wizard-nav .wizard-step span {
  display: block;
  margin: 0 auto;
  width: 48px;
  height: 48px;
  border: 5px solid #999;
  font-size: 24px;
  font-weight: bold;
  border-radius: 50%;
  color: #999;
  text-align: center;
  line-height: 38px;
}

.wizard-nav .wizard-step span:after {
  position: absolute;
  content: '';
  display: block;
  height: 4px;
  background: #999;
  width: calc(100% - 44px);
  top: 50%;
  margin-top: -2px;
  left: 50%;
  margin-left: 22px;
  z-index: 0;
}

.wizard-nav .wizard-step.done span,
.wizard-nav .wizard-step.active span {
  border-color: #0CAA41;
  color: #0CAA41;
}

.wizard-nav .wizard-step.done span:after,
.wizard-nav .wizard-step.active span:after {
  background-color: #0CAA41;
}

.wizard-nav .wizard-step:last-child span:after {
  display: none;
}

.wizard-box {
  background: #f3f3f3;
  margin-bottom: 20px;
}

.wizard-box .wizard-body {
  min-height: 250px;
  padding: 15px;
}

.wizard-box .wizard-footer {
  padding: 15px;
}

.reply-box {
  background: #f3f3f3;
  margin-bottom: 20px;
  padding: 15px 50px 15px 15px;
  position: relative;
}

.reply-box h3, .reply-box h4 {
  margin-top: 0;
}

.reply-box .close-icon {
  position: absolute;
  right: 15px;
  top: 10px;
  color: #999;
}

.text-section-style1 {
  color: #545454;
  line-height: 1.7;
  margin: 100px 0;
}

.text-section-style1 h3 {
  font-weight: bold;
  color: #0CAA41;
}

.progress-bar-warning-2 {
  background: #feb620;
}

.progress-xs {
  height: 5px;
}

.register-form-section .progress-xs {
  margin: 2px 0;
}

.dropdown-menu {
  min-width: 210px;
}

.dropdown-menu:after, .dropdown-menu:before {
  border: 12px solid transparent;
  content: '';
  display: block;
  position: absolute;
  left: 12px;
  bottom: 100%;
  border-bottom-color: #d4d4d4;
}

.dropdown-menu:after {
  border-width: 11px;
  left: 13px;
  border-bottom-color: #fff;
}

.dropdown-menu.pull-right:after, .pull-right .dropdown-menu:after {
  left: auto;
  right: 13px;
}

.dropdown-menu.pull-right:before, .pull-right .dropdown-menu:before {
  left: auto;
  right: 12px;
}

.navbar-right .dropdown-menu:before {
  left: auto;
  right: 12px;
}

.navbar-right .dropdown-menu:after {
  left: auto;
  right: 13px;
}

.post-menu > li:nth-child(2n) {
  background: #f3f3f3;
}

.dropdown-menu > li {
  padding: 0 10px;
}

.dropdown-menu > li > a {
  padding: 8px 15px;
  position: relative;
}

.dropdown-menu > li > a .fa {
  margin-right: 7px;
}

.dropdown-menu > li > a .badge {
  position: absolute;
  right: 15px;
  top: 9px;
  background: #0CAA41;
}

.dropdown-menu-normal {
  min-height: inherit;
  min-width: 160px;
}

.dropdown-menu-normal > li {
  padding: 0;
}

.dropdown-menu-normal > li > a {
  padding: 3px 20px;
}

.navbar-nav > li > .dropdown-menu {
  margin-top: 10px;
}

.dropdown-menu .posts-unseen-text {
  display: block;
  padding: 5px 10px 10px;
}

.dropdown-menu .post-sm {
  margin: 0;
  padding: 5px 0;
}

.dropdown-menu .post-sm h5 {
  font-weight: 600;
}

.dropdown-menu .post-sm .text-grey {
  color: #a7a7a7;
  font-size: 12px;
}

.tabs-wrap {
  margin-bottom: 100px;
}

.dropdown-menu-icons {
  min-height: inherit;
  width: 445px;
  white-space: normal;
  text-align: center;
}

.dropdown-menu-icons > li {
  display: block;
  float: left;
  padding: 5px;
  margin: 0;
}

.dropdown-menu-icons > li.active {
  background: #f3f3f3;
}

.dropdown-menu-icons > li > a {
  padding: 0;
  white-space: normal;
}

.dropdown-menu-icons2 > li {
  display: block;
  text-align: left;
}

.dropdown-menu-icons2 > li > a {
  padding: 3px 20px;
}

.dropdown-menu-icons2 > li > a span {
  font-family: "Dosis", sans-serif;
  display: inline-block;
  margin-left: 5px;
  font-size: 14px;
}

.selected-icon {
  color: #0CAA41;
}

.dropdown-menu-icons-parent .fa-facebook {
  color: #3b5999;
}

.dropdown-menu-icons-parent .fa-twitter {
  color: #36d8ff;
}

.dropdown-menu-icons-parent .fa-google-plus {
  color: #ea412c;
}

.dropdown-menu-icons-parent .fa-linkedin {
  color: #007cbe;
}

.dropdown-menu-icons-parent .fa-yahoo {
  color: #6a146b;
}

.dropdown-form-section {
  padding: 15px;
  min-width: 280px;
  min-height: inherit;
}

.dropdown-form-section h5 {
  font-weight: 600;
  margin-top: 0;
}

.dropdown-form-section:before, .dropdown-form-section:after {
  display: none;
}

.dropdown-form-section a {
  color: #0CAA41 !important;
}

.bootstrap-datetimepicker-widget:before, .bootstrap-datetimepicker-widget:after,
.bootstrap-datetimepicker-widget:before,
.bootstrap-datetimepicker-widget:after {
  display: none !important;
}

.no-wrap {
  white-space: normal;
}

.social-icons a {
  font-size: 30px;
  line-height: 1.55em;
  height: 1.55em;
  width: 1.55em;
  background: #f3f3f3;
  display: inline-block;
  text-align: center;
}

.social-icons a:hover {
  background-color: #0CAA41;
}

.social-icons .fa-facebook {
  color: #3b5999;
}

/* letest changes for facebook and linkedin button */

.social-icons .button-with-icon a {
  width: auto;
  height: auto;
  font-size: 14px;
  color: #fff;
  padding: 6px 15px;
  margin: 0 0 15px;
  min-width: 215px;
}
.social-icons .button-with-icon .facebook-button {
  background: #3b5999;
}
.social-icons .button-with-icon .linkedin-button {
  background: #007cbe;
}
.social-icons .button-with-icon {
  display: block;
}
.social-icons .button-with-icon .fa {
 color: inherit;
 margin-right: 4px;
 font-size: 2em;
 vertical-align: middle;
}

/* letest changes for facebook and linkedin button end */





.social-icons .fa-twitter {
  color: #36d8ff;
}

.social-icons .fa-google-plus {
  color: #ea412c;
}

.social-icons .fa-linkedin {
  color: #007cbe;
}

.social-icons .fa-yahoo {
  color: #6a146b;
}

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

.text-center.control-label {
  text-align: center;
}

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

.company-profile-page h1, .company-profile-page h2, .company-profile-page h3, .company-profile-page h4, .company-profile-page h5, .company-profile-page h6 {
  color: #0CAA41;
  font-weight: 500;
}

.company-profile-page .nav-tabs-custom2 > li > a {
  font-weight: bold;
  font-size: 18px;
  min-width: 190px;
  text-align: center;
  padding: 13px;
}

.company-profile-page .nav-tabs-custom2 > li.active > a {
  color: #0CAA41;
}

.company-profile-page .page-header {
  border-bottom: 0;
  padding-bottom: 0;
  color: #9c9c9c;
  font-size: 18px;
}

.company-profile-page .post-sm {
  color: #9c9c9c;
  border-bottom: 2px solid #f6f6f6;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

.company-profile-page .post-sm h5 {
  font-size: 18px;
}

.company-profile-page .post-sm p {
  font-size: 14px;
}

.company-profile-page .post-sm-thumb {
  border-radius: 0;
  font-size: 30px;
  line-height: 46px;
  text-align: center;
}

.company-profile-page .filter-jobs-form h2 {
  font-weight: normal;
  color: #0CAA41;
}

.widget-timeline {
  position: relative;
  color: #0CAA41;
  margin-bottom: 90px;
}

.widget-timeline a {
  color: inherit;
}

.widget-timeline .container {
  position: relative;
}

.timeline-bg-img {
  overflow: hidden;
  height: 400px;
}

.timeline-user-img {
  width: 180px;
  height: 180px;
  background: #ccc;
  border: 2px solid #fff;
  position: absolute;
  top: 0;
  left: 15px;
  overflow: hidden;
}

.timeline-user-img img {
  width: 100%;
  height: auto;
}

.timeline-social-section {
  float: right;
  font-size: 24px;
  padding-top: 20px;
}

.timeline-nav-section,
.timeline-user-title-section {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
}

.timeline-nav-section {
  top: 100%;
  bottom: auto;
  background: none;
  padding: 25px 15px;
}

.timeline-nav-section .timeline-nav {
  padding-left: 220px;
}

.timeline-user-title-section {
  font-size: 18px;
  font-weight: normal;
  font-family: inherit;
}

.timeline-user-title-section h2 {
  font-family: inherit;
  margin: 0;
  padding-top: 7px;
}

.timeline-user-title-section .timeline-user-title {
  padding-left: 220px;
}

.company-address-section {
  color: #9c9c9c;
  text-align: left;
}

.company-address-section .company-address-icon {
  float: left;
  width: 55px;
  font-size: 24px;
  padding: 8px 0 4px;
  text-align: center;
  display: inline-block;
}

.company-address-section .company-address-icon + p {
  padding-left: 55px;
}

.company-address-section strong {
  text-transform: uppercase;
  color: #0CAA41;
}

.social-section {
  background: #3a7094;
  text-align: center;
  color: #fff;
  padding: 30px 10px 10px;
  font-size: 17px;
}

.social-section .social-icon {
  height: 60px;
  width: 60px;
  margin: 0 auto 20px;
  display: block;
  background: #fff;
  color: #000;
  font-size: 30px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
}

.social-section .address-url {
  font-weight: 500;
  font-size: 18px;
  display: block;
  margin-bottom: 15px;
}

.social-section .like-qty-text {
  font-size: 70px;
  font-weight: 600;
  display: block;
  line-height: 1;
  margin: 28px 0 29px;
}

.social-section .quote-text {
  display: block;
  margin: 15px 0;
}

.facebook-social-section {
  background: #415f9b;
}

.facebook-social-section .social-icon {
  color: #415f9b;
}

.facebook-social-section .like-qty-text {
  color: #2c456d;
}

.twitter-social-section {
  background: #22b3e8;
}

.twitter-social-section .social-icon {
  color: #22b3e8;
}

.twitter-social-section .quote-text {
  color: #1194be;
}

.instagram-users-list {
  margin: 0;
}

.instagram-users-list > li {
  padding: 0;
  float: left;
  width: 25%;
}

.text-box-style1 {
  border: 1px solid #ebebeb;
  font-size: 14px;
  padding: 10px 15px;
  color: #b0b0b0;
}

.text-box-style1 h4 {
  font-weight: normal;
  color: #0CAA41;
  font-size: 18px;
}

.post-style1 {
  position: relative;
  width: 100%;
  background: #eee;
  color: #fff;
  margin-bottom: 15px;
}

.post-style1 .post-type {
  position: absolute;
  left: 12px;
  top: 12px;
  color: #fff;
  padding: 5px 10px;
  font-weight: bold;
  text-transform: uppercase;
}

.post-style1 .post-type-purple {
  background: #b564c0;
}

.post-style1 .post-type-yellow {
  background: #ffc100;
}

.post-style1 .post-type-red {
  background: #fa5b58;
}

.post-style1 h4 {
  color: inherit;
  margin-bottom: 2px;
}

.post-style1 .post-thumb:before {
  content: '';
  display: block;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+56,0.45+100 */
  background: -moz-linear-gradient(top, transparent 0%, transparent 56%, rgba(0, 0, 0, 0.45) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, transparent 0%, transparent 56%, rgba(0, 0, 0, 0.45) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, transparent 0%, transparent 56%, rgba(0, 0, 0, 0.45) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.post-style1 .post-content {
  color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 15px;
}

.post-style1 .post-content small {
  display: inline-block;
  margin-right: 15px;
}

.sidebar-nav {
  margin: 0;
  padding: 0;
  list-style: none;
  background: #f3f3f3;
}

.sidebar-nav a {
  color: #7d7d7d;
  display: block;
  padding: 12px 30px;
  border-bottom: 1px solid #ebebeb;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-right: 3px solid transparent;
}

.sidebar-nav a:hover,
.sidebar-nav .active a {
  border-right-color: #0CAA41;
}

.section-header {
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
  margin-top: 15px;
}

.section-header h3 {
  margin-top: 0;
  margin-bottom: 5px;
}

.add-location-trigger {
  margin-top: 5px;
}

.map-section {
  height: 180px;
  padding: 4px;
  border: 1px solid #eee;
}

.zoom-slider .slider.slider-horizontal {
  width: auto;
  display: block;
  margin-left: 15px;
  margin-right: 15px;
}

.zoom-slider .slider.slider-horizontal:before, .zoom-slider .slider.slider-horizontal:after {
  content: '-';
  display: inline-block;
  position: absolute;
  top: -1px;
  right: 100%;
  margin-right: 5px;
  font-size: 20px;
  line-height: 1;
  color: #0CAA41;
}

.zoom-slider .slider.slider-horizontal:after {
  content: '+';
  margin-right: 0;
  margin-left: 5px;
  right: auto;
  left: 100%;
}

.zoom-slider .slider.slider-horizontal .slider-track {
  height: 2px;
  margin-top: -1px;
}

.zoom-slider .slider.slider-horizontal .slider-handle {
  margin-top: -9px;
}

.modal-cropimg .modal-header {
  background: #f6f7f9;
  border: 0;
  padding: 7px 15px;
}

.modal-cropimg .modal-title {
  color: #545454;
}

.modal-cropimg button.close {
  margin: 2px 0 0;
  opacity: 1;
}

.modal-cropimg .modal-footer {
  border: 0;
}

@media (min-width: 768px) {
  .modal-dialog-lg {
    width: auto;
    max-width: 880px;
  }
}

.edit-timeline-section {
  background: #f3f3f3;
  margin-bottom: 30px;
}

.edit-timeline-section .inner-area {
  height: 285px;
  position: relative;
  text-align: center;
}

.edit-timeline-section .edit-profile-img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 175px;
  height: 175px;
  background: #fff;
  text-align: center;
  padding: 5px;
}

.edit-timeline-section .upload-trigger {
  display: block;
  margin-bottom: 10px;
  margin-top: 15px;
  color: #9c9c9c;
}

.edit-timeline-section .upload-trigger img {
  max-width: 50px;
  height: auto;
  display: block;
  margin: 0 auto 5px;
}

.edit-timeline-section .upload-trigger-lg {
  display: inline-block;
  padding: 70px;
  font-size: 18px;
  margin: 0;
}

.edit-timeline-section .upload-trigger-lg img {
  max-width: 100px;
}

.edit-timeline-section .cover-right-menu {
  position: absolute;
  top: 30px;
  right: 0;
}

.post-sm-style3 h5 {
  font-size: 18px;
}

.post-sm-style3 .post-sm-thumb {
  width: 60px;
  height: 60px;
  border-radius: 0;
}

.post-sm-style3 .post-sm-thumb + .post-sm-content {
  margin-left: 80px;
}

.post-sm-style3 p {
  font-size: inherit;
}

.post-sm-style4 h5 {
  font-size: 18px;
}

.post-sm-style4 .post-sm-thumb {
  width: 60px;
  height: 60px;
}

.post-sm-style4 .post-sm-thumb + .post-sm-content {
  margin-left: 80px;
}

.post-sm-style4 p {
  font-size: inherit;
}

.grey-box {
  background: #f3f3f3;
  padding: 15px;
  text-align: center;
  margin: 15px 0;
}

.helpline-box {
  font-size: 30px;
}

.with-border {
  border: 1px solid #eee;
}

.jobseeker-content {
  margin-bottom: 20px;
  margin-top: 20px;
}

.may-you-interested-in {
  background: #f3f3f3;
  padding: 20px;
}

.may-you-interested-in h3 {
  margin-top: 0;
}

.may-you-interested-in .circle-bg {
  width: 45px;
  height: 45px;
  line-height: 45px;
  background: #999;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  font-size: 18px;
  vertical-align: middle;
  margin-right: 10px;
}

.may-you-interested-in .list-unstyled li ~ li {
  margin-top: 20px;
}

.alert-success {
  color: #555;
}

.add-skills-list {
  list-style: none;
  font-size: 16px;
  padding-left: 55px;
}

.add-skills-list a {
  color: inherit;
}

.add-skills-list li {
  margin-bottom: 10px;
}

.jobseeker-steps-section {
  text-align: center;
}

.jobseeker-steps-section .img-circle {
  width: 100px;
  height: 100px;
}

.job-post-page-header {
  background: #f3f3f3;
  padding: 10px 0 15px;
}

.emp_type_section {
  background: #f3f3f3;
  display: block;
  text-align: center;
  text-transform: uppercase;
  font-weight: normal;
  line-height: 1.67em;
  padding: 1.67em;
  font-size: 14px;
  cursor: pointer;
  margin-bottom: 20px;
}

.emp_type_section input {
  display: none;
}

.emp_type_section .vcheck {
  width: 1.67em;
  height: 1.67em;
  background: #fff;
  display: inline-block;
  border: 2px solid;
  border-radius: 50%;
  vertical-align: top;
  font-style: normal;
  line-height: 1.3em;
  margin-left: 10px;
}

.emp_type_section .vcheck:before {
  content: '';
  font-family: "FontAwesome";
}

.emp_type_section input:checked ~ .vcheck {
  color: #0CAA41;
}

.emp_type_section input:checked ~ .vcheck:before {
  content: "\f00c";
}

.select2-container .select2-custom-dropdown {
  height: auto;
}

.select2-container .select2-custom-dropdown .vcheck {
  color: #0CAA41;
  border-color: #0CAA41;
}

.select2-container .select2-custom-dropdown .vcheck:before {
  content: "\f00c";
}

.select2-container .select2-custom-dropdown .select2-selection__arrow {
  height: 6px;
  top: 50%;
  margin-top: -3px;
}

.select2-container .select2-custom-dropdown.select2-selection--multiple .img-logo {
  width: 20px;
  height: 20px;
  margin-right: 3px;
}

.select2-container .select2-custom-dropdown label {
  padding: 6px 8px;
}

.select2-container label {
  display: block;
  padding: 0 8px;
  margin: 0;
}

.select2-container .vcheck {
  background: #fff none repeat scroll 0 0;
  border: 2px solid #444;
  border-radius: 50%;
  display: inline-block;
  font-style: normal;
  height: 1.67em;
  line-height: 1.3em;
  margin-right: 5px;
  vertical-align: middle;
  width: 1.67em;
  text-align: center;
}

.select2-container .select2-results__option[aria-selected="true"] .vcheck {
  color: #0CAA41;
  border-color: #0CAA41;
}

.select2-container .select2-results__option[aria-selected="true"] .vcheck:before {
  content: "\f00c";
}

.select2-container .vcheck:before {
  content: '';
  font-family: "FontAwesome";
}

.select2-container .img-logo {
  margin-right: 10px;
  border-radius: 50%;
  width: 46px;
  height: 46px;
}

.select-indivial {
  background-color: #fff;
  border: 1px solid #aaa;
  display: block;
  padding: 6px 15px;
}

.select-indivial .img-logo {
  margin-right: 10px;
  border-radius: 50%;
  width: 46px;
  height: 46px;
}

.select-indivial .vcheck {
  background: #fff none repeat scroll 0 0;
  border: 2px solid #444;
  border-radius: 50%;
  display: inline-block;
  font-style: normal;
  height: 1.67em;
  line-height: 1.3em;
  margin-right: 5px;
  vertical-align: middle;
  width: 1.67em;
  text-align: center;
}

.select-indivial .vcheck:before {
  content: '';
  font-family: "FontAwesome";
}

.select-indivial.selected .vcheck {
  color: #0CAA41;
  border-color: #0CAA41;
}

.select-indivial.selected .vcheck:before {
  content: "\f00c";
}

.package-column {
  border: 1px solid #eee;
  border-radius: 6px;
  margin-bottom: 30px;
  margin-top: 85px;
}

.package-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.package-column li {
  padding: 8px 12px;
  text-align: center;
}

.package-column li:nth-child(2n + 1) {
  background: rgba(0, 0, 0, 0.05);
}

.package-column .column-head {
  padding: 20px 15px;
  font-size: 1.3em;
  text-align: center;
}

.package-column .column-head p {
  margin: 0;
}

.package-column .column-foot {
  padding: 20px 15px;
  text-align: center;
}

.package-column .package-price-section {
  width: 140px;
  height: 140px;
  border: 10px solid #fff;
  background: #a6ce39;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.09);
  border-radius: 50%;
  display: table;
  margin: -70px auto 0;
}

.package-column .package-price-section .price-section-inner {
  text-align: center;
  position: relative;
  display: table-cell;
  vertical-align: middle;
  color: #fff;
  font-size: 14px;
}

.package-column .package-price-section .price-text {
  font-size: 2.3em;
  display: block;
  line-height: 1;
}

.package-column .package-price-section .price-text small {
  font-size: 18px;
  line-height: inherit;
  vertical-align: 5px;
  margin-right: 3px;
}

.package-column.package-column-active {
  background: #0CAA41;
  color: #fff;
}

.package-column.package-column-active .package-price-section {
  background: #545454;
}
.aafooter > li {
    width: 24.5%;
}
.footer {
  background: #454545;
  border-top: 3px solid #0CAA41;
  padding-top: 20px;
  color: #dedede;
}

.footer a {
  color: #dedede;
}

.footer h4 {
  color: #0CAA41;
  font-weight: normal;
  margin: 10px 0 20px;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer li {
  margin-bottom: 10px;
}

.footer-nav {
  padding: 15px 0;
  text-align: center;
  background: #393939;
}

.footer-nav li {
  margin: 5px 10px;
  padding: 0;
}

.footer-bottom {
  background: #2e2e2e;
  color: #dedede;
  padding: 10px 0;
}

.footer-bottom .footer-bottom-text {
  margin: 15px 0 5px;
}

.footer-social-nav {
  text-align: right;
  font-size: 30px;
  color: #c2c2c2;
  margin: 0;
}

.footer-social-nav li {
  padding: 0;
}

.footer-social-nav a {
  color: inherit;
  width: 50px;
  height: 50px;
  line-height: 50px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
}

.footer-social-nav a:hover {
  background: rgba(0, 0, 0, 0.15);
}

.footer-social-nav .fa-facebook:hover {
  color: #3b5999;
}

.footer-social-nav .fa-twitter:hover {
  color: #36d8ff;
}

.footer-social-nav .fa-google-plus:hover {
  color: #ea412c;
}

.footer-social-nav .fa-linkedin:hover {
  color: #007cbe;
}

.footer-social-nav .fa-yahoo:hover {
  color: #6a146b;
}

.company-logo-slider {
  margin: 40px 0;
}

.bx-slider-wrap .bx-pager-item {
  display: inline;
  display: inline-block;
}

.bx-slider-wrap .bx-pager-link {
  display: inline-block;
  width: 12px;
  height: 12px;
  font-size: 0;
  border: 1px solid #a0a0a0;
  border-radius: 50%;
  margin: 0 4px;
  background: #fff;
}

.bx-slider-wrap .bx-pager-link.active {
  background: #0CAA41;
  border-color: #0CAA41;
}

/* employer-bashboard style start here  */
.employer-steps-section {
  text-align: center;
}

.employer-steps-section .step-num {
  color: #2db2d1;
  font-size: 64px;
  margin-bottom: 0;
  line-height: 80px;
}

.link-section {
  border-bottom: 2px solid #d6d6d6;
  padding: 0 0 5px;
  margin: 0 0 20px;
}

.link-section ul, .link-section li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.link-section li {
  padding: 0 0 20px;
}

.link-section a {
  color: #000;
  font-size: 14px;
  font-weight: 500;
}

.link-section a em {
  color: #999999;
  font-size: 22px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}

.link-section a span {
  display: inline-block;
  vertical-align: middle;
}

.link-section a:hover,
.link-section a:hover em,
.link-section li.active a {
  color: #0CAA41;
}

.link-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.post-lg p {
  font-size: 13px;
}

.post-lg p a {
  color: #407aac;
}

.solution-seciton {
  border: 1px solid #c7c7c7;
  text-align: center;
  padding: 15px 20px 10px;
  margin: 0 25px 25px;
}

.list-sidebar {
  padding: 15px 0 20px;
  border-top: 1px solid #cfcfcf;
  border-bottom: 1px solid #cfcfcf;
  margin: 0 0 20px;
}

.post-sm .rounded {
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.post-sm .cicle-wrap {
  border-color: #3278b4;
  text-align: center;
  line-height: 51px;
  color: #3278b4;
}

.post-sm .no-bdr {
  border: none;
  text-align: center;
  line-height: 41px;
  color: #a692f5;
}

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

.gap-lr {
  padding: 0 5px;
}

.overview-wrap .overview-img {
  float: left;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  color: #fff;
  font-size: 22px;
  background: #cf5f9a;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.overview-wrap .overview-content {
  margin-left: 65px;
}

.overview-wrap .overview-content strong {
  font-size: 30px;
  color: #cf5f9a;
  font-weight: normal;
  line-height: 1;
  display: block;
  margin: 0 0 3px;
}

.overview-wrap .overview-content p {
  font-size: 14px;
  margin-right: -20px;
}

.overview-secondary {
  margin-left: 25px;
}

.overview-secondary .overview-img {
  background: #ffd44f;
}

.overview-secondary .overview-content strong {
  color: #ffd44f;
}

.overview-third .overview-img {
  background: #94d3e2;
}

.overview-third .overview-content strong {
  color: #94d3e2;
}

.graph-section {
  text-align: center;
}

.posted-section p {
  margin: 0 0 5px;
}

.posted-section h4 {
  margin: 0 0 3px;
}

.posted-section h4 .fa-star {
  color: #ffc652;
}

.posted-section .level-wr {
  padding: 5px 0 0 25px;
}

.posted-section .level-wr strong {
  display: block;
  color: #0CAA41;
  font-weight: normal;
  font-size: 18px;
}

.posted-section .circle-section ul, .posted-section .circle-section li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.posted-section .circle-section li {
  float: left;
  width: 33.33%;
  padding: 0 0 10px;
  text-align: center;
  font-size: 12px;
}

.posted-section .circle-section li .circle-contain {
  margin: 0 0 15px;
}

.detail-section {
  border-top: 1px solid #c7c7c7;
  padding: 15px 0 10px;
  margin: 15px 0 0;
}

.detail-section ul, .detail-section li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.detail-section li:after {
  position: absolute;
  top: 3px;
  right: -20px;
  height: 40px;
  content: "";
  background: #dfdfdf;
  width: 1px;
}

.detail-section li {
  position: relative;
  float: left;
  margin-right: 40px;
  text-align: center;
}

.detail-section li strong {
  display: block;
  color: #0CAA41;
  font-weight: normal;
  font-size: 30px;
  line-height: 1;
  margin: 0 0 5px;
}

.detail-section li:first-child:after,
.detail-section li:last-child:after {
  display: none;
}

.detail-section li.second-item strong {
  display: inline-block;
  margin-right: 10px;
}

.detail-section li:last-child {
  margin-right: 0;
}

.interview-wrap {
  padding: 0 0 20px;
}

.interview-wrap .interview-img {
  float: left;
  width: 65px;
  height: 65px;
  overflow: hidden;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.interview-wrap .interview-img img {
  display: block;
  width: 100%;
  height: 100%;
}

.interview-wrap .interview-desc {
  margin-left: 80px;
}

.interview-wrap .interview-desc h4 {
  margin: 0 0 3px;
}

.interview-wrap .interview-desc p {
  margin: 0 0 2px;
}

.overview-secondary {
  margin: 0;
}

.detail-section li:after {
  display: none;
}

.detail-section li.second-item strong {
  display: inline-block;
  vertical-align: middle;
}

/* employer-bashboard style end here  */
/* Article detail page start here  */
.article-detail-wrap {
  background: url(../images/article/black-strip.png) repeat-x;
  padding: 80px 0 0;
}

.article-detail-wrap .aritcle-inner-content {
  background: #fff;
  padding: 25px 45px;
}

.article-top {
  padding: 0 0 70px;
}

.article-top h4 {
  margin: 0;
}

.article-top h2 {
  margin: 0 0 20px;
}

.article-top .social-item-right {
  text-align: right;
}

.article-top .social-item-right a {
  color: #999999;
  font-size: 18px;
  margin-left: 15px;
}

.article-top .social-item-right a:hover {
  color: #000;
}

.article-container {
  padding: 0 125px;
}

.article-container h5 {
  font-size: 18px;
  color: #000;
  font-weight: bold;
  margin: 0 0 5px;
}

.article-lg {
  font-size: 17px;
  line-height: 1.6;
  color: #000;
}

.article-lg p {
  margin: 0 0 25px;
}

.article-lg ul {
  margin-bottom: 35px;
}

.art-img {
  margin: 0 0 35px;
}

.art-img .art-info {
  font-size: 14px;
  text-align: right;
  color: #000;
}

.pull-right .art-img {
  margin: 15px 0 15px 15px;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.rank-seciton {
  max-width: 500px;
  margin: 0 auto 70px;
  background: #f3f3f3;
  padding: 10px;
  text-align: center;
}

.rank-seciton strong {
  display: inline-block;
  vertical-align: middle;
  font-weight: normal;
  font-size: 24px;
  min-width: 230px;
  text-align: left;
}

.rank-seciton .fa {
  color: #91bb27;
}

.rank-seciton .unhilight {
  color: #999;
}

.related-link {
  padding: 0 0 25px;
}

.related-link ul, .related-link li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.related-link li {
  display: inline-block;
  margin: 0 8px 3px;
}

.article-post-wrap {
  font-size: 12px;
  margin: 0 0 25px;
}

.article-post-wrap .article-post-img {
  float: left;
  width: 100px;
}

.article-post-wrap .article-post-content {
  margin-left: 110px;
}

.article-post-wrap .min-heigh {
  min-height: 80px;
}

.article-post-wrap .center {
  text-align: center;
}

.article-post-wrap .center a {
  margin: 0 3px;
  color: #999;
}

/* Article detail page end here  */
/* Article listing page start here  */
.listing-wrap {
  background: #000;
  padding: 35px 0;
  text-align: center;
  margin: 0 0 35px;
}

.listing-wrap h3 {
  font-size: 30px;
  color: #fff;
  margin: 0 0 10px;
}

.listing-wrap h4 {
  font-size: 26px;
  color: #0CAA41;
  margin: 0 0 40px;
}

.listing-wrap .search-section {
  position: relative;
}

.listing-wrap .search-section .field {
  display: block;
  width: 100%;
  padding: 10px 10px 10px 35px;
  height: auto;
}

.listing-wrap .search-section .fa {
  position: absolute;
  left: 10px;
  top: 10px;
  color: #000;
  font-size: 20px;
}

.recent-top {
  border-bottom: 1px solid #ccc;
  padding: 30px 0 10px;
  margin: 0 0 15px;
}

.recent-top h4 {
  margin: 5px 0;
}

.recent-top label, .recent-top select, .recent-top .btn {
  display: inline-block;
  vertical-align: middle;
  font-weight: normal;
  margin: 0;
  margin-left: 10px;
}

.recent-top select {
  padding: 7px;
  min-width: 130px;
}

.section-post {
  background: #f3f3f3;
  border-bottom: 2px solid #0CAA41;
  margin: 0 0 25px;
}

.section-post .section-post-img {
  position: relative;
}

.section-post .section-post-img .post-abs {
  position: absolute;
  right: 10px;
  top: 10px;
}

.section-post .section-post-img .post-abs a {
  width: 30px;
  height: 30px;
  line-height: 34px;
  text-align: center;
  display: inline-block;
  background: #fff;
  font-size: 14px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.section-post .section-post-img .post-abs a:hover {
  background: #0CAA41;
  color: #fff;
}

.section-post .section-post-inner {
  padding: 10px;
}

.section-post .section-post-inner .sec-post-top {
  margin: 0 0 10px;
}

.section-post .section-post-inner .sec-post-top .sec-title {
  display: block;
  font-size: 12px;
  margin: 0 0 5px;
}

.section-post .section-post-inner .sec-post-top .star-contain {
  text-align: right;
}

.section-post .section-post-inner .sec-post-top .star-contain .fa {
  color: #91bb27;
}

.section-post .section-post-inner .sec-post-top .star-contain .unhilight {
  color: #999;
}

.section-post h3 {
  font-size: 18px;
  line-height: 1.4;
  margin: 0 0 20px;
}

.section-post h3 a {
  color: #000;
}

.section-post h3 a:hover {
  text-decoration: underline;
}

.section-post .detail-con {
  font-size: 12px;
}

.section-post .detail-con ul, .section-post .detail-con li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.section-post .detail-con li {
  float: left;
  border-right: 1px solid #ccc;
  margin-right: 5px;
  padding-right: 5px;
}

.section-post .detail-con li:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}

.section-post .detail-con .user-post img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.section-post .detail-con .user-post span {
  display: inline-block;
  vertical-align: middle;
}

.section-post .post-r {
  text-align: right;
}

.section-post .post-r a {
  color: #aaa;
  margin-left: 5px;
  display: inline-block;
}

.section-post .post-r a:hover {
  color: #000;
}

.pagination {
  display: block;
  text-align: center;
  margin: 40px 0;
}

.pagination li {
  float: none;
  display: inline-block;
  margin: 0 5px;
}

.pagination li a {
  color: #000;
}

.pagination li a:hover {
  background: #000;
  color: #0CAA41;
}

.pagination li.active a,
.pagination li.active a:hover {
  background: #0CAA41;
  border-color: #0CAA41;
  color: #fff;
}

/* Article listing page end here  */
/* Home page start here  */
.main-top .sec-title h4 {
  margin-bottom: 0;
}

.job-locations {
  text-align: center;
  margin: 40px 0;
}

.job-locations .location-title {
  display: block;
  margin-top: 15px;
}

.companies {
  text-align: center;
  margin: 20px 0;
}

.companies .company-title {
  display: block;
  margin-top: 15px;
  margin-bottom: 20px;
}

.companies .company-logo {
  width: 80px;
  height: 80px;
}

.counter-wrap {
  background: #494846;
  padding: 15px 0;
  margin: 30px 0 0;
}

.counter-wrap strong {
  font-size: 30px;
  color: #fff;
  font-weight: 400;
}

.counter-wrap span {
  display: block;
  color: #0CAA41;
}

.bg-grey {
  background: #f3f3f3;
}

.browse-job-sec {
  padding-bottom: 30px;
}

.browse-job-sec h2 {
  text-transform: capitalize;
}

.job-categories {
  margin-top: 15px;
  margin-bottom: 15px;
}

.job-categories .job-category a {
  text-transform: capitalize;
  background: #fff;
  padding: 10px;
  display: block;
}

.job-categories .job-category a:after {
  clear: both;
  content: '';
  display: block;
}

.job-categories .category-icon {
  margin-right: 12px;
  float: left;
}

.job-categories .job-category-title {
  display: block;
  vertical-align: middle;
}

.job-categories .job-category-title em {
  font-style: normal;
  color: #494846;
}

.popular-searches .job-grid {
  position: relative;
  background: #fbfbfb;
  margin-bottom: 10px;
  padding: 10px 88px 10px 10px;
}

.popular-searches .job-label {
  font-size: 12px;
  text-transform: capitalize;
  color: #fff;
  padding: 3px 15px 2px;
  position: absolute;
  top: 0;
  right: 0;
}

.popular-searches .job-label.label-green {
  background: #03ae50;
}

.popular-searches .job-label.label-purple {
  background: #bb67c9;
}

.popular-searches .job-label.label-red {
  background: #fb5352;
}

.popular-searches .job-label.label-orange {
  background: #ef6e00;
}

.popular-searches .job-label.label-blue {
  background: #0abaf3;
}

.popular-searches .job-date {
  font-size: 10px;
  text-transform: capitalize;
  position: absolute;
  right: 10px;
  bottom: 5px;
}

.popular-searches .job-avatar {
  display: block;
  background: #e8e8e8;
  width: 48px;
  height: 48px;
  margin-right: 10px;
  border-radius: 100%;
  overflow: hidden;
  float: left;
}

.popular-searches .job-info {
  text-transform: capitalize;
  float: left;
}

.popular-searches .job-info .job-title {
  color: #329459;
  font-weight: 700;
  margin: 0;
}

.popular-searches .company-name {
  display: block;
  font-size: 12px;
}

.popular-searches .job-location {
  color: #c2c2c2;
  font-size: 12px;
}

.usage-steps {
  margin-top: 40px;
  margin-bottom: 40px;
}

.usage-steps h1 {
  margin-bottom: 30px;
}

.usage-steps .step {
  position: relative;
  text-transform: capitalize;
}

.usage-steps .step:after {
  background: #e1e1e1;
  content: '';
  width: 50%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 80.5%;
}

.usage-steps .step.step-4:after {
  display: none;
}

.usage-steps .step-title {
  margin-bottom: 10px;
  display: block;
}

.usage-steps img {
  display: block;
  margin: 0 auto;
}

.usage-steps .step-name {
  font-size: 16px;
  font-weight: 700;
  display: block;
  margin-top: 15px;
}

.btns-row .btn {
  margin-left: 7px;
  margin-right: 7px;
}

.no-margin {
  margin: 0;
}

.banner-wrap:before {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: '';
}

.homepage-banner {
  background: url(../images/homepage/homebanner.jpg) no-repeat;
  background-size: cover;
  height: 550px;
  position: relative;
}

.homepage-banner .banner-form {
  margin-top: 100px;
  position: relative;
  color: #fff;
}

.homepage-banner .banner-form .input-group {
  background: #fff;
  box-shadow: 0 0 1px #949590 inset;
}

.homepage-banner .banner-form .addon-transparent {
  background: none;
  border: 0;
}

.homepage-banner .banner-form .input-transparent {
  border: 0;
}

.homepage-banner a.h3 {
  color: #0CAA41;
}

.banner-bottom-area {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
}

.banner-bottom-left-area {
  height: 220px;
  background: rgba(12, 170, 65, 1);
  color: #fff;
  padding-top: 30px;
}

.banner-bottom-right-area {
  padding-top: 30px;
  height: 220px;
  background: rgba(255, 255, 255, 0.7);
}

.btn-normal {
  min-width: inherit;
}

.btn-outline-white {
  color: #fff;
}

.btn-outline-grey {
  color: #545454;
}

/* Home page end here  */
.register_employer_page .page-content-section,
.register_jobseeker_page .page-content-section,
.users_login_page .page-content-section {
  padding: 0;
  background: #b0d34c;
  background: #eee;
}

.register-form-section,
.login-form-section {
  background: #fff;
  max-width: 400px;
  padding: 30px 40px 20px;
  margin: 50px auto;
}

.register-form-section h3,
.login-form-section h3 {
  margin-top: 0;
  margin-bottom: 15px;
}

.register-form-section .input-group-custom,
.login-form-section .input-group-custom {
  position: relative;
  width: 100%;
}

.register-form-section .input-group-custom .input-group-addon,
.login-form-section .input-group-custom .input-group-addon {
  position: absolute;
  top: 0;
  border: 0;
  width: 46px;
  bottom: 0;
  padding: 0;
  line-height: 46px;
  text-align: center;
  color: #bbb;
  z-index: 9;
}

.register-form-section .input-group-custom .input-group-addon .fa,
.login-form-section .input-group-custom .input-group-addon .fa {
  line-height: inherit;
}

.register-form-section .input-group-custom .input-group-addon:first-child,
.login-form-section .input-group-custom .input-group-addon:first-child {
  left: 0;
}

.register-form-section .input-group-custom .input-group-addon:last-child,
.login-form-section .input-group-custom .input-group-addon:last-child {
  right: 0;
}

.register-form-section .input-group-custom .input-group-addon + .form-control,
.login-form-section .input-group-custom .input-group-addon + .form-control {
  padding-left: 62px;
}

.register-form-section .form-control,
.login-form-section .form-control {
  border-color: #eee;
}

.register-form-section .form-control:focus,
.login-form-section .form-control:focus {
  outline: 0;
}

.register-form-section {
  max-width: 600px;
}

.sprite {
  background-image: url(../images/hobbies/32x32.png);
  background-repeat: no-repeat;
  display: block;
  display: inline-block;
  width: 34px;
  height: 34px;
}

.sprite.sprite-style_06___001 {
  background-position: -5px -5px;
}

.sprite.sprite-style_06___002 {
  background-position: -47px -5px;
}

.sprite.sprite-style_06___003 {
  background-position: -89px -5px;
}

.sprite.sprite-style_06___004 {
  background-position: -131px -5px;
}

.sprite.sprite-style_06___005 {
  background-position: -173px -5px;
}

.sprite.sprite-style_06___006 {
  background-position: -215px -5px;
}

.sprite.sprite-style_06___007 {
  background-position: -257px -5px;
}

.sprite.sprite-style_06___008 {
  background-position: -299px -5px;
}

.sprite.sprite-style_06___009 {
  background-position: -341px -5px;
}

.sprite.sprite-style_06___010 {
  background-position: -383px -5px;
}

.sprite.sprite-style_06___011 {
  background-position: -5px -47px;
}

.sprite.sprite-style_06___012 {
  background-position: -47px -47px;
}

.sprite.sprite-style_06___013 {
  background-position: -89px -47px;
}

.sprite.sprite-style_06___014 {
  background-position: -131px -47px;
}

.sprite.sprite-style_06___015 {
  background-position: -173px -47px;
}

.sprite.sprite-style_06___016 {
  background-position: -215px -47px;
}

.sprite.sprite-style_06___017 {
  background-position: -257px -47px;
}

.sprite.sprite-style_06___018 {
  background-position: -299px -47px;
}

.sprite.sprite-style_06___019 {
  background-position: -341px -47px;
}

.sprite.sprite-style_06___020 {
  background-position: -383px -47px;
}

.sprite.sprite-style_06___021 {
  background-position: -5px -89px;
}

.sprite.sprite-style_06___022 {
  background-position: -47px -89px;
}

.sprite.sprite-style_06___023 {
  background-position: -89px -89px;
}

.sprite.sprite-style_06___024 {
  background-position: -131px -89px;
}

.sprite.sprite-style_06___025 {
  background-position: -173px -89px;
}

.sprite.sprite-style_06___026 {
  background-position: -215px -89px;
}

.sprite.sprite-style_06___027 {
  background-position: -257px -89px;
}

.sprite.sprite-style_06___028 {
  background-position: -299px -89px;
}

.sprite.sprite-style_06___029 {
  background-position: -341px -89px;
}

.sprite.sprite-style_06___030 {
  background-position: -383px -89px;
}

.sprite.sprite-style_06___031 {
  background-position: -5px -131px;
}

.sprite.sprite-style_06___032 {
  background-position: -47px -131px;
}

.sprite.sprite-style_06___033 {
  background-position: -89px -131px;
}

.sprite.sprite-style_06___034 {
  background-position: -131px -131px;
}

.sprite.sprite-style_06___035 {
  background-position: -173px -131px;
}

.sprite.sprite-style_06___036 {
  background-position: -215px -131px;
}

.sprite.sprite-style_06___037 {
  background-position: -257px -131px;
}

.sprite.sprite-style_06___038 {
  background-position: -299px -131px;
}

.sprite.sprite-style_06___039 {
  background-position: -341px -131px;
}

.sprite.sprite-style_06___040 {
  background-position: -383px -131px;
}

.sprite.sprite-style_06___041 {
  background-position: -5px -173px;
}

.sprite.sprite-style_06___042 {
  background-position: -47px -173px;
}

.sprite.sprite-style_06___043 {
  background-position: -89px -173px;
}

.sprite.sprite-style_06___044 {
  background-position: -131px -173px;
}

.sprite.sprite-style_06___045 {
  background-position: -173px -173px;
}

.sprite.sprite-style_06___046 {
  background-position: -215px -173px;
}

.sprite.sprite-style_06___047 {
  background-position: -257px -173px;
}

.sprite.sprite-style_06___048 {
  background-position: -299px -173px;
}

.sprite.sprite-style_06___049 {
  background-position: -341px -173px;
}

.sprite.sprite-style_06___050 {
  background-position: -383px -173px;
}

.sprite.sprite-style_06___051 {
  background-position: -5px -215px;
}

.sprite.sprite-style_06___052 {
  background-position: -47px -215px;
}

.sprite.sprite-style_06___053 {
  background-position: -89px -215px;
}

.sprite.sprite-style_06___054 {
  background-position: -131px -215px;
}

.sprite.sprite-style_06___055 {
  background-position: -173px -215px;
}

.sprite.sprite-style_06___056 {
  background-position: -215px -215px;
}

.sprite.sprite-style_06___057 {
  background-position: -257px -215px;
}

.sprite.sprite-style_06___058 {
  background-position: -299px -215px;
}

.sprite.sprite-style_06___059 {
  background-position: -341px -215px;
}

.sprite.sprite-style_06___060 {
  background-position: -383px -215px;
}

.sprite.sprite-style_06___061 {
  background-position: -5px -257px;
}

.sprite.sprite-style_06___062 {
  background-position: -47px -257px;
}

.sprite.sprite-style_06___063 {
  background-position: -89px -257px;
}

.sprite.sprite-style_06___064 {
  background-position: -131px -257px;
}

.sprite.sprite-style_06___065 {
  background-position: -173px -257px;
}

.sprite.sprite-style_06___066 {
  background-position: -215px -257px;
}

.sprite.sprite-style_06___067 {
  background-position: -257px -257px;
}

.sprite.sprite-style_06___068 {
  background-position: -299px -257px;
}

.sprite.sprite-style_06___069 {
  background-position: -341px -257px;
}

.sprite.sprite-style_06___070 {
  background-position: -383px -257px;
}

.sprite.sprite-style_06___071 {
  background-position: -5px -299px;
}

.sprite.sprite-style_06___072 {
  background-position: -47px -299px;
}

.sprite.sprite-style_06___073 {
  background-position: -89px -299px;
}

.sprite.sprite-style_06___074 {
  background-position: -131px -299px;
}

.sprite.sprite-style_06___075 {
  background-position: -173px -299px;
}

.sprite.sprite-style_06___076 {
  background-position: -215px -299px;
}

.sprite.sprite-style_06___077 {
  background-position: -257px -299px;
}

.sprite.sprite-style_06___078 {
  background-position: -299px -299px;
}

.sprite.sprite-style_06___079 {
  background-position: -341px -299px;
}

.sprite.sprite-style_06___080 {
  background-position: -383px -299px;
}

.sprite.sprite-style_06___081 {
  background-position: -5px -341px;
}

.sprite.sprite-style_06___082 {
  background-position: -47px -341px;
}

.sprite.sprite-style_06___083 {
  background-position: -89px -341px;
}

.sprite.sprite-style_06___084 {
  background-position: -131px -341px;
}

.sprite.sprite-style_06___085 {
  background-position: -173px -341px;
}

.sprite.sprite-style_06___086 {
  background-position: -215px -341px;
}

.sprite.sprite-style_06___087 {
  background-position: -257px -341px;
}

.sprite.sprite-style_06___088 {
  background-position: -299px -341px;
}

.sprite.sprite-style_06___089 {
  background-position: -341px -341px;
}

.sprite.sprite-style_06___090 {
  background-position: -383px -341px;
}

.sprite.sprite-style_06___091 {
  background-position: -5px -383px;
}

.sprite.sprite-style_06___092 {
  background-position: -47px -383px;
}

.sprite.sprite-style_06___093 {
  background-position: -89px -383px;
}

.sprite.sprite-style_06___094 {
  background-position: -131px -383px;
}

.sprite.sprite-style_06___095 {
  background-position: -173px -383px;
}

.sprite.sprite-style_06___096 {
  background-position: -215px -383px;
}

.sprite.sprite-style_06___097 {
  background-position: -257px -383px;
}

.sprite.sprite-style_06___098 {
  background-position: -299px -383px;
}

.sprite.sprite-style_06___099 {
  background-position: -341px -383px;
}

.sprite.sprite-style_06___100 {
  background-position: -383px -383px;
}

.sprite.sprite-style_06___101 {
  background-position: -425px -5px;
}

.sprite.sprite-style_06___102 {
  background-position: -425px -47px;
}

.sprite.sprite-style_06___103 {
  background-position: -425px -89px;
}

.sprite.sprite-style_06___104 {
  background-position: -425px -131px;
}

.sprite.sprite-style_06___105 {
  background-position: -425px -173px;
}

.sprite.sprite-style_06___106 {
  background-position: -425px -215px;
}

.sprite.sprite-style_06___107 {
  background-position: -425px -257px;
}

.sprite.sprite-style_06___108 {
  background-position: -425px -299px;
}

.sprite.sprite-style_06___109 {
  background-position: -425px -341px;
}

.sprite.sprite-style_06___110 {
  background-position: -425px -383px;
}

.sprite.sprite-style_06___111 {
  background-position: -5px -425px;
}

.sprite.sprite-style_06___112 {
  background-position: -47px -425px;
}

.sprite.sprite-style_06___113 {
  background-position: -89px -425px;
}

.sprite.sprite-style_06___114 {
  background-position: -131px -425px;
}

.sprite-lg {
  background-image: url(../images/hobbies/64x64.png);
  background-repeat: no-repeat;
  display: inline-block;
  width: 66px;
  height: 66px;
}

.sprite-lg.sprite-style_06___001 {
  background-position: -5px -5px;
}

.sprite-lg.sprite-style_06___002 {
  background-position: -79px -5px;
}

.sprite-lg.sprite-style_06___003 {
  background-position: -153px -5px;
}

.sprite-lg.sprite-style_06___004 {
  background-position: -227px -5px;
}

.sprite-lg.sprite-style_06___005 {
  background-position: -301px -5px;
}

.sprite-lg.sprite-style_06___006 {
  background-position: -375px -5px;
}

.sprite-lg.sprite-style_06___007 {
  background-position: -449px -5px;
}

.sprite-lg.sprite-style_06___008 {
  background-position: -523px -5px;
}

.sprite-lg.sprite-style_06___009 {
  background-position: -597px -5px;
}

.sprite-lg.sprite-style_06___010 {
  background-position: -671px -5px;
}

.sprite-lg.sprite-style_06___011 {
  background-position: -5px -79px;
}

.sprite-lg.sprite-style_06___012 {
  background-position: -79px -79px;
}

.sprite-lg.sprite-style_06___013 {
  background-position: -153px -79px;
}

.sprite-lg.sprite-style_06___014 {
  background-position: -227px -79px;
}

.sprite-lg.sprite-style_06___015 {
  background-position: -301px -79px;
}

.sprite-lg.sprite-style_06___016 {
  background-position: -375px -79px;
}

.sprite-lg.sprite-style_06___017 {
  background-position: -449px -79px;
}

.sprite-lg.sprite-style_06___018 {
  background-position: -523px -79px;
}

.sprite-lg.sprite-style_06___019 {
  background-position: -597px -79px;
}

.sprite-lg.sprite-style_06___020 {
  background-position: -671px -79px;
}

.sprite-lg.sprite-style_06___021 {
  background-position: -5px -153px;
}

.sprite-lg.sprite-style_06___022 {
  background-position: -79px -153px;
}

.sprite-lg.sprite-style_06___023 {
  background-position: -153px -153px;
}

.sprite-lg.sprite-style_06___024 {
  background-position: -227px -153px;
}

.sprite-lg.sprite-style_06___025 {
  background-position: -301px -153px;
}

.sprite-lg.sprite-style_06___026 {
  background-position: -375px -153px;
}

.sprite-lg.sprite-style_06___027 {
  background-position: -449px -153px;
}

.sprite-lg.sprite-style_06___028 {
  background-position: -523px -153px;
}

.sprite-lg.sprite-style_06___029 {
  background-position: -597px -153px;
}

.sprite-lg.sprite-style_06___030 {
  background-position: -671px -153px;
}

.sprite-lg.sprite-style_06___031 {
  background-position: -5px -227px;
}

.sprite-lg.sprite-style_06___032 {
  background-position: -79px -227px;
}

.sprite-lg.sprite-style_06___033 {
  background-position: -153px -227px;
}

.sprite-lg.sprite-style_06___034 {
  background-position: -227px -227px;
}

.sprite-lg.sprite-style_06___035 {
  background-position: -301px -227px;
}

.sprite-lg.sprite-style_06___036 {
  background-position: -375px -227px;
}

.sprite-lg.sprite-style_06___037 {
  background-position: -449px -227px;
}

.sprite-lg.sprite-style_06___038 {
  background-position: -523px -227px;
}

.sprite-lg.sprite-style_06___039 {
  background-position: -597px -227px;
}

.sprite-lg.sprite-style_06___040 {
  background-position: -671px -227px;
}

.sprite-lg.sprite-style_06___041 {
  background-position: -5px -301px;
}

.sprite-lg.sprite-style_06___042 {
  background-position: -79px -301px;
}

.sprite-lg.sprite-style_06___043 {
  background-position: -153px -301px;
}

.sprite-lg.sprite-style_06___044 {
  background-position: -227px -301px;
}

.sprite-lg.sprite-style_06___045 {
  background-position: -301px -301px;
}

.sprite-lg.sprite-style_06___046 {
  background-position: -375px -301px;
}

.sprite-lg.sprite-style_06___047 {
  background-position: -449px -301px;
}

.sprite-lg.sprite-style_06___048 {
  background-position: -523px -301px;
}

.sprite-lg.sprite-style_06___049 {
  background-position: -597px -301px;
}

.sprite-lg.sprite-style_06___050 {
  background-position: -671px -301px;
}

.sprite-lg.sprite-style_06___051 {
  background-position: -5px -375px;
}

.sprite-lg.sprite-style_06___052 {
  background-position: -79px -375px;
}

.sprite-lg.sprite-style_06___053 {
  background-position: -153px -375px;
}

.sprite-lg.sprite-style_06___054 {
  background-position: -227px -375px;
}

.sprite-lg.sprite-style_06___055 {
  background-position: -301px -375px;
}

.sprite-lg.sprite-style_06___056 {
  background-position: -375px -375px;
}

.sprite-lg.sprite-style_06___057 {
  background-position: -449px -375px;
}

.sprite-lg.sprite-style_06___058 {
  background-position: -523px -375px;
}

.sprite-lg.sprite-style_06___059 {
  background-position: -597px -375px;
}

.sprite-lg.sprite-style_06___060 {
  background-position: -671px -375px;
}

.sprite-lg.sprite-style_06___061 {
  background-position: -5px -449px;
}

.sprite-lg.sprite-style_06___062 {
  background-position: -79px -449px;
}

.sprite-lg.sprite-style_06___063 {
  background-position: -153px -449px;
}

.sprite-lg.sprite-style_06___064 {
  background-position: -227px -449px;
}

.sprite-lg.sprite-style_06___065 {
  background-position: -301px -449px;
}

.sprite-lg.sprite-style_06___066 {
  background-position: -375px -449px;
}

.sprite-lg.sprite-style_06___067 {
  background-position: -449px -449px;
}

.sprite-lg.sprite-style_06___068 {
  background-position: -523px -449px;
}

.sprite-lg.sprite-style_06___069 {
  background-position: -597px -449px;
}

.sprite-lg.sprite-style_06___070 {
  background-position: -671px -449px;
}

.sprite-lg.sprite-style_06___071 {
  background-position: -5px -523px;
}

.sprite-lg.sprite-style_06___072 {
  background-position: -79px -523px;
}

.sprite-lg.sprite-style_06___073 {
  background-position: -153px -523px;
}

.sprite-lg.sprite-style_06___074 {
  background-position: -227px -523px;
}

.sprite-lg.sprite-style_06___075 {
  background-position: -301px -523px;
}

.sprite-lg.sprite-style_06___076 {
  background-position: -375px -523px;
}

.sprite-lg.sprite-style_06___077 {
  background-position: -449px -523px;
}

.sprite-lg.sprite-style_06___078 {
  background-position: -523px -523px;
}

.sprite-lg.sprite-style_06___079 {
  background-position: -597px -523px;
}

.sprite-lg.sprite-style_06___080 {
  background-position: -671px -523px;
}

.sprite-lg.sprite-style_06___081 {
  background-position: -5px -597px;
}

.sprite-lg.sprite-style_06___082 {
  background-position: -79px -597px;
}

.sprite-lg.sprite-style_06___083 {
  background-position: -153px -597px;
}

.sprite-lg.sprite-style_06___084 {
  background-position: -227px -597px;
}

.sprite-lg.sprite-style_06___085 {
  background-position: -301px -597px;
}

.sprite-lg.sprite-style_06___086 {
  background-position: -375px -597px;
}

.sprite-lg.sprite-style_06___087 {
  background-position: -449px -597px;
}

.sprite-lg.sprite-style_06___088 {
  background-position: -523px -597px;
}

.sprite-lg.sprite-style_06___089 {
  background-position: -597px -597px;
}

.sprite-lg.sprite-style_06___090 {
  background-position: -671px -597px;
}

.sprite-lg.sprite-style_06___091 {
  background-position: -5px -671px;
}

.sprite-lg.sprite-style_06___092 {
  background-position: -79px -671px;
}

.sprite-lg.sprite-style_06___093 {
  background-position: -153px -671px;
}

.sprite-lg.sprite-style_06___094 {
  background-position: -227px -671px;
}

.sprite-lg.sprite-style_06___095 {
  background-position: -301px -671px;
}

.sprite-lg.sprite-style_06___096 {
  background-position: -375px -671px;
}

.sprite-lg.sprite-style_06___097 {
  background-position: -449px -671px;
}

.sprite-lg.sprite-style_06___098 {
  background-position: -523px -671px;
}

.sprite-lg.sprite-style_06___099 {
  background-position: -597px -671px;
}

.sprite-lg.sprite-style_06___100 {
  background-position: -671px -671px;
}

.sprite-lg.sprite-style_06___101 {
  background-position: -745px -5px;
}

.sprite-lg.sprite-style_06___102 {
  background-position: -745px -79px;
}

.sprite-lg.sprite-style_06___103 {
  background-position: -745px -153px;
}

.sprite-lg.sprite-style_06___104 {
  background-position: -745px -227px;
}

.sprite-lg.sprite-style_06___105 {
  background-position: -745px -301px;
}

.sprite-lg.sprite-style_06___106 {
  background-position: -745px -375px;
}

.sprite-lg.sprite-style_06___107 {
  background-position: -745px -449px;
}

.sprite-lg.sprite-style_06___108 {
  background-position: -745px -523px;
}

.sprite-lg.sprite-style_06___109 {
  background-position: -745px -597px;
}

.sprite-lg.sprite-style_06___110 {
  background-position: -745px -671px;
}

.sprite-lg.sprite-style_06___111 {
  background-position: -5px -745px;
}

.sprite-lg.sprite-style_06___112 {
  background-position: -79px -745px;
}

.sprite-lg.sprite-style_06___113 {
  background-position: -153px -745px;
}

.sprite-lg.sprite-style_06___114 {
  background-position: -227px -745px;
}

.dropdown-menu-icons-parent2 .sprite {
  display: block;
  margin: 0 auto;
}

.dropdown-menu-icons-parent2 .btn {
  height: 40px;
  padding: 0;
}

/* Home page end here  */
.page-content-section {
  min-height: 500px;
  padding-bottom: 30px;
}

.sublevel {
  margin-left: 40px;
}

.mainlevel + .sublevel {
  border-top: 0;
  margin-top: 1px;
}

.cropControls i.cropControlUpload {
  background: none;
  font-weight: normal;
  line-height: 30px;
}

.cropControls i.cropControlUpload:before {
  content: "\f030";
  font-family: "FontAwesome";
  display: inline-block;
}

.input-group-btn .btn {
  height: 34px;
}

.input-group-btn .btn-default {
  border-color: #aaa;
}

.skills-controls {
  display: none;
}

.skill-section:hover .skills-controls {
  display: block;
}

.cv-navbar a {
  display: inline-block;
  margin-left: 5px;
}

.register_employer_page .page-content-section,
.register_jobseeker_page .page-content-section,
.users_login_page .page-content-section {
  padding: 0;
  background: #b0d34c;
  background: #eee;
}

.register-form-section,
.login-form-section {
  background: #fff;
  max-width: 400px;
  padding: 30px 40px 20px;
  margin: 50px auto;
}

.register-form-section h3,
.login-form-section h3 {
  margin-top: 0;
  margin-bottom: 15px;
}

.register-form-section .input-group-custom,
.login-form-section .input-group-custom {
  position: relative;
  width: 100%;
}

.register-form-section .input-group-custom .input-group-addon,
.login-form-section .input-group-custom .input-group-addon {
  position: absolute;
  top: 0;
  border: 0;
  width: 46px;
  bottom: 0;
  padding: 0;
  line-height: 46px;
  text-align: center;
  color: #bbb;
  z-index: 9;
}

.register-form-section .input-group-custom .input-group-addon .fa,
.login-form-section .input-group-custom .input-group-addon .fa {
  line-height: inherit;
}

.register-form-section .input-group-custom .input-group-addon:first-child,
.login-form-section .input-group-custom .input-group-addon:first-child {
  left: 0;
}

.register-form-section .input-group-custom .input-group-addon:last-child,
.login-form-section .input-group-custom .input-group-addon:last-child {
  right: 0;
}

.register-form-section .input-group-custom .input-group-addon + .form-control,
.login-form-section .input-group-custom .input-group-addon + .form-control {
  padding-left: 62px;
}

.register-form-section .form-control,
.login-form-section .form-control {
  border-color: #eee;
}

.register-form-section .form-control:focus,
.login-form-section .form-control:focus {
  outline: 0;
}

.register-form-section {
  max-width: 600px;
}

.alert {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 15px;
}

/*  Responsive work start from here.. */
@media (max-width: 1199px) {
  .navbar-custom .navbar-nav > li > a {
    padding-left: 10px;
    padding-right: 10px;
  }
  .grey-box .btn-lg {
    min-width: inherit;
  }
  .article-container {
    padding: 0;
  }
  .add-skills-list {
    padding-left: 0;
  }
  hr,
  .sidebar-head {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .collapse-section-wrap {
    margin-bottom: 25px;
  }
  .reply-box {
    padding: 15px;
  }
  .may-you-interested-in .circle-bg {
    display: none;
  }
  .may-you-interested-in .list-unstyled {
    margin-left: 0;
  }
  .chart-circle .chart-inner {
    padding-top: 27px;
  }
  .hobbies-list {
    margin: 0 -5px;
  }
  .hobbies-list li {
    margin: 0 5px 10px;
    width: 105px;
  }
  .reference-box h4 {
    font-size: 14px;
    font-weight: bold;
  }
  .text-section-style1 {
    margin: 20px 0;
  }
  .timeline-bg-img {
    height: auto;
  }
  .aafooter > li {
    width: 33%;
  }
}

@media (max-width: 991px) {
  .banner-bottom-right-area,
  .banner-bottom-left-area {
    padding-top: 20px;
  }
  .popular-searches .job-grid {
    padding: 25px;
    margin-bottom: 20px;
  }
  .popular-searches .job-label {
    bottom: 0;
    left: 0;
    right: auto;
    top: auto;
  }
  .popular-searches .job-avatar {
    width: 40px;
    height: 40px;
    margin: 0;
  }
  .popular-searches .job-info {
    float: none;
    margin-left: 50px;
  }
  .companies {
    margin: 0;
  }
  .companies .company-title {
    margin-top: 5px;
  }
  .company-section {
    min-height: 100px;
  }
  .jobs-category {
    margin-bottom: 50px;
  }
  .aafooter > li {
    width: 50%;
  }
  .footer {
    font-size: 12px;
  }
  .footer li {
    margin-bottom: 5px;
  }
  .footer ul {
    margin-bottom: 20px;
  }
  .footer h4 {
    font-size: 17px;
    margin: 0 0 10px;
  }
  .footer .footer-newsletter {
    margin-bottom: 20px;
  }
  .footer-social-nav {
    font-size: 20px;
  }
  .footer-social-nav a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
  .footer-bottom .footer-bottom-text {
    margin-top: 5px;
  }
  .absolute-sidebar {
    width: 256px;
    position: absolute;
    left: -256px;
    top: 250px;
    z-index: 9;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    padding: 0;
    -webkit-transition: left .25s ease-in;
    -moz-transition: left .25s ease-in;
    -ms-transition: left .25s ease-in;
    -o-transition: left .25s ease-in;
    transition: left .25s ease-in;
  }
  .absolute-sidebar.active {
    left: 0;
  }
  .absolute-sidebar .filters-toggle {
    position: absolute;
    top: 50px;
    left: 100%;
    background: #0CAA41;
    width: 30px;
    height: 50px;
    border-radius: 0 5px 5px 0;
    color: #fff;
    font-size: 24px;
    line-height: 50px;
    text-align: center;
  }
  .absolute-sidebar .search-sidebar {
    margin-bottom: 0;
  }
  .h2, h2 {
    font-size: 24px;
  }
  .job-post-page-header {
    white-space: nowrap;
  }
  .job-post-page-header h2 {
    margin: 10px 0;
  }
  .job-post-page-header p {
    margin: 0;
  }
  .wizard-nav {
    padding: 0;
  }
  .chart-circle .chart-inner {
    padding-top: 73px;
  }
  .cv-builder-section .left-years-section {
    position: relative;
  }
  .cv-builder-section .left-years-section .label {
    position: absolute;
    left: -40px;
    top: 70px;
    z-index: 1;
    width: 150px;
    display: block;
    max-width: none;
  }
  .cv-builder-section .left-years-section + .cv-right-content {
    margin-left: 125px;
  }
  .cv-builder-section {
    padding: 15px 0;
  }
  .cv-builder-section h3 {
    font-size: 18px;
  }
  .social-section .like-qty-text {
    margin: 10px 0;
    font-size: 50px;
  }
}

@media (max-width: 767px) {
  .homepage-banner .banner-form {
    margin-top: 15px;
  }
  .homepage-banner .banner-form h1 {
    font-size: 20px;
  }
  .homepage-banner .banner-form h2 {
    font-size: 16px;
  }
  .homepage-banner .banner-form .input-group-addon.input-lg,
  .homepage-banner .banner-form .input-group-lg > .input-group-addon,
  .homepage-banner .banner-form .input-group-lg > .input-group-btn > .input-group-addon.btn,
  .homepage-banner .banner-form .input-lg,
  .homepage-banner .banner-form .input-group-lg > .form-control,
  .homepage-banner .banner-form .input-group-lg > .input-group-addon,
  .homepage-banner .banner-form .input-group-lg > .input-group-btn > .btn {
    padding: 6px 12px;
    height: 34px;
    font-size: 14px;
  }
  .banner-botton-getstarted-area {
    position: relative;
    text-align: center;
    margin: 15px auto;
  }
  .banner-botton-getstarted-area a {
    display: block;
    margin: 0 25px 5px;
  }
  .homepage-banner {
    height: inherit;
    padding: 0 0 15px;
  }
  .input-group-btn > .btn {
    margin: 0;
  }
  .navbar-brand {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .navbar-toggle {
    margin-top: 12px;
  }
  .helpline-box {
    font-size: 25px;
  }
  .css3-table {
    display: block;
  }
  .css3-table tbody, .css3-table thead, .css3-table tfoot, .css3-table td, .css3-table th {
    display: block;
    width: auto;
  }
  .link-section li {
    padding: 0 0 5px;
  }
  .link-section li a {
    font-size: 14px;
  }
  .link-section li a em {
    font-size: 16px;
  }
  .article-post-wrap .center {
    text-align: left;
  }
  .article-detail-wrap .aritcle-inner-content {
    padding: 25px;
  }
  .section-post .section-post-inner .sec-post-top .star-contain {
    text-align: left;
  }
  .section-post .post-r {
    text-align: left;
    margin-top: 10px;
  }
  .job-post-page-header {
    text-align: center;
  }
  .job-post-page-header h2, .job-post-page-header p {
    text-align: center;
    margin: 0;
  }
  .wizard-nav {
    margin: 5px 0;
  }
  .wizard-nav .wizard-step span {
    width: 30px;
    height: 30px;
    border-width: 2px;
    line-height: 26px;
    font-size: 16px;
  }
  .wizard-nav .wizard-step span:after {
    margin-left: 15px;
    width: calc(100% - 30px);
    height: 2px;
    margin-top: -1px;
  }
  .job-style1 {
    margin: 20px 0;
    text-align: left;
  }
  .job-style1 .job-thumb {
    border: 1px solid #c1c1c1;
    width: 120px;
    height: 120px;
    padding: 2px;
    margin: 0 15px 5px 0;
  }
  .job-style1 .job-thumb + .job-content {
    margin-left: 0;
    text-align: left;
  }
  .job-style1 .action-btns {
    float: none;
    margin-left: 0;
    margin: 10px 0;
    text-align: left;
  }
  .job-style1 .job-content {
    font-size: 14px;
  }
  .job-style1 .job-content h1 {
    font-size: 18px;
  }
  .job-style1 .job-content h3 {
    font-size: 17px;
  }
  .job-actions-section p {
    margin-top: 10px;
  }
  .job-actions-section .btn {
    min-width: inherit;
    padding: 6px 20px;
    margin-top: 5px;
  }
  .filter-jobs-form {
    margin: 20px 0;
    display: block;
  }
  .filter-jobs-form .input-small {
    width: auto;
    float: none;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 10px;
  }
  .filter-jobs-form .input-group {
    display: block;
  }
  .filter-jobs-form .input-long {
    margin-bottom: 10px;
    width: auto;
    float: none;
  }
  .filter-jobs-form .form-control {
    display: block;
    float: none;
    padding: 6px 12px;
    height: 34px;
    font-size: 14px;
  }
  .filter-jobs-form .btn {
    min-width: inherit;
    width: 100%;
    height: auto;
    border-radius: 0 !important;
  }
  .filter-jobs-form .input-group-btn {
    display: block;
    width: auto;
  }
  .company-jobs {
    text-align: center;
  }
  .job-actions-section {
    text-align: left;
    margin-top: 10px;
  }
  .job-actions-section p a {
    margin: 0 2px;
  }
  .dropdown-menu {
    min-height: inherit;
  }
  .btn {
    margin-top: 3px;
    margin-bottom: 3px;
  }
  .btn-lg {
    min-width: inherit;
    width: 100%;
  }
  .nav-tabs-custom {
    padding-left: 0;
  }
  .nav-tabs-custom > li {
    border-bottom: 2px solid transparent;
    margin: 2px 0 0;
    background: rgba(0, 0, 0, 0.015);
    float: none;
    display: inline-block;
  }
  .chart-circle {
    margin-bottom: 15px;
  }
  .applications-list .app-stats {
    display: block;
  }
  .applications-list .app-stats > div {
    display: block;
  }
  .applications-list .app-stats .app-req, .applications-list .app-stats .location {
    border: 0;
  }
  .activity-row {
    padding: 10px;
  }
  .activity-time {
    width: 100px;
  }
  .conversation-section .conversation-thumb {
    width: 100px;
  }
  .conversation-section.conversation-reply .conversation-content {
    margin-right: 110px;
  }
  .conversation-section .conversation-content {
    margin-left: 110px;
  }
  .cv-builder-section .user-thumb {
    margin: 0 auto 10px;
  }
  .contact-info-section {
    text-align: center;
  }
  .cv-builder-section .left-years-section .label {
    width: 90px;
    left: -10px;
    white-space: normal;
  }
  .cv-builder-section .left-years-section + .cv-right-content {
    margin-left: 100px;
  }
  .add-more-link {
    margin-bottom: 20px;
    display: inline-block;
  }
  .timeline-nav-section, .timeline-user-title-section {
    position: static;
  }
  .timeline-user-img {
    width: 80px;
    height: 80px;
  }
  .timeline-user-title-section .timeline-user-title {
    padding-left: 110px;
  }
  .timeline-social-section {
    float: none;
  }
  .widget-timeline {
    margin-bottom: 10px;
  }
  .timeline-nav-section .timeline-nav {
    padding-left: 0;
  }
  .timeline-nav-section .timeline-nav li {
    padding: 3px 6px 3px 0;
  }
  .timeline-nav-section {
    padding: 0 15px;
  }
  .nav-tabs-custom2 {
    padding-left: 15px;
  }
  .company-profile-page .nav-tabs-custom2 > li > a {
    min-width: inherit;
  }
  .tabs-wrap {
    margin-bottom: 30px;
  }
  .social-section {
    margin-bottom: 15px;
  }
  .company-profile-page .post-sm {
    padding-bottom: 0;
    margin-bottom: 15px;
  }
  .text-box-style1 {
    margin-bottom: 15px;
  }
  .page-header {
    margin: 20px 0;
  }
  .contact-info-section {
    text-align: left;
  }
  .modal-fullscreen .sub-navbar li {
    padding-top: 3px;
    padding-bottom: 3px;
    min-width: 120px;
  }
  .feedback-stars {
    display: inline-block;
  }
  .hobbies-list li {
    width: 90px;
    height: auto;
    padding: 7px;
  }
  .hobbies-list .related-icon {
    font-size: 24px;
  }
  .sub-navbar {
    text-align: inherit;
  }
  .tab-header {
    margin: 15px 0;
  }
  .interviews-list .time-section,
  .interviews-list .date-section {
    width: auto;
  }
  .pagination {
    margin-bottom: 0;
    margin-top: 20px;
  }
  .may-you-interested-in.col-md-2 {
    margin-left: 15px;
    margin-right: 15px;
  }
  .companies > div {
    padding-left: 5px;
    padding-right: 5px;
  }
  .companies .company-logo {
    width: inherit;
    height: inherit;
    max-width: 100px;
  }
  .job-style1 .job-actions-section p {
    float: right;
  }
}

@media (max-width: 479px) {
  .footer-social-nav,
  .footer-bottom .footer-bottom-text {
    text-align: center;
  }
  .helpline-box {
    font-size: 18px;
  }
  .employer-steps-section .step-num {
    margin-top: 15px;
    font-size: 36px;
    line-height: 1.5;
  }
  .employer-steps-section h4 {
    font-size: 14px;
    margin-top: 5px;
  }
  .chart-circle .chart-inner {
    padding-top: 31px;
  }
  .chart-circle .chart-inner label {
    font-size: 30px;
  }
  .applications-list, .interviews-list {
    text-align: center;
  }
  .applications-list .app-userthumb, .applications-list .app-userthumb, .interviews-list .app-userthumb, .interviews-list .app-userthumb {
    float: none;
    display: block;
    margin: 0 auto;
  }
  .activity-time,
  .activity-text {
    float: none;
    padding: 0;
    display: block;
    width: auto;
  }
  .activity-row {
    position: relative;
  }
  .activity-time {
    text-align: right;
    color: #aaa;
    position: absolute;
    right: 10px;
    bottom: 7px;
    display: none;
    font-size: 0.8em;
  }
  .activity-row:hover .activity-time {
    display: block;
  }
  .conversation-section .conversation-thumb {
    display: none;
  }
  .conversation-section.conversation-reply .conversation-content {
    margin-right: 0;
    background: #fbfbfb;
  }
  .conversation-section .conversation-content {
    margin-left: 0;
  }
  .cv-builder-section .left-years-section {
    float: none;
  }
  .cv-builder-section .left-years-section + .cv-right-content {
    margin-left: 0;
  }
  .cv-builder-section .left-years-section .label {
    position: static;
    display: inline-block;
    width: auto;
  }
  .cv-builder-section .cv-builder-text-section:after {
    display: none;
  }
  .cv-builder-section h3 {
    margin-top: 15px;
  }
  .nav-tabs-custom2 {
    padding-left: 0;
  }
  .nav-tabs-custom2 > li {
    width: auto;
    float: none;
    margin: 0;
  }
  .nav-tabs-custom2 > li > a {
    margin: 0;
  }
  .company-profile-page .nav-tabs-custom2 > li > a {
    padding: 6px;
  }
  /*   IRCD STRT  */
  .modal-fullscreen {
	padding: 0 !important;
	}
	
	/*   IRCD END */
}
