@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

:root {
  --primary: #17bec7;
  --secondary: #111c3c;
  --default: #fab229;
  --textcolor: #8e8e8e;
  --gray: #353535;
  --lightgray: #949494;
  --bgcolor: #e9fafb;
}

/*

	Media Query mixin

	See https://github.com/sass-mq/sass-mq/ for original full version.

	@example scss
	 .element {
	   @include mq($from: mobile) {
		 color: red;
	   }

	   @include mq($to: tablet) {
		 color: blue;
	   }

	   @include mq(mobile, tablet) {
		 color: green;
	   }

	   @include mq($from: tablet, $and: '(orientation: landscape)') {
		 color: teal;
	   }

	   @include mq(em(950px)) {
		 color: hotpink;
	   }

	   @include mq(em(950px), $media-feature: height) {
		 color: hotpink;
	   }

	   @include mq(tablet, $media-type: screen) {
		 color: hotpink;
	   }

	   // Advanced use:
	   $custom-breakpoints: (L: 900px, XL: 1200px);
	   @include mq(L, $bp: $custom-breakpoints) {
		 color: hotpink;
	   }
	 }

*/
/*

	Margin / Padding Quick Resets

	example: top & bottom margin set to $spacing-unit
	.element {
		@include push--ends;
	}

	example: left & right padding set to $spacing-unit--small
	.element {
		@include soft--sides($spacing-unit--small);
	}

*/
/*

	Helper mixins

*/
/*

	Form input placeholder text

	example:

	input,
	textarea {
		@include input-placeholder {
			color: $grey;
		}
	}

*/
/*

	Retina images

	example:

	.element {
		@include retina {
			background-image: url(../img/background@2x.png);
		}
	}

*/
/*

	Content margins

	fore removing first/last child margins

	example: default
	.element {
		@include content-margins;
	}

	output:
	.element > *:first-child {
		margin-top: 0;
	}
	.element > *:last-child {
		margin-bottom: 0;
	}

	example: empty selector
	.element {
		@include content-margins('false');
	}

	output:
	.element:first-child {
		margin-top: 0;
	}
	.element:last-child {
		margin-bottom: 0;
	}

*/
/*

	CSS Triangle

	used for creating CSS only triangles

	example:
	.element {

		&::before {
			@include css-triangle(blue, down);
		}
	}

*/
/*

	Hide text

	example:

	.element {
		@include hide-text;
	}

*/
/*

	Responsive ratio

	Used for creating scalable elements that maintain the same ratio

	example:
	.element {
		@include responsive-ratio(400, 300);
	}

*/
/*

	Icon

	For using fontastic icons in pseudo elements

*/
/*

	Colours

	background, colour, etc. match up with colour map in _variables.scss

	modify to suit per project

*/
/*

	Fluid Property

	http://www.adrenalinmedia.com.au/the-agency/insights/this-changes-everything-css-fluid-properties.aspx

	HTML:

	<h1 class="element">
		<span>Text to replace</span>
	</h1>

	example:
	h1 {
		@include fp(font-size, 50, 100); // 50px at 320, 100px at 1920;
	}

	output:
	h1 {
		font-size: calc(3.125vw + 40px); //This is the magic!
	}

	@media (max-width:320px){ //Clips the start to the min value
		font-size:50px;
	}

	@media (min-width:1920px){ //Clips the end to the max value
		font-size:100px;
	}


*/
/*

	Misc

*/
/*

	Font face

	example:

	@include font-face('Clarendon', 'clarendon-webfont');
	@include font-face('Clarendon', 'clarendon-webfont', $w--bold, italic);

*/
/*

	REMs

*/
/*

	EMs calculator

*/
/*

	SVG inliner

*/
/*

	Media Query mixin

	See https://github.com/sass-mq/sass-mq/ for original full version.

	@example scss
	 .element {
	   @include mq($from: mobile) {
		 color: red;
	   }

	   @include mq($to: tablet) {
		 color: blue;
	   }

	   @include mq(mobile, tablet) {
		 color: green;
	   }

	   @include mq($from: tablet, $and: '(orientation: landscape)') {
		 color: teal;
	   }

	   @include mq(em(950px)) {
		 color: hotpink;
	   }

	   @include mq(em(950px), $media-feature: height) {
		 color: hotpink;
	   }

	   @include mq(tablet, $media-type: screen) {
		 color: hotpink;
	   }

	   // Advanced use:
	   $custom-breakpoints: (L: 900px, XL: 1200px);
	   @include mq(L, $bp: $custom-breakpoints) {
		 color: hotpink;
	   }
	 }

*/
/*

	Margin / Padding Quick Resets

	example: top & bottom margin set to $spacing-unit
	.element {
		@include push--ends;
	}

	example: left & right padding set to $spacing-unit--small
	.element {
		@include soft--sides($spacing-unit--small);
	}

*/
/*

	Helper mixins

*/
/*

	Form input placeholder text

	example:

	input,
	textarea {
		@include input-placeholder {
			color: $grey;
		}
	}

*/
/*

	Retina images

	example:

	.element {
		@include retina {
			background-image: url(../img/background@2x.png);
		}
	}

*/
/*

	Content margins

	fore removing first/last child margins

	example: default
	.element {
		@include content-margins;
	}

	output:
	.element > *:first-child {
		margin-top: 0;
	}
	.element > *:last-child {
		margin-bottom: 0;
	}

	example: empty selector
	.element {
		@include content-margins('false');
	}

	output:
	.element:first-child {
		margin-top: 0;
	}
	.element:last-child {
		margin-bottom: 0;
	}

*/
/*

	CSS Triangle

	used for creating CSS only triangles

	example:
	.element {

		&::before {
			@include css-triangle(blue, down);
		}
	}

*/
/*

	Hide text

	example:

	.element {
		@include hide-text;
	}

*/
/*

	Responsive ratio

	Used for creating scalable elements that maintain the same ratio

	example:
	.element {
		@include responsive-ratio(400, 300);
	}

*/
/*

	Icon

	For using fontastic icons in pseudo elements

*/
/*

	Colours

	background, colour, etc. match up with colour map in _variables.scss

	modify to suit per project

*/
/*

	Fluid Property

	http://www.adrenalinmedia.com.au/the-agency/insights/this-changes-everything-css-fluid-properties.aspx

	HTML:

	<h1 class="element">
		<span>Text to replace</span>
	</h1>

	example:
	h1 {
		@include fp(font-size, 50, 100); // 50px at 320, 100px at 1920;
	}

	output:
	h1 {
		font-size: calc(3.125vw + 40px); //This is the magic!
	}

	@media (max-width:320px){ //Clips the start to the min value
		font-size:50px;
	}

	@media (min-width:1920px){ //Clips the end to the max value
		font-size:100px;
	}


*/
/*

	Misc

*/
/*

	Font face

	example:

	@include font-face('Clarendon', 'clarendon-webfont');
	@include font-face('Clarendon', 'clarendon-webfont', $w--bold, italic);

*/
/*

	REMs

*/
/*

	EMs calculator

*/
/*

	SVG inliner

*/
html {
  font-size: 100%;
  overflow-x: hidden;
}

@media screen and (max-width: 991px) {
  html {
    font-size: 80%;
  }
}

@media screen and (max-width: 320px) {
  html {
    font-size: 70%;
  }
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  color: var(--secondary);
  line-height: 1;
  margin: 0;
  padding: 0 !important;
  overflow-x: hidden;
  background-color: var(--bgcolor);
  width: 100%;
  position: relative;
}

body.no-scroll {
  overflow: hidden;
  position: fixed;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  margin-top: 2.1875rem;
}

.button-row .list-inline-item:not(:last-child) {
  margin-right: 4.0625rem;
}

@media screen and (max-width: 575px) {
  .button-row {
    justify-content: center;
  }

  .button-row .btn {
    width: 100%;
  }
}

.inline-buttons {
  display: flex;
  justify-content: space-between;
}

.inline-buttons>.btn,
.inline-buttons div {
  width: 49%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  user-select: none;
  border: 0;
  border-radius: 0;
  transition: all 0.5s ease;
  color: #fff;
  padding: 0 2.125rem;
  height: 55px;
  line-height: 55px;
  vertical-align: middle;
  position: relative;
  box-shadow: none !important;
  border-radius: 17px;
}

.btn[disabled] {
  background: #F6F6F6 !important;
  color: #E0E0E0 !important;
  border-color: #F6F6F6 !important;
  cursor: not-allowed;
  pointer-events: none;
}

@media screen and (max-width: 991px) {
  .btn {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    height: 45px;
    line-height: 45px;
    border-radius: 13px;
  }
}

@media screen and (max-width: 767px) {
  .btn {
    height: 38px;
    line-height: 38px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
  }
}

.btn:hover {
  text-decoration: none;
}

.btn.full {
  width: 100%;
}

.btn:active {
  outline: none;
  box-shadow: none;
}

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

.btn.btn-primary,
.btn .btn-primary:focus,
.btn .btn-primary:active {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

.btn.btn-primary.gray,
.btn .btn-primary:focus.gray,
.btn .btn-primary:active.gray {
  background: var(--lightgray) !important;
  border: 2px solid var(--lightgray);
}

.btn.btn-primary:hover,
.btn .btn-primary:focus:hover,
.btn .btn-primary:active:hover {
  background: var(--secondary);
  color: #fff !important;
}

.btn.btn-secondary {
  background: #ffffff;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn.btn-secondary:hover {
  background: var(--primary);
  color: #ffffff;
}

.btn.btn-secondary.grey {
  color: var(--default);
  background: transparent;
  border: 2px solid #c9c9c9;
}

.btn.btn-secondary.grey:hover {
  background-color: var(--default);
  color: #edfdf3;
  border: 2px solid var(--default);
}

.btn.btn-default {
  background: var(--default);
  color: #ffffff;
}

.btn.btn-default:hover {
  background: var(--secondary);
  color: #fff !important;
}

.btn.btn-sm {
  font-size: 14px;
  height: 40px;
  line-height: 40px;
  border-radius: 9px;
}

/*

	Basic, low level typography

*/
a {
  transition: .5s ease all;
  color: var(--secondary);
}

@media screen and (min-width: 1025px) {
  a:hover {
    color: var(--primary) !important;
    text-decoration: none;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: 600;
  margin-top: 0;
  line-height: 1.1;
}

h1 {
  font-size: 3.75rem;
}

@media screen and (min-width: 320px) {
  h1 {
    font-size: 2.5rem;
  }
}

@media screen and (min-width: 991px) {
  h1 {
    font-size: 3.125rem;
  }
}

@media screen and (min-width: 1300px) {
  h1 {
    font-size: 3.75rem;
  }
}

h2 {
  font-size: 3rem;
}

@media screen and (min-width: 320px) {
  h2 {
    font-size: 2.0625rem;
  }
}

@media screen and (min-width: 991px) {
  h2 {
    font-size: 2.375rem;
  }
}

@media screen and (min-width: 1300px) {
  h2 {
    font-size: 3rem;
  }
}

h3 {
  font-size: 2.25rem;
}

@media screen and (min-width: 320px) {
  h3 {
    font-size: 1.375rem;
  }
}

@media screen and (min-width: 991px) {
  h3 {
    font-size: 1.5625rem;
  }
}

@media screen and (min-width: 1300px) {
  h3 {
    font-size: 2.25rem;
  }
}

h4 {
  font-size: 1.5rem;
}

@media screen and (min-width: 320px) {
  h4 {
    font-size: 1.25rem;
  }
}

@media screen and (min-width: 991px) {
  h4 {
    font-size: 1.375rem;
  }
}

@media screen and (min-width: 1300px) {
  h4 {
    font-size: 1.5rem;
  }
}

h5 {
  font-size: 1.25rem;
}

@media screen and (min-width: 320px) {
  h5 {
    font-size: 1.0625rem;
  }
}

@media screen and (min-width: 991px) {
  h5 {
    font-size: 1.1875rem;
  }
}

@media screen and (min-width: 1300px) {
  h5 {
    font-size: 1.25rem;
  }
}

h6 {
  font-size: 1.125rem;
  margin-bottom: 1.875rem;
}

@media screen and (min-width: 320px) {
  h6 {
    font-size: 0.9375rem;
  }
}

@media screen and (min-width: 991px) {
  h6 {
    font-size: 0.9375rem;
  }
}

@media screen and (min-width: 1300px) {
  h6 {
    font-size: 1.125rem;
  }
}

p {
  font-size: 1rem;
  margin: 0 0 1.25rem 0;
  line-height: 1.45;
  color: var(--textcolor);
}

ul,
ol,
.blockquote,
.button-wrapper,
.media,
.table-wrapper {
  margin-bottom: 1rem;
}

ul:last-child,
ol:last-child,
.blockquote:last-child,
.button-wrapper:last-child,
.media:last-child,
.table-wrapper:last-child {
  margin-bottom: 0;
}

ol,
ul {
  padding: 0;
  margin: 0;
}

b,
strong {
  font-weight: 700;
}

form {
  margin-bottom: 0;
}

.form-group,
.field {
  margin-bottom: 13px;
  position: relative;
}

.control-label {
  font-size: 1rem;
  display: block;
  margin-bottom: 13px;
}

.control-label span {
  color: #ff0000;
}

.form-control {
  position: relative;
  height: 45px;
  background-color: #e8f9fa;
  outline: none;
  border: 1px solid transparent;
  border-radius: 12px;
  opacity: 1;
  transition: all 0.2s;
  touch-action: manipulation;
  padding: 0 15px;
  color: var(--textcolor);
}

.form-control.active {
  outline: none;
  box-shadow: none;
}

.form-control::placeholder {
  opacity: 1;
  color: var(--textcolor);
  font-weight: 500;
}

.form-control:focus {
  outline: none;
  box-shadow: none;
  border: 2px solid var(--primary);
  background-color: #e8f9fa;
}

@media screen and (max-width: 991px) {
  .form-control {
    height: 38px;
  }
}

textarea.form-control {
  min-height: 3.75rem;
  resize: none;
}

.form-control[readonly] {
  border: 0 !important;
  background-color: #e9ecef !important;
}

.checkbox label,
.radio label {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.checkbox label input,
.checkbox label svg,
.radio label input,
.radio label svg {
  width: 20px;
  height: 20px;
}

.checkbox label input,
.radio label input {
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  outline: none;
  background: #fff;
  border: none;
  margin: 0;
  padding: 0;
  cursor: pointer;
  border-radius: 4px;
  transition: box-shadow 0.3s;
  box-shadow: inset 0 0 0 1px #d1d6ee;
  display: none;
  cursor: pointer;
}

@media screen and (min-width: 1025px) {

  .checkbox label input:hover,
  .radio label input:hover {
    box-shadow: inset 0 0 0 1px var(--textPrimary);
  }
}

.checkbox label input:checked,
.radio label input:checked {
  box-shadow: inset 0 0 0 1px var(--textPrimary);
}

.checkbox label svg,
.radio label svg {
  pointer-events: none;
  fill: none;
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: var(--textPrimary);
  width: 20px;
  height: 20px;
  transform: scale(1) translateZ(0);
  border: 1px solid #d7d7d7;
  border-radius: 2px;
}

.checkbox label.path input:checked,
.radio label.path input:checked {
  --s: 2px;
  transition-delay: 0.4s;
}

.checkbox label.path input:checked+svg,
.radio label.path input:checked+svg {
  stroke-dasharray: 16.1 86.12;
  stroke-dashoffset: 102.22;
}

.checkbox label.path svg,
.radio label.path svg {
  stroke-dasharray: 86.12;
  stroke-dashoffset: 86.12;
  transition: stroke-dasharray 0.6s, stroke-dashoffset 0.6s;
}

.checkbox label span,
.radio label span {
  padding-left: 0.4375rem;
  color: #4a4a4a;
  vertical-align: middle;
}

.checkbox a,
.radio a {
  color: var(--textPrimary);
  text-decoration: underline;
}

@media screen and (min-width: 1025px) {

  .checkbox a:hover,
  .radio a:hover {
    text-decoration: none;
  }
}

@media screen and (min-width: 992px) {
  .col-gap-0 {
    margin-left: calc((0px/2) * -1) !important;
    margin-right: calc((0px/2) * -1) !important;
  }

  .col-gap-0>div {
    padding-left: calc(0px/2) !important;
    padding-right: calc(0px/2) !important;
  }

  .col-gap-10 {
    margin-left: calc((10px/2) * -1) !important;
    margin-right: calc((10px/2) * -1) !important;
  }

  .col-gap-10>div {
    padding-left: calc(10px/2) !important;
    padding-right: calc(10px/2) !important;
  }

  .col-gap-15 {
    margin-left: calc((15px/2) * -1) !important;
    margin-right: calc((15px/2) * -1) !important;
  }

  .col-gap-15>div {
    padding-left: calc(15px/2) !important;
    padding-right: calc(15px/2) !important;
  }

  .col-gap-20 {
    margin-left: calc((20px/2) * -1) !important;
    margin-right: calc((20px/2) * -1) !important;
  }

  .col-gap-20>div {
    padding-left: calc(20px/2) !important;
    padding-right: calc(20px/2) !important;
  }

  .col-gap-25 {
    margin-left: calc((25px/2) * -1) !important;
    margin-right: calc((25px/2) * -1) !important;
  }

  .col-gap-25>div {
    padding-left: calc(25px/2) !important;
    padding-right: calc(25px/2) !important;
  }

  .col-gap-30 {
    margin-left: calc((30px/2) * -1) !important;
    margin-right: calc((30px/2) * -1) !important;
  }

  .col-gap-30>div {
    padding-left: calc(30px/2) !important;
    padding-right: calc(30px/2) !important;
  }

  .col-gap-40 {
    margin-left: calc((40px/2) * -1) !important;
    margin-right: calc((40px/2) * -1) !important;
  }

  .col-gap-40>div {
    padding-left: calc(40px/2) !important;
    padding-right: calc(40px/2) !important;
  }

  .col-gap-50 {
    margin-left: calc((50px/2) * -1) !important;
    margin-right: calc((50px/2) * -1) !important;
  }

  .col-gap-50>div {
    padding-left: calc(50px/2) !important;
    padding-right: calc(50px/2) !important;
  }

  .col-gap-55 {
    margin-left: calc((55px/2) * -1) !important;
    margin-right: calc((55px/2) * -1) !important;
  }

  .col-gap-55>div {
    padding-left: calc(55px/2) !important;
    padding-right: calc(55px/2) !important;
  }

  .col-gap-60 {
    margin-left: calc((60px/2) * -1) !important;
    margin-right: calc((60px/2) * -1) !important;
  }

  .col-gap-60>div {
    padding-left: calc(60px/2) !important;
    padding-right: calc(60px/2) !important;
  }

  .col-gap-70 {
    margin-left: calc((70px/2) * -1) !important;
    margin-right: calc((70px/2) * -1) !important;
  }

  .col-gap-70>div {
    padding-left: calc(70px/2) !important;
    padding-right: calc(70px/2) !important;
  }

  .col-gap-80 {
    margin-left: calc((80px/2) * -1) !important;
    margin-right: calc((80px/2) * -1) !important;
  }

  .col-gap-80>div {
    padding-left: calc(80px/2) !important;
    padding-right: calc(80px/2) !important;
  }

  .col-gap-90 {
    margin-left: calc((90px/2) * -1) !important;
    margin-right: calc((90px/2) * -1) !important;
  }

  .col-gap-90>div {
    padding-left: calc(90px/2) !important;
    padding-right: calc(90px/2) !important;
  }

  .col-gap-100 {
    margin-left: calc((100px/2) * -1) !important;
    margin-right: calc((100px/2) * -1) !important;
  }

  .col-gap-100>div {
    padding-left: calc(100px/2) !important;
    padding-right: calc(100px/2) !important;
  }

  .col-gap-120 {
    margin-left: calc((120px/2) * -1) !important;
    margin-right: calc((120px/2) * -1) !important;
  }

  .col-gap-120>div {
    padding-left: calc(120px/2) !important;
    padding-right: calc(120px/2) !important;
  }

  .col-gap-150 {
    margin-left: calc((150px/2) * -1) !important;
    margin-right: calc((150px/2) * -1) !important;
  }

  .col-gap-150>div {
    padding-left: calc(150px/2) !important;
    padding-right: calc(150px/2) !important;
  }
}

.abs-link {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 9;
  color: transparent;
  font-size: 0;
  text-indent: -2px;
}

#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1003;
}

#loader {
  position: relative;
  width: 100%;
  margin: auto;
  height: 100%;
  z-index: 1001;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  width: 51%;
  height: 100%;
  background: #fff;
  z-index: 1000;
}

#loader-wrapper .loader-section.section-left {
  left: 0;
}

#loader-wrapper .loader-section.section-right {
  right: 0;
}

.loader {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-top: 20px;
  display: inline-block;
  vertical-align: middle;
}

.loader .loader-outter {
  position: absolute;
  border: 4px solid var(--primary);
  border-left-color: transparent;
  border-bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-animation: loader-1-outter 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
  animation: loader-1-outter 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
}

.loader .loader-inner {
  position: absolute;
  border: 4px solid var(--primary);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  left: calc(50% - 20px);
  top: calc(50% - 20px);
  border-right: 0;
  border-top-color: transparent;
  -webkit-animation: loader-1-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
  animation: loader-1-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
}

@-webkit-keyframes loader-1-outter {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes loader-1-outter {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes loader-1-inner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

@keyframes loader-1-inner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

/* Loaded styles */
.loaded #loader-wrapper .loader-section.section-left {
  -webkit-transform: translateX(-100%);
  /* Chrome, Opera 15+, Safari 3.1+ */
  -ms-transform: translateX(-100%);
  /* IE 9 */
  transform: translateX(-100%);
  /* Firefox 16+, IE 10+, Opera */
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  /* Android 2.1+, Chrome 1-25, iOS 3.2-6.1, Safari 3.2-6  */
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  /* Chrome 26, Firefox 16+, iOS 7+, IE 10+, Opera, Safari 6.1+  */
}

.loaded #loader-wrapper .loader-section.section-right {
  -webkit-transform: translateX(100%);
  /* Chrome, Opera 15+, Safari 3.1+ */
  -ms-transform: translateX(100%);
  /* IE 9 */
  transform: translateX(100%);
  /* Firefox 16+, IE 10+, Opera */
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  /* Android 2.1+, Chrome 1-25, iOS 3.2-6.1, Safari 3.2-6  */
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  /* Chrome 26, Firefox 16+, iOS 7+, IE 10+, Opera, Safari 6.1+  */
}

.loaded #loader {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  /* Android 2.1+, Chrome 1-25, iOS 3.2-6.1, Safari 3.2-6  */
  transition: all 0.3s ease-out;
  /* Chrome 26, Firefox 16+, iOS 7+, IE 10+, Opera, Safari 6.1+  */
}

.loaded #loader-wrapper {
  visibility: hidden;
  -webkit-transform: translateY(-100%);
  /* Chrome, Opera 15+, Safari 3.1+ */
  -ms-transform: translateY(-100%);
  /* IE 9 */
  transform: translateY(-100%);
  /* Firefox 16+, IE 10+, Opera */
  -webkit-transition: all 0.3s 1s ease-out;
  /* Android 2.1+, Chrome 1-25, iOS 3.2-6.1, Safari 3.2-6  */
  transition: all 0.3s 1s ease-out;
  /* Chrome 26, Firefox 16+, iOS 7+, IE 10+, Opera, Safari 6.1+  */
}

.bootstrap-select {
  width: 100% !important;
}

.bootstrap-select .dropdown-toggle {
  background: var(--primary) !important;
  color: #fff;
  border: 0;
  outline: none !important;
  box-shadow: none !important;
  height: 60px;
  line-height: 60px;
  padding: 0 15px;
}

.bootstrap-select .dropdown-toggle:focus {
  outline: none !important;
  box-shadow: none !important;
}

.bootstrap-select .dropdown-toggle:after {
  border: 0;
  background: url(../images/icons/angle-small-down.png) center center no-repeat;
  width: 18px;
  height: 18px;
  position: absolute;
  z-index: 1;
  right: 0;
  background-size: 100%;
  right: 17px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.bootstrap-select .dropdown-toggle .filter-option-inner-inner {
  color: #fff;
  font-weight: 400;
}

.bootstrap-select .dropdown-menu {
  padding: 0;
  border: 0;
  background: var(--default);
}

.bootstrap-select .dropdown-menu li a {
  color: #fff;
  padding: 0.5rem 0.625rem;
  font-weight: 400;
  font-size: 1rem;
  border-bottom: 1px solid #fff;
}

.bootstrap-select .dropdown-menu li a:hover {
  background: var(--primary);
  color: #fff !important;
}

.bootstrap-select .dropdown-menu li.selected a {
  background: var(--primary);
  color: #fff;
}

@media screen and (max-width: 991px) {
  .bootstrap-select .dropdown-toggle {
    height: 50px;
    line-height: 50px;
  }
}

.modal-backdrop.show {
  opacity: .8;
}

.modal {
  text-align: center;
  padding: 0 !important;
}

.modal .modal-dialog-centered {
  display: flex !important;
}

.modal .modal-dialog {
  max-width: 1024px;
  width: 1024px;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  margin: .7rem auto !important;
}

@media screen and (max-width: 1200px) {
  .modal .modal-dialog {
    max-width: auto;
    width: 95%;
    margin: auto;
  }
}

.modal .modal-dialog .modal-content {
  box-shadow: none;
  border: none;
  margin: 0 auto;
  pointer-events: all;
  background: #fff;
  overflow: visible;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
  padding: 1.875rem;
}

@media screen and (max-width: 1200px) {
  .modal .modal-dialog .modal-content {
    padding: 1.25rem;
  }
}

.modal .modal-dialog .modal-content .popup-cross-icon {
  position: absolute;
  right: 25px;
  top: 25px;
  cursor: pointer;
  z-index: 1000;
  width: 14px;
  height: 14px;
  border: 0;
  background: transparent;
}

.modal .modal-dialog .modal-content .popup-cross-icon:after {
  content: '';
  position: absolute;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='24px' height='24px'%3E%3Cpath fill-rule='evenodd' fill='%2335461E' d='M13.711,12.337 L23.103,21.728 C23.622,22.247 23.622,23.088 23.103,23.607 C22.584,24.125 21.743,24.125 21.225,23.607 L11.833,14.215 L2.441,23.607 C1.922,24.125 1.082,24.125 0.563,23.607 C0.044,23.088 0.044,22.247 0.563,21.728 L9.955,12.337 L0.563,2.945 C0.044,2.426 0.044,1.585 0.563,1.066 C1.082,0.547 1.922,0.547 2.441,1.066 L11.833,10.458 L21.225,1.066 C21.743,0.547 22.584,0.547 23.103,1.066 C23.622,1.585 23.622,2.426 23.103,2.945 L13.711,12.337 Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  height: 14px;
  width: 14px;
  left: 0;
  top: 0;
  background-size: cover;
}

@media screen and (min-width: 1025px) {
  .modal .modal-dialog .modal-content .popup-cross-icon:hover {
    opacity: 0.8;
  }
}

.modal .modal-dialog .modal-content .modal-title {
  font-size: 1.75rem;
  font-weight: 700;
}

.modal .modal-dialog .modal-content .modal-subtitle a {
  color: var(--default);
}

.modal.large .modal-dialog {
  max-width: 1430px;
  width: 1430px;
}

@media screen and (max-width: 1500px) {
  .modal.large .modal-dialog {
    max-width: 1200px;
    width: 1200px;
  }
}

@media screen and (max-width: 1250px) {
  .modal.large .modal-dialog {
    width: 90%;
  }
}

.modal.small .modal-dialog {
  max-width: 600px;
  width: 600px;
}

@media screen and (max-width: 650px) {
  .modal.small .modal-dialog {
    width: 95%;
  }
}

.modal.medium .modal-dialog {
  max-width: 775px;
  width: 775px;
}

@media screen and (max-width: 850px) {
  .modal.medium .modal-dialog {
    width: 95%;
  }
}

.modal.custom-modal .modal-body {
  /*padding: 25px 30px 20px 30px;*/
  padding: 0;
  visibility: hidden;
  overflow: hidden;
}

.modal.custom-modal .modal-body.show {
  visibility: visible;
  height: auto;
  overflow: visible;
}

.modal.custom-modal .modal-body video {
  width: 100%;
  height: 100%;
}

.modal.custom-modal:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -4px;
}

.modal.show .modal-dialog {
  transform: none;
}

.modal.schedule-modal .modal-dialog {
  max-width: 775px;
  width: 775px;
}

@media screen and (max-width: 850px) {
  .modal.schedule-modal .modal-dialog {
    width: 95%;
  }
}

.modal.schedule-modal .modal-dialog .modal-content {
  padding: 0;
}

.modal.schedule-modal .modal-dialog .modal-content .back {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  background: url(../images/icons/arrow-left.png) left center no-repeat;
  background-size: 26px;
  font-size: 14px;
  color: #fff !important;
}

.modal.schedule-modal .modal-dialog .modal-content .back:hover {
  opacity: .7;
}

.modal.schedule-modal .modal-dialog .modal-content .modal-close {
  padding: 12px 0;
  padding-right: 30px;
  position: relative;
  background: url(../images/icons/cross-circle-white.png) right center no-repeat;
  background-size: 26px;
  font-size: 14px;
  color: #fff !important;
}

.modal.schedule-modal .modal-dialog .modal-content .modal-close:hover {
  opacity: .7;
}

.modal.schedule-modal .modal-dialog .modal-content .form-control {
  border: 1px solid #e0e2e3;
  background: #f3f4f4;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  color: #949494;
  font-size: 14px;
  height: 43px;
  line-height: 43px;
}

.modal.schedule-modal .modal-dialog .modal-content .form-control::placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #949494;
}

.modal.schedule-modal .modal-dialog .modal-content .bootstrap-select .dropdown-toggle {
  border: 1px solid #e0e2e3;
  background: #f3f4f4 !important;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  height: 43px;
  line-height: 43px;
  padding-left: 2.8125rem;
}

.modal.schedule-modal .modal-dialog .modal-content .bootstrap-select .dropdown-toggle:after {
  display: none;
}

.modal.schedule-modal .modal-dialog .modal-content .bootstrap-select .dropdown-toggle .filter-option-inner-inner {
  font-size: 14px;
  font-weight: 400;
  color: #949494;
}

.modal.schedule-modal .modal-dialog .modal-content .bootstrap-select .dropdown-menu {
  background: #f3f4f4;
  max-width: 273px;
  width: 273px;
  min-width: 273px !important;
}

.modal.schedule-modal .modal-dialog .modal-content .bootstrap-select .dropdown-menu .inner {
  overflow-x: hidden !important;
}

.modal.schedule-modal .modal-dialog .modal-content .bootstrap-select .dropdown-menu li a {
  color: #949494 !important;
  font-size: 14px;
  font-weight: 400;
}

.modal.schedule-modal .modal-dialog .modal-content .bootstrap-select .dropdown-menu li a:hover {
  background: #00b3e2;
  color: #fff !important;
}

.modal.schedule-modal .modal-dialog .modal-content .bootstrap-select .dropdown-menu li.selected a {
  background: #00b3e2;
  color: #fff !important;
}

.modal.schedule-modal .modal-dialog .modal-content .btn {
  font-size: 14px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  height: 43px;
  line-height: 43px;
  padding-top: 0;
  padding-bottom: 0;
  background: #00b3e2;
  color: #fff !important;
}

@media screen and (min-width: 1025px) {
  .modal.schedule-modal .modal-dialog .modal-content .btn:hover {
    background: var(--primary);
  }
}

.modal.schedule-modal .modal-dialog .modal-content .top-head {
  background: #00b3e2;
  padding: 0.9375rem;
  padding-bottom: 1rem;
  margin: 0;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.modal.schedule-modal .modal-dialog .modal-content .top-head .modal-title {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
  margin: 0;
}

.modal.schedule-modal .modal-dialog .modal-content .popup-cross-icon {
  right: 17px;
  top: 15px;
}

.modal.schedule-modal .modal-dialog .modal-content .popup-cross-icon:after {
  background: url(../images/icons/cross-circle-white.png) left top no-repeat;
  background-size: 100%;
}

.modal.schedule-modal .modal-dialog .modal-content .modal-inner {
  padding: 1.25rem;
  padding-top: 1.875rem;
}

@media screen and (max-width: 575px) {
  .modal.schedule-modal .modal-dialog .modal-content .back {
    position: absolute;
    top: 10px;
    left: 10px;
  }

  .modal.schedule-modal .modal-dialog .modal-content .modal-close {
    position: absolute;
    right: 10px;
    top: 10px;
  }
}

.modal.information-modal .modal-dialog .modal-content .popup-cross-icon {
  display: none;
}

.datepicker {
  position: relative;
}

.datepicker .form-control {
  padding-left: 2.8125rem;
}

.datepicker>span {
  width: 31px;
  height: 31px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  background: #fff url(../images/icons/calendar.png) center center no-repeat;
  background-size: 14px;
  position: absolute;
  top: 50%;
  left: 6px;
  transform: translateY(-50%);
  z-index: 1;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.time-select {
  position: relative;
}

.time-select>span {
  width: 31px;
  height: 31px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  background: #fff url(../images/icons/calendar-clock-blue.png) center center no-repeat;
  background-size: 14px;
  position: absolute;
  top: 50%;
  left: 6px;
  transform: translateY(-50%);
  z-index: 1;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.flatpickr-day.selected {
  background: #00b3e2;
  color: #fff;
}

.flatpickr-weekdays {
  padding-top: 10px;
}

.mCSB_scrollTools .mCSB_draggerRail {
  width: 5px !important;
  background: var(--textcolor) !important;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 5px !important;
  background: #00b3e2 !important;
  height: auto;
}

.mCSB_inside>.mCSB_container {
  margin-right: 12px;
}

.bs-tooltip-auto[x-placement^=right] .arrow::before,
.bs-tooltip-right .arrow::before {
  border-right-color: var(--primary);
}

.tooltip-inner {
  background-color: var(--primary);
}

.nav-tabs {
  border: 0;
  margin-bottom: 1.6875rem;
}

.nav-tabs .nav-link {
  color: var(--primary);
  background-color: #fff;
  border-radius: 10px;
  font-size: 1rem;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0.8125rem 1.125rem;
}

.nav-tabs .nav-link span {
  min-width: 23px;
  height: 23px;
  border-radius: 100%;
  color: var(--primary);
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-color: #dcf5f7;
}

.nav-tabs .nav-link:not(:last-child) {
  margin-right: 11px;
}

.nav-tabs .nav-link.active {
  background-color: var(--primary);
  color: #fff !important;
}

.nav-tabs .nav-link.active span {
  background-color: #3ac8cf;
  color: #fff;
}

.nav-tabs.inner-tabs {
  border-bottom: 1px solid var(--primary);
  max-width: 328px;
  justify-content: space-between;
}

.nav-tabs.inner-tabs .nav-link {
  padding: 0;
  color: var(--secondary);
  font-size: 14px;
  background: transparent;
  padding: 10px 8px;
  border-bottom: 2px solid transparent;
  border-radius: 0;
}

.nav-tabs.inner-tabs .nav-link.active {
  border-color: var(--primary);
  color: var(--primary) !important;
}

@media screen and (max-width: 414px) {
  .nav-tabs {
    margin-bottom: 1.25rem;
  }

  .nav-tabs .nav-link {
    font-size: 0.875rem;
  }
}

.table {
  border-collapse: separate;
  border-spacing: 0px 15px;
}

.table .btn-primary {
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 6px;
  padding: 0 8px;
  height: 40px;
  line-height: 40px;
  max-width: 150px;
}

.table .btn-primary img {
  max-width: 16px;
}

.table .text-primary {
  color: var(--primary) !important;
}

.table td,
.table th {
  font-size: 14px;
  border: 0 !important;
  font-weight: 400;
  vertical-align: middle !important;
  padding: 1.125rem 0.5rem;
}

.table td:first-child,
.table th:first-child {
  padding-left: 1.5625rem;
}

@media screen and (max-width: 991px) {

  .table td,
  .table th {
    font-size: 13px;
  }

  .table td:first-child,
  .table th:first-child {
    padding-left: 0.5rem;
  }
}

.table .payment-method {
  display: flex;
  align-items: center;
}

.table .payment-method img {
  max-width: 24px;
}

.table .payment-method img:not(:last-child) {
  margin-right: 6px;
}

.table thead {
  background: var(--primary);
  border-radius: 10px;
}

.table thead th {
  color: #fff;
}

.table thead th:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.table thead th:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.table tbody td {
  color: var(--secondary);
  background-color: #fff;
  font-weight: 500;
}

.table tbody td:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.table tbody td:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

table.dataTable {
  border-spacing: 0px 15px;
  border: 0 !important;
}

table.dataTable thead th {
  padding: 1.125rem;
  font-weight: 400;
}

table.dataTable tbody td {
  padding: 1.125rem 0.5rem;
}

.dataTables_filter input {
  background-color: #fff !important;
  outline: none;
  border: 1px solid transparent !important;
  border-radius: 12px !important;
  opacity: 1;
  transition: all 0.2s;
  touch-action: manipulation;
  padding: 0 15px !important;
  color: var(--textcolor) !important;
  height: 50px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
  color: var(--secondary) !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
  background: var(--secondary) !important;
  border: 0 !important;
  color: #fff !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  background: var(--primary) !important;
  border: 0 !important;
  color: #fff !important;
}

.header {
  position: fixed;
  z-index: 999;
  width: 100%;
  top: 35px;
  transition: .5s ease all;
}

.header__wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  transition: .5s ease all;
  background-color: #fff;
  padding: 15px 28px 15px 20px;
  border-radius: 15px;
  transition: .5s ease all;
}

.header ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
}

.header ul li {
  display: flex;
  align-items: center;
}

.header ul li:not(:last-child) {
  margin-right: 1.0625rem;
}

.header ul li span {
  width: 2.25rem;
  min-width: 2.25rem;
  height: 2.25rem;
  border-radius: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-right: 7px;
  background: var(--default);
}

.header ul li img {
  width: 17px;
}

.header ul li a {
  color: var(--gray);
  position: relative;
}

.header ul li:last-child span {
  background: var(--primary);
}

.header__left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
}

.header__left ul {
  margin-left: 3rem;
}

.header__left ul li:not(:last-child) {
  margin-right: 2.1875rem;
}

.header__left ul li a:after {
  content: "";
  position: absolute;
  height: 2px;
  width: 0%;
  left: 0;
  bottom: -4px;
  background: var(--primary);
  transition: .4s ease all;
}

.header__left ul li a:hover:after {
  width: 100%;
}

.header__contact {
  margin-left: 1.6875rem;
  box-sizing: content-box;
  width: 33px;
  height: 35px;
  border-radius: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.header__contact img {
  width: 15px;
  position: relative;
  z-index: 2;
  transition: .4s ease all;
}

.header__contact:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 35px;
  height: 35px;
  background: rgba(23, 190, 199, 0.5);
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}

.header__contact:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 35px;
  height: 35px;
  background: #17bec7;
  border-radius: 50%;
  transition: all 200ms;
}

@media screen and (min-width: 1025px) {
  .header__contact:hover img {
    transform: rotate(45deg);
  }
}

.header__menu-icon {
  cursor: pointer;
  z-index: 999;
  margin-left: 1.25rem;
  position: relative;
  right: 0;
  left: auto;
  display: none;
}

.header__menu-icon span {
  width: 26px;
  height: 2px;
  background: var(--primary);
  display: block;
  margin-bottom: 4px;
  transition: all .3s;
}

.header__menu-icon span:nth-child(3) {
  width: 16px;
  position: relative;
}

.header__menu-icon:hover span:nth-child(3) {
  width: 26px;
}

.header.sticky {
  top: 0;
  background: #fff;
}

.header.sticky:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--primary);
  left: 0;
  bottom: 0;
}

@media screen and (max-width: 1200px) {
  .header nav ul li:not(:last-child) {
    margin-right: 1.25rem;
  }
}

@media screen and (max-width: 991px) {
  .header__menu-icon {
    display: block;
  }

  .header nav {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 0%;
    overflow: auto;
    transition: .5s all ease;
    border-top: 2px solid transparent;
    border-bottom: 2px solid transparent;
    left: 0;
    background: var(--primary);
    top: 0;
    visibility: hidden;
    transition: .5s all ease-in-out;
  }

  .header nav ul {
    padding-top: 3.4375rem;
    padding-bottom: 1.5625rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .header nav ul li {
    min-width: 110px;
  }

  .header nav ul li a {
    color: #fff;
  }

  .header nav ul li:not(:last-child) {
    margin: 0 0 1.5625rem 0;
  }

  .header__left ul {
    margin-left: 1.5625rem;
  }

  .header__left ul li:not(:last-child) {
    margin-right: 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .header {
    top: 20px;
  }

  .header__wrapper {
    padding: 0.625rem 0.9375rem;
  }
}

@media screen and (max-width: 575px) {
  .header__left--logo {
    width: 80px;
  }
}

@media screen and (max-width: 991px) {
  .menu-active .header nav {
    height: 100%;
    visibility: visible;
  }

  .menu-active .header__menu-icon span {
    background: #fff;
  }

  .menu-active .header__menu-icon span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
    -webkit-transform: rotate(45deg) translate(5px, 5px);
    -moz-transform: rotate(45deg) translate(5px, 5px);
    -ms-transform: rotate(45deg) translate(5px, 5px);
    -o-transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-active .header__menu-icon span:nth-child(2) {
    opacity: 0;
  }

  .menu-active .header__menu-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
    width: 26px;
    -webkit-transform: rotate(-45deg) translate(4px, -4px);
    -moz-transform: rotate(-45deg) translate(4px, -4px);
    -ms-transform: rotate(-45deg) translate(4px, -4px);
    -o-transform: rotate(-45deg) translate(4px, -4px);
  }
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

.footer {
  background: var(--secondary);
  padding: 5rem 0 0 0;
  padding-top: 13.4375rem;
}

.footer p.poweredBy {
  color: rgba(255, 255, 255, 0.39);
  margin: 2.1875rem 0 0 0;
  line-height: 1.3;
}

.footer h5 {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  margin-bottom: 2.0625rem;
}

.footer__links {
  display: flex;
  justify-content: space-between;
}

.footer__links ul {
  list-style: none;
}

.footer__links ul li,
.footer__links ul a {
  color: rgba(255, 255, 255, 0.39);
  text-decoration: none;
}

.footer__links ul li:not(:last-child) {
  margin-bottom: 1.25rem;
}

.footer__links ul.contacts li {
  position: relative;
  padding-left: 35px;
}

.footer__links ul.contacts li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  width: 22px;
  height: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.footer__links ul.contacts li.phone:before {
  background: url(../images/icons/circle-phone.png) center center no-repeat;
  background-size: 100%;
}

.footer__links ul.contacts li.email:before {
  background: url(../images/icons/circle-envelope.png) center center no-repeat;
  background-size: 100%;
}

.footer__social {
  padding-top: 1.25rem;
}

.footer__social h5 {
  margin-bottom: 1.5rem;
}

.footer__social ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
  padding-left: 0.875rem;
}

.footer__social ul li:not(:last-child) {
  margin: 0 1.25rem 0 0;
}

.footer__social ul li a {
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  width: 2.8125rem;
  height: 2.8125rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  border: 1px solid var(--primary);
  font-size: 1.375rem;
}

@media screen and (min-width: 1025px) {
  .footer__social ul li a:hover {
    color: #fff !important;
    border-color: #fff;
  }
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 3.75rem;
  width: 100%;
  padding: 1.25rem 0;
  background: #162040;
}

.footer__bottom p {
  color: rgba(255, 255, 255, 0.39);
  margin: 0;
  line-height: 1;
}

.footer__bottom ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
}

.footer__bottom ul li:not(:last-child) {
  margin-right: 1.875rem;
}

.footer__bottom ul li a {
  color: rgba(255, 255, 255, 0.39);
  text-decoration: none;
}

@media screen and (max-width: 991px) {
  .footer {
    padding: 9.375rem 0 0 0;
  }

  .footer__logo {
    text-align: center;
    margin-bottom: 2.5rem;
  }

  .footer__logo img {
    max-width: 200px;
  }
}

@media screen and (max-width: 575px) {
  .footer__logo img {
    max-width: 160px;
  }

  .footer__links {
    flex-direction: column;
    text-align: center;
  }

  .footer__links>div {
    margin-bottom: 1.5625rem;
  }

  .footer__links ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  .footer__links ul li {
    width: 35%;
    margin-bottom: 0.9375rem !important;
  }

  .footer__links ul.contacts {
    flex-direction: column;
  }

  .footer__links ul.contacts li {
    margin-bottom: 1.5625rem !important;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  .footer__links ul.contacts li:before {
    position: static;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    margin-right: 1rem;
  }

  .footer__social {
    padding-left: 0;
  }

  .footer__social ul li {
    width: auto !important;
  }

  .footer__bottom {
    margin-top: 1.5625rem;
  }

  .footer__bottom .d-flex {
    flex-direction: column-reverse;
  }

  .footer__bottom .d-flex p {
    margin-top: 1.25rem;
  }
}

@media screen and (max-width: 414px) {
  .footer__links ul li {
    width: 50%;
  }
}

.no-scroll {
  overflow: hidden;
}

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

.loadmore,
.loadmore2 {
  margin: 1.25rem 0 0 0;
}

.loadmore a,
.loadmore2 a {
  width: 250px !important;
  border-radius: 20px !important;
}

.link {
  font-size: 1rem;
  font-weight: 600;
}

.load-items-container>div:not(:first-child),
.load-items-container2>div:not(:first-child) {
  padding-top: 2.5rem;
  margin-top: 2.5rem;
  position: relative;
}

.load-items-container>div:not(:first-child) .delete,
.load-items-container2>div:not(:first-child) .delete {
  top: 0;
}

.modal-open {
  position: fixed;
}

.text-primary {
  color: #00b3e2 !important;
}

.text-secondary {
  color: var(--secondary) !important;
}

.pagination-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding-top: 1.875rem;
}

.pagination-wrapper p {
  font-weight: 500;
  color: var(--secondary);
  margin: 0;
  margin-right: 0.8125rem;
}

.pagination-wrapper p span {
  color: var(--primary);
  margin-right: 6px;
}

.pagination-wrapper .pagination li a {
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: block;
}

.pagination-wrapper .pagination li:not(:last-child) {
  margin-right: 0.4375rem;
}

.pagination-wrapper .pagination li a.prev {
  background: url(../images/icons/arrow-right-blue.png) center center no-repeat;
  background-size: 100%;
  transform: scaleX(-1);
}

.pagination-wrapper .pagination li a.next {
  background: url(../images/icons/arrow-right-blue.png) center center no-repeat;
  background-size: 100%;
}

.pagination-wrapper .pagination li:hover {
  opacity: .7;
}

h2.section-title,
h3.section-title {
  font-size: 2.625rem;
  margin-bottom: 2.1875rem;
  line-height: 1.2;
}

h2.section-title span,
h3.section-title span {
  color: var(--primary);
}

@media screen and (max-width: 767px) {

  h2.section-title,
  h3.section-title {
    font-size: 2.1875rem;
    margin-bottom: 1.375rem;
  }
}

@media screen and (max-width: 575px) {

  h2.section-title,
  h3.section-title {
    font-size: 1.875rem;
  }
}

.modal-open .schedule-link-wrapper {
  display: none;
}

.schedule_link {
  width: 4.0625rem;
  height: 4.0625rem;
  border-radius: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg class='calendarSVG--pCcB4' data-name='calendar' height='34px' width='33px' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40.94 42.75'%3E%3Ctitle%3Ecalendar%3C/title%3E%3Cpath d='M41.23,7.7H37.72v4a3.06,3.06,0,1,1-6.13,0v-4H17.17v4a3.06,3.06,0,1,1-6.13,0v-4H7.49a3.6,3.6,0,0,0-3.6,3.64V42.86a3.6,3.6,0,0,0,3.6,3.64H41.23a3.6,3.6,0,0,0,3.6-3.64V11.34A3.6,3.6,0,0,0,41.23,7.7Zm1.51,35.16a1.51,1.51,0,0,1-1.51,1.53H7.49A1.51,1.51,0,0,1,6,42.86V18.58H42.78V42.86h0ZM14.1,13.19a1.51,1.51,0,0,0,1.51-1.53V5.27a1.51,1.51,0,1,0-3,0v6.38A1.51,1.51,0,0,0,14.1,13.19Zm20.56,0a1.51,1.51,0,0,0,1.51-1.53V5.27a1.51,1.51,0,1,0-3,0v6.38A1.57,1.57,0,0,0,34.66,13.19ZM17.39,20.54v5.91H23V20.54Zm8.5,0v5.91h5.64V20.54Zm8.42,0v5.91H40V20.54ZM8.93,28.48v5.91h5.64V28.48Zm8.44,0v5.91H23V28.48Zm8.5,0v5.91h5.64V28.48Zm8.42,0v5.91h5.64V28.48Zm-25.37,8v5.91h5.64V36.51Zm8.44,0v5.91H23V36.51Zm8.5,0v5.91h5.64V36.51Z' transform='translate(-3.89 -3.75)' style='fill: %23fff;'%3E%3C/path%3E%3C/svg%3E");
  position: fixed;
  background-position: center;
  background-color: var(--primary);
  background-repeat: no-repeat;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  background-size: 50%;
}

.custom-tooltip {
  position: fixed;
  z-index: 999;
  background: #fff;
  border-radius: 8px;
  text-align: center;
  padding: 0.9375rem;
  padding-bottom: 1.25rem;
  max-width: 220px;
  bottom: 90px;
  right: 21px;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.34);
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.34);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.34);
}

.custom-tooltip span {
  width: 13px;
  height: 13px;
  position: absolute;
  right: 0;
  top: 0;
  background: url(../images/icons/cross-circle.png) center center no-repeat;
  background-size: 100%;
  right: 10px;
  top: 11px;
  cursor: pointer;
}

.custom-tooltip:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 13px solid transparent;
  border-right: 13px solid transparent;
  border-top: 25px solid #fff;
  right: 40px;
  bottom: -20px;
  transform: rotate(-22deg);
}

.custom-tooltip .icon {
  width: 40px;
  margin: auto;
}

.custom-tooltip p {
  color: #ff3942;
  margin: 0.625rem 0;
}

.custom-tooltip .btn {
  width: 100%;
  border-radius: 0;
  font-size: 14px;
  height: 34px;
  line-height: 34px;
}

@media screen and (max-width: 991px) {
  .custom-tooltip {
    bottom: 70px;
  }

  .custom-tooltip:before {
    right: 32px;
  }
}

.filters {
  display: flex;
  align-items: center;
}

.filters__filter {
  background: #fff;
  border-radius: 17px;
  height: 60px;
  width: 170px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
}

.filters>div:not(:last-child) {
  margin-right: 1.0625rem;
}

.filters img {
  width: 18px;
  margin-right: 5px;
}

.top-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
  flex-wrap: nowrap;
  margin-bottom: 2.5rem;
}

.top-head .icon {
  width: 7.125rem;
  height: 7.125rem;
  border-radius: 100%;
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary);
  margin-right: 1.25rem;
}

.top-head .icon img {
  max-width: 35px;
}

@media screen and (min-width: 415px) {
  .top-head.stack-on-414 {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media screen and (max-width: 991px) {
  .top-head {
    margin-bottom: 1.875rem;
  }

  .top-head .icon {
    width: 5rem;
    height: 5rem;
    margin-right: 1rem;
  }

  .top-head .icon img {
    max-width: 25px;
  }
}

@media screen and (max-width: 575px) {
  .top-head {
    flex-direction: column;
    justify-content: start;
    align-items: flex-start;
  }

  .top-head .icon {
    width: 3.75rem;
    height: 3.75rem;
    margin: 0;
    margin-bottom: 1.25rem;
  }

  .top-head .icon img {
    max-width: 20px;
  }
}

.content-box {
  border: 1px solid #e1e1e1;
  background: #fff;
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
  position: relative;
  overflow: hidden;
}

.content-box__body {
  padding: 2.8125rem 1.875rem;
}

@media screen and (max-width: 767px) {
  .content-box__body {
    padding: 1.5625rem;
  }
}

.main-banner {
  position: relative;
  padding-top: 12.1875rem;
  padding-bottom: 6.25rem;
}

.main-banner .container {
  position: relative;
  z-index: 3;
}

.main-banner>img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
}

.main-banner:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(233, 250, 251, 0.8);
  left: 0;
  top: 0;
  z-index: 1;
  background-size: 100%;
}

.main-banner:after {
  content: "";
  position: absolute;
  width: 960px;
  height: 631px;
  background: url(../images/bg/main-banner-bg.png) right top no-repeat;
  right: 0;
  top: 0;
  z-index: 2;
  background-size: 100%;
}

.main-banner__desc {
  max-width: 520px;
}

.main-banner__desc h1 {
  margin-bottom: 1.875rem;
  line-height: 1.2;
}

.main-banner__desc p {
  margin-bottom: 1.875rem;
}

.main-banner__search-box {
  background-color: #fff;
  border-radius: 25px;
  margin-right: 3.75rem;
  padding-top: 1.875rem;
  overflow: hidden;
}

.main-banner__search-box--title {
  font-size: 1.5rem;
  font-weight: 600;
  padding-bottom: 2.75rem;
  padding-left: 40px;
  background: url(../images/icons/search.png) left top no-repeat;
  background-size: 30px;
  margin: 0 1.875rem;
}

.main-banner__search-box .control-label {
  font-size: 14px;
  margin-bottom: 10px;
}

.main-banner__search-box .form-group-wrapper {
  padding: 0 1.875rem;
}

.main-banner__search-box .btn {
  border-radius: 0;
}

.main-banner__search-box .btn img {
  width: 20px;
  margin-left: 0.625rem;
  position: static;
}

@media screen and (max-width: 1200px) {
  .main-banner:after {
    width: 850px;
  }
}

@media screen and (max-width: 991px) {
  .main-banner .row {
    flex-direction: column-reverse;
  }

  .main-banner__search-box {
    margin: 0 0 1.875rem 0;
  }

  .main-banner__search-box--title {
    margin: 0 1.25rem;
  }

  .main-banner__search-box .form-group-wrapper {
    padding: 0 1.25rem;
  }

  .main-banner__desc {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .main-banner__desc .button-row {
    justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .main-banner {
    padding-top: 8.75rem;
    padding-bottom: 3.125rem;
  }
}

@media screen and (max-width: 575px) {
  .main-banner__desc {
    text-align: center;
  }

  .main-banner__desc .btn {
    width: 100%;
  }
}

.popular-searches {
  background: #fff;
  padding-top: 7.5rem;
}

.popular-searches h2 {
  font-size: 1.875rem;
  text-align: center;
  font-weight: 400;
}

.popular-searches ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 2.3125rem;
  list-style: none;
}

.popular-searches ul li {
  margin: 0 10px 10px 0;
}

.popular-searches ul li a {
  color: var(--primary);
  padding: 1.375rem 1.875rem;
  border-radius: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: #eaf9fa;
}

@media screen and (min-width: 1025px) {
  .popular-searches ul li a:hover {
    background: var(--primary);
    color: #fff !important;
  }
}

@media screen and (max-width: 991px) {
  .popular-searches {
    padding-top: 3.75rem;
  }

  .popular-searches ul li a {
    padding: 1.0625rem 1.5625rem;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
  }
}

.start-future {
  background: #fff;
  padding: 4.8125rem 0 8.125rem;
}

@media screen and (min-width: 1201px) {
  .start-future .d-flex {
    padding: 0 2.375rem;
  }
}

.start-future__content {
  flex: 0 0 500px;
}

.start-future__image {
  flex: 1;
  margin-right: 5.3125rem;
  position: relative;
  z-index: 1;
  text-align: center;
}

.start-future__image:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 300px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  background: #e9fafb;
  border-radius: 15px;
  z-index: -1;
}

.start-future__image--dot {
  position: absolute;
  width: 94px;
  height: 77px;
}

.start-future__image--dot.top {
  right: -51px;
  top: 71px;
  background: url(../images/icons/dots-gray.png) left top no-repeat;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -2;
}

.start-future__image--dot.bottom {
  left: 0;
  bottom: 0;
  background: url(../images/icons/dots-blue.png) left top no-repeat;
  background-repeat: no-repeat;
  background-size: contain;
  left: -51px;
  bottom: -15px;
  z-index: -2;
}

.start-future__image span {
  position: absolute;
}

@media screen and (max-width: 991px) {
  .start-future {
    padding: 3.125rem 0 4.375rem;
  }

  .start-future .d-flex {
    flex-direction: column;
  }

  .start-future__image {
    margin: 0 0 3.125rem 0;
  }

  .start-future__content {
    width: 100%;
    flex: none;
    text-align: center;
  }

  .start-future__content .button-row {
    justify-content: center;
  }
}

.card {
  border: 1px solid #e1e1e1;
  border-radius: 25px;
  overflow: hidden;
  background: #fff;
}

.card__inner {
  padding: 1.875rem 1.625rem 0 1.625rem;
}

.card__label {
  color: var(--primary);
  padding: 0.75rem 0.625rem;
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: #eaf9fa;
  margin-bottom: 1.5625rem;
  width: 7.5rem;
}

.card__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.card p {
  margin-bottom: 1.25rem;
}

.card ul {
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
  list-style: none;
}

.card ul li {
  font-weight: 500;
}

.card ul li:last-child {
  color: var(--primary);
  font-weight: 600;
}

.card__location {
  padding-left: 23px;
  background: url(../images/icons/marker.png) left center no-repeat;
  background-size: 6%;
  margin: 0;
}

.card .inline-buttons {
  margin-top: 0;
  display: flex;
  align-items: center;
}

.card .inline-buttons .btn {
  width: 50%;
  border-radius: 0;
}

.card .inline-buttons .btn:first-child {
  border-bottom-left-radius: 25px;
}

@media screen and (max-width: 767px) {
  .card__inner {
    padding: 1.25rem 1.25rem 0 1.25rem;
  }

  .card__label {
    padding: 0.5rem;
    border-radius: 8px;
    margin-bottom: 1.25rem;
    width: 7.5rem;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
  }

  .card__title {
    font-size: 1.25rem;
  }
}

.job-offers {
  padding-top: 6.875rem;
}

.job-offers .section-title {
  margin-bottom: 0.625rem;
}

.job-offers .row>div {
  margin-bottom: 3.4375rem;
}

@media screen and (max-width: 991px) {
  .job-offers {
    padding-top: 3.75rem;
  }
}

@media screen and (max-width: 767px) {
  .job-offers .row>div {
    margin-bottom: 2.1875rem;
  }
}

.subscribeus-wrapper {
  position: relative;
  top: 138px;
}

.subscribeus-wrapper__subscribe-us {
  height: 260px;
  padding: 3rem;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #fff;
  z-index: 2;
}

.subscribeus-wrapper__subscribe-us:before {
  content: "";
  position: absolute;
  width: 67%;
  height: 225%;
  background: var(--primary);
  left: -83px;
  z-index: -1;
  transform: rotate(20deg);
  top: -196px;
}

.subscribeus-wrapper__subscribe-us h3 {
  color: #fff;
  max-width: 380px;
  font-weight: 400;
  margin-right: 4.6875rem;
  margin-bottom: 0;
}

.subscribeus-wrapper__subscribe-us .form-group {
  display: flex;
  align-items: center;
  margin: 0;
  background: #fff;
  padding: 13px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  box-shadow: 2px 0px 22px 0px rgba(50, 50, 50, 0.16);
  -webkit-box-shadow: 2px 0px 22px 0px rgba(50, 50, 50, 0.16);
  -moz-box-shadow: 2px 0px 22px 0px rgba(50, 50, 50, 0.16);
}

.subscribeus-wrapper__subscribe-us .form-group .form-control {
  background: transparent;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border: 0 !important;
}

.subscribeus-wrapper__subscribe-us .form-group .btn {
  min-width: 10.625rem;
}

@media screen and (max-width: 1200px) {
  .subscribeus-wrapper__subscribe-us h3 {
    max-width: 260px;
    margin-right: 1.25rem;
  }
}

@media screen and (max-width: 991px) {
  .subscribeus-wrapper {
    top: 62px;
  }

  .subscribeus-wrapper__subscribe-us {
    height: auto;
  }

  .subscribeus-wrapper__subscribe-us:before {
    top: -120px;
  }

  .subscribeus-wrapper__subscribe-us h3 {
    max-width: 200px;
  }

  .subscribeus-wrapper__subscribe-us .form-group {
    padding: 8px 13px;
  }

  .subscribeus-wrapper__subscribe-us .form-group .btn {
    min-width: auto;
  }
}

@media screen and (max-width: 767px) {
  .subscribeus-wrapper__subscribe-us {
    flex-direction: column;
    align-items: start;
    padding: 1.5625rem;
  }

  .subscribeus-wrapper__subscribe-us::before {
    width: 78%;
  }

  .subscribeus-wrapper__subscribe-us .flex-grow-1 {
    width: 100%;
  }

  .subscribeus-wrapper__subscribe-us h3 {
    width: 100%;
    margin: 0 0 1.25rem 0;
  }
}

@media screen and (max-width: 414px) {
  .subscribeus-wrapper__subscribe-us .form-group {
    flex-direction: column;
  }

  .subscribeus-wrapper__subscribe-us .form-group .btn {
    width: 100%;
    margin-top: 1.5625rem;
  }

  .subscribeus-wrapper__subscribe-us::before {
    width: 90%;
  }
}

.inner-banner {
  position: relative;
  z-index: 1;
  min-height: 475px;
  padding-top: 11.25rem;
}

.inner-banner>img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
}

.inner-banner .container {
  position: relative;
  z-index: 2;
}

.inner-banner:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--bgcolor);
  opacity: 80%;
  left: 0;
  top: 0;
  z-index: 1;
}

.inner-banner__caption {
  position: relative;
  text-align: center;
  padding: 0 15px;
  z-index: 1;
  max-width: 820px;
  margin: auto;
}

.inner-banner__caption h1 {
  margin-bottom: 2rem;
}

.inner-banner__caption p {
  margin: 0;
}

.inner-banner__job-search {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 14px;
  padding: 0.3125rem 1.5rem;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  -ms-border-radius: 14px;
  -o-border-radius: 14px;
  max-width: 590px;
  margin: 2.5rem auto;
}

.inner-banner__job-search .form-control {
  background: transparent;
  border: 0 !important;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  padding-left: 0;
}

.inner-banner__job-search .form-control::placeholder {
  font-weight: 400;
}

.inner-banner__job-search button {
  background: url(../images/icons/search.png) center center no-repeat;
  background-size: 100%;
  width: 25px;
  height: 25px;
  border: 0;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .inner-banner {
    padding-top: 7.5rem;
  }

  .inner-banner__job-search {
    margin: 1.25rem auto;
  }
}

@media screen and (min-width: 768px) {
  .post-jobs .inner-banner {
    padding-top: 13.75rem;
  }
}

.post-jobs .job-details {
  padding-top: 7.1875rem;
}

@media screen and (min-width: 768px) {
  .post-jobs .job-details .shape {
    position: absolute;
    width: 175px;
    height: 151px;
    background: url(../images/icons/shape-blue.png) left top no-repeat;
    background-size: 100%;
  }

  .post-jobs .job-details .shape.top {
    top: -55px;
    left: 3px;
  }

  .post-jobs .job-details .shape.bottom {
    bottom: -35px;
    right: 3px;
    opacity: .5;
  }
}

.post-jobs .job-details .top-head {
  flex-direction: row;
}

.post-jobs .job-details .top-head h4 {
  margin: 0;
}

.post-jobs .job-details .top-head .icon {
  width: 3.625rem;
  min-width: 3.625rem;
  height: 3.625rem;
  background: var(--primary);
  margin-right: 7px;
  margin-bottom: 0;
}

.post-jobs .job-details .top-head .icon img {
  width: 20px;
}

.post-jobs .job-details .top-head span {
  font-size: 1.125rem;
  font-weight: 500;
}

.post-jobs .job-details .content-box {
  max-width: 1030px;
  margin: auto;
  margin-top: 5.625rem;
  overflow: inherit;
}

.post-jobs .job-details .content-box .form-control {
  height: 50px;
}

.post-jobs .job-details .content-box .form-control::placeholder {
  color: #111c3c;
  opacity: 27%;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .post-jobs .job-details .content-box .form-control {
    height: 40px;
  }
}

.post-jobs .job-details .content-box textarea.form-control {
  height: 15rem;
}

.post-jobs .job-details .content-box .inline-buttons {
  overflow: hidden;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
}

.post-jobs .job-details .content-box .btn {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  width: 100%;
}

.post-jobs .job-details .content-box .btn.btn-default:hover {
  background: var(--secondary);
}

.post-jobs .job-details .content-box .checkbox {
  margin-right: 20px;
}

.post-jobs .job-details .content-box .checkbox input[type="checkbox"]+span {
  padding-left: 30px;
  color: var(--secondary);
}

.post-jobs .job-details .content-box .checkbox input[type="checkbox"]+span:after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 5px;
  top: -3px;
  left: 0;
  border: 2px solid #ffd100;
}

.post-jobs .job-details .content-box .checkbox input[type="checkbox"]:checked+span:after {
  background: #ffd100;
}

.post-jobs .job-details .bootstrap-select .dropdown-toggle {
  position: relative;
  background-color: #e8f9fa !important;
  outline: none;
  border: 1px solid transparent;
  border-radius: 12px;
  opacity: 1;
  transition: all 0.2s;
  touch-action: manipulation;
  padding: 0 15px;
  color: var(--textcolor);
  height: 50px;
  line-height: 50px;
}

@media screen and (max-width: 767px) {
  .post-jobs .job-details .bootstrap-select .dropdown-toggle {
    height: 40px;
    line-height: 40px;
  }
}

.post-jobs .job-details .bootstrap-select .dropdown-toggle:after {
  background: url(../images/icons/angle-small-down-blue.png) right center no-repeat;
  width: 16px;
  height: 16px;
  background-size: 100%;
}

.post-jobs .job-details .bootstrap-select .dropdown-toggle .filter-option-inner-inner {
  color: #111c3c;
  opacity: 27%;
  font-weight: 500;
}

.post-jobs .job-details .bootstrap-select .dropdown-menu .inner {
  padding: 0;
}

.post-jobs .job-details .flex-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.post-jobs .job-details .flex-wrapper>div {
  flex: 1;
}

.post-jobs .job-details .flex-wrapper>div:nth-child(2) {
  width: 35px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-jobs .job-details .flex-wrapper>div:nth-child(2) label {
  margin: 0;
}

.post-jobs .review-detail__box {
  background: #e9fafb;
  border: 1px solid #e1e1e1;
  border-radius: 28px;
  padding: 1.25rem;
  padding-top: 2.125rem;
  position: relative;
}

.post-jobs .review-detail__box:not(:last-child) {
  margin-bottom: 1.375rem;
}

.post-jobs .review-detail__box a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #17bec7 url(../images/icons/edit.png) center center no-repeat;
  background-size: 28px;
  position: absolute;
  top: 22px;
  right: 22px;
}

.post-jobs .review-detail__box a:hover {
  background-color: var(--secondary);
}

.post-jobs .review-detail__box h4 {
  margin-bottom: 1.375rem;
}

.post-jobs .review-detail__box ul {
  display: flex;
  margin-bottom: 5px;
  list-style: none;
}

.post-jobs .review-detail__box ul li {
  font-size: 1.125rem;
  position: relative;
  line-height: 1.8;
}

.post-jobs .review-detail__box ul li:first-child {
  margin-right: 4px;
  padding-right: 8px;
}

.post-jobs .review-detail__box ul li:first-child:after {
  content: ":";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.125rem;
}

.post-jobs .review-detail__box ul.no-dots li:first-child {
  padding: 0;
  margin: 0;
}

.post-jobs .review-detail__box ul.no-dots li:first-child:after {
  display: none;
}

@media screen and (max-width: 991px) {
  .post-jobs .inner-banner {
    min-height: 350px;
  }

  .post-jobs .job-details {
    padding-top: 3.75rem;
  }

  .post-jobs .job-details .content-box {
    margin-top: 2.5rem;
  }

  .post-jobs .job-details .shape {
    background-size: 50%;
  }

  .post-jobs .job-details .shape.bottom {
    bottom: -102px;
    right: -84px;
  }
}

@media screen and (max-width: 767px) {
  .post-jobs .inner-banner {
    min-height: 275px;
  }

  .post-jobs .skills .add-skills {
    width: 40px;
    height: 36px;
    border-radius: 8px;
    background-size: 16px;
    margin-left: 4px;
  }

  .post-jobs .skills__result li {
    width: 100%;
    height: 47px;
    border-radius: 11px;
  }

  .post-jobs .review-detail__box {
    padding-top: 2.5rem;
  }

  .post-jobs .review-detail__box li {
    font-size: 1rem;
  }

  .post-jobs .review-detail__box a {
    top: 8px;
    right: 14px;
    background-size: 16px;
    width: 30px;
    height: 30px;
    border-radius: 7px;
  }

  .post-jobs .job-details {
    padding-top: 2.1875rem;
  }

  .post-jobs .job-details .content-box .checkbox input[type="checkbox"]+span:after {
    width: 20px;
    height: 20px;
    top: -3px;
  }

  .post-jobs .job-details .content-box textarea.form-control {
    height: 4.375rem;
  }
}

@media screen and (max-width: 575px) {
  .post-jobs .job-details .top-head span {
    position: absolute;
    right: 20px;
    top: 20px;
  }
}

.skills .form-control {
  flex: 1;
}

.skills .add-skills {
  width: 80px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: #17bec7 url(../images/icons/plus-icon.png) center center no-repeat;
  background-size: 20px;
  margin-left: 10px;
}

.skills .add-skills:hover {
  background-color: var(--secondary);
}

.skills__result {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
  padding-top: 15px;
}

.skills__result li {
  width: 31%;
  height: 55px;
  padding: 0 8px 0 1.375rem;
  background: var(--primary);
  border-radius: 15px;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.9375rem;
}

.skills__result li:not(:last-child) {
  margin-right: 1.375rem;
}

.skills__result li span {
  width: 35px;
  height: 35px;
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: #4fced4 url(../images/icons/dustbin.png) center center no-repeat;
  background-size: 18px;
  cursor: pointer;
}

.skills__result li span:hover {
  background-color: #e42828;
}

.job-detail {
  border: 1px solid #e1e1e1;
  border-radius: 25px;
  overflow: hidden;
  position: relative;
}

.job-detail a.filter {
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: #e9fafb;
  text-decoration: none;
}

.job-detail a.filter .fa {
  font-size: 1.4375rem;
}

.job-detail a.filter .fill {
  display: none;
}

.job-detail a.filter.active .fill {
  display: block;
}

.job-detail a.filter.active .un-fill {
  display: none;
}

@media screen and (max-width: 575px) {
  .job-detail a.filter {
    width: 2.5rem;
    height: 2.5rem;
    background-size: 15px;
  }

  .job-detail a.filter.d-none {
    display: block !important;
  }
}

.job-detail__inner {
  padding: 1.25rem;
  background: var(--bgcolor);
}

.job-detail__specification {
  flex: 1;
}

.job-detail__specification--top-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.job-detail__specification h3 {
  font-size: 1.875rem;
}

.job-detail__specification--icon {
  margin-right: 1.0625rem;
}

.job-detail__specification--time {
  padding-left: 22px;
  background: url(../images/icons/clock.png) left center no-repeat;
  background-size: 14px;
}

.job-detail__specification--package {
  padding: 0.75rem 0.875rem;
  padding-left: 42px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  max-width: 255px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 1.25rem 0 1.5625rem 0;
  background: #fff url(../images/icons/wallet.png) left 16px center no-repeat;
  background-size: 20px;
}

.job-detail__specification--package span {
  font-size: 14px;
  color: var(--primary);
  margin-left: 3px;
}

.job-detail__specification--applied {
  padding: 0.75rem 0.875rem;
  padding-left: 42px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: #e9fafb url(../images/icons/check.png) left 16px center no-repeat;
  background-size: 18px;
  margin-left: 10px;
  font-size: 1rem;
  color: var(--primary);
}

.job-detail__specification ul {
  display: flex;
  align-items: center;
  list-style: none;
}

.job-detail__specification ul:not(:last-child) {
  margin-bottom: 1.25rem;
}

.job-detail__specification ul li {
  font-weight: 500;
}

.job-detail__specification ul li:first-child {
  color: var(--primary);
  margin-right: 4px;
}

.job-detail__desc {
  width: 322px;
}

.job-detail__desc--title {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 1.125rem;
}

.job-detail__desc P {
  font-size: 14px;
  line-height: 1.65;
}

.job-detail .inline-buttons {
  display: flex;
}

.job-detail .inline-buttons .btn {
  width: 50%;
  border-radius: 0;
  white-space: normal;
  line-height: unset;
}

.job-detail .inline-buttons .btn.btn-primary {
  border-bottom-left-radius: 25px;
}

.job-detail .inline-buttons .btn img {
  width: 30px;
}

@media screen and (max-width: 767px) {
  .job-detail__specification h3 {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 575px) {
  .job-detail__specification h3 {
    font-size: 1.25rem;
  }
}

.job-search {
  background: #f6ffff;
}

.job-search .inner-banner {
  padding-bottom: 5rem;
}

.job-search .filters {
  max-width: 905px;
  margin: auto;
}

.job-search .filters .bootstrap-select {
  min-width: 168px;
}

.job-search .filters>div:nth-child(3) .bootstrap-select {
  min-width: 200px;
}

.job-search .filters>div:nth-child(4) .bootstrap-select {
  min-width: 144px;
}

.job-search__detail {
  padding-top: 7.1875rem;
}

.job-search__detail .row .col-12 {
  margin-bottom: 2.5rem;
}

.job-search__detail .card__inner {
  padding-top: 4.125rem;
  padding-right: 1.125rem;
}

.job-search__detail .card ul {
  min-height: 85px;
  align-items: start;
  padding-top: 1.25rem;
}

.job-search .job-detail__inner {
  display: flex;
}

.job-search .job-detail .content-box {
  padding: 2.125rem 1.125rem;
  padding-right: 1.6875rem;
}

@media screen and (max-width: 1200px) and (min-width: 992px) {
  .job-search .job-detail__specification--icon {
    max-width: 70px;
  }

  .job-search .job-detail__specification h3 {
    font-size: 1.625rem;
  }

  .job-search .job-detail__specification ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .job-search .job-detail__desc {
    width: 280px;
  }

  .job-search .job-detail__desc .content-box {
    padding: 1.25rem;
  }

  .job-search__detail .card__inner {
    padding-top: 3.125rem;
  }
}

@media screen and (max-width: 991px) {
  .job-search .filters {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .job-search .filters__filter {
    margin: auto;
    height: 50px;
  }

  .job-search .filters>div {
    margin-bottom: 0.9375rem;
    width: 45%;
  }

  .job-search .filters>div:not(:last-child) {
    margin-right: 0;
  }

  .job-search .filters>div .bootstrap-select {
    min-width: auto !important;
  }

  .job-search .filters>div:first-child {
    width: 100%;
  }

  .job-search .inner-banner {
    padding-bottom: 3.125rem;
  }

  .job-search__detail {
    padding-top: 1.875rem;
  }

  .job-search__detail .card__inner {
    padding-top: 3.125rem;
  }

  .job-search .row .row>div {
    margin-bottom: 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .job-search .job-detail__inner {
    flex-direction: column;
  }

  .job-search .job-detail__desc {
    width: 100%;
  }

  .job-search .job-detail .inline-buttons .btn img {
    width: 20px;
  }

  .job-search__detail .card ul {
    min-height: 40px;
  }
}

@media screen and (max-width: 575px) {
  .job-search .filters>div {
    width: 49%;
  }
}

.dashboard-menu {
  max-width: 265px;
  flex: 0 0 265px;
  background-color: var(--primary);
  padding: 1.625rem 0;
  color: #fff;
  display: none;
  transition: .5s ease all;
  -webkit-transition: .5s ease all;
  -moz-transition: .5s ease all;
  -ms-transition: .5s ease all;
  -o-transition: .5s ease all;
}

.dashboard-menu__title {
  font-size: 1.25rem;
  font-weight: 600;
}

.dashboard-menu__toggler {
  width: 35px;
  height: 35px;
  border-radius: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: #fff url(../images/icons/list.png) center center no-repeat;
  background-size: 20px;
}

.dashboard-menu ul {
  padding-top: 6.25rem;
}

.dashboard-menu ul li:not(:last-child) {
  margin-bottom: 1.0625rem;
}

.dashboard-menu ul li a {
  position: relative;
  min-height: 2.625rem;
  padding: 0 2.1875rem;
  padding-right: 2.8125rem;
  color: #fff !important;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.dashboard-menu ul li a .fa {
  font-size: 1.5625rem;
}

.dashboard-menu ul li a p {
  width: 2rem;
  height: 2rem;
  border-radius: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: #fff;
  margin: 0;
  line-height: 1;
  background: #bf7d00;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}

.dashboard-menu ul li a span {
  margin-left: 1.25rem;
}

.dashboard-menu ul li a img {
  width: 22px;
  min-width: 22px;
}

@media screen and (min-width: 1025px) {
  .dashboard-menu ul li a:hover {
    background: var(--default);
  }
}

.dashboard-menu ul li.active a {
  background: var(--default);
}

.dashboard-menu.menu-close {
  max-width: 70px;
  flex: 0 0 70px;
}

.dashboard-menu.menu-close ul li a {
  padding: 0 1rem;
}

.dashboard-menu.menu-close ul li a img {
  margin: auto;
}

.dashboard-menu.menu-close ul li a span {
  display: none;
}

.dashboard-menu.menu-close ul li a p {
  display: none;
}

.dashboard-menu.menu-close .dashboard-menu__title {
  display: none;
}

@media screen and (max-width: 1200px) {
  .dashboard-menu {
    max-width: 215px;
    flex: 0 0 215px;
    position: absolute;
    height: 100%;
    z-index: 9;
  }

  .dashboard-menu__title {
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 991px) {
  .dashboard-menu__toggler {
    width: 30px;
    height: 30px;
    background-size: 15px;
  }

  .dashboard-menu.menu-close {
    width: 60px;
    flex: none;
    max-width: 60px;
  }
}

.dashboard .dashboard-menu {
  display: block;
}

.dashboard #loader-wrapper {
  display: none;
}

.dashboard .header {
  position: static;
  margin-bottom: 3rem;
}

.dashboard .header .container {
  max-width: 100%;
  padding: 0;
}

.dashboard .footer-wrapper {
  display: none;
}

.dashboard .main-wrapper {
  position: relative;
  display: flex;
  height: 100%;
  min-height: 100vh;
}

.dashboard .wrapper {
  flex: 1;
  width: 100%;
  padding: 0 2rem;
  padding-top: 1.0625rem;
  padding-bottom: 3.125rem;
}

.dashboard .grid-icon {
  position: relative;
  display: inline-block;
  width: 25px;
  height: 25px;
  transition: none;
  background: url(../images/svg/grid-icon.svg) left top no-repeat;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.dashboard .grid-icon.list {
  background: url(../images/svg/list-icon.svg) left top no-repeat;
}

@media screen and (max-width: 767px) {
  .dashboard .grid-icon {
    display: none;
  }
}

.dashboard__right .form-control {
  background: #fff;
}

.dashboard__right .flex-wrapper.ratio {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.dashboard__right .flex-wrapper.ratio>div {
  flex: 1;
}

.dashboard__right .flex-wrapper.ratio>div:nth-child(2) {
  width: 35px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard__right .flex-wrapper.ratio>div:nth-child(2) label {
  margin: 0;
}

.dashboard__right textarea {
  height: 15rem;
}

.dashboard__right .bootstrap-select .dropdown-toggle {
  position: relative;
  background-color: #fff !important;
  outline: none;
  border: 1px solid transparent;
  border-radius: 12px;
  opacity: 1;
  transition: all 0.2s;
  touch-action: manipulation;
  padding: 0 15px;
  color: var(--textcolor);
  height: 45px;
  line-height: 45px;
}

@media screen and (max-width: 767px) {
  .dashboard__right .bootstrap-select .dropdown-toggle {
    height: 40px;
    line-height: 40px;
  }
}

.dashboard__right .bootstrap-select .dropdown-toggle:after {
  background: url(../images/icons/angle-small-down-blue.png) right center no-repeat;
  width: 16px;
  height: 16px;
  background-size: 100%;
}

.dashboard__right .bootstrap-select .dropdown-toggle .filter-option-inner-inner {
  color: #111c3c;
  opacity: 27%;
  font-weight: 500;
}

.dashboard__right .bootstrap-select .dropdown-menu .inner {
  padding: 0;
}

.dashboard__right--head {
  border-bottom: 1px solid var(--primary);
  margin-bottom: 2.1875rem;
  padding-bottom: 1.4375rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.dashboard__right--head .delete {
  position: static;
}

.dashboard__right--title {
  font-size: 1.5rem;
  font-weight: 500;
  background-size: 22px;
  margin-bottom: 0;
  display: block;
  display: flex;
  align-items: center;
}

.dashboard__right--title img {
  margin-right: 10px;
  max-width: 20px;
  vertical-align: middle;
}

.dashboard__right--job-details>div {
  margin-bottom: 1.5rem;
}

.dashboard__right--job-details .job-detail:not(:last-child) {
  margin-bottom: 1.625rem;
}

.dashboard__right--job-details .job-detail__inner {
  background: #fff;
  padding: 1.875rem;
  padding-right: 0.9375rem;
  display: flex;
  align-items: start;
}

.dashboard__right--job-details .job-detail__inner .filter__wrapper {
  margin-left: 10px;
}

.dashboard__right--job-details .job-detail__inner .filter__wrapper ul {
  list-style: none;
}

.dashboard__right--job-details .job-detail__inner .filter__wrapper ul li:not(:last-child) {
  margin-bottom: 1rem;
}

.dashboard__right--job-details .job-detail__specification--package {
  background-color: var(--bgcolor);
  margin: 0 0 0 0.875rem;
}

.dashboard__right--job-details .job-detail__specification h3 {
  font-weight: 600;
}

@media screen and (min-width: 767px) {
  .dashboard__right--job-details.grid-view {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
  }

  .dashboard__right--job-details.grid-view>div {
    flex: 0 0 auto;
    padding: 0 12px;
    width: 50%;
  }
}

.dashboard__right--job-details.grid-view .job-detail__specification h3 {
  font-size: 1.4375rem;
}

@media screen and (max-width: 767px) {
  .dashboard__right--job-details.grid-view .job-detail__specification h3 {
    font-size: 1.1875rem;
  }
}

.dashboard__right .createPage {
  padding-top: 0;
}

.dashboard__right .createPage ::-webkit-file-upload-button {
  padding: 0 1.5rem;
  height: 48px;
  line-height: 48px;
}

.dashboard__right .createPage .button-row {
  margin-top: 0.9375rem;
}

.dashboard__right .createPage .button-row .btn-primary {
  min-width: 165px;
}

.dashboard__right .createPage .d-flex {
  max-width: 580px;
}

.dashboard__right .createPage__card {
  height: 160px;
  padding: 1.25rem;
  margin-bottom: 10px;
}

.dashboard__right .createPage__card--title {
  font-size: 1rem;
}

.dashboard__right .createPage__card span {
  width: 30px;
  height: 30px;
  border-width: 3px;
}

.dashboard__right .createPage__card--icon {
  color: #dceaf3;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.dashboard__right .createPage__card--icon .fa {
  font-size: 2.5rem;
}

.dashboard__right .createPage .card-wrapper.active .createPage__card--icon {
  color: var(--secondary);
}

.dashboard__right .profile-update {
  max-width: 900px;
  margin: auto;
  margin-bottom: 3.75rem;
  position: relative;
}

.dashboard__right .profile-update .checkbox {
  margin-right: 20px;
}

.dashboard__right .profile-update .checkbox input[type="checkbox"]+span {
  padding-left: 30px;
  color: var(--secondary);
}

.dashboard__right .profile-update .checkbox input[type="checkbox"]+span:after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 5px;
  top: -3px;
  left: 0;
  border: 2px solid #ffd100;
}

.dashboard__right .profile-update .checkbox input[type="checkbox"]:checked+span:after {
  background: #ffd100;
}

.dashboard__right .profile-update h4 {
  font-size: 1.375rem;
}

.dashboard.interview .dashboard__right--job-details.grid-view .job-detail__inner {
  padding-left: 10px;
}

.dashboard.interview .dashboard__right--job-details.grid-view .job-detail__specification--time {
  font-size: 14px;
}

.dashboard.interview .dashboard__right--job-details.grid-view .job-detail__specification--package {
  font-size: 14px;
}

.dashboard.interview .dashboard__right--job-details.grid-view .job-detail__specification--applied {
  font-size: 14px;
}

.dashboard.company p {
  font-size: 0.90625rem;
}

.dashboard.company .bootstrap-select .dropdown-toggle {
  height: 45px;
  line-height: 45px;
  padding: 0 15px;
  width: 100px;
  border-radius: 10px;
}

.dashboard.company .dashboard__right--head {
  border: 0;
  padding: 0;
}

.dashboard.company .dashboard__right--title img {
  max-width: 90px;
}

.dashboard.company .dashboard__right .main-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
  list-style: none;
  border-bottom: 1px solid var(--textcolor);
  padding-bottom: 3px;
  margin-bottom: 20px;
}

.dashboard.company .dashboard__right .main-links li:not(:last-child) {
  margin-right: 1.5625rem;
}

.dashboard.company .dashboard__right .main-links li a {
  color: var(--secondary);
  font-size: 15px;
}

.dashboard.company .dashboard__right .main-links li a span {
  font-size: 14px;
}

.dashboard.company .dashboard__right .main-links li.active a {
  color: var(--primary);
}

.dashboard.company .box {
  background-color: #fff;
  padding: 12px;
}

.dashboard.company .box .btn {
  height: 35px;
  line-height: 35px;
  border-radius: 10px;
  width: 65px;
  font-size: 14px;
}

.dashboard.company .box ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard.company .box ul:not(:last-child) {
  margin-bottom: 0.625rem;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid #e4e4e4;
}

.dashboard.company .box ul li {
  font-size: 14px;
}

.dashboard.company .box ul li a {
  font-size: 14px;
}

.dashboard.company .box ul li a:not(.btn) {
  color: var(--primary);
}

@media screen and (max-width: 1200px) {
  .dashboard .wrapper {
    padding-left: 5.3125rem;
    padding-right: 1.25rem;
  }

  .dashboard__right--job-details.grid-view .job-detail .d-flex {
    flex-wrap: wrap;
  }

  .dashboard__right--job-details.grid-view .job-detail__specification--time {
    width: 100%;
    margin-bottom: 10px;
  }

  .dashboard__right--job-details.grid-view .job-detail__specification--package {
    margin-left: 0;
  }
}

@media screen and (max-width: 991px) {
  .dashboard .header {
    margin-left: 10px;
  }

  .dashboard__right {
    padding-left: 10px;
  }

  .dashboard__right--job-details.grid-view .job-detail .d-flex {
    flex-wrap: wrap;
  }

  .dashboard__right--job-details.grid-view .job-detail__specification--package {
    width: 100%;
    max-width: 100%;
    margin-bottom: 10px;
  }

  .dashboard__right--job-details.grid-view .job-detail__specification--applied {
    width: 100%;
    margin: 0;
  }
}

@media screen and (max-width: 767px) {
  .dashboard__right--job-details.grid-view .job-detail ul {
    display: block;
  }
}

@media screen and (max-width: 575px) {
  .dashboard__right--head {
    margin-bottom: 1.5625rem;
    padding-bottom: 0.9375rem;
  }

  .dashboard__right--title {
    font-size: 1.25rem;
    font-weight: 500;
  }

  .dashboard__right--job-details .job-detail__inner {
    padding: 1.25rem;
    padding-top: 1.875rem;
    padding-right: 0.9375rem;
  }

  .dashboard__right--job-details .job-detail__specification ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .dashboard__right--job-details .job-detail__specification--time {
    margin-bottom: 0.625rem;
  }

  .dashboard__right--job-details .job-detail__specification--package {
    margin: 0 0 10px 0;
    max-width: 100%;
    width: 100%;
  }

  .dashboard__right--job-details .job-detail__specification--applied {
    width: 100%;
  }

  .dashboard__right--job-details .job-detail__specification--top-head {
    flex-direction: column-reverse;
    align-items: start;
  }

  .dashboard__right--job-details .job-detail__specification--top-head a {
    margin-left: auto;
    margin-bottom: 1.25rem;
  }

  .dashboard__right--job-details .job-detail__specification .d-flex {
    flex-direction: column;
    align-items: flex-start !important;
  }
}

@media screen and (max-width: 400px) {
  .dashboard .header__left--logo {
    max-width: 70px;
  }

  .dashboard .header ul li:not(:last-child) {
    margin-right: 0.625rem;
  }

  .dashboard .header ul li a {
    font-size: 0.875rem;
  }
}

.modal .schedule .modal-inner {
  position: relative;
}

.modal .schedule .custom-arrows__next {
  right: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  cursor: pointer;
  z-index: 1;
}

.modal .schedule .custom-arrows__prev {
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 1;
}

.modal .schedule .swiper-button-disabled {
  display: none;
}

.modal .schedule .logo {
  text-align: center;
  max-width: 85px;
  margin: auto;
  margin-bottom: 1.5625rem;
}

.modal .schedule .d-flex {
  margin-bottom: 1.5625rem;
}

.modal .schedule .d-flex>div {
  width: 273px;
  margin-right: 10px;
}

.modal .schedule .appointments-detail .main-slider .swiper {
  margin: 0 25px;
  padding: 10px 0;
}

.modal .schedule .appointments-detail .main-slider .nav-tabs {
  flex-wrap: nowrap;
  border: 0;
}

.modal .schedule .appointments-detail .main-slider .nav-tabs li {
  text-align: center;
}

.modal .schedule .appointments-detail .main-slider .nav-tabs li a.active {
  background: var(--default) !important;
  border-color: var(--default) !important;
}

.modal .schedule .appointments-detail .inner-scroll {
  max-height: 200px;
}

.modal .schedule .appointments-detail .appointment {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  background: #e5fdfd;
}

.modal .schedule .appointments-detail .appointment address {
  width: 200px;
  min-width: 200px;
  margin: 0 4.375rem 0 0;
}

.modal .schedule .appointments-detail .appointment address p {
  font-size: 14px;
  color: var(--secondary);
  margin-bottom: 0;
  line-height: 1.3;
}

.modal .schedule .appointments-detail .appointment__note {
  margin: 0;
  font-size: 0.9375rem;
}

.modal .schedule .appointments-detail .appointment__title {
  color: #00b3e2;
  font-size: 1.0625rem;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.modal .schedule .appointments-detail .appointment.no-avail {
  background: transparent;
}

.modal .schedule .appointments-detail .appointment.no-avail address p {
  color: var(--textcolor);
}

.modal .schedule .appointments-detail .appointment.no-avail .appointment__title {
  color: var(--textcolor);
}

.modal .schedule .appointments-detail .appointment__time {
  flex: 1;
}

.modal .schedule .appointments-detail .appointment__time .custom-arrows__next {
  right: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  cursor: pointer;
  z-index: 1;
}

.modal .schedule .appointments-detail .appointment__time .custom-arrows__prev {
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 1;
}

.modal .schedule .appointments-detail .appointment__time .swiper-button-disabled {
  display: none;
}

.modal .schedule .appointments-detail .appointment__time .swiper {
  width: 360px;
  margin: 0 30px;
}

.modal .schedule .appointments-detail .appointment__time p {
  margin-bottom: 10px;
  line-height: 1;
  color: var(--textcolor);
  font-size: 14px;
}

.modal .schedule .appointments-detail .appointment__time ul {
  list-style: none;
}

.modal .schedule .appointments-detail .appointment__time ul li a {
  font-size: 13px;
  border-radius: 2px;
  background-color: #3BB1DB;
  color: #fff;
  text-transform: uppercase;
  width: 75px;
  height: 35px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.modal .schedule .map-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: 100%;
  height: 70px;
  position: relative;
  top: 0;
  left: 0;
}

.modal .schedule .map-wrapper .map {
  position: absolute;
  width: 100%;
  height: 100%;
}

.modal .schedule .map-wrapper .map iframe {
  width: 100%;
  height: 100%;
}

.modal .schedule .map-wrapper button {
  background: rgba(11, 15, 21, 0.55);
  color: #fff;
  font-size: 14px;
  height: 100%;
  left: 0;
  position: absolute;
  text-transform: uppercase;
  transition: all .35s ease;
  width: 100%;
  z-index: 1;
  border: 0;
  outline: none;
  cursor: pointer;
}

.modal .schedule .map-wrapper button.list-view {
  display: none;
}

.modal .schedule .map-wrapper>div {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 3px;
  max-height: 52px;
  max-width: 148px;
  transition: all 0.2s linear;
  overflow: hidden;
  cursor: pointer;
}

.modal .schedule .map-wrapper>div:hover {
  max-width: 166px;
  max-height: 58px;
}

.modal .schedule.full-map .map-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
}

.modal .schedule.full-map .map-wrapper button {
  background: transparent;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 100px;
  height: 40px;
  font-weight: 600;
  color: #000;
  margin-left: auto;
  margin-right: 0;
}

.modal .schedule.full-map .map-wrapper button.list-view {
  display: block;
}

.modal .schedule.full-map .map-wrapper button.map-view {
  display: none;
}

.modal .schedule.full-map .map-wrapper .map {
  width: 100%;
  height: 100%;
}

.modal .schedule.full-map .map-wrapper>div {
  max-width: 100%;
  max-height: 100%;
}

.modal .information .top-head {
  padding: 10px 1rem !important;
}

.modal .information .appointment-detail {
  background: #f3f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem;
}

.modal .information .appointment-detail .image {
  padding: 8px 0 0.1875rem 0;
  padding-right: 0.9375rem;
  margin-right: 0.9375rem;
  border-right: 1px solid #d0d3d5;
}

.modal .information .appointment-detail .image img {
  max-height: 70px;
}

.modal .information .appointment-detail ul {
  list-style: none;
}

.modal .information .appointment-detail ul li {
  font-weight: 500;
  margin-bottom: 0.625rem;
}

.modal .information .appointment-detail ul li img {
  margin-right: 5px;
  width: 15px;
}

.modal .information .appointment-detail .btn {
  width: 100px;
  height: 28px !important;
  line-height: 28px !important;
}

.modal .information .modal-inner {
  padding-top: 0.9375rem !important;
}

.modal .information .modal-inner p {
  color: var(--secondary);
  margin: 0;
  line-height: 1;
  margin-right: 1.375rem;
}

.modal .information .modal-inner .nav-tabs {
  border: 0;
}

.modal .information .modal-inner .nav-tabs li:not(:last-child) {
  margin-right: 10px;
}

.modal .information .modal-inner .nav-tabs .nav-link {
  width: 90px;
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--lightgray);
  border: 0;
}

.modal .information .modal-inner .nav-tabs .nav-link.active {
  background: #00b3e2;
}

.modal .information .tab-content {
  margin-top: 0.75rem;
}

.modal .information .input-wrapper {
  display: flex;
}

.modal .information .input-wrapper>.form-control {
  text-align: center;
}

.modal .information .input-wrapper>.form-control:not(:last-child) {
  margin-right: 10px;
}

.modal .information .form-group {
  margin-bottom: 5px;
}

.modal .information .form-control {
  height: 32px !important;
  line-height: 32px !important;
}

.modal .information .button-row {
  margin-top: 0.625rem;
}

.modal .information .control-label {
  font-size: 14px;
  color: var(--lightgray);
  text-transform: capitalize;
  margin-bottom: 5px;
}

.modal .appointment-detail-modal .top-head {
  padding: 10px 10px 1.75rem !important;
}

.modal .appointment-detail-modal .top-head img {
  padding-top: 1.25rem;
}

.modal .appointment-detail-modal .social-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  display: none;
}

.modal .appointment-detail-modal .social-links .icon {
  height: 45px;
  width: 50px;
  border-radius: 5px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: #f3f4f4;
  padding: 0.875rem;
}

@media screen and (min-width: 1025px) {
  .modal .appointment-detail-modal .social-links .icon:hover {
    opacity: .7;
  }
}

.modal .appointment-detail-modal .modal-inner {
  padding-top: 2.8125rem;
}

.modal .appointment-detail-modal .modal-inner .bootstrap-select .dropdown-toggle {
  padding: 0 0.875rem !important;
}

.modal .appointment-detail-modal .modal-inner .bootstrap-select .dropdown-toggle:after {
  display: block !important;
}

.modal .appointment-detail-modal .modal-inner .bootstrap-select .dropdown-menu {
  max-width: 100% !important;
  min-width: 100% !important;
  width: 100% !important;
}

.modal .appointment-detail-modal label:not([class]) {
  font-size: 14px;
  font-weight: 500;
  padding: 0.75rem 1.625rem;
  background: #f3f4f4;
  border-radius: 4px;
  text-align: center;
  margin: 0;
  height: 44px;
  line-height: 22px;
}

.modal .appointment-detail-modal label:not([class]) img {
  width: 14px;
  margin-right: 10px;
}

.modal .appointment-detail-modal h3 {
  font-size: 1.875rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.modal .appointment-detail-modal P {
  margin-bottom: 1.125rem;
  line-height: 1.2;
}

.modal .appointment-detail-modal form {
  max-width: 350px;
  margin: auto;
}

.modal .appointment-detail-modal form .control-label {
  text-align: center;
  color: var(--lightgray);
}

@media screen and (max-width: 767px) {
  .modal .schedule .appointments-detail .appointment {
    flex-direction: column;
  }

  .modal .schedule .appointments-detail .appointment address {
    width: 100%;
    min-width: 100%;
    margin: 0 0 1.875rem 0;
  }

  .modal .schedule .appointments-detail .appointment__time .swiper {
    width: auto;
  }

  .modal .schedule .d-flex {
    flex-wrap: wrap;
  }

  .modal .schedule .d-flex>div {
    width: 49%;
    margin-right: 0;
  }

  .modal .schedule .d-flex .flatpickr-input {
    width: 100%;
  }

  .modal .schedule .d-flex a {
    width: 150px;
    margin: auto;
    margin-top: 1.5625rem;
  }

  .modal .appointment-detail-modal .d-flex {
    flex-direction: column;
    margin-bottom: 1.25rem !important;
  }

  .modal .appointment-detail-modal .d-flex label {
    height: auto;
  }

  .modal .appointment-detail-modal .d-flex div {
    margin-top: 1rem;
  }
}

@media screen and (max-width: 575px) {
  .modal .information .top-head {
    padding-top: 3.4375rem !important;
    align-items: center;
  }

  .modal .information .modal-inner .d-flex {
    flex-direction: column;
  }

  .modal .information .modal-inner p {
    margin: 0 0 1.25rem 0;
  }

  .modal .appointment-detail-modal .top-head {
    flex-direction: row;
  }

  .modal .schedule .d-flex {
    flex-wrap: wrap;
  }

  .modal .schedule .d-flex>div {
    width: 100%;
    margin-bottom: 20px;
  }

  .modal .schedule .d-flex .flatpickr-input {
    width: 100%;
  }
}

.jobs .nav-tabs {
  margin: 0;
}

.jobs .nav-tabs .nav-link {
  min-width: 124px;
  justify-content: space-between;
  padding: 0 8px;
  height: 40px;
}

.jobs__search {
  display: flex;
  align-items: center;
  flex: 1;
}

.jobs__search .form-control {
  background-color: #fff;
  flex: 1;
  margin: 0 10px;
  height: 40px;
  border-radius: 10px;
  padding-left: 1.5rem;
}

.jobs__search .form-control::placeholder {
  font-weight: 400;
  color: rgba(17, 28, 60, 0.43);
  font-size: 14px;
}

.jobs__search .btn {
  width: 145px;
  height: 40px;
  border-radius: 10px;
  font-size: 12px;
}

.jobs__detail--item {
  background-color: #fff;
  padding: 1.375rem;
  padding-right: 2.1875rem;
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: space-between;
  margin-top: 1.375rem;
  border-radius: 10px;
  position: relative;
}

.jobs__detail--item>div {
  height: 100%;
}

.jobs__detail--item>div:not(:last-child) {
  margin-right: 0.75rem;
}

.jobs__detail--item h6 {
  font-weight: 500;
  margin-bottom: 14px;
}

.jobs__detail--item ul {
  list-style: none;
}

.jobs__detail--item ul li {
  font-size: 14px;
  color: #687588;
}

.jobs__detail--item ul li:not(:last-child) {
  margin-bottom: 8px;
}

.jobs__detail--item .btn {
  min-width: 7.5rem;
}

.jobs__detail--item .list {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: #daf5f6 url(../images/icons/dotted-icon.png) center center no-repeat;
  margin-top: 26px;
}

@media screen and (max-width: 991px) {
  .jobs .nav-tabs .nav-link {
    min-width: 95px;
  }

  .jobs__search .btn {
    width: 100px;
  }
}

@media screen and (max-width: 767px) {
  .jobs .d-flex {
    flex-direction: column-reverse;
  }

  .jobs__search {
    width: 100%;
  }

  .jobs__search .form-control {
    margin-left: 0;
  }

  .jobs nav {
    width: 100%;
    margin-top: 1.25rem;
  }

  .jobs .nav-tabs {
    width: 100%;
    justify-content: space-between;
  }

  .jobs .nav-tabs .nav-link {
    width: 32%;
    margin: 0;
  }

  .jobs__detail--item {
    padding: 1.125rem;
    padding-top: 2.1875rem;
  }

  .jobs__detail--item .list {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 27px;
    height: 27px;
    margin: 0;
    background-size: 16px;
  }

  .jobs__detail--item>div {
    width: 48%;
  }

  .jobs__detail--item>div:not(:last-child) {
    margin-bottom: 20px;
    margin-right: 0;
  }

  .jobs__detail--item>div:nth-child(3) {
    width: 100%;
    text-align: center;
    margin: 0;
  }
}

@media screen and (max-width: 575px) {
  .jobs nav {
    width: 100%;
    margin-top: 1.25rem;
  }

  .jobs .nav-tabs {
    width: 100%;
    justify-content: space-between;
  }

  .jobs .nav-tabs .nav-link {
    width: 100%;
    margin: 0;
  }

  .jobs__detail--item>div {
    width: 100%;
  }
}

@media screen and (max-width: 414px) {
  .jobs .nav-tabs .nav-link {
    width: 100%;
    margin: 0 0 0.625rem 0;
  }
}

.billing .invoice .table td {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.job-interviews .table {
  border-spacing: 0px 8px;
}

.job-interviews .table td,
.job-interviews .table th {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  height: 54px;
}

.job-interviews .table tbody td {
  background-color: #e9fafb;
}

.job-interviews .content-box {
  padding: 1.25rem;
  padding-top: 2.125rem;
  border: 0;
}

.job-interviews .content-box h4 {
  margin-bottom: 1rem;
}

@media screen and (max-width: 991px) {

  .job-interviews .table td,
  .job-interviews .table th {
    min-height: 50px;
  }

  .job-interviews .content-box {
    padding: 1rem;
    padding-top: 1.25rem;
  }
}

@media screen and (max-width: 991px) {
  .job-interviews .row>div {
    margin-bottom: 1.25rem;
  }
}

@media screen and (max-width: 991px) {
  .table-responsive-lg .table {
    width: 900px;
  }
}

@media screen and (max-width: 575px) {
  .table-responsive-sm .table {
    width: 500px;
  }
}

:root {
  --errorColor: red;
  --stepNumber: 6;
  --containerWidth: 600px;
  --bgColor: #333;
  --inputBorderColor: lightgray;
}

::selection {
  color: #fff;
  background: var(--primary);
}

.post-jobs .content-box {
  width: 100%;
  overflow: hidden;
}

.post-jobs .content-box .button-row {
  margin-top: 0;
}

.post-jobs .content-box .inner {
  padding: 2.8125rem 1.875rem;
}

.post-jobs .content-box .inner.education-form {
  max-height: 630px;
}

.post-jobs .content-box .inner.education-form.active {
  overflow-y: scroll;
}

.post-jobs .content-box .inner.work-form {
  max-height: 890px;
}

.post-jobs .content-box .inner.work-form.active {
  overflow-y: scroll;
}

.post-jobs .content-box .field {
  margin-bottom: 13px;
}

.post-jobs .content-box__body {
  display: flex;
  width: calc(100% * var(--stepNumber));
  padding: 0;
}

.post-jobs .content-box__body .page {
  width: calc(100% / var(--stepNumber));
  transition: margin-left 0.3s ease-in-out;
}

.post-jobs .content-box__body .page .form-control {
  box-sizing: border-box;
  transition: border-color 150ms ease;
}

.post-jobs .content-box__body .page .form-control.invalid-input {
  border-color: #d7e5ee;
}

.post-jobs .content-box__body .page .button-row {
  margin-top: 13px;
}

.post-jobs .content-box__body .page .inline-buttons {
  margin-top: 13px;
}

.post-jobs .content-box__body .page .inline-buttons button {
  width: 50%;
  border-radius: 0;
}

.post-jobs .progress-bar {
  display: none;
}

@keyframes animate {
  100% {
    transform: scaleX(1);
  }
}

/* Mark input boxes that gets an error on validation: */
input.invalid {
  background-color: #ffdddd;
}

/* Hide all steps by default: */
.tab {
  display: none;
}

/* Make circles that indicate the steps of the form: */
.step {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbbbbb;
  border: none;
  border-radius: 50%;
  display: inline-block;
  opacity: 0.5;
  display: none;
}

/* Mark the active step: */
.step.active {
  opacity: 1;
}

/* Mark the steps that are finished and valid: */
.step.finish {
  background-color: #04AA6D;
}

.upload-image .profile {
  overflow: visible;
  box-shadow: 0px 1px 6px #9a9a9a;
  position: relative;
  width: 9.6875rem;
  height: 9.6875rem;
  z-index: 1;
  overflow: hidden;
  margin-bottom: 3.75rem;
}

@media screen and (max-width: 767px) {
  .upload-image .profile {
    margin-left: auto;
    margin-right: auto;
  }
}

.upload-image .profile span {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  width: 100%;
  padding: 0.625rem;
}

.upload-image .profile span:before {
  content: "";
  position: absolute;
  background: #ffffff;
  opacity: .8;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.upload-image .profile span.text {
  bottom: 50%;
  transform: translate(-50%, 50%);
  font-size: 1rem;
  font-weight: 800;
}

.upload-image .profile span.text:before {
  display: none;
}

.upload-image .profile span.inner-text {
  display: none;
  padding-top: 16px;
}

@media screen and (max-width: 991px) {
  .upload-image .profile span.inner-text {
    padding-top: 11px;
  }
}

.upload-image .profile.active span.inner-text {
  display: block;
}

.upload-image .profile.active span.text {
  display: none;
}

.upload-image .profile img {
  max-width: 100%;
  height: 100%;
  width: 100%;
}

.upload-image input[type='file'] {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  filter: alpha(opacity=0);
  opacity: 0;
  outline: none;
  cursor: pointer;
  display: block;
  z-index: 99;
}

.delete {
  position: absolute;
  right: 0;
  top: -38px;
  right: 20px;
  font-size: 22px;
  cursor: pointer;
  color: var(--primary);
}

.delete:hover {
  color: #dd5858;
}

.form-control-file span {
  display: block;
  margin-top: 10px;
}

::-webkit-file-upload-button {
  background-color: var(--primary);
  color: #fff;
  border: 0;
  padding: 0 2.125rem;
  height: 55px;
  line-height: 55px;
  cursor: pointer;
  border-radius: 17px;
}

.createPage {
  padding: 2.5rem 0;
}

.createPage .d-flex {
  max-width: 800px;
  margin: auto;
  margin-top: 3.125rem;
  padding-bottom: 1.875rem;
  margin-bottom: 1.875rem;
  position: relative;
}

.createPage .d-flex:after {
  content: "";
  position: absolute;
  width: 70%;
  height: 1px;
  background-color: var(--primary);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.createPage .d-flex>div {
  width: 48%;
}

.createPage__card {
  padding: 40px 20px 25px;
  border: 1px solid #d7e5ee;
  border-radius: 18px;
  background: #f5f9fb;
  text-align: center;
  height: 300px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-bottom: 45px;
  cursor: pointer;
}

@media screen and (max-width: 414px) {
  .createPage__card {
    height: 280px;
  }
}

.createPage__card--image {
  margin-bottom: 45px;
}

.createPage__card--image img.active {
  display: none;
}

.createPage__card--title {
  font-size: 18px;
}

.createPage__card span {
  position: absolute;
  width: 40px;
  height: 40px;
  top: -15px;
  right: -10px;
  border-radius: 50%;
  background: #f5f9fb;
  border: 4px solid #fff;
  color: #d7e5ee;
  display: flex;
  align-items: center;
  justify-content: center;
}

.createPage .card-wrapper .button-row {
  justify-content: center;
  flex-wrap: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: .4s ease all;
}

.createPage .edit {
  cursor: pointer;
  font-size: 1.875rem;
}

.createPage .edit:hover {
  color: var(--secondary);
}

.createPage .card-wrapper.active .createPage__card {
  border-color: var(--primary);
  background: #fff;
  border-width: 3px;
}

.createPage .card-wrapper.active .createPage__card span {
  background: var(--primary);
  border: 4px solid #fff;
  color: var(--white);
}

.createPage .card-wrapper.active .createPage__card .createPage__card--image img.active {
  display: block;
}

.createPage .card-wrapper.active .createPage__card .createPage__card--image img.unactive {
  display: none;
}

.createPage .card-wrapper.active .createPage__card .createPage__card--title {
  color: var(--primary);
}

.createPage .card-wrapper.active .button-row {
  opacity: 1;
  visibility: visible;
}

.createPage .button-row {
  justify-content: center;
}

.createPage .button-row .btn-primary {
  min-width: 200px;
}

@media screen and (max-width: 767px) {
  .createPage .d-flex {
    flex-direction: column;
  }

  .createPage .d-flex>div {
    width: 100%;
    margin-bottom: 2.5rem;
  }
}

.listing-page .dropdown-toggle {
  height: 45px;
  line-height: 45px;
  width: 120px;
  border-radius: 10px;
  margin-bottom: 10px;
  margin-top: 5px;
}

.listing-page .table img {
  max-width: 70px;
}

.detail-page .dropdown-toggle {
  width: 100%;
  height: 40px;
  line-height: 40px;
  border-radius: 12px;
}

.detail-page .flatpickr-input {
  background-color: var(--primary) !important;
}

.detail-page .flatpickr-input::placeholder {
  color: #fff;
}

.detail-page .summary-detail {
  padding-bottom: 1.875rem;
}

.detail-page .summary-detail ul {
  list-style: none;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--secondary);
}

.detail-page .summary-detail ul li {
  font-size: 1.125rem;
}

.detail-page .summary-detail ul li:first-child {
  font-weight: 600;
  min-width: 160px;
}

@media screen and (max-width: 575px) {
  .detail-page .summary-detail ul li:first-child {
    min-width: 130px;
  }
}

.detail-page .appointment-detail {
  max-width: 580px;
  margin: auto;
}

.detail-page .appointment-detail p.text-primary {
  font-size: 1.25rem;
}

@media screen and (max-width: 991px) {
  .detail-page .main-row>div:not(:last-child) {
    margin-bottom: 2.5rem;
  }
}

.create-account ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.create-account ul li {
  width: 49%;
}

.create-account ul li label {
  width: 100%;
}

.create-account ul li input[type="radio"]+span {
  padding: 0.9375rem 1.25rem;
  text-align: center;
  width: 100%;
  background: var(--secondary);
  color: #fff;
  border-radius: 7px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.create-account ul li input[type="radio"]+span .fa {
  margin-right: 7px;
  font-size: 1.375rem;
}

.create-account ul li input[type="radio"]:checked+span {
  background-color: var(--primary);
}

.create-account .form-content {
  display: none;
}

.review-detail__box {
  background: #e9fafb;
  border: 1px solid #e1e1e1;
  border-radius: 28px;
  padding: 1.25rem;
  position: relative;
}

.review-detail__box .company-image {
  width: 140px;
  height: 140px;
  margin-bottom: 1.875rem;
}

.review-detail__box .company-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-detail__box:not(:last-child) {
  margin-bottom: 0.9375rem;
}

.review-detail__box a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 10px;
  background: #17bec7 url(../images/icons/edit.png) center center no-repeat;
  background-size: 20px;
  position: absolute;
  top: 22px;
  right: 22px;
}

.review-detail__box a:hover {
  background-color: var(--secondary);
}

.review-detail__box h4 {
  margin-bottom: 1.125rem;
}

.review-detail__box ul {
  display: flex;
  margin-bottom: 5px;
  list-style: none;
}

.review-detail__box ul li {
  font-size: 1rem;
  position: relative;
  line-height: 1.5;
}

.review-detail__box ul li:first-child {
  margin-right: 4px;
  padding-right: 8px;
}

.review-detail__box ul li:first-child:after {
  content: ":";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.125rem;
}

.review-detail__box ul.no-dots li:first-child {
  padding: 0;
  margin: 0;
}

.review-detail__box ul.no-dots li:first-child:after {
  display: none;
}

.company__logo {
  font-size: 1.5rem;
  font-weight: 500;
  margin: 1.875rem 0;
  display: flex;
  align-items: center;
}

.company__logo img {
  max-width: 100px;
  margin-right: 10px;
}

.company p {
  font-size: 0.90625rem;
}

.company .bootstrap-select .dropdown-toggle {
  height: 45px;
  line-height: 45px;
  padding: 0 15px;
  width: 100px;
  border-radius: 10px;
}

.company .main-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
  list-style: none;
  border-bottom: 1px solid var(--textcolor);
  padding-bottom: 3px;
  margin-bottom: 20px;
}

.company .main-links li:not(:last-child) {
  margin-right: 1.5625rem;
}

.company .main-links li a {
  color: var(--secondary);
  font-size: 15px;
}

.company .main-links li a span {
  font-size: 14px;
}

.company .main-links li.active a {
  color: var(--primary);
}

.company .box {
  background-color: #fff;
  padding: 12px;
}

.company .box .btn {
  height: 35px;
  line-height: 35px;
  border-radius: 10px;
  width: 65px;
  font-size: 14px;
}

.company .box ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.company .box ul:not(:last-child) {
  margin-bottom: 0.625rem;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid #e4e4e4;
}

.company .box ul li {
  font-size: 14px;
}

.company .box ul li a {
  font-size: 14px;
}

.company .box ul li a:not(.btn) {
  color: var(--primary);
}


.featured-job-row .nav-tabs {
  display: flex;
  font-size: ;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  margin-bottom: 0;
}

.featured-job-row .nav-tabs .nav-item {
  flex: 0 0 14%;
  max-width: 14%;
}

.featured-job-row .nav-tabs .nav-item a {
  font-size: 16px;
  padding: 12px 13px;
  margin-bottom: 10px;
}

.featured-job-row .nav-tabs .nav-item a:hover,
.featured-job-row .nav-tabs .nav-item a.active,
.featured-job-row .nav-tabs .nav-item a.active:hover,
.featured-job-row .nav-tabs .nav-item a:focus,
.featured-job-row .nav-tabs .nav-item a:focus-visible {
  background-color: #17bec7;
  color: #fff !important;
}

.showmore-btn {
  display: block;
  margin: auto;
  width: max-content;
}

.featurejob-ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: space-between;
}

.featurejob-ul.grid .featurejob-item {
  flex: 0 0 32%;
  max-width: 32%;
  margin-bottom: 20px;
}

.featurejob-ul.list .featurejob-item .card__label {
  margin-bottom: 12px;
}

.featurejob-ul.list .featurejob-item .card__title,
.featurejob-ul.list .featurejob-item p,
.featurejob-ul.list .featurejob-item .card ul {
  margin-bottom: 10px;
}

.featurejob-ul.list .card__location {
  background-size: 17px 17px;
}

.featurejob-ul.list .featurejob-item {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 20px;
}

.gridlistview-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  margin-bottom: 15px;
}

.gridlistview-btn span {
  width: 150px;
  background-color: #ffffff;
  text-align: center;
  padding: 5px 8px;
  border-radius: 8px;
  margin: 0 5px;
  color: #17bec7;
}

.gridlistview-btn span.active {
  background-color: #17bec7;
  color: #fff;
}

.gridlistview-btn span {
  cursor: pointer;
}

.sidebar {
  border: 1px solid #e1e1e1;
  border-radius: 25px;
  background: #fff;
  padding: 25px 15px;
  height: 100%;
}

.sidebar .inner-banner__job-search {
  margin-top: 0;
  margin-bottom: 20px;
  padding: 0;
}

.searchfrm {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  position: relative;
}

.searchfrm .form-control {
  padding: 8px 40px 8px 15px;
  border-radius: 8px;
  box-shadow: 0 0 5px 0 #17bec7;
}

.searchfrm button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  z-index: 9;
}

.sidebar-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}

.sidebar-title-icon {
  margin-right: 5px;
  color: #17bec7;
}

.sidebar .dropdown {
  margin-bottom: 15px;
}

.job-detail {
  margin-bottom: 20px;
}

.job-detail__specification--package {
  margin: 10px 0;
}

.job-detail__specification ul:not(:last-child) {
  margin-bottom: 8px;
}

.job-search .job-detail .content-box {
  padding: 20px 15px;
}

.job-detail__desc--title {
  margin-bottom: 8px;
}

.job-detail__desc P {
  margin-bottom: 5px;
  line-height: 1.4;
}

.inner-banner {
  min-height: auto;
  padding: 11.25rem 0 5rem;
}

.company-namelogo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.company-namelogo .company-name h1 {
  margin-bottom: 0;
}

.company-namelogo .company-name {
  margin-left: 15px;
}

.company-detail,
.jobs {
  padding-top: 30px;
}

.dataTables_wrapper label .bootstrap-select .dropdown-toggle {
  width: 60px;
  padding: 0 10px;
}

.dataTables_wrapper label .bootstrap-select .dropdown-toggle::after {
  right: 5px;
}

.dataTables_wrapper label .dropdown.bootstrap-select {
  width: auto !important;
}

.job-search__detail {
  padding-top: 80px;
}

.resume-btn {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  border: 1px solid #d7e5ee;
  border-radius: 12px;
  background: #f5f9fb;
  padding: 25px;
  position: relative;
}

.resume-btn .resume-btn-symbole {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  border: 1px solid #d7e5ee;
  background: #f5f9fb;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  color: #d7e5ee;
  top: -14px;
  right: -14px;
}

.resume-btn-icon {
  font-size: 25px;
  margin-right: 15px;
  color: #17bec7;
}

.resume-btn-ftr {
  font-size: 16px;
  color: var(--secondary);
}

.resume-btn-radio .custom-control-input:hover+.resume-btn,
.resume-btn-radio .custom-control-input:checked+.resume-btn,
.resume-btn:focus,
.resume-btn:focus-visible,
.resume-btn-radio .custom-control-input:hover+.resume-btn .resume-btn-symbole,
.resume-btn-radio .custom-control-input:checked+.resume-btn .resume-btn-symbole,
.resume-btn:focus .resume-btn-symbole,
.resume-btn:focus-visible .resume-btn-symbole {
  background-color: #17bec7;
  border-color: #17bec7;
}

.resume-btn-radio .custom-control-input:hover+.resume-btn .resume-btn-symbole,
.resume-btn-radio .custom-control-input:checked+.resume-btn .resume-btn-symbole,
.resume-btn:focus .resume-btn-symbole,
.resume-btn:focus-visible .resume-btn-symbole,
.resume-btn-radio .custom-control-input:hover+.resume-btn .resume-btn-ftr,
.resume-btn-radio .custom-control-input:checked+.resume-btn .resume-btn-ftr,
.resume-btn:focus .resume-btn-ftr,
.resume-btn:focus-visible .resume-btn-ftr,
.resume-btn-radio .custom-control-input:hover+.resume-btn .resume-btn-icon,
.resume-btn-radio .custom-control-input:checked+.resume-btn .resume-btn-icon,
.resume-btn:focus .resume-btn-icon,
.resume-btn:focus-visible .resume-btn-icon {
  color: #fff;
}

.resume-btn-radio {
  position: relative;
  padding: 0;
}

.resume-btn-radio .custom-control-input {
  position: absolute;
  height: 100%;
  width: 100%;
  right: 0;
  left: 0;
  margin: auto;
  top: 0;
  z-index: 1;
}

.resume-btn-radio .custom-control-input:checked+.resume-btn {
  background-color: #17bec7;
}

.resume-btn-action {
  display: none;
}

.resume-btn-radio .custom-control-input:checked+.resume-btn+.resume-btn-action {
  display: block;
}

.resume-btn-action {
  margin-top: 15px;
}

a.resume-btn-action {
  background-color: #17bec7;
  color: #fff;
  text-align: center;
  padding: 12px;
  width: max-content;
  margin: 15px auto auto;
  border-radius: 8px;
  z-index: 1;
  position: relative;
}

.resume-btn-action {
  z-index: 1;
  position: relative;
}

.cv-submit-btn {
  margin: 15px auto;
  display: block;
}

.cv-submit-btn.disabled {
  opacity: 0.25;
}

a.resume-btn-action:hover {
  color: #fff !important;
}

.cv-submit-btn {
  opacity: 1;
}

.row.resume-row {
  margin-top: 30px;
}

.job-detail-headlist {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0 !important;
}

.job-detail-headlist li {
  font-size: 16px;
  font-weight: 500;
  margin: 0 12px;
}

.job-detail-headlist li i {
  color: #fab229;
}

.job-detail-wrap {
  padding: 80px 0;
}

.job-detail-wrap .job-detail {
  padding: 25px;
}

.job-detail-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.job-detail-list {
  padding-left: 25px;
  margin-bottom: 35px;
}

.job-detail-list li {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 7px;
}

.job-detail-wrap .job-detail .btn.btn-primary,
.job-detail-wrap .job-detail .btn.btn-default {
  display: block;
  width: 100%;
  margin-top: 35px;
}

.job-detail-wrap .job-detail .btn.btn-default img {
  max-width: 32px;
  width: auto;
  min-width: auto;
  height: auto;
}

.related-job-wrapper {
  padding: 0 0 50px;
}

.related-jobs-main-title {
  font-size: 32px;
  text-align: center;
  font-weight: 601;
  margin-bottom: 35px;
}

.related-job-wrap {
  padding: 20px;
  background: var(--bgcolor);
  border: 1px solid #e1e1e1;
  border-radius: 25px;
  margin-bottom: 15px;
}

.related-job-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.related-job-head-logo {
  flex: 0 0 55px;
  max-width: 55px;
}

.related-job-head-title {
  flex: 0 0 calc(100% - 65px);
  max-width: calc(100% - 65px);
  margin-left: 10px;
}

.related-title {
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 5px;
}

.related-title-time i {
  color: #fab229;
  font-size: 12px;
}

.related-title-time {
  font-size: 12px;
}

.salary-tag {
  padding: 12px;
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 15px;
}

.salary-tag-icon {
  color: #17bec7;
}

.salary-tag-price {
  font-size: 16px;
  font-weight: 500;
  margin-left: 5px;
}

.salary-tag-month {
  color: #17bec7;
  font-size: 12px;
}

.related-job-desc {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  list-style: none;
  padding-left: 0;
  margin: 0 !important;
}

.related-job-desc li {
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 10px;
  display: flex;
}

.related-job-desc-label {
  color: #17bec7;
}

.related-job-desc-txt {
  padding-left: 15px;
}

.related-job-body .btn.btn-primary {
  width: 100%;
  margin: 25px auto auto;
}

.job-detail-head .job-detail-headlist {
  justify-content: flex-start;
}

.job-detail-head {
  margin-bottom: 25px;
}

.job-detail-head-title-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
}

.job-detail-head-title {
  margin-left: 20px;
}

.job-detail-desc {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: flex-start;
  flex-direction: column;
  justify-content: flex-start;
  list-style: none;
  padding-left: 25px;
  margin-bottom: 15px;
}

.job-detail-desc-label {
  color: #17bec7;
}

.job-detail-desc li {
  display: flex;
  margin-bottom: 10px;
  width: 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.job-detail-desc-txt {
  padding-left: 15px;
}

.mutiple-line {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  justify-content: space-between;
}

.mutiple-line-txt {
  font-size: 1rem;
  display: block;
  color: var(--secondary) !important;
}

.mutiple-line-icon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
}

.adddelete-btn {
  width: 45px;
  height: 25px;
  margin-left: 12px;
  background-color: #17bec7;
  color: #fff !important;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  border-radius: 5px;
}

.duties-point-wrap-inner,
.benefit-point-wrap-inner {
  display: flex;
  align-items: center;
  align-content: center;
  margin-bottom: 15px;
}

.duties-point-wrap-inner .deletebtn,
.benefit-point-wrap-inner .deletebtn {
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  background-color: #17bec7;
  border-radius: 8px;
  margin-left: 12px;
  color: #fff;
  font-size: 20px;
}

.dashboard-menu ul {
  padding-top: 1.25rem;
}

.post-btn-icon {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #17bec7;
  border-radius: 100px;
  color: #fff;
}

.post-btn {
  background-color: #fab229;
  width: 80%;
  display: flex;
  padding: 5px 12px;
  border-radius: 10px;
  margin: 25px auto;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  text-decoration: none;
  color: #fff !important;
  font-weight: 600;
}

.post-btn:hover {
  color: #fff !important;
}

.all-jobs td .dropdown,
.all-jobs td .dropdown button {
  width: 100%;
}

.btn-group {
  display: flex;
  justify-content: flex-end;
}

.all-jobs .btn-group .btn {
  width: auto;
  height: auto;
  padding: 12px;
}

.all-jobs .btn-group .btn:last-child {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.all-jobs td .dropdown button {
  height: auto;
  padding: 8px 15px;
  width: 100%;
  line-height: 1.3;
  border-radius: 6px;
  margin: 0;
}

.all-jobs thead tr th:last-child {
  text-align: right;
  border-radius: 0 6px 6px 0 !important;
}

.all-jobs thead tr th:first-child {
  border-radius: 6px 0 0 6px !important;
}

.all-jobs thead,
.all-jobs thead tr {
  border-radius: 6px !important;
}

.all-jobs thead {
  background-color: transparent;
}

.all-jobs thead th {
  background: var(--primary);
}

.header ul li .dropdown-toggle {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  justify-content: flex-start;
  padding: 8px 12px;
  background-color: transparent;
  border: 0;
  box-shadow: none !important;
}

.header ul li .dropdown-toggle .dropdown-icon {
  width: 36px;
  height: 36px;
  color: #fff;
  font-size: 23px;
  background-color: #fab229;
}

.header ul li .dropdown-toggle .dropdown-txt {
  width: auto;
  height: auto;
  background: transparent;
  color: var(--gray);
}

.header ul li .dropdown-menu {
  padding: 0;
  background-color: #17bec7;
  border: 0;
}

.header ul li .dropdown-menu a {
  color: #fff;
  padding: 8px 15px;
}

.filter-btn {
  width: 100%;
}

.dashboard.jobs nav {
  margin-bottom: 15px;
}

.all-jobs td .dropdown .dropdown-menu {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}

.all-jobs td .dropdown .dropdown-menu .dropdown-item {
  padding: 5px 10px;
  text-align: center;
}

.candidates-detail-box {
  background-color: #17bec750;
  border: 1px solid #17bec7;
  margin-bottom: 20px;
}

.candidates-detail-box li:first-child {
  font-weight: 600;
}

.candidates-detail-innerbox {
  background-color: #fff;
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
}

/*# sourceMappingURL=main.css.map */