

/*


WARNING: This file doesn't appear to be in use!


*/


@import url(https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700);
@import url(https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700);
@import url(https://fonts.googleapis.com/css?family=Muli:300,400,600,700,800,900);
@import url(https://fonts.googleapis.com/css?family=Raleway:400,500,600,700);
@import url(https://fonts.googleapis.com/css?family=Josefin+Slab:400,600,700);
@-webkit-keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  30%, 70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }
}
@keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  30%, 70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }
}
@-webkit-keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  10% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  20% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  10% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  20% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.dropzone, .dropzone * {
  box-sizing: border-box;
}

.dropzone {
  min-height: 150px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  background: white;
  padding: 20px 20px;
}
.dropzone.dz-clickable {
  cursor: pointer;
}
.dropzone.dz-clickable * {
  cursor: default;
}
.dropzone.dz-clickable .dz-message, .dropzone.dz-clickable .dz-message * {
  cursor: pointer;
}
.dropzone.dz-started .dz-message {
  display: none;
}
.dropzone.dz-drag-hover {
  border-style: solid;
}
.dropzone.dz-drag-hover .dz-message {
  opacity: 0.5;
}
.dropzone .dz-message {
  text-align: center;
  margin: 2em 0;
}
.cursor-pointer {
    cursor: pointer;
}
.dropzone .dz-message .dz-button {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}
.dropzone .dz-preview {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 16px;
  min-height: 100px;
}
.dropzone .dz-preview:hover {
  z-index: 1000;
}
.dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}
.dropzone .dz-preview.dz-file-preview .dz-image {
  border-radius: 20px;
  background: #999;
  background: linear-gradient(to bottom, #eee, #ddd);
}
.dropzone .dz-preview.dz-file-preview .dz-details {
  opacity: 1;
}
.dropzone .dz-preview.dz-image-preview {
  background: white;
}
.dropzone .dz-preview.dz-image-preview .dz-details {
  transition: opacity 0.2s linear;
}
.dropzone .dz-preview .dz-remove {
  font-size: 14px;
  text-align: center;
  display: block;
  cursor: pointer;
  border: none;
}
.dropzone .dz-preview .dz-remove:hover {
  text-decoration: underline;
}
.dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}
.dropzone .dz-preview .dz-details {
  z-index: 20;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  font-size: 13px;
  min-width: 100%;
  max-width: 100%;
  padding: 2em 1em;
  text-align: center;
  color: rgba(0, 0, 0, 0.9);
  line-height: 150%;
}
.dropzone .dz-preview .dz-details .dz-size {
  margin-bottom: 1em;
  font-size: 16px;
}
.dropzone .dz-preview .dz-details .dz-filename {
  white-space: nowrap;
}
.dropzone .dz-preview .dz-details .dz-filename:hover span {
  border: 1px solid rgba(200, 200, 200, 0.8);
  background-color: rgba(255, 255, 255, 0.8);
}
.dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
  overflow: hidden;
  text-overflow: ellipsis;
}
.dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
  border: 1px solid transparent;
}
.dropzone .dz-preview .dz-details .dz-filename span, .dropzone .dz-preview .dz-details .dz-size span {
  background-color: rgba(255, 255, 255, 0.4);
  padding: 0 0.4em;
  border-radius: 3px;
}
.dropzone .dz-preview:hover .dz-image img {
  -webkit-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
  -webkit-filter: blur(8px);
  filter: blur(8px);
}
.dropzone .dz-preview .dz-image {
  border-radius: 20px;
  overflow: hidden;
  width: 120px;
  height: 120px;
  position: relative;
  display: block;
  z-index: 10;
}
.dropzone .dz-preview .dz-image img {
  display: block;
}
.dropzone .dz-preview.dz-success .dz-success-mark {
  -webkit-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
  animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
}
.dropzone .dz-preview.dz-error .dz-error-mark {
  opacity: 1;
  -webkit-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
  animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
}
.dropzone .dz-preview .dz-success-mark, .dropzone .dz-preview .dz-error-mark {
  pointer-events: none;
  opacity: 0;
  z-index: 500;
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  margin-left: -27px;
  margin-top: -27px;
}
.dropzone .dz-preview .dz-success-mark svg, .dropzone .dz-preview .dz-error-mark svg {
  display: block;
  width: 54px;
  height: 54px;
}
.dropzone .dz-preview.dz-processing .dz-progress {
  opacity: 1;
  transition: all 0.2s linear;
}
.dropzone .dz-preview.dz-complete .dz-progress {
  opacity: 0;
  transition: opacity 0.4s ease-in;
}
.dropzone .dz-preview:not(.dz-processing) .dz-progress {
  -webkit-animation: pulse 6s ease infinite;
  animation: pulse 6s ease infinite;
}
.dropzone .dz-preview .dz-progress {
  opacity: 1;
  z-index: 1000;
  pointer-events: none;
  position: absolute;
  height: 16px;
  left: 50%;
  top: 50%;
  margin-top: -8px;
  width: 80px;
  margin-left: -40px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-transform: scale(1);
  border-radius: 8px;
  overflow: hidden;
}
.dropzone .dz-preview .dz-progress .dz-upload {
  background: #333;
  background: linear-gradient(to bottom, #666, #444);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  transition: width 300ms ease-in-out;
}
.dropzone .dz-preview.dz-error .dz-error-message {
  display: block;
}
.dropzone .dz-preview.dz-error:hover .dz-error-message {
  opacity: 1;
  pointer-events: auto;
}
.dropzone .dz-preview .dz-error-message {
  pointer-events: none;
  z-index: 1000;
  position: absolute;
  display: block;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 8px;
  font-size: 13px;
  top: 130px;
  left: -10px;
  width: 140px;
  background: #be2626;
  background: linear-gradient(to bottom, #be2626, #a92222);
  padding: 0.5em 1.2em;
  color: white;
}
.dropzone .dz-preview .dz-error-message:after {
  content: "";
  position: absolute;
  top: -6px;
  left: 64px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #be2626;
}
@charset "UTF-8";
.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: 28px;
  -moz-user-select: none;
       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 {
  background-color: transparent;
  border: none;
  font-size: 1em;
}

.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;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline;
  list-style: none;
  padding: 0;
}

.select2-container .select2-selection--multiple .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}

.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  margin-left: 5px;
  padding: 0;
  max-width: 100%;
  resize: none;
  height: 18px;
  vertical-align: bottom;
  font-family: sans-serif;
  overflow: hidden;
  word-break: keep-all;
}

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

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  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;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-results__option--selectable {
  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;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

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

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

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px;
  padding-right: 0px;
}

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

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

.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;
  border-radius: 4px;
  cursor: text;
  padding-bottom: 5px;
  padding-right: 5px;
  position: relative;
}

.select2-container--default .select2-selection--multiple.select2-selection--clearable {
  padding-right: 25px;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  font-weight: bold;
  height: 20px;
  margin-right: 10px;
  margin-top: 5px;
  position: absolute;
  right: 0;
  padding: 1px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
  padding-left: 20px;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
  white-space: nowrap;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-right: 1px solid #aaa;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #999;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px;
  position: absolute;
  left: 0;
  top: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover, .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
  background-color: #f1f1f1;
  color: #333;
  outline: none;
}

.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__display {
  padding-left: 5px;
  padding-right: 2px;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  border-left: 1px solid #aaa;
  border-right: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__clear {
  float: left;
  margin-left: 10px;
  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 .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--group {
  padding: 0;
}

.select2-container--default .select2-results__option--disabled {
  color: #999;
}

.select2-container--default .select2-results__option--selected {
  background-color: #ddd;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #5897fb;
  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 #aaa;
  border-radius: 4px;
  outline: 0;
  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: 28px;
}

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

.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 #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  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 #aaa;
  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: 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: 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 #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
  padding-bottom: 5px;
  padding-right: 5px;
}

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

.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 #aaa;
  border-radius: 4px;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #888;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px;
}

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

.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__display {
  padding-left: 5px;
  padding-right: 2px;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.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 #aaa;
  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--group {
  padding: 0;
}

.select2-container--classic .select2-results__option--disabled {
  color: grey;
}

.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable {
  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;
}

/*!
 * Bootstrap v4.6.2 (https://getbootstrap.com/)
 * Copyright 2011-2022 The Bootstrap Authors
 * Copyright 2011-2022 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
}
a:hover {
  color: #0056b3;
  text-decoration: underline;
}

a:not([href]):not([class]) {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=radio],
input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h1, .h1 {
  font-size: 2.5rem;
}

h2, .h2 {
  font-size: 2rem;
}

h3, .h3 {
  font-size: 1.75rem;
}

h4, .h4 {
  font-size: 1.5rem;
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

small,
.small {
  font-size: 0.875em;
  font-weight: 400;
}

mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}
.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.blockquote-footer {
  display: block;
  font-size: 0.875em;
  color: #6c757d;
}
.blockquote-footer::before {
  content: "— ";
}

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

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 90%;
  color: #6c757d;
}

code {
  font-size: 87.5%;
  color: #e83e8c;
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 87.5%;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
}

pre {
  display: block;
  font-size: 87.5%;
  color: #212529;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

.container,
.container-fluid,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-xl,
.col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg,
.col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md,
.col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm,
.col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col,
.col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.row-cols-1 > * {
  flex: 0 0 100%;
  max-width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 50%;
  max-width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 25%;
  max-width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 20%;
  max-width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  flex: 0 0 8.33333333%;
  max-width: 8.33333333%;
}

.col-2 {
  flex: 0 0 16.66666667%;
  max-width: 16.66666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.33333333%;
  max-width: 33.33333333%;
}

.col-5 {
  flex: 0 0 41.66666667%;
  max-width: 41.66666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.33333333%;
  max-width: 58.33333333%;
}

.col-8 {
  flex: 0 0 66.66666667%;
  max-width: 66.66666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.33333333%;
  max-width: 83.33333333%;
}

.col-11 {
  flex: 0 0 91.66666667%;
  max-width: 91.66666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    order: -1;
  }
  .order-sm-last {
    order: 13;
  }
  .order-sm-0 {
    order: 0;
  }
  .order-sm-1 {
    order: 1;
  }
  .order-sm-2 {
    order: 2;
  }
  .order-sm-3 {
    order: 3;
  }
  .order-sm-4 {
    order: 4;
  }
  .order-sm-5 {
    order: 5;
  }
  .order-sm-6 {
    order: 6;
  }
  .order-sm-7 {
    order: 7;
  }
  .order-sm-8 {
    order: 8;
  }
  .order-sm-9 {
    order: 9;
  }
  .order-sm-10 {
    order: 10;
  }
  .order-sm-11 {
    order: 11;
  }
  .order-sm-12 {
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-md-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    order: -1;
  }
  .order-md-last {
    order: 13;
  }
  .order-md-0 {
    order: 0;
  }
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-3 {
    order: 3;
  }
  .order-md-4 {
    order: 4;
  }
  .order-md-5 {
    order: 5;
  }
  .order-md-6 {
    order: 6;
  }
  .order-md-7 {
    order: 7;
  }
  .order-md-8 {
    order: 8;
  }
  .order-md-9 {
    order: 9;
  }
  .order-md-10 {
    order: 10;
  }
  .order-md-11 {
    order: 11;
  }
  .order-md-12 {
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    order: -1;
  }
  .order-lg-last {
    order: 13;
  }
  .order-lg-0 {
    order: 0;
  }
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
  .order-lg-3 {
    order: 3;
  }
  .order-lg-4 {
    order: 4;
  }
  .order-lg-5 {
    order: 5;
  }
  .order-lg-6 {
    order: 6;
  }
  .order-lg-7 {
    order: 7;
  }
  .order-lg-8 {
    order: 8;
  }
  .order-lg-9 {
    order: 9;
  }
  .order-lg-10 {
    order: 10;
  }
  .order-lg-11 {
    order: 11;
  }
  .order-lg-12 {
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    order: -1;
  }
  .order-xl-last {
    order: 13;
  }
  .order-xl-0 {
    order: 0;
  }
  .order-xl-1 {
    order: 1;
  }
  .order-xl-2 {
    order: 2;
  }
  .order-xl-3 {
    order: 3;
  }
  .order-xl-4 {
    order: 4;
  }
  .order-xl-5 {
    order: 5;
  }
  .order-xl-6 {
    order: 6;
  }
  .order-xl-7 {
    order: 7;
  }
  .order-xl-8 {
    order: 8;
  }
  .order-xl-9 {
    order: 9;
  }
  .order-xl-10 {
    order: 10;
  }
  .order-xl-11 {
    order: 11;
  }
  .order-xl-12 {
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
}
.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
}
.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}
.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}
.table tbody + tbody {
  border-top: 2px solid #dee2e6;
}

.table-sm th,
.table-sm td {
  padding: 0.3rem;
}

.table-bordered {
  border: 1px solid #dee2e6;
}
.table-bordered th,
.table-bordered td {
  border: 1px solid #dee2e6;
}
.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}

.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
  border: 0;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
  color: #212529;
  background-color: rgba(0, 0, 0, 0.075);
}

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: #b8daff;
}
.table-primary th,
.table-primary td,
.table-primary thead th,
.table-primary tbody + tbody {
  border-color: #7abaff;
}

.table-hover .table-primary:hover {
  background-color: #9fcdff;
}
.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: #9fcdff;
}

.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: #d6d8db;
}
.table-secondary th,
.table-secondary td,
.table-secondary thead th,
.table-secondary tbody + tbody {
  border-color: #b3b7bb;
}

.table-hover .table-secondary:hover {
  background-color: #c8cbcf;
}
.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: #c8cbcf;
}

.table-success,
.table-success > th,
.table-success > td {
  background-color: #c3e6cb;
}
.table-success th,
.table-success td,
.table-success thead th,
.table-success tbody + tbody {
  border-color: #8fd19e;
}

.table-hover .table-success:hover {
  background-color: #b1dfbb;
}
.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: #b1dfbb;
}

.table-info,
.table-info > th,
.table-info > td {
  background-color: #bee5eb;
}
.table-info th,
.table-info td,
.table-info thead th,
.table-info tbody + tbody {
  border-color: #86cfda;
}

.table-hover .table-info:hover {
  background-color: #abdde5;
}
.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: #abdde5;
}

.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: #ffeeba;
}
.table-warning th,
.table-warning td,
.table-warning thead th,
.table-warning tbody + tbody {
  border-color: #ffdf7e;
}

.table-hover .table-warning:hover {
  background-color: #ffe8a1;
}
.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: #ffe8a1;
}

.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: #f5c6cb;
}
.table-danger th,
.table-danger td,
.table-danger thead th,
.table-danger tbody + tbody {
  border-color: #ed969e;
}

.table-hover .table-danger:hover {
  background-color: #f1b0b7;
}
.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: #f1b0b7;
}

.table-light,
.table-light > th,
.table-light > td {
  background-color: #fdfdfe;
}
.table-light th,
.table-light td,
.table-light thead th,
.table-light tbody + tbody {
  border-color: #fbfcfc;
}

.table-hover .table-light:hover {
  background-color: #ececf6;
}
.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: #ececf6;
}

.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: #c6c8ca;
}
.table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
  border-color: #95999c;
}

.table-hover .table-dark:hover {
  background-color: #b9bbbe;
}
.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: #b9bbbe;
}

.table-active,
.table-active > th,
.table-active > td {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}
.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}

.table .thead-dark th {
  color: #fff;
  background-color: #343a40;
  border-color: #454d55;
}
.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.table-dark {
  color: #fff;
  background-color: #343a40;
}
.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: #454d55;
}
.table-dark.table-bordered {
  border: 0;
}
.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}
.table-dark.table-hover tbody tr:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}
@media (max-width: 767.98px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-md > .table-bordered {
    border: 0;
  }
}
@media (max-width: 991.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}
@media (max-width: 1199.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table-responsive > .table-bordered {
  border: 0;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

input[type=date].form-control,
input[type=time].form-control,
input[type=datetime-local].form-control,
input[type=month].form-control {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}
select.form-control:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
  line-height: 1.5;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
  line-height: 1.5;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.form-control-lg {
  height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

select.form-control[size], select.form-control[multiple] {
  height: auto;
}

textarea.form-control {
  height: auto;
}

.form-group {
  margin-bottom: 1rem;
}

.form-text {
  display: block;
  margin-top: 0.25rem;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}
.form-row > .col,
.form-row > [class*=col-] {
  padding-right: 5px;
  padding-left: 5px;
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
}

.form-check-label {
  margin-bottom: 0;
}

.form-check-inline {
  display: inline-flex;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}
.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #28a745;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(40, 167, 69, 0.9);
  border-radius: 0.25rem;
}
.form-row > .col > .valid-tooltip, .form-row > [class*=col-] > .valid-tooltip {
  left: 5px;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #28a745;
  padding-right: calc(1.5em + 0.75rem) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated select.form-control:valid, select.form-control.is-valid {
  padding-right: 3rem !important;
  background-position: right 1.5rem center;
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .custom-select:valid, .custom-select.is-valid {
  border-color: #28a745;
  padding-right: calc(0.75em + 2.3125rem) !important;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat, #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat;
}
.was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #28a745;
}
.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
  color: #28a745;
}
.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
  border-color: #28a745;
}
.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  border-color: #34ce57;
  background-color: #34ce57;
}
.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}
.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #28a745;
}

.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
  border-color: #28a745;
}
.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #dc3545;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0.25rem;
}
.form-row > .col > .invalid-tooltip, .form-row > [class*=col-] > .invalid-tooltip {
  left: 5px;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated select.form-control:invalid, select.form-control.is-invalid {
  padding-right: 3rem !important;
  background-position: right 1.5rem center;
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .custom-select:invalid, .custom-select.is-invalid {
  border-color: #dc3545;
  padding-right: calc(0.75em + 2.3125rem) !important;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat, #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat;
}
.was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}
.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
  color: #dc3545;
}
.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
  border-color: #dc3545;
}
.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  border-color: #e4606d;
  background-color: #e4606d;
}
.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #dc3545;
}

.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #dc3545;
}
.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.form-inline .form-check {
  width: 100%;
}
@media (min-width: 576px) {
  .form-inline label {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }
  .form-inline .form-group {
    display: flex;
    flex: 0 0 auto;
    flex-flow: row wrap;
    align-items: center;
    margin-bottom: 0;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-plaintext {
    display: inline-block;
  }
  .form-inline .input-group,
  .form-inline .custom-select {
    width: auto;
  }
  .form-inline .form-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding-left: 0;
  }
  .form-inline .form-check-input {
    position: relative;
    flex-shrink: 0;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }
  .form-inline .custom-control {
    align-items: center;
    justify-content: center;
  }
  .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}

.btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: #212529;
  text-decoration: none;
}
.btn:focus, .btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.btn.disabled, .btn:disabled {
  opacity: 0.65;
}
.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}
a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none;
}

.btn-primary {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-primary:hover {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
}
.btn-primary:focus, .btn-primary.focus {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
  box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}
.btn-primary.disabled, .btn-primary:disabled {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #0062cc;
  border-color: #005cbf;
}
.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

.btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-secondary:hover {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
}
.btn-secondary:focus, .btn-secondary.focus {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
  box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}
.btn-secondary.disabled, .btn-secondary:disabled {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #545b62;
  border-color: #4e555b;
}
.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}

.btn-success {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-success:hover {
  color: #fff;
  background-color: #218838;
  border-color: #1e7e34;
}
.btn-success:focus, .btn-success.focus {
  color: #fff;
  background-color: #218838;
  border-color: #1e7e34;
  box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
}
.btn-success.disabled, .btn-success:disabled {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #1e7e34;
  border-color: #1c7430;
}
.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, .show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
}

.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-info:hover {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
}
.btn-info:focus, .btn-info.focus {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
  box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
}
.btn-info.disabled, .btn-info:disabled {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, .show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #117a8b;
  border-color: #10707f;
}
.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, .show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
}

.btn-warning {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:hover {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
}
.btn-warning:focus, .btn-warning.focus {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
  box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
}
.btn-warning.disabled, .btn-warning:disabled {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, .show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #d39e00;
  border-color: #c69500;
}
.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
}

.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:hover {
  color: #fff;
  background-color: #c82333;
  border-color: #bd2130;
}
.btn-danger:focus, .btn-danger.focus {
  color: #fff;
  background-color: #c82333;
  border-color: #bd2130;
  box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
}
.btn-danger.disabled, .btn-danger:disabled {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, .show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #bd2130;
  border-color: #b21f2d;
}
.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
}

.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:hover {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
}
.btn-light:focus, .btn-light.focus {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
  box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}
.btn-light.disabled, .btn-light:disabled {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: #dae0e5;
  border-color: #d3d9df;
}
.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, .show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}

.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-dark:hover {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
}
.btn-dark:focus, .btn-dark.focus {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
  box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}
.btn-dark.disabled, .btn-dark:disabled {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, .show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1d2124;
  border-color: #171a1d;
}
.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}

.btn-outline-primary {
  color: #007bff;
  border-color: #007bff;
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-outline-primary:focus, .btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}
.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #007bff;
  background-color: transparent;
}
.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-outline-secondary {
  color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:focus, .btn-outline-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}
.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  color: #6c757d;
  background-color: transparent;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-success {
  color: #28a745;
  border-color: #28a745;
}
.btn-outline-success:hover {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-outline-success:focus, .btn-outline-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}
.btn-outline-success.disabled, .btn-outline-success:disabled {
  color: #28a745;
  background-color: transparent;
}
.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, .show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-info {
  color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:hover {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:focus, .btn-outline-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}
.btn-outline-info.disabled, .btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}
.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, .show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-warning {
  color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:hover {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:focus, .btn-outline-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}
.btn-outline-warning.disabled, .btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent;
}
.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, .show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-danger {
  color: #dc3545;
  border-color: #dc3545;
}
.btn-outline-danger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-outline-danger:focus, .btn-outline-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}
.btn-outline-danger.disabled, .btn-outline-danger:disabled {
  color: #dc3545;
  background-color: transparent;
}
.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, .show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-light {
  color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:hover {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:focus, .btn-outline-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
.btn-outline-light.disabled, .btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}
.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, .show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-dark {
  color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:focus, .btn-outline-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}
.btn-outline-dark.disabled, .btn-outline-dark:disabled {
  color: #343a40;
  background-color: transparent;
}
.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, .show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-link {
  font-weight: 400;
  color: #007bff;
  text-decoration: none;
}
.btn-link:hover {
  color: #0056b3;
  text-decoration: underline;
}
.btn-link:focus, .btn-link.focus {
  text-decoration: underline;
}
.btn-link:disabled, .btn-link.disabled {
  color: #6c757d;
  pointer-events: none;
}

.btn-lg, .btn-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.btn-sm, .btn-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.btn-block {
  display: block;
  width: 100%;
}
.btn-block + .btn-block {
  margin-top: 0.5rem;
}

input[type=submit].btn-block,
input[type=reset].btn-block,
input[type=button].btn-block {
  width: 100%;
}

.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
.collapsing.width {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing.width {
    transition: none;
  }
}

.dropup,
.dropright,
.dropdown,
.dropleft {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

.dropdown-menu-left {
  right: auto;
  left: 0;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-sm-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 768px) {
  .dropdown-menu-md-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-md-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  .dropdown-menu-lg-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-lg-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .dropdown-menu-xl-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xl-right {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}
.dropright .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}
.dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropright .dropdown-toggle::after {
  vertical-align: 0;
}

.dropleft .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}
.dropleft .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}
.dropleft .dropdown-toggle::after {
  display: none;
}
.dropleft .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}
.dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropleft .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-menu[x-placement^=top], .dropdown-menu[x-placement^=right], .dropdown-menu[x-placement^=bottom], .dropdown-menu[x-placement^=left] {
  right: auto;
  bottom: auto;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:hover, .dropdown-item:focus {
  color: #16181b;
  text-decoration: none;
  background-color: #e9ecef;
}
.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #007bff;
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: #adb5bd;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1.5rem;
  color: #212529;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  flex: 1 1 auto;
}
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover {
  z-index: 1;
}
.btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.btn-toolbar .input-group {
  width: auto;
}

.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  margin-left: -1px;
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}
.dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropright .dropdown-toggle-split::after {
  margin-left: 0;
}
.dropleft .dropdown-toggle-split::before {
  margin-right: 0;
}

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  width: 100%;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: -1px;
}
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.btn-group-toggle > .btn,
.btn-group-toggle > .btn-group > .btn {
  margin-bottom: 0;
}
.btn-group-toggle > .btn input[type=radio],
.btn-group-toggle > .btn input[type=checkbox],
.btn-group-toggle > .btn-group > .btn input[type=radio],
.btn-group-toggle > .btn-group > .btn input[type=checkbox] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control,
.input-group > .form-control-plaintext,
.input-group > .custom-select,
.input-group > .custom-file {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
  margin-bottom: 0;
}
.input-group > .form-control + .form-control,
.input-group > .form-control + .custom-select,
.input-group > .form-control + .custom-file,
.input-group > .form-control-plaintext + .form-control,
.input-group > .form-control-plaintext + .custom-select,
.input-group > .form-control-plaintext + .custom-file,
.input-group > .custom-select + .form-control,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .custom-file,
.input-group > .custom-file + .form-control,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .custom-file {
  margin-left: -1px;
}
.input-group > .form-control:focus,
.input-group > .custom-select:focus,
.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
  z-index: 3;
}
.input-group > .custom-file .custom-file-input:focus {
  z-index: 4;
}
.input-group > .form-control:not(:first-child),
.input-group > .custom-select:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group > .custom-file {
  display: flex;
  align-items: center;
}
.input-group > .custom-file:not(:last-child) .custom-file-label, .input-group > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > .custom-file:not(:first-child) .custom-file-label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group:not(.has-validation) > .form-control:not(:last-child),
.input-group:not(.has-validation) > .custom-select:not(:last-child),
.input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label,
.input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group.has-validation > .form-control:nth-last-child(n+3),
.input-group.has-validation > .custom-select:nth-last-child(n+3),
.input-group.has-validation > .custom-file:nth-last-child(n+3) .custom-file-label,
.input-group.has-validation > .custom-file:nth-last-child(n+3) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group-prepend,
.input-group-append {
  display: flex;
}
.input-group-prepend .btn,
.input-group-append .btn {
  position: relative;
  z-index: 2;
}
.input-group-prepend .btn:focus,
.input-group-append .btn:focus {
  z-index: 3;
}
.input-group-prepend .btn + .btn,
.input-group-prepend .btn + .input-group-text,
.input-group-prepend .input-group-text + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-append .btn + .btn,
.input-group-append .btn + .input-group-text,
.input-group-append .input-group-text + .input-group-text,
.input-group-append .input-group-text + .btn {
  margin-left: -1px;
}

.input-group-prepend {
  margin-right: -1px;
}

.input-group-append {
  margin-left: -1px;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}
.input-group-text input[type=radio],
.input-group-text input[type=checkbox] {
  margin-top: 0;
}

.input-group-lg > .form-control:not(textarea),
.input-group-lg > .custom-select {
  height: calc(1.5em + 1rem + 2px);
}

.input-group-lg > .form-control,
.input-group-lg > .custom-select,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-append > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.input-group-sm > .form-control:not(textarea),
.input-group-sm > .custom-select {
  height: calc(1.5em + 0.5rem + 2px);
}

.input-group-sm > .form-control,
.input-group-sm > .custom-select,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-append > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.input-group-lg > .custom-select,
.input-group-sm > .custom-select {
  padding-right: 1.75rem;
}

.input-group > .input-group-prepend > .btn,
.input-group > .input-group-prepend > .input-group-text,
.input-group:not(.has-validation) > .input-group-append:not(:last-child) > .btn,
.input-group:not(.has-validation) > .input-group-append:not(:last-child) > .input-group-text,
.input-group.has-validation > .input-group-append:nth-last-child(n+3) > .btn,
.input-group.has-validation > .input-group-append:nth-last-child(n+3) > .input-group-text,
.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .input-group-append > .btn,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.custom-control {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
}

.custom-control-inline {
  display: inline-flex;
  margin-right: 1rem;
}

.custom-control-input {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.25rem;
  opacity: 0;
}
.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #007bff;
  background-color: #007bff;
}
.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #80bdff;
}
.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #fff;
  background-color: #b3d7ff;
  border-color: #b3d7ff;
}
.custom-control-input[disabled] ~ .custom-control-label, .custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}
.custom-control-input[disabled] ~ .custom-control-label::before, .custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef;
}

.custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
}
.custom-control-label::before {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: #fff;
  border: 1px solid #adb5bd;
}
.custom-control-label::after {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: 50%/50% 50% no-repeat;
}

.custom-checkbox .custom-control-label::before {
  border-radius: 0.25rem;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  border-color: #007bff;
  background-color: #007bff;
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
}
.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}
.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-radio .custom-control-label::before {
  border-radius: 50%;
}
.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-switch {
  padding-left: 2.25rem;
}
.custom-switch .custom-control-label::before {
  left: -2.25rem;
  width: 1.75rem;
  pointer-events: all;
  border-radius: 0.5rem;
}
.custom-switch .custom-control-label::after {
  top: calc(0.25rem + 2px);
  left: calc(-2.25rem + 2px);
  width: calc(1rem - 4px);
  height: calc(1rem - 4px);
  background-color: #adb5bd;
  border-radius: 0.5rem;
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .custom-switch .custom-control-label::after {
    transition: none;
  }
}
.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  background-color: #fff;
  transform: translateX(0.75rem);
}
.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.custom-select:focus {
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-select:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}
.custom-select[multiple], .custom-select[size]:not([size="1"]) {
  height: auto;
  padding-right: 0.75rem;
  background-image: none;
}
.custom-select:disabled {
  color: #6c757d;
  background-color: #e9ecef;
}
.custom-select::-ms-expand {
  display: none;
}
.custom-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}

.custom-select-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
}

.custom-select-lg {
  height: calc(1.5em + 1rem + 2px);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
}

.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin-bottom: 0;
}

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin: 0;
  overflow: hidden;
  opacity: 0;
}
.custom-file-input:focus ~ .custom-file-label {
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-file-input[disabled] ~ .custom-file-label, .custom-file-input:disabled ~ .custom-file-label {
  background-color: #e9ecef;
}
.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";
}
.custom-file-input ~ .custom-file-label[data-browse]::after {
  content: attr(data-browse);
}

.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  overflow: hidden;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}
.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: calc(1.5em + 0.75rem);
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  content: "Browse";
  background-color: #e9ecef;
  border-left: inherit;
  border-radius: 0 0.25rem 0.25rem 0;
}

.custom-range {
  width: 100%;
  height: 1.4rem;
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.custom-range:focus {
  outline: 0;
}
.custom-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-range::-moz-focus-outer {
  border: 0;
}
.custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
          appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}
.custom-range::-webkit-slider-thumb:active {
  background-color: #b3d7ff;
}
.custom-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.custom-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -moz-appearance: none;
       appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}
.custom-range::-moz-range-thumb:active {
  background-color: #b3d7ff;
}
.custom-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.custom-range::-ms-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: 0;
  margin-right: 0.2rem;
  margin-left: 0.2rem;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  -ms-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-ms-thumb {
    -ms-transition: none;
    transition: none;
  }
}
.custom-range::-ms-thumb:active {
  background-color: #b3d7ff;
}
.custom-range::-ms-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: transparent;
  border-color: transparent;
  border-width: 0.5rem;
}
.custom-range::-ms-fill-lower {
  background-color: #dee2e6;
  border-radius: 1rem;
}
.custom-range::-ms-fill-upper {
  margin-right: 15px;
  background-color: #dee2e6;
  border-radius: 1rem;
}
.custom-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}
.custom-range:disabled::-webkit-slider-runnable-track {
  cursor: default;
}
.custom-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}
.custom-range:disabled::-moz-range-track {
  cursor: default;
}
.custom-range:disabled::-ms-thumb {
  background-color: #adb5bd;
}

.custom-control-label::before,
.custom-file-label,
.custom-select {
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .custom-control-label::before,
  .custom-file-label,
  .custom-select {
    transition: none;
  }
}

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}
.nav-link:hover, .nav-link:focus {
  text-decoration: none;
}
.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}
.nav-tabs .nav-link {
  margin-bottom: -1px;
  background-color: transparent;
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  isolation: isolate;
  border-color: #e9ecef #e9ecef #dee2e6;
}
.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: 0.25rem;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #007bff;
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}
.navbar .container,
.navbar .container-fluid,
.navbar .container-sm,
.navbar .container-md,
.navbar .container-lg,
.navbar .container-xl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}
.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}
.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

.navbar-text {
  display: inline-block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}
.navbar-toggler:hover, .navbar-toggler:focus {
  text-decoration: none;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: 50%/100% 100% no-repeat;
}

.navbar-nav-scroll {
  max-height: 75vh;
  overflow-y: auto;
}

@media (max-width: 575.98px) {
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid,
  .navbar-expand-sm > .container-sm,
  .navbar-expand-sm > .container-md,
  .navbar-expand-sm > .container-lg,
  .navbar-expand-sm > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid,
  .navbar-expand-sm > .container-sm,
  .navbar-expand-sm > .container-md,
  .navbar-expand-sm > .container-lg,
  .navbar-expand-sm > .container-xl {
    flex-wrap: nowrap;
  }
  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid,
  .navbar-expand-md > .container-sm,
  .navbar-expand-md > .container-md,
  .navbar-expand-md > .container-lg,
  .navbar-expand-md > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 768px) {
  .navbar-expand-md {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid,
  .navbar-expand-md > .container-sm,
  .navbar-expand-md > .container-md,
  .navbar-expand-md > .container-lg,
  .navbar-expand-md > .container-xl {
    flex-wrap: nowrap;
  }
  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid,
  .navbar-expand-lg > .container-sm,
  .navbar-expand-lg > .container-md,
  .navbar-expand-lg > .container-lg,
  .navbar-expand-lg > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid,
  .navbar-expand-lg > .container-sm,
  .navbar-expand-lg > .container-md,
  .navbar-expand-lg > .container-lg,
  .navbar-expand-lg > .container-xl {
    flex-wrap: nowrap;
  }
  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}
@media (max-width: 1199.98px) {
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid,
  .navbar-expand-xl > .container-sm,
  .navbar-expand-xl > .container-md,
  .navbar-expand-xl > .container-lg,
  .navbar-expand-xl > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid,
  .navbar-expand-xl > .container-sm,
  .navbar-expand-xl > .container-md,
  .navbar-expand-xl > .container-lg,
  .navbar-expand-xl > .container-xl {
    flex-wrap: nowrap;
  }
  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}
.navbar-expand {
  flex-flow: row nowrap;
  justify-content: flex-start;
}
.navbar-expand > .container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-sm,
.navbar-expand > .container-md,
.navbar-expand > .container-lg,
.navbar-expand > .container-xl {
  padding-right: 0;
  padding-left: 0;
}
.navbar-expand .navbar-nav {
  flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.navbar-expand > .container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-sm,
.navbar-expand > .container-md,
.navbar-expand > .container-lg,
.navbar-expand > .container-xl {
  flex-wrap: nowrap;
}
.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}
.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}
.navbar-expand .navbar-toggler {
  display: none;
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5);
}
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}
.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}
.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5);
}
.navbar-light .navbar-text a {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-dark .navbar-brand {
  color: #fff;
}
.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  color: #fff;
}
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
}
.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}
.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}
.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}
.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.5);
}
.navbar-dark .navbar-text a {
  color: #fff;
}
.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {
  color: #fff;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}
.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}
.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}

.card-body {
  flex: 1 1 auto;
  min-height: 1px;
  padding: 1.25rem;
}

.card-title {
  margin-bottom: 0.75rem;
}

.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}
.card-link + .card-link {
  margin-left: 1.25rem;
}

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}
.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
  border-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-top,
.card-img-bottom {
  flex-shrink: 0;
  width: 100%;
}

.card-img,
.card-img-top {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-bottom {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.card-deck .card {
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .card-deck {
    display: flex;
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .card-deck .card {
    flex: 1 0 0%;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}

.card-group > .card {
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .card-group {
    display: flex;
    flex-flow: row wrap;
  }
  .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-top,
  .card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-bottom,
  .card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-top,
  .card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-bottom,
  .card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}

.card-columns .card {
  margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
  .card-columns {
    -moz-column-count: 3;
         column-count: 3;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }
  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}

.accordion {
  overflow-anchor: none;
}
.accordion > .card {
  overflow: hidden;
}
.accordion > .card:not(:last-of-type) {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.accordion > .card:not(:first-of-type) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.accordion > .card > .card-header {
  border-radius: 0;
  margin-bottom: -1px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}
.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  color: #6c757d;
  content: "/";
}
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}
.breadcrumb-item.active {
  color: #6c757d;
}

.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
}

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #007bff;
  background-color: #fff;
  border: 1px solid #dee2e6;
}
.page-link:hover {
  z-index: 2;
  color: #0056b3;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}
.page-link:focus {
  z-index: 3;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
}
.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}
.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}
.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}
.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .badge {
    transition: none;
  }
}
a.badge:hover, a.badge:focus {
  text-decoration: none;
}

.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem;
}

.badge-primary {
  color: #fff;
  background-color: #007bff;
}
a.badge-primary:hover, a.badge-primary:focus {
  color: #fff;
  background-color: #0062cc;
}
a.badge-primary:focus, a.badge-primary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.badge-secondary {
  color: #fff;
  background-color: #6c757d;
}
a.badge-secondary:hover, a.badge-secondary:focus {
  color: #fff;
  background-color: #545b62;
}
a.badge-secondary:focus, a.badge-secondary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.badge-success {
  color: #fff;
  background-color: #28a745;
}
a.badge-success:hover, a.badge-success:focus {
  color: #fff;
  background-color: #1e7e34;
}
a.badge-success:focus, a.badge-success.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.badge-info {
  color: #fff;
  background-color: #17a2b8;
}
a.badge-info:hover, a.badge-info:focus {
  color: #fff;
  background-color: #117a8b;
}
a.badge-info:focus, a.badge-info.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.badge-warning {
  color: #212529;
  background-color: #ffc107;
}
a.badge-warning:hover, a.badge-warning:focus {
  color: #212529;
  background-color: #d39e00;
}
a.badge-warning:focus, a.badge-warning.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.badge-danger {
  color: #fff;
  background-color: #dc3545;
}
a.badge-danger:hover, a.badge-danger:focus {
  color: #fff;
  background-color: #bd2130;
}
a.badge-danger:focus, a.badge-danger.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.badge-light {
  color: #212529;
  background-color: #f8f9fa;
}
a.badge-light:hover, a.badge-light:focus {
  color: #212529;
  background-color: #dae0e5;
}
a.badge-light:focus, a.badge-light.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.badge-dark {
  color: #fff;
  background-color: #343a40;
}
a.badge-dark:hover, a.badge-dark:focus {
  color: #fff;
  background-color: #1d2124;
}
a.badge-dark:focus, a.badge-dark.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #e9ecef;
  border-radius: 0.3rem;
}
@media (min-width: 576px) {
  .jumbotron {
    padding: 4rem 2rem;
  }
}

.jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
  border-radius: 0;
}

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 4rem;
}
.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 0.75rem 1.25rem;
  color: inherit;
}

.alert-primary {
  color: #004085;
  background-color: #cce5ff;
  border-color: #b8daff;
}
.alert-primary hr {
  border-top-color: #9fcdff;
}
.alert-primary .alert-link {
  color: #002752;
}

.alert-secondary {
  color: #383d41;
  background-color: #e2e3e5;
  border-color: #d6d8db;
}
.alert-secondary hr {
  border-top-color: #c8cbcf;
}
.alert-secondary .alert-link {
  color: #202326;
}

.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}
.alert-success hr {
  border-top-color: #b1dfbb;
}
.alert-success .alert-link {
  color: #0b2e13;
}

.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}
.alert-info hr {
  border-top-color: #abdde5;
}
.alert-info .alert-link {
  color: #062c33;
}

.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}
.alert-warning hr {
  border-top-color: #ffe8a1;
}
.alert-warning .alert-link {
  color: #533f03;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}
.alert-danger hr {
  border-top-color: #f1b0b7;
}
.alert-danger .alert-link {
  color: #491217;
}

.alert-light {
  color: #818182;
  background-color: #fefefe;
  border-color: #fdfdfe;
}
.alert-light hr {
  border-top-color: #ececf6;
}
.alert-light .alert-link {
  color: #686868;
}

.alert-dark {
  color: #1b1e21;
  background-color: #d6d8d9;
  border-color: #c6c8ca;
}
.alert-dark hr {
  border-top-color: #b9bbbe;
}
.alert-dark .alert-link {
  color: #040505;
}

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  display: flex;
  height: 1rem;
  overflow: hidden;
  line-height: 0;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #007bff;
  transition: width 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
}

.progress-bar-animated {
  animation: 1s linear infinite progress-bar-stripes;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    animation: none;
  }
}

.media {
  display: flex;
  align-items: flex-start;
}

.media-body {
  flex: 1;
}

.list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: 0.25rem;
}

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}
.list-group-item-action:hover, .list-group-item-action:focus {
  z-index: 1;
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}
.list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}
.list-group-item.disabled, .list-group-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
}
.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.list-group-item + .list-group-item {
  border-top-width: 0;
}
.list-group-item + .list-group-item.active {
  margin-top: -1px;
  border-top-width: 1px;
}

.list-group-horizontal {
  flex-direction: row;
}
.list-group-horizontal > .list-group-item:first-child {
  border-bottom-left-radius: 0.25rem;
  border-top-right-radius: 0;
}
.list-group-horizontal > .list-group-item:last-child {
  border-top-right-radius: 0.25rem;
  border-bottom-left-radius: 0;
}
.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: 1px;
  border-left-width: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: -1px;
  border-left-width: 1px;
}

@media (min-width: 576px) {
  .list-group-horizontal-sm {
    flex-direction: row;
  }
  .list-group-horizontal-sm > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 768px) {
  .list-group-horizontal-md {
    flex-direction: row;
  }
  .list-group-horizontal-md > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 992px) {
  .list-group-horizontal-lg {
    flex-direction: row;
  }
  .list-group-horizontal-lg > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 1200px) {
  .list-group-horizontal-xl {
    flex-direction: row;
  }
  .list-group-horizontal-xl > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
.list-group-flush {
  border-radius: 0;
}
.list-group-flush > .list-group-item {
  border-width: 0 0 1px;
}
.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}

.list-group-item-primary {
  color: #004085;
  background-color: #b8daff;
}
.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: #004085;
  background-color: #9fcdff;
}
.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #004085;
  border-color: #004085;
}

.list-group-item-secondary {
  color: #383d41;
  background-color: #d6d8db;
}
.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: #383d41;
  background-color: #c8cbcf;
}
.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #383d41;
  border-color: #383d41;
}

.list-group-item-success {
  color: #155724;
  background-color: #c3e6cb;
}
.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: #155724;
  background-color: #b1dfbb;
}
.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #155724;
  border-color: #155724;
}

.list-group-item-info {
  color: #0c5460;
  background-color: #bee5eb;
}
.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  color: #0c5460;
  background-color: #abdde5;
}
.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #0c5460;
  border-color: #0c5460;
}

.list-group-item-warning {
  color: #856404;
  background-color: #ffeeba;
}
.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  color: #856404;
  background-color: #ffe8a1;
}
.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #856404;
  border-color: #856404;
}

.list-group-item-danger {
  color: #721c24;
  background-color: #f5c6cb;
}
.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: #721c24;
  background-color: #f1b0b7;
}
.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #721c24;
  border-color: #721c24;
}

.list-group-item-light {
  color: #818182;
  background-color: #fdfdfe;
}
.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  color: #818182;
  background-color: #ececf6;
}
.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #818182;
  border-color: #818182;
}

.list-group-item-dark {
  color: #1b1e21;
  background-color: #c6c8ca;
}
.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  color: #1b1e21;
  background-color: #b9bbbe;
}
.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #1b1e21;
  border-color: #1b1e21;
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
}
.close:hover {
  color: #000;
  text-decoration: none;
}
.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
  opacity: 0.75;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
}

a.close.disabled {
  pointer-events: none;
}

.toast {
  flex-basis: 350px;
  max-width: 350px;
  font-size: 0.875rem;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  opacity: 0;
  border-radius: 0.25rem;
}
.toast:not(:last-child) {
  margin-bottom: 0.75rem;
}
.toast.showing {
  opacity: 1;
}
.toast.show {
  display: block;
  opacity: 1;
}
.toast.hide {
  display: none;
}

.toast-header {
  display: flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  color: #6c757d;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.toast-body {
  padding: 0.75rem;
}

.modal-open {
  overflow: hidden;
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  display: flex;
  max-height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}
.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
  flex-shrink: 0;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}
.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  height: -moz-min-content;
  height: min-content;
  content: "";
}
.modal-dialog-centered.modal-dialog-scrollable {
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}
.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}
.modal-footer > * {
  margin: 0.25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }
  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
    height: -moz-min-content;
    height: min-content;
  }
  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0;
}
.tooltip.show {
  opacity: 0.9;
}
.tooltip .arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}
.tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top, .bs-tooltip-auto[x-placement^=top] {
  padding: 0.4rem 0;
}
.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^=top] .arrow {
  bottom: 0;
}
.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^=top] .arrow::before {
  top: 0;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000;
}

.bs-tooltip-right, .bs-tooltip-auto[x-placement^=right] {
  padding: 0 0.4rem;
}
.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^=right] .arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^=right] .arrow::before {
  right: 0;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000;
}

.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^=bottom] {
  padding: 0.4rem 0;
}
.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^=bottom] .arrow {
  top: 0;
}
.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  bottom: 0;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000;
}

.bs-tooltip-left, .bs-tooltip-auto[x-placement^=left] {
  padding: 0 0.4rem;
}
.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^=left] .arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^=left] .arrow::before {
  left: 0;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000;
}

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0.25rem;
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
}
.popover .arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
  margin: 0 0.3rem;
}
.popover .arrow::before, .popover .arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-popover-top, .bs-popover-auto[x-placement^=top] {
  margin-bottom: 0.5rem;
}
.bs-popover-top > .arrow, .bs-popover-auto[x-placement^=top] > .arrow {
  bottom: calc(-0.5rem - 1px);
}
.bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^=top] > .arrow::before {
  bottom: 0;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^=top] > .arrow::after {
  bottom: 1px;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #fff;
}

.bs-popover-right, .bs-popover-auto[x-placement^=right] {
  margin-left: 0.5rem;
}
.bs-popover-right > .arrow, .bs-popover-auto[x-placement^=right] > .arrow {
  left: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}
.bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^=right] > .arrow::before {
  left: 0;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^=right] > .arrow::after {
  left: 1px;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: #fff;
}

.bs-popover-bottom, .bs-popover-auto[x-placement^=bottom] {
  margin-top: 0.5rem;
}
.bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^=bottom] > .arrow {
  top: calc(-0.5rem - 1px);
}
.bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^=bottom] > .arrow::before {
  top: 0;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^=bottom] > .arrow::after {
  top: 1px;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: #fff;
}
.bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^=bottom] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid #f7f7f7;
}

.bs-popover-left, .bs-popover-auto[x-placement^=left] {
  margin-right: 0.5rem;
}
.bs-popover-left > .arrow, .bs-popover-auto[x-placement^=left] > .arrow {
  right: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}
.bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^=left] > .arrow::before {
  right: 0;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^=left] > .arrow::after {
  right: 1px;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: #fff;
}

.popover-header {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.popover-header:empty {
  display: none;
}

.popover-body {
  padding: 0.5rem 0.75rem;
  color: #212529;
}

.carousel {
  position: relative;
}

.carousel.pointer-event {
  touch-action: pan-y;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

.carousel-item-next:not(.carousel-item-left),
.active.carousel-item-right {
  transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-right),
.active.carousel-item-left {
  transform: translateX(-100%);
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  z-index: 1;
  opacity: 1;
}
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-left,
  .carousel-fade .active.carousel-item-right {
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: none;
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
  .carousel-control-next {
    transition: none;
  }
}
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: 50%/100% 100% no-repeat;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: flex;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}
.carousel-indicators li {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-indicators li {
    transition: none;
  }
}
.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}
.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  border: 0.25em solid currentcolor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: 0.75s linear infinite spinner-border;
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}
.spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  background-color: currentcolor;
  border-radius: 50%;
  opacity: 0;
  animation: 0.75s linear infinite spinner-grow;
}

.spinner-grow-sm {
  width: 1rem;
  height: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .spinner-border,
  .spinner-grow {
    animation-duration: 1.5s;
  }
}
.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.bg-primary {
  background-color: #007bff !important;
}

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #0062cc !important;
}

.bg-secondary {
  background-color: #6c757d !important;
}

a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #545b62 !important;
}

.bg-success {
  background-color: #28a745 !important;
}

a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #1e7e34 !important;
}

.bg-info {
  background-color: #17a2b8 !important;
}

a.bg-info:hover, a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: #117a8b !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

a.bg-warning:hover, a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #d39e00 !important;
}

.bg-danger {
  background-color: #dc3545 !important;
}

a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #bd2130 !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #dae0e5 !important;
}

.bg-dark {
  background-color: #343a40 !important;
}

a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #1d2124 !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-right {
  border-right: 1px solid #dee2e6 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
  border-left: 1px solid #dee2e6 !important;
}

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

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #007bff !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #28a745 !important;
}

.border-info {
  border-color: #17a2b8 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #343a40 !important;
}

.border-white {
  border-color: #fff !important;
}

.rounded-sm {
  border-radius: 0.2rem !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-right {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-left {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-lg {
  border-radius: 0.3rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
}
.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.embed-responsive::before {
  display: block;
  content: "";
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.85714286%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}
.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important;
  }
  .float-sm-right {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
}
@media (min-width: 768px) {
  .float-md-left {
    float: left !important;
  }
  .float-md-right {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
}
@media (min-width: 992px) {
  .float-lg-left {
    float: left !important;
  }
  .float-lg-right {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important;
  }
  .float-xl-right {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
}
.user-select-all {
  -webkit-user-select: all !important;
     -moz-user-select: all !important;
          user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
     -moz-user-select: auto !important;
          user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
          user-select: none !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports (position: sticky) {
  .sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }
  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }
  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }
  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }
  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }
  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }
  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }
  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }
  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }
  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }
  .m-sm-n1 {
    margin: -0.25rem !important;
  }
  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -0.25rem !important;
  }
  .m-sm-n2 {
    margin: -0.5rem !important;
  }
  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -0.5rem !important;
  }
  .m-sm-n3 {
    margin: -1rem !important;
  }
  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -1rem !important;
  }
  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -1rem !important;
  }
  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -1rem !important;
  }
  .m-sm-n4 {
    margin: -1.5rem !important;
  }
  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1.5rem !important;
  }
  .m-sm-n5 {
    margin: -3rem !important;
  }
  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important;
  }
  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important;
  }
  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }
  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }
  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }
  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }
  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }
  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }
  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }
  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }
  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }
  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }
  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }
  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }
  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }
  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }
  .m-md-n1 {
    margin: -0.25rem !important;
  }
  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.25rem !important;
  }
  .m-md-n2 {
    margin: -0.5rem !important;
  }
  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.5rem !important;
  }
  .m-md-n3 {
    margin: -1rem !important;
  }
  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important;
  }
  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important;
  }
  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important;
  }
  .m-md-n4 {
    margin: -1.5rem !important;
  }
  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important;
  }
  .m-md-n5 {
    margin: -3rem !important;
  }
  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important;
  }
  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important;
  }
  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }
  .m-lg-n1 {
    margin: -0.25rem !important;
  }
  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.25rem !important;
  }
  .m-lg-n2 {
    margin: -0.5rem !important;
  }
  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.5rem !important;
  }
  .m-lg-n3 {
    margin: -1rem !important;
  }
  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important;
  }
  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important;
  }
  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important;
  }
  .m-lg-n4 {
    margin: -1.5rem !important;
  }
  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important;
  }
  .m-lg-n5 {
    margin: -3rem !important;
  }
  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important;
  }
  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important;
  }
  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }
  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }
  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }
  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }
  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }
  .m-xl-n1 {
    margin: -0.25rem !important;
  }
  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -0.25rem !important;
  }
  .m-xl-n2 {
    margin: -0.5rem !important;
  }
  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.5rem !important;
  }
  .m-xl-n3 {
    margin: -1rem !important;
  }
  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important;
  }
  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important;
  }
  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important;
  }
  .m-xl-n4 {
    margin: -1.5rem !important;
  }
  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important;
  }
  .m-xl-n5 {
    margin: -3rem !important;
  }
  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important;
  }
  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important;
  }
  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}
.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

.text-justify {
  text-align: justify !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

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

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-lighter {
  font-weight: lighter !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-bolder {
  font-weight: bolder !important;
}

.font-italic {
  font-style: italic !important;
}

.text-white {
  color: #fff !important;
}

.text-primary {
  color: #007bff !important;
}

a.text-primary:hover, a.text-primary:focus {
  color: #0056b3 !important;
}

.text-secondary {
  color: #6c757d !important;
}

a.text-secondary:hover, a.text-secondary:focus {
  color: #494f54 !important;
}

.text-success {
  color: #28a745 !important;
}

a.text-success:hover, a.text-success:focus {
  color: #19692c !important;
}

.text-info {
  color: #17a2b8 !important;
}

a.text-info:hover, a.text-info:focus {
  color: #0f6674 !important;
}

.text-warning {
  color: #ffc107 !important;
}

a.text-warning:hover, a.text-warning:focus {
  color: #ba8b00 !important;
}

.text-danger {
  color: #dc3545 !important;
}

a.text-danger:hover, a.text-danger:focus {
  color: #a71d2a !important;
}

.text-light {
  color: #f8f9fa !important;
}

a.text-light:hover, a.text-light:focus {
  color: #cbd3da !important;
}

.text-dark {
  color: #343a40 !important;
}

a.text-dark:hover, a.text-dark:focus {
  color: #121416 !important;
}

.text-body {
  color: #212529 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-break {
  word-break: break-word !important;
  word-wrap: break-word !important;
}

.text-reset {
  color: inherit !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media print {
  *,
  *::before,
  *::after {
    text-shadow: none !important;
    box-shadow: none !important;
  }
  a:not(.btn) {
    text-decoration: underline;
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #adb5bd;
    page-break-inside: avoid;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  @page {
    size: a3;
  }
  body {
    min-width: 992px !important;
  }
  .container {
    min-width: 992px !important;
  }
  .navbar {
    display: none;
  }
  .badge {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #dee2e6 !important;
  }
  .table-dark {
    color: inherit;
  }
  .table-dark th,
  .table-dark td,
  .table-dark thead th,
  .table-dark tbody + tbody {
    border-color: #dee2e6;
  }
  .table .thead-dark th {
    color: inherit;
    border-color: #dee2e6;
  }
}
.flatpickr-calendar {
  background: transparent;
  opacity: 0;
  display: none;
  text-align: center;
  visibility: hidden;
  padding: 0;
  animation: none;
  direction: ltr;
  border: 0;
  font-size: 14px;
  line-height: 24px;
  border-radius: 5px;
  position: absolute;
  width: 307.875px;
  box-sizing: border-box;
  touch-action: manipulation;
  background: #fff;
  box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
}

.flatpickr-calendar.open,
.flatpickr-calendar.inline {
  opacity: 1;
  max-height: 640px;
  visibility: visible;
}

.flatpickr-calendar.open {
  display: inline-block;
  z-index: 99999;
}

.flatpickr-calendar.animate.open {
  animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.flatpickr-calendar.inline {
  display: block;
  position: relative;
  top: 2px;
}

.flatpickr-calendar.static {
  position: absolute;
  top: calc(100% + 2px);
}

.flatpickr-calendar.static.open {
  z-index: 999;
  display: block;
}

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {
  box-shadow: none !important;
}

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {
  box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}

.flatpickr-calendar .hasWeeks .dayContainer,
.flatpickr-calendar .hasTime .dayContainer {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.flatpickr-calendar .hasWeeks .dayContainer {
  border-left: 0;
}

.flatpickr-calendar.hasTime .flatpickr-time {
  height: 40px;
  border-top: 1px solid #e6e6e6;
}

.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
  height: auto;
}

.flatpickr-calendar:before,
.flatpickr-calendar:after {
  position: absolute;
  display: block;
  pointer-events: none;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  left: 22px;
}

.flatpickr-calendar.rightMost:before,
.flatpickr-calendar.arrowRight:before,
.flatpickr-calendar.rightMost:after,
.flatpickr-calendar.arrowRight:after {
  left: auto;
  right: 22px;
}

.flatpickr-calendar.arrowCenter:before,
.flatpickr-calendar.arrowCenter:after {
  left: 50%;
  right: 50%;
}

.flatpickr-calendar:before {
  border-width: 5px;
  margin: 0 -5px;
}

.flatpickr-calendar:after {
  border-width: 4px;
  margin: 0 -4px;
}

.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after {
  bottom: 100%;
}

.flatpickr-calendar.arrowTop:before {
  border-bottom-color: #e6e6e6;
}

.flatpickr-calendar.arrowTop:after {
  border-bottom-color: #fff;
}

.flatpickr-calendar.arrowBottom:before,
.flatpickr-calendar.arrowBottom:after {
  top: 100%;
}

.flatpickr-calendar.arrowBottom:before {
  border-top-color: #e6e6e6;
}

.flatpickr-calendar.arrowBottom:after {
  border-top-color: #fff;
}

.flatpickr-calendar:focus {
  outline: 0;
}

.flatpickr-wrapper {
  position: relative;
  display: inline-block;
}

.flatpickr-months {
  display: flex;
}

.flatpickr-months .flatpickr-month {
  background: transparent;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
  height: 34px;
  line-height: 1;
  text-align: center;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  overflow: hidden;
  flex: 1;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  height: 34px;
  padding: 10px;
  z-index: 3;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
}

.flatpickr-months .flatpickr-prev-month.flatpickr-disabled,
.flatpickr-months .flatpickr-next-month.flatpickr-disabled {
  display: none;
}

.flatpickr-months .flatpickr-prev-month i,
.flatpickr-months .flatpickr-next-month i {
  position: relative;
}

.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
  /*
        /*rtl:begin:ignore*/
  /*
        */
  left: 0;
  /*
        /*rtl:end:ignore*/
  /*
        */
}

/*
      /*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,
.flatpickr-months .flatpickr-next-month.flatpickr-next-month {
  /*
        /*rtl:begin:ignore*/
  /*
        */
  right: 0;
  /*
        /*rtl:end:ignore*/
  /*
        */
}

/*
      /*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
  color: #959ea9;
}

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
  fill: #f64747;
}

.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  width: 14px;
  height: 14px;
}

.flatpickr-months .flatpickr-prev-month svg path,
.flatpickr-months .flatpickr-next-month svg path {
  transition: fill 0.1s;
  fill: inherit;
}

.numInputWrapper {
  position: relative;
  height: auto;
}

.numInputWrapper input,
.numInputWrapper span {
  display: inline-block;
}

.numInputWrapper input {
  width: 100%;
}

.numInputWrapper input::-ms-clear {
  display: none;
}

.numInputWrapper input::-webkit-outer-spin-button,
.numInputWrapper input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.numInputWrapper span {
  position: absolute;
  right: 0;
  width: 14px;
  padding: 0 4px 0 2px;
  height: 50%;
  line-height: 50%;
  opacity: 0;
  cursor: pointer;
  border: 1px solid rgba(57, 57, 57, 0.15);
  box-sizing: border-box;
}

.numInputWrapper span:hover {
  background: rgba(0, 0, 0, 0.1);
}

.numInputWrapper span:active {
  background: rgba(0, 0, 0, 0.2);
}

.numInputWrapper span:after {
  display: block;
  content: "";
  position: absolute;
}

.numInputWrapper span.arrowUp {
  top: 0;
  border-bottom: 0;
}

.numInputWrapper span.arrowUp:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(57, 57, 57, 0.6);
  top: 26%;
}

.numInputWrapper span.arrowDown {
  top: 50%;
}

.numInputWrapper span.arrowDown:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(57, 57, 57, 0.6);
  top: 40%;
}

.numInputWrapper span svg {
  width: inherit;
  height: auto;
}

.numInputWrapper span svg path {
  fill: rgba(0, 0, 0, 0.5);
}

.numInputWrapper:hover {
  background: rgba(0, 0, 0, 0.05);
}

.numInputWrapper:hover span {
  opacity: 1;
}

.flatpickr-current-month {
  font-size: 135%;
  line-height: inherit;
  font-weight: 300;
  color: inherit;
  position: absolute;
  width: 75%;
  left: 12.5%;
  padding: 7.48px 0 0 0;
  line-height: 1;
  height: 34px;
  display: inline-block;
  text-align: center;
  transform: translate3d(0px, 0px, 0px);
}

.flatpickr-current-month span.cur-month {
  font-family: inherit;
  font-weight: 700;
  color: inherit;
  display: inline-block;
  margin-left: 0.5ch;
  padding: 0;
}

.flatpickr-current-month span.cur-month:hover {
  background: rgba(0, 0, 0, 0.05);
}

.flatpickr-current-month .numInputWrapper {
  width: 6ch;
  width: 7ch\0 ;
  display: inline-block;
}

.flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: rgba(0, 0, 0, 0.9);
}

.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: rgba(0, 0, 0, 0.9);
}

.flatpickr-current-month input.cur-year {
  background: transparent;
  box-sizing: border-box;
  color: inherit;
  cursor: text;
  padding: 0 0 0 0.5ch;
  margin: 0;
  display: inline-block;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  line-height: inherit;
  height: auto;
  border: 0;
  border-radius: 0;
  vertical-align: initial;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

.flatpickr-current-month input.cur-year:focus {
  outline: 0;
}

.flatpickr-current-month input.cur-year[disabled],
.flatpickr-current-month input.cur-year[disabled]:hover {
  font-size: 100%;
  color: rgba(0, 0, 0, 0.5);
  background: transparent;
  pointer-events: none;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  appearance: menulist;
  background: transparent;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  height: auto;
  line-height: inherit;
  margin: -1px 0 0 0;
  outline: none;
  padding: 0 0 0 0.5ch;
  position: relative;
  vertical-align: initial;
  -webkit-box-sizing: border-box;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  width: auto;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:focus,
.flatpickr-current-month .flatpickr-monthDropdown-months:active {
  outline: none;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
  background: rgba(0, 0, 0, 0.05);
}

.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
  background-color: transparent;
  outline: none;
  padding: 0;
}

.flatpickr-weekdays {
  background: transparent;
  text-align: center;
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: center;
  height: 28px;
}

.flatpickr-weekdays .flatpickr-weekdaycontainer {
  display: flex;
  flex: 1;
}

span.flatpickr-weekday {
  cursor: default;
  font-size: 90%;
  background: transparent;
  color: rgba(0, 0, 0, 0.54);
  line-height: 1;
  margin: 0;
  text-align: center;
  display: block;
  flex: 1;
  font-weight: bolder;
}

.dayContainer,
.flatpickr-weeks {
  padding: 1px 0 0 0;
}

.flatpickr-days {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  width: 307.875px;
}

.flatpickr-days:focus {
  outline: 0;
}

.dayContainer {
  padding: 0;
  outline: 0;
  text-align: left;
  width: 307.875px;
  min-width: 307.875px;
  max-width: 307.875px;
  box-sizing: border-box;
  display: inline-block;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  justify-content: space-around;
  transform: translate3d(0px, 0px, 0px);
  opacity: 1;
}

.dayContainer + .dayContainer {
  box-shadow: -1px 0 0 #e6e6e6;
}

.flatpickr-day {
  background: none;
  border: 1px solid transparent;
  border-radius: 150px;
  box-sizing: border-box;
  color: #393939;
  cursor: pointer;
  font-weight: 400;
  width: 14.2857143%;
  flex-basis: 14.2857143%;
  max-width: 39px;
  height: 39px;
  line-height: 39px;
  margin: 0;
  display: inline-block;
  position: relative;
  justify-content: center;
  text-align: center;
}

.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.today.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day:focus,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.nextMonthDay:focus {
  cursor: pointer;
  outline: 0;
  background: #e6e6e6;
  border-color: #e6e6e6;
}

.flatpickr-day.today {
  border-color: #959ea9;
}

.flatpickr-day.today:hover,
.flatpickr-day.today:focus {
  border-color: #959ea9;
  background: #959ea9;
  color: #fff;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  background: #569ff7;
  box-shadow: none;
  color: #fff;
  border-color: #569ff7;
}

.flatpickr-day.selected.startRange,
.flatpickr-day.startRange.startRange,
.flatpickr-day.endRange.startRange {
  border-radius: 50px 0 0 50px;
}

.flatpickr-day.selected.endRange,
.flatpickr-day.startRange.endRange,
.flatpickr-day.endRange.endRange {
  border-radius: 0 50px 50px 0;
}

.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
  box-shadow: -10px 0 0 #569ff7;
}

.flatpickr-day.selected.startRange.endRange,
.flatpickr-day.startRange.startRange.endRange,
.flatpickr-day.endRange.startRange.endRange {
  border-radius: 50px;
}

.flatpickr-day.inRange {
  border-radius: 0;
  box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay,
.flatpickr-day.notAllowed,
.flatpickr-day.notAllowed.prevMonthDay,
.flatpickr-day.notAllowed.nextMonthDay {
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  border-color: transparent;
  cursor: default;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  cursor: not-allowed;
  color: rgba(57, 57, 57, 0.1);
}

.flatpickr-day.week.selected {
  border-radius: 0;
  box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
}

.flatpickr-day.hidden {
  visibility: hidden;
}

.rangeMode .flatpickr-day {
  margin-top: 1px;
}

.flatpickr-weekwrapper {
  float: left;
}

.flatpickr-weekwrapper .flatpickr-weeks {
  padding: 0 12px;
  box-shadow: 1px 0 0 #e6e6e6;
}

.flatpickr-weekwrapper .flatpickr-weekday {
  float: none;
  width: 100%;
  line-height: 28px;
}

.flatpickr-weekwrapper span.flatpickr-day,
.flatpickr-weekwrapper span.flatpickr-day:hover {
  display: block;
  width: 100%;
  max-width: none;
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  cursor: default;
  border: none;
}

.flatpickr-innerContainer {
  display: block;
  display: flex;
  box-sizing: border-box;
  overflow: hidden;
}

.flatpickr-rContainer {
  display: inline-block;
  padding: 0;
  box-sizing: border-box;
}

.flatpickr-time {
  text-align: center;
  outline: 0;
  display: block;
  height: 0;
  line-height: 40px;
  max-height: 40px;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
}

.flatpickr-time:after {
  content: "";
  display: table;
  clear: both;
}

.flatpickr-time .numInputWrapper {
  flex: 1;
  width: 40%;
  height: 40px;
  float: left;
}

.flatpickr-time .numInputWrapper span.arrowUp:after {
  border-bottom-color: #393939;
}

.flatpickr-time .numInputWrapper span.arrowDown:after {
  border-top-color: #393939;
}

.flatpickr-time.hasSeconds .numInputWrapper {
  width: 26%;
}

.flatpickr-time.time24hr .numInputWrapper {
  width: 49%;
}

.flatpickr-time input {
  background: transparent;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  height: inherit;
  line-height: inherit;
  color: #393939;
  font-size: 14px;
  position: relative;
  box-sizing: border-box;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

.flatpickr-time input.flatpickr-hour {
  font-weight: bold;
}

.flatpickr-time input.flatpickr-minute,
.flatpickr-time input.flatpickr-second {
  font-weight: 400;
}

.flatpickr-time input:focus {
  outline: 0;
  border: 0;
}

.flatpickr-time .flatpickr-time-separator,
.flatpickr-time .flatpickr-am-pm {
  height: inherit;
  float: left;
  line-height: inherit;
  color: #393939;
  font-weight: bold;
  width: 2%;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  align-self: center;
}

.flatpickr-time .flatpickr-am-pm {
  outline: 0;
  width: 18%;
  cursor: pointer;
  text-align: center;
  font-weight: 400;
}

.flatpickr-time input:hover,
.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time input:focus,
.flatpickr-time .flatpickr-am-pm:focus {
  background: #eee;
}

.flatpickr-input[readonly] {
  cursor: pointer;
}
@keyframes fpFadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
/*------------ Font Awesome Icon -------------------*/
.fa.fa-pull-left, .fa.pull-left {
  margin-right: 0.3em;
}

.fa, .fa-stack {
  display: inline-block;
}

.fa-fw, .fa-li {
  text-align: center;
}

@font-face {
  font-family: FontAwesome;
  src: url(/zzp/fonts/fontawesome-webfont.eot?1c77d5ab10c945269a09ff9a26c3fb08);
  src: url(/zzp/fonts/fontawesome-webfont.eot?1c77d5ab10c945269a09ff9a26c3fb08?#iefix&v=4.6.2) format("embedded-opentype"), url(/zzp/fonts/fontawesome-webfont.woff2?20fd1704ea223900efa9fd4e869efb08) format("woff2"), url(/zzp/fonts/fontawesome-webfont.woff?6e8ec896aab286231d3cf526da686ddf) format("woff"), url(/zzp/fonts/fontawesome-webfont.ttf?670e1210f375c1590bd4817b199cf3ba) format("truetype"), url(/zzp/fonts/fontawesome-webfont.svg?083a1c3461b427ea103b702c62d73fa1#fontawesomeregular) format("svg");
  font-weight: 400;
  font-style: normal;
}
.fa {
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-fw {
  width: 1.28571429em;
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}

.fa.fa-pull-right, .fa.pull-right {
  margin-left: 0.3em;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
}

.fa-li.fa-lg {
  left: -1.85714286em;
}

.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: 0.08em solid #eee;
  border-radius: 0.1em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right, .pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa-spin {
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  animation: fa-spin 1s infinite steps(8);
}
@keyframes fa-spin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(1, -1);
}

:root .fa-flip-horizontal, :root .fa-flip-vertical, :root .fa-rotate-180, :root .fa-rotate-270, :root .fa-rotate-90 {
  filter: none;
}

.fa-stack {
  position: relative;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.fa-stack-1x, .fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

.fa-glass:before {
  content: "\f000";
}

.fa-music:before {
  content: "\f001";
}

.fa-search:before {
  content: "\f002";
}

.fa-envelope-o:before {
  content: "\f003";
}

.fa-heart:before {
  content: "\f004";
}

.fa-star:before {
  content: "\f005";
}

.fa-star-o:before {
  content: "\f006";
}

.fa-user:before {
  content: "\f007";
}

.fa-film:before {
  content: "\f008";
}

.fa-th-large:before {
  content: "\f009";
}

.fa-th:before {
  content: "\f00a";
}

.fa-th-list:before {
  content: "\f00b";
}

.fa-check:before {
  content: "\f00c";
}

.fa-close:before, .fa-remove:before, .fa-times:before {
  content: "\f00d";
}

.fa-search-plus:before {
  content: "\f00e";
}

.fa-search-minus:before {
  content: "\f010";
}

.fa-power-off:before {
  content: "\f011";
}

.fa-signal:before {
  content: "\f012";
}

.fa-cog:before, .fa-gear:before {
  content: "\f013";
}

.fa-trash-o:before {
  content: "\f014";
}

.fa-home:before {
  content: "\f015";
}

.fa-file-o:before {
  content: "\f016";
}

.fa-clock-o:before {
  content: "\f017";
}

.fa-road:before {
  content: "\f018";
}

.fa-download:before {
  content: "\f019";
}

.fa-arrow-circle-o-down:before {
  content: "\f01a";
}

.fa-arrow-circle-o-up:before {
  content: "\f01b";
}

.fa-inbox:before {
  content: "\f01c";
}

.fa-play-circle-o:before {
  content: "\f01d";
}

.fa-repeat:before, .fa-rotate-right:before {
  content: "\f01e";
}

.fa-refresh:before {
  content: "\f021";
}

.fa-list-alt:before {
  content: "\f022";
}

.fa-lock:before {
  content: "\f023";
}

.fa-flag:before {
  content: "\f024";
}

.fa-headphones:before {
  content: "\f025";
}

.fa-volume-off:before {
  content: "\f026";
}

.fa-volume-down:before {
  content: "\f027";
}

.fa-volume-up:before {
  content: "\f028";
}

.fa-qrcode:before {
  content: "\f029";
}

.fa-barcode:before {
  content: "\f02a";
}

.fa-tag:before {
  content: "\f02b";
}

.fa-tags:before {
  content: "\f02c";
}

.fa-book:before {
  content: "\f02d";
}

.fa-bookmark:before {
  content: "\f02e";
}

.fa-print:before {
  content: "\f02f";
}

.fa-camera:before {
  content: "\f030";
}

.fa-font:before {
  content: "\f031";
}

.fa-bold:before {
  content: "\f032";
}

.fa-italic:before {
  content: "\f033";
}

.fa-text-height:before {
  content: "\f034";
}

.fa-text-width:before {
  content: "\f035";
}

.fa-align-left:before {
  content: "\f036";
}

.fa-align-center:before {
  content: "\f037";
}

.fa-align-right:before {
  content: "\f038";
}

.fa-align-justify:before {
  content: "\f039";
}

.fa-list:before {
  content: "\f03a";
}

.fa-dedent:before, .fa-outdent:before {
  content: "\f03b";
}

.fa-indent:before {
  content: "\f03c";
}

.fa-video-camera:before {
  content: "\f03d";
}

.fa-image:before, .fa-photo:before, .fa-picture-o:before {
  content: "\f03e";
}

.fa-pencil:before {
  content: "\f040";
}

.fa-map-marker:before {
  content: "\f041";
}

.fa-adjust:before {
  content: "\f042";
}

.fa-tint:before {
  content: "\f043";
}

.fa-edit:before, .fa-pencil-square-o:before {
  content: "\f044";
}

.fa-share-square-o:before {
  content: "\f045";
}

.fa-check-square-o:before {
  content: "\f046";
}

.fa-arrows:before {
  content: "\f047";
}

.fa-step-backward:before {
  content: "\f048";
}

.fa-fast-backward:before {
  content: "\f049";
}

.fa-backward:before {
  content: "\f04a";
}

.fa-play:before {
  content: "\f04b";
}

.fa-pause:before {
  content: "\f04c";
}

.fa-stop:before {
  content: "\f04d";
}

.fa-forward:before {
  content: "\f04e";
}

.fa-fast-forward:before {
  content: "\f050";
}

.fa-step-forward:before {
  content: "\f051";
}

.fa-eject:before {
  content: "\f052";
}

.fa-chevron-left:before {
  content: "\f053";
}

.fa-chevron-right:before {
  content: "\f054";
}

.fa-plus-circle:before {
  content: "\f055";
}

.fa-minus-circle:before {
  content: "\f056";
}

.fa-times-circle:before {
  content: "\f057";
}

.fa-check-circle:before {
  content: "\f058";
}

.fa-question-circle:before {
  content: "\f059";
}

.fa-info-circle:before {
  content: "\f05a";
}

.fa-crosshairs:before {
  content: "\f05b";
}

.fa-times-circle-o:before {
  content: "\f05c";
}

.fa-check-circle-o:before {
  content: "\f05d";
}

.fa-ban:before {
  content: "\f05e";
}

.fa-arrow-left:before {
  content: "\f060";
}

.fa-arrow-right:before {
  content: "\f061";
}

.fa-arrow-up:before {
  content: "\f062";
}

.fa-arrow-down:before {
  content: "\f063";
}

.fa-mail-forward:before, .fa-share:before {
  content: "\f064";
}

.fa-expand:before {
  content: "\f065";
}

.fa-compress:before {
  content: "\f066";
}

.fa-plus:before {
  content: "\f067";
}

.fa-minus:before {
  content: "\f068";
}

.fa-asterisk:before {
  content: "\f069";
}

.fa-exclamation-circle:before {
  content: "\f06a";
}

.fa-gift:before {
  content: "\f06b";
}

.fa-leaf:before {
  content: "\f06c";
}

.fa-fire:before {
  content: "\f06d";
}

.fa-eye:before {
  content: "\f06e";
}

.fa-eye-slash:before {
  content: "\f070";
}

.fa-exclamation-triangle:before, .fa-warning:before {
  content: "\f071";
}

.fa-plane:before {
  content: "\f072";
}

.fa-calendar:before {
  content: "\f073";
}

.fa-random:before {
  content: "\f074";
}

.fa-comment:before {
  content: "\f075";
}

.fa-magnet:before {
  content: "\f076";
}

.fa-chevron-up:before {
  content: "\f077";
}

.fa-chevron-down:before {
  content: "\f078";
}

.fa-retweet:before {
  content: "\f079";
}

.fa-shopping-cart:before {
  content: "\f07a";
}

.fa-folder:before {
  content: "\f07b";
}

.fa-folder-open:before {
  content: "\f07c";
}

.fa-arrows-v:before {
  content: "\f07d";
}

.fa-arrows-h:before {
  content: "\f07e";
}

.fa-bar-chart-o:before, .fa-bar-chart:before {
  content: "\f080";
}

.fa-twitter-square:before {
  content: "\f081";
}

.fa-facebook-square:before {
  content: "\f082";
}

.fa-camera-retro:before {
  content: "\f083";
}

.fa-key:before {
  content: "\f084";
}

.fa-cogs:before, .fa-gears:before {
  content: "\f085";
}

.fa-comments:before {
  content: "\f086";
}

.fa-thumbs-o-up:before {
  content: "\f087";
}

.fa-thumbs-o-down:before {
  content: "\f088";
}

.fa-star-half:before {
  content: "\f089";
}

.fa-heart-o:before {
  content: "\f08a";
}

.fa-sign-out:before {
  content: "\f08b";
}

.fa-linkedin-square:before {
  content: "\f08c";
}

.fa-thumb-tack:before {
  content: "\f08d";
}

.fa-external-link:before {
  content: "\f08e";
}

.fa-sign-in:before {
  content: "\f090";
}

.fa-trophy:before {
  content: "\f091";
}

.fa-github-square:before {
  content: "\f092";
}

.fa-upload:before {
  content: "\f093";
}

.fa-lemon-o:before {
  content: "\f094";
}

.fa-phone:before {
  content: "\f095";
}

.fa-square-o:before {
  content: "\f096";
}

.fa-bookmark-o:before {
  content: "\f097";
}

.fa-phone-square:before {
  content: "\f098";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-facebook-f:before, .fa-facebook:before {
  content: "\f09a";
}

.fa-github:before {
  content: "\f09b";
}

.fa-unlock:before {
  content: "\f09c";
}

.fa-credit-card:before {
  content: "\f09d";
}

.fa-feed:before, .fa-rss:before {
  content: "\f09e";
}

.fa-hdd-o:before {
  content: "\f0a0";
}

.fa-bullhorn:before {
  content: "\f0a1";
}

.fa-bell:before {
  content: "\f0f3";
}

.fa-certificate:before {
  content: "\f0a3";
}

.fa-hand-o-right:before {
  content: "\f0a4";
}

.fa-hand-o-left:before {
  content: "\f0a5";
}

.fa-hand-o-up:before {
  content: "\f0a6";
}

.fa-hand-o-down:before {
  content: "\f0a7";
}

.fa-arrow-circle-left:before {
  content: "\f0a8";
}

.fa-arrow-circle-right:before {
  content: "\f0a9";
}

.fa-arrow-circle-up:before {
  content: "\f0aa";
}

.fa-arrow-circle-down:before {
  content: "\f0ab";
}

.fa-globe:before {
  content: "\f0ac";
}

.fa-wrench:before {
  content: "\f0ad";
}

.fa-tasks:before {
  content: "\f0ae";
}

.fa-filter:before {
  content: "\f0b0";
}

.fa-briefcase:before {
  content: "\f0b1";
}

.fa-arrows-alt:before {
  content: "\f0b2";
}

.fa-group:before, .fa-users:before {
  content: "\f0c0";
}

.fa-chain:before, .fa-link:before {
  content: "\f0c1";
}

.fa-cloud:before {
  content: "\f0c2";
}

.fa-flask:before {
  content: "\f0c3";
}

.fa-cut:before, .fa-scissors:before {
  content: "\f0c4";
}

.fa-copy:before, .fa-files-o:before {
  content: "\f0c5";
}

.fa-paperclip:before {
  content: "\f0c6";
}

.fa-floppy-o:before, .fa-save:before {
  content: "\f0c7";
}

.fa-square:before {
  content: "\f0c8";
}

.fa-bars:before, .fa-navicon:before, .fa-reorder:before {
  content: "\f0c9";
}

.fa-list-ul:before {
  content: "\f0ca";
}

.fa-list-ol:before {
  content: "\f0cb";
}

.fa-strikethrough:before {
  content: "\f0cc";
}

.fa-underline:before {
  content: "\f0cd";
}

.fa-table:before {
  content: "\f0ce";
}

.fa-magic:before {
  content: "\f0d0";
}

.fa-truck:before {
  content: "\f0d1";
}

.fa-pinterest:before {
  content: "\f0d2";
}

.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-google-plus-square:before {
  content: "\f0d4";
}

.fa-google-plus:before {
  content: "\f0d5";
}

.fa-money:before {
  content: "\f0d6";
}

.fa-caret-down:before {
  content: "\f0d7";
}

.fa-caret-up:before {
  content: "\f0d8";
}

.fa-caret-left:before {
  content: "\f0d9";
}

.fa-caret-right:before {
  content: "\f0da";
}

.fa-columns:before {
  content: "\f0db";
}

.fa-sort:before, .fa-unsorted:before {
  content: "\f0dc";
}

.fa-sort-desc:before, .fa-sort-down:before {
  content: "\f0dd";
}

.fa-sort-asc:before, .fa-sort-up:before {
  content: "\f0de";
}

.fa-envelope:before {
  content: "\f0e0";
}

.fa-linkedin:before {
  content: "\f0e1";
}

.fa-rotate-left:before, .fa-undo:before {
  content: "\f0e2";
}

.fa-gavel:before, .fa-legal:before {
  content: "\f0e3";
}

.fa-dashboard:before, .fa-tachometer:before {
  content: "\f0e4";
}

.fa-comment-o:before {
  content: "\f0e5";
}

.fa-comments-o:before {
  content: "\f0e6";
}

.fa-bolt:before, .fa-flash:before {
  content: "\f0e7";
}

.fa-sitemap:before {
  content: "\f0e8";
}

.fa-umbrella:before {
  content: "\f0e9";
}

.fa-clipboard:before, .fa-paste:before {
  content: "\f0ea";
}

.fa-lightbulb-o:before {
  content: "\f0eb";
}

.fa-exchange:before {
  content: "\f0ec";
}

.fa-cloud-download:before {
  content: "\f0ed";
}

.fa-cloud-upload:before {
  content: "\f0ee";
}

.fa-user-md:before {
  content: "\f0f0";
}

.fa-stethoscope:before {
  content: "\f0f1";
}

.fa-suitcase:before {
  content: "\f0f2";
}

.fa-bell-o:before {
  content: "\f0a2";
}

.fa-coffee:before {
  content: "\f0f4";
}

.fa-cutlery:before {
  content: "\f0f5";
}

.fa-file-text-o:before {
  content: "\f0f6";
}

.fa-building-o:before {
  content: "\f0f7";
}

.fa-hospital-o:before {
  content: "\f0f8";
}

.fa-ambulance:before {
  content: "\f0f9";
}

.fa-medkit:before {
  content: "\f0fa";
}

.fa-fighter-jet:before {
  content: "\f0fb";
}

.fa-beer:before {
  content: "\f0fc";
}

.fa-h-square:before {
  content: "\f0fd";
}

.fa-plus-square:before {
  content: "\f0fe";
}

.fa-angle-double-left:before {
  content: "\f100";
}

.fa-angle-double-right:before {
  content: "\f101";
}

.fa-angle-double-up:before {
  content: "\f102";
}

.fa-angle-double-down:before {
  content: "\f103";
}

.fa-angle-left:before {
  content: "\f104";
}

.fa-angle-right:before {
  content: "\f105";
}

.fa-angle-up:before {
  content: "\f106";
}

.fa-angle-down:before {
  content: "\f107";
}

.fa-desktop:before {
  content: "\f108";
}

.fa-laptop:before {
  content: "\f109";
}

.fa-tablet:before {
  content: "\f10a";
}

.fa-mobile-phone:before, .fa-mobile:before {
  content: "\f10b";
}

.fa-circle-o:before {
  content: "\f10c";
}

.fa-quote-left:before {
  content: "\f10d";
}

.fa-quote-right:before {
  content: "\f10e";
}

.fa-spinner:before {
  content: "\f110";
}

.fa-circle:before {
  content: "\f111";
}

.fa-mail-reply:before, .fa-reply:before {
  content: "\f112";
}

.fa-github-alt:before {
  content: "\f113";
}

.fa-folder-o:before {
  content: "\f114";
}

.fa-folder-open-o:before {
  content: "\f115";
}

.fa-smile-o:before {
  content: "\f118";
}

.fa-frown-o:before {
  content: "\f119";
}

.fa-meh-o:before {
  content: "\f11a";
}

.fa-gamepad:before {
  content: "\f11b";
}

.fa-keyboard-o:before {
  content: "\f11c";
}

.fa-flag-o:before {
  content: "\f11d";
}

.fa-flag-checkered:before {
  content: "\f11e";
}

.fa-terminal:before {
  content: "\f120";
}

.fa-code:before {
  content: "\f121";
}

.fa-mail-reply-all:before, .fa-reply-all:before {
  content: "\f122";
}

.fa-star-half-empty:before, .fa-star-half-full:before, .fa-star-half-o:before {
  content: "\f123";
}

.fa-location-arrow:before {
  content: "\f124";
}

.fa-crop:before {
  content: "\f125";
}

.fa-code-fork:before {
  content: "\f126";
}

.fa-chain-broken:before, .fa-unlink:before {
  content: "\f127";
}

.fa-question:before {
  content: "\f128";
}

.fa-info:before {
  content: "\f129";
}

.fa-exclamation:before {
  content: "\f12a";
}

.fa-superscript:before {
  content: "\f12b";
}

.fa-subscript:before {
  content: "\f12c";
}

.fa-eraser:before {
  content: "\f12d";
}

.fa-puzzle-piece:before {
  content: "\f12e";
}

.fa-microphone:before {
  content: "\f130";
}

.fa-microphone-slash:before {
  content: "\f131";
}

.fa-shield:before {
  content: "\f132";
}

.fa-calendar-o:before {
  content: "\f133";
}

.fa-fire-extinguisher:before {
  content: "\f134";
}

.fa-rocket:before {
  content: "\f135";
}

.fa-maxcdn:before {
  content: "\f136";
}

.fa-chevron-circle-left:before {
  content: "\f137";
}

.fa-chevron-circle-right:before {
  content: "\f138";
}

.fa-chevron-circle-up:before {
  content: "\f139";
}

.fa-chevron-circle-down:before {
  content: "\f13a";
}

.fa-html5:before {
  content: "\f13b";
}

.fa-css3:before {
  content: "\f13c";
}

.fa-anchor:before {
  content: "\f13d";
}

.fa-unlock-alt:before {
  content: "\f13e";
}

.fa-bullseye:before {
  content: "\f140";
}

.fa-ellipsis-h:before {
  content: "\f141";
}

.fa-ellipsis-v:before {
  content: "\f142";
}

.fa-rss-square:before {
  content: "\f143";
}

.fa-play-circle:before {
  content: "\f144";
}

.fa-ticket:before {
  content: "\f145";
}

.fa-minus-square:before {
  content: "\f146";
}

.fa-minus-square-o:before {
  content: "\f147";
}

.fa-level-up:before {
  content: "\f148";
}

.fa-level-down:before {
  content: "\f149";
}

.fa-check-square:before {
  content: "\f14a";
}

.fa-pencil-square:before {
  content: "\f14b";
}

.fa-external-link-square:before {
  content: "\f14c";
}

.fa-share-square:before {
  content: "\f14d";
}

.fa-compass:before {
  content: "\f14e";
}

.fa-caret-square-o-down:before, .fa-toggle-down:before {
  content: "\f150";
}

.fa-caret-square-o-up:before, .fa-toggle-up:before {
  content: "\f151";
}

.fa-caret-square-o-right:before, .fa-toggle-right:before {
  content: "\f152";
}

.fa-eur:before, .fa-euro:before {
  content: "\f153";
}

.fa-gbp:before {
  content: "\f154";
}

.fa-dollar:before, .fa-usd:before {
  content: "\f155";
}

.fa-inr:before, .fa-rupee:before {
  content: "\f156";
}

.fa-cny:before, .fa-jpy:before, .fa-rmb:before, .fa-yen:before {
  content: "\f157";
}

.fa-rouble:before, .fa-rub:before, .fa-ruble:before {
  content: "\f158";
}

.fa-krw:before, .fa-won:before {
  content: "\f159";
}

.fa-bitcoin:before, .fa-btc:before {
  content: "\f15a";
}

.fa-file:before {
  content: "\f15b";
}

.fa-file-text:before {
  content: "\f15c";
}

.fa-sort-alpha-asc:before {
  content: "\f15d";
}

.fa-sort-alpha-desc:before {
  content: "\f15e";
}

.fa-sort-amount-asc:before {
  content: "\f160";
}

.fa-sort-amount-desc:before {
  content: "\f161";
}

.fa-sort-numeric-asc:before {
  content: "\f162";
}

.fa-sort-numeric-desc:before {
  content: "\f163";
}

.fa-thumbs-up:before {
  content: "\f164";
}

.fa-thumbs-down:before {
  content: "\f165";
}

.fa-youtube-square:before {
  content: "\f166";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-xing:before {
  content: "\f168";
}

.fa-xing-square:before {
  content: "\f169";
}

.fa-youtube-play:before {
  content: "\f16a";
}

.fa-dropbox:before {
  content: "\f16b";
}

.fa-stack-overflow:before {
  content: "\f16c";
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-flickr:before {
  content: "\f16e";
}

.fa-adn:before {
  content: "\f170";
}

.fa-bitbucket:before {
  content: "\f171";
}

.fa-bitbucket-square:before {
  content: "\f172";
}

.fa-tumblr:before {
  content: "\f173";
}

.fa-tumblr-square:before {
  content: "\f174";
}

.fa-long-arrow-down:before {
  content: "\f175";
}

.fa-long-arrow-up:before {
  content: "\f176";
}

.fa-long-arrow-left:before {
  content: "\f177";
}

.fa-long-arrow-right:before {
  content: "\f178";
}

.fa-apple:before {
  content: "\f179";
}

.fa-windows:before {
  content: "\f17a";
}

.fa-android:before {
  content: "\f17b";
}

.fa-linux:before {
  content: "\f17c";
}

.fa-dribbble:before {
  content: "\f17d";
}

.fa-skype:before {
  content: "\f17e";
}

.fa-foursquare:before {
  content: "\f180";
}

.fa-trello:before {
  content: "\f181";
}

.fa-female:before {
  content: "\f182";
}

.fa-male:before {
  content: "\f183";
}

.fa-gittip:before, .fa-gratipay:before {
  content: "\f184";
}

.fa-sun-o:before {
  content: "\f185";
}

.fa-moon-o:before {
  content: "\f186";
}

.fa-archive:before {
  content: "\f187";
}

.fa-bug:before {
  content: "\f188";
}

.fa-vk:before {
  content: "\f189";
}

.fa-weibo:before {
  content: "\f18a";
}

.fa-renren:before {
  content: "\f18b";
}

.fa-pagelines:before {
  content: "\f18c";
}

.fa-stack-exchange:before {
  content: "\f18d";
}

.fa-arrow-circle-o-right:before {
  content: "\f18e";
}

.fa-arrow-circle-o-left:before {
  content: "\f190";
}

.fa-caret-square-o-left:before, .fa-toggle-left:before {
  content: "\f191";
}

.fa-dot-circle-o:before {
  content: "\f192";
}

.fa-wheelchair:before {
  content: "\f193";
}

.fa-vimeo-square:before {
  content: "\f194";
}

.fa-try:before, .fa-turkish-lira:before {
  content: "\f195";
}

.fa-plus-square-o:before {
  content: "\f196";
}

.fa-space-shuttle:before {
  content: "\f197";
}

.fa-slack:before {
  content: "\f198";
}

.fa-envelope-square:before {
  content: "\f199";
}

.fa-wordpress:before {
  content: "\f19a";
}

.fa-openid:before {
  content: "\f19b";
}

.fa-bank:before, .fa-institution:before, .fa-university:before {
  content: "\f19c";
}

.fa-graduation-cap:before, .fa-mortar-board:before {
  content: "\f19d";
}

.fa-yahoo:before {
  content: "\f19e";
}

.fa-google:before {
  content: "\f1a0";
}

.fa-reddit:before {
  content: "\f1a1";
}

.fa-reddit-square:before {
  content: "\f1a2";
}

.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

.fa-stumbleupon:before {
  content: "\f1a4";
}

.fa-delicious:before {
  content: "\f1a5";
}

.fa-digg:before {
  content: "\f1a6";
}

.fa-pied-piper-pp:before {
  content: "\f1a7";
}

.fa-pied-piper-alt:before {
  content: "\f1a8";
}

.fa-drupal:before {
  content: "\f1a9";
}

.fa-joomla:before {
  content: "\f1aa";
}

.fa-language:before {
  content: "\f1ab";
}

.fa-fax:before {
  content: "\f1ac";
}

.fa-building:before {
  content: "\f1ad";
}

.fa-child:before {
  content: "\f1ae";
}

.fa-paw:before {
  content: "\f1b0";
}

.fa-spoon:before {
  content: "\f1b1";
}

.fa-cube:before {
  content: "\f1b2";
}

.fa-cubes:before {
  content: "\f1b3";
}

.fa-behance:before {
  content: "\f1b4";
}

.fa-behance-square:before {
  content: "\f1b5";
}

.fa-steam:before {
  content: "\f1b6";
}

.fa-steam-square:before {
  content: "\f1b7";
}

.fa-recycle:before {
  content: "\f1b8";
}

.fa-automobile:before, .fa-car:before {
  content: "\f1b9";
}

.fa-cab:before, .fa-taxi:before {
  content: "\f1ba";
}

.fa-tree:before {
  content: "\f1bb";
}

.fa-spotify:before {
  content: "\f1bc";
}

.fa-deviantart:before {
  content: "\f1bd";
}

.fa-soundcloud:before {
  content: "\f1be";
}

.fa-database:before {
  content: "\f1c0";
}

.fa-file-pdf-o:before {
  content: "\f1c1";
}

.fa-file-word-o:before {
  content: "\f1c2";
}

.fa-file-excel-o:before {
  content: "\f1c3";
}

.fa-file-powerpoint-o:before {
  content: "\f1c4";
}

.fa-file-image-o:before, .fa-file-photo-o:before, .fa-file-picture-o:before {
  content: "\f1c5";
}

.fa-file-archive-o:before, .fa-file-zip-o:before {
  content: "\f1c6";
}

.fa-file-audio-o:before, .fa-file-sound-o:before {
  content: "\f1c7";
}

.fa-file-movie-o:before, .fa-file-video-o:before {
  content: "\f1c8";
}

.fa-file-code-o:before {
  content: "\f1c9";
}

.fa-vine:before {
  content: "\f1ca";
}

.fa-codepen:before {
  content: "\f1cb";
}

.fa-jsfiddle:before {
  content: "\f1cc";
}

.fa-life-bouy:before, .fa-life-buoy:before, .fa-life-ring:before, .fa-life-saver:before, .fa-support:before {
  content: "\f1cd";
}

.fa-circle-o-notch:before {
  content: "\f1ce";
}

.fa-ra:before, .fa-rebel:before, .fa-resistance:before {
  content: "\f1d0";
}

.fa-empire:before, .fa-ge:before {
  content: "\f1d1";
}

.fa-git-square:before {
  content: "\f1d2";
}

.fa-git:before {
  content: "\f1d3";
}

.fa-hacker-news:before, .fa-y-combinator-square:before, .fa-yc-square:before {
  content: "\f1d4";
}

.fa-tencent-weibo:before {
  content: "\f1d5";
}

.fa-qq:before {
  content: "\f1d6";
}

.fa-wechat:before, .fa-weixin:before {
  content: "\f1d7";
}

.fa-paper-plane:before, .fa-send:before {
  content: "\f1d8";
}

.fa-paper-plane-o:before, .fa-send-o:before {
  content: "\f1d9";
}

.fa-history:before {
  content: "\f1da";
}

.fa-circle-thin:before {
  content: "\f1db";
}

.fa-header:before {
  content: "\f1dc";
}

.fa-paragraph:before {
  content: "\f1dd";
}

.fa-sliders:before {
  content: "\f1de";
}

.fa-share-alt:before {
  content: "\f1e0";
}

.fa-share-alt-square:before {
  content: "\f1e1";
}

.fa-bomb:before {
  content: "\f1e2";
}

.fa-futbol-o:before, .fa-soccer-ball-o:before {
  content: "\f1e3";
}

.fa-tty:before {
  content: "\f1e4";
}

.fa-binoculars:before {
  content: "\f1e5";
}

.fa-plug:before {
  content: "\f1e6";
}

.fa-slideshare:before {
  content: "\f1e7";
}

.fa-twitch:before {
  content: "\f1e8";
}

.fa-yelp:before {
  content: "\f1e9";
}

.fa-newspaper-o:before {
  content: "\f1ea";
}

.fa-wifi:before {
  content: "\f1eb";
}

.fa-calculator:before {
  content: "\f1ec";
}

.fa-paypal:before {
  content: "\f1ed";
}

.fa-google-wallet:before {
  content: "\f1ee";
}

.fa-cc-visa:before {
  content: "\f1f0";
}

.fa-cc-mastercard:before {
  content: "\f1f1";
}

.fa-cc-discover:before {
  content: "\f1f2";
}

.fa-cc-amex:before {
  content: "\f1f3";
}

.fa-cc-paypal:before {
  content: "\f1f4";
}

.fa-cc-stripe:before {
  content: "\f1f5";
}

.fa-bell-slash:before {
  content: "\f1f6";
}

.fa-bell-slash-o:before {
  content: "\f1f7";
}

.fa-trash:before {
  content: "\f1f8";
}

.fa-copyright:before {
  content: "\f1f9";
}

.fa-at:before {
  content: "\f1fa";
}

.fa-eyedropper:before {
  content: "\f1fb";
}

.fa-paint-brush:before {
  content: "\f1fc";
}

.fa-birthday-cake:before {
  content: "\f1fd";
}

.fa-area-chart:before {
  content: "\f1fe";
}

.fa-pie-chart:before {
  content: "\f200";
}

.fa-line-chart:before {
  content: "\f201";
}

.fa-lastfm:before {
  content: "\f202";
}

.fa-lastfm-square:before {
  content: "\f203";
}

.fa-toggle-off:before {
  content: "\f204";
}

.fa-toggle-on:before {
  content: "\f205";
}

.fa-bicycle:before {
  content: "\f206";
}

.fa-bus:before {
  content: "\f207";
}

.fa-ioxhost:before {
  content: "\f208";
}

.fa-angellist:before {
  content: "\f209";
}

.fa-cc:before {
  content: "\f20a";
}

.fa-ils:before, .fa-shekel:before, .fa-sheqel:before {
  content: "\f20b";
}

.fa-meanpath:before {
  content: "\f20c";
}

.fa-buysellads:before {
  content: "\f20d";
}

.fa-connectdevelop:before {
  content: "\f20e";
}

.fa-dashcube:before {
  content: "\f210";
}

.fa-forumbee:before {
  content: "\f211";
}

.fa-leanpub:before {
  content: "\f212";
}

.fa-sellsy:before {
  content: "\f213";
}

.fa-shirtsinbulk:before {
  content: "\f214";
}

.fa-simplybuilt:before {
  content: "\f215";
}

.fa-skyatlas:before {
  content: "\f216";
}

.fa-cart-plus:before {
  content: "\f217";
}

.fa-cart-arrow-down:before {
  content: "\f218";
}

.fa-diamond:before {
  content: "\f219";
}

.fa-ship:before {
  content: "\f21a";
}

.fa-user-secret:before {
  content: "\f21b";
}

.fa-motorcycle:before {
  content: "\f21c";
}

.fa-street-view:before {
  content: "\f21d";
}

.fa-heartbeat:before {
  content: "\f21e";
}

.fa-venus:before {
  content: "\f221";
}

.fa-mars:before {
  content: "\f222";
}

.fa-mercury:before {
  content: "\f223";
}

.fa-intersex:before, .fa-transgender:before {
  content: "\f224";
}

.fa-transgender-alt:before {
  content: "\f225";
}

.fa-venus-double:before {
  content: "\f226";
}

.fa-mars-double:before {
  content: "\f227";
}

.fa-venus-mars:before {
  content: "\f228";
}

.fa-mars-stroke:before {
  content: "\f229";
}

.fa-mars-stroke-v:before {
  content: "\f22a";
}

.fa-mars-stroke-h:before {
  content: "\f22b";
}

.fa-neuter:before {
  content: "\f22c";
}

.fa-genderless:before {
  content: "\f22d";
}

.fa-facebook-official:before {
  content: "\f230";
}

.fa-pinterest-p:before {
  content: "\f231";
}

.fa-whatsapp:before {
  content: "\f232";
}

.fa-server:before {
  content: "\f233";
}

.fa-user-plus:before {
  content: "\f234";
}

.fa-user-times:before {
  content: "\f235";
}

.fa-bed:before, .fa-hotel:before {
  content: "\f236";
}

.fa-viacoin:before {
  content: "\f237";
}

.fa-train:before {
  content: "\f238";
}

.fa-subway:before {
  content: "\f239";
}

.fa-medium:before {
  content: "\f23a";
}

.fa-y-combinator:before, .fa-yc:before {
  content: "\f23b";
}

.fa-optin-monster:before {
  content: "\f23c";
}

.fa-opencart:before {
  content: "\f23d";
}

.fa-expeditedssl:before {
  content: "\f23e";
}

.fa-battery-4:before, .fa-battery-full:before {
  content: "\f240";
}

.fa-battery-3:before, .fa-battery-three-quarters:before {
  content: "\f241";
}

.fa-battery-2:before, .fa-battery-half:before {
  content: "\f242";
}

.fa-battery-1:before, .fa-battery-quarter:before {
  content: "\f243";
}

.fa-battery-0:before, .fa-battery-empty:before {
  content: "\f244";
}

.fa-mouse-pointer:before {
  content: "\f245";
}

.fa-i-cursor:before {
  content: "\f246";
}

.fa-object-group:before {
  content: "\f247";
}

.fa-object-ungroup:before {
  content: "\f248";
}

.fa-sticky-note:before {
  content: "\f249";
}

.fa-sticky-note-o:before {
  content: "\f24a";
}

.fa-cc-jcb:before {
  content: "\f24b";
}

.fa-cc-diners-club:before {
  content: "\f24c";
}

.fa-clone:before {
  content: "\f24d";
}

.fa-balance-scale:before {
  content: "\f24e";
}

.fa-hourglass-o:before {
  content: "\f250";
}

.fa-hourglass-1:before, .fa-hourglass-start:before {
  content: "\f251";
}

.fa-hourglass-2:before, .fa-hourglass-half:before {
  content: "\f252";
}

.fa-hourglass-3:before, .fa-hourglass-end:before {
  content: "\f253";
}

.fa-hourglass:before {
  content: "\f254";
}

.fa-hand-grab-o:before, .fa-hand-rock-o:before {
  content: "\f255";
}

.fa-hand-paper-o:before, .fa-hand-stop-o:before {
  content: "\f256";
}

.fa-hand-scissors-o:before {
  content: "\f257";
}

.fa-hand-lizard-o:before {
  content: "\f258";
}

.fa-hand-spock-o:before {
  content: "\f259";
}

.fa-hand-pointer-o:before {
  content: "\f25a";
}

.fa-hand-peace-o:before {
  content: "\f25b";
}

.fa-trademark:before {
  content: "\f25c";
}

.fa-registered:before {
  content: "\f25d";
}

.fa-creative-commons:before {
  content: "\f25e";
}

.fa-gg:before {
  content: "\f260";
}

.fa-gg-circle:before {
  content: "\f261";
}

.fa-tripadvisor:before {
  content: "\f262";
}

.fa-odnoklassniki:before {
  content: "\f263";
}

.fa-odnoklassniki-square:before {
  content: "\f264";
}

.fa-get-pocket:before {
  content: "\f265";
}

.fa-wikipedia-w:before {
  content: "\f266";
}

.fa-safari:before {
  content: "\f267";
}

.fa-chrome:before {
  content: "\f268";
}

.fa-firefox:before {
  content: "\f269";
}

.fa-opera:before {
  content: "\f26a";
}

.fa-internet-explorer:before {
  content: "\f26b";
}

.fa-television:before, .fa-tv:before {
  content: "\f26c";
}

.fa-contao:before {
  content: "\f26d";
}

.fa-500px:before {
  content: "\f26e";
}

.fa-amazon:before {
  content: "\f270";
}

.fa-calendar-plus-o:before {
  content: "\f271";
}

.fa-calendar-minus-o:before {
  content: "\f272";
}

.fa-calendar-times-o:before {
  content: "\f273";
}

.fa-calendar-check-o:before {
  content: "\f274";
}

.fa-industry:before {
  content: "\f275";
}

.fa-map-pin:before {
  content: "\f276";
}

.fa-map-signs:before {
  content: "\f277";
}

.fa-map-o:before {
  content: "\f278";
}

.fa-map:before {
  content: "\f279";
}

.fa-commenting:before {
  content: "\f27a";
}

.fa-commenting-o:before {
  content: "\f27b";
}

.fa-houzz:before {
  content: "\f27c";
}

.fa-vimeo:before {
  content: "\f27d";
}

.fa-black-tie:before {
  content: "\f27e";
}

.fa-fonticons:before {
  content: "\f280";
}

.fa-reddit-alien:before {
  content: "\f281";
}

.fa-edge:before {
  content: "\f282";
}

.fa-credit-card-alt:before {
  content: "\f283";
}

.fa-codiepie:before {
  content: "\f284";
}

.fa-modx:before {
  content: "\f285";
}

.fa-fort-awesome:before {
  content: "\f286";
}

.fa-usb:before {
  content: "\f287";
}

.fa-product-hunt:before {
  content: "\f288";
}

.fa-mixcloud:before {
  content: "\f289";
}

.fa-scribd:before {
  content: "\f28a";
}

.fa-pause-circle:before {
  content: "\f28b";
}

.fa-pause-circle-o:before {
  content: "\f28c";
}

.fa-stop-circle:before {
  content: "\f28d";
}

.fa-stop-circle-o:before {
  content: "\f28e";
}

.fa-shopping-bag:before {
  content: "\f290";
}

.fa-shopping-basket:before {
  content: "\f291";
}

.fa-hashtag:before {
  content: "\f292";
}

.fa-bluetooth:before {
  content: "\f293";
}

.fa-bluetooth-b:before {
  content: "\f294";
}

.fa-percent:before {
  content: "\f295";
}

.fa-gitlab:before {
  content: "\f296";
}

.fa-wpbeginner:before {
  content: "\f297";
}

.fa-wpforms:before {
  content: "\f298";
}

.fa-envira:before {
  content: "\f299";
}

.fa-universal-access:before {
  content: "\f29a";
}

.fa-wheelchair-alt:before {
  content: "\f29b";
}

.fa-question-circle-o:before {
  content: "\f29c";
}

.fa-blind:before {
  content: "\f29d";
}

.fa-audio-description:before {
  content: "\f29e";
}

.fa-volume-control-phone:before {
  content: "\f2a0";
}

.fa-braille:before {
  content: "\f2a1";
}

.fa-assistive-listening-systems:before {
  content: "\f2a2";
}

.fa-american-sign-language-interpreting:before, .fa-asl-interpreting:before {
  content: "\f2a3";
}

.fa-deaf:before, .fa-deafness:before, .fa-hard-of-hearing:before {
  content: "\f2a4";
}

.fa-glide:before {
  content: "\f2a5";
}

.fa-glide-g:before {
  content: "\f2a6";
}

.fa-sign-language:before, .fa-signing:before {
  content: "\f2a7";
}

.fa-low-vision:before {
  content: "\f2a8";
}

.fa-viadeo:before {
  content: "\f2a9";
}

.fa-viadeo-square:before {
  content: "\f2aa";
}

.fa-snapchat:before {
  content: "\f2ab";
}

.fa-snapchat-ghost:before {
  content: "\f2ac";
}

.fa-snapchat-square:before {
  content: "\f2ad";
}

.fa-pied-piper:before {
  content: "\f2ae";
}

.fa-first-order:before {
  content: "\f2b0";
}

.fa-yoast:before {
  content: "\f2b1";
}

.fa-themeisle:before {
  content: "\f2b2";
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

/*--------- Themify Icon Css -------------*/
@font-face {
  font-family: themify;
  src: url(/zzp/fonts/themify.eot?9bad94440d49256265a5b2305ec42d63);
  src: url(/zzp/fonts/themify.eot?9bad94440d49256265a5b2305ec42d63?#iefix-fvbane) format("embedded-opentype"), url(/zzp/fonts/themify.woff?29b39089170885ae29671a8c66d85a9f) format("woff"), url(/zzp/fonts/themify.ttf?eda8b94308c6f538f04a8056ed761a57) format("truetype"), url(/zzp/fonts/themify.svg?f0fc8c798eac5636249c4ea287832422#themify) format("svg");
  font-weight: 400;
  font-style: normal;
}
[class*=" ti-"], [class^=ti-] {
  font-family: themify;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ti-wand:before {
  content: "\e600";
}

.ti-volume:before {
  content: "\e601";
}

.ti-user:before {
  content: "\e602";
}

.ti-unlock:before {
  content: "\e603";
}

.ti-unlink:before {
  content: "\e604";
}

.ti-trash:before {
  content: "\e605";
}

.ti-thought:before {
  content: "\e606";
}

.ti-target:before {
  content: "\e607";
}

.ti-tag:before {
  content: "\e608";
}

.ti-tablet:before {
  content: "\e609";
}

.ti-star:before {
  content: "\e60a";
}

.ti-spray:before {
  content: "\e60b";
}

.ti-signal:before {
  content: "\e60c";
}

.ti-shopping-cart:before {
  content: "\e60d";
}

.ti-shopping-cart-full:before {
  content: "\e60e";
}

.ti-settings:before {
  content: "\e60f";
}

.ti-search:before {
  content: "\e610";
}

.ti-zoom-in:before {
  content: "\e611";
}

.ti-zoom-out:before {
  content: "\e612";
}

.ti-cut:before {
  content: "\e613";
}

.ti-ruler:before {
  content: "\e614";
}

.ti-ruler-pencil:before {
  content: "\e615";
}

.ti-ruler-alt:before {
  content: "\e616";
}

.ti-bookmark:before {
  content: "\e617";
}

.ti-bookmark-alt:before {
  content: "\e618";
}

.ti-reload:before {
  content: "\e619";
}

.ti-plus:before {
  content: "\e61a";
}

.ti-pin:before {
  content: "\e61b";
}

.ti-pencil:before {
  content: "\e61c";
}

.ti-pencil-alt:before {
  content: "\e61d";
}

.ti-paint-roller:before {
  content: "\e61e";
}

.ti-paint-bucket:before {
  content: "\e61f";
}

.ti-na:before {
  content: "\e620";
}

.ti-mobile:before {
  content: "\e621";
}

.ti-minus:before {
  content: "\e622";
}

.ti-medall:before {
  content: "\e623";
}

.ti-medall-alt:before {
  content: "\e624";
}

.ti-marker:before {
  content: "\e625";
}

.ti-marker-alt:before {
  content: "\e626";
}

.ti-arrow-up:before {
  content: "\e627";
}

.ti-arrow-right:before {
  content: "\e628";
}

.ti-arrow-left:before {
  content: "\e629";
}

.ti-arrow-down:before {
  content: "\e62a";
}

.ti-lock:before {
  content: "\e62b";
}

.ti-location-arrow:before {
  content: "\e62c";
}

.ti-link:before {
  content: "\e62d";
}

.ti-layout:before {
  content: "\e62e";
}

.ti-layers:before {
  content: "\e62f";
}

.ti-layers-alt:before {
  content: "\e630";
}

.ti-key:before {
  content: "\e631";
}

.ti-import:before {
  content: "\e632";
}

.ti-image:before {
  content: "\e633";
}

.ti-heart:before {
  content: "\e634";
}

.ti-heart-broken:before {
  content: "\e635";
}

.ti-hand-stop:before {
  content: "\e636";
}

.ti-hand-open:before {
  content: "\e637";
}

.ti-hand-drag:before {
  content: "\e638";
}

.ti-folder:before {
  content: "\e639";
}

.ti-flag:before {
  content: "\e63a";
}

.ti-flag-alt:before {
  content: "\e63b";
}

.ti-flag-alt-2:before {
  content: "\e63c";
}

.ti-eye:before {
  content: "\e63d";
}

.ti-export:before {
  content: "\e63e";
}

.ti-exchange-vertical:before {
  content: "\e63f";
}

.ti-desktop:before {
  content: "\e640";
}

.ti-cup:before {
  content: "\e641";
}

.ti-crown:before {
  content: "\e642";
}

.ti-comment-detail:before {
  content: "\e643";
}

.ti-comment:before {
  content: "\e644";
}

.ti-comment-alt:before {
  content: "\e645";
}

.ti-close:before {
  content: "\e646";
}

.ti-clip:before {
  content: "\e647";
}

.ti-angle-up:before {
  content: "\e648";
}

.ti-angle-right:before {
  content: "\e649";
}

.ti-angle-left:before {
  content: "\e64a";
}

.ti-angle-down:before {
  content: "\e64b";
}

.ti-check:before {
  content: "\e64c";
}

.ti-check-box:before {
  content: "\e64d";
}

.ti-camera:before {
  content: "\e64e";
}

.ti-announcement:before {
  content: "\e64f";
}

.ti-brush:before {
  content: "\e650";
}

.ti-briefcase:before {
  content: "\e651";
}

.ti-bolt:before {
  content: "\e652";
}

.ti-bolt-alt:before {
  content: "\e653";
}

.ti-blackboard:before {
  content: "\e654";
}

.ti-bag:before {
  content: "\e655";
}

.ti-move:before {
  content: "\e656";
}

.ti-arrows-vertical:before {
  content: "\e657";
}

.ti-arrows-horizontal:before {
  content: "\e658";
}

.ti-fullscreen:before {
  content: "\e659";
}

.ti-arrow-top-right:before {
  content: "\e65a";
}

.ti-arrow-top-left:before {
  content: "\e65b";
}

.ti-arrow-circle-up:before {
  content: "\e65c";
}

.ti-arrow-circle-right:before {
  content: "\e65d";
}

.ti-arrow-circle-left:before {
  content: "\e65e";
}

.ti-arrow-circle-down:before {
  content: "\e65f";
}

.ti-angle-double-up:before {
  content: "\e660";
}

.ti-angle-double-right:before {
  content: "\e661";
}

.ti-angle-double-left:before {
  content: "\e662";
}

.ti-angle-double-down:before {
  content: "\e663";
}

.ti-zip:before {
  content: "\e664";
}

.ti-world:before {
  content: "\e665";
}

.ti-wheelchair:before {
  content: "\e666";
}

.ti-view-list:before {
  content: "\e667";
}

.ti-view-list-alt:before {
  content: "\e668";
}

.ti-view-grid:before {
  content: "\e669";
}

.ti-uppercase:before {
  content: "\e66a";
}

.ti-upload:before {
  content: "\e66b";
}

.ti-underline:before {
  content: "\e66c";
}

.ti-truck:before {
  content: "\e66d";
}

.ti-timer:before {
  content: "\e66e";
}

.ti-ticket:before {
  content: "\e66f";
}

.ti-thumb-up:before {
  content: "\e670";
}

.ti-thumb-down:before {
  content: "\e671";
}

.ti-text:before {
  content: "\e672";
}

.ti-stats-up:before {
  content: "\e673";
}

.ti-stats-down:before {
  content: "\e674";
}

.ti-split-v:before {
  content: "\e675";
}

.ti-split-h:before {
  content: "\e676";
}

.ti-smallcap:before {
  content: "\e677";
}

.ti-shine:before {
  content: "\e678";
}

.ti-shift-right:before {
  content: "\e679";
}

.ti-shift-left:before {
  content: "\e67a";
}

.ti-shield:before {
  content: "\e67b";
}

.ti-notepad:before {
  content: "\e67c";
}

.ti-server:before {
  content: "\e67d";
}

.ti-quote-right:before {
  content: "\e67e";
}

.ti-quote-left:before {
  content: "\e67f";
}

.ti-pulse:before {
  content: "\e680";
}

.ti-printer:before {
  content: "\e681";
}

.ti-power-off:before {
  content: "\e682";
}

.ti-plug:before {
  content: "\e683";
}

.ti-pie-chart:before {
  content: "\e684";
}

.ti-paragraph:before {
  content: "\e685";
}

.ti-panel:before {
  content: "\e686";
}

.ti-package:before {
  content: "\e687";
}

.ti-music:before {
  content: "\e688";
}

.ti-music-alt:before {
  content: "\e689";
}

.ti-mouse:before {
  content: "\e68a";
}

.ti-mouse-alt:before {
  content: "\e68b";
}

.ti-money:before {
  content: "\e68c";
}

.ti-microphone:before {
  content: "\e68d";
}

.ti-menu:before {
  content: "\e68e";
}

.ti-menu-alt:before {
  content: "\e68f";
}

.ti-map:before {
  content: "\e690";
}

.ti-map-alt:before {
  content: "\e691";
}

.ti-loop:before {
  content: "\e692";
}

.ti-location-pin:before {
  content: "\e693";
}

.ti-list:before {
  content: "\e694";
}

.ti-light-bulb:before {
  content: "\e695";
}

.ti-Italic:before {
  content: "\e696";
}

.ti-info:before {
  content: "\e697";
}

.ti-infinite:before {
  content: "\e698";
}

.ti-id-badge:before {
  content: "\e699";
}

.ti-hummer:before {
  content: "\e69a";
}

.ti-home:before {
  content: "\e69b";
}

.ti-help:before {
  content: "\e69c";
}

.ti-headphone:before {
  content: "\e69d";
}

.ti-harddrives:before {
  content: "\e69e";
}

.ti-harddrive:before {
  content: "\e69f";
}

.ti-gift:before {
  content: "\e6a0";
}

.ti-game:before {
  content: "\e6a1";
}

.ti-filter:before {
  content: "\e6a2";
}

.ti-files:before {
  content: "\e6a3";
}

.ti-file:before {
  content: "\e6a4";
}

.ti-eraser:before {
  content: "\e6a5";
}

.ti-envelope:before {
  content: "\e6a6";
}

.ti-download:before {
  content: "\e6a7";
}

.ti-direction:before {
  content: "\e6a8";
}

.ti-direction-alt:before {
  content: "\e6a9";
}

.ti-dashboard:before {
  content: "\e6aa";
}

.ti-control-stop:before {
  content: "\e6ab";
}

.ti-control-shuffle:before {
  content: "\e6ac";
}

.ti-control-play:before {
  content: "\e6ad";
}

.ti-control-pause:before {
  content: "\e6ae";
}

.ti-control-forward:before {
  content: "\e6af";
}

.ti-control-backward:before {
  content: "\e6b0";
}

.ti-cloud:before {
  content: "\e6b1";
}

.ti-cloud-up:before {
  content: "\e6b2";
}

.ti-cloud-down:before {
  content: "\e6b3";
}

.ti-clipboard:before {
  content: "\e6b4";
}

.ti-car:before {
  content: "\e6b5";
}

.ti-calendar:before {
  content: "\e6b6";
}

.ti-book:before {
  content: "\e6b7";
}

.ti-bell:before {
  content: "\e6b8";
}

.ti-basketball:before {
  content: "\e6b9";
}

.ti-bar-chart:before {
  content: "\e6ba";
}

.ti-bar-chart-alt:before {
  content: "\e6bb";
}

.ti-back-right:before {
  content: "\e6bc";
}

.ti-back-left:before {
  content: "\e6bd";
}

.ti-arrows-corner:before {
  content: "\e6be";
}

.ti-archive:before {
  content: "\e6bf";
}

.ti-anchor:before {
  content: "\e6c0";
}

.ti-align-right:before {
  content: "\e6c1";
}

.ti-align-left:before {
  content: "\e6c2";
}

.ti-align-justify:before {
  content: "\e6c3";
}

.ti-align-center:before {
  content: "\e6c4";
}

.ti-alert:before {
  content: "\e6c5";
}

.ti-alarm-clock:before {
  content: "\e6c6";
}

.ti-agenda:before {
  content: "\e6c7";
}

.ti-write:before {
  content: "\e6c8";
}

.ti-window:before {
  content: "\e6c9";
}

.ti-widgetized:before {
  content: "\e6ca";
}

.ti-widget:before {
  content: "\e6cb";
}

.ti-widget-alt:before {
  content: "\e6cc";
}

.ti-wallet:before {
  content: "\e6cd";
}

.ti-video-clapper:before {
  content: "\e6ce";
}

.ti-video-camera:before {
  content: "\e6cf";
}

.ti-vector:before {
  content: "\e6d0";
}

.ti-themify-logo:before {
  content: "\e6d1";
}

.ti-themify-favicon:before {
  content: "\e6d2";
}

.ti-themify-favicon-alt:before {
  content: "\e6d3";
}

.ti-support:before {
  content: "\e6d4";
}

.ti-stamp:before {
  content: "\e6d5";
}

.ti-split-v-alt:before {
  content: "\e6d6";
}

.ti-slice:before {
  content: "\e6d7";
}

.ti-shortcode:before {
  content: "\e6d8";
}

.ti-shift-right-alt:before {
  content: "\e6d9";
}

.ti-shift-left-alt:before {
  content: "\e6da";
}

.ti-ruler-alt-2:before {
  content: "\e6db";
}

.ti-receipt:before {
  content: "\e6dc";
}

.ti-pin2:before {
  content: "\e6dd";
}

.ti-pin-alt:before {
  content: "\e6de";
}

.ti-pencil-alt2:before {
  content: "\e6df";
}

.ti-palette:before {
  content: "\e6e0";
}

.ti-more:before {
  content: "\e6e1";
}

.ti-more-alt:before {
  content: "\e6e2";
}

.ti-microphone-alt:before {
  content: "\e6e3";
}

.ti-magnet:before {
  content: "\e6e4";
}

.ti-line-double:before {
  content: "\e6e5";
}

.ti-line-dotted:before {
  content: "\e6e6";
}

.ti-line-dashed:before {
  content: "\e6e7";
}

.ti-layout-width-full:before {
  content: "\e6e8";
}

.ti-layout-width-default:before {
  content: "\e6e9";
}

.ti-layout-width-default-alt:before {
  content: "\e6ea";
}

.ti-layout-tab:before {
  content: "\e6eb";
}

.ti-layout-tab-window:before {
  content: "\e6ec";
}

.ti-layout-tab-v:before {
  content: "\e6ed";
}

.ti-layout-tab-min:before {
  content: "\e6ee";
}

.ti-layout-slider:before {
  content: "\e6ef";
}

.ti-layout-slider-alt:before {
  content: "\e6f0";
}

.ti-layout-sidebar-right:before {
  content: "\e6f1";
}

.ti-layout-sidebar-none:before {
  content: "\e6f2";
}

.ti-layout-sidebar-left:before {
  content: "\e6f3";
}

.ti-layout-placeholder:before {
  content: "\e6f4";
}

.ti-layout-menu:before {
  content: "\e6f5";
}

.ti-layout-menu-v:before {
  content: "\e6f6";
}

.ti-layout-menu-separated:before {
  content: "\e6f7";
}

.ti-layout-menu-full:before {
  content: "\e6f8";
}

.ti-layout-media-right-alt:before {
  content: "\e6f9";
}

.ti-layout-media-right:before {
  content: "\e6fa";
}

.ti-layout-media-overlay:before {
  content: "\e6fb";
}

.ti-layout-media-overlay-alt:before {
  content: "\e6fc";
}

.ti-layout-media-overlay-alt-2:before {
  content: "\e6fd";
}

.ti-layout-media-left-alt:before {
  content: "\e6fe";
}

.ti-layout-media-left:before {
  content: "\e6ff";
}

.ti-layout-media-center-alt:before {
  content: "\e700";
}

.ti-layout-media-center:before {
  content: "\e701";
}

.ti-layout-list-thumb:before {
  content: "\e702";
}

.ti-layout-list-thumb-alt:before {
  content: "\e703";
}

.ti-layout-list-post:before {
  content: "\e704";
}

.ti-layout-list-large-image:before {
  content: "\e705";
}

.ti-layout-line-solid:before {
  content: "\e706";
}

.ti-layout-grid4:before {
  content: "\e707";
}

.ti-layout-grid3:before {
  content: "\e708";
}

.ti-layout-grid2:before {
  content: "\e709";
}

.ti-layout-grid2-thumb:before {
  content: "\e70a";
}

.ti-layout-cta-right:before {
  content: "\e70b";
}

.ti-layout-cta-left:before {
  content: "\e70c";
}

.ti-layout-cta-center:before {
  content: "\e70d";
}

.ti-layout-cta-btn-right:before {
  content: "\e70e";
}

.ti-layout-cta-btn-left:before {
  content: "\e70f";
}

.ti-layout-column4:before {
  content: "\e710";
}

.ti-layout-column3:before {
  content: "\e711";
}

.ti-layout-column2:before {
  content: "\e712";
}

.ti-layout-accordion-separated:before {
  content: "\e713";
}

.ti-layout-accordion-merged:before {
  content: "\e714";
}

.ti-layout-accordion-list:before {
  content: "\e715";
}

.ti-ink-pen:before {
  content: "\e716";
}

.ti-info-alt:before {
  content: "\e717";
}

.ti-help-alt:before {
  content: "\e718";
}

.ti-headphone-alt:before {
  content: "\e719";
}

.ti-hand-point-up:before {
  content: "\e71a";
}

.ti-hand-point-right:before {
  content: "\e71b";
}

.ti-hand-point-left:before {
  content: "\e71c";
}

.ti-hand-point-down:before {
  content: "\e71d";
}

.ti-gallery:before {
  content: "\e71e";
}

.ti-face-smile:before {
  content: "\e71f";
}

.ti-face-sad:before {
  content: "\e720";
}

.ti-credit-card:before {
  content: "\e721";
}

.ti-control-skip-forward:before {
  content: "\e722";
}

.ti-control-skip-backward:before {
  content: "\e723";
}

.ti-control-record:before {
  content: "\e724";
}

.ti-control-eject:before {
  content: "\e725";
}

.ti-comment-detail-smiley:before {
  content: "\e726";
}

.ti-brush-alt:before {
  content: "\e727";
}

.ti-youtube:before {
  content: "\e728";
}

.ti-vimeo:before {
  content: "\e729";
}

.ti-twitter:before {
  content: "\e72a";
}

.ti-time:before {
  content: "\e72b";
}

.ti-tumblr:before {
  content: "\e72c";
}

.ti-skype:before {
  content: "\e72d";
}

.ti-share:before {
  content: "\e72e";
}

.ti-share-alt:before {
  content: "\e72f";
}

.ti-rocket:before {
  content: "\e730";
}

.ti-pinterest:before {
  content: "\e731";
}

.ti-new-window:before {
  content: "\e732";
}

.ti-microsoft:before {
  content: "\e733";
}

.ti-list-ol:before {
  content: "\e734";
}

.ti-linkedin:before {
  content: "\e735";
}

.ti-layout-sidebar-2:before {
  content: "\e736";
}

.ti-layout-grid4-alt:before {
  content: "\e737";
}

.ti-layout-grid3-alt:before {
  content: "\e738";
}

.ti-layout-grid2-alt:before {
  content: "\e739";
}

.ti-layout-column4-alt:before {
  content: "\e73a";
}

.ti-layout-column3-alt:before {
  content: "\e73b";
}

.ti-layout-column2-alt:before {
  content: "\e73c";
}

.ti-instagram:before {
  content: "\e73d";
}

.ti-google:before {
  content: "\e73e";
}

.ti-github:before {
  content: "\e73f";
}

.ti-flickr:before {
  content: "\e740";
}

.ti-facebook:before {
  content: "\e741";
}

.ti-dropbox:before {
  content: "\e742";
}

.ti-dribbble:before {
  content: "\e743";
}

.ti-apple:before {
  content: "\e744";
}

.ti-android:before {
  content: "\e745";
}

.ti-save:before {
  content: "\e746";
}

.ti-save-alt:before {
  content: "\e747";
}

.ti-yahoo:before {
  content: "\e748";
}

.ti-wordpress:before {
  content: "\e749";
}

.ti-vimeo-alt:before {
  content: "\e74a";
}

.ti-twitter-alt:before {
  content: "\e74b";
}

.ti-tumblr-alt:before {
  content: "\e74c";
}

.ti-trello:before {
  content: "\e74d";
}

.ti-stack-overflow:before {
  content: "\e74e";
}

.ti-soundcloud:before {
  content: "\e74f";
}

.ti-sharethis:before {
  content: "\e750";
}

.ti-sharethis-alt:before {
  content: "\e751";
}

.ti-reddit:before {
  content: "\e752";
}

.ti-pinterest-alt:before {
  content: "\e753";
}

.ti-microsoft-alt:before {
  content: "\e754";
}

.ti-linux:before {
  content: "\e755";
}

.ti-jsfiddle:before {
  content: "\e756";
}

.ti-joomla:before {
  content: "\e757";
}

.ti-html5:before {
  content: "\e758";
}

.ti-flickr-alt:before {
  content: "\e759";
}

.ti-email:before {
  content: "\e75a";
}

.ti-drupal:before {
  content: "\e75b";
}

.ti-dropbox-alt:before {
  content: "\e75c";
}

.ti-css3:before {
  content: "\e75d";
}

.ti-rss:before {
  content: "\e75e";
}

.ti-rss-alt:before {
  content: "\e75f";
}

nav.navbar.bootsnav.navbar-fixed {
  position: fixed;
  display: block;
  width: 100%;
  z-index: 222;
}

/*
* Theme Name: Job Stock
* Author: Themez Hub
* Version: 4.0
* Last Change: 19 May 2019
  Author URI    : http://www.themezhub.com/
-------------------------------------------------------------------*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Fonts
# General Setting
# Custom Settings
# Form And Button
# Heading Style
# Pagination Style
# Search Filter Style
# Navigation Style Setting
# First Home Page Banner Style Settings
# Search form style
# Banner Brand Carousel
# Second Home Page Banner Style Settings
# Banner bottom search form
# Third Home Page Banner Style Settings
# Search job Style
# Fourth Home Page Banner Style Settings
# Five Home Page Banner Style Settings
# Advance Job Feature
# Work Process Style Settings
# Top features Style Settings
# Video Part Style Settings
# Work Process Style Settings
# Testimonials Style Settings
# Call To Actione Style Settings
# Pricing Table Style Settings
# Download app Style Settings
# Footer Part Style Settings
# Footer Social Media
# Footer Contact Form Style
# Footer Copyright Style
# Inner Page Style Settings
	-Common Style Setting
	-Inner Dropdown Button Style
	-Search Filter

# Browse Job Style Settings
# Browse Company Style Settings
# Browse Resume Style Settings
# Manage Candidate Style Settings
# Manage Employee Style Settings
# Manage Company Style Settings
# Manage Resume Style Settings
# Manage Resume 2 Style Settings
# Job, Resume and Company Detail Page Style
# Add Company, Resume and Job Page Style Settings
	-Bootstrap Editor
	-file field

#  Company detail, Job Detail and Resume Detail Page Style Settings
# Accordion  Page Style Settings
	-simple Accordian style
	-style for accordian three

# Tab Page Style Settings
	-Simple Tab style
	-Icon Tab style

# Login and Signup Popup
# Contact us Page Style Settings
# Blog Page Page Design
	-Sidebar Star

# Blog Detail Page Style Settings
	-Blog Comment Style Settings

# Login Signup And Forget password page style settings
# Signup 2 page design
# Search Job Page Design
# Brows job in Grid Style
# New Search Job Style
	Sidebar Style
# New Job Detail Style
# Error page design
# Employer & Candidate Profile Page Design
# Dropper Settings

# New Pages Style
	-Hero Banner section
	-Freelancer
	-Paid Candidat
	-popular job
	-How It Works
	-Freelancer Detail
	-job Apply Detail
	-Login
	-Review & New Detail Page
	-Default Sidebar
		-Detail For Freelancer
		-Job Share Sidebar

# Responsiveness Start
--------------------------------------------------------*/
/* ==========================================================================
Fonts
========================================================================== */
/*---------- Loader -----------*/
.no-js #loader {
  display: none;
}

.js #loader {
  display: block;
  position: absolute;
  left: 100px;
  top: 0;
}

.Loader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  background: url(/images/loader.gif?4499b184fc070f27c02b056f37059ec1) center no-repeat #ffffff;
}

/* ==========================================================================
General Setting
========================================================================== */
html, body {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  background: #ffffff;
  font-family: "Muli", sans-serif;
  position: relative;
  font-size: 15px;
  color: #667488;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  color: #272f46;
  margin-top: 0;
}

h1 {
  font-size: 50px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 25px;
}

h4 {
  font-size: 16px;
}

p {
  position: relative;
  line-height: 1.6;
  transition: 0.2s ease-in;
}

::-moz-selection {
  background: #11b719;
  color: #fff;
}

::selection {
  background: #11b719;
  color: #fff;
}

a {
  color: #272f46;
}

a,
a:active,
a:focus,
a:hover {
  outline: none;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.inverse-bg a,
.inverse-bg h1,
.inverse-bg h2,
.inverse-bg h3,
.inverse-bg h4,
.inverse-bg h5,
.inverse-bg h6,
.inverse-bg p,
.inverse-bg small {
  color: #ffffff;
}

.extra.row {
  margin-right: 15px;
  margin-left: 15px;
}

section {
  padding: 60px 0 60px 0;
  background: #ffffff;
}

section.gray, .gray {
  background: #f6f7f9;
}

.no-mrg {
  padding: 0;
  margin-left: 0px;
  margin-right: 0px;
}

a.btn.call-btn {
  background: #ffffff;
  border-radius: 4px;
  padding: 0.8em 2em;
  color: #11b719;
  text-transform: capitalize;
}

.small-padd {
  padding: 0 7px;
}

section.gray-bg {
  background: #f5f6f7;
}

.freelance-box {
  padding: 5px;
}

.inner-header-title.light-tx h2 {
  color: #ffffff;
}

/* ==========================================================================
Global Setting
========================================================================== */
/*------- Global Settings: Padding Style ----------*/
html body .padd-0 {
  padding: 0px !important;
}

html body .padd-5 {
  padding: 5px !important;
}

html body .padd-10 {
  padding: 10px !important;
}

html body .padd-15 {
  padding: 15px !important;
}

html body .padd-20 {
  padding: 20px !important;
}

html body .padd-l-0 {
  padding-left: 0px !important;
}

html body .padd-l-5 {
  padding-left: 5px !important;
}

html body .padd-l-10 {
  padding-left: 10px !important;
}

html body .padd-l-15 {
  padding-left: 15px !important;
}

html body .padd-r-0 {
  padding-right: 0px !important;
}

html body .padd-r-5 {
  padding-right: 5px !important;
}

html body .padd-r-10 {
  padding-right: 10px !important;
}

html body .padd-r-10 {
  padding-right: 15px !important;
}

html body .padd-top-0 {
  padding-top: 0px !important;
}

html body .padd-top-5 {
  padding-top: 5px !important;
}

html body .padd-top-10 {
  padding-top: 10px !important;
}

html body .padd-top-15 {
  padding-top: 15px !important;
}

html body .padd-top-20 {
  padding-top: 20px !important;
}

html body .padd-top-25 {
  padding-top: 25px !important;
}

html body .padd-top-30 {
  padding-top: 30px !important;
}

html body .padd-top-40 {
  padding-top: 40px !important;
}

html body .padd-bot-0 {
  padding-bottom: 0px !important;
}

html body .padd-bot-5 {
  padding-bottom: 5px !important;
}

html body .padd-bot-10 {
  padding-bottom: 10px !important;
}

html body .padd-bot-15 {
  padding-bottom: 15px !important;
}

html body .padd-bot-20 {
  padding-bottom: 20px !important;
}

html body .padd-bot-25 {
  padding-bottom: 25px !important;
}

html body .padd-bot-30 {
  padding-bottom: 30px !important;
}

html body .padd-bot-40 {
  padding-bottom: 40px !important;
}

/*------- Global Settings: Margin Style ----------*/
html body .mrg-0 {
  margin: 0px !important;
}

html body .mrg-5 {
  margin: 5px !important;
}

html body .mrg-10 {
  margin: 10px !important;
}

html body .mrg-15 {
  margin: 15px !important;
}

html body .mrg-20 {
  margin: 20px !important;
}

html body .mrg-l-0 {
  margin-left: 0px !important;
}

html body .mrg-l-5 {
  margin-left: 5px !important;
}

html body .mrg-l-10 {
  margin-left: 10px !important;
}

html body .mrg-l-15 {
  margin-left: 15px !important;
}

html body .mrg-r-0 {
  margin-right: 0px !important;
}

html body .mrg-r-5 {
  margin-right: 5px !important;
}

html body .mrg-r-10 {
  margin-right: 10px !important;
}

html body .mrg-r-15 {
  margin-right: 15px !important;
}

html body .mrg-top-0 {
  margin-top: 0px !important;
}

html body .mrg-top-5 {
  margin-top: 5px !important;
}

html body .mrg-top-10 {
  margin-top: 10px !important;
}

html body .mrg-top-15 {
  margin-top: 15px !important;
}

html body .mrg-top-20 {
  margin-top: 20px !important;
}

html body .mrg-top-25 {
  margin-top: 25px !important;
}

html body .mrg-top-30 {
  margin-top: 30px !important;
}

html body .mrg-top-40 {
  margin-top: 40px !important;
}

html body .mrg-top-70 {
  margin-top: 70px !important;
}

html body .mrg-bot-0 {
  margin-bottom: 0px !important;
}

html body .mrg-bot-5 {
  margin-bottom: 5px !important;
}

html body .mrg-bot-10 {
  margin-bottom: 10px !important;
}

html body .mrg-bot-15 {
  margin-bottom: 15px !important;
}

html body .mrg-bot-20 {
  margin-bottom: 20px !important;
}

html body .mrg-bot-25 {
  margin-bottom: 25px !important;
}

html body .mrg-bot-30 {
  margin-bottom: 30px !important;
}

html body .mrg-bot-40 {
  margin-bottom: 40px !important;
}

html body .extra-mrg-5 {
  margin: 0 -5px !important;
}

html body .extra-mrg-10 {
  margin: 0 -10px !important;
}

html body .extra-mrg-15 {
  margin: 0 -15px !important;
}

html body .extra-mrg-20 {
  margin: 0 -20px !important;
}

/*------- Global Settings: Background Style ----------*/
html body .bg-info {
  background: #01b2ac !important;
}

html body .bg-primary {
  background: #1194f7 !important;
}

html body .bg-danger {
  background: #f21136 !important;
}

html body .bg-warning {
  background: #ff9800 !important;
}

html body .bg-success {
  background: #11b719 !important;
}

html body .bg-purple {
  background: #c580ff !important;
}

html body .bg-default {
  background: #283447 !important;
}

/*------- Global Settings: Transparent Background Style ----------*/
html body .bg-trans-info {
  background: rgba(2, 182, 179, 0.12) !important;
}

html body .bg-trans-primary {
  background: rgba(17, 148, 247, 0.12) !important;
}

html body .bg-trans-danger {
  background: rgba(242, 17, 54, 0.12) !important;
}

html body .bg-trans-warning {
  background: rgba(255, 152, 0, 0.12) !important;
}

html body .bg-trans-success {
  background: rgba(15, 183, 107, 0.12) !important;
}

html body .bg-trans-purple {
  background: rgba(197, 128, 255, 0.12) !important;
}

html body .bg-trans-default {
  background: rgba(40, 52, 71, 0.12) !important;
}

/*------- Global Settings: Transparent Background with border Style ----------*/
html body .bg-info-br {
  border: 1px solid #01b2ac !important;
  background: rgba(2, 182, 179, 0.12) !important;
}

html body .bg-primary-br {
  border: 1px solid #1194f7 !important;
  background: rgba(17, 148, 247, 0.12) !important;
}

html body .bg-danger-br {
  border: 1px solid #f21136 !important;
  background: rgba(242, 17, 54, 0.12) !important;
}

html body .bg-warning-br {
  border: 1px solid #ff9800;
  background: rgba(255, 152, 0, 0.12) !important;
}

html body .bg-success-br {
  border: 1px solid #11b719 !important;
  background: rgba(15, 183, 107, 0.12) !important;
}

html body .bg-purple-br {
  border: 1px solid #c580ff !important;
  background: rgba(197, 128, 255, 0.12) !important;
}

html body .bg-default-br {
  border: 1px solid #283447 !important;
  background: rgba(40, 52, 71, 0.12) !important;
}

/*------- Global Settings: Color Style ----------*/
html body .cl-info {
  color: #01b2ac !important;
}

html body .cl-primary {
  color: #1194f7 !important;
}

html body .cl-danger {
  color: #f21136 !important;
}

html body .cl-warning {
  color: #ff9800 !important;
}

html body .cl-success {
  color: #11b719 !important;
}

html body .cl-purple {
  color: #c580ff !important;
}

html body .cl-default {
  color: #283447 !important;
}

html body .cl-white {
  color: #ffffff !important;
}

/*------- Global Settings: Border Color Style ----------*/
.br {
  border: 1px solid #eaeff5 !important;
}

.bl-1 {
  border-left: 1px solid #eaeff5 !important;
}

.bl-2 {
  border-left: 2px solid #eaeff5 !important;
}

.bl-3 {
  border-left: 3px solid #eaeff5 !important;
}

.bl-4 {
  border-left: 4px solid #eaeff5 !important;
}

.br-1 {
  border-right: 1px solid #eaeff5 !important;
}

.br-2 {
  border-right: 2px solid #eaeff5 !important;
}

.br-3 {
  border-right: 3px solid #eaeff5 !important;
}

.br-4 {
  border-right: 4px solid #eaeff5 !important;
}

.bt-1 {
  border-top: 1px solid #eaeff5 !important;
}

.bt-2 {
  border-top: 2px solid #eaeff5 !important;
}

.bt-3 {
  border-top: 3px solid #eaeff5 !important;
}

.bt-4 {
  border-top: 4px solid #eaeff5 !important;
}

.bb-1 {
  border-bottom: 1px solid #eaeff5 !important;
}

.bb-2 {
  border-bottom: 2px solid #eaeff5 !important;
}

.bb-3 {
  border-bottom: 3px solid #eaeff5 !important;
}

.bb-4 {
  border-bottom: 4px solid #eaeff5 !important;
}

.br-fade {
  border-color: rgba(97, 107, 127, 0.07) !important;
}

html body .br-info {
  border-color: #01b2ac !important;
}

html body .br-primary {
  border-color: #1194f7 !important;
}

html body .br-danger {
  border-color: #f21136 !important;
}

html body .br-warning {
  border-color: #ff9800 !important;
}

html body .br-success {
  border-color: #11b719 !important;
}

html body .br-purple {
  border-color: #c580ff !important;
}

html body .br-gary {
  border-color: #e2e5e8 !important;
}

html body .br-default {
  border-color: #283447 !important;
}

/*------------ Global Settings: Status BG Style --------------*/
html body .bg-online {
  background: #68c70b !important;
}

html body .bg-offline {
  background: #e02b0d !important;
}

html body .bg-busy {
  background: #2196f3 !important;
}

html body .bg-working {
  background: #ff9800 !important;
}

/*---------- Global Settings: Height ----------*/
html body .normal-height {
  height: 46px;
}

html body .height-10 {
  height: 10px;
}

html body .height-20 {
  height: 20px;
}

html body .height-30 {
  height: 30px;
}

html body .height-40 {
  height: 40px;
}

html body .height-50 {
  height: 50px;
}

html body .height-60 {
  height: 60px;
}

html body .height-70 {
  height: 70px;
}

html body .height-80 {
  height: 80px;
}

html body .height-90 {
  height: 90px;
}

html body .height-100 {
  height: 100px;
}

html body .height-110 {
  height: 110px;
}

html body .height-120 {
  height: 120px;
}

html body .height-130 {
  height: 130px;
}

html body .height-140 {
  height: 140px;
}

html body .height-150 {
  height: 150px;
}

html body .height-160 {
  height: 160px;
}

html body .height-170 {
  height: 170px;
}

html body .height-180 {
  height: 180px;
}

html body .height-190 {
  height: 190px;
}

html body .height-200 {
  height: 200px;
}

html body .height-210 {
  height: 210px;
}

html body .height-220 {
  height: 220px;
}

html body .height-230 {
  height: 230px;
}

html body .height-240 {
  height: 240px;
}

html body .height-250 {
  height: 250px;
}

html body .height-260 {
  height: 260px;
}

html body .height-270 {
  height: 270px;
}

html body .height-280 {
  height: 280px;
}

html body .height-290 {
  height: 290px;
}

html body .height-300 {
  height: 300px;
}

html body .height-350 {
  height: 350px;
}

html body .height-400 {
  height: 400px;
}

html body .height-450 {
  height: 450px;
}

/*----------- Global Settings: Width Style -----------*/
html body .full-width {
  width: 100%;
}

html body .width-30 {
  width: 30px;
}

html body .width-40 {
  width: 40px;
}

html body .width-50 {
  width: 50px;
}

html body .width-60 {
  width: 60px;
}

html body .width-70 {
  width: 70px;
}

html body .width-80 {
  width: 80px;
}

html body .width-90 {
  width: 90px;
}

html body .width-100 {
  width: 100px;
}

html body .width-110 {
  width: 110px;
}

html body .width-120 {
  width: 20px;
}

html body .width-130 {
  width: 130px;
}

html body .width-140 {
  width: 140px;
}

html body .width-150 {
  width: 150px;
}

html body .width-160 {
  width: 160px;
}

html body .width-170 {
  width: 170px;
}

html body .width-180 {
  width: 180px;
}

html body .width-190 {
  width: 190px;
}

html body .width-200 {
  width: 200px;
}

html body .width-210 {
  width: 210px;
}

html body .width-220 {
  width: 220px;
}

html body .width-230 {
  width: 230px;
}

html body .width-240 {
  width: 240px;
}

html body .width-250 {
  width: 250px;
}

html body .width-260 {
  width: 260px;
}

html body .width-270 {
  width: 270px;
}

html body .width-280 {
  width: 280px;
}

html body .width-290 {
  width: 290px;
}

html body .width-300 {
  width: 300px;
}

/*---------- Global Settings: Font Size ----------*/
html body .font-10 {
  font-size: 10px !important;
}

html body .font-12 {
  font-size: 12px !important;
}

html body .font-13 {
  font-size: 13px !important;
}

html body .font-16 {
  font-size: 16px !important;
}

html body .font-18 {
  font-size: 18px !important;
}

html body .font-15 {
  font-size: 15px !important;
}

html body .font-20 {
  font-size: 20px !important;
}

html body .font-25 {
  font-size: 25px !important;
}

html body .font-30 {
  font-size: 30px !important;
}

html body .font-35 {
  font-size: 35px !important;
}

html body .font-40 {
  font-size: 40px !important;
}

html body .font-45 {
  font-size: 45px !important;
}

html body .font-50 {
  font-size: 50px !important;
}

html body .font-60 {
  font-size: 60px !important;
}

html body .font-70 {
  font-size: 70px !important;
}

html body .font-80 {
  font-size: 80px !important;
}

html body .font-90 {
  font-size: 90px !important;
}

html body .font-100 {
  font-size: 100px !important;
}

html body .font-bold {
  font-weight: bold !important;
}

html body .font-normal {
  font-weight: 400 !important;
}

html body .font-midium {
  font-weight: 500 !important;
}

html body .font-light {
  font-weight: 300 !important;
}

html body .font-italic {
  font-style: italic !important;
}

/*---------- Global Settings: Label Background ----------*/
html body .label-info {
  background: #01b2ac !important;
}

html body .label-primary {
  background: #1194f7 !important;
}

html body .label-danger {
  background: #f21136 !important;
}

html body .label-warning {
  background: #ff9800 !important;
}

html body .label-success {
  background: #11b719 !important;
}

html body .label-purple {
  background: #c580ff !important;
}

html body .label-default {
  background: #283447 !important;
}

/*------- Global Settings: Slect 2 Overwrite ----------*/
:focus {
  outline: none;
}

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

.select2-container {
  width: 100% !important;
  vertical-align: inherit;
}

body .select2-container--open .iwj-find-jobs-dropdown.select2-dropdown {
  border-width: 0 2px 2px 2px;
  border-style: solid;
  border-radius: 0 0 5px 5px;
  position: relative;
  top: -2px;
}

body .select2-search--dropdown {
  padding: 0;
}

.select2-search--dropdown .select2-search__field {
  background: url(/images/search.png?abccd1e0e32193702de9f4d0d7222271) right 8px top 14px no-repeat #fff;
  padding-right: 30px;
}

body .select2-container--default .select2-search--dropdown .select2-search__field {
  border: none;
  border-bottom: 1px solid #eee;
  line-height: 1.6;
  padding: 5px 15px;
}

.select2-results {
  display: block;
}

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

body .select2-results__option {
  padding: 12px 20px;
}

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

body .select2-container--default .select2-results__option {
  background: #fff;
  border-bottom: 1px rgba(0, 0, 0, 0.05) solid;
  color: #606871;
}

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

.select2-container--default .select2-results__option--highlighted {
  background-color: #ffffff;
  color: #5897fb;
}

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

body .select2-search--dropdown:focus {
  outline: none;
}

.select2-dropdown {
  border: 1px solid #e3e5ea;
}

.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple {
  border-radius: 0;
  border: none;
  min-height: 52px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #6a7884;
  border: 1px solid #dde6ef;
  background: #fbfdff;
  font-size: 16px;
  line-height: 1.6;
  padding-left: 15px;
  text-align: left;
}

.input-with-icon .select2-container--default .select2-selection--single .select2-selection__rendered {
  border: 1px solid #ffffff;
  background: #ffffff;
  line-height: 1.6;
}

.slide-banner .select2-container--default .select2-selection--single .select2-selection__rendered,
.home-5 .select2-container--default .select2-selection--single .select2-selection__rendered {
  border: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  color: #6a7884;
  line-height: 1.6;
  padding-left: 15px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  min-height: 52px;
}

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

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #eef1f5;
  border: 1px solid #e3e7ec;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 6px;
  line-height: 1.6;
  padding: 5px 10px;
}

/*-------------- Custom Settings: Button Style ------------*/
.btn:hover, button:hover, .btn:focus, button:focus {
  cursor: pointer;
}

.btn {
  font-size: 14px;
  border-radius: 2px;
  padding: 14px 20px;
  letter-spacing: 0.5px;
  text-shadow: none;
  box-shadow: 0 2px 8px rgba(102, 103, 107, 0.15);
}

.btn.focus, .btn:focus, .btn:hover {
  text-decoration: none;
}

.btn-default.active.focus, .btn-default.active:focus, .btn-default.active:hover, .btn-default:active.focus, .btn-default:active:focus, .btn-default:active:hover, .open > .dropdown-toggle.btn-default.focus, .open > .dropdown-toggle.btn-default:focus, .open > .dropdown-toggle.btn-default:hover {
  color: #677897;
  box-shadow: none;
}

button:focus {
  outline: none;
  outline: none;
}

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

.btn.btn-small {
  padding: 0.3rem 1rem;
}

.btn.btn-lg, .btn-group-lg > .btn {
  padding: 1rem 1rem;
}

.btn-circle-30 {
  width: 30px;
  height: 30px;
  line-height: 1.6;
  text-align: center;
  color: #677897;
  background-color: #ffffff;
  border: 1px solid #eaeff5;
  display: inline-block;
  border-radius: 50%;
}

.btn-circle-30:hover, .btn-circle-30:focus {
  color: #677897;
  background-color: #eaeff5;
  border-color: #eaeff5;
}

.btn-circle-40 {
  width: 40px;
  height: 40px;
  line-height: 1.6;
  text-align: center;
  color: #677897;
  border: 1px solid #eaeff5;
  background-color: #ffffff;
  display: inline-block;
  border-radius: 50%;
}

.btn-circle-40:hover, .btn-circle-30:focus {
  color: #677897;
  background-color: #eaeff5;
}

.btn-circle-50 {
  width: 50px;
  height: 50px;
  line-height: 1.6;
  text-align: center;
  color: #677897;
  border: 1px solid #eaeff5;
  background-color: #ffffff;
  display: inline-block;
  border-radius: 50%;
}

.btn-circle-50:hover, .btn-circle-30:focus {
  color: #677897;
  background-color: #eaeff5;
}

.btn-circle-60 {
  width: 60px;
  height: 60px;
  line-height: 1.6;
  text-align: center;
  color: #677897;
  border: 1px solid #eaeff5;
  background-color: #ffffff;
  display: inline-block;
  border-radius: 50%;
}

.btn-circle-60:hover, .btn-circle-30:focus {
  color: #677897;
  background-color: #eaeff5;
}

a.bg-danger:focus, a.bg-danger:hover {
  background-color: #da0a2c;
  color: #ffffff;
}

.btn.focus, .btn:focus {
  outline: 0;
  box-shadow: none;
}

.btn-secondary {
  color: #677897;
  background-color: #ffffff;
  border-color: #eaeff5;
}

.btn-secondary:hover, .btn-secondary:focus {
  color: #677897;
  background-color: #eaeff5;
  border-color: #eaeff5;
}

.btn-trans {
  background: transparent;
  border: none;
  color: #677897;
}

.btn.btn-default {
  border: 1px solid #eaeff5;
  background: #ffffff;
  color: #677897;
}

.btn-default:active, .btn-default.active {
  border: 1px solid #eaeff5;
  background: #ffffff;
  color: #677897;
  outline: none;
}

.btn-default:hover, .btn-default:focus, .btn-default.active:focus, .btn-default.active:hover, .btn-default:active.focus, .btn-default:active:focus, .btn-default:active:hover {
  border: 1px solid #eaeff5;
  background: #ffffff;
  color: #677897;
  outline: none;
}

.btn.btn-dark {
  border: 1px solid #323f46;
  background: #323f46;
  color: #ffffff;
}

.btn-dark:active, .btn-dark.active {
  border: 1px solid #323f46;
  background: #323f46;
  color: #fff;
  outline: none;
}

.btn-dark:hover, .btn-dark:focus, .btn-dark.active:focus, .btn-dark.active:hover, .btn-dark:active.focus, .btn-dark:active:focus, .btn-dark:active:hover {
  border: 1px solid #323f46;
  background: #323f46;
  color: #fff;
  outline: none;
}

.btn-info {
  background: #1db9aa;
  border-color: #1db9aa;
  color: #fff;
}

.btn-info:active, .btn-info.active {
  background: #1db9aa;
  border-color: #1db9aa;
  color: #fff;
  outline: none;
}

.btn-info:hover, .btn-info:focus, .btn-info.active:focus, .btn-info.active:hover, .btn-info:active.focus, .btn-info:active:focus, .btn-info:active:hover {
  background: #1db9aa;
  border-color: #1db9aa;
  color: #fff;
  outline: none;
}

.btn-primary {
  background: #2196f3;
  border-color: #2196f3;
  color: #fff;
}

.btn-primary:active, .btn-primary.active {
  background: #2196f3;
  border-color: #2196f3;
  color: #fff;
  outline: none;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary.active:focus, .btn-primary.active:hover, .btn-primary:active.focus, .btn-primary:active:focus, .btn-primary:active:hover {
  background: #2196f3;
  border-color: #2196f3;
  color: #fff;
  outline: none;
}

.btn-danger {
  background: #e63c3c;
  border-color: #e63c3c;
  color: #fff;
}

.btn-danger:active, .btn-danger.active {
  background: #e63c3c;
  border-color: #e63c3c;
  color: #fff;
  outline: none;
}

.btn-danger:hover, .btn-danger:focus, .btn-danger.active:focus, .btn-danger.active:hover, .btn-danger:active.focus, .btn-danger:active:focus, .btn-danger:active:hover {
  background: #e63c3c;
  border-color: #e63c3c;
  color: #fff;
  outline: none;
}

.btn-warning {
  background: #f39c12;
  border-color: #f39c12;
  color: #fff;
}

.btn-warning:active, .btn-warning.active {
  background: #f39c12;
  border-color: #f39c12;
  color: #fff;
  outline: none;
}

.btn-warning:hover, .btn-warning:focus, .btn-warning.active:focus, .btn-warning.active:hover, .btn-warning:active.focus, .btn-warning:active:focus, .btn-warning:active:hover {
  background: #f39c12;
  border-color: #f39c12;
  color: #fff;
  outline: none;
}

.btn-success {
  background: #11b719;
  border-color: #11b719;
  color: #fff;
}

.btn-success:active, .btn-success.active {
  background: #11b719;
  border-color: #11b719;
  color: #fff;
  outline: none;
}

.btn-success:hover, .btn-success:focus, .btn-success.active:focus, .btn-success.active:hover, .btn-success:active.focus, .btn-success:active:focus, .btn-success:active:hover {
  background: #11b719;
  border-color: #11b719;
  color: #fff;
  outline: none;
}

.btn-purple {
  background: #c580ff;
  border-color: #c580ff;
  color: #fff;
}

/* ==========================================================================
Form And Button
========================================================================== */
button:hover, input:hover, input:focus, button:focus {
  outline: none;
}

.form-control {
  height: 50px;
  border: 1px solid #dde6ef;
  margin-bottom: 10px;
  box-shadow: none;
  border-radius: 0;
  background: #fbfdff;
  font-size: 15px;
  color: #445461;
  font-weight: 400;
}

.bootstrap-select.form-control {
  margin-bottom: 0;
  padding: 0;
  margin-bottom: 10px;
  border: 1px solid #dde6ef;
}

.form-control:hover, .form-control:focus {
  border: 1px solid #dde6ef;
  box-shadow: 0 1px 1px rgba(7, 177, 7, 0.075);
  outline: none;
}

.form-control .btn.dropdown-toggle.btn-default:hover, .form-control .btn.dropdown-toggle.btn-default:focus {
  border: none;
  box-shadow: none;
  outline: none;
}

.bootstrap-select button.btn.dropdown-toggle.bs-placeholder.btn-default {
  background: transparent;
  height: 46px;
  border: 1px solid transparent;
  color: #445461;
  text-shadow: none;
  border-radius: 0px;
  box-shadow: none;
}

.bootstrap-select .dropdown-toggle:focus {
  outline: none !important;
  outline: none !important;
  outline-offset: 0 !important;
}

.bootstrap-select.btn-group .dropdown-menu li a {
  padding: 8px 10px;
}

.bootstrap-select.btn-group .dropdown-menu li a:hover {
  box-shadow: none;
  background: #11b719;
  color: #ffffff;
}

.btn-group.open .dropdown-toggle {
  box-shadow: none;
}

.btn-default.active, .btn-default:active, .open > .dropdown-toggle.btn-default {
  color: #445461;
  background-color: transparent;
  border-color: transparent;
}

button.btn.dropdown-toggle.btn-default {
  background: transparent;
  border: none;
  box-shadow: none;
  height: 46px;
}

textarea::-moz-placeholder {
  color: #6a7884;
  opacity: 1;
}

textarea::-ms-input-placeholder {
  color: #6a7884;
}

textarea::-webkit-input-placeholder {
  color: #6a7884;
}

.form-control::-moz-placeholder {
  color: #99abb9;
  opacity: 1;
}

.form-control::-ms-input-placeholder {
  color: #99abb9;
}

.form-control::-webkit-input-placeholder {
  color: #99abb9;
}

input[type=file]:focus, input[type=checkbox]:focus, input[type=radio]:focus {
  outline: none;
  outline: none;
  outline-offset: 0;
}

/*-------------------------------------------
Heading Style
--------------------------------------------*/
.main-heading {
  text-align: center;
  margin-bottom: 2em;
}

.main-heading p {
  font-size: 16px;
  color: #707c88;
  margin-bottom: 5px;
}

.dark .main-heading p, .dark .main-heading h2 {
  color: #ffffff;
}

.main-heading h2 {
  color: #252d40;
  position: relative;
  font-weight: 600;
  margin-top: 0px;
  margin-bottom: 10px;
}

.main-heading h2 > span {
  color: #11b719;
}

.main-heading span.heading-line {
  width: 80px;
  height: 1.2px;
  display: block;
  background: #11b719;
  position: relative;
  margin: 0 auto;
}

/*----------------------------------------
 Pagination Style
--------------------------------------------*/
.pagination {
  display: table;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
  margin: 20px auto 0px;
}

.pagination > li > a, .pagination > li > span, .pagination > li > button {
  position: relative;
  float: left;
  padding: 12px 20px;
  margin: 5px;
  line-height: 1.6;
  color: #8296a2;
  text-decoration: none;
  background-color: #fff;
  border-radius: 2px;
  border-width: 0px;
  border-color: transparent !important;
}

.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus, .pagination > li > a:hover, .pagination > li > a:focus, .pagination > li > button:hover, .pagination > li > button:focus {
  z-index: 2;
  color: #11b719;
  cursor: pointer;
  background-color: rgba(7, 177, 7, 0.1);
  border-color: #11b719;
}

.pagination li:first-child a {
  background: #11b719;
  border: 1px solid #11b719;
  border-radius: 2px;
  color: #ffffff;
}

.pagination li:last-child a {
  background: #252d40;
  border: 1px solid #252d40;
  border-radius: 2px;
  color: #ffffff;
}

/*----------------------------------------
Search Filter Style
--------------------------------------------*/
.search-filter {
  padding: 1em 0;
  display: inline-block;
  width: 100%;
  background: #ffffff;
  margin-bottom: 20px;
}

.short-by.pull-right {
  margin-top: 12px;
}

.search-filter .input-group {
  height: 46px;
}

.search-filter .form-control {
  border-radius: 2px;
  height: 46px;
  margin-bottom: 0;
  color: #707c88;
  font-weight: 400;
  font-size: 16px;
  box-shadow: none;
  border: 1px solid #ccddea;
}

.search-filter button.btn.btn-default {
  height: 46px;
  padding: 0 20px;
  font-size: 18px;
  background: #11b719;
  border: 1px solid #11b719;
  color: #ffffff;
  border-radius: 0 2px 2px 0;
}

.dropdown-menu {
  right: 0;
  left: initial;
}

.search-filter .form-control:hover, .search-filter .form-control:focus {
  border-color: #11b719;
  box-shadow: 0px 0px 10px 2px rgba(7, 177, 7, 0.1);
  -webkit-box-shadow: 0px 0px 10px 2px rgba(7, 177, 7, 0.1);
  -moz-box-shadow: 0px 0px 10px 2px rgba(7, 177, 7, 0.1);
}

.search-filter .dropdown, .dropup {
  position: relative;
  float: none;
  display: inline-block;
  margin-left: 10px;
}

.search-filter .dropdown-menu {
  box-shadow: none;
  border-color: #ccddea;
}

.search-filter .dropdown-menu > li > a {
  padding: 10px 20px;
  color: #252d40;
}

.search-filter .dropdown-menu > li > a:hover, .search-filter .dropdown-menu > li > a:focus {
  text-decoration: none;
  background: #11b719;
  color: #ffffff;
}

/* ==========================================================================
          Navigation Style Setting
========================================================================== */
.navbar.bootsnav.header-general {
  position: relativel;
}

.navbar.header-general.fixed-header {
  position: fixed;
  display: block;
  width: 100%;
  z-index: 222;
}

.navbar-default {
  background-image: none;
  background-image: none;
  background-image: none;
  background-image: none;
  filter: none;
  background-repeat: repeat-x;
  border-radius: 0;
  box-shadow: none;
}

nav.navbar.bootsnav ul.nav > li > a {
  color: #ffffff;
  text-transform: uppercase;
  background-color: transparent !important;
}

.navbar .form-control {
  font-weight: 400;
  font-size: 15px;
  background: #445461;
  color: #99abb9;
  border: 1px solid #586977;
  border-radius: 1px;
  box-shadow: none;
  min-width: 205px;
}

.navbar.navbar-light .form-control {
  background: #ffffff;
  color: #636d75;
  border: 1px solid #e3e9ef;
}

.navbar .form-control:hover, .navbar .form-control:focus {
  border: 1px solid #e3e9ef;
}

nav.navbar.bootsnav li.dropdown ul.dropdown-menu {
  border-color: #11b719;
}

nav.navbar.navbar-default.navbar-static.white.bootsnav.on.no-full.navbar-transparent .logo-scrolled {
  display: none;
}

.form-control::-moz-placeholder {
  color: #99abb9;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: #99abb9;
}

.form-control::-webkit-input-placeholder {
  color: #99abb9;
}

.navbar.navbar-transparent .form-control::-moz-placeholder {
  color: #343a40;
  opacity: 1;
}

.navbar.navbar-transparent .form-control:-ms-input-placeholder {
  color: #343a40;
}

.navbar.navbar-transparent .form-control::-webkit-input-placeholder {
  color: #343a40;
}

nav.navbar.bootsnav ul.nav > li > a i {
  font-size: 16px;
  color: #99abb9;
  margin-right: 9px;
}

nav.bootsnav .megamenu-content .title {
  text-transform: capitalize;
  font-size: 20px;
  color: #252d40;
}

ul.cart-list > li.total > .btn {
  border-bottom: solid 1px #cfcfcf !important;
  color: #fff !important;
  padding: 10px 15px;
}

nav.navbar.bootsnav {
  background-color: #252d40;
  border-bottom: 1px solid #252d40;
}

@media only screen and (min-width: 768px) {
  /*------------Navigation------*/
  body nav.navbar.bootsnav ul.nav > li > a.signin {
    background: #11b719 !important;
  }
  li.left-br {
    border-left: 1px solid rgba(7, 177, 7, 0.4);
  }
}
@media only screen and (min-width: 1024px) {
  nav.navbar.bootsnav li.dropdown ul.dropdown-menu {
    box-shadow: 0px 0px 15px 1px rgba(113, 106, 202, 0.2);
    border-radius: 4px;
    padding: 10px 15px;
    width: 250px;
    background: #fff;
    border: none;
    border-top: none;
  }
  nav.navbar.bootsnav li.dropdown ul.dropdown-menu > li > a {
    display: block;
    padding: 14px 12px 14px 12px;
    clear: both;
    line-height: 1.6;
    color: #67757c;
    border-bottom: 1px solid #f1f6f9;
  }
  nav.navbar.bootsnav li.dropdown ul.dropdown-menu > li a:hover {
    background-color: #ffffff !important;
    background-image: none !important;
    filter: none !important;
  }
}
span.new-offer {
  font-size: 13px;
  color: #ffffff;
  background: #11b719;
  padding: 4px 12px;
  border-radius: 2px;
  margin-left: 15px;
}

/* ==========================================================================
       First Home Page Banner Style Settings
========================================================================== */
.banner {
  background-size: cover;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-height: 620px;
  align-items: center;
  padding-bottom: 0%;
  position: relative;
  background-position: center;
  padding: 80px 0;
}

.banner.trans {
  min-height: 680px;
}

.simple-banner {
  min-height: 650px;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  padding: 80px 0;
}

.simple-banner.top {
  background-position: center top;
}

.hero-banner {
  min-height: 650px;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  padding: 80px 0;
}

.banner:before {
  content: "";
  display: block;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  background: #0d1d33;
  opacity: 0.64;
}

.banner.home-gray:before {
  display: none;
}

[data-overlay] {
  position: relative;
}

[data-overlay]:before {
  position: absolute;
  content: "";
  background: #19365f;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

[data-overlay="1"]:before {
  opacity: 0.1;
}

[data-overlay="2"]:before {
  opacity: 0.2;
}

[data-overlay="3"]:before {
  opacity: 0.3;
}

[data-overlay="4"]:before {
  opacity: 0.4;
}

[data-overlay="5"]:before {
  opacity: 0.5;
}

[data-overlay="6"]:before {
  opacity: 0.6;
}

[data-overlay="7"]:before {
  opacity: 0.7;
}

[data-overlay="8"]:before {
  opacity: 0.8;
}

[data-overlay="9"]:before {
  opacity: 0.9;
}

.company-brand img:hover, .company-brand img:focus {
  opacity: 1;
}

.banner-caption {
  text-align: left;
  display: inline-block;
  width: 100%;
}

.banner-text {
  text-align: center;
}

.banner h1 {
  color: #ffffff;
  text-shadow: none;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 3px;
}

.banner h1 span {
  color: #11b719;
}

.banner p {
  color: #ffffff;
  opacity: 0.8;
  font-weight: 300;
  font-size: 18px;
  text-transform: capitalize;
  line-height: 1.6;
}

.banner .no-padd {
  padding: 0 5px;
}

/*-----------------------------------
Search form style
----------------------------------------*/
form.form-horizontal {
  padding: 10px 10px 5px 10px;
  display: table;
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

.slide-banner form.form-horizontal {
  padding: 10px 10px 5px 10px;
}

.banner-caption .form-control {
  background: #ffffff;
  border: none;
  border-radius: 0px;
  height: 48px;
  color: #282C32;
  font-size: 15px;
  width: 100%;
  box-shadow: none;
}

.banner-caption select.form-control:hover, .banner-caption select.form-control:focus {
  border: none;
  box-shadow: none;
}

.banner-caption .input-group {
  width: 100%;
  padding: 0;
  display: block;
}

.banner-caption .btn-primary {
  background: #11b719;
  height: 48px;
  color: #ffffff;
  border-radius: 0px;
  border-color: #11b719;
  width: 100%;
  font-size: 16px;
  text-transform: uppercase;
  display: block;
}

.banner-caption .btn-primary:focus, .banner-caption .btn-primary:hover {
  background: #11b719;
  text-transform: uppercase;
  box-shadow: none;
  outline: none;
  color: #ffffff;
  border-color: #11b719;
}

.banner-caption .form-control::-moz-placeholder {
  color: #282C32;
  opacity: 1;
}

.banner-caption .form-control:-ms-input-placeholder {
  color: #282C32;
}

.banner-caption .form-control::-webkit-input-placeholder {
  color: #282C32;
}

/*----------------------------------------
Banner Brand Carousel
----------------------------------------*/
.company-brand {
  background: #eaedf3;
  display: table;
  padding: 2em 0;
  width: 100%;
  position: relative;
}

.company-brand img {
  display: block;
  margin: 0 auto;
}

/* ==========================================================================
       Second Home Page Banner Style Settings
========================================================================== */
.simple-banner {
  background-size: cover;
}

.simple-banner h3 {
  text-transform: uppercase;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  color: #252d40;
}

.simple-banner h1 {
  text-transform: uppercase;
  font-family: "Raleway", sans-serif;
  color: #252d40;
  font-weight: 700;
  font-size: 40px;
}

.simple-banner h1 span {
  color: #11b719;
}

/*------------------------------------------
Banner bottom search form
--------------------------------------------*/
.bottom-search-form {
  background: #252d40;
  padding: 3em 0 2em 0;
}

.bottom-search-form input.form-control, .bottom-search-form select.form-control {
  background: #2a3348;
  border-radius: 2px;
  height: 52px;
  margin-bottom: 10px;
  border: 1px solid #323c54;
  width: 100%;
  color: #99abb9;
}

.bottom-search-form .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #92a4b3;
  background: #2a3348;
  border: 1px solid #323c54;
}

.bottom-search-form.light .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #92a4b3;
  background: #ffffff;
  border: 1px solid #ffffff;
}

.bottom-search-form .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #99abb9 transparent transparent transparent;
}

.bottom-search-form button.btn.btn-primary {
  width: 100%;
  height: 52px;
  border-radius: 2px;
  font-size: 16px;
  background: #11b719;
  border: 1px solid #0bbf0b;
}

.bottom-search-form input.form-control:focus, select.form-control:focus {
  border: 1px solid #11b719;
  box-shadow: 0px 0px 7px 1px rgba(7, 177, 7, 0.1);
}

/* ==========================================================================
      Third Home Page Banner Style Settings
========================================================================== */
.home-three-banner {
  min-height: 680px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-align: left;
  background-size: cover;
  padding: 80px 0;
}

.home-three-banner:before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  content: "";
  background: rgba(53, 67, 78, 0.7);
}

.simple-banner-caption {
  margin-top: 70px;
}

.simple-banner.top .simple-banner-caption {
  margin-top: 0%;
}

.home-three-banner .banner-text {
  text-align: left;
}

.home-three-banner form.bt-form {
  margin: 25px -15px;
}

.home-three-banner h1 {
  text-transform: capitalize;
  font-family: "Raleway", sans-serif;
  color: #ffffff;
  font-weight: 700;
}

.home-three-banner p {
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
}

.home-three-banner h1 span {
  color: #11b719;
}

/*-----------------------------------------
Search job Style
---------------------------------------------*/
.home-three-banner input.form-control, .home-three-banner select.form-control {
  background: #ffffff;
  border-radius: 2px;
  height: 48px;
  margin-bottom: 10px;
  border: 1px solid #ffffff;
  width: 100%;
  color: #636d75;
}

.home-three-banner button.btn.btn-primary {
  width: 100%;
  border-radius: 2px;
  font-size: 16px;
  background: #11b719;
  border: 1px solid #0bbf0b;
}

.home-three-banner input.form-control:focus, .home-three-banner select.form-control:focus {
  border: 1px solid #11b719;
  box-shadow: 0px 0px 7px 1px rgba(7, 177, 7, 0.1);
}

/* ==========================================================================
      Fourth Home Page Banner Style Settings
========================================================================== */
.home-plane-banner {
  padding: 8em 0 6em 0;
  position: relative;
  text-align: left;
  background-size: cover;
}

.home-plane-banner:before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  content: "";
  background: rgba(255, 255, 255, 0.02);
}

.home-plane-banner .banner-text {
  text-align: center;
}

.home-plane-banner h1 {
  text-transform: capitalize;
  font-family: "Raleway", sans-serif;
  color: #252d40;
  line-height: 1.6;
  font-weight: 700;
}

.home-plane-banner p {
  font-size: 16px;
  line-height: 1.6;
  color: #5d6d79;
}

.home-plane-banner h1 span {
  color: #11b719;
}

a.btn.btn-banner {
  background: #11b719;
  width: 220px;
  padding: 15px 0;
  display: table;
  margin: 25px auto;
  border-radius: 50px;
  text-transform: capitalize;
  font-size: 16px;
  color: #ffffff;
}

/* ==========================================================================
       Five Home Page Banner Style Settings
========================================================================== */
.banner.home-5 {
  background-size: cover;
  padding-bottom: 0%;
  position: relative;
  background-position: center;
}

.banner.home-5:before {
  content: "";
  display: block;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  background: #282C32;
  opacity: 0.7;
}

.banner.home-gray {
  background: #f4f6f5;
}

.banner.home-gray .full-search-2.hero-search-radius {
  box-shadow: 0 10px 10px 0px rgba(62, 28, 131, 0.04);
}

.company-brand img:hover, .company-brand img:focus {
  opacity: 1;
}

.banner-caption {
  text-align: left;
  display: inline-block;
  width: 100%;
}

.home-5 .banner-text {
  margin-top: 0%;
  margin-bottom: 1em;
  text-align: center;
}

.banner h1 {
  color: #ffffff;
  text-shadow: none;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 3px;
}

.banner h1 span {
  color: #11b719;
}

.banner p {
  color: #ffffff;
  opacity: 0.8;
  font-weight: 300;
  font-size: 18px;
  text-transform: capitalize;
  line-height: 1.6;
}

.banner .dark h1 {
  color: #29365a;
}

.banner .dark p {
  color: #5a6480;
}

.banner .left {
  text-align: left;
}

.banner .small {
  line-height: 1.6;
}

.banner.home-5 .no-padd {
  padding: 0px;
}

.banner.home-5 .video-box {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  display: table;
  margin: 50px auto 20px auto;
  padding: 10px;
  position: relative;
}

.banner.home-5 .video-box a.btn.btn-video {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #ffffff;
}

.banner.home-5 .video-box a.btn.btn-video i {
  font-size: 28px;
  line-height: 1.6;
  text-align: center;
  color: #11b719;
}

/*-------------- Home Video --------------*/
.jobs_video {
  position: relative;
}

.jobs_video:before {
  background: #17203a;
  left: 0;
  right: 0;
  top: 0;
  position: absolute;
  content: "";
  bottom: 0;
  opacity: 0.5;
  border-radius: 4rem 4rem 4rem 0.5rem;
}

.jobs_video .thumb {
  border-radius: 4rem 4rem 4rem 0.5rem;
  overflow: hidden;
}

.jobs_video .thumb .pro_img {
  height: 400px;
}

.jobs_video .bb-video-box {
  width: 130px;
  height: 130px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.jobs_video .bb-video-box-inner {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.4);
}

.jobs_video .bb-video-box-innerup {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}

.jobs_video .bb-video-box-innerup a {
  line-height: 1.6;
  font-size: 25px;
}

/*-------------------------------------------
	Slide Banner
--------------------------------------------*/
.slide-banner {
  background-size: cover !important;
  background-position: center !important;
  position: relative;
  margin: 0;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.slideshow-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  z-index: 1;
}

.slideshow-item, .slideshow-container .slick-slide {
  position: relative;
  float: left;
  width: 100%;
  height: 100%;
}

.list-single-carousel-wrap {
  background: #24324F;
}

.fw-carousel .slick-slide-item {
  width: auto;
  float: left;
  cursor: w-resize;
}

.slide-banner .fl-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.slide-banner h2 {
  font-weight: 600;
  color: #ffffff;
}

.slide-banner p {
  font-size: 16px;
  color: #ffffff;
}

.slide-banner .form-horizontal {
  margin-top: 20px;
}

.slide-banner .form-horizontal .input-group {
  width: 100%;
  display: inline-block;
}

.slide-banner .form-horizontal .form-control {
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.slide-banner .form-horizontal .form-control, .slide-banner .form-horizontal .btn {
  height: 56px;
}

.fw-carousel .slick-slide-item img {
  width: auto;
  height: 100% !important;
}

.bg:before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  display: block;
  background: #12233e;
  opacity: 0.7;
}

.list-single-carousel-wrap .slick-slide-item .box-item {
  height: 100%;
  z-index: 20;
}

.list-single-carousel-wrap .slick-slide-item .box-item:before {
  display: none;
}

.list-single-carousel-wrap .slick-slide-item {
  float: left;
  width: auto;
  height: 100%;
  padding: 0 0px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-size: cover;
  background-attachment: scroll;
  background-position: center;
  background-repeat: repeat;
  background-origin: content-box;
}

.fl-wrap {
  float: left;
  width: 100%;
  text-align: center;
  color: #ffffff;
  position: relative;
}

.hero-section-wrap {
  z-index: 30;
}

/*------------- Search Form Control -----------*/
.banner-caption .form-control, .banner-caption .btn-primary, .banner-caption .btn-primary:focus, .banner-caption .btn-primary:hover {
  height: 62px;
}

.banner-caption .select2-container--default .select2-selection--single, .select2-container--default .select2-selection--multiple {
  min-height: 62px;
}

.banner-caption .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 1.6;
}

.banner-caption .select2-container--default .select2-selection--single .select2-selection__arrow {
  min-height: 62px;
}

.banner-caption .btn-primary {
  height: 62px;
}

.banner-caption .form-control::-moz-placeholder {
  color: #6a7884 !important;
  opacity: 1;
}

.banner-caption .form-control:-ms-input-placeholder {
  color: #6a7884 !important;
}

.banner-caption .form-control::-webkit-input-placeholder {
  color: #6a7884 !important;
}

/*-----------------------------------------------
Advance Job Feature
----------------------------------------------*/
.job-feature.advance-fr {
  text-align: center;
  transition: all 0.3s ease 0s;
  padding: 3em 0.5em;
  background: #ffffff;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.job-feature.advance-fr .feature-icon i {
  font-size: 1.7em;
  color: #11b719;
  margin-bottom: 7px;
  width: 60px;
  height: 60px;
  transition: ease-in-out 0.4s;
  background: rgba(7, 177, 7, 0.07);
  line-height: 1.6;
  border-radius: 50%;
}

.job-feature.advance-fr .feature-caption h5 {
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 4px;
  font-size: 16px;
}

.job-feature.advance-fr .feature-caption p {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
}

.job-feature.advance-fr:hover i {
  background: #11b719;
  color: #ffffff;
}

.job-feature.advance-fr:after,
.job-feature.advance-fr:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: all 0.5s ease 0s;
}

.job-feature.advance-fr:after {
  border-bottom: 1px solid #11b719;
  border-top: 1px solid #11b719;
  transform: scaleX(0);
  transform-origin: 0 100% 0;
  z-index: -1;
}

.job-feature.advance-fr:before {
  border-left: 1px solid #11b719;
  border-right: 1px solid #11b719;
  transform: scaleY(0);
  transform-origin: 100% 0 0;
  z-index: -1;
}

.job-feature.advance-fr:hover:after {
  transform: scaleX(1);
}

.job-feature.advance-fr:hover:before {
  transform: scaleY(1);
}

/* ==========================================================================
       Top features Style Settings
========================================================================== */
.job-feature {
  padding: 2em 0.5em;
  background: #ffffff;
  margin-bottom: 10px;
  box-shadow: 0 5px 25px 0 rgba(41, 128, 185, 0.15);
  -webkit-box-shadow: 0 5px 25px 0 rgba(41, 128, 185, 0.15);
}

.first-feature .small-padding {
  padding: 0 5px;
}

.all-features {
  text-align: center;
}

.feature-post {
  margin-bottom: 40px;
}

.all-features h3 {
  font-weight: 500;
  margin-bottom: 26px;
  color: #282C32;
}

.all-features h3 span {
  color: #11b719;
}

.feature-icon i {
  font-size: 1.7em;
  color: #11b719;
  margin-bottom: 7px;
  width: 60px;
  height: 60px;
  transition: ease-in-out 0.4s;
  background: rgba(7, 177, 7, 0.07);
  line-height: 1.6;
  border-radius: 50%;
}

.job-feature:hover i {
  background: #11b719;
  color: #ffffff;
}

.feature-caption h5 {
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 4px;
  font-size: 16px;
}

.feature-caption p {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
  padding: 0 5px;
}

/* ==========================================================================
       Video Part Style Settings
========================================================================== */
.video-sec {
  background-size: cover;
  background-position: center;
  text-align: center;
  position: relative;
}

.video-sec .heading {
  margin-bottom: 2em;
}

.heading h2, .heading p {
  position: relative;
}

.video-sec:before {
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  background: rgba(53, 67, 78, 0.7);
}

a.video-btn {
  position: relative;
  display: table;
  margin: 0 auto;
  vertical-align: middle;
  height: 120px;
  width: 120px;
  background: #ffffff;
  line-height: 1.6;
  border-radius: 50%;
  transition: all 0.4s;
}

a.video-btn i {
  font-size: 40px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  color: #11b719;
  box-shadow: 0px 0px 20px 0px rgba(7, 177, 7, 0.4);
  -webkit-box-shadow: 0px 0px 20px 0px rgba(7, 177, 7, 0.4);
  -moz-box-shadow: 0px 0px 20px 0px rgba(7, 177, 7, 0.4);
  line-height: 1.6;
  vertical-align: middle;
  transition: all 0.4s;
}

a.video-btn {
  background: #252d40;
}

a.video-btn i {
  background: #11b719;
  color: #ffffff;
}

/* ==========================================================================
       Work Process Style Settings
========================================================================== */
.work-process {
  margin-top: 40px;
  margin-bottom: 25px;
}

.work-process-icon {
  width: 50px;
  height: 50px;
  float: none;
  margin-bottom: 13px;
  display: block;
}

.work-process .work-process-caption {
  margin-left: 0px;
}

.work-process-icon span {
  font-size: 2.5em;
  color: #11b719;
}

.work-process-caption {
  margin-left: 55px;
}

.work-process-caption h4 {
  font-weight: 500;
  margin-bottom: 4px;
  font-size: 16px;
  position: relative;
  padding-bottom: 15px;
  text-transform: uppercase;
}

.work-process-caption h4:before {
  content: "";
  bottom: 0;
  left: 0;
  height: 2px;
  width: 80px;
  display: block;
  position: absolute;
  background: #11b719;
}

.work-process-caption p {
  color: #707c88;
  line-height: 1.6;
  font-weight: 400;
}

/* ==========================================================================
       Testimonials Style Settings
========================================================================== */
.testimonial {
  background: #f4f7f7;
}

#appller-testimonial-slider {
  margin-top: 2.5em;
  text-align: center;
}

.client-testimonial {
  text-align: center;
  margin: 50px 10px 0;
  padding: 0 10% 4%;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  -o-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.client-testimonial .pic {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border-bottom: 2px solid rgb(7, 177, 7);
  display: inline-block;
  margin-top: -50px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.client-testimonial .pic img {
  width: 100%;
  height: auto;
}

.client-testimonial .client-description {
  font-size: 14px;
  color: #707c88;
  line-height: 1.6;
  margin: 10px 0 5px;
}

.client-testimonial .client-testimonial-title {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.client-testimonial .client-testimonial-rating {
  margin: 0 0 15px 0;
  padding: 0;
  list-style: none;
}

.client-testimonial .client-testimonial-rating li {
  color: #ff9800;
  display: inline-block;
}

.client-testimonial .client-testimonial-rating li.unfill {
  color: #d3d7e2;
}

.owl-theme .owl-controls {
  margin-top: 30px;
}

.owl-theme .owl-controls .owl-pagination {
  width: 140px;
  padding: 10px;
  margin: 0 auto;
  line-height: 1.6;
  background: #fe7f8b;
}

.owl-theme .owl-controls .owl-page span {
  width: 12px;
  height: 12px;
  border-radius: 0;
  background: transparent;
  border: 1px solid #fff;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
  border: 4px solid #fff;
}

/* ==========================================================================
       Call To Actione Style Settings
========================================================================== */
.bl-dark {
  background: #252d40;
}

section.call-to-act {
  padding: 0;
}

.gr-dark {
  background: #11b719;
}

.call-to-act-caption {
  padding: 5em 4em;
  text-align: center;
}

.call-to-act-caption h2 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 0em;
}

.call-to-act-caption h3 {
  font-weight: 400;
  font-size: 18px;
}

.gr-dark .call-to-act-caption h3 {
  color: #beffab;
}

.bl-dark .call-to-act-caption h3 {
  color: #9eb3c3;
}

.bl-dark a.btn.bat-call-to-act {
  border: 1px solid #475865;
}

.gr-dark a.btn.bat-call-to-act {
  border: 1px solid #39c713;
}

a.btn.bat-call-to-act {
  padding: 13px 56px;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 17px;
  background: rgba(2, 2, 2, 0.15);
  transition: all ease-in-out 0.4s;
  color: #ffffff;
  margin-top: 15px;
}

a.btn.bat-call-to-act:hover, a.btn.bat-call-to-act:focus {
  background: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
       Pricing Table Style Settings
========================================================================== */
.pr-table {
  text-align: center;
  padding: 10px 10px 15px 10px;
  border: 1px solid #c7d1da;
  margin-top: 25px;
  border-radius: 6px;
}

.pr-header {
  background: #252d40;
  display: inline-block;
  width: 100%;
  padding: 30px 0 20px 0;
  border-radius: 6px;
}

.pr-plan {
  padding: 15px 0 5px 0;
}

.pr-plan h4 {
  color: #ffffff;
  font-size: 22px;
  margin-top: 0;
  text-transform: uppercase;
}

.pr-price h3 {
  color: #ffffff;
  font-size: 5.4em;
  margin-top: 0;
  font-family: "Raleway", sans-serif;
}

.pr-price h3 sup {
  color: rgba(255, 255, 255, 0.7);
  margin-right: 5px;
  font-size: 25px;
}

.pr-header.active {
  background: #11b719;
}

.pr-price h3 sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
}

.pr-features ul {
  margin: 0;
  padding: 0.5em 0;
}

.pr-features ul li {
  color: #596a77;
  padding: 10px 0;
  line-height: 1.6;
  font-size: 15px;
  list-style: none;
  border-bottom: 1px dashed #edeff3;
}

.pr-buy-button .pr-btn {
  display: block;
  border: 1px solid #11b719;
  text-transform: uppercase;
  padding: 13px 0;
  color: #11b719;
  border-radius: 4px;
  transition: all ease-in-out 0.4s;
}

.pr-buy-button .pr-btn:hover, .pr-buy-button .pr-btn:focus {
  background: #11b719;
  color: #ffffff;
  text-decoration: none;
}

.pr-buy-button .pr-btn.active {
  display: block;
  border: 1px solid #252d40;
  background: #252d40;
  text-transform: uppercase;
  padding: 13px 0;
  color: #ffffff;
  transition: all ease-in-out 0.4s;
}

.pr-buy-button .pr-btn.active:hover, .pr-buy-button .pr-btn.active:focus {
  background: #11b719;
  border-color: #11b719;
  color: #ffffff;
  text-decoration: none;
}

/* ==========================================================================
       Download app Style Settings
========================================================================== */
.download-app {
  background-size: cover;
  background-blend-mode: overlay;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.download-app .heading {
  margin-bottom: 0.5em;
}

.app-content {
  position: relative;
}

.app-content h2 {
  font-weight: 500;
  margin: 0;
}

.app-content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  margin-top: 20px;
}

.app-content a.btn.call-btn i {
  margin-right: 15px;
  font-size: 27px;
}

.inverse-bg .app-content a.btn.call-btn {
  border-radius: 4px;
  padding: 0.6em 1.4em;
  margin-right: 20px;
  background: #ffffff;
  border: 1px solid #ffffff;
  transition: all ease-in-out 0.4s;
  font-family: "Josefin Slab", serif;
  color: #252d40;
  margin-bottom: 10px;
  font-weight: 600;
}

.inverse-bg .app-content a.btn.call-btn.gps {
  background: #ffffff;
  border: 1px solid #ffffff;
  color: #11b719;
}

.inverse-bg .app-content a.btn.call-btn:hover,
.inverse-bg .app-content a.btn.call-btn:focus {
  background: #ffffff;
  border: 1px solid #ffffff;
  color: #11b719 !important;
}

.app-content a.btn.call-btn {
  border-radius: 4px;
  padding: 0.6em 1.4em;
  margin-right: 20px;
  background: #11b719;
  border: 1px solid #11b719;
  transition: all ease-in-out 0.4s;
  font-family: "Josefin Slab", serif;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: 600;
}

.app-content a.btn.call-btn.gps {
  background: #252d40;
  border: 1px solid #252d40;
  color: #ffffff;
}

.app-content a.btn.call-btn:hover,
.app-content a.btn.call-btn:focus {
  background: #0ba212;
  border: 1px solid #0ba212;
  color: #ffffff !important;
}

.download-app img {
  margin: 0 auto;
}

/* ==========================================================================
    Footer Part Style Settings
========================================================================== */
/*---------- Call To Action -------------------*/
.call-to-act-wrap {
  padding: 50px 0;
}

.call-to-act {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  color: #ffffff;
  align-items: center;
}

.call-to-act-head {
  flex: 1;
}

.call-to-act h3 {
  color: #ffffff;
  margin-bottom: 5px;
}

.btn.btn-call-to-act {
  background: #ffffff;
  padding: 18px 40px;
  border-radius: 50px;
  color: #333640;
  font-weight: 600;
  box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, 0.2);
  -webkit-box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, 0.2);
}

.jb4-form-fields .input-group-btn {
  padding-left: 20px;
}

.before-footer {
  background: #252c41;
  border-bottom: 1px solid #2e364e;
}

.job.stock-facts {
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  align-items: center;
}

.job.stock-facts li {
  display: inline-block;
  list-style: none;
  text-align: center;
  flex: 0 0 25%;
  font-weight: 500;
}

.job.stock-facts li span {
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;
}

.jb4-form-fields {
  max-width: 400px;
}

.jb4-form-fields .form-control {
  border-radius: 2px;
  background: #1f2537;
  border: none;
}

.jb4-form-fields .btn.theme-bg {
  border-radius: 2px !important;
  color: #ffffff;
}

.before-footer {
  padding: 2.5rem 0;
}

/*---------- Small footer -------------------*/
footer {
  z-index: 99;
  position: relative;
}

footer.dark-footer {
  background: #252c41;
}

.footer-logo {
  padding: 20px 0;
  display: inline-block;
  width: 100%;
  border-top: 1px solid #eaeef3;
  border-bottom: 1px solid #eaeef3;
}

footer.footer-small {
  padding: 50px 0 0 0;
}

img.img-footer {
  max-width: 180px;
  margin-bottom: 2rem;
}

.ft-itext {
  font-weight: 500;
  font-size: 16px;
  text-align: center !important;
  margin: 10px;
}

.ft-itext i {
  margin-right: 5px;
}

ul.social {
  margin: 0;
  padding: 0;
}

ul.social li {
  display: inline-block;
  list-style: none;
  margin: 5px;
}

ul.social li a {
  width: 40px;
  height: 40px;
  display: inline-block;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 0px 12px 0 rgba(71, 119, 244, 0.2);
  line-height: 1.6;
  text-align: center;
}

.footer-add {
  color: #858b9f;
  font-size: 13px;
}

.ft-copyright {
  border-top: 1px solid #eaeef3;
  padding: 15px 0 12px 0;
}

.ft-copyright p {
  margin-bottom: 0;
}

.footer-logo img {
  max-width: 185px;
}

.footer-widget {
  padding: 70px 0;
}

h4.widget-title {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 17px;
}

.footer-widget ul {
  padding: 0;
  margin: 0;
}

.footer-widget ul li {
  list-style: none;
  margin-top: 15px;
  display: block;
}

.footer-widget ul li a {
  color: #626a70;
}

footer.skin-dark-footer h4 {
  color: #ffffff;
}

footer.skin-dark-footer .footer-widget ul li a, footer.skin-dark-footer, footer.skin-dark-footer a {
  color: #858b9f;
  transition: all ease 0.4s;
  font-size: 14px;
}

footer.skin-dark-footer .footer-widget ul li a:hover, footer.skin-dark-footer .footer-widget ul li a:focus {
  color: #ffffff;
}

.widget_media_image {
  margin-top: 3rem;
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid #e9edf3;
}

.skin-dark-footer .footer-bottom {
  background: #1b2132;
  border-top: none;
}

ul.footer-bottom-social {
  margin: 0;
  padding: 0;
}

ul.footer-bottom-social li {
  display: inline-block;
  list-style: none;
  margin-right: 17px;
  margin-top: 0;
}

ul.footer-bottom-social li a {
  color: #546e7a;
}

ul.footer-bottom-social li a:hover, ul.footer-bottom-social li a:focus {
  color: #007bff;
}

ul.footer-bottom-social li i {
  margin-right: 5px;
}

footer.skin-dark-footer ul.footer-bottom-social li a {
  color: #858b9f;
  font-size: 14px;
}

footer.skin-dark-footer ul.footer-bottom-social li a:hover, footer.skin-dark-footer ul.footer-bottom-social li a:focus {
  color: #ffffff;
  opacity: 1;
}

.fw {
  margin-bottom: 18px;
  display: inline-block;
  position: relative;
  padding-left: 28px;
  width: 100%;
}

.fw:last-child {
  margin: 0;
}

.fw:before {
  font-family: "themify";
  vertical-align: initial;
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 0;
}

.fw.fw-location:before {
  content: "\e693";
}

.fw.fw-mail:before {
  content: "\e75a";
}

.fw.fw-call:before {
  content: "\e621";
}

.fw.fw-skype:before {
  content: "\e72d";
}

.fw.fw-web:before {
  content: "\e665";
}

.other-store-link {
  width: auto;
  margin-bottom: 20px;
  display: inline-block;
}

.other-store-link:last-child {
  margin-bottom: 0;
}

.other-store-app {
  width: 250px;
  height: 70px;
  border: 1px solid #353d56;
  border-radius: 4px;
  padding: 0 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: #ffffff;
}

.os-app-caps span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #858b9f;
}

.os-app-icon {
  margin-right: 13px;
}

.os-app-icon i {
  font-size: 32px;
}

.os-app-caps {
  font-size: 18px;
  font-weight: 600;
}

.f-newsletter {
  max-width: 510px;
  margin-top: 15px;
  display: block;
  position: relative;
}

.f-newsletter .form-control {
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  color: #7f8ca2;
  background-color: transparent;
  border: 2px solid #a5aebf;
  padding: 18px 20px 18px;
  border-radius: 3px;
  height: 60px;
}

.skin-dark-footer .f-newsletter .form-control {
  border: 2px solid #9ea6ba;
}

.f-newsletter .btn {
  bottom: 4px;
  position: absolute;
  right: 4px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 18px 12px 14px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: normal;
  width: auto;
  border-width: 0;
  color: #9ea6ba;
  cursor: pointer;
  border-radius: 2px;
  height: 52px;
  background: transparent;
}

.skin-dark-footer .form-control::-moz-placeholder {
  color: #9ea6ba;
}

.skin-dark-footer .form-control::placeholder {
  color: #9ea6ba;
}

.footer-bottom p {
  margin: 0;
}

/* ==========================================================================
      Inner Page Style Settings
========================================================================== */
/*-----------------Common Style Setting-------------------*/
.inner-header-title {
  padding-top: 11em;
  text-align: center;
  color: #ffffff;
  overflow: visible;
  position: relative;
  border-bottom: 4px solid #11b719;
  background-size: cover;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inner-header-title:before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: block;
  background: #242d3e;
  opacity: 0.6;
}

.inner-header-title.gray-bg:before, .inner-header-title.blank:before {
  opacity: 0;
}

.inner-header-title > * {
  position: relative;
}

.inner-header-title.text-left {
  text-align: left;
  color: #252d40;
}

.inner-header-title h1 {
  font-weight: 600;
  color: #ffffff;
}

.inner-header-title p {
  color: #ffffff;
}

.inner-header-title.blank {
  padding: 10em 0;
  text-align: center;
  color: #ffffff;
  overflow: visible;
  border-bottom: 4px solid #11b719;
  background: #53bb13;
  background: radial-gradient(ellipse at center, #53bb13 0%, #11b719 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#53bb13", endColorstr="#11b719",GradientType=1 );
  background-size: cover;
}

.inner-header-title.blank h1, .inner-header-title.blank p {
  color: #ffffff;
}

.inner-header-title.blank:brfore {
  opacity: 0;
}

.bottom-mrg {
  margin-bottom: 3em;
}

.detail-desc {
  padding: 0;
  overflow: visible;
}

.detail-desc .form-control::-moz-placeholder {
  color: #6a7884;
  opacity: 1;
}

.detail-desc .form-control:-ms-input-placeholder {
  color: #6a7884;
}

.detail-desc .form-control::-webkit-input-placeholder {
  color: #6a7884;
}

.ur-detail-wrap.top-lay {
  width: 100%;
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  padding: 2.5em 2em;
  border-radius: 6px;
  transform: translateY(-80px);
  background: #ffffff;
  border-bottom: 3px solid #11b719;
  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
}

.ur-detail-wrap.create-kit {
  transform: translateY(-80px);
  background: #ffffff;
  padding: 0 2em;
  border-radius: 6px;
  border-bottom: 3px solid #11b719;
  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
}

.ur-detail-wrap {
  width: 100%;
  display: block;
  position: relative;
  justify-content: center;
  align-items: center;
  padding: 0 2em 1.5em 2em;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
}

.ur-detail-wrap.colps-wrap {
  padding: 8px 2em 5px 2em;
}

.btn[data-target="#mobile-filters"] {
  display: none;
}

#search-field {
  margin-bottom: 30px;
  background-color: #fff;
  border-radius: 5px;
}

.pagination {
  display: flex;
}

.candidate-list-layout, .newjob-list-layout {
  padding: 27px 25px 27px 20px;
}

.cll-caption h4 span.jb-status {
  top: 0px;
}

.newjob-list-layout .cll-caption {
  margin-top: 0;
}

.ur-detail-wrap {
  border: 1px solid #dde6ef;
  box-shadow: none;
}

.candidate-list-layout, .newjob-list-layout {
  border: 1px solid #dde6ef !important;
}

.colps-head:before {
  right: 29px !important;
  top: 25px !important;
}

.colps-head.collapsed:before {
  right: 0 !important;
  top: -1px !important;
}

.sidebar-widgets {
  margin-bottom: 30px;
}

.ur-detail-box {
  display: flex;
  align-items: center;
  flex: 1;
}

.ur-thumb {
  width: 140px;
  height: 140px;
  border-radius: 6px;
  border: 4px solid #e3e9ef;
}

.ur-thumb {
  width: 140px;
  height: 140px;
  border-radius: 6px;
  border: 4px solid #e3e9ef;
  display: flex;
  align-items: center;
  margin-right: 15px;
}

.ur-title {
  margin-bottom: 3px;
}

.ur-location {
  margin-bottom: 5px;
}

.rateing i {
  color: #d4d5dc;
}

.rateing i.filled {
  color: #ff9b20;
}

.ur-detail-wrap-header {
  padding: 18px 0 10px 0;
  border-bottom: 1px solid #e0dfe6;
  margin-bottom: 1.5em;
}

.colps-wrap .ur-detail-wrap-header {
  border-bottom: none;
  margin-bottom: 0em;
}

.colps-head.collapsed {
  position: relative;
}

.colps-head:before {
  position: absolute;
  right: 27px;
  top: 18px;
  font-size: 19px;
  color: #8892a9;
  font-family: "themify";
  content: "\e622";
}

.colps-head.collapsed:before {
  position: absolute;
  right: 0;
  top: 1px;
  font-size: 19px;
  color: #8892a9;
  font-family: "themify";
  content: "\e61a";
}

ul.ove-detail-list {
  margin: 0;
  padding: 0;
}

ul.ove-detail-list li {
  list-style: none;
  margin-bottom: 1.5em;
  padding: 0;
}

ul.ove-detail-list li:last-child {
  margin-bottom: 0;
}

ul.ove-detail-list li i {
  font-size: 27px;
  float: left;
  margin-right: 10px;
  color: #a4abb5;
}

ul.ove-detail-list li h5 {
  margin-bottom: 2px;
}

.detail-status {
  position: absolute;
  right: 15px;
  top: 15px;
}

.detail-status span {
  color: #11b719;
  background: rgba(7, 177, 7, 0.2);
  font-family: "Montserrat", sans-serif;
  text-transform: capitalize;
  padding: 5px 25px;
  border-radius: 2px;
}

.detail-pic {
  display: block;
  width: 140px;
  background: #ffffff;
  border: 1px solid #11b719;
  height: 140px;
  border-radius: 50%;
  margin: 0;
  padding: 9px;
  margin: 0 auto;
  position: relative;
  transform: translateY(-50px);
}

.detail-pic img {
  width: 120px;
  height: 120px;
  margin: auto;
  border-radius: 50%;
}

a.detail-edit {
  position: absolute;
  left: 44%;
  bottom: -12px;
}

a.detail-edit i {
  width: 30px;
  height: 30px;
  position: relative;
  background: #11b719;
  border-radius: 50%;
  line-height: 1.6;
  text-align: center;
  color: #ffffff;
}

/*------ Inner Dropdown Button Style-----*/
button.btn.btn-default.btn-xs.dropdown-toggle {
  background: transparent;
  border: none;
  box-shadow: none;
}

button.btn.btn-default.btn-xs.dropdown-toggle i {
  font-size: 26px;
  color: #636d75;
}

.action-btn .dropdown-menu > li > a {
  padding: 10px 15px;
  color: #636d75;
  font-size: 15px;
}

.action-btn .dropdown-menu > li > a:hover, .action-btn .dropdown-menu > li > a:focus {
  background: #11b719;
  color: #ffffff;
}

/*------------- Search Filter-----------*/
.wrap-search-filter {
  padding: 0em 0 1em 0;
  background: #ffffff;
  display: inline-block;
  width: 100%;
}

.wrap-search-filter button.btn.btn-primary {
  height: 50px;
}

/* ==========================================================================
      Browse Job Style Settings
========================================================================== */
.brows-job-category {
  position: relative;
}

.brows-job-category .no-padding {
  margin: 0;
  margin-bottom: 30px;
}

.brows-job-category h2 {
  font-size: 25px;
}

.brows-job-list {
  display: flex;
  width: 100%;
  clear: both;
  padding: 20px;
  transition: 0.4s;
  margin-top: 25px;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0px 0px 10px 0px rgba(88, 96, 109, 0.14);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(88, 96, 109, 0.14);
  -moz-box-shadow: 0px 0px 10px 0px rgba(88, 96, 109, 0.14);
  align-items: center;
}

.brows-job-list:hover, .brows-job-list:focus {
  -webkit-box-shadow: 0px 0px 10px 0px rgba(88, 96, 109, 0.14);
  -moz-box-shadow: 0px 0px 10px 0px rgba(88, 96, 109, 0.14);
}

.njsb-location {
  margin-top: 6px;
  color: #717f86;
}

.brows-job-half {
  flex: 1;
}

.njsb-link .btn.btn-default {
  border: none;
  background: #ffffff;
  color: #677897;
  border-radius: 50px;
  text-shadow: none;
  transition: all ease 0.4s;
}

.brows-job-list:hover .njsb-link .btn.btn-default, .brows-job-list:focus .njsb-link .btn.btn-default {
  background: #11b719;
  color: #ffffff;
}

.njsb-location i {
  margin-right: 5px;
}

.brows-job-company-img {
  width: 75px;
  margin: 0 auto;
  margin: 10px auto;
  height: 75px;
  display: inline-block;
  background: #f4f5f7;
  vertical-align: middle;
  border-radius: 50%;
  line-height: 1.6;
}

.item-fl-box .brows-job-company-img {
  margin: 0;
  margin-right: 15px;
  display: table;
}

.brows-job-company-img img {
  margin: 0 auto;
  vertical-align: middle;
  display: inline-block;
}

.brows-job-position h3 {
  font-size: 17px;
  padding: 0;
  margin-bottom: 5px;
  line-height: 1.6;
  position: relative;
  width: auto;
  display: inline-block;
}

.brows-job-position .jb-approved:before {
  content: "\e64c";
  font-family: "themify";
  position: absolute;
  right: -26px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  top: 3px;
  background: #1bc36b;
  text-align: center;
  display: inline-block;
  color: #ffffff;
  border-radius: 50%;
  line-height: 1.6;
}

span.job-num {
  padding: 5px 10px;
  border-radius: 4px;
  text-transform: capitalize;
  color: #8da2b3;
  background: #f3f6fb;
}

.brows-job-position p span {
  margin-top: 12px;
}

.brows-job-position p .brows-job-sallery {
  margin-right: 0;
}

.item-click .brows-job-list .brows-job-sallery {
  margin-left: 15px;
}

.item-click .brows-job-position p {
  margin-bottom: 0;
}

.brows-job-position p .brows-job-sallery i {
  margin-right: 10px;
}

.brows-job-location {
  margin-top: 23px;
}

.brows-job-location p {
  font-size: 18px;
}

.brows-job-location p i {
  font-size: 16px;
  margin-right: 10px;
}

.brows-job-position .job-type {
  padding: 3px 12px;
  color: #ffffff;
  margin-left: 10px;
  border-radius: 2px;
  text-transform: capitalize;
  font-size: 13px;
}

.full-time {
  background: #03a504;
}

.part-time {
  background: #f6931e;
}

.enternship {
  background: #d20001;
}

.freelanc {
  background: #26a9e1;
}

.jb-type {
  padding: 3px 10px;
  color: #ffffff;
  font-size: 12px;
  border-radius: 2px;
}

/*----------- New Job Grid Style ---------------*/
.job-instructor-layout {
  background: #ffffff;
  position: relative;
  display: block;
  border-radius: 8px;
  margin-top: 30px;
  box-shadow: 0 0 20px 0 rgba(62, 28, 131, 0.1);
  -webkit-box-shadow: 0 0 20px 0 rgba(62, 28, 131, 0.1);
  -moz-box-shadow: 0 0 20px 0 rgba(62, 28, 131, 0.1);
}

.job-instructor-layout .popular {
  position: absolute;
  right: 30px;
  top: 30px;
}

.job-instructor-layout .hot {
  position: absolute;
  left: 30px;
  top: 30px;
}

.job-instructor-layout .new {
  position: absolute;
  left: 30px;
  top: 30px;
}

.job-instructor-thumb {
  display: table;
  width: 100%;
  padding: 5em 0em 1em;
  margin: 0 auto;
  border-radius: 8px;
}

.job-instructor-thumb img {
  display: table;
  margin: 0 auto;
  max-width: 80px;
  max-height: 80px;
}

.job-instructor-content {
  position: relative;
  padding: 2px 20px 15px;
  display: table;
  text-align: center;
  width: 100%;
}

.instructor-title {
  line-height: 1.6;
}

.job-instructor-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  padding: 20px;
}

.instructor-students {
  flex: 1;
}

.instructor-scount {
  margin: 0;
  color: #ff8b00;
}

.job-instructor-layout .tg-themetag {
  top: 30px;
}

.full-time {
  background: rgba(3, 165, 4, 0.1);
  color: #03a504;
}

.part-time {
  background: rgba(246, 147, 30, 0.1);
  color: #f6931e;
}

.enternship {
  background: rgba(210, 0, 1, 0.1);
  color: #d20001;
}

.freelanc {
  background: rgba(38, 169, 225, 0.1);
  color: #26a9e1;
}

.job-instructor-layout .brows-job-type span {
  position: absolute;
  padding: 4px 15px;
  top: 30px;
  right: 10px;
  line-height: 1.6;
  font-size: 12px;
  border-radius: 2px 0 0 2px;
}

/* ==========================================================================
    Browse Company Style Settings
========================================================================== */
.brows-company {
  padding: 15px;
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  transition: all ease-in-out 0.4s;
  border: 1px solid rgba(88, 136, 247, 0.1);
  box-shadow: 0px 0px 10px 0px rgba(88, 96, 109, 0.14);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(88, 96, 109, 0.14);
}

.brows-company:hover {
  border-left: 4px solid #11b719;
}

.brows-company .brows-company-pic {
  display: table;
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 1px;
}

.brows-company .brows-company-pic img {
  width: 80px;
  height: 80px;
  margin: 0 auto;
}

.brows-company h4 {
  margin-bottom: 5px;
  color: #252d40;
  font-size: 20px;
  margin-top: 0;
}

.brows-company span.brows-company-tagline {
  display: block;
  color: #636d75;
}

.brows-company .brows-company-location p {
  margin-bottom: 5px;
  font-weight: 400;
  color: #636d75;
  font-size: 16px;
}

.brows-company .brows-company-position p {
  text-align: right;
  color: #11b719;
}

.item-fl-box {
  width: 100%;
  display: flex;
  align-items: center;
}

.brows-company .item-fl-box .brows-company-pic {
  margin-right: 15px;
}

/* ==========================================================================
      Browse Resume Style Settings
========================================================================== */
.brows-resume {
  padding: 15px;
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 30px;
  transition: all ease-in-out 0.4s;
  border: 1px solid rgba(88, 136, 247, 0.1);
  box-shadow: 0px 0px 10px 0px rgba(88, 96, 109, 0.14);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(88, 96, 109, 0.14);
}

.brows-resume > .row {
  display: flex;
  align-items: center;
}

.brows-resume:hover, .brows-resume:focus {
  border-left: 4px solid #11b719;
}

.brows-resume.grid-style:hover, .brows-resume.grid-style:focus {
  border-left: none;
  border: none;
}

.brows-resume .brows-resume-pic {
  display: table;
  position: relative;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  margin: 1px;
}

.brows-resume .item-fl-box .brows-resume-pic {
  margin-right: 12px;
}

.brows-resume .brows-resume-pic img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
}

.brows-resume h4 {
  margin-bottom: 5px;
  font-weight: 400;
  color: #252d40;
  font-size: 22px;
  margin-top: 0;
}

.brows-resume span.brows-resume-designation {
  text-transform: uppercase;
  display: block;
  color: #11b719;
}

.brows-resume .brows-resume-location p {
  margin-bottom: 5px;
  font-weight: 400;
  color: #636d75;
  font-size: 16px;
}

.brows-resume .browse-resume-rate span {
  text-transform: capitalize;
  font-weight: 400;
  color: #636d75;
  text-align: right;
  display: block;
  font-size: 16px;
}

.brows-resume .browse-resume-rate span i {
  font-size: 18px;
  color: #11b719;
  margin-right: 7px;
}

.brows-resume .browse-resume-exp span {
  float: right;
  background: #11b719;
  padding: 2px 7px;
  border-radius: 2px;
  color: #ffffff;
  min-width: 150px;
  text-align: center;
}

.row.extra-mrg.row-skill {
  padding: 14px 0 2px 0;
  border-top: 1px solid #f1f3f4;
  margin-top: 20px;
  display: block;
}

.browse-resume-skills .br-resume span {
  padding: 5px 8px;
  background: #f3f5f9;
  text-transform: uppercase;
  margin-right: 7px;
  font-size: 12px;
  margin-bottom: 5px;
  border-radius: 2px;
  color: #66718a;
}

.cnd-thumb-action {
  text-align: center;
}

.brows-resume.grid-style .item-fl-box {
  display: block;
}

.brows-resume.grid-style {
  padding: 3rem 1.5rem;
  border-radius: 8px;
  border: none;
}

.brows-resume.grid-style .brows-resume-pic {
  width: 80px;
  height: 80px;
  margin: 12px auto;
  margin-right: auto;
}

.brows-resume.grid-style .brows-resume-pic img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.brows-resume.grid-style h4 {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 0;
}

.brows-resume.grid-style span.brows-resume-designation {
  text-transform: capitalize;
}

.cnd-location {
  text-align: center;
}

.cnd-skill {
  padding: 2rem 0.5rem;
  text-align: center;
}

.cnd-skill .br-resume span {
  padding: 4px 8px;
  background: #f3f5f9;
  text-transform: uppercase;
  margin-right: 7px;
  font-size: 12px;
  margin-bottom: 5px;
  border-radius: 2px;
  color: #66718a;
  display: inline-block;
  transition: all ease-in-out 0.4s;
}

.brows-resume.grid-style:hover .br-resume span, .brows-resume.grid-style:focus .br-resume span {
  color: #ffffff;
  background: #11b719;
}

.cnd-skill .br-resume span:last-child {
  margin-right: 0;
}

.map-popup-wrap .brows-resume {
  box-shadow: none;
}

.map-popup-wrap .brows-resume span.brows-resume-designation {
  font-size: 13px;
  margin: 4px 0;
}

/* ==========================================================================
      Manage Candidate Style Settings
========================================================================== */
.manage-cndt {
  background: #ffffff;
  border-radius: 4px;
  padding: 0px;
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
  border: 1px solid rgba(88, 136, 247, 0.1);
  box-shadow: 0px 0px 10px 0px rgba(88, 96, 109, 0.14);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(88, 96, 109, 0.14);
}

.manage-cndt .cndt-status {
  padding: 4px 25px;
  display: inline-block;
  position: absolute;
  left: 15px;
  top: 15px;
  text-align: left;
  border-radius: 4px;
  font-weight: 500;
  text-transform: capitalize;
}

.manage-cndt .cndt-status.pending {
  background: rgba(255, 144, 7, 0.2);
  color: #ffc107;
}

.manage-cndt .cndt-status.available {
  background: rgba(7, 177, 7, 0.2);
  color: #11b719;
}

.manage-cndt .cndt-pic {
  display: block;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 15px auto;
}

.manage-cndt .cndt-caption {
  text-align: center;
  padding: 15px;
}

.manage-cndt .cndt-caption h4 {
  text-transform: capitalize;
  color: #252d40;
  margin-bottom: 5px;
}

.manage-cndt .cndt-caption span {
  text-transform: uppercase;
  color: #11b719;
}

.manage-cndt .cndt-caption p {
  color: #5f707d;
  margin-bottom: 2.5em;
  font-size: 15px;
  margin-top: 10px;
  font-family: "Raleway", sans-serif;
}

.manage-cndt .cndt-profile-btn {
  padding: 15px 0;
  display: block;
  border-top: 1px solid #eef5fb;
  text-align: center;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 500;
  background: #f2f3f5;
}

.manage-cndt:hover .cndt-profile-btn, .manage-cndt:focus .cndt-profile-btn {
  background: #11b719;
  color: #ffffff;
  text-decoration: none;
}

.manage-cndt .cndt-profile-btn:hover, .manage-cndt .cndt-profile-btn:focus {
  background: #11b719;
  color: #ffffff;
  text-decoration: none;
}

/* ==========================================================================
      Manage Employee Style Settings
========================================================================== */
.jn-employee {
  padding: 15px;
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 30px;
  transition: all ease-in-out 0.4s;
  border-bottom: 3px solid #ffffff;
  box-shadow: 0px 0px 10px 0px rgba(88, 96, 109, 0.14);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(88, 96, 109, 0.14);
}

.jn-employee:hover, .jn-employee:focus {
  border-bottom: 3px solid #11b719;
}

.mail-form i {
  width: 42px;
  height: 42px;
  line-height: 1.6;
  color: #11b719;
  text-align: center;
  border-radius: 50%;
  background: rgba(7, 177, 7, 0.1);
}

.employee-caption {
  text-align: center;
  padding: 1em 0.8em;
}

.employee-caption-pic {
  display: table;
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 15px auto;
}

.employee-caption h4 {
  margin-bottom: 5px;
  font-weight: 400;
  color: #252d40;
  font-size: 22px;
}

.employee-caption span.designation {
  color: #636d75;
}

.employee-social {
  margin: 15px 0;
  padding: 0;
}

.employee-social li {
  text-align: center;
  display: inline-block;
  list-style: none;
  padding: 5px 7px;
}

.employee-social li i {
  width: 37px;
  height: 37px;
  line-height: 1.6;
  border-radius: 50%;
  font-size: 18px;
  color: #636d75;
  transition: all ease-in-out 0.4s;
  background: rgba(137, 153, 167, 0.1);
}

.employee-social li a:hover i, .employee-social li a:focus i {
  color: #ffffff;
  background: #11b719;
}

/* ==========================================================================
      Manage Company Style Settings
========================================================================== */
.mng-company {
  padding: 15px;
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  border-left: 3px solid #ffffff;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.01);
  box-shadow: 0px 0px 10px 0px rgba(88, 96, 109, 0.14);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(88, 96, 109, 0.14);
}

.mng-company:hover, .mng-company:focus {
  border-color: #11b719;
}

.mng-company .mng-company-pic {
  display: table;
  position: relative;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 1px;
}

.mng-company .item-fl-box .mng-company-pic {
  margin-right: 12px;
}

.item-fl-box .cmp-tagline {
  font-size: 15px;
}

.mng-company .mng-company-pic img {
  margin: 0 auto;
  display: table;
  max-width: 85px;
}

.mng-company h4 {
  margin-bottom: 5px;
  font-weight: 400;
  color: #252d40;
  font-size: 22px;
  margin-top: 0;
}

.mng-company span.cmp-time {
  color: #636d75;
}

.mng-company .mng-company-location p {
  margin-bottom: 5px;
  font-weight: 400;
  color: #636d75;
  font-size: 16px;
}

.mng-company .mng-company-location i {
  font-size: 20px;
}

.mng-company .mng-company-action i {
  font-size: 20px;
  padding: 0 5px;
}

.mng-company .mng-company-action i.fa-edit {
  color: #11b719;
}

.mng-company .mng-company-action i.fa-trash-o {
  color: #ff9800;
}

/* ==========================================================================
      Manage Resume Style Settings
========================================================================== */
.mng-resume {
  padding: 15px;
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  border-left: 3px solid #ffffff;
  transition: all ease-in-out 0.4s;
  box-shadow: 0px 0px 10px 0px rgba(88, 96, 109, 0.14);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(88, 96, 109, 0.14);
}

.mng-resume:hover, .mng-resume:focus {
  border-color: #11b719;
}

.mng-resume .mng-resume-pic {
  display: table;
  position: relative;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  margin: 1px;
}

.mng-resume .mng-resume-pic img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
}

.mng-resume .item-fl-box .mng-resume-pic {
  margin-right: 12px;
}

.mng-resume h4 {
  margin-bottom: 5px;
  font-weight: 400;
  color: #252d40;
  font-size: 20px;
  margin-top: 0;
}

.mng-resume h4 span.cand-designation {
  font-size: 15px;
  color: #11b719;
}

.per-hour-rate p {
  font-size: 16px;
}

.per-hour-rate p i {
  margin-right: 7px;
}

.mng-employee-skill span {
  padding: 5px 8px;
  background: #f3f5f9;
  text-transform: uppercase;
  margin-right: 7px;
  font-size: 12px;
  margin-bottom: 5px;
  border-radius: 2px;
  color: #66718a;
}

.mng-resume .mng-resume-location i {
  font-size: 20px;
}

.mng-resume .mng-resume-action i {
  font-size: 20px;
  padding: 0 5px;
}

.mng-resume .mng-resume-action i.fa-edit {
  color: #11b719;
}

.mng-resume .mng-resume-action i.fa-trash-o {
  color: #ff9800;
}

/* ==========================================================================
      Manage Resume 2 Style Settings
========================================================================== */
.manage-resume {
  background: #ffffff;
}

.manage-resume-box {
  background: #ffffff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 30px;
  padding: 15px 20px;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 30px;
  border-left: 4px solid #ffffff;
  transition: all ease-in-out 0.4s;
  box-shadow: 0px 0px 10px 0px rgba(88, 96, 109, 0.14);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(88, 96, 109, 0.14);
}

.manage-resume-box:hover, .manage-resume-box:focus {
  border-color: #11b719;
}

.manage-resume-box:hover, .manage-resume-box:focus {
  border-left: 3px solid #11b719;
}

.manage-resume-box:hover i, .manage-resume-box:focus i {
  color: #11b719;
}

.manage-resume-picbox {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
}

.manage-resume-picbox img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.manage-resume-box h4 {
  margin-bottom: 5px;
  font-family: "Raleway", sans-serif;
}

.manage-resume-box a i {
  font-size: 20px;
  color: #636d75;
}

/* ==========================================================================
Job, Resume and Company Detail Page Style
==========================================================================*/
.detail-desc-caption h4 {
  color: #252d40;
  font-size: 22px;
  margin-bottom: 5px;
}

.detail-desc-caption h2 {
  margin-bottom: 0;
}

.detail-desc-caption span.designation {
  color: #546673;
  font-size: 17px;
}

.detail-desc-caption p {
  color: #707c88;
  font-size: 16px;
  line-height: 1.6;
  margin-top: 5px;
  margin-bottom: 15px;
  font-weight: 400;
}

.detail-desc-skill span {
  padding: 5px 8px;
  background: #f3f5f9;
  text-transform: uppercase;
  display: inline-block;
  margin-right: 7px;
  font-size: 12px;
  margin-bottom: 5px;
  border-radius: 2px;
  color: #66718a;
}

.detail-desc-caption ul {
  padding: 0;
  margin: 0;
}

.detail-desc-caption ul li i {
  margin-right: 10px;
  font-size: 16px;
  color: rgb(137, 153, 167);
}

.detail-desc-caption ul li {
  padding-bottom: 10px;
  line-height: 1.6;
  font-size: 16px;
  color: #707c88;
  list-style: none;
  display: block;
}

.get-touch h4 {
  color: #252d40;
  font-size: 22px;
  margin-bottom: 15px;
}

.get-touch ul {
  padding: 0;
  margin: 0;
}

.get-touch ul li i {
  margin-right: 10px;
  font-size: 16px;
  color: rgb(137, 153, 167);
}

.get-touch ul li {
  padding-bottom: 10px;
  line-height: 1.6;
  font-size: 16px;
  color: #707c88;
  list-style: none;
}

.detail.pannel-footer {
  padding: 10px 0 10px 0;
  display: table;
  width: 100%;
}

.row.no-padd {
  margin: 0 -15px;
  padding: 0px 15px;
  border-top: 1px solid #ccddea;
}

.detail-pannel-footer-btn a.footer-btn {
  padding: 12px 40px;
  margin-left: 15px;
  color: #ffffff;
  font-size: 16px;
  border-radius: 2px;
  margin-bottom: 10px;
  display: inline-block;
  text-transform: capitalize;
}

.detail-pannel-footer-btn a.footer-btn.grn-btn {
  background: #11b719;
}

.detail-pannel-footer-btn a.footer-btn.blu-btn {
  background: #03a9f4;
}

.detail-pannel-footer-btn a:hover, .detail-pannel-footer-btn a:focus {
  text-decoration: none;
  color: #ffffff;
}

.fotter-pannel-status {
  color: #707c88;
  font-size: 16px;
  line-height: 1.6;
  margin-top: 5px;
  margin-bottom: 15px;
  font-weight: 400;
  text-transform: capitalize;
}

.fotter-pannel-status > span {
  color: #11b719;
}

ul.working-days {
  padding: 0;
  margin: 0;
}

ul.working-days li {
  display: block;
  list-style: none;
  padding: 12px 0;
  border-bottom: 1px dashed #dfe3e8;
}

ul.working-days li span {
  float: right;
  color: #82858e;
  font-size: 13px;
}

ul.working-days li.active, ul.working-days li.active span {
  color: #2ab762;
}

ul.working-days li.close-day, ul.working-days li.close-day span {
  color: #d43a3a;
}

ul.follow-links, ul.advance-list {
  padding: 0;
  margin: 0;
}

ul.follow-links li, ul.advance-list li {
  display: block;
  list-style: none;
  padding: 12px 0;
  border-bottom: 1px dashed #dfe3e8;
}

ul.follow-links li, ul.advance-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.colps-wrap ul.follow-links li, ul.advance-list li:last-child {
  padding-bottom: 12px;
}

ul.follow-links li i {
  margin-right: 7px;
}

/*==========================================================================
Add Company, Resume and Job Page Style Settings
==========================================================================*/
.add-feild .input-group {
  width: 100%;
}

.add-feild .form-control {
  height: 52px;
  width: 100%;
  color: #707c88;
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 15px;
  border-radius: 2px;
  box-shadow: none;
  border: 1px solid #ccddea;
}

.add-feild textarea.form-control {
  border-radius: 4px;
  height: 100px;
  padding: 15px;
}

.detail-pannel-footer-btn a.footer-btn.choose-cover {
  background: #11b719;
}

.full-detail .input-group {
  margin-bottom: 10px;
  width: 100%;
}

section.full-detail {
  padding: 0em 0 3em 0;
}

section.full-detail .form-control::-moz-placeholder {
  color: #6a7884;
  opacity: 1;
}

section.full-detail .form-control:-ms-input-placeholder {
  color: #6a7884;
}

section.full-detail .form-control::-webkit-input-placeholder {
  color: #6a7884;
}

.full-detail .input-group-addon {
  color: #ffffff;
  background: #11b719;
  width: 45px;
  border-radius: 0;
  border-color: #13c313;
  font-size: 18px;
}

.btn-primary.small-btn {
  text-transform: uppercase;
  display: table;
  padding: 20px 20px;
  margin: 20px auto;
  height: auto;
  border-radius: 4px;
}

.btn-primary.small-btn:hover, .btn-primary.small-btn:focus {
  text-transform: uppercase;
  display: table;
  margin: 20px auto;
  height: auto;
  border-radius: 4px;
}

button.btn.remove-field {
  background: #03a9f4;
  margin: 2em auto;
  display: inline-block;
  color: #ffffff;
  border-radius: 4px;
  text-transform: capitalize;
  font-size: 16px;
  padding: 15px 40px;
  min-width: 180px;
  border: none;
  float: right;
  margin-right: 15px;
}

button.add-field {
  background: #11b719;
  margin: 2em auto;
  border: none;
  margin-left: 15px;
  display: inline-block;
  color: #ffffff;
  border-radius: 4px;
  text-transform: capitalize;
  font-size: 16px;
  padding: 15px 40px;
  min-width: 180px;
}

/*--------Bootstrap Editor ---------*/
.wysihtml5-toolbar a.btn {
  background: #e8edf1;
  color: #252d40;
  margin-right: 5px;
  box-shadow: none;
}

[class^=icon-], [class*=" icon-"] {
  display: inline-block;
  width: 14px;
  height: 14px;
  line-height: 1.6;
  vertical-align: text-top;
  background-image: url(/images/glyphicons-halflings.png?29e3eb30bf97031201976131098d3944);
  background-position: 14px 14px;
  background-repeat: no-repeat;
}

.icon-indent-left {
  background-position: -384px -48px;
}

.icon-share {
  background-position: -120px -72px;
}

.icon-indent-right {
  background-position: -408px -48px;
}

.icon-th-list {
  background-position: -264px 0;
}

.icon-list {
  background-position: -360px -48px;
}

.form-control.textarea {
  height: 180px;
  border-radius: 4px;
}

/*-------------file field------------*/
.js .inputfile {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.inputfile + label {
  width: 120px;
  font-size: 1.25rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  padding: 0.625rem 1.25rem;
  height: 120px;
  background: #3db810;
  border-radius: 50%;
}

.inputfile + label i {
  line-height: 1.6;
  text-align: center;
  font-size: 55px;
  color: #ffffff;
  display: block;
  background: transparent;
  border-radius: 50%;
}

.inputfile:focus + label,
.inputfile.has-focus + label {
  outline: none;
  outline: none;
}

.inputupload-pic + label {
  color: #d3394c;
}

.inputupload-pic + label {
  border: 1px solid #d3394c;
  background-color: #f1e5e6;
  padding: 0;
}

.inputupload-pic:focus + label,
.inputupload-pic.has-focus + label,
.inputupload-pic + label:hover {
  border-color: #722040;
}

.inputupload-pic + label span,
.inputupload-pic + label strong {
  padding: 0.625rem 1.25rem;
  /* 10px 20px */
}

.inputupload-pic + label span {
  width: 200px;
  min-height: 2em;
  display: inline-block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  vertical-align: top;
}

.inputupload-pic + label strong {
  height: 100%;
  color: #f1e5e6;
  background-color: #d3394c;
  display: inline-block;
}

.inputupload-pic:focus + label strong,
.inputupload-pic.has-focus + label strong,
.inputupload-pic + label:hover strong {
  background-color: #722040;
}

/*==========================================================================
     Company detail, Job Detail and Resume Detail Page Style Settings
==========================================================================*/
.row-bottom {
  margin-bottom: 40px !important;
}

ul.trim-edu-list {
  border-left: 3px solid #d6dbe6;
  margin-left: 1.5em;
}

ul.trim-edu-list li {
  list-style: none;
  margin-bottom: 2em;
  position: relative;
}

.trim-edu {
  padding: 2em 1em;
  border-radius: 4px;
  background: #f5f5f5;
}

.trim-edu-title {
  margin-bottom: 5px;
}

.trim-edu-title .title-est {
  font-weight: 400;
  font-size: 14px;
  margin-left: 20px;
  color: #9c9c9c;
}

.trim-edu p {
  padding: 0 !important;
  margin: 0 !important;
}

ul.trim-edu-list li:before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #e9ebef;
  left: -3.6em;
  top: 0.5em;
}

ul.trim-edu-list li:after {
  content: "";
  position: absolute;
  left: -3.2em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #11b719;
  top: 0.9em;
}

h2.detail-title {
  font-size: 18px;
  background: #f5f6f7;
  padding: 8px 20px;
  margin-bottom: 16px;
  line-height: 1.6;
  border-radius: 2px;
  color: #252d40;
  border-left: 3px solid #11b719;
}

.full-detail-description p {
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 15px;
  padding: 0 20px;
}

ul.detail-list li {
  padding: 0;
  margin-bottom: 10px;
  line-height: 1.6;
  font-size: 17px;
  color: #707c88;
  list-style: none;
}

ul.detail-list li:before {
  content: "\f101";
  position: relative;
  font-size: 17px;
  color: #11b719;
  left: -12px;
  font-family: fontawesome;
}

ul.detail-footer-social {
  padding: 0;
  margin: 0;
}

ul.detail-footer-social li {
  display: inline-block;
  padding-right: 10px;
}

ul.detail-footer-social li a i {
  width: 42px;
  height: 42px;
  background: #f1f3f4;
  line-height: 1.6;
  text-align: center;
  font-size: 17px;
  border-radius: 2px;
  margin-bottom: 10px;
  transition: all ease-in-out 0.4s;
}

ul.detail-footer-social li a i:hover {
  background: #11b719;
  color: #ffffff;
}

.third-progress .progressbar-title {
  font-size: 14px;
  color: #848484;
  text-transform: capitalize;
}

.third-progress .progress {
  height: 4px;
  overflow: visible;
  background: #f0f0f0;
  margin-bottom: 40px;
}

.third-progress .progress .progress-bar {
  position: relative;
  animation: animate-positive 2s;
}

.third-progress .progress .progress-icon {
  width: 32px;
  height: 32px;
  line-height: 1.6;
  border-radius: 50%;
  font-size: 14px;
  position: absolute;
  top: -15px;
  right: 0;
  background: #fff;
  border-width: 3px;
  border-style: solid;
}

.third-progress .progress-value {
  font-size: 14px;
  color: #848484;
  position: absolute;
  top: 16px;
  right: 0;
}
@keyframes animate-positive {
  0% {
    width: 0%;
  }
}
/*==========================================================================
     Accordion  Page Style Settings
==========================================================================*/
/*---------simple Accordian style-----*/
.panel-body .simple-tab p {
  color: #707c88;
  font-size: 15.4px;
  text-align: justify;
  line-height: 1.6;
}

#accordion .panel {
  border: none;
  outline: none;
}

#accordion .panel-heading {
  padding: 0;
}

#accordion .panel-heading > .panel-title {
  position: relative;
}

#accordion .panel-heading > .panel-title > a {
  display: block;
  font-size: 14px;
  padding: 18px 35px 18px 15px;
  text-transform: uppercase;
  background: #11b719;
  color: #fff;
  transition: all 0.2s linear 0s;
}

#accordion .panel-title > a.collapsed {
  background: #e7ecea;
  color: #707c88;
}

#accordion .panel-title > a.collapsed:hover {
  color: #11b719;
}

.panel-body p {
  color: #707c88;
  font-size: 14px;
  line-height: 1.6;
}

#accordion .panel-title > a:after,
#accordion .panel-title > a.collapsed:after {
  content: "\f139";
  font-family: FontAwesome;
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
  position: absolute;
  right: 12px;
}

#accordion .panel-title > a.collapsed:after {
  content: "\f13a";
  color: #808080;
}

#accordion .panel-body {
  border: none;
}

/*------------style for accordian three --------*/
.panel-body .accordian-style-three p {
  color: #707c88;
  font-size: 15.4px;
  text-align: justify;
  line-height: 1.6;
}

.accordian-style-three .panel-title > a {
  position: relative;
  color: #dc005a;
  display: block;
  padding-right: 70px;
}

#accordion3 .panel-heading {
  padding: 0px;
}

#accordion3 .panel-heading > .panel-title {
  position: relative;
}

#accordion3 .panel-heading > .panel-title > a {
  padding: 20px;
  position: relative;
  text-transform: uppercase;
  background: #11b719;
  color: #fff;
  transition: all 0.2s linear 0s;
}

#accordion3 .panel-title > a.collapsed {
  background: #252d40;
  color: #707c88;
}

#accordion3 .panel-title > a.collapsed:hover {
  color: #11b719;
}

.accordian-style-three #accordion3 .panel-title > a:after,
.accordian-style-three #accordion3 .panel-title > a.collapsed:after {
  content: "\f068";
  font-family: FontAwesome;
  height: 28px;
  width: 28px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.07);
  color: #ffffff;
  font-size: 14px;
  line-height: 1.6;
  position: absolute;
  right: 20px;
  top: 17px;
  text-align: center;
}

.accordian-style-three #accordion3 .panel-title > a.collapsed:after {
  content: "\f067";
  background: #636d75;
}

.accordian-style-three #accordion3 .panel-title > a.collapsed {
  color: #8699a7;
}

.accordian-style-three #accordion3 .panel-title > a:hover,
.accordian-style-three #accordion3 .panel-title > a:focus {
  text-decoration: none;
  outline: none;
}

/*---------------------------------------------
Tab Page Style Settings
----------------------------------------------*/
/*----------------Simple Tab style----*/
.tool-tab .nav-tabs {
  border-bottom: 1px solid #ddd;
  margin-top: 0;
}

.tab-pane p {
  color: #707c88;
  font-size: 14px;
  line-height: 1.6;
}

.nav.simple.nav-tabs a {
  color: #707c88;
  background: #ffffff;
  padding: 10px 20px;
  border: 1px solid #e7ecea;
}

.nav.simple.nav-tabs li.active a {
  background: #11b719;
  color: #ffffff;
}

/*----------------Icon Tab style----*/
.tab .nav-tabs {
  background: #ffffff;
  padding: 5px 0;
}

.tab .nav-tabs li {
  margin-bottom: 0;
  margin-right: 0;
  float: none;
  display: inline-block;
}

.tab .nav-tabs li a {
  font-size: 14px;
  color: #11b719;
  background: #fafbfb;
  margin-right: 5px;
  padding: 10px 25px;
  border-radius: 0;
  text-transform: uppercase;
  border: 1px solid #e7ecea;
  transition: ease-in-out 0.5s;
}

.tab .nav-tabs li a:hover {
  color: #ffffff;
  border-color: transparent;
  background: #11b719;
}

.tab .nav-tabs li a i {
  font-size: 20px;
  margin-right: 10px;
}

.tab .nav-tabs li.active a,
.tab .nav-tabs li.active a:hover {
  background: #11b719;
  color: #fff;
  border: 1px solid transparent;
}

.tab .tab-content {
  font-size: 14px;
  color: #707c88;
  line-height: 1.6;
  background: #ffffff;
}

@media only screen and (max-width: 990px) {
  .tab .nav-tabs li a {
    padding: 15px 10px;
  }
  .tab .tab-content {
    padding: 20px 25px;
  }
}
@media only screen and (max-width: 767px) {
  .tab .nav-tabs li a {
    padding: 15px 5px;
  }
}
@media only screen and (max-width: 480px) {
  .tab .nav-tabs li {
    width: 100%;
  }
}
/*==================================================
Login and Signup Popup
=======================================================*/
body.modal-open {
  padding-right: 0 !important;
}

.modal-open {
  overflow: initial;
}

.center {
  text-align: center;
}

a.subs-popup {
  width: 55px;
  height: 55px;
  display: inline-block;
  color: #ffffff;
  font-size: 20px;
  border-radius: 50%;
  line-height: 1.6;
  position: absolute;
  top: 20px;
  right: 20px;
  background: #11b719;
  box-shadow: 0px 0px 15px 2px rgba(0, 0, 0, 0.22);
}
.subs-popup .circlebeat {
  position: absolute;
  top: -10px;
  right: -10px;
  height: 75px;
  width: 75px;
  z-index: 10;
  border: 10px solid #ef0b13;
  border-radius: 70px;
  -moz-animation: circlebeat 1s ease-out;
  -moz-animation-iteration-count: infinite;
  -o-animation: circlebeat 1s ease-out;
  -o-animation-iteration-count: infinite;
  -webkit-animation: circlebeat 1s ease-out;
  animation-iteration-count: infinite;
}

.tab-pane img {
  margin: 1em auto 2em auto;
  display: block;
  max-width: 70%;
}

button.close {
  -webkit-appearance: none;
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 999;
  opacity: 1;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  line-height: 1.6;
}

.close:hover, .close:focus {
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  filter: alpha(opacity=50);
  opacity: 1;
}

form {
  display: inline-block;
  width: 100%;
}

.modal textarea.form-control {
  height: 90px;
  padding: 15px;
}

.modal .form-control {
  height: 52px;
  padding: 0 15px;
  border: 1px solid #d7dfea;
  color: #727272;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 12px;
  font-size: 15px;
  border-radius: 2px;
  box-shadow: none;
}

.form-group {
  width: 100%;
}

.modal .form-control::-moz-placeholder {
  color: #6a7884;
  opacity: 1;
}

.modal .form-control:-ms-input-placeholder {
  color: #6a7884;
}

.modal .form-control::-webkit-input-placeholder {
  color: #6a7884;
  font-weight: 400;
  text-shadow: none;
}

.modal-content {
  padding: 0px 0px 35px 0px;
}

.modal h4 {
  color: #16162c;
  font-size: 30px;
  font-weight: normal;
}

.modal .submit-btn {
  border: 1px dashed #11b719;
  padding: 14px 0;
  width: 100%;
  text-transform: uppercase;
  color: #ffffff;
  border-radius: 3px;
  font-size: 18px;
  transition: ease-in-out 0.6s;
  display: inline-block;
  margin-top: 1em;
  background: #11b719;
}

.modal .dismis-btn {
  border: 1px dashed #dde6ef;
  padding: 14px 0;
  width: 100%;
  text-transform: uppercase;
  color: #3b465f;
  border-radius: 3px;
  font-size: 18px;
  transition: ease-in-out 0.6s;
  display: inline-block;
  margin-top: 1em;
  background: #dde6ef;
}

.modal .submit-btn:hover {
  color: #ffffff;
  background: #11b719;
}

.success-message {
  text-align: center;
  color: green;
}

.error-message {
  text-align: center;
  color: red;
}

#signup .modal-body {
  position: relative;
  padding: 0px;
}

.modal-body .nav-tabs > li {
  float: left;
  margin-bottom: -1px;
  width: 50%;
  text-align: center;
}

.modal-body .nav > li > a {
  position: relative;
  display: block;
  color: #95a2a7;
  padding: 18px 15px;
  background: #252d40;
  border-radius: 0;
  margin: 0;
}

.modal-body .nav > li.active > a {
  background: #11b719;
  text-transform: uppercase;
  color: #ffffff;
}

.modal-body .nav > li > a:hover, .modal-body .nav > li > a:focus {
  background: #11b719;
  border: 1px solid #0e9cf3;
  color: #ffffff;
}

.tab-content {
  padding: 2em 0 3em 0;
}

.modal-body .nav-tabs {
  margin-top: 0;
}

.modal-body .tab .nav-tabs {
  padding: 0;
}

.modal-body .tab .nav-tabs li a {
  border: none;
}

.modal-body .tab .nav-tabs li.active a, .modal-body .tab .nav-tabs li.active a:hover {
  border: none;
}

/*====================================================
Contact us Page Style Settings
=======================================================*/
.contact-box i {
  background: #f3f6f8;
  width: 80px;
  height: 80px;
  text-align: center;
  line-height: 1.6;
  font-size: 25px;
  display: table;
  margin: 20px auto;
  border-radius: 4px;
  color: #11b719;
}

.contact-page h2, .contact-form h2 {
  text-align: center;
  margin-bottom: 25px;
  margin-top: 0;
}

.contact-box {
  line-height: 1.6;
  text-align: center;
}

.contact-box p {
  font-size: 16px;
}

.contact-form {
  padding-top: 2em;
}

.contact-form textarea.form-control {
  height: 180px;
}

.contact-form .btn-primary {
  max-width: 250px;
  padding: 15px 25px;
  height: auto;
  margin: 15px auto;
  display: block;
  border: none;
  border-radius: 50px;
}

.contact-form .btn-primary:hover, .contact-form .btn-primary:focus {
  max-width: 250px;
  padding: 15px 0;
  height: auto;
  margin: 15px auto;
  display: block;
  border: none;
  border-radius: 50px;
}

/* ==========================================================================
      Blog Page Page Design
========================================================================== */
.short-blog {
  padding: 0;
  margin-bottom: 2em;
  border: 1px solid #d6e3ec;
}

figure.img-holder {
  position: relative;
}

.blog-post-date {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: #11b719;
  padding: 5px 30px;
  border-radius: 2px;
  color: #ffffff;
  text-transform: capitalize;
}

.blog-content {
  padding: 40px 25px;
  font-size: 15px;
  line-height: 1.6;
  color: #636d75;
}

.blog-content .blog-sing-title {
  color: #252d40;
  margin: 15px 0 5px 0;
  font-size: 25px;
}

.post-meta span.author, .post-meta span.category a {
  color: #11b719;
}

.blog-text p {
  color: #636d75;
  font-size: 15px;
  line-height: 1.6;
}

.post-meta {
  font-family: initial;
}

.post-tags {
  margin: 2em 0 0 0;
}

.post-tags strong {
  margin-right: 10px;
  color: #334e6f;
  font-size: 16px;
}

.post-tags a {
  color: #7b7b7b;
  background: #eaeef5;
  font-size: 14px !important;
  margin: 0 7px 10px 0;
  display: inline-block;
  padding: 4px 22px;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.post-meta {
  color: #334e6f;
}

.post-meta > span {
  display: inline-block;
  line-height: 1.6;
  padding-right: 12px;
  margin-right: 10px;
  border-right: 1px solid #ebebeb;
}

.post-meta i {
  font-size: 17px;
  color: #929292;
  margin-right: 7px;
}

/*--------------Sidebar Start---------*/
.search-form button.btn.btn-default {
  background: #11b719;
  color: #ffffff;
  border: 1px solid #11b719;
  height: 50px;
}

.sidebar-widget {
  padding: 30px 0;
}

.sidebar-widget h4 {
  font-size: 17px;
  margin-bottom: 20px;
  text-transform: uppercase;
  background: #f1f6fb;
  padding: 12px 15px;
}

ul.sidebar-list {
  padding: 0;
  margin: 0;
}

ul.sidebar-list li {
  list-style: none;
  line-height: 1.6;
  padding: 10px 0;
  border-bottom: 1px solid #e0ecf5;
}

ul.sidebar-list li a {
  font-size: 15px;
  color: #788a9a;
}

ul.sidebar-list li a span {
  float: right;
  color: #11b719;
}

.blog-item {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e0ecf5;
  display: block;
  width: 100%;
}

.blog-item .post-thumb {
  width: 70px;
  height: 70px;
  display: table-cell;
}

.blog-detail {
  vertical-align: top;
  display: table-cell;
  padding-left: 10px;
}

.blog-item h4 {
  text-transform: capitalize;
  color: #707c88;
  line-height: 1.6;
  margin-top: 0;
  padding: 0 0 5px;
  font-size: 15px;
  margin-bottom: 0;
  background: transparent;
}

.post-info {
  color: #11b719;
}

/* ==========================================================================
      Blog Detail Page Style Settings
========================================================================== */
.full-blog {
  border: 1px solid #e0ecf5;
}

.full-blog .blog-content {
  padding: 40px 25px 20px 25px;
}

.blog-footer-social {
  padding: 10px 0 0 0;
  border-top: 1px solid #e0ecf5;
  margin-top: 20px;
}

ul.list-inline.social {
  padding: 0;
  margin: 0;
  float: none;
  display: inline-block;
}

ul.list-inline.social li {
  list-style: none;
  display: inline-block;
  padding: 0 10px;
}

ul.list-inline.social li i {
  width: 46px;
  height: 46px;
  background: #ffffff;
  border-radius: 50%;
  border: 1px solid #e0ecf5;
  color: #71818e;
  line-height: 1.6;
  text-align: center;
  font-size: 20px;
  transition: all ease-in-out 0.4s;
}

ul.list-inline.social li i:hover, ul.list-inline.social li i:focus {
  background: #11b719;
  color: #ffffff;
}

/* ==========================================================================
      Blog Comment Style Settings
========================================================================== */
.comments ul {
  padding-left: 0;
}

.comments ul li {
  display: block;
}

.comments ul li, .comments ul li ul li, .comments ul li ul li ul li, .comments ul li ul li ul li {
  margin: 50px 0 0 0;
}

.comments ul li {
  position: relative;
}

.avatar {
  display: inline-block;
  float: left;
  padding: 0 17px 0 0;
  position: absolute;
  left: 0;
  top: -5px;
}

.avatar img {
  max-width: 70px;
  border-radius: 50%;
}

.comment-content {
  color: #666;
  padding: 0 0 0 100px;
}

.comment-by {
  width: 100%;
  padding-bottom: 8px;
  padding-top: 5px;
  font-weight: 500;
  color: #333;
}

.comment-by span.date {
  color: #888;
  font-weight: 500;
  margin: 0 0 0;
  float: none;
  display: block;
  text-align: left;
}

.comment-by a.reply {
  display: inline;
  background-color: #f0f0f0;
  padding: 5px 16px;
  line-height: 1.6;
  font-size: 14px;
  color: #666;
  font-weight: 500;
  position: absolute;
  right: 0;
  top: 15px;
  border-radius: 4px;
}

.comments ul li ul {
  margin: 0 0 0 100px;
}

.comments ul li ul {
  border-left: 1px solid #e0e0e0;
  padding-left: 35px;
}

.comments ul li ul li:before {
  content: "";
  width: 15px;
  height: 1px;
  background-color: #e0e0e0;
  display: inline-block;
  position: absolute;
  top: 30px;
  left: -35px;
}

.comments-form textarea.form-control {
  height: 150px;
}

.comments-form form {
  margin: 10px -15px;
}

.comments-form button.thm-btn.btn-comment {
  padding: 12px 20px;
  text-transform: uppercase;
  color: #ffffff;
  border: 2px solid #11b719;
  background: #11b719;
  min-width: 210px;
  display: table;
  margin: 10px 15px;
}

.comments-form button.thm-btn.btn-comment:hover, .comments-form button.thm-btn.btn-comment:focus {
  padding: 12px 20px;
  text-transform: uppercase;
  color: #11b719;
  border: 2px solid #11b719;
  background: transparent;
  min-width: 210px;
  display: table;
  margin: 10px 15px;
}

/* ==========================================================================
      Login Signup And Forget password page style settings
========================================================================== */
body.simple-bg-screen {
  position: initial;
  background-size: cover;
  background-position: center;
}

body.simple-bg-screen:before {
  content: "";
  display: block;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  background: #ffffff;
  height: 100%;
  opacity: 0.8;
}

.login-screen, .signup-screen, .lost-ps-screen {
  position: relative;
  max-width: 450px;
  margin: 12% auto 0 auto;
}

section.login-screen-sec, section.signup-screen-sec, section.lost-ps-screen-sec {
  background: transparent;
}

.login-screen .form-control {
  border-radius: 50px;
  margin-bottom: 15px;
  padding-left: 15px;
}

.login-screen img, .signup-screen img, .lost-ps-screen img {
  margin: 1.5em auto;
}

button.btn.btn-login {
  background: #11b719;
  border: 1px solid #11b719;
  border-radius: 50px;
  min-width: 200px;
  padding: 12px 0;
  box-shadow: 0px 0px 12px 1px rgba(61, 214, 34, 0.4);
  color: #ffffff;
  font-size: 16px;
  text-transform: uppercase;
  margin: 0 auto;
  display: table;
}

.login-screen span, .signup-screen span, .lost-ps-screen span {
  margin-top: 12px;
  display: inline-block;
  text-align: center;
  width: 100%;
}

.login-screen span a, .signup-screen span a, .lost-ps-screen span a {
  color: #11b719;
}

/*----------------------------------------
Signup 2 page design
-----------------------------------------*/
.login-plane-sec {
  margin-top: 5%;
}

.login-panel {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0px 2px 10px 4px rgba(0, 0, 0, 0.04);
  -webkit-box-shadow: 0px 2px 10px 4px rgba(0, 0, 0, 0.04);
  -moz-box-shadow: 0px 2px 10px 4px rgba(0, 0, 0, 0.04);
  padding: 10px 0px 0px 0px;
  border: 1px solid #f4f5f7;
  color: #ffffff;
}

.login-panel.panel-default > .panel-heading {
  color: #636d75;
  background-color: transparent;
  background-image: none;
  text-align: center;
  border: none;
  border-bottom: 1px solid rgba(158, 173, 191, 0.2);
}

.btn-login {
  background: #11b719;
  border-radius: 2px;
  color: #ffffff;
  padding: 12px 25px;
  text-transform: uppercase;
  display: table;
  margin: 0 auto;
  min-width: 220px;
}

.login-panel .form-control {
  height: 52px;
  color: #636d75;
  font-size: 16px;
  border-radius: 1px;
  background: #fbfdff;
  border: 1px solid #d7dfea;
}

.login-panel .panel-title {
  font-size: 24px;
}

.login-panel img {
  margin: 30px auto 20px auto;
  max-width: 40%;
}

.login-panel form {
  padding: 0 30px 40px 30px;
}

.login-panel .panel-body {
  padding: 0;
}

.login-panel .social-login {
  padding: 0;
  margin: 0;
  margin-top: 7px;
  position: relative;
}

.login-panel .social-login li {
  padding: 12px 0;
  text-align: center;
  width: 50%;
  display: inline-block;
  float: left;
}

.login-panel .social-login li a {
  color: #ffffff;
  font-size: 16px;
}

.login-panel .social-login li a i {
  font-size: 14px;
  margin-right: 10px;
  line-height: 1.6;
  padding-right: 0;
  border-right: none;
}

.login-panel .social-login .facebook-login {
  background: #35508a;
}

.login-panel .social-login .google-plus-login {
  background: #f32810;
}

.login-panel label {
  color: #11b719;
}

.login-panel .social-login span {
  position: absolute;
  width: 46px;
  height: 46px;
  background: #ffffff;
  left: 46%;
  color: #263238;
  border-radius: 50%;
  border: 5px solid rgba(2, 2, 2, 0.1);
  text-align: center;
  vertical-align: middle;
  line-height: 1.6;
  top: 5px;
}

.login-panel .form-control:focus {
  border-color: #11b719;
  outline: 0px none;
  box-shadow: 0px 1px 1px rgba(7, 177, 7, 0.075) inset, 0px 0px 8px rgba(7, 177, 7, 0.6);
}

/*----------------------------------------------
Search Job Page Design
------------------------------------------------*/
.job-types label {
  font-weight: 600;
  color: #707c88;
  margin: 0 0 10px 15px;
}

.job-types {
  text-align: right;
}

.job-types input[type=checkbox], .job-types input[type=radio] {
  top: 3.33333px;
}
@keyframes click-wave {
  0% {
    width: 40px;
    height: 40px;
    opacity: 0.35;
    position: relative;
  }
  100% {
    width: 60px;
    height: 60px;
    margin-left: -40px;
    margin-top: -40px;
    opacity: 0;
  }
}
.check-option {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  position: relative;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  transition: all 0.15s ease-out 0;
  background: #eaeef3;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  outline: none;
  position: relative;
  margin-right: 0.5rem;
}

.check-option.full-time {
  background: #03a504;
}

.check-option.part-time {
  background: #f6931e;
}

.check-option.freelancer {
  background: #26a9e1;
}

.check-option.internship {
  background: #d20001;
}

.check-option.full-time:checked {
  background: #03a504;
}

.check-option.part-time:checked {
  background: #f6931e;
}

.check-option.freelancer:checked {
  background: #26a9e1;
}

.check-option.internship:checked {
  background: #d20001;
}

.check-option:checked::before {
  width: 15px;
  height: 15px;
  position: absolute;
  content: "✔";
  display: inline-block;
  font-size: 8px;
  text-align: center;
  line-height: 1.6;
}

.check-option:checked::after {
  animation: click-wave 0.65s;
  content: "";
  display: block;
  position: relative;
  z-index: 100;
  border-radius: 50%;
}

.check-option.full-time:checked::after {
  background: #03a504;
}

.check-option.part-time:checked::after {
  background: #f6931e;
}

.check-option.freelancer:checked::after {
  background: #26a9e1;
}

.check-option.internship:checked::after {
  background: #d20001;
}

.check-option.radio {
  border-radius: 50%;
}

.check-option.radio::after {
  border-radius: 50%;
}

/*-------------------------------------------
Brows job in Grid Style
-----------------------------------------*/
.grid-view.brows-job-list {
  position: relative;
  text-align: center;
  padding-bottom: 0;
  margin-top: 30px;
  display: table;
}

.grid-view .brows-job-type span {
  position: absolute;
  padding: 4px 15px;
  top: 10px;
  right: 0;
  line-height: 1.6;
  font-size: 12px;
  border-radius: 2px 0 0 2px;
}

.grid-view.brows-job-list:hover, .grid-view.brows-job-list:focus {
  border: none !important;
}

.grid-view .brows-job-company-img {
  width: 80px;
  margin: 10px auto;
  height: 80px;
  display: flex;
  border: 1px solid #e4e4e4;
  background: #fff;
  align-items: center;
  border-radius: 50%;
  line-height: 1.6;
}

.grid-view .brows-job-company-img img {
  margin: 0 auto;
  vertical-align: middle;
  display: inline-block;
  max-width: 50px;
  line-height: 1.6;
}

.grid-view-caption {
  margin: 2.5em 0 0 0;
  padding: 0;
  border-top: 1px solid #eaeff5;
  display: flex;
  width: 100%;
}

.brows-job-position {
  padding: 0 15px 15px;
}

.item-click .brows-job-position {
  padding: 0;
}

.grid-view-caption li {
  display: inline-block;
  float: left;
  width: 50%;
  padding: 10px 0;
  line-height: 1.6;
}

.brows-job-description {
  font-size: 15.5px;
  line-height: 1.6;
  color: #5b6d77;
  padding: 10px 12px;
}

.brows-job-description p {
  line-height: 1.6;
}

.grid-view-caption li:first-child {
  border-right: 1px solid #eaeff5;
}

.grid-view-caption li p {
  margin-bottom: 0;
}

.grid-view-caption li i {
  padding-right: 10px;
}

.grid-view-caption .brows-job-location {
  margin-top: 0px;
}

.grid-view-caption .brows-job-location p i {
  margin-right: 0;
}

.grid-view-caption .brows-job-location p, .grid-view-caption .brows-job-sallery {
  font-size: 14px;
  margin-bottom: 0;
  color: #828fa2;
}

/*----------- All Job Components: Job category box --------*/
.category-box {
  position: relative;
  height: 210px;
  background: #ffffff;
  box-shadow: 0 5px 25px 0 rgba(41, 128, 185, 0.15);
  -webkit-box-shadow: 0 5px 25px 0 rgba(41, 128, 185, 0.15);
  border-radius: 5px;
  text-align: center;
  padding: 50px 12px 30px 12px;
  box-sizing: border-box;
  margin-top: 30px;
  overflow: hidden;
  transition: 0.6s linear;
}

.category-box .category-desc {
  z-index: 2;
}

.category-box .category-desc .category-icon {
  font-size: 40px;
  color: #ff7c39;
  margin-bottom: 10px;
  transition: 0.6s cubic-bezier(0.45, 0.01, 0.1, 1.49);
}

.category-box .category-desc i {
  font-size: 40px;
  color: #11b719;
  margin-bottom: 7px;
  width: auto;
  height: auto;
  transition: 0.6s cubic-bezier(0.45, 0.01, 0.1, 1.49);
}

.category-box .category-desc .category-detail h4 {
  font-weight: 500;
  margin-bottom: 5px;
}

.category-box .category-desc .category-detail p {
  margin-bottom: 5px;
}

.category-box .category-desc .category-detail span {
  font-weight: 400;
  font-size: 14px;
}

a.btn.width-170 {
  width: 150px;
  box-shadow: 0 2px 10px 0 #d8dde6;
  border: 1px solid #f9f9f9;
  background: #ffffff;
  padding: 10px;
  border-radius: 50px;
  color: #ff7c39;
  font-size: 16px;
  font-weight: 500;
  transition: 0.6s cubic-bezier(0.45, 0.01, 0.1, 1.49);
}

.category-box .category-desc i.abs-icon {
  position: absolute;
  bottom: 5px;
  left: 5px;
  opacity: 0;
  transition: all ease-in 0.4s;
  color: #eff1f3;
}

.category-box .category-desc img {
  max-width: 80px;
  margin: 0 auto 12px;
}

.category-box:hover i.abs-icon {
  position: absolute;
  bottom: 25px;
  left: 25px;
  opacity: 1;
  color: #eff1f3;
}

/*====================================
New Search Job Style
=======================================*/
.full-card {
  background: #ffffff;
  border-radius: 4px;
  padding-bottom: 30px;
  border: 1px solid #eceff3;
  box-shadow: 0px 0px 10px 0px rgba(64, 65, 67, 0.1);
}

.card-header {
  padding: 15px 0 0 0;
  border-bottom: 1px solid #eceff3;
}

.card-header .bootstrap-select button.btn.dropdown-toggle.bs-placeholder.btn-default {
  height: 40px;
}

article.advance-search-job {
  padding: 15px 0;
  border-bottom: 1px solid #eceff3;
}

ol.breadcrumb.pull-right {
  background: transparent;
}

.breadcrumb > .active {
  color: #11b719;
}

.advance-search-img-box {
  max-width: 70px;
  float: left;
}

.advance-search-caption {
  margin-left: 78px;
  margin-top: 16px;
}

.advance-search-caption h4 {
  color: #3e4850;
  margin-bottom: 3px;
  font-weight: 600;
}

.advance-search-caption span {
  font-weight: 400;
  color: #252d40;
  opacity: 0.8;
}

.advance-search-job-locat {
  vertical-align: middle;
  margin-top: 22px;
}

.advance-search-job-locat i {
  margin-right: 6px;
}

a.btn.advance-search {
  background: #11b719;
  border-radius: 2px;
  margin-top: 16px;
  min-width: 110px;
  padding: 8px 12px;
  color: #ffffff;
  letter-spacing: 1px;
}

a.btn.applied.advance-search {
  opacity: 0.6;
}

.apply-job-box {
  text-align: center;
  padding: 2em 0;
}

.apply-job-box h4 {
  margin-bottom: 5px;
  margin-top: 0;
}

.apply-job-box img {
  margin: 0 auto;
  display: table;
  max-width: 80px;
}

.fileUpload {
  position: relative;
  overflow: hidden;
  margin: 10px 0;
  border: 1px solid #d7dfea;
}

.fileUpload input.upload {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  filter: alpha(opacity=0);
}

.fileUpload span {
  background: #11b719;
  padding: 11px 20px;
  color: #ffffff;
  display: inline-block;
  min-width: 120px;
  text-align: center;
}

/*---Sidebar Style----*/
.side-widget {
  background: #ffffff;
  border-radius: 4px;
  border: 1px solid #eceff3;
  box-shadow: 0px 0px 10px 0px rgba(64, 65, 67, 0.1);
  margin-bottom: 30px;
  overflow: hidden;
}

.widget-text {
  padding: 15px;
}

.widget-text.padd-0 {
  padding: 0;
}

.job-alert {
  padding: 1.2em 0;
  text-align: center;
}

button.btn.btn-alrt {
  background: #11b719;
  color: #ffffff;
  padding: 10px 25px;
  min-width: 150px;
}

.sidebar.right-sidebar ul {
  margin: 0;
  padding: 0;
}

.sidebar.right-sidebar ul li {
  list-style: none;
  padding: 10px 10px 8px 10px;
  color: #707c88;
  border-bottom: 1px solid #eceff3;
}

.right-sidebar h2.side-widget-title {
  background: #11b719;
  margin: 0;
  text-align: left;
  padding-left: 12px;
  color: #ffffff;
  font-size: 17px;
  text-transform: uppercase;
  line-height: 1.6;
}

.ad-banner img {
  margin: 0 auto;
}

.right-sidebar h2.side-widget-title a {
  color: #ffffff;
  display: inline-block;
  width: 100%;
  padding-right: 12px;
  line-height: 1.6;
}

.custom-checkbox {
  position: relative;
}

.custom-checkbox input[type=checkbox] {
  opacity: 0;
  position: absolute;
  margin: 5px 0 0 3px;
  z-index: 9;
}

label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: 700;
}

.custom-checkbox label:before {
  content: "";
  margin-right: 5px;
  display: inline-block;
  vertical-align: text-top;
  background: white;
  border: 1px solid #bbb;
  border-radius: 2px;
  box-sizing: border-box;
  z-index: 2;
}

.custom-checkbox input[type=checkbox]:checked + label:after {
  border-color: #fff;
}

.custom-checkbox label:before {
  width: 16px;
  height: 16px;
}

.custom-checkbox input[type=checkbox]:checked + label:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid #ffffff;
  border-width: 0 3px 3px 0;
  transform: inherit;
  z-index: 3;
  transform: rotateZ(45deg);
}

.custom-checkbox input[type=checkbox]:checked + label:before {
  border-color: #11b719;
  background: #11b719;
}

.custom-radio {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.custom-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.custom-radio:hover input ~ .checkmark {
  background-color: #f4f5f7;
}

/* When the radio button is checked, add a blue background */
.custom-radio input:checked ~ .checkmark {
  background-color: #11a457;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.custom-radio input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.custom-radio .checkmark:after {
  top: 6px;
  left: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
}

/*================================
New Job Detail Style
==================================*/
.advance-detail.detail-desc-caption {
  text-align: center;
}

.advance-detail.detail-desc-caption ul li {
  width: 32%;
  text-transform: capitalize;
  margin-top: 20px;
  text-align: center;
  display: inline-block;
}

.advance-detail.detail-desc-caption ul li strong {
  display: block;
  font-size: 20px;
  font-weight: 600;
}

.j-view {
  color: #ff2a63;
}

.j-applied {
  color: #1fb6ff;
}

.j-shared {
  color: #23ce00;
}

ul.job-detail-des {
  padding: 0;
}

ul.job-detail-des li {
  padding: 0;
  color: #66727b;
  list-style: none;
  padding: 10px 12px 10px 20px;
}

ul.job-detail-des li span {
  font-weight: 600;
  margin-right: 20px;
  min-width: 120px;
  display: inline-block;
}

ul.job-detail-des li:nth-child(even) {
  background: #f3f6f8;
}

/*================================
 Error page design
==================================*/
section.simple-bg-screen.big-wrap {
  background-size: cover;
  background-position: center;
  position: relative;
}

section.simple-bg-screen.big-wrap:before {
  content: "";
  display: block;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  background: #fff;
  height: 100%;
  opacity: 0.8;
}

.error-page {
  background: transparent;
  position: relative;
  text-align: center;
}

.error-page p {
  font-size: 18px;
}

.error-page h2 {
  font-size: 80px;
  line-height: 1.6;
  font-weight: 600;
}

.error-page h2 span {
  color: #11b719;
}

.error-page a.btn.btn-success.small-btn {
  background: #11b719;
  border-color: #11b719;
  border-radius: 50px;
  padding: 12px 31px;
  margin: 15px 0;
}

/*==================================================
Employer & Candidate Profile Page Design
=================================================== */
.deatil-tab-employ.tool-tab .tab-content {
  padding-left: 2em;
  padding-right: 2em;
}

.deatil-tab-employ.tool-tab .nav.simple.nav-tabs li.active a {
  background: rgba(7, 177, 7, 0.15);
  color: #11b719;
  border-color: #11b719;
}

.nav.simple.nav-tabs a {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 15px 25px;
  border: none;
  border-radius: 0px;
  border-right: 1px solid #ddd;
  margin-right: 0;
}

.deatil-tab-employ.tool-tab .nav-tabs > li {
  margin-bottom: 0;
}

.deatil-tab-employ .nav-tabs > li.active > a, .deatil-tab-employ .nav-tabs > li.active > a:focus, .deatil-tab-employ .nav-tabs > li.active > a:hover {
  border: none;
  border-right: 1px solid #ddd;
}

.deatil-tab-employ .nav-tabs > li > a:focus, .deatil-tab-employ .nav-tabs > li > a:hover {
  background: rgba(7, 177, 7, 0.15);
  border-color: #11b719;
  color: #11b719;
}

span.info-bar {
  padding: 3px 5px;
  border: 1px solid #11b719;
  border-radius: 50%;
  background: #daf3da;
  color: #11b719;
  font-size: 12px;
  margin-left: 5px;
}

#address ul.job-detail-des {
  margin: 0;
  padding: 0;
}

.deatil-tab-employ .tab-pane img {
  border-radius: 50%;
}

.deatil-tab-employ .manage-cndt {
  border: 1px solid #e1e7ea;
}

.mail-card {
  border: 1px solid #e8edf1;
  border-radius: 2px;
  margin-bottom: 20px;
  display: inline-block;
  width: 100%;
}

.inbox-widget .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: transparent;
}

.flexbox {
  display: flex;
  justify-content: space-between;
}

.card-title.flexbox img.avatar {
  max-width: 60px;
  max-height: 60px;
  margin-right: 10px;
}

.card-title.flexbox h6 {
  margin-bottom: 0;
  margin-top: 10px;
}

.small, small {
  font-size: 85%;
}

.text-info {
  color: #11b719;
}

h5.text-lighter small {
  font-size: 90%;
  color: #84939a;
}

.attachment-block {
  display: inline-block;
  max-width: 180px;
  margin-right: 15px;
  margin-bottom: 20px;
  background: #ffffff;
  border: 1px solid #e8edf1;
  border-radius: 4px;
  overflow: hidden;
}

.attachment-info {
  padding: 5px 8px;
}

.attachment-info h6 {
  margin-bottom: 2px;
  margin-top: 5px;
}

.attachment-info ul li {
  width: 50%;
  float: left;
  display: inline-block;
}

.card-body {
  flex: 1 1 auto;
  padding: 1.25rem 0;
}

.deatil-tab-employ .tab-pane .thumb img {
  border-radius: 0;
  max-width: 100%;
  margin: 0;
}

.card-title.flexbox img {
  margin: 0;
}

.unread .card-title.flexbox h6 {
  font-size: 15px;
  font-weight: 600;
}

.unread .small, .unread small {
  font-size: 100%;
}

.edit-pro textarea.form-control {
  height: 150px;
}

.edit-pro .form-control {
  margin-bottom: 17px;
}

form.dropzone {
  color: #01b2ac;
  background: rgba(1, 178, 172, 0.07);
  border-color: #01b2ac;
}

.dz-default i.fa.fa-cloud-upload {
  display: block;
  font-size: 2em;
}

.dropzone .dz-message {
  text-align: center;
  margin: 1em 0 !important;
}

form.dropzone.dz-clickable {
  border: 1px dashed #d8e3e8;
  font-size: 20px;
}

.deatil-tab-employ .mng-company {
  border: 1px solid #e8edf1;
}

/*---- premium Job tag ----*/
article {
  position: relative;
}

.tg-themetag {
  top: 7px;
  left: -5px;
  z-index: 2;
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.6;
  position: absolute;
  background: #ff526c;
  padding: 5px 3px 3px 10px;
  text-transform: uppercase;
}

.tg-featuretag:before, .tg-featuretag:after {
  width: 0;
  height: 0;
  content: "";
  position: absolute;
}

.tg-featuretag:before {
  top: 0;
  left: 100%;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 10px solid #ff526c;
}

.tg-featuretag:after {
  top: 100%;
  left: 0;
  border-top: 5px solid #eb344f;
  border-left: 5px solid transparent;
}

.deatil-tab-employ article.advance-search-job {
  border: 1px solid #eceff3;
  margin-bottom: 20px;
}

.tab-pane .advance-search-img-box img {
  margin: 0;
  display: block;
  max-width: 100%;
}

button.update-btn {
  background: #11b719;
  margin: 2em auto;
  border: none;
  display: table;
  color: #ffffff;
  border-radius: 4px;
  text-transform: capitalize;
  font-size: 16px;
  padding: 15px 40px;
  min-width: 180px;
  margin: 15px auto;
}

/*=======================================
Dropper Settings
========================================*/
.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
  background-color: #ffffff;
  opacity: 1;
}

div.datedropper.my-style {
  border-radius: 8px;
  width: 180px;
}

div.datedropper.my-style .picker {
  border-radius: 8px;
  box-shadow: 0 0 32px 0px rgba(0, 0, 0, 0.1);
}

div.datedropper.my-style .pick-l {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

div.datedropper.my-style:before,
div.datedropper.my-style .pick-submit,
div.datedropper.my-style .pick-lg-b .pick-sl:before,
div.datedropper.my-style .pick-m,
div.datedropper.my-style .pick-lg-h {
  background-color: #1cc100;
}

div.datedropper.my-style .pick-y.pick-jump,
div.datedropper.my-style .pick li span,
div.datedropper.my-style .pick-lg-b .pick-wke,
div.datedropper.my-style .pick-btn {
  color: #1cc100;
}

div.datedropper.my-style .picker,
div.datedropper.my-style .pick-l {
  background-color: #FFF;
}

div.datedropper.my-style .picker,
div.datedropper.my-style .pick-arw,
div.datedropper.my-style .pick-l {
  color: #3a465e;
}

div.datedropper.my-style .pick-m,
div.datedropper.my-style .pick-m .pick-arw,
div.datedropper.my-style .pick-lg-h,
div.datedropper.my-style .pick-lg-b .pick-sl,
div.datedropper.my-style .pick-submit {
  color: #FFF;
}

div.datedropper.my-style.picker-tiny:before,
div.datedropper.my-style.picker-tiny .pick-m {
  background-color: #FFF;
}

div.datedropper.my-style.picker-tiny .pick-m,
div.datedropper.my-style.picker-tiny .pick-m .pick-arw {
  color: #3a465e;
}

div.datedropper.my-style.picker-lkd .pick-submit {
  background-color: #FFF;
  color: #3a465e;
}

/*-------------------------------------------------------------
	New Pages Style
-----------------------------------------------------------------*/
/*-------------- Hero Banner section --------------*/
.hero-banner {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.hero-banner .container {
  height: 100%;
  display: table;
}

.hero-banner:before {
  content: "";
  background: url(/images/green-banner.png?d23b9c00008c7151a90c4ef914dc81f1) center center/cover no-repeat local;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.hero-banner .hero-img {
  position: absolute;
  left: 0;
  top: 0;
}

.hero-banner .container .row {
  display: table-cell;
  vertical-align: middle;
}

.hero-banner .content {
  position: relative;
  z-index: 10;
}

.hero-banner h2, .main-banner h1 {
  font-size: 30px;
  font-weight: 700;
}

.hero-banner p, .main-banner p {
  font-family: "Josefin Slab", serif;
  line-height: 1.6;
}

.banner-form {
  max-width: 510px;
  margin-top: 30px;
}

.banner-form .input-group {
  width: 100%;
}

.banner-form .form-control, .banner-form .btn {
  height: 60px;
  padding: 12px 15px;
}

.banner-form .btn {
  color: #ffffff;
}

.company-brand.freelancer {
  position: relative;
  margin-top: 0;
  padding: 40px 0;
  background: #f2f7fb;
}

.company-brand.freelancer img {
  opacity: 0.8;
}

.grid-slide .grid-slide-box, .grid-slide-2 .grid-slide-box {
  padding: 5px 10px;
}

.grid-slide .grid-slide-box:focus, .grid-slide-2 .top-candidate-box:focus {
  outline: none;
}

/*----------------- Freelancer ------------------*/
.top-candidate-wrap {
  background: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  transition: 0.4s;
  border: 1px solid #eaeff5;
}

.grid-slide-box .top-candidate-wrap {
  margin-bottom: 0;
}

.top-candidate-wrap:hover, .top-candidate-wrap:focus {
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  cursor: pointer;
}

.tp-candidate-inner-box {
  padding: 50px 20px 10px;
  text-align: center;
}

.top-candidate-box {
  text-align: center;
  padding: 40px 20px 15px;
}

.style-2 .top-candidate-box {
  padding: 40px 20px 35px;
}

.tpc-status {
  position: absolute;
  left: 32px;
  top: 25px;
  background: #01c73d;
  color: #ffffff;
  text-transform: capitalize;
  padding: 4px 18px;
  border-radius: 50px;
  font-weight: 500;
}

.flc-rate {
  position: absolute;
  right: 32px;
  top: 20px;
  font-size: 18px;
  font-weight: 500;
}

.top-candidate-box-thumb {
  margin-bottom: 30px;
  width: 120px;
  height: 120px;
  margin: 0 auto 25px auto;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0px 14px 0 rgba(0, 0, 0, 0.08);
  -webkit-box-shadow: 0 0px 14px 0 rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 0px 14px 0 rgba(0, 0, 0, 0.08);
}

.style-2 .top-candidate-box-thumb {
  width: 100px;
  height: 100px;
  margin: 0 auto 15px auto;
  overflow: hidden;
  box-shadow: 0 0px 14px 0 rgba(0, 0, 0, 0.08);
  -webkit-box-shadow: 0 0px 14px 0 rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 0px 14px 0 rgba(0, 0, 0, 0.08);
}

.top-candidate-box-detail h4 {
  margin-bottom: 4px;
  font-size: 20px;
  text-transform: capitalize;
}

.top-candidate-box-detail .desination, .top-candidate-box-detail .location {
  font-weight: 500;
  font-size: 15px;
  display: block;
  color: #677484;
}

.top-candidate-box-extra ul {
  margin: 15px 0;
  padding: 0;
}

.top-candidate-box-extra ul li {
  display: inline-block;
  list-style: none;
  padding: 3px 15px;
  border: 1px solid #b9c5ce;
  border-radius: 50px;
  margin: 5px;
  font-weight: 500;
  color: #657180;
}

.top-candidate-box-extra ul li.more-skill {
  color: #ffffff;
  border-color: #1194f7;
}

.style-2 .top-candidate-box-extra ul li {
  border-radius: 2px;
}

.btn.btn-freelance {
  padding: 17px;
  display: inline-block;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  border-radius: 0;
  background: #f2f3f5;
}

.btn.btn-candidate-two {
  border-radius: 2px;
  color: #ffffff;
  padding: 9px 17px;
  margin: 5px;
}

.btn.btn-freelance:hover, .btn.btn-freelance:focus {
  background: #01c73d;
  color: #ffffff;
}

.rattings .fa {
  color: #99abb9;
}

.rattings .fa.fill {
  color: #FF9800;
}

/*---------------- Paid Candidat -----------------*/
.paid-candidate-container {
  background: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  transition: 0.4s;
  border: 1px solid #eaeff5;
}

.paid-candidate-container:hover, .paid-candidate-container:focus {
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  cursor: pointer;
}

.paid-candidate-box {
  text-align: center;
  padding: 60px 20px 15px;
}

.paid-candidate-status {
  position: absolute;
  left: 32px;
  top: 25px;
  background: #01c73d;
  color: #ffffff;
  padding: 4px 18px;
  border-radius: 50px;
  font-weight: 500;
}

.flc-rate {
  position: absolute;
  right: 32px;
  top: 20px;
  font-size: 18px;
  font-weight: 500;
}

.paid-candidate-box-thumb {
  margin-bottom: 30px;
  width: 120px;
  height: 120px;
  margin: 0 auto 25px auto;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0px 14px 0 rgba(0, 0, 0, 0.08);
  -webkit-box-shadow: 0 0px 14px 0 rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 0px 14px 0 rgba(0, 0, 0, 0.08);
}

.paid-candidate-box-detail h4 {
  margin-bottom: 4px;
  font-size: 20px;
}

.paid-candidate-box-detail .desination, .paid-candidate-box-detail .location {
  font-weight: 500;
  font-size: 15px;
  display: block;
  color: #677484;
}

.paid-candidate-box-extra ul {
  margin: 15px 0;
  padding: 0;
}

.paid-candidate-box-extra ul li {
  display: inline-block;
  list-style: none;
  padding: 3px 15px;
  border: 1px solid #b9c5ce;
  border-radius: 50px;
  margin: 5px;
  font-weight: 500;
  color: #657180;
}

.paid-candidate-box-extra ul li.more-skill {
  color: #ffffff;
  border-color: #1194f7;
}

.btn.btn-paid-candidate {
  padding: 17px;
  display: inline-block;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  border-radius: 0;
  background: #f2f3f5;
}

.btn.btn-paid-candidate:hover, .btn.btn-paid-candidate:focus {
  background: #01c73d;
  color: #ffffff;
}

.paid-candidate-box .dropdown {
  position: absolute;
  right: 30px;
  top: 25px;
}

.btn-trans {
  background: transparent;
  border: none;
  font-size: 20px;
  color: #99abb9;
}

.dropdown-menu.pull-right {
  right: 0;
  left: auto !important;
  top: 90% !important;
}

.dropdown-menu.pull-right {
  right: 0;
  border-color: #ebf2f7;
  padding: 0;
  left: auto !important;
  top: 90% !important;
}

.dropdown-menu > a {
  display: block;
  padding: 14px 12px 14px 12px;
  clear: both;
  font-weight: 300;
  line-height: 1.6;
  color: #67757c;
  border-bottom: 1px solid #f1f6f9;
}

/*----------------- popular job  ------------------*/
.popular-jobs-container {
  background: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  transition: 0.4s;
  border: 1px solid #eaeff5;
}

.popular-jobs-container:hover, .popular-jobs-container:focus {
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  cursor: pointer;
}

.popular-jobs-box {
  text-align: center;
  padding: 50px 20px 15px;
}

.popular-jobs-status {
  position: absolute;
  left: 32px;
  top: 25px;
  color: #ffffff;
  text-transform: capitalize;
  padding: 4px 18px;
  border-radius: 50px;
  font-weight: 500;
}

.flc-rate {
  position: absolute;
  right: 32px;
  top: 20px;
  font-size: 18px;
  font-weight: 500;
}

.popular-jobs-box-detail h4 {
  margin-bottom: 4px;
  font-size: 20px;
  text-transform: capitalize;
}

.popular-jobs-box-detail .desination, .popular-jobs-box-detail .location {
  font-weight: 500;
  font-size: 15px;
  display: block;
  color: #677484;
}

.popular-jobs-box-extra ul {
  margin: 15px 0;
  padding: 0;
}

.popular-jobs-box-extra ul li {
  display: inline-block;
  list-style: none;
  padding: 3px 15px;
  border: 1px solid #b9c5ce;
  border-radius: 50px;
  margin: 5px;
  font-weight: 500;
  color: #657180;
}

.popular-jobs-box-extra ul li.more-skill {
  color: #ffffff;
  border-color: #1194f7;
}

.btn.btn-popular-jobs {
  padding: 17px;
  display: inline-block;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  border-radius: 0;
  background: #f2f3f5;
}

.btn.btn-popular-jobs:hover, .btn.btn-popular-jobs:focus {
  background: #01c73d;
  color: #ffffff;
}

/*------------ How It Works -----------------*/
.working-process {
  text-align: center;
  position: relative;
  margin-top: 30px;
}

.process-icon {
  float: none;
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  line-height: 1.6;
  font-size: 35px;
  text-align: center;
  color: #fe2864;
  background: #f5f9fc;
  border-color: #f5f9fc;
}

span.process-img {
  width: 80px;
  height: 80px;
  margin: 15px auto 0;
  position: relative;
  display: inline-block;
}

span.process-img img {
  z-index: 1;
}

span.process-count {
  position: absolute;
  right: 0;
  bottom: 5px;
  line-height: 1.6;
  width: 30px;
  height: 30px;
  background: #fe2864;
  font-size: 14px;
  text-align: center;
  border-radius: 50%;
  color: #ffffff;
}

span.process-num {
  position: absolute;
  font-size: 60px;
  font-weight: 600;
  color: #bbc7e1;
  left: -30px;
  top: -10px;
  opacity: 0.2;
}

.working-process h4 {
  margin: 10px 0;
}

.working-process p {
  padding: 2px 15px;
  line-height: 1.6;
}

/*---------------- Freelancer Detail --------------------*/
.inner-header-page {
  padding: 150px 0 50px;
  text-align: left;
  background: #f5f6f7;
  border-bottom: 2px solid #11b719;
}

.left-side-container {
  display: table;
  width: 100%;
}

.inner-header-page .freelance-image {
  height: 140px;
  flex: 0 0 140px;
  margin-right: 35px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  display: inline-block;
  padding: 0 20px;
  line-height: 1.6;
  float: left;
}

.inner-header-page .freelance-image img {
  max-width: 120px;
  margin-top: 10px;
}

.header-details h4 {
  margin: 0 0 5px 0;
  font-size: 24px;
}

.header-details h4 span {
  font-size: 17px;
}

.inner-header-page .header-details ul {
  padding: 0;
  margin: 0;
  list-style: none;
  line-height: 1.6;
  margin-bottom: -7px;
}

.inner-header-page .header-details li {
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 12px;
}

.inner-header-page .header-details ul li img {
  height: 16px;
  border-radius: 3px;
  position: relative;
  top: -1px;
  display: inline-block;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  margin-right: 5px;
  cursor: default;
}

.verified-action {
  position: relative;
  height: 26px;
  display: flex;
  top: -1px;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  background-color: #30ab4a;
  text-align: center;
  z-index: 10;
  font-weight: 500;
  border-radius: 4px;
  padding: 0 8px 0 0;
  margin: 0;
  overflow: hidden;
  padding-left: 34px;
  line-height: 1.6;
}

.verified-action:before {
  content: "\f00c";
  font-family: FontAwesome;
  font-size: 16px;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  line-height: 1.6;
  height: 26px;
  width: 26px;
  display: inline-block;
  background-color: #38b653;
}

.header-details {
  margin-top: 20px;
}

.inner-header-page .header-details li .star-rating {
  position: relative;
  top: 0px;
}

.star-rating::before {
  content: attr(data-rating);
  float: left;
  background-color: #febe42;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
  position: relative;
  top: 1px;
  margin-right: 10px;
  border-radius: 4px;
  padding: 5px 7px;
}

.inner-header-page .header-details li .star-rating .fa {
  color: #94a0ad;
}

.inner-header-page .header-details li .star-rating .fa.fill {
  color: #febe42;
}

.right-side-detail ul {
  padding: 0;
  margin: 0;
}

.right-side-detail ul li {
  list-style: none;
  padding: 5px 0;
}

.right-side-detail ul li .detail-info {
  width: 135px;
  font-weight: 500;
  display: inline-block;
}

.right-side-detail ul.social-info li {
  display: inline-block;
  margin: 5px;
}

.right-side-detail ul.social-info li a {
  width: 40px;
  height: 40px;
  display: inline-block;
  background: #e3e8ec;
  text-align: center;
  line-height: 1.6;
  border-radius: 2px;
}

span.available-status {
  margin-left: 10px;
  background: #01c73d;
  padding: 5px 15px;
  border-radius: 4px;
  color: #ffffff;
}

/*------------ job Apply Detail ----------------*/
.container-detail-box {
  background: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  padding: 30px 30px;
  margin-bottom: 30px;
  position: relative;
  border: 1px solid #eaeff5;
}

.apply-job-detail {
  margin-bottom: 30px;
}

.apply-job-detail h5 {
  font-size: 18px;
}

.apply-job-header a {
  margin-right: 15px;
}

.apply-job-header a i, .apply-job-header span i {
  margin-right: 5px;
}

.apply-job-header {
  margin-bottom: 40px;
}

.apply-job-header h4 {
  font-size: 22px;
}

ul.skills, ul.job-requirements {
  margin: 15px 0;
  padding: 0;
}

ul.skills li {
  display: inline-block;
  list-style: none;
  padding: 3px 15px;
  border: 1px solid #b9c5ce;
  border-radius: 50px;
  margin: 5px;
  font-weight: 500;
  color: #657180;
}

ul.job-requirements li {
  list-style: none;
  display: block;
  padding: 7px 0;
}

ul.job-requirements li span {
  display: inline-block;
  width: 160px;
  font-weight: 500;
  font-weight: bold;
}

/*---------- Login -------------*/
img.img-responsive.payment-img {
  margin-top: 20px;
}

/*------------- Review & New Detail Page -----------*/
.review-list {
  display: table;
  width: 100%;
  margin-bottom: 50px;
}

.review-thumb {
  max-width: 80px;
  float: left;
  display: table-cell;
}

.review-detail {
  display: table;
  margin-left: 100px;
}

.review-detail h4 {
  margin: 0 0 3px 0;
}

.review-detail h4 span {
  float: right;
  opacity: 0.8;
  font-weight: 400;
  font-size: 13px;
}

.review-detail .re-designation {
  font-size: 14px;
  opacity: 0.9;
}

.review-detail p {
  margin: 15px 0 25px 0;
}

ul.block-list {
  padding: 0;
  margin: 0;
}

ul.block-list li {
  list-style: none;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
  display: block;
  font-family: "Josefin Slab", serif;
}

ul.block-list li i {
  margin-right: 12px;
}

ul.language {
  padding: 0;
  margin: 0;
}

ul.language li {
  list-style: none;
  margin-bottom: 10px;
  font-size: 15px;
  margin-right: 20px;
  display: inline-block;
}

ul.language li img {
  height: 16px;
  border-radius: 3px;
  position: relative;
  top: -1px;
  display: inline-block;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  margin-right: 5px;
  cursor: default;
}

/*---------------------------------------------------
	Default Sidebar
-----------------------------------------------*/
.sidebar-wrapper {
  background: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  text-align: left;
  margin-bottom: 30px;
  position: relative;
  transition: 0.4s;
  padding: 0 25px 30px;
  border: 1px solid #eaeff5;
}

.sidebar-box-header {
  padding: 15px 0;
  margin-bottom: 20px;
}

.sidebar-box-header h4 {
  font-size: 17px;
  margin: 5px 0;
}

.member-profile-list {
  display: table;
  width: 100%;
}

.member-profile-list {
  padding: 15px 0;
  border-bottom: 1px solid #eaeff5;
  text-align: left;
}

.member-profile-list:last-child {
  border-bottom: none;
}

.member-profile-thumb {
  width: 70px;
  float: left;
}

.member-profile-detail {
  margin-left: 80px;
  margin-top: 7px;
}

.member-profile-detail h4 {
  margin: 0 0 2px 0;
}

.member-profile-detail span {
  display: block;
  line-height: 1.6;
  font-size: 13px;
}

/*--------------- Sidebar: Detail For Freelancer ----------------*/
.sidebar-container {
  background: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 30px;
  position: relative;
  border: 1px solid #eaeff5;
}

.apply-job-header span + span {
  margin-left: 15px;
}

.sidebar-box {
  text-align: center;
  padding: 60px 30px 30px;
}

.style-2 .sidebar-box {
  padding: 40px 20px 35px;
}

.sidebar-status {
  position: absolute;
  left: 32px;
  top: 25px;
  background: #01c73d;
  color: #ffffff;
  padding: 4px 18px;
  border-radius: 50px;
  font-weight: 500;
}

.flc-rate {
  position: absolute;
  right: 32px;
  top: 20px;
  font-size: 18px;
  font-weight: 500;
}

.sidebar-box-thumb {
  margin-bottom: 30px;
  width: 140px;
  height: 140px;
  margin: 0 auto 25px auto;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #eaeff5;
}

.sidebar-box-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.style-2 .sidebar-box-thumb {
  width: 100px;
  height: 100px;
  margin: 0 auto 15px auto;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0px 14px 0 rgba(0, 0, 0, 0.08);
  -webkit-box-shadow: 0 0px 14px 0 rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 0px 14px 0 rgba(0, 0, 0, 0.08);
}

.sidebar-box-detail h4 {
  margin-bottom: 4px;
  font-size: 22px;
}

.sidebar-box-detail .desination, .sidebar-box-detail .location {
  font-weight: 500;
  font-size: 15px;
  display: block;
  color: #677484;
}

.sidebar-box-extra ul {
  margin: 15px 0;
  padding: 0;
}

.sidebar-box-extra ul li {
  display: inline-block;
  list-style: none;
  padding: 3px 15px;
  border: 1px solid #b9c5ce;
  border-radius: 50px;
  margin: 5px;
  font-weight: 500;
  color: #657180;
}

.sidebar-box-extra ul li.more-skill {
  color: #ffffff;
  border-color: #1194f7;
}

a.btn.btn-sidebar {
  padding: 17px;
  display: inline-block;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  border-radius: 0;
}

a.btn.btn-sidebar {
  color: #ffffff;
}

a.btn.btn-sidebar:hover, a.btn.btn-sidebar:focus {
  background: #01c73d;
  color: #ffffff;
}

ul.status-detail {
  width: 100%;
  display: table;
  margin: 20px 0;
}

ul.status-detail li {
  display: inline-block;
  width: 33%;
  padding: 10px 0;
  border: none;
  border-radius: 0;
  text-align: center;
  display: table-cell;
  font-size: 13px;
}

ul.status-detail li > strong {
  display: block;
  font-weight: 600;
  font-size: 16px;
}

/*---------- Sidebar: Job Share Sidebar ---------------*/
ul.social-share {
  display: table;
  width: 100%;
  margin: 0;
  padding: 0;
}

ul.social-share li {
  width: 33.3333%;
  display: inline-block;
  padding: 10px;
}

ul.social-share li > a {
  box-shadow: 0 5px 25px 0 rgba(41, 128, 185, 0.15);
  -webkit-box-shadow: 0 5px 25px 0 rgba(41, 128, 185, 0.15);
  width: 100%;
  height: 80px;
  text-align: center;
  display: inline-block;
  line-height: 1.6;
  border-radius: 4px;
  font-size: 25px;
  color: #b7c4d0;
}

ul.social-share li > a.fb-share {
  color: #3b5998;
  box-shadow: 0 5px 25px 0 rgba(59, 89, 152, 0.15);
  -webkit-box-shadow: 0 5px 25px 0 rgba(59, 89, 152, 0.15);
}

ul.social-share li > a.tw-share {
  color: #4ac9ff;
  box-shadow: 0 5px 25px 0 rgba(74, 201, 255, 0.15);
  -webkit-box-shadow: 0 5px 25px 0 rgba(74, 201, 255, 0.15);
}

ul.social-share li > a.gp-share {
  color: #f3222a;
  box-shadow: 0 5px 25px 0 rgba(243, 34, 42, 0.15);
  -webkit-box-shadow: 0 5px 25px 0 rgba(243, 34, 42, 0.15);
}

ul.social-share li > a.li-share {
  color: #007aaa;
  box-shadow: 0 5px 25px 0 rgba(0, 122, 170, 0.15);
  -webkit-box-shadow: 0 5px 25px 0 rgba(0, 122, 170, 0.15);
}

ul.social-share li > a.in-share {
  color: #ec3e7d;
  box-shadow: 0 5px 25px 0 rgba(236, 62, 125, 0.15);
  -webkit-box-shadow: 0 5px 25px 0 rgba(236, 62, 125, 0.15);
}

ul.social-share li > a.pi-share {
  color: #d80954;
  box-shadow: 0 5px 25px 0 rgba(216, 9, 84, 0.15);
  -webkit-box-shadow: 0 5px 25px 0 rgba(216, 9, 84, 0.15);
}

ul.social-share li > a.be-share {
  color: #0067ff;
  box-shadow: 0 5px 25px 0 rgba(0, 103, 255, 0.15);
  -webkit-box-shadow: 0 5px 25px 0 rgba(0, 103, 255, 0.15);
}

/*--------- Easyautocomplete --------*/
.easy-autocomplete {
  position: relative;
  width: 100% !important;
}

.easy-autocomplete .input-group .form-control, .easy-autocomplete .form-control {
  float: none;
  text-align: left !important;
}

.easy-autocomplete-container {
  text-align: left;
}

.easy-autocomplete-container ul li, .easy-autocomplete-container ul .eac-category {
  background: inherit;
  border-color: #dbe0e6;
  -o-border-image: none;
     border-image: none;
  border-style: solid;
  border-width: 0 1px;
  display: block;
  font-size: 14px;
  font-weight: normal;
  padding: 8px 12px;
}

/*--------------- Sidebar Search -------------*/
.filter-sidebar {
  height: 100vh;
  width: 0;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  background-color: #fff;
  overflow: hidden;
  transition: 0.5s;
  padding-top: 50px;
  box-shadow: 0 0 20px 0 rgba(62, 28, 131, 0.1);
}

.filter-sidebar .show-hide-sidebar {
  padding: 10px;
  overflow-y: scroll;
  position: relative;
  width: calc(100% + 17px);
  min-height: 600px;
  display: block;
  height: 100%;
}

.filter-sidebar .ur-detail-wrap {
  padding: 0 1.4em 2em 1.4em;
}

.filter-sidebar .closebtn {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 36px;
  margin-left: 50px;
  width: 30px;
  height: 30px;
  background: #11b719;
  text-align: center;
  font-size: 11px;
  padding: 0;
  line-height: 1.6;
  color: #ffffff;
  border-radius: 50%;
}

/*----------- New Form Css -----------*/
html body .b-l {
  border-left: 1px solid #e0ecf5 !important;
}

html body .b-r {
  border-right: 1px solid #e0ecf5 !important;
}

.italian-search.hero-search-radius .input-with-icon .form-control, .italian-search.hero-search-radius .input-with-shadow .form-control, .italian-search.hero-search-radius .input-with-shadow .select2-container, .italian-search.hero-search-radius .input-with-icon .select2-container {
  border: none;
  border-radius: 3px;
  padding-left: 45px;
  background: #ffffff;
  box-shadow: none;
  -webkit-box-shadow: none;
  border: none;
  margin-bottom: 0;
  line-height: 1.6;
  height: 62px;
}

.italian-search.hero-search-radius .select2-container--default .select2-selection--single .select2-selection__rendered {
  border: none;
}

.input-with-icon i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 12px;
  font-size: 20px;
  color: #a2a9bf;
  font-style: normal;
  cursor: normal;
  pointer-events: none;
}

.italian-search .form-group {
  margin-bottom: 0px;
}

.italian-search.hero-search-radius .btn.search-btn {
  border-radius: 4px;
  height: 62px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.full-search-2.hero-search-radius {
  background: #ffffff;
  padding: 8px 15px;
  border-radius: 4px;
  box-shadow: 0px 0px 0px 8px rgba(255, 255, 255, 0.2);
}

.input-with-icon {
  position: relative;
  width: 100%;
}

.italian-search.hero-search-radius .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 1.6;
}

.italian-search.hero-search-radius .select2-container {
  display: inline-table;
}

/*----------- All Job Components: Browse Candidate & Employer ----------------*/
.filter-wraps {
  display: flex;
  width: 100%;
  margin-bottom: 20px;
  background: #ffffff;
  overflow: hidden;
  position: relative;
  border-radius: 6px;
  padding: 20px 25px;
  border: 1px solid #eef4f9;
  align-items: center;
  flex-wrap: wrap;
}

.filter-wraps-one {
  flex: 1;
}

.filter-wraps-one ul {
  margin: 0;
  padding: 0;
  display: inline-block;
  padding-left: 1.5rem;
}

.filter-wraps-one ul li {
  display: inline-block;
  padding-right: 10px;
  list-style: none;
}

.filter-wraps h5 {
  margin: 0;
}

.filter-wraps-one ul li a {
  font-size: 12px;
  background: #ecf0f7;
  padding: 5px 10px;
  border-radius: 2px;
  color: #566788;
}

.filter-wraps-one ul li a i {
  margin-left: 4px;
}

.candidate-list-layout, .newjob-list-layout {
  display: flex;
  width: 100%;
  margin-bottom: 20px;
  background: #ffffff;
  overflow: hidden;
  position: relative;
  border-radius: 6px;
  padding: 20px 25px;
  border: 1px solid #eef4f9;
  align-items: center;
  flex-wrap: wrap;
}

.cll-caption h4 span.jb-status {
  padding: 3px 12px;
  background: #1f86ef;
  border-radius: 2px;
  color: #ffffff;
  margin-left: 1rem;
  border: none;
  position: relative;
  top: -2px;
}

.cll-caption h4 span.jb-status.full-time {
  background: #03a84e;
}

.cll-caption h4 span.jb-status.part-time {
  background: #f7790a;
}

.cll-caption h4 span.jb-status.freelancer-time {
  background: #f31143;
}

.cll-caption h4 span.jb-status.contract-time {
  background: #71bd20;
}

.cll-caption h4 span.jb-status.internship-time {
  background: #964ed6;
}

.newjob-list-layout h4 a {
  border-right: 1px solid #dbe6ef;
  padding-right: 8px;
}

.cll-wrap {
  flex: 1;
}

.cll-thumb {
  max-width: 80px;
  display: inline-block;
  margin: 0 auto;
  overflow: hidden;
  height: 80px;
  float: left;
}

.cll-thumb img {
  max-width: 80px;
}

.newjob-list-layout .cll-thumb {
  max-width: 60px;
  display: inline-block;
  margin: 0 auto;
  overflow: hidden;
  height: 60px;
  float: left;
  margin-top: 6px;
}

.newjob-list-layout .cll-thumb img {
  max-width: 60px;
}

.cll-caption {
  display: inline-block;
  padding-left: 2rem;
  margin-top: 1.4rem;
}

.newjob-list-layout .cll-caption {
  display: inline-block;
  padding-left: 2rem;
  margin-top: 1rem;
}

.cll-caption i {
  margin-right: 5px;
}

.cll-caption h4 {
  padding-top: 0;
  margin-top: 0;
  font-size: 17px;
}

.cll-caption h4 span {
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid #dbe6ef;
  font-size: 14px;
  font-weight: 400;
  color: #8596b3;
}

.cll-caption ul {
  margin: 0;
  padding: 0;
  margin-top: 1rem;
}

.cll-caption ul li {
  display: inline-block;
  list-style: none;
  padding-right: 1rem;
}

.cll-caption ul li {
  display: inline-block;
  list-style: none;
  padding-right: 1rem;
  border-right: 1px solid #dbe6ef;
  padding-left: 5px;
}

.cll-caption ul li:first-child {
  padding-left: 0px;
}

.cll-caption ul li:last-child {
  border-right: none;
}

.btn.theme-btn.btn-shortlist {
  text-transform: capitalize;
  background: #11b719;
  border-color: #11b719;
  padding: 10px 20px;
  color: #ffffff;
  box-shadow: none;
}

.btn.theme-btn.btn-shortlist i {
  margin-right: 10px;
}

.btn.btn-opening {
  background: #28b446;
  border-color: #28b446;
  color: #ffffff;
  padding: 6px 15px;
}

.jv-featured {
  background-color: #e81a1a;
  float: left;
  position: absolute;
  transform: rotate(45deg);
  right: -77px;
  top: 11px;
  text-align: center;
  width: 200px;
  font-size: 12px;
  margin: 0;
  z-index: 1;
  color: #fff;
  font-weight: 500;
  line-height: 1.6;
}

/*-------------- New Login Popup ------------------*/
.new-logwrap {
  background: #fff;
  padding: 70px;
  margin: 0 auto;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
}

.modal-body .new-logwrap {
  background: #fff;
  padding: 60px40px 40px;
  margin: 0 auto;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
}

#signup .modal-content {
  padding: 0;
}

.new-logwrap .form-control {
  height: 50px;
  border: none;
  padding-left: 45px;
  margin-bottom: 0px;
  box-shadow: none;
  border-radius: 0;
  background: #ffffff;
}

.new-logwrap label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: 600;
  color: #263c61;
  text-transform: uppercase;
  font-size: 12px;
  position: absolute;
  top: -11px;
  left: 40px;
  padding: 0 5px;
  background: #ffffff;
}

.new-logwrap .form-group {
  border: 1px solid #eee;
  padding: 14px 18px 15px;
  margin-bottom: 30px;
  border-radius: 5px;
  position: relative;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
}

.register-account {
  margin-bottom: 15px;
}

.forget-account {
  margin-top: 15px;
}

.new-logwrap .btn-primary {
  padding: 18px 0;
  font-size: 19px;
}

.social-devider {
  margin-top: 35px;
  text-align: center;
  position: relative;
}

.social-devider .line {
  width: 237px;
  height: 1px;
  background: #edf1f9;
  display: inline-block;
}

.social-devider .circle {
  width: 35px;
  height: 35px;
  line-height: 1.6;
  display: inline-block;
  background: #edf1f9;
  color: #354b6b;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -12px;
  margin-left: -18px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
}

.new-logwrap .social-login {
  margin-top: 35px;
}

.social-login > div {
  margin-bottom: 25px;
}

.jb-btn-icon, .jb-btn-icon:hover, .jb-btn-icon:focus {
  display: inline-block;
  width: 100%;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  background: #f4f5f7;
  color: #ffffff;
  text-transform: uppercase;
  border: none;
  padding: 14px 25px;
  font-weight: 600;
  font-size: 13px;
  position: relative;
  z-index: 0;
}

.social-login i {
  padding-right: 25px;
  margin-right: 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  top: 0;
  font-size: 18px;
  font-weight: 500;
}

.social-login .social-login-facebook {
  background: #3b5998;
}

.social-login .social-login-google {
  background: #db4437;
}

.social-login .social-login-twitter {
  background: #0084b4;
}

.social-login .social-login-linkedin {
  background: #006fa6;
}

.new-logwrap .tab-content {
  padding: 0;
}

.nav-tabs.modern-tabs > li {
  float: left;
  margin-bottom: 0;
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover {
  color: #11b719 !important;
  cursor: default;
  background-color: #fff;
  border: none;
  border-bottom: none;
}

.nav-tabs.modern-tabs {
  border-bottom: none;
  background: #f4f5f7;
  display: table;
  padding: 5px 2px;
  border-radius: 50px;
  margin: 0 auto;
  margin-bottom: 4rem;
}

.nav-tabs.modern-tabs > li > a:hover, .nav-tabs.modern-tabs > li > a:focus {
  border: none !important;
  margin: 0 5px !important;
  border-radius: 30px;
  line-height: 1.6;
  padding: 1.7rem 5rem;
  background: #ffffff;
  color: #11b719;
}

.nav-tabs.modern-tabs > li > a {
  color: #ffffff;
  border: none !important;
  margin: 0 5px !important;
  border-radius: 30px;
  line-height: 1.6;
  padding: 1.7rem 5rem;
}

/*----------- Map Job Box Style -------------*/
.map-job-box {
  text-align: left;
  padding: 2rem;
}

.map-job-box > div {
  margin-bottom: 10px;
  width: 100%;
}

.job-title {
  margin-bottom: 18px !important;
}

.job-title img {
  max-width: 25px;
  float: left;
  margin-right: 10px;
}

.job-title a {
  font-size: 18px;
  font-weight: 600;
}

.job-company i, .job-package i, .job-location i {
  font-size: 16px;
  margin-right: 8px;
  color: #505f7d;
}

.job-company i {
  color: #ef9b0b;
}

.job-package i {
  color: #19af83;
}

.job-location i {
  color: #e23487;
}

.job-company a, .job-package a, .job-location a, .job-package span {
  color: #505f7d;
  font-size: 14px;
}

.job-status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.job-map-status {
  flex: 1;
}

.map-job-box .jb-name {
  padding: 5px 15px;
  color: #353535;
  margin-left: 0px;
  border-radius: 30px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  background: #f4f5f7;
}

a.jb-like {
  width: 42px;
  height: 42px;
  display: flex;
  flex-wrap: wrap;
  background: rgba(224, 39, 68, 0.1);
  align-items: center;
  text-align: center;
  justify-content: center;
  border-radius: 50%;
  color: #e02744;
  font-size: 18px;
  margin-right: 20px;
  transition: all ease 0.4s;
}

a.jb-like:hover, a.jb-like:focus {
  background: rgb(224, 39, 68);
  color: #ffffff;
}

.jb-name.full-time {
  background: rgba(17, 183, 104, 0.1);
  color: #11b768;
}

.jb-name.part-time {
  background: rgba(234, 124, 34, 0.1);
  color: #ea7c22;
}

.jb-name.freelancers {
  background: rgba(21, 130, 236, 0.1);
  color: #1582ec;
}

.jb-name.contract {
  background: rgba(236, 48, 21, 0.1);
  color: #ec3015;
}

/*------- Fullscreen Map Section ---------------- */
.scrollContorl {
  position: absolute;
  z-index: 1000;
  bottom: 100px;
  right: 20px;
  cursor: pointer;
  width: 36px;
  height: 36px;
  line-height: 1.6;
  background: #2F3B59;
  border-radius: 4px;
  box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, 0.4);
}

.scrollContorl.enabledsroll i:before {
  content: "\f09c";
}

#singleMap {
  width: 100%;
  position: relative;
  height: 300px;
  float: left;
  margin-bottom: 30px;
}

.box-widget #singleMap {
  margin-bottom: 10px;
}

.mapzoom-in, .mapzoom-out {
  position: fixed;
  z-index: 100;
  top: 50%;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  color: #fff;
  line-height: 1.6;
  margin-top: -20px;
  text-align: center;
  background: #2b4db9;
  box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, 0.4);
  -webkit-transform: translate3d(0, 0, 0);
}

#singleMap .mapzoom-in, #singleMap .mapzoom-out, .home-map .mapzoom-in, .home-map .mapzoom-out, .fw-map .mapzoom-in, .fw-map .mapzoom-out {
  position: absolute;
  right: 20px;
}

.map-container.column-map.right-pos-map .mapzoom-in, .map-container.column-map.right-pos-map .mapzoom-out {
  right: 30px;
}

.map-container.column-map.left-pos-map .mapzoom-in, .map-container.column-map.left-pos-map .mapzoom-out {
  left: 30px;
}

.mapzoom-in:before, .mapzoom-out:before {
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  content: "\f068";
}

.mapzoom-in:before {
  content: "\f067";
}

.mapzoom-in {
  margin-top: -80px;
}

.mapnavigation {
  position: absolute;
  bottom: 50px;
  right: 7px;
  z-index: 30;
  width: 170px;
}

.mapnavigation a {
  width: 70px;
  padding: 8px 0;
  border-radius: 4px;
  color: #fff;
  float: left;
  margin-left: 10px;
  box-shadow: 0px 0px 0px 4px rgba(255, 255, 255, 0.4);
}

.mapnavigation a, .mapzoom-in:hover, .mapzoom-out:hover {
  background: #2F3B59;
}

.cluster img {
  display: none;
}

.cluster {
  width: 40px !important;
  height: 40px !important;
}

.cluster div {
  text-align: center;
  font-size: 15px !important;
  color: #fff !important;
  background: #2b4db9;
  font-weight: 600;
  border-radius: 100%;
  width: 40px !important;
  height: 40px !important;
  line-height: 1.6;
  box-shadow: 0px 0px 0px 4px rgba(255, 255, 255, 0.1);
  transition: all 100ms 3inear;
  animation: cluster-animation 1.5s infinite;
}

.cluster div:hover {
  background: #fd5332;
}

@keyframes cluster-animation {
  0%, 100% {
    box-shadow: 0px 0px 0px 4px rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0px 0px 0px 9px rgba(255, 255, 255, 0.2);
  }
}
.map-popup-location-phone, .map-popup-location-info {
  float: left;
  width: 100%;
  text-align: left;
  margin-bottom: 5px;
}

.map-popup-wrap {
  display: block;
  border-radius: 8px;
  width: 300px !important;
  background: #fff;
  position: relative;
}

.map-popup-wrap .property-listing.property-2 {
  border: none;
  margin-top: 0;
}

.map-popup {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 9px 16px rgba(58, 87, 135, 0.15);
}

.infoBox-close {
  position: absolute;
  width: 30px;
  height: 30px;
  line-height: 1.6;
  top: 20px;
  right: 20px;
  color: #2b4db9;
  text-align: center;
  border-radius: 100%;
  z-index: 20;
  background: #f4f5f7;
  box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.infoBox-close:hover {
  background: #2b4db9;
  color: #ffffff;
}

.map-container .inc-fleat.inc-bath:before, .map-container .inc-fleat.inc-bed:before {
  top: -2px;
}

.list-single-img a {
  position: relative;
  display: block;
}

.list-single-img a:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  display: block;
  background: #1c2746;
  opacity: 0.5;
}

.fs-container {
  height: 100% !important;
  width: 100%;
  position: relative;
  z-index: 4;
  float: left;
  background: #f4f5f7;
}

.fs-left-map-box {
  float: left;
}

.fs-container #map-main {
  position: relative;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  z-index: 990;
  margin-bottom: 0px;
}

.fs-left-map-box .map-container.fw-map {
  width: 40%;
  height: 100%;
  position: fixed;
  -webkit-transform: translate3d(0, 0, 0);
  overflow: hidden;
  top: 0;
}

.home-map.fl-wrap {
  position: relative;
  top: 0;
  left: 0;
  height: 585px;
  width: 100%;
  overflow: hidden;
}

.half-map .fs-inner-container {
  position: relative;
  width: 60%;
  background: #f4f5f7;
  min-height: 100vh;
  z-index: 10;
  float: left;
}

.map-container.fw-map #map-main {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
  overflow: hidden;
}

.fs-content {
  max-height: 100%;
  overflow: auto;
  padding: 0;
  overflow: visible;
}

.half-map .fs-content {
  padding: 8em 2em 2em;
}

.fs-container section.search {
  padding: 32px 40px 47px 40px;
}

.fs-container .fs-listings {
  padding: 0 25px;
  margin: 0;
}

.fs-switcher {
  padding: 0 25px;
  margin: 0;
}

/* Inner Containers */
.fs-inner-container {
  width: 50%;
  height: 100%;
  float: left;
  display: inline-block;
}

.img-wrap {
  height: 300px;
  display: inline-block;
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 1;
  margin: 10px 0;
  border-radius: 4px;
}

.img-wrap:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  content: "";
  background-color: #101f4e;
  opacity: 0.4;
  z-index: 11;
  transition: 0.3s ease-out;
}

.img-wrap-content {
  position: absolute;
  z-index: 55;
  top: 50%;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  transform: translate(0, -50.5%);
}

.img-wrap-content h4 {
  font-size: 28px;
  line-height: 1.6;
  color: #fff;
  margin: 0;
}

.img-wrap-content span {
  font-size: 16px;
  color: #fff;
}

.img-wrap-background {
  background-size: cover;
  background-position: 50%;
  width: 100%;
  height: 100%;
  transition: all 0.55s;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  transition: transform 0.35s ease-out;
}

.home-map.fl-wrap.mrgtp .full-search-2 {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  z-index: 15;
  max-width: 1240px;
  margin: 0 auto;
}

.home-map.fl-wrap.mrgtp {
  margin-top: 50px;
}

.home-map.fl-wrap {
  position: relative;
  top: 0;
  right: 0;
  height: 585px;
  width: 100%;
  overflow: hidden;
}

.home-map.fl-wrap .advance-search-container {
  position: absolute;
  bottom: 0px;
  left: 0;
  z-index: 33;
  transition: all 0.4s;
  max-width: 1170px;
  margin: 0 auto !important;
  width: 100%;
  right: 0;
}

.map-container {
  float: left;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.home-map .map-container.fw-map {
  float: none;
  height: 585px;
}

.input-with-icon .form-control, .input-with-shadow .form-control, .input-with-shadow .select2-container, .input-with-icon .select2-container {
  border: none;
  border-radius: 5px;
  padding-left: 45px;
  height: 60px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 0 6px 1px rgba(62, 28, 131, 0.1);
  -webkit-box-shadow: 0 0 6px 1px rgba(62, 28, 131, 0.1);
}

#signup .input-with-icon .form-control, #signup .input-with-shadow .form-control, #signup .input-with-shadow .select2-container, #signup .input-with-icon .select2-container,
.new-logwrap .input-with-icon .form-control, .new-logwrap .input-with-shadow .form-control, .new-logwrap .input-with-shadow .select2-container, .new-logwrap .input-with-icon .select2-container {
  border: none;
  border-radius: 5px;
  padding-left: 45px;
  height: 50px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: none;
  -webkit-box-shadow: none;
}

.half-map .input-with-icon .form-control, .half-map .input-with-shadow .form-control, .half-map .input-with-shadow .select2-container, .half-map .input-with-icon .select2-container {
  border: none !important;
}

.statistic-item {
  margin-bottom: 20px;
  border: 1px solid #e9eef3;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  padding: 13px 20px;
  background-color: #fff;
}

.flex-middle {
  display: -webkit-flex;
  -webkit-align-items: center;
  display: flex;
  align-items: center;
}

.statistic-item .icon {
  font-size: 30px;
}

.statistic-item .text {
  padding-left: 15px;
}

.statistic-item .number {
  font-size: 16px;
  color: #222;
  padding-right: 5px;
}

.job-detail-statistic {
  margin-bottom: 15px;
  margin-top: 15px;
  border: 1px solid #e9eef3;
  padding: 15px;
  box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.09);
  background: #fff;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.job-detail-statistic .statistic-item {
  margin: 0;
  border: none;
  border-right: 1px solid #e9eef3;
}

.job-detail-statistic .statistic-item {
  padding-right: 20px;
  padding-left: 20px;
}

.job-detail-statistic .statistic-item:last-child {
  border: none;
}

h4.modal-title.light {
  color: #ffffff;
  font-weight: 500;
  font-size: 20px;
}

.modal-header {
  color: #fff;
  background: #f16e8e;
  padding: 20px 15px;
  text-align: center;
  border-radius: 5px 5px 0 0;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  border-bottom: none;
}

label {
  font-size: 13px;
  font-weight: 600;
  color: #495677;
}

.dapply-job-form .form-group {
  margin-bottom: 10px;
}

.simple-list-sshare {
  margin: 0;
  padding: 0;
}

.simple-list-sshare li {
  margin-right: 8px;
  margin-bottom: 5px;
  list-style: none;
  display: inline-block;
}

.simple-list-sshare li a {
  background: #e9f0f9;
  width: 42px;
  height: 42px;
  display: inline-block;
  text-align: center;
  line-height: 1.6;
  border-radius: 50px;
  color: #6e7a8a;
}

.flt-result {
  width: 100%;
  display: flex;
  background: #ffffff;
  padding: 10px 15px;
  border-radius: 4px;
  flex-wrap: wrap;
  align-items: center;
}

.flt-result.mb-4 {
  margin-bottom: 3rem;
}

.flt-result-num {
  flex: 1;
}

.flt-result-num h4 {
  margin: 0;
  font-size: 15px;
}

.flt-change-layout {
  display: inherit;
}

.flt-change-layout a {
  background: #f4f5f7;
  color: #637280;
  padding: 12px 15px;
  border-radius: 2px;
  line-height: 1.6;
  margin: 0 3px;
}

.flt-change-layout a.active {
  background: rgba(17, 183, 25, 0.1);
  color: #11b719;
}

.theme-cl, .input-with-icon .theme-cl {
  color: #11b719;
}

.theme-bg, .theme-bg:hover, .theme-bg:focus {
  background: #11b719 !important;
  border-color: #11b719 !important;
}

button.btn.submit-btn.ft-search {
  background: #11b719;
  border-color: #11b719;
  color: #ffffff;
  height: 60px;
}

.brows-resume.grid-style:hover .br-resume span, .brows-resume.grid-style:focus .br-resume span {
  background: #11b719;
}

/*====================================
 Responsiveness Start
======================================*/
@media only screen and (min-width: 768px) {
  /*------------Navigation------*/
  body nav.navbar.bootsnav ul.nav > li > a.signin {
    color: #ffffff !important;
    border-radius: 2px;
    padding: 8px 20px;
    margin-left: 5px;
  }
  .hero-banner p, .main-banner p {
    font-size: 19px;
  }
  .slide-banner {
    min-height: 650px;
  }
  .slide-banner h2 {
    font-size: 60px;
  }
  .slide-banner .form-horizontal .form-control, .slide-banner .form-horizontal .btn {
    height: 62px;
    border-radius: 0;
  }
  .slide-banner .select2-container--default .select2-selection--single, .slide-banner .select2-container--default .select2-selection--multiple {
    border-radius: 0;
    border: none;
    min-height: 62px;
  }
  .slide-banner .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 1.6;
  }
  .slide-banner .select2-container--default .select2-selection--single .select2-selection__arrow {
    min-height: 62px;
  }
  .hero-banner .content h2 {
    font-size: 55px;
    line-height: 1.6;
  }
  nav.navbar.bootsnav {
    box-shadow: 0 0 20px 0 rgba(62, 28, 131, 0.1);
  }
  nav.navbar.bootsnav.navbar-transparent.white {
    box-shadow: none;
  }
  h1 {
    font-size: 48px;
    line-height: 1.6;
  }
  h2 {
    font-size: 36px;
    line-height: 1.6;
  }
  h3 {
    font-size: 30px;
    line-height: 1.6;
  }
  .banner-caption .btn-primary {
    margin-left: -1px;
  }
  .no-padd {
    padding: 0;
  }
  .tools-features h4 {
    font-size: 2em;
    line-height: 1.6;
  }
  .tools-features p {
    font-size: 17px;
    line-height: 1.6;
  }
  .right-br {
    border-right: 1px solid #465056;
  }
  .container-fluid, .container-sm, .container-md, .container-lg, .container-xl {
    padding: 0;
  }
  .navbar-right, .navbar-left {
    margin-top: 20px;
  }
  .banner p {
    font-size: 18px;
    margin: 0 auto;
    margin-bottom: 25px;
  }
  .banner h1 {
    font-size: 64px;
    margin-bottom: 0.5em;
  }
  .banner .small {
    font-size: 55px;
    margin-bottom: 1em;
  }
  .download-app img {
    position: absolute;
    max-width: 80%;
    left: 10%;
  }
  .extra-mrg {
    padding: 0;
    margin-left: -15px;
    margin-right: -15px;
  }
  /*--------detail page design---*/
  .detail-desc-caption ul li {
    width: 50%;
    display: inline-block;
    float: left;
  }
  /*----footer menu----*/
  .lg-menu ul {
    margin-top: 10px;
  }
  .advance-detail.detail-desc-caption ul li strong {
    font-size: 60px;
    line-height: 1.6;
  }
  /*---error page --*/
  section.big-wrap {
    padding: 10% 0;
  }
  .error-page h2 {
    font-size: 250px;
  }
}
@media only screen and (min-width: 992px) {
  .home-map.fl-wrap.mrgtp {
    margin-top: 74px;
  }
  .row.align-center {
    display: flex;
    align-items: center;
  }
}
@media only screen and (min-width: 1024px) {
  .navbar .form-control {
    height: 42px;
  }
  nav.navbar.bootsnav ul.navbar-right li.dropdown ul.dropdown-menu li a {
    text-align: left;
  }
  nav.navbar.bootsnav ul.navbar-right li.dropdown ul.dropdown-menu li.dropdown > a.dropdown-toggle:before {
    float: right;
    content: "\f105";
  }
  nav.navbar.bootsnav ul.nav.navbar-right .dropdown-menu .dropdown-menu {
    left: 100%;
  }
  section {
    padding: 80px 0 80px 0;
  }
  .easy-autocomplete {
    width: 100% !important;
  }
  .home-plane-banner {
    height: 100vh;
    padding-top: 13%;
    min-height: 620px;
  }
  .min-padd {
    padding: 10px;
  }
  .banner-caption .form-control.right-bor {
    border-right: 1px solid #e4e4e4;
  }
  .simple-banner h1 {
    font-size: 6.5em;
    line-height: 1.6;
  }
  .simple-banner h1.small {
    font-size: 4em;
  }
  .about p {
    font-size: 18px;
    line-height: 1.6;
    padding: 0 25px;
  }
  section.about h2 {
    font-size: 42px;
    margin-bottom: 25px;
  }
  .services h1 {
    font-size: 4em;
    margin-bottom: 35px;
  }
  .sec-features-caption {
    max-width: 90%;
  }
  a.btn.call-btn {
    font-size: 22px;
    margin-top: 1em;
  }
  .app-content h2 {
    margin-bottom: 5px;
    font-size: 50px;
  }
  .app-content h4 {
    font-size: 25px;
  }
  nav.navbar.bootsnav ul.nav > li {
    padding: 4px 4px;
  }
  nav.navbar ul.nav > li > a {
    padding: 30px 15px;
  }
  nav.navbar.bootsnav ul.dropdown-menu.megamenu-content .content ul.menu-col li a {
    text-align: left;
    padding: 8px 0;
    display: block;
    width: 100%;
    margin-bottom: 0;
    border-bottom: none;
    color: #555f69;
    font-size: 15px;
    font-weight: 400;
  }
  nav.navbar .navbar-brand {
    margin-top: 0;
  }
  nav.navbar .navbar-brand img.logo {
    width: 150px;
  }
  nav.navbar .navbar-brand {
    margin-top: 2px;
  }
  nav.navbar .navbar-brand img.logo {
    width: 210px;
  }
  nav.navbar li.dropdown ul.dropdown-menu {
    border-top: solid 5px;
  }
  /* Navbar Brand Top ------*/
  nav.navbar-brand-top .navbar-brand {
    margin: 10px !important;
  }
  /* Navbar Transparent & Fixed ------*/
  nav.navbar.bootsnav.navbar-transparent.white {
    background-color: transparent;
    border-bottom: none;
  }
  nav.navbar.bootsnav.navbar-light.white {
    background-color: #ffffff;
    border-bottom: none;
  }
  nav.navbar.navbar-inverse.bootsnav.navbar-transparent.dark,
  nav.navbar.bootsnav.navbar-transparent.dark {
    background-color: rgba(0, 0, 0, 0.3);
    border-bottom: solid 1px #555;
  }
  nav.navbar.bootsnav.navbar-transparent.white .attr-nav {
    border-left: solid 1px #bbb;
  }
  nav.navbar.navbar-inverse.bootsnav.navbar-transparent.dark .attr-nav,
  nav.navbar.bootsnav.navbar-transparent.dark .attr-nav {
    border-left: solid 1px #555;
  }
  nav.navbar.bootsnav.no-background.white .attr-nav > ul > li > a,
  nav.navbar.bootsnav.navbar-transparent.white .attr-nav > ul > li > a,
  nav.navbar.bootsnav.navbar-transparent.white ul.nav > li > a,
  nav.navbar.bootsnav.no-background.white ul.nav > li > a {
    color: rgb(255, 255, 255);
  }
  nav.navbar.bootsnav.navbar-light.no-background.white .attr-nav > ul > li > a,
  nav.navbar.bootsnav.navbar-light.white .attr-nav > ul > li > a,
  nav.navbar.bootsnav.navbar-light.white ul.nav > li > a,
  nav.navbar.bootsnav.navbar-light.no-background.white ul.nav > li > a {
    color: #657582;
  }
  nav.navbar.bootsnav.navbar-transparent.dark .attr-nav > ul > li > a,
  nav.navbar.bootsnav.navbar-transparent.dark ul.nav > li > a {
    color: #eee;
  }
  .inner-header-title h1 {
    font-size: 60px;
    margin: 0;
  }
  .inner-header-title h2 {
    font-size: 45px;
    margin: 0;
  }
  .inner-header-title p {
    font-size: 22px;
  }
}
@media only screen and (min-width: 1200px) {
  nav.navbar.bootsnav ul.nav > li {
    padding: 4px 12px;
  }
  .work-process-caption {
    padding-right: 30px;
  }
  nav.navbar.bootsnav ul.nav > li > a {
    padding: 8px 9px 22px 9px;
  }
  body nav.navbar.bootsnav ul.nav > li > a.signin {
    padding: 8px 30px;
    margin-left: 5px;
  }
  .inner-header-title h1 {
    font-size: 60px;
  }
  .inner-header-title h2 {
    font-size: 50px;
    margin-top: 0;
  }
  .inner-header-title p {
    font-size: 22px;
  }
  .navbar .form-control {
    min-width: 270px;
    height: 42px;
    margin-top: -5px;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .navbar .form-control {
    min-width: 155px;
    max-width: 155px;
  }
}
@media only screen and (max-width: 1023px) and (min-width: 993px) {
  .navbar-nav > li > a {
    padding: 9px 15px 26px 15px;
    font-size: 12px;
  }
  .navbar-brand > img.logo.logo-display {
    display: none;
  }
  img.logo.logo-scrolled {
    max-width: 200px;
    margin-top: 10px;
  }
  nav.navbar.bootsnav ul.nav > li.dropdown > a.dropdown-toggle:after {
    font-family: "FontAwesome";
    content: "\f0d7";
    margin-left: 5px;
    margin-top: 2px;
  }
  nav.bootsnav .megamenu-content .title {
    text-transform: capitalize;
    font-family: "Raleway", sans-serif;
    font-size: 20px;
    color: #55646f;
  }
  nav.navbar.bootsnav ul.dropdown-menu.megamenu-content .content ul.menu-col li a {
    text-align: left;
    padding: 5px 0;
    display: block;
    width: 100%;
    margin-bottom: 0;
    border-bottom: none;
    color: #707c88;
    font-size: 14.5px;
    font-weight: 400;
    font-family: "Quicksand", sans-serif;
  }
  .navbar .form-control {
    height: 42px;
  }
}
@media screen and (max-width: 1199px) {
  h1 {
    font-size: 48px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 22px;
  }
  h4 {
    font-size: 15px;
  }
  /*--------Manage Company------*/
  .mng-company h4 {
    font-size: 17px;
  }
}
@media only screen and (max-width: 992px) and (min-width: 768px) {
  /*----------Manage Member 2 ---------------*/
  .manage-resume-picbox img {
    width: 60px;
    height: 60px;
  }
  .manage-resume-picbox {
    width: 60px;
    height: 60px;
    display: inline-block;
  }
  .manage-resume-box .col-md-3.col-sm-3, .manage-resume-box .col-md-1.col-sm-1 {
    padding: 0;
  }
  .brows-job-type span {
    padding: 6px 5px;
    font-size: 10px;
  }
  .brows-job-position h3 {
    font-size: 19px;
  }
}
@media (max-width: 1023px) {
  .banner-caption .form-control {
    margin-bottom: 15px;
  }
  .brows-job-list {
    display: table;
  }
  .banner, .simple-banner, .hero-banner {
    min-height: 500px;
    padding: 3em 0;
  }
  .banner.trans {
    min-height: 580px;
    padding: 3em 0;
  }
}
@media screen and (max-width: 992px) {
  h1 {
    font-size: 42px;
  }
  h2 {
    font-size: 25px;
  }
  h3 {
    font-size: 20px;
  }
  h4 {
    font-size: 15px;
  }
  .candidate-list-layout {
    display: block;
    text-align: center;
  }
  .banner h1 {
    margin-bottom: 2rem;
  }
  .home-map.fl-wrap.mrgtp .full-search-2 {
    display: none;
  }
  .cll-thumb {
    max-width: 80px;
    display: table;
    margin: 0 auto;
    overflow: hidden;
    height: 80px;
    float: none;
  }
  .cll-caption ul li {
    border: navajowhite;
  }
  .cll-caption ul {
    margin-bottom: 2rem;
  }
  .filter-wraps-one ul li {
    margin-bottom: 5px;
  }
  .filter-wraps-one i.ti-search {
    display: none;
  }
  .filter-wraps-one ul {
    padding-left: 0;
  }
  nav.navbar.bootsnav ul.nav ul.dropdown-menu li a:focus, nav.navbar.bootsnav ul.nav ul.dropdown-menu li a:hover {
    background-color: transparent;
    background-image: none;
  }
  /* Navbar General ------*/
  nav.navbar .navbar-brand {
    margin-top: 0;
    position: relative;
    top: -2px;
  }
  nav.navbar .navbar-brand img.logo {
    width: 140px;
  }
  /* Navbar Mobile slide ------*/
  nav.navbar.navbar-mobile ul.nav > li > a {
    padding: 15px 15px;
  }
  nav.navbar.navbar-mobile ul.nav ul.dropdown-menu > li > a {
    padding-right: 15px !important;
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  nav.navbar.navbar-mobile ul.nav ul.dropdown-menu .col-menu .title {
    padding-right: 30px !important;
    padding-top: 13px !important;
    padding-bottom: 13px !important;
  }
  nav.navbar.navbar-mobile ul.nav ul.dropdown-menu .col-menu ul.menu-col li a {
    padding-top: 13px !important;
    padding-bottom: 13px !important;
  }
  /* Navbar Full ------*/
  nav.navbar-full .navbar-brand {
    top: 0;
    padding-top: 10px;
  }
  .navbar .form-control {
    margin: 14px 0;
  }
  nav.navbar.bootsnav .navbar-toggle {
    background-color: transparent !important;
    top: 9px;
    color: #9fabb1;
  }
  nav.navbar.bootsnav .dropdown .megamenu-content .col-menu .title {
    border-bottom: solid 1px #abbdca;
    color: #b6c8d6;
  }
  nav.navbar.bootsnav .dropdown .megamenu-content .col-menu ul > li > a {
    border-bottom: solid 1px #abbdca;
    padding: 8px 0;
  }
  ul.menu-col li a {
    color: #b6c8d6;
    font-size: 15px;
  }
  nav.navbar.bootsnav ul.nav li.dropdown ul.dropdown-menu > li > a {
    color: #b6c8d6;
    border-bottom: solid 1px #abbdca;
  }
  .col-menu {
    padding: 0;
  }
  .navbar-nav .row {
    margin-left: 0;
    margin-right: 0;
  }
  .app-content a.btn.call-btn {
    line-height: 1.6;
  }
  .app-content h2 {
    font-size: 32px;
    margin-bottom: 10px;
  }
  .app-content h4 {
    font-size: 20px;
  }
  .inner-header-title h1 {
    font-size: 50px;
  }
  .jobs_video .thumb .pro_img {
    height: 250px;
  }
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: 35px;
  }
  h2 {
    font-size: 25px;
  }
  h3 {
    font-size: 20px;
  }
  h4 {
    font-size: 15px;
  }
  .brows-job-link {
    margin-top: 1rem;
  }
  .hero-banner, .simple-banner, .banner.home-5, .home-three-banner, .slide-banner {
    margin-top: 55px;
  }
  .simple-banner {
    min-height: 350px;
  }
  .banner .small {
    font-size: 24px;
    display: block;
    width: 100%;
    margin-bottom: 2rem;
  }
  .jobs_video {
    display: none;
  }
  .container {
    width: 100%;
  }
  ul.job.stock-facts {
    margin-top: 2rem;
  }
  .call-to-act {
    display: block;
    text-align: center;
  }
  .call-to-act-head {
    margin-bottom: 2rem;
  }
  .simple-banner.top {
    padding: 15px 0 0px;
  }
  .brows-job-category h2 {
    font-size: 19px;
    line-height: 1.6;
  }
  .select2-container {
    margin-bottom: 15px;
  }
  .input-with-icon .select2-container {
    margin-bottom: 0px;
  }
  nav.navbar.navbar-inverse.navbar-mobile ul.nav {
    border-top: solid 1px #222;
  }
  nav.navbar.navbar-light.bootsnav {
    background-color: #ffffff;
    border-bottom: 1px solid #ffffff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075);
  }
  nav.navbar.bootsnav .navbar-collapse {
    background-color: #252d40;
    border-bottom: 1px solid #252d40;
  }
  nav.bootsnav .megamenu-content .title {
    font-size: 17px;
  }
  .hero-banner:before {
    background: url(/images/hero-banner.jpg?5ab51c8d5b20052c0cf12a71a5fe8bc7) center center/cover repeat local;
  }
  .slide-banner .form-horizontal .form-control, .slide-banner .form-horizontal .btn {
    margin-bottom: 12px;
  }
  .inner-header-title h1 {
    font-size: 40px;
    margin-bottom: 0em;
  }
  .call-to-act-caption {
    padding: 5em 1em;
    text-align: center;
  }
  .call-to-act-caption h3 {
    line-height: 1.6;
    font-size: 17px;
  }
  .home-plane-banner:before {
    background: rgba(255, 255, 255, 0.8);
  }
  /*------Manage Company--------*/
  .mng-company {
    text-align: center;
  }
  .mng-company .mng-company-pic {
    display: table;
    margin: 20px auto;
  }
  .mng-company h4 {
    font-size: 18px;
  }
  /*-----------Manage Member 2 -------------*/
  .manage-resume-box {
    text-align: center;
  }
  .manage-resume-picbox {
    display: table;
    margin: 20px auto;
  }
  .pagination > li > a, .pagination > li > span, .pagination > li > button {
    padding: 8px 14px;
  }
  /*------------Manage Company------------*/
  .mng-resume .mng-resume-pic {
    margin: 20px auto;
    display: table;
  }
  .mng-resume {
    text-align: center;
    border-left: none;
    border-top: 3px solid #ffffff;
  }
  /*-----------Browse Company------------*/
  .brows-company {
    text-align: center;
    border-left: none;
    border-top: 4px solid #ffffff;
  }
  .brows-company .brows-company-pic {
    margin: 20px auto;
    display: table;
  }
  .brows-company .brows-company-position p {
    text-align: center;
  }
  /*------------Browse Resume--------------*/
  .brows-resume {
    text-align: center;
    border-left: none;
    border-top: 4px solid #ffffff;
  }
  .brows-resume .brows-resume-pic {
    margin: 20px auto;
  }
  .br-resume {
    margin-bottom: 10px;
  }
  .brows-resume .browse-resume-exp span {
    float: none;
  }
  .brows-resume .browse-resume-rate span {
    text-align: center;
  }
  /*------detail page design -----*/
  .detail-pannel-footer-btn a.footer-btn {
    margin-left: 0;
    float: left;
    margin-right: 10px;
    padding: 10px 30px;
  }
  .detail-status {
    position: relative;
    right: 0;
    top: 0;
    margin: 0 auto;
    display: table;
  }
  .detail-pannel-footer-btn.pull-right {
    float: left !important;
    width: 100%;
  }
  ul.detail-list li {
    line-height: 1.6;
    font-size: 15px;
  }
  h2.detail-title {
    font-size: 15px;
    padding: 10px 12px;
  }
  .full-detail .panel-body {
    padding: 0;
  }
  .ext-mrg.row.third-progress {
    padding: 0;
    margin: 0;
  }
  .ur-detail-wrap.top-lay {
    transform: translateY(-60px);
    padding: 1.5em 1em;
  }
  .ur-detail-box .ur-thumb {
    width: 100px;
    height: 100px;
    border-radius: 6px;
    border: 4px solid #e3e9ef;
    display: flex;
    align-items: center;
    margin-right: 15px;
    justify-content: center;
  }
  .ur-detail-box .ur-thumb img {
    max-width: 70px;
  }
  .ur-detail-box .ur-location {
    font-size: 13px;
  }
  /*------------Footer Design---------*/
  .footer-widget {
    padding: 0.5em 0em 1em 0em;
  }
  .footer-social {
    margin-bottom: 0;
  }
  .lg-menu ul {
    margin-top: 20px;
  }
  .lg-menu ul li {
    padding-left: 0;
    padding-right: 10px;
  }
  nav.navbar .navbar-brand {
    top: 4px;
  }
  /*---------------Brows job style---------------------*/
  .brows-job-list {
    text-align: center;
    padding-bottom: 30px;
  }
  .banner-caption {
    padding: 20px 0px;
  }
  .item-click article {
    padding-left: 15px;
    padding-right: 15px;
  }
  .brows-job-category .item-click article {
    padding-left: 0;
    padding-right: 0;
  }
  .row.extra-mrg {
    margin-left: 0;
    margin-right: 0;
  }
  .brows-job-list .brows-job-position .job-type {
    display: inline-table;
    width: auto;
  }
  .newjob-list-layout {
    display: block;
    padding: 20px 15px;
  }
  .newjob-list-layout .cll-wrap {
    display: flex;
    align-items: flex-end;
    width: 100%;
  }
  .newjob-list-layout .cll-thumb {
    display: flex;
    width: 60px;
    height: 60px;
    float: none;
    margin: 0;
    align-items: center;
    justify-content: center;
  }
  .newjob-list-layout .cll-thumb img {
    max-width: 100%;
  }
  .newjob-list-layout .cll-caption {
    flex: 1;
    padding-left: 1rem;
  }
  .newjob-list-layout h4 a {
    display: block;
    border: none;
    margin-bottom: 4px;
  }
  .newjob-list-layout .cll-caption h4 span.jb-status {
    margin: 0;
    display: inline-block;
    margin-top: 2px;
  }
  .newjob-list-layout .cll-right {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  /*----------Search Job----------------*/
  .job-types {
    text-align: left;
  }
  .sidebar-widgets {
    margin-right: 15px;
  }
  /*--------Advance search job-----*/
  article.advance-search-job {
    text-align: center;
  }
  .advance-search-caption {
    margin-left: 0;
  }
  .advance-search-img-box {
    max-width: 70px;
    float: none;
    margin: 0 auto;
  }
  .advance-detail-pr .row.bottom-mrg {
    margin-left: 0;
    margin-right: 0;
  }
  .deatil-tab-employ.tool-tab .tab-content {
    padding-left: 12px;
    padding-right: 12px;
  }
  .brows-resume > .row, .brows-company, .manage-resume-box, .mng-company, .brows-resume, .mng-resume {
    display: block;
    align-items: center;
  }
  .item-fl-box {
    display: block;
  }
  .brows-company .item-fl-box .brows-company-pic {
    margin-right: auto;
  }
  .item-fl-box .brows-job-company-img {
    margin: 12px auto;
  }
  .mng-resume .item-fl-box .mng-resume-pic {
    margin: 12px auto;
  }
  .brows-resume .item-fl-box .brows-resume-pic {
    margin: 12px auto;
  }
  .mng-company .item-fl-box .mng-company-pic {
    margin: 12px auto;
  }
  .inner-header-page .freelance-image {
    float: initial;
  }
  .header-details {
    margin-bottom: 25px;
  }
  .fs-container {
    float: none;
  }
  .half-map .fs-inner-container {
    width: 100%;
    min-height: 100vh;
    float: none;
  }
  .fs-left-map-box .map-container.fw-map {
    width: 100%;
    position: relative;
  }
  .map-container.fw-map #map-main {
    position: relative;
    height: 400px;
  }
  .home-map.fl-wrap {
    height: 400px;
  }
  .home-map .map-container.fw-map {
    float: none;
    height: 400px;
  }
  .fs-left-map-box {
    float: none;
  }
  .form-horizontal.p0-m .no-padd {
    padding: 0;
  }
  .form-horizontal.p0-m .form-control, .slide-banner .form-horizontal .btn {
    margin-bottom: 10px;
  }
  .slide-banner .form-horizontal.p0-m .input-group {
    width: 100%;
    display: flex;
  }
  .slide-banner .form-horizontal.p0-m .select2-container, .form-horizontal.p0-m .select2-container {
    margin-bottom: 10px;
  }
  .mmb-05 {
    margin-bottom: 5px;
  }
  .banner.home-5 .video-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    display: table;
    margin: 10px auto 10px auto;
    padding: 5px;
    position: relative;
  }
  .banner.home-5 .video-box a.btn.btn-video {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
  }
  .banner.home-5 .video-box a.btn.btn-video i {
    font-size: 19px;
    line-height: 1.6;
    text-align: center;
    color: #11b719;
  }
  /*------------ Candidates ------------*/
  .candidate-list-layout .cll-caption ul {
    margin-top: 2rem;
  }
  .candidate-list-layout .cll-caption h4 span {
    margin: 0;
    position: relative;
    display: block;
    border: none;
    margin-top: 5px;
    font-size: 11px;
    padding: 0;
  }
  /*------------ Popup ----------------*/
  .new-logwrap {
    padding: 50px 30px;
  }
}
@media screen and (max-width: 479px) {
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 20px;
  }
  h3 {
    font-size: 20px;
  }
  h4 {
    font-size: 15px;
  }
  /*------pagination-----*/
  .pagination > li > a, .pagination > li > span, .pagination > li > button {
    padding: 6px 12px;
  }
  .inner-header-title h1 {
    font-size: 30px;
    margin-bottom: 0em;
  }
  .mng-company h4 {
    font-size: 16px;
  }
  /*-----Manage Candidate------*/
  .manage-cndt .cndt-status {
    padding: 1px 23px;
  }
  /*------detail page design -----*/
  .detail-pannel-footer-btn a.footer-btn {
    margin-left: 0;
    float: left;
    margin-right: 10px;
    padding: 8px 18px;
  }
  ul.detail-footer-social li {
    display: inline-block;
    padding-right: 2px;
  }
  .advance-detail.detail-desc-caption ul li {
    font-size: 90%;
  }
  .ur-detail-wrap.top-lay {
    display: block;
  }
  .ur-detail-box {
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 768px) {
  .job-detail-statistic .statistic-item {
    width: 33%;
    float: left;
  }
  .flex-middle-sm {
    display: -webkit-flex;
    -webkit-align-items: center;
    display: flex;
    align-items: center;
  }
}
/*======================= Dashboard Design ====================*/
.dashboard-wrap {
  background: #f6f7f9;
  padding-bottom: 0;
}

.side-dashboard {
  background: #ffffff;
  padding: 2rem 0rem;
  min-height: 100vh;
}

.dashboard-avatar {
  width: 100%;
  padding: 2rem;
  text-align: center;
}

.dashboard-avatar-thumb {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: table;
  margin: 0 auto 10px;
  border: 5px solid #e9ecf3;
}

.dashboard-avatar-thumb img {
  border-radius: 50%;
  max-width: 110px;
}

.dashboard-avatar-text h4 {
  font-size: 18px;
  margin-bottom: 3px;
}

.dashboard-avatar-text span {
  font-size: 13px;
  margin-bottom: 3px;
}

.dashboard-body {
  padding: 2rem 2rem 2rem 0;
  background: #f6f7f9;
}

.dashboard-caption {
  background: #ffffff;
  border-radius: 2px;
  border: 1px solid #eef2fd;
}

.dashboard-caption-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 2rem;
  border-bottom: 1px solid #f3f5f9;
}

.dashboard-caption-wrap {
  padding: 2rem;
}

.dashboard-caption-header h4 {
  flex: 1;
  font-size: 18px;
  margin-bottom: 0;
}

.dashboard-caption-header h4 i {
  margin-right: 8px;
  color: #b0bad6;
  font-size: 20px;
  position: relative;
  top: 3px;
}

.dashboard-menu h4 {
  margin-top: 12px;
  margin-left: 17px;
}

.dashboard-menu ul {
  padding: 0;
  margin: 0;
}

.dashboard-menu ul li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dashboard-menu ul li a {
  color: #8894a9;
  width: 100%;
  display: inline-block;
  padding: 1.4rem 0 1.4rem 1.5rem;
  border-bottom: 1px solid #f3f5f9;
}

.dashboard-menu ul li:last-child a {
  border: none;
}

.dashboard-menu ul li a i {
  margin-right: 8px;
}

.dashboard-menu ul li.active a {
  background: rgba(17, 183, 25, 0.1);
  color: #11b719;
  border-color: rgba(17, 183, 25, 0.1);
}

/*--------- Overview Design --*/
.dashboard-stat {
  display: inline-block;
  padding: 0;
  height: 160px;
  background-color: #444;
  color: #fff;
  border-radius: 4px;
  width: 100%;
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
  transition: 0.3s;
  cursor: default;
}

.dashboard-stat-content {
  position: absolute;
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
}

.dashboard-stat-content h4 {
  font-size: 42px;
  font-weight: 600;
  padding: 0;
  margin: 0;
  color: #ffffff;
  letter-spacing: 1px;
}

.dashboard-stat-content span {
  font-size: 18px;
  margin-top: 4px;
  line-height: 1.6;
  font-weight: 300;
  display: inline-block;
}

.dashboard-stat-icon {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-40%);
  font-size: 80px;
  opacity: 0.2;
}

.dashboard-stat-icon {
  font-size: 65px;
}

.dashboard-stat.widget-1 {
  background: linear-gradient(to left, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.1));
  background-color: #1baf65;
}

.dashboard-stat.widget-2 {
  background: linear-gradient(to left, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.1));
  background-color: #f39f00;
}

.dashboard-stat.widget-3 {
  background: linear-gradient(to left, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.1));
  background-color: #002758;
}

.dashboard-stat.widget-4 {
  background: linear-gradient(to left, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.1));
  background-color: #ce024b;
}

/*---------- Dashboard: Gravity List ----------------*/
.dashboard-gravity-list {
  margin: 0px 0 30px;
  border: 1px solid #eaeaea;
  border-radius: 4px;
}

.dashboard-gravity-list h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  padding: 20px 30px;
  background-color: #fff;
  display: block;
  border-bottom: 1px solid #eaeaea;
  border-radius: 4px 4px 0 0;
}

.dashboard-gravity-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: #fff;
  border-radius: 0 0 4px 4px;
}

.dashboard-gravity-list ul li {
  padding: 23px 30px;
  border-bottom: 1px solid #eaeaea;
  transition: 0.3s;
  position: relative;
}

.dashboard-gravity-list ul li:last-child {
  border-bottom: none;
}

.list-box-listing {
  display: flex;
  padding: 5px 0;
  position: relative;
}

.list-box-listing-img {
  flex: 1;
  max-width: 150px;
  position: relative;
}

.list-box-listing-img a {
  width: 100%;
  height: 100%;
  display: inline-block;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.list-box-listing-img a:before {
  content: "";
  height: 100%;
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background-color: rgba(22, 22, 22, 0.2);
  border-radius: 4px;
  z-index: 11;
}

.list-box-listing-img a img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  border-radius: 4px;
}

.list-box-listing-content {
  flex: 1;
  padding-left: 25px;
}

.list-box-listing-content .inner {
  position: relative;
  top: 14px;
  vertical-align: top;
}

.list-box-listing-content .inner h3 {
  font-size: 18px;
  bottom: -2px;
  position: relative;
  font-weight: 500;
  margin: 0;
  line-height: 1.6;
}

.star-rating .ti-star {
  display: inline-block;
  margin: 0;
  padding: 0;
  color: #ff9500;
  float: left;
  margin-right: 4px;
  position: relative;
}

span.ti-star.empty {
  color: #b1b9c1;
}

.list-box-listing-content .inner span {
  font-size: 15px;
  font-weight: 300;
  display: inline-block;
}

.list-box-listing-content .inner .star-rating {
  margin: 5px 0 0;
  display: block;
}

.bookings .list-box-listing-img img {
  max-width: 100%;
}

.rating-counter {
  color: #909090;
  padding-left: 5px;
  display: inline-block;
  font-size: 15px;
}

.star-rating .rating-counter {
  top: -3px;
  position: relative;
  font-size: 14px;
}

.buttons-to-right, .dashboard-gravity-list .button.to-right {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translate3d(0, -49%, 0);
  -moz-transform: translate3d(0, -50%, 0);
  opacity: 0;
  transition: 0.4s;
  box-shadow: 0 0 10px 15px #fbfbfb;
}

.dashboard-gravity-list .button {
  padding: 8px 15px;
  line-height: 1.6;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin: 0;
}

.dashboard-gravity-list .button.gray {
  background-color: #e4e8ef;
  color: #636a7b;
}

.dashboard-gravity-list .button.gray:hover, .dashboard-gravity-list .button.gray:focus {
  background: #da0136;
  color: #ffffff;
}

.dashboard-gravity-list .button i {
  padding-right: 2px;
  position: relative;
  top: 1px;
}

.dashboard-gravity-list li:hover .buttons-to-right, .dashboard-gravity-list li:hover .button.to-right {
  opacity: 1;
}

.dashboard-gravity-list.with-icons ul li {
  padding-left: 87px;
  font-size: 14px;
}

.dashboard-gravity-list.with-icons ul li strong {
  color: #414b5a;
}

.dashboard-gravity-list ul li i.dash-icon-box {
  height: 38px;
  width: 38px;
  color: #7f8bab;
  text-align: center;
  line-height: 1.6;
  border-radius: 50%;
  transition: 0.3s;
  display: inline-block;
  background-color: #f4f5f7;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 30px;
}

.numerical-rating {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  text-align: center;
  line-height: 1.6;
  height: 26px;
  width: 44px;
  display: inline-block;
  position: relative;
  border-radius: 50px;
  letter-spacing: -0.5px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 15px 32px;
}

.dashboard-gravity-list .numerical-rating {
  margin: 0 3px;
}

.numerical-rating:before {
  content: attr(data-rating);
}

a.close-list-item {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  opacity: 0;
  padding: 4px;
  color: #ea2828;
  transition: 0.3s;
}

.dashboard-gravity-list.invoices li {
  padding: 20px 30px;
}

.dashboard-gravity-list ul li:hover a.close-list-item {
  opacity: 1;
}

.dashboard-gravity-list.invoices ul ul {
  line-height: 1.6;
  padding-bottom: 2px;
  color: #7c8796;
  padding: 0;
  margin: 0;
}

.dashboard-gravity-list ul ul li {
  padding: 0;
  border: none;
  transition: 0.3s;
  background-color: transparent;
  display: inline-block;
}

.dashboard-gravity-list.invoices ul ul li {
  padding: 0;
}

.dashboard-gravity-list.invoices ul ul li:after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 11px;
  background-color: #e0e0e0;
  position: relative;
  margin: 0 10px;
}

.dashboard-gravity-list.invoices ul ul li:last-child:after {
  display: none;
}

.numerical-rating.high {
  background-color: #1baf65;
}

.numerical-rating.mid {
  background-color: #ffc10a;
}

.numerical-rating.low {
  background-color: #db2929;
}

.unpaid {
  color: #d4222b;
}

.paid {
  color: #00ba74;
}

.dashboard-gravity-list ul ul {
  background-color: transparent;
}

.dashboard-gravity-list ul ul li {
  padding: 0;
  border: none;
  transition: 0.3s;
  background-color: transparent;
  display: inline-block;
}

.inner-booking-list ul li:after {
  content: "";
  display: inline-block;
  position: relative;
  margin: 0 10px;
  height: 12px;
  top: 1px;
  background-color: #ddd;
  width: 1px;
}

.inner-booking-list ul li.highlighted:after {
  display: none;
}

.inner-booking-list ul li.highlighted {
  padding: 2px 10px;
  line-height: 1.6;
  font-weight: 500;
  font-size: 14px;
  background-color: #f4f5f7 !important;
  color: #7e8b9a;
  border-radius: 50px;
  display: inline-block;
  border: none;
}

.pending-booking .inner-booking-list ul li.highlighted {
  background-color: rgba(49, 167, 255, 0.1) !important;
  color: #31a7ff;
}

.approved-booking .inner-booking-list ul li.highlighted {
  background-color: rgba(29, 183, 92, 0.1) !important;
  color: #1db75c;
}

.dashboard-gravity-list ul ul li:nth-last-child(2n+1) {
  background-color: transparent;
}

a.rate-review {
  border: 1px solid #e0e0e0;
  border-radius: 50px;
  font-size: 13px;
  color: #666;
  font-weight: 500;
  padding: 5px 20px;
  margin-top: 20px;
  display: inline-block;
  transition: 0.3s;
}

.dashboard-gravity-list a.rate-review {
  border: none;
  background-color: #eceef3;
  color: #636a7b;
  padding: 6px 18px;
}

a.rate-review i {
  padding-right: 3px;
}

.dashboard-gravity-list a.rate-review:hover {
  color: #ffffff;
  background: #e21f1f;
}

.comission-taken {
  border-radius: 3px;
  font-size: 14px;
  color: #ffffff;
  font-weight: 400;
  background: #333333;
  display: inline-block;
  padding: 6px 10px;
  float: right;
  position: relative;
  top: -3px;
}

#SendMessage .modal-header {
  padding: 12px 15px;
}

#SendMessage .modal-header.theme-bg h4.modal-title {
  color: #ffffff;
  font-size: 20px;
}

#SendMessage .modal-header.theme-bg .close {
  color: #fff;
  opacity: 1;
}

#SendMessage .modal-content {
  padding: 0;
}

#SendMessage .modal-body {
  position: relative;
  padding: 15px;
}

#SendMessage .modal-body label {
  font-weight: 400;
}

#SendMessage .form-control {
  height: 50px;
  border: 1px solid #dde6ef;
  margin-bottom: 10px;
  box-shadow: none;
  border-radius: 0;
  background: #fbfdff;
  font-size: 15px;
  color: #6b7c8a;
  font-weight: 400;
}

#SendMessage .form-control.big-height {
  height: 150px;
}

#SendMessage .modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e0ebf1;
  background: #eef5f9;
}

#SendMessage .btn {
  padding: 6px 14px;
  border-radius: 2px;
}

/*======================================================
 Dashboard Job Elements Start
======================================================*/
input.form-control.wide-width {
  width: auto;
}

ul.list {
  margin: 0;
  padding: 0;
}

/*------------- Manage Lists ---------------*/
.job-info.premium-job:before {
  content: "\f005";
  position: absolute;
  left: 10px;
  top: -10px;
  font-family: "FontAwesome";
  color: #FF9800;
}

.mysp-jobs-list ul {
  margin-bottom: 35px;
}

#themesListFilter > li, .mysp-jobs-list ul > li {
  list-style: none;
}

.manage-list-row {
  background: #ffffff;
  border: 1px solid #e9f0f3;
  border-radius: 4px;
  padding: 20px 0;
  margin-bottom: 15px;
  margin-left: 0;
  list-style: none;
  box-shadow: 0 3px 10px 0 rgba(62, 28, 131, 0.02);
  -webkit-box-shadow: 0 3px 10px 0 rgba(62, 28, 131, 0.02);
  transition: all 0.3s ease-in-out;
  -webkit-backface-visibility: hidden;
}

.manage-list-row:hover, .manage-list-row:focus {
  box-shadow: 0 3px 10px 0 rgba(62, 28, 131, 0.06);
  -webkit-box-shadow: 0 3px 10px 0 rgba(62, 28, 131, 0.06);
}

.mysp-sites-list .site-name, .manage-list-row .job-info {
  float: left;
  padding-left: 80px;
  position: relative;
}

.manage-list-row .job-info {
  padding-left: 25px;
}

.mysp-sites-list .site-options, .manage-list-row .job-buttons {
  float: right;
  margin-right: 25px;
  position: relative;
}

.manage-list-row .job-buttons {
  margin-top: 7px;
}

.manage-list-row .job-info .job-img {
  border-radius: 2px;
  float: left;
  margin-right: 25px;
  width: 60px;
}

.manage-list-row .job-info .job-img img {
  display: block;
  max-width: 70px;
}

.manage-list-row .job-details {
  display: inline-block;
  font-size: 16px;
}

.manage-list-row .job-info h3 {
  display: block;
  font-size: 18px;
  font-size: 1.8rem;
  margin: 0px 0 0;
  line-height: 1.6;
}

.manage-list-row .job-info h3 a:hover, .manage-list-row .job-info h3 a:focus {
  text-decoration: none;
}

.manage-list-row small {
  color: #546e7a;
  display: inline-block;
  line-height: 1.6;
  margin-right: 15px;
}

.manage-list-row small i {
  margin-right: 7px;
}

.button.button-medium.button-icon {
  height: 40px;
  line-height: 1.6;
  width: 43px;
}

.btn.manage-btn {
  margin: 0 2px;
  padding: 10px 15px;
  transition: all 0.3s ease-in-out;
}

a.btn.btn-gary.manage-btn {
  background: #f4f5f7;
  box-shadow: none;
}

a.btn.btn-blue.manage-btn {
  background: #2196f3;
  color: #ffffff;
}

a.btn.btn-success.manage-btn {
  background: #30ab4a;
  color: #ffffff;
}

a.btn.btn-shortlist.manage-btn {
  background: #353535;
  color: #ffffff;
}

a.btn.btn-shortlist.manage-btn:hover, a.btn.btn-shortlist.manage-btn:focus {
  background: #30ab4a;
  color: #ffffff;
}

a.btn.btn-cancel.manage-btn {
  background: #F44336;
  color: #ffffff;
}

.job-details .j-type {
  display: table;
  padding: 2px 8px;
  border-radius: 2px;
  font-size: 12px;
  color: #ffffff;
}

.dashboard-caption .job-details .j-type {
  margin-top: 4px;
  font-size: 13px;
}

.job-details .full-time {
  background: #4caf50;
}

.job-details .part-time {
  background: #ff9800;
}

.job-details .freelancer {
  background: #2196f3;
}

.job-details .internship {
  background: #e91e63;
}

.shortlisted-can {
  position: relative;
  height: 26px;
  display: inline-block;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  background-color: #30ab4a;
  text-align: center;
  font-weight: 500;
  border-radius: 4px;
  padding: 0 8px 0 0;
  margin: 0;
  padding-left: 34px;
  line-height: 1.6;
  text-transform: capitalize;
}

.shortlisted-can:before {
  content: "\e64c";
  font-family: "themify";
  font-size: 14px;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 4px 0px 0px 4px;
  line-height: 1.6;
  height: 26px;
  width: 26px;
  display: inline-block;
  background-color: #38b653;
}

.skill-tag {
  background-color: #eaedf3;
  border-radius: 0 2px 2px 0;
  color: #8492af;
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.6;
  margin: 2px 15px 2px 0px;
  padding: 3px 7px;
  position: relative;
  text-transform: uppercase;
}

.skill-tag:before {
  border-top: 10px solid transparent;
  border-left: 9px solid #eaedf3;
  border-bottom: 10px solid transparent;
  content: "";
  height: 0;
  position: absolute;
  top: 0;
  right: -8px;
  width: 0;
}

.skill-tag:after {
  background-color: #fff;
  border-radius: 50%;
  content: "";
  height: 4px;
  position: absolute;
  top: 8px;
  right: -2px;
  width: 4px;
}

.form-control.big-height {
  height: 150px;
}

.skill-show {
  font-size: 12px;
  font-weight: 500;
}

.dashboard-body .banner-caption .select2-container--default .select2-selection--single, .dashboard-body .select2-container--default .select2-selection--multiple {
  min-height: 50px;
  border: 1px solid #dde6ef !important;
}

.dashboard-body .select2-container--default .select2-selection--multiple .select2-selection__rendered {
  line-height: 1.6;
}

.dashboard-body .form-control:hover, .form-control:focus {
  box-shadow: none;
  outline: none;
}

.btn-savepreview, .btn-savepreview:hover, .btn-savepreview:focus {
  border: none;
  padding: 1.6rem 4rem;
  color: #ffffff;
  font-size: 17px;
  border-radius: 6px;
  background: #11a457;
  display: inline-block;
}

.btn-savepreview.small-btn, .btn-savepreview.small-btn:hover, .btn-savepreview.small-btn:focus {
  border: none;
  padding: 1rem 2.5rem;
  color: #ffffff;
  font-size: 15px;
  border-radius: 4px;
  background: #11a457;
  display: inline-block;
}

.btn-savepreview i {
  margin-right: 1rem;
}

.publish {
  font-size: 18px;
  color: #11b768;
}

.unpublish {
  font-size: 18px;
  color: #d41515;
}

.dashboard-body .table > thead > tr > th {
  border-bottom: 1px solid #eceff5;
}

.dashboard-body .table > tbody > tr > td, .dashboard-body .table > tbody > tr > th, .dashboard-body .table > tfoot > tr > td, .dashboard-body .table > tfoot > tr > th, .dashboard-body .table > thead > tr > td, .dashboard-body .table > thead > tr > th {
  padding: 16px 8px;
  line-height: 1.6;
  vertical-align: top;
  border-top: 1px solid #eceff5;
}

.dashboard-body .table tbody tr th a {
  color: #4683da;
}

.filt-width {
  min-width: 200px;
}

/*---------- Custom Upload Button -----------*/
.dashboard-body .input-group {
  width: 100%;
}

.custom-file {
  height: calc(2.8em + 0.75rem + 2px);
}

.input-group > .custom-file {
  display: flex;
  align-items: center;
  flex: 1 1 0%;
  min-width: 0;
  margin-bottom: 0;
}

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(2.8em + 0.75rem + 2px);
  margin: 0;
  opacity: 0;
}

.input-group > .custom-file:not(:first-child) .custom-file-label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(2.8em + 0.75rem + 3px);
  padding: 1.375rem 0.75rem;
  font-weight: 400;
  line-height: 1.6;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: calc(2.9em + 0.75rem);
  padding: 1.388rem 0.75rem;
  line-height: 1.6;
  color: #495057;
  content: "Browse";
  background-color: #e9ecef;
  border-left: inherit;
  border-radius: 0 0.25rem 0.25rem 0;
}

.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";
}

/*----common------------*/
.inverse-bg .app-content a.btn.call-btn.gps {
  color: #0084ff;
}

.inverse-bg .app-content a.btn.call-btn:hover,
.inverse-bg .app-content a.btn.call-btn:focus {
  color: #0084ff !important;
}

.app-content a.btn.call-btn {
  background: #0084ff;
  border: 1px solid #0084ff;
}

.app-content a.btn.call-btn:hover, .app-content a.btn.call-btn:focus {
  background: #0084ff;
  border: 1px solid #0084ff;
}

.client-testimonial .pic {
  border-bottom: 2px solid #0084ff;
}

.pr-header.active {
  background: #0084ff;
}

.flt-change-layout a.active {
  background: rgba(0, 132, 255, 0.1);
  color: #0084ff;
}

.theme-cl, .input-with-icon .theme-cl {
  color: #0084ff;
}

.theme-bg, .theme-bg:hover, .theme-bg:focus {
  background: #0084ff !important;
  border-color: #0084ff !important;
}

button.btn.submit-btn.ft-search {
  background: #0084ff;
  border-color: #0084ff;
  color: #ffffff;
  height: 60px;
}

.brows-resume.grid-style:hover .br-resume span, .brows-resume.grid-style:focus .br-resume span {
  background: #0084ff;
}

::-moz-selection {
  background: #0084ff;
  color: #fff;
}

::selection {
  background: #0084ff;
  color: #fff;
}

a {
  color: #272f46;
}

.ur-detail-wrap.create-kit, .ur-detail-wrap.top-lay {
  border-bottom: 3px solid #0084ff;
}

.detail-pannel-footer-btn a.footer-btn.choose-cover, .brows-resume .browse-resume-exp span,
.detail-pannel-footer-btn a.footer-btn.grn-btn, ul.trim-edu-list li:after {
  background: #0084ff;
}

.inner-header-page {
  border-bottom: 2px solid #0084ff;
}

.btn.btn-primary:hover, .btn.btn-primary:focus {
  border: 1px solid #0084ff;
  background: #0084ff;
}

.btn.btn-primary {
  border: 1px solid #0084ff;
  background: #0084ff;
}

.category-box .category-desc i {
  color: #0084ff;
}

a.btn.call-btn {
  color: #0084ff;
}

.pagination li:first-child a {
  background: #0084ff;
  border: 1px solid #0084ff;
}

.pagination > .active > button, .pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus, .pagination > li > a:hover, .pagination > li > a:focus, .pagination > li > button:hover, .pagination > li > button:focus {
  color: #fff;
  background-color: #0084ff;
  border-color: #0084ff;
}

.inner-header-title {
  border-bottom: 4px solid #0084ff;
}

.inner-header-title.blank {
  border-bottom: 4px solid #0084ff;
  background: #0084ff;
}

.action-btn .dropdown-menu > li > a:hover, .action-btn .dropdown-menu > li > a:focus {
  background: #0084ff;
  color: #ffffff;
}

/*-------- Navigation ----------*/
.navbar-default .navbar-nav > li > a:focus, .navbar-default .navbar-nav > li > a:hover {
  color: #0084ff !important;
}

/*----------Pages Styles------------*/
.main-heading h2 > span {
  color: #0084ff;
}

.main-heading span.heading-line {
  background: #0084ff;
}

.banner-caption .btn-primary:focus, .banner-caption .btn-primary:hover {
  background: #0084ff;
  border-color: #0084ff;
}

.banner-caption .btn-primary {
  background: #0084ff;
  border-color: #0084ff;
}

.job-feature:hover i, .job-feature.advance-fr:hover i {
  background: #0084ff;
}

.feature-icon i, .job-feature.advance-fr .feature-icon i {
  color: #0084ff;
  background: rgba(0, 132, 255, 0.07);
}

.work-process-icon span {
  color: #0084ff;
}

.work-process-caption h4:before {
  background: #0084ff;
}

.download-app:before {
  background: #0084ff;
}

.app-content a.btn.call-btn:hover {
  color: #0084ff;
}

.footer-form .btn-primary:hover, .footer-form .btn-primary:focus {
  border-color: #0084ff;
  background: #0084ff;
}

.simple-banner h1 span {
  color: #0084ff;
}

.bottom-search-form button.btn.btn-primary {
  background: #0084ff;
  border: 1px solid #0084ff;
}

a.video-btn i {
  background: #0084ff;
}

a.video-btn i {
  color: #0084ff;
  box-shadow: 0px 0px 20px 0px rgba(0, 132, 255, 0.4);
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 132, 255, 0.4);
  -moz-box-shadow: 0px 0px 20px 0px rgba(0, 132, 255, 0.4);
}

.home-three-banner h1 span {
  color: #0084ff;
}

.home-three-banner button.btn.btn-primary {
  background: #0084ff;
  border: 1px solid #0084ff;
}

.gr-dark {
  background: #0084ff;
}

.gr-dark a.btn.bat-call-to-act {
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.gr-dark .call-to-act-caption h3 {
  color: rgba(255, 255, 255, 0.7);
}

.home-plane-banner h1 span {
  color: #0084ff;
}

a.btn.btn-banner {
  background: #0084ff;
}

#accordion .panel-heading > .panel-title > a {
  background: #0084ff;
}

#accordion .panel-title > a.collapsed:hover {
  color: #0084ff;
}

#accordion3 .panel-heading > .panel-title > a {
  background: #0084ff;
}

#accordion .panel-title > a.collapsed {
  background: #e7ecea;
  color: #707c88;
}

#accordion3 .panel-title > a.collapsed {
  background: #35434e;
  color: #707c88;
}

.brows-company:hover {
  border-left: 4px solid #0084ff;
}

.brows-job-list:hover {
  border-left: 4px solid #0084ff;
}

.brows-resume:hover {
  border-left: 4px solid #0084ff;
}

.brows-resume span.brows-resume-designation {
  color: #0084ff;
}

.brows-resume .browse-resume-rate span i {
  color: #0084ff;
}

.detail-status span {
  color: #0084ff;
  background: rgba(0, 132, 255, 0.2);
}

.container.white-shadow {
  border-bottom: 3px solid #0084ff;
}

h2.detail-title {
  border-left: 3px solid #0084ff;
}

ul.detail-list li:before {
  color: #0084ff;
}

.contact-box i {
  color: #0084ff;
}

.inputfile + label {
  background: #0084ff;
}

.detail-pic {
  border: 1px solid #0084ff;
}

.full-detail .input-group-addon {
  background: #0084ff;
  border-color: #0084ff;
}

button.add-field {
  background: #0084ff;
}

.btn-login {
  background: #0084ff;
}

button.btn.btn-login {
  background: #0084ff;
  border: 1px solid #0084ff;
}

.login-screen span a, .signup-screen span a, .lost-ps-screen span a {
  color: #0084ff;
}

.search-filter button.btn.btn-default {
  background: #0084ff;
  border: 1px solid #0084ff;
}

.search-filter .dropdown-menu > li > a:hover, .search-filter .dropdown-menu > li > a:focus {
  background: #0084ff;
}

.manage-cndt .cndt-caption span {
  color: #0084ff;
}

.manage-cndt .cndt-profile-btn:hover, .manage-cndt .cndt-profile-btn:focus {
  background: #0084ff;
}

.mng-company:hover, .mng-company:focus {
  border-color: #0084ff;
}

.jn-employee:hover, .jn-employee:focus {
  border-color: #0084ff;
}

.employee-social li a:hover i, .employee-social li a:focus i {
  background: #0084ff;
}

.mng-resume h4 span.cand-designation {
  color: #0084ff;
}

.mng-resume:hover, .mng-resume:focus {
  border-color: #0084ff;
}

.manage-resume-box:hover, .manage-resume-box:focus {
  border-left: 3px solid #0084ff;
}

.pr-buy-button .pr-btn.active:hover, .pr-buy-button .pr-btn.active:focus {
  background: #0084ff;
  border-color: #0084ff;
}

.pr-buy-button .pr-btn {
  border: 1px solid #0084ff;
  color: #0084ff;
}

.login-panel label {
  color: #0084ff;
}

.nav.simple.nav-tabs li.active a {
  background: #0084ff;
}

.tab .nav-tabs li.active a, .tab .nav-tabs li.active a:hover {
  background: #0084ff;
}

.tab .nav-tabs li a {
  color: #0084ff;
}

.tab .nav-tabs li a:hover {
  background: #0084ff;
}

.pr-buy-button .pr-btn:hover, .pr-buy-button .pr-btn:focus, .pr-buy-button .pr-btn.hover {
  background: #0084ff;
  color: #fff;
}

.search-form button.btn.btn-default {
  background: #0084ff;
  border: 1px solid #0084ff;
}

ul.sidebar-list li a span {
  color: #0084ff;
}

.blog-post-date {
  background: #0084ff;
}

.post-meta span.author, .post-meta span.category a {
  color: #0084ff;
}

.post-info {
  color: #0084ff;
}

.blog-content h2:hover, .blog-content h2:focus {
  color: #0084ff;
}

.comments-form button.thm-btn.btn-comment {
  border: 2px solid #0084ff;
  background: #0084ff;
}

.comments-form button.thm-btn.btn-comment:hover, .comments-form button.thm-btn.btn-comment:focus {
  color: #0084ff;
  border: 2px solid #0084ff;
}

.rating.pull-right li i.active {
  color: #0084ff;
}

ul.list-inline.social li i:hover, ul.list-inline.social li i:focus {
  background: #0084ff;
}

.inner-header-title.advance-header-title h2 span, .inner-header-title.advance-header-title p span {
  color: #0084ff;
}

.right-sidebar h2.side-widget-title {
  background: #0084ff;
}

button.btn.btn-alrt {
  background: #0084ff;
}

.fileUpload span {
  background: #0084ff;
}

.modal .submit-btn:hover {
  background: #0084ff;
}

.breadcrumb > .active {
  color: #0084ff;
}

.custom-checkbox input[type=checkbox]:checked + label:before {
  border-color: #0084ff;
  background: #0084ff;
}

.bootstrap-select.btn-group .dropdown-menu li a:hover {
  background: #0084ff;
}

ul.detail-footer-social li a i:hover {
  background: #0084ff;
}

.error-page h2 span {
  color: #0084ff;
}

.error-page a.btn.btn-success.small-btn {
  background: #0084ff;
  border-color: #0084ff;
}

.deatil-tab-employ.tool-tab .nav.simple.nav-tabs li.active a {
  background: rgba(0, 132, 255, 0.15);
  color: #0084ff;
  border-color: #0084ff;
}

button.update-btn {
  background: #0084ff;
}

span.info-bar {
  border: 1px solid #0084ff;
  background: rgba(0, 132, 255, 0.15);
  color: #0084ff;
}

/*--------Responsive color Style-----------*/
@media only screen and (min-width: 768px) {
  /*------------Navigation------*/
  body nav.navbar.bootsnav ul.nav > li > a.signin {
    background: #0084ff !important;
  }
  li.left-br {
    border-left: 1px solid rgba(0, 132, 255, 0.4);
  }
}
@media only screen and (min-width: 1024px) {
  nav.navbar.bootsnav li.dropdown ul.dropdown-menu {
    border-color: #0084ff;
  }
}
.navbar-collapse.collapse {
  display: flex;
  height: auto;
  padding-bottom: 0;
  overflow: visible;
}

.navbar-nav {
  flex-direction: row;
  align-items: center;
}

nav.navbar.bootsnav .navbar-toggle {
  display: none;
}

nav.navbar.bootsnav ul.nav > li > a {
  padding: 8px 10px 22px 8px;
  font-weight: 400;
  font-size: 13px;
}

nav.navbar.bootsnav ul.nav > li {
  padding: 4px 12px;
}

.navbar .container {
  flex-wrap: nowrap;
}

.navbar-right, .navbar-left {
  margin-top: 0;
}

.navbar .form-control {
  margin-top: 0;
  margin-bottom: 0;
}

.navbar-right {
  margin-left: auto;
}

.navbar .dropdown-menu {
  position: absolute;
  left: 0;
}

.mce-content-body, .mce-content-body * {
  box-sizing: border-box;
}

.mce-content-body {
  margin: 0 0 0 0;
  padding: 0px 100px;
}

.mce-content-body > :first-child {
  margin-top: 0 !important;
}

.mce-content-body > :last-child {
  margin-bottom: 0 !important;
}

.mce-content-body blockquote {
  padding: 10px 20px;
  margin: 40px auto;
  font-size: 17.5px;
  border-left: 5px solid #eee;
  width: 90%;
}

.mce-content-body blockquote footer {
  display: block;
  font-size: 90%;
  line-height: 1.42857143;
  color: #777;
}

.mce-content-body blockquote footer .quotee,
.mce-content-body blockquote footer cite {
  font-size: 110%;
  font-style: italic;
}

.mce-content-body h1,
.mce-content-body h2,
.mce-content-body h3,
.mce-content-body h4,
.mce-content-body h5 {
  margin: 30px 0 10px;
  font-weight: 400;
}

.mce-content-body p {
  margin: 0 0 24px 0;
}

.mce-content-body ul {
  list-style-type: disc;
}

.mce-content-body ul,
.mce-content-body ol {
  width: 90%;
  margin: 40px auto;
  padding-left: 21px;
}

.mce-content-body li {
  float: none;
}

.mce-content-body table {
  width: 90%;
  border-collapse: collapse;
  margin: 40px auto;
}

.mce-content-body table tr td {
  border: 0px solid transparent;
  padding: 12px;
  border-bottom: 1px solid #dddddd;
}

.mce-content-body table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.mce-content-body img {
  display: block;
  width: 75%;
  padding: 0 10px;
  margin: 40px auto;
}

.mce-content-body img.direction-inline {
  display: inline-block;
  margin: 10px auto;
}

.mce-content-body img.direction-left {
  float: left;
  padding: 15px 15px 15px 0px;
  margin: auto auto;
}

.mce-content-body img.direction-right {
  float: right;
  padding: 15px 0px 15px 15px;
  margin: auto auto;
}

.mce-content-body img.width-100 {
  width: 100%;
}

.mce-content-body img.width-75 {
  width: 75%;
}

.mce-content-body img.width-50 {
  width: 50%;
}

.mce-content-body img.width-33 {
  width: 33.33333333%;
}

.mce-content-body img.width-25 {
  width: 25%;
}

.mce-content-body .embed-responsive {
  position: relative;
  display: block;
  width: 75%;
  margin: 40px auto;
  padding: 0;
  height: auto;
  overflow: hidden;
}

.mce-content-body .embed-responsive::before {
  display: block;
  content: "";
  padding-top: 56.25%;
}

.mce-content-body .embed-responsive iframe {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.mce-content-body .defaultContent {
  box-sizing: border-box;
  border: 1px solid rgb(185, 185, 185);
  background-color: rgb(220, 220, 220);
  padding: 2px;
  width: 100%;
  display: block;
  margin: 15px auto;
}

.mce-content-body .defaultContent:before {
  content: "Standaard Pagina Content";
  color: #000;
  font-weight: bold;
  display: block;
  width: 100%;
}

.mce-content-body .defaultContent:after {
  content: "Op deze locatie komt de standaard vooraf geprogrammeerde content van de pagina te staan. Let op: niet alle pagina's hebben vooraf geprogrammeerde content.";
  width: 100%;
  color: #000;
  display: block;
}

.full-width-mce .mce-content-body {
  padding-left: 0px;
  padding-right: 0px;
}

.check-form-group {
  margin-bottom: 30px;
}

.password-forgot-link {
  margin-top: 11px;
  display: flex;
}

.visual-checkbox {
  display: flex !important;
  position: relative !important;
  align-items: center !important;
  flex-grow: 0 !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  text-transform: none !important;
  font-size: 15px !important;
  margin-bottom: 0 !important;
}

.visual-checkbox input {
  display: none;
}

.visual-checkbox .checker {
  width: 20px;
  height: 20px;
  background-color: white;
  border: 1px solid grey;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.visual-checkbox .checker:after {
  content: "\f00c";
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 14px;
  display: none;
  color: white;
}

.visual-checkbox input:checked + .checker {
  background-color: #0084ff;
}

.visual-checkbox input:checked + .checker:after {
  display: inline-flex;
}

.auth-choice {
  margin-bottom: 50px;
  display: flex;
  width: 100%;
  justify-content: center;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  background-color: #0084ff;
}

.grey-bg-section {
  padding: 60px 0;
  background-color: #fafafa;
}

.new-logwrap {
  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
}

.side-dashboard {
  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
  padding: 0;
  min-height: 0;
}

.lg-visible-btn {
  margin-bottom: 10px;
}

.invoice-download {
  background-color: #eb1000;
  border: 1px solid #c1170a;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 9px;
  font-size: 17px;
  border-radius: 3px;
}

.dashboard-menu h4:first-child {
  margin-top: 0;
}

.dashboard-avatar-text h4 {
  font-size: 22px;
  margin-top: 5px;
}

.pagination {
  justify-content: center;
}

.table th, .table td {
  vertical-align: middle;
}

nav.navbar .navbar-brand {
  padding: 0 !important;
  margin: 0 50px 0 0 !important;
}

nav.navbar .navbar-brand img.logo {
  width: 75px;
}

.dashboard-menu ul li.active a {
  background: rgba(0, 132, 255, 0.05);
  color: #0084ff;
  border-color: rgba(0, 132, 255, 0.1);
}

.dashboard-menu h4 {
  margin-top: 32px;
  margin-left: 25px;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  color: #68707b;
}

.table .btn {
  padding: 7px 14px;
}

.form-block h3 {
  margin-bottom: 1.5rem;
}

.form-block {
  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  padding: 50px;
  border-radius: 5px;
}

.form-block + .form-block {
  margin-top: 40px;
}

.inner-header-title {
  background-position: center calc(50% + 30px);
}

.form-submitter {
  margin-top: 50px;
}

label {
  font-size: 14px;
  font-weight: 700;
}

.smaller-input-with-icon {
  position: relative;
}

.smaller-input-with-icon textarea {
  padding-top: 12px;
  padding-bottom: 12px;
}

.smaller-input-with-icon textarea,
.smaller-input-with-icon select,
.smaller-input-with-icon input {
  padding-left: 54px;
}

.smaller-input-with-icon i {
  position: absolute;
  top: 18px;
  left: 20px;
  z-index: 1;
}

.form-section-fields {
  padding-left: 20px;
}

.form-section + .form-section {
  margin-top: 50px;
}

.type-choice {
  display: flex;
  margin: 0 30px;
  background-color: #fff;
  padding: 30px;
  width: 33.3333%;
  flex-grow: 0;
  flex-shrink: 0;
  text-align: center;
  flex-wrap: wrap;
}

.type-choice h2,
.type-choice p {
  width: 100%;
}

.type-choice .btn {
  align-self: flex-end;
}

#popup .message {
  display: flex;
  align-items: center;
}

#popup .ti-check {
  width: 70px;
  height: 70px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #15be15;
  color: #15be15;
  font-size: 30px;
  border-radius: 50px;
  margin-right: 20px;
  flex-shrink: 0;
  flex-grow: 0;
}

#popup .modal-body {
  padding: 2rem 3rem;
}

#popup .text {
  font-size: 20px;
  font-weight: bolder;
  color: #555;
}

#popup .modal-content {
  padding: 0;
}

.interval-switcher {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}

.nav-pills .nav-link {
  border-radius: 50px;
}

.nav-link {
  padding: 12px 32px;
  font-size: 17px;
}

.pr-table.selected {
  margin-top: 0;
}

.btn:disabled {
  cursor: not-allowed;
}

.alert-light {
  border-color: #dadada;
}

.plan-error {
  margin-bottom: 45px;
}

.plan-error h3, .plan-error p {
  color: #856404;
}

.two-cols-extra-space {
  align-items: center;
}

.two-cols-extra-space .col {
  flex: 0 0 50%;
}

.two-cols-extra-space .col:first-child {
  padding-right: 35px;
}

.two-cols-extra-space .col:last-child {
  padding-left: 35px;
}

.selected-plan .plan-error h3 {
  font-size: 22px;
}

.yearly-explainer {
  margin-bottom: 10px;
}

.pr-features ul li:before {
  content: "\f00c";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 5px;
  color: #252d40;
}

.agreement-block {
  background: #fff;
  padding: 30px;
  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
}

.agreement-block h1 {
  font-size: 22px;
  margin-bottom: 0;
}

.pr-price .free-h3-explainer {
  margin-top: 24px;
  margin-bottom: 17px;
}

.pr-trial {
  background: #252d40;
  display: inline-block;
  width: 100%;
  border-radius: 6px;
  color: white;
  font-weight: bolder;
  font-size: 16px;
}

.pr-table {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-top: 0;
}

.pr-buy-button {
  margin-top: auto;
}

.payment-checking-indicator .spinner-grow {
  width: 5rem;
  height: 5rem;
}

.payment-checking-indicator {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 40px;
  margin: 0 auto;
  max-width: 500px;
  border-radius: 15px;
  border: 1px solid #e3e3e3;
}

.payment-checking-indicator .main-message {
  flex-grow: 1;
  width: 100%;
  align-items: center;
  display: flex;
}

#unsure-pending-alert {
  margin-top: 30px;
  margin-bottom: 10px;
}

#unsure-pending-alert .unsure-heading {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 4px;
}

.indicator-text {
  margin-left: 30px;
  font-size: 20px;
  font-weight: bolder;
}

.s-custom-checkbox {
  display: flex;
  align-items: center;
  font-weight: 400;
  width: 100%;
  padding: 3px 0;
}

.s-custom-checkbox input {
  display: none;
}

.s-custom-checkbox .visual-checkmark {
  width: 20px;
  height: 20px;
  border-radius: 3px;
  border: 1px solid #dde6ef;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.s-custom-checkbox input:checked + .visual-checkmark {
  background-color: #0084ff;
  border-color: #0084ff;
}

.s-custom-checkbox input:checked + .visual-checkmark:after {
  content: "";
  width: 6px;
  margin-top: -3px;
  height: 10px;
  border: solid #ffffff;
  border-width: 0 3px 3px 0;
  transform: inherit;
  z-index: 3;
  transform: rotateZ(45deg);
}

.s-custom-radio {
  display: flex;
  align-items: center;
  font-weight: 400;
  width: 100%;
  padding: 12px 0;
}

.container-detail-box {
  padding: 20px 40px 40px 40px;
}

li.dots {
  display: inline-flex;
  align-items: flex-end;
  margin-left: 10px;
  margin-right: 10px;
  padding-bottom: 2px;
}

.s-custom-radio input {
  display: none;
}

.s-custom-radio .visual-checkmark {
  width: 23px;
  height: 23px;
  border-radius: 50px;
  border: 1px solid #dde6ef;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.s-custom-radio input:checked + .visual-checkmark {
  background-color: #0084ff;
  border-color: #0084ff;
}

.s-custom-radio input:checked + .visual-checkmark:after {
  content: "";
  width: 11px;
  background-color: white;
  height: 11px;
  border-radius: 50px;
  transform: inherit;
  z-index: 3;
}

ul.follow-links li, ul.advance-list li {
  display: flex;
  align-items: center;
  padding: 13px 0 11px 0;
}

.cloneable {
  display: none !important;
}

.d-none-unimp {
  display: none;
}

.inner-header-page .freelance-image {
  width: 140px;
  height: 140px;
  flex-grow: 0;
  flex-shrink: 0;
  padding: 15px;
}

.inner-header-page .freelance-image img {
  margin-top: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  -o-object-fit: contain;
     object-fit: contain;
}

.filtered-index {
  position: relative;
}

.filtered-index.loading {
  opacity: 0.5;
}

.loader {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  align-items: flex-start;
  padding-top: 120px;
  justify-content: center;
}

.filtered-index.loading .loader {
  display: flex;
}

.edit-button,
.create-button {
  margin-bottom: 29px;
}

.zzp-image {
  position: relative;
  border-radius: 5px;
  border: 1px solid #dde6ef;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.zzp-image .zzp-image-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  transition: padding-bottom 0.2s ease-in-out;
}

.zzp-image .zzp-image-wrapper img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}

.zzp-image [type=hidden][value=delete] + .zzp-image-wrapper {
  padding-bottom: 49px;
}

.zzp-image [type=hidden][value=delete] + .zzp-image-wrapper img {
  opacity: 0;
}

.dropzone {
  border-color: #dde6ef;
}

.dropzone .dz-preview {
  margin: 4px;
  border: 1px solid #dde6ef;
  border-radius: 5px;
  overflow: hidden;
}

.dropzone .dz-preview .dz-image {
  border-radius: 0;
}

.dropzone .remove-button i {
  cursor: pointer;
}

.zzp-image .image-deleter,
.dropzone .remove-button {
  position: absolute;
  z-index: 25;
  top: 8px;
  right: 5px;
  border: 0px solid transparent;
  background-color: transparent;
  outline: none !important;
  color: darkred;
  font-size: 20px;
  background-color: White;
  border-radius: 50px;
  height: 34px;
  width: 34px;
  cursor: pointer;
  padding-top: 2px;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
}

.dropzone .dz-message {
  margin: 3rem 0 !important;
}

.form-control[type=file] {
  padding-top: 10px;
}

.label-w-button {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}

.label-w-button label {
  margin: 0 8px 0 0;
}

.h3-w-button {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

td.actions {
  width: 200px;
}

td.actions > form {
  width: auto;
}

td.actions > form,
td.actions > a,
td.actions > button,
td.actions > form > button[type=submit] {
  margin-right: 10px;
  width: 45px;
}

.h3-w-button h3 {
  margin: 0;
}

.h3-w-button .btn {
  margin-left: auto;
}

form.inline {
  width: auto;
  display: inline-flex;
}

.confirm-delete-modal .modal-content {
  padding: 0;
}

.confirm-delete-modal .modal-body {
  padding: 4rem 3rem;
}

.confirm-delete-modal .modal-title {
  text-align: center;
}

.confirm-delete-modal .actions {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.confirm-delete-modal .actions button {
  margin-left: 10px;
  margin-right: 10px;
}

.top-candidate-box {
  display: block;
}

.form-control {
  margin-bottom: 0;
}

.form-group {
  margin-bottom: 26px;
}

.cmb-30 {
  margin-bottom: 30px;
}

.top-candidate-box-extra ul {
  margin-top: 0px;
}

.top-candidate-box-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.top-candidate-box-extra p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  -webkit-box-orient: vertical;
  line-height: 1.6rem;
  max-height: 3.2rem;
  color: #667488 !important;
}

.ur-detail-wrap.top-lay {
  transform: none;
  margin-top: 65px;
  margin-bottom: 30px;
}

.ur-title {
  font-size: 22px;
  margin-bottom: 5px;
}

.top-candidate-box-thumb {
  margin-bottom: 30px;
  width: 150px;
  height: 150px;
  padding: 15px;
  margin: 0 auto 25px auto;
  border: 4px solid #e3e9ef;
  box-shadow: none;
  -webkit-box-shadow: none;
}

.ur-thumb {
  margin-right: 25px;
}

.ur-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.tpc-status > span {
  display: none;
}

.d-inline {
  display: inline;
}

.candidate-col {
  margin-bottom: 30px;
}

.top-candidate-wrap {
  margin-bottom: 0;
  height: 100%;
  display: block;
}

.info-pill {
  display: inline-flex;
  padding: 4px 12px;
  background-color: #f6f7f9;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.2px;
  border: 1px solid #eaeff5;
  color: #667488 !important;
}

.ur-detail-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.validation-errors {
  margin-top: 10px;
  margin-bottom: 30px;
  padding: 1.2rem 1.6rem;
}

.validation-errors > div {
  font-weight: bolder;
  margin-bottom: 10px;
}

.validation-errors > ul {
  margin-bottom: 0;
}

.info-get {
  max-width: 700px;
  margin: 60px auto;
}

.info-piece {
  font-weight: 500;
  font-size: 17px;
}

.btw-explainer {
  margin-top: -15px;
  margin-bottom: 20px;
}

.job.stock-facts li {
  flex: 0 0 14.28571428%;
}

.footer-bottom .copyright {
  font-weight: 400;
}

.footer-bottom .copyright b {
  color: #fff;
  font-weight: bold;
}

img.img-footer {
  max-width: 100px;
  margin-bottom: 1rem;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
}

.banner h1 {
  margin-bottom: 3rem;
}

.radio-ajax.hide {
  opacity: 0.3;
}

.two-line-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  -webkit-box-orient: vertical;
  line-height: 1.6rem;
  max-height: 3.2rem;
}

.job-instructor-layout {
  margin-top: 0;
  margin-bottom: 20px;
  display: flex;
  padding: 20px;
  flex-wrap: wrap;
  border: 1px solid #dde6ef !important;
  box-shadow: none !important;
}

.job-instructor-layout .brows-job-type span {
  position: relative;
  top: auto;
  right: auto;
  border-radius: 15px;
}

.brows-job-type {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 15px;
}

.instructor-scount {
  text-align: center;
}

.job-instructor-layout .c-counting {
  display: inline-block;
  padding: 4px 14px;
  background: #f1f4fb;
  border-radius: 50px;
  color: #8b91a0;
  font-size: 14px;
}

.job-instructor-footer {
  padding: 0;
  margin-top: 20px;
}

.job-instructor-content {
  padding: 0;
}

a.video-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

a.video-btn i {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 6px;
  color: #fff;
}

.video-player .modal-dialog {
  max-width: 1001px;
}

.video-player .modal-content {
  padding: 0;
}

.video-player .modal-body {
  padding: 0;
}

.video-player button.close {
  right: -30px;
  color: white;
  top: -10px;
}

span.process-img {
  display: flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border: 2px solid #0084ff;
  border-radius: 70px;
  margin: 0 10px 0 0;
}

span.process-img i {
  color: #0084ff;
  font-size: 18px;
}

.working-process {
  margin-top: 20px;
  text-align: left;
}

.working-process h4 {
  margin: 9px 0;
}

.working-process p {
  padding: 2px 0 0 0;
}

.style-2 .top-candidate-box-thumb {
  padding: 0;
}

.style-2 .top-candidate-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  heighT: 100%;
}

.top-candidate-box-extra {
  width: 100%;
}

.btn.btn-candidate-two {
  align-self: flex-end;
}

.start-btns {
  display: flex;
  justify-content: center;
}

.start-btns .btn {
  widtH: auto;
  margin: 0 20px;
}

.zzp-portfolio-image {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  margin-bottom: 20px;
  border: 1px solid #dde6ef;
  border-radius: 5px;
  overflow: hidden;
}

.zzp-portfolio-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.full-detail-description h3 {
  padding-left: 15px;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 4px;
}

.certs-list span {
  font-weight: 600;
  color: #3a3a3a;
  min-width: 100px;
  display: inline-block;
}

.random-pill {
  border: 1px solid #cad0d6;
  display: inline-flex;
  padding: 4px 16px;
  border-radius: 35px;
  margin-right: 8px;
}

.pr-price h3 {
  font-size: 3.6em;
}

.free-indicator {
  font-size: 40px;
  text-align: center;
  width: 100%;
  line-height: 1;
  color: #232323;
  letter-spacing: 1.5px;
  color: #0078e8;
}

nav.navbar.bootsnav {
  background-color: #ffffff;
  border-bottom: 1px solid #ffffff;
}

nav.navbar.bootsnav ul.nav > li > a {
  color: #657582;
}

#mobile-toggle {
  display: none;
  margin-left: auto;
  border: 0px solid transparent !important;
  outline: none !important;
  background-color: transparent !important;
}

#mobile-toggle > span {
  display: block;
  height: 3px;
  width: 40px;
  background-color: #000;
}

#mobile-toggle > span + span {
  margin-top: 7px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  line-height: 1.3em;
  padding: 12px 16px 12px 20px;
  border-radius: 0;
  border: 0;
  border-radius: 5px;
  font-weight: 400;
  box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.2);
  transition: 0.1s ease-in-out;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.33);
  justify-content: center;
}

.btn:after {
  display: inline-flex;
  font-family: "themify";
  font-weight: 600;
  content: "\e649";
  font-size: 100%;
  margin-left: 14px;
  margin-bottom: -1px;
}

.btn-xtr {
  font-size: 20px;
  font-weight: 600;
  padding-top: 16px;
  padding-bottom: 16px;
}

.private-home-banner {
  display: flex;
  align-items: center;
}

.private-home-banner .main-left {
  flex-grow: 1;
  margin-right: 50px;
  text-align: left;
}

.private-home-banner h1 {
  font-size: 66px;
  line-height: 1.4;
}

.private-home-banner .search-btn {
  width: 100%;
}

.private-home-banner .secondary-right {
  flex-shrink: 0;
  padding-top: 30px;
}

.private-home-banner .hero-search-content {
  padding: 15px;
}

.private-home-banner h2 {
  font-size: 28px;
  margin-left: 10px;
  margin-right: 10px;
}

.btn-call-to-act {
  text-shadow: none;
}

.btn-xs {
  font-weight: bolder;
  font-size: 11px !important;
  letter-spacing: 0.8px;
  padding: 2px 6px;
  text-transform: uppercase;
}

.btn.fa-inside:after,
.btn-xs:after {
  display: none;
}

td.actions form {
  position: relative;
  top: 2px;
  height: 34px;
}

.btn-sec {
  color: #444;
}

.create-btn-wrapper-mobile {
  display: none;
}

.create-btn-wrapper-desktop {
  border: 1px solid #dde6ef !important;
  background: #ffffff;
  padding: 22px 2em 26px 2em;
  margin-bottom: 30px;
}

.create-btn-wrapper-desktop h3 {
  font-size: 22px;
}

#chat-list {
  height: 100%;
  display: flex;
  flex-direction: column;
}

#chat-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

#chat-list .chat-item a {
  padding: 25px;
}

#chat-list .chat-item {
  position: relative;
}

#chat-list .chat-item .chat-info {
  color: #ffffff;
}

#chat-list .chat-item .chat-info .name {
  font-weight: bold;
  font-size: 16px;
}

#chat-list .chat-item .chat-info .last-message {
  font-size: 14px;
}

#chat-list .chat-item .person-image img {
  border-radius: 50%;
  margin-right: 15px;
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}

#chat-list .chat-item.has-unread:before {
  display: block;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: orange;
  position: absolute;
  top: 20px;
  left: 20px;
}

#chat-messages {
  display: flex;
  flex-direction: column;
  padding: 15px;
  flex-grow: 1;
  overflow-y: auto;
}

#chat-messages .chat-message {
  background-color: #fafafa;
  padding: 5px 10px;
  border-radius: 5px;
  margin-top: 25px;
  width: 80%;
}

#chat-messages .chat-message:first-child {
  margin-top: 0;
}

#chat-messages .chat-message.from-me {
  background-color: rgb(238, 239, 246);
  align-self: end;
}

#chat-messages .chat-message .chat-message-name {
  font-weight: bold;
}

#chat-messages .chat-message .chat-footer {
  display: flex;
  font-size: 12px;
  justify-content: flex-end;
}

#chat-messages .chat-message .chat-footer svg {
  width: 22px;
  height: 22px;
  margin-left: 10px;
  margin-top: -2px;
}

#chat-messages .chat-message .chat-footer .chat-message-read svg {
  color: green;
}

#chat-window {
  position: relative;
  margin-top: 30px;
  margin-bottom: 30px;
  background-color: white;
  position: relative;
}

.mobile-backlayer {
  display: none;
}

.right-chat-window {
  display: flex;
  flex-direction: column;
  max-height: 80vh;
  min-height: 500px;
}

#chat-send {
  flex-grow: 0;
  flex-shrink: 0;
}

.sidebar-box-new {
  padding: 22px 2em 26px 2em;
}

.dropzone .dz-preview .dz-image img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.prior-upload + .dz-message {
  display: none;
}

.ove-detail-list h5 {
  font-size: 1rem;
}

.auth-top-choice {
  display: flex;
  padding-bottom: 5px;
  margin-bottom: 45px;
  border-bottom: 1px solid #eee;
}

.auth-top-choice .nav-link {
  padding: 0;
  padding-top: 15px;
  margin-left: auto;
  color: #0084ff;
  text-decoration: underline;
}

.social-devider .circle {
  line-height: 2.2;
}

.type-choice {
  width: 100%;
  flex-grow: unset;
  flex-shrink: unset;
  margin-left: 0;
}

.btn {
  font-size: 16px;
}

.italian-search.hero-search-radius .btn.search-btn {
  height: auto;
}

.banner-caption-new .italian-search.hero-search-radius .btn.search-btn {
  height: 62px;
}

.private-home-banner .search-btn {
  margin-top: 20px;
}

nav.navbar.bootsnav ul.nav > li {
  padding: 6px 8px;
}

body nav.navbar.bootsnav ul.nav > li > a.signin {
  padding: 8px 15px;
}

.c-br {
  border-right: 1px solid rgba(0, 132, 255, 0.4);
}

nav.navbar.bootsnav ul.nav > li > a i.ti-comment {
  font-size: 18px;
  position: relative;
  top: 2px;
}

#chat-input {
  resize: none;
  flex-grow: 1;
  border: 0px solid transparent;
  margin-right: -1px;
  padding: 10px;
}

#chat-send {
  border-top: 2px solid #eeeff6;
}

#send-submit {
  flex-shrink: 0;
  flex-grow: 0;
}

h2.choice-type {
  font-size: 44px;
  margin-bottom: 40px;
  text-align: center;
}

#mobile-contacts {
  display: none;
}

.pill {
  display: inline-block;
  padding: 5px 15px;
  color: #fff;
  border-radius: 50px;
  margin-left: 6px;
}

.tfa-status-indicator {
  margin-bottom: 30px;
}

.form-text {
  margin-top: -6px;
  margin-bottom: 10px;
}

.tfa-data {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.recovery-codes {
  flex-grow: 1;
  margin-left: 30px;
  padding: 15px;
  background-color: #f7f7f7;
  border: 1px solid #e7eaef;
  border-radius: 5px;
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

.confirm-password-warning {
  margin-bottom: 30px;
}

.stars-input {
  margin-bottom: 30px;
}

.stars-input-hover {
  display: flex;
  max-width: 160px;
  justify-content: space-between;
}

.stars-input-hover .fa {
  font-size: 30px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff9b20;
}

.review-listing {
  border: 2px solid #e3e9ef;
  border-radius: 5px;
  padding: 20px 20px 15px 20px;
  margin-bottom: 20px;
}

.reviewer {
  display: flex;
  align-items: center;
}

.reviewer img {
  width: 40px;
  height: 40px;
  border: 2px solid #e3e9ef;
  border-radius: 3px;
  -o-object-fit: contain;
     object-fit: contain;
}

.reviewer span {
  margin-left: 12px;
  font-weight: 600;
}

.review-score .fa {
  color: #ff9b20;
}

.review-listing .review-score {
  margin-left: auto;
  font-size: 20px;
}

.review-text:not(:empty) {
  margin-top: 11px;
}

.review-listing form {
  margin-top: 20px;
}

.btn-secondary {
  color: #000000;
  background-color: #ffffff;
  border-color: #eaeff5;
  text-shadow: none;
}

.alert-info {
  color: #08424c;
  background-color: #e2f4f7;
  border-color: #bee0e5;
}

.instructor-scount {
  font-size: 15px;
}

.autocomplete .dropdown-menu {
  left: 0;
}

.active-tags {
  margin-top: 6px;
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
}

.tag-checkbox {
  margin-right: 4px;
}

.tag-checkbox input {
  display: none;
}

.tag-checkbox:last-child {
  margin-right: 0px;
}

.tag-checkbox.duplicateable {
  display: none;
}

.visual-tag {
  display: inline-flex;
  align-items: center;
  padding: 2px 2px 2px 8px;
  background-color: #f6f7f9;
  font-size: 13px;
  border: 1px solid #dde6ef;
  margin-right: 4px;
  font-weight: 600;
  white-space: nowrap;
  margin-bottom: 6px;
}

.remove-tag {
  outline: none !important;
  border: 0px solid transparent;
  background-color: transparent;
  color: #910101;
  font-size: 20px;
  padding-bottom: 4px;
  height: auto;
  width: auto;
  line-height: 0;
}

.menu-spaceholder {
  width: 100%;
  height: 50px;
}

.btn-subtle {
  outline: none !important;
  border: 0px solid transparent;
  line-height: 1;
  margin: 0;
  display: inline-flex;
  align-items: center;
  padding: 0;
  font-weight: 600;
  background-color: transparent;
}

.btn-subtle .fa {
  margin-right: 5px;
}

#show-mobile-filters {
  margin-bottom: 20px;
}

.create-button-subtle {
  margin-bottom: 20px;
  display: flex;
}

.create-button-subtle .btn-subtle {
  margin-left: auto;
}

#show-mobile-filters {
  display: none;
}

.mobile-close-button-wrapper {
  display: none;
  flex-shrink: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: 1px solid #dde6ef;
}

.phone-filters-heading {
  display: none;
  margin-bottom: 20px;
  padding-left: 13px;
}

.no-results {
  margin-top: 15px;
}

#chat-wrapper {
  padding-top: 94px;
  height: 100vh;
  padding-bottom: 10px;
}

.options-explainer {
  margin-bottom: -15px;
  margin-top: -3px;
}

#chat-window {
  height: 100%;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
  overflow: hidden;
  border: 2px solid #eeeff6;
}

#chat-list {
  width: 350px;
  flex-shrink: 0;
  background-color: white;
}

.active-chat {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

#chat-list .chat-item .chat-info {
  color: #333;
}

body.private-handyman-chat {
  background: #fafafa;
}

.chats-switcher {
  border-bottom: 2px solid #eeeff6;
  background-color: #fff;
  display: flex;
  flex-shrink: 0;
}

.chats-switcher button {
  border: 0px solid transparent;
  background-color: #fff;
  outline: none !important;
  width: 50%;
  margin: 0;
  padding: 18px 0;
  font-weight: 600;
}

#chat-list {
  border-right: 2px solid #eeeff6;
}

.chats-switcher button:hover,
.chats-switcher button:active,
.chats-switcher button:focus,
.chats-switcher button.active {
  background-color: rgba(0, 0, 0, 0.02);
}

.chats-switcher button:first-child {
  border-right: 1px solid #eeeff6;
}

.chats-switcher button:last-child {
  border-left: 1px solid #eeeff6;
}

.chat-item {
  border-bottom: 2px solid #eeeff6;
  background-color: #fff;
}

.chat-item:hover,
.chat-item:active,
.chat-item:focus,
.chat-item.current-chat {
  background-color: rgba(0, 0, 0, 0.02);
}

.last-message {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: 44px;
  overflow: hidden;
}

.btn-round-arrow {
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
}

.btn-round-arrow:after {
  margin-left: 0;
  margin-right: 1px;
}

.chats-switcher,
#whomimchattingwith {
  height: 62px;
}

#whomimchattingwith {
  flex-shrink: 0;
  flex-grow: 0;
  padding: 0 15px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid #eeeff6;
}

#whomimchattingwith .person-wrapper {
  display: flex;
  align-items: center;
}

#whomimchattingwith img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

#whomimchattingwith .name {
  font-weight: bold;
}

.mobile-contacts-open {
  padding: 10px;
  padding-right: 15px;
  margin-right: 15px;
  border-right: 2px solid #eeeff6;
  display: none;
}

.fixed-chat-icon {
  background-color: #0084ff;
  outline: none !important;
  border: 0px solid transparent;
  z-index: 105;
  margin: 0;
  padding: 0;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  position: fixed;
  bottom: 15px;
  right: 15px;
  border-radius: 150px;
  font-size: 20px;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.5);
}

.platform-choice {
  background-color: #f6f7f9;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.platform-options .col-12 {
  margin-top: 25px;
  margin-bottom: 25px;
}

.platform-option {
  background-color: #fff;
  border-radius: 40px;
  box-shadow: 0px 15px 50px -25px rgba(0, 0, 0, 0.5);
  padding: 45px 45px 35px 45px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.platform-option h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.platform-option .icon {
  width: 80px;
  height: 80px;
  border: 2px solid #77c61a;
  border-radius: 300px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #263238;
  font-size: 24px;
  margin-bottom: 10px;
}

.platform-option ul {
  list-style-type: none;
  padding-left: 0px;
  margin-bottom: 30px;
}

.platform-option li {
  position: relative;
  padding-left: 22px;
}

.platform-option ul .fa {
  position: absolute;
  left: 0;
  top: 4px;
}

.choice-logo {
  width: 170px;
  margin-bottom: 30px;
  margin-top: 40px;
}

.btn-outline-choice {
  display: block;
  text-align: center;
  border: 2px solid #263238;
  padding: 13px;
  border-radius: 8px;
  color: #263238;
  font-weight: 600;
  font-size: 16px;
  margin-top: auto;
}

.btn-outline-choice:hover {
  cursor: pointer;
  border-color: #0056b3;
  color: #0056b3;
}

.platform-option .comming-soon {
  font-size: 24px;
  margin-top: 13px;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
}

nav.navbar.bootsnav ul.nav > li > a {
  font-size: 16px;
  letter-spacing: 0.1px;
  font-weight: 600;
}

.navbar {
  padding: 1rem;
}

nav.navbar .navbar-brand img.logo {
  width: 92px;
}

nav.navbar.bootsnav.navbar-light.white ul.nav > li > a {
  color: #3e5261;
}

.menu-mobile-acc-btn {
  background-color: #e4e4e4;
  color: #444;
  border: 0px solid transparent;
  outline: none !important;
  padding: 15px 20px;
  text-align: left;
  margin: 0 0 15px 0;
  font-weight: 600;
  display: flex;
  align-items: center;
  border-radius: 5px;
  border-bottom: 2px solid #444;
}

.menu-icon {
  display: block;
  margin-right: 14px;
}

.menu-icon span {
  width: 22px;
  display: block;
  height: 2px;
  background-color: #222;
}

.menu-icon span + span {
  margin-top: 4px;
}

.alert-info {
  color: #053a43;
  background-color: #c9eff6;
  border-color: #2dadc0;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  height: 100%;
  padding: 12px 6px;
  line-height: 1.5;
}

.smaller-input-with-icon .select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 54px;
}

body .select2-container--default .select2-search--dropdown .select2-search__field {
  padding: 7px 15px;
  border-bottom: 2px solid #eee;
}

.contact-bar-fixed {
  position: fixed;
  z-index: 101;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  border-top: 2px solid grey;
}

.contact-bar-fixed h3 {
  margin-bottom: 0;
  font-size: 22px;
}

.contact-bar-fixed .d-flex {
  padding: 9px 0;
}

@media print {
  [class*=-manage-processing_agreement] #print-agreement,
  [class*=-manage-processing_agreement] .btn-subtle,
  [class*=-manage-processing_agreement] .btns,
  [class*=-manage-processing_agreement] .s-custom-checkbox,
  [class*=-manage-processing_agreement] .before-footer,
  [class*=-manage-processing_agreement] footer,
  [class*=-manage-processing_agreement] nav,
  [class*=-manage-processing_agreement] .fixed-chat-icon,
  [class*=-manage-processing_agreement] nav,
  [class*=-manage-processing_agreement] button,
  [class*=-manage-processing_agreement] h1,
  [class*=-manage-processing_agreement] .d-flex,
  [class*=-manage-processing_agreement] .alert,
  [class*=-manage-processing_agreement] p,
  [class*=-manage-processing_agreement] .menu-spaceholder {
    display: none !important;
  }
  [class*=-manage-processing_agreement] .agreement-block {
    padding: 0;
  }
  [class*=-manage-processing_agreement] iframe {
    border: 0px solid transparent;
  }
  [class*=-manage-processing_agreement] .grey-bg-section {
    padding: 0;
  }
}
.dropzone.new-dropzone .fake-popup {
  opacity: 0;
  transition: 0.2s ease-in-out opacity;
  display: inline-flex;
  padding: 10px;
  position: absolute;
  left: 50%;
  top: 4px;
  z-index: 55;
  background-color: #e6f6fb;
  border: 1px solid #297c94;
  color: #297c94;
  transform: translateX(-50%);
  border-radius: 5px;
}

.dropzone.new-dropzone {
  min-height: 230px;
  position: relative;
  border-radius: 6px;
}

.dropzone.new-dropzone.single-file {
  padding: 4px 20px 10px 20px;
}

.dropzone.new-dropzone.single-file .dz-message .h6 {
  font-size: 0.85rem;
}

.dropzone.new-dropzone.single-file .dz-message i {
  font-size: 2.2rem;
}

.dropzone.new-dropzone .dz-message {
  font-size: 24px;
  width: 100%;
}

.dropzone.new-dropzone .dz-preview {
  width: 100%;
  display: flex;
  align-items: center;
  flex-grow: 1;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 7px 13px;
  min-height: 0;
  margin: 0;
}

.dropzone.new-dropzone .dz-message {
  margin: 0 !important;
}

.dropzone.new-dropzone .dz-message,
.dropzone.new-dropzone .dz-preview {
  margin-top: 10px !important;
}

.dropzone.new-dropzone .dz-custom-actions {
  margin-left: 12px;
  display: flex;
  align-items: center;
}

.dropzone.new-dropzone .inline-link-item {
  background-color: #fafafa;
  border: 0px solid transparent;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.dropzone.new-dropzone .dz-custom-actions .inline-link-item + .inline-link-item {
  margin-left: 4px;
}

.dropzone.new-dropzone .dz-preview .dz-progress {
  height: 3px;
  left: 5%;
  bottom: 7px;
  top: auto;
  margin-top: 0;
  width: 90%;
  margin-left: 0;
}

.dropzone.new-dropzone .dz-preview .dz-details {
  margin-left: 5px;
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
  max-width: none;
  padding: 0;
  flex-grow: 1;
}

.dropzone.new-dropzone .dz-preview .dz-details .dz-filename {
  order: -1;
}

.dropzone.new-dropzone .dz-preview .dz-details {
  opacity: 1;
}

.dropzone.new-dropzone .dz-preview .dz-details .dz-size {
  margin-bottom: 0;
  white-space: nowrap;
  margin-left: auto;
}

.dropzone.new-dropzone .dz-preview .dz-progress .dz-upload {
  background: #777;
}

.dropzone.new-dropzone .dz-preview .dz-image {
  background: #fff !important;
  width: auto;
  height: 100%;
  overflow: visible;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  flex-grow: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dropzone.new-dropzone .dz-preview .dz-image i {
  font-size: 20px;
}

.dropzone.new-dropzone .dz-preview .dz-image img[src] {
  width: 100%;
  height: 100%;
}

.dropzone.new-dropzone .dz-preview .dz-image img:not([src]) {
  display: none;
}

.dropzone.new-dropzone .dz-preview:hover .dz-image img {
  filter: none;
  transform: none;
}

.dropzone.new-dropzone .dz-preview .dz-details .dz-filename {
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.dropzone.new-dropzone .dz-preview .dz-details .dz-filename span {
  border: 1px solid transparent !important;
  background: transparent !important;
}

.dropzone.new-dropzone .dz-preview .dz-details .dz-size {
  font-size: 12px;
  margin-right: 3px;
}

.dropzone.new-dropzone .dz-preview .dz-details .dz-size strong {
  font-weight: normal;
}

.dropzone.new-dropzone .dz-preview .dz-details .dz-size span {
  padding: 0;
  background-color: transparent;
  border-radius: 0;
}

.dropzone.new-dropzone .dz-message i {
  display: inline-flex;
  color: #adadad;
  font-size: 3rem;
  margin-bottom: 3px;
}

.dropzone.new-dropzone .dz-open {
  display: none !important;
}

.dropzone.new-dropzone.single-file .multi-file-message {
  display: none;
}

.dropzone.new-dropzone:not(.single-file) .single-file-message {
  display: none;
}

.dropzone.new-dropzone {
  display: flex;
  align-items: center;
  min-height: 0;
  border-radius: 3px;
  flex-wrap: wrap;
  padding: 10px 20px 20px 20px;
}

.date-selection {
  margin-left: auto;
}

.schedule-date-selection {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.week-input,
.year-input {
  display: flex;
  align-items: center;
  margin-right: 25px;
  flex-grow: 1;
}

.year-input .form-select {
  min-width: 100px;
}

.week-input label,
.year-input label {
  margin-bottom: 0;
  margin-right: 10px;
}

.week-input .form-select {
  min-width: 80px;
}

.project-grouping {
  padding: 15px;
  border: 1px solid #d9d9d9;
  margin-bottom: 15px;
  background-color: white;
  border-radius: 5px;
}

.project-grouping-name {
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 10px;
}

.project-grouping-name .fa {
  margin-left: 10px;
}

.project-grouping-location {
  padding: 15px;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  margin-bottom: 10px;
}

.project-grouping-location:last-child {
  margin-bottom: 0;
}

.project-grouping-location-name {
  font-weight: bolder;
  font-size: 0.85rem;
  font-family: "Nunito Sans", sans-serif;
  margin-bottom: 12px;
}

.project-grouping-week {
  display: flex;
  flex-wrap: wrap;
}

.project-grouping-week-day {
  width: 100%;
}

.project-grouping-week-day:last-child .test {
  border-right: 0px solid transparent;
}

.project-grouping-week-day-heading {
  font-family: "Nunito Sans", sans-serif;
  font-weight: bolder;
  font-size: 1rem;
}

.form-divider {
  margin-top: 2.66rem;
  margin-bottom: 2rem;
}

.schedule-heading {
  display: flex;
  align-items: center;
}

.schedule-heading h1 {
  font-size: 16px;
  margin: 0;
}

.zzp-schedule-item {
  margin-top: 5px;
  background-color: #0072fe;
  color: white;
  padding: 15px;
  border-radius: 5px;
}

.project-grouping-week-day {
  padding: 15px;
  border-radius: 5px;
  background-color: white;
  border: 1px solid #d8d8d8;
  margin-bottom: 10px;
}

.project-grouping-week-day-heading {
  display: flex;
  align-items: center;
}

.project-grouping-week-day-heading .inline-link-item {
  margin-left: auto;
  background-color: transparent;
  outline: none !important;
  border: 0px solid transparent;
}

.zzp-workweek-activity-item {
  display: flex;
  width: 100%;
  align-items: center;
  margin-top: 15px;
  padding: 10px 15px;
  border-radius: 5px;
  border: 1px solid #e9e9e9;
  position: relative;
}

.zzp-workweek-activity-item .form-label {
  margin-right: 7px;
  margin-bottom: 0;
}

.zzp-workweek-activity-item .inline-field {
  flex-grow: 1;
  width: calc(25% - 10px);
  flex-shrink: 0;
  margin-right: 10px;
}

.zzp-workweek-activity-item .delete-datasource {
  position: absolute;
  top: 0;
  right: 0;
  background-color: transparent;
  outline: none !important;
  color: darkred;
  border: 0px solid transparent;
  margin-left: 15px;
}

.zzp-workweek-activity-item .form-label:not(:first-child) {
  margin-left: 20px;
}

.inline-form-field {
  display: flex;
}

.canvas-wrapper canvas {
  width: 100%;
  height: 100%;
}

.canvas-wrapper {
  position: relative;
  max-width: 500px;
  background-color: white;
  width: 100%;
  height: 250px;
  border: 1px solid #d3d3d3;
}

#clear-canvas {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  border: 0px solid transparent;
  background-color: transparent;
  outline: none !important;
  color: red;
  display: none;
}

.single-line-checker {
  font-size: 15px;
  font-weight: normal;
  margin: 0;
}

.portfolio-item .mce-content-body {
  padding: 0;
}

.bg-grey {
  background-color: #f0f0f0;
}

.portfolio-item {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #d8d8d8;
  margin-bottom: 30px;
}

.portfolio-item .project-name {
  padding: 18px 15px 15px 15px;
  border-bottom: 1px solid #d8d8d8;
}

.portfolio-item .project-name-text {
  font-size: 18px;
  margin-bottom: 0;
}

.portfolio-item .project-description {
  padding: 15px;
}

.portfolio-item .about-project-heading {
  margin-bottom: 3px;
}

.project-images > .row {
  margin-left: -7.5px;
  margin-right: -7.5px;
}

.project-images {
  padding: 15px 15px 0 15px;
  width: 100%;
}

.project-images > .row > .project-image-col {
  padding: 0 7.5px;
}

.portfolio-item .project-image-col img {
  width: 100%;
  margin-bottom: 15px;
}

.justify-self-center {
  justify-self: center;
}

.file-downloads {
  display: flex;
  flex-wrap: wrap;
  margin: 40px 0;
}

.file-downloads .file-button + .file-button {
  margin-left: 20px;
}

.file-button {
  white-space: nowrap;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 30px;
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  color: #333 !important;
}

.file-button .fa {
  font-size: 27px;
  margin-bottom: 12px;
}

.fake-a {
  color: #0056b3;
  text-decoration: underline;
}

@media (min-width: 1200px) {
  .fixed-chat-icon {
    bottom: 20px;
    right: 20px;
    font-size: 28px;
    width: 80px;
    height: 80px;
  }
  .container {
    max-width: 1240px;
  }
  .container.smaller {
    max-width: 960px;
  }
}
@media (max-width: 1249px) {
  #chat-wrapper {
    max-width: none;
    padding: 86px 0 0 0;
  }
}
@media (max-width: 1199px) {
  .inner-header-title {
    padding-top: 9em;
    height: 230px;
  }
  .navbar {
    padding: 0.5rem 1rem;
  }
  nav.navbar .navbar-brand img.logo {
    width: 75px;
  }
  #chat-wrapper {
    padding-top: 60px;
  }
  #chat-list {
    width: 270px;
  }
  .mobile-scrolllock {
    overflow-y: hidden !important;
  }
  #mobile-toggle {
    display: block;
  }
  #navbar-menu.navbar-collapse.collapse {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    overflow-y: auto;
  }
  #navbar-menu.navbar-collapse.collapse.openable {
    display: flex;
  }
  #navbar-menu.navbar-collapse.collapse.open {
    opacity: 1;
  }
  .navbar-right {
    margin-left: 0;
    margin-top: 25px;
  }
  .navbar-left {
    flex-direction: column;
    flex-grow: 1;
  }
  .navbar li.left-br {
    border-left: 0px solid transparent;
  }
  nav.navbar.bootsnav ul.nav > li {
    margin-bottom: 6px;
  }
  nav.navbar.bootsnav ul.nav > li > a {
    font-size: 18px;
  }
  .dropdown-toggle::after {
    border-top: 0px solid transparent;
  }
  nav.navbar.bootsnav li.dropdown ul.dropdown-menu {
    border: 0px solid transparent;
    border-top: 1px solid #999;
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    right: auto;
    border-radius: 0;
    font-size: 16px;
    text-align: center;
  }
  .secondary-right {
    display: none;
  }
  .private-home-banner .main-left {
    text-align: center;
    margin-right: 0;
  }
  .private-home-banner h1 {
    font-size: 60px;
  }
  .create-btn-wrapper-desktop .btn {
    font-size: 16px;
  }
  .pr-plan h4 {
    font-size: 17px;
  }
  .pr-price h3 {
    font-size: 2.7em;
  }
  .pr-price h3 sup {
    top: 0;
  }
  .auth-top-choice .nav-link {
    padding-top: 8px;
  }
}
@media (min-width: 992px) {
  .collapse:not(.show).show-desktop {
    display: block;
  }
  .lg-visible-btn {
    display: none;
  }
}
@media (max-width: 991px) {
  .mobile-wrapper {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    righT: 0;
    bottom: 0;
    overflow: hidden;
  }
  .mobile-wrapper .side-dashboard {
    width: 85%;
    flex-shrink: 0;
    overflow-y: auto;
    height: 100vh;
    z-index: 5;
    transform: translateX(-100%);
    transition: 0.2s ease-in-out transform;
  }
  .mobile-wrapper .mobile-transparent-bar {
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    position: Absolute;
    opacity: 0;
    transition: 0.2s ease-in-out opacity;
  }
  .mobile-wrapper.opening {
    display: flex;
  }
  .mobile-wrapper.open .side-dashboard {
    transform: none;
  }
  .mobile-wrapper.open .mobile-transparent-bar {
    opacity: 1;
  }
  #chat-list {
    width: 230px;
  }
  #show-mobile-filters {
    display: inline-flex;
  }
  .create-button-subtle .btn-subtle + .btn-subtle {
    margin-left: 30px;
  }
  .mobile-close-button-wrapper {
    display: block;
  }
  #mobile-filters {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background-color: white;
    border-radius: 10px 10px 0 0;
    box-shadow: none;
    transition: 0.3s transform ease-in-out, 0.5s box-shadow ease-in-out;
    height: 84vh;
    transform: translateY(100%);
  }
  #mobile-filters.opening {
    display: block;
  }
  #mobile-filters.open {
    transform: translateY(0px);
    box-shadow: 0px 42px 155px 60px rgba(0, 0, 0, 0.5);
  }
  .filters-widgets-wrappers {
    overflow-y: auto;
    flex-grow: 1;
    max-width: 720px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 27px 15px 10px 15px;
  }
  .phone-filters-heading {
    display: block;
  }
  .filters-wrapper {
    position: relative;
    display: flex;
    height: 100%;
    flex-direction: column;
  }
  .create-btn-wrapper-desktop {
    display: none;
  }
  .create-btn-wrapper-mobile {
    display: block;
  }
  .newjob-list-layout h4 a {
    border-right: 0px solid transparent;
    padding-right: 0;
  }
  .cll-caption h4 span.jb-status {
    display: none;
  }
  .btn.theme-btn.btn-shortlist:after {
    display: none;
  }
  .cll-caption ul {
    margin-bottom: 1rem;
  }
  .btn[data-target="#mobile-filters"] {
    display: inline-flex;
    margin-bottom: 30px;
  }
  .btn {
    font-size: 14px;
    padding: 12px 12px 12px 12px;
  }
  .type-choice {
    margin-bottom: 25px;
    margin-left: auto;
    margin-right: auto;
    width: 75%;
  }
  .type-choice a.btn {
    margin-left: auto;
    margin-right: auto;
    width: auto;
  }
  .auth-top-choice .nav-link {
    padding-top: 5px;
  }
  .mobile-choices {
    flex-wrap: wrap;
  }
  .choice-type {
    display: none;
  }
  .side-dashboard {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .inner-header-title {
    padding-top: 8em;
    height: 200px;
  }
  #chat-list {
    display: none;
    z-index: 1;
    position: absolute;
    width: 85%;
    height: 100%;
    transform: translateX(-100%);
    transition: 0.3s transform ease-in-out;
  }
  #chat-list.opening {
    display: block;
  }
  #chat-list.open {
    transform: translateX(0px);
  }
  #chat-list.opening .mobile-backlayer {
    position: absolute;
    top: 0;
    right: -1500px;
    width: 1500px;
    bottom: 0;
    height: 100%;
    display: block;
    background-color: rgba(0, 0, 0, 0);
    transition: 0.3s background-color ease-in-out;
  }
  #chat-list.open .mobile-backlayer {
    background-color: rgba(0, 0, 0, 0.5);
  }
  .mobile-contacts-open {
    display: inline-flex;
  }
  .filters-widgets-wrappers {
    max-width: 540px;
  }
  .hidden-sm {
    display: none;
  }
  .form-block {
    padding: 15px;
  }
  .sidebar-widgets {
    margin-right: 0;
  }
  .ur-detail-wrap {
    flex-direction: column;
  }
  .ur-detail-btn {
    align-items: unset;
    margin-top: 25px;
  }
  .new-logwrap .btn-primary {
    font-size: 14px;
    padding: 14px 0;
  }
  .auth-top-choice .nav-link {
    padding-top: 0px;
  }
  .left-chat-list {
    position: absolute;
    display: none;
    top: 45px;
    bottom: 0;
    z-index: 1;
  }
  .left-chat-list.active {
    display: block;
  }
  .right-chat-window {
    position: relative;
  }
  #mobile-contacts {
    display: block;
  }
  .zzp-workweek-activity-item {
    flex-direction: column;
  }
  .zzp-workweek-activity-item .inline-field {
    width: 100%;
    margin-right: 0;
    margin-bottom: 8px;
  }
  .zzp-workweek-activity-item .inline-field .form-label {
    margin-bottom: 3px;
  }
  .schedule-heading {
    flex-direction: column;
    align-items: baseline;
  }
  .date-selection {
    margin-left: 0;
  }
}
@media (max-width: 575px) {
  .file-button {
    width: 100%;
  }
  .file-downloads .file-button + .file-button {
    margin-left: 0;
    margin-top: 20px;
  }
  .contact-bar-fixed h3 {
    display: none;
  }
  .contact-bar-fixed .btn {
    margin-right: auto;
  }
  #whomimchattingwith .btn-subtle span {
    displaY: none;
  }
  .mobile-backlayer {
    display: block;
  }
  .job.stock-facts {
    flex-wrap: wrap;
  }
  .job.stock-facts li.devider {
    display: none;
  }
  .job.stock-facts li {
    flex: 0 0 33.3333333333%;
    margin-bottom: 25px;
  }
  .private-home-banner h1 {
    font-size: 34px;
  }
  .footer-bottom-social {
    flex-shrink: 0;
  }
  ul.footer-bottom-social li {
    margin-right: 5px;
  }
  .type-choice {
    width: 100%;
  }
  .start-btns {
    flex-direction: column;
  }
  .start-btns .btn {
    margin: 0 0 20px 0;
  }
  .form-section-fields {
    padding-left: 1px;
  }
  h2.detail-title {
    margin-left: -1px;
  }
  .schedule-date-selection {
    flex-direction: column;
    display: flex;
  }
  .schedule-heading h1 {
    margin-bottom: 15px;
  }
  .week-input, .year-input {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
}


.policy-downloads {
    padding-top:8px;
}
.policy-download {
    flex-wrap:wrap;
    width: 100%;
    display:flex;
    align-items:center;
    border:2px solid #e9e9e9;
    padding:5px 15px;
    border-radius:5px;
    margin-bottom:8px;
}

.dashboard-avatar-text h4 {
    font-size: 16px;
}

.to-subcontracting {
    display:inline-flex;
    white-space: nowrap;
    margin-right:25px;
    background-color: #0084ff;
    padding: 5px 10px;
    border-radius:4px;
    color: white !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 14px;
    align-items:center;



    @media (min-width: 900px) {
        & {
            margin-left: 15px;
            margin-right: 60px;
        }
    }

    @media (min-width: 1200px) {
        &{
            margin-left: 20px;
            margin-right: 130px;
        }
    }

    &::before {
        display: inline-flex;
        font-family: "themify";
        font-weight: 600;
        content: "\e64a";
        font-size: 100%;
        font-size: 8px;
        margin-right:3px;
        /* margin-left: 14px;
        margin-bottom: -1px; */
    }

    @media (max-width: 575px) {
        & .atom {
            & > span:first-child {
                display: none;
            }


            & > span:last-child {
                text-transform: capitalize;
            }
        }

        & {
            margin-left: -15px;
        }
    }

    @media (max-width: 340px) {
        & {
            font-size: 12px;
            padding: 4px 6px;
            margin-right: 8px;
        }
    }

}

.atom {
    white-space: nowrap;
}
