/* @media screen and (min-width: 1400px) {
  html {
    font-size: 80%;
  }
} */
html {
  font-size: 100%;
}

.App {
  position: relative;
  z-index: 0;
}

#overlay {
  position: fixed;
  /* Sit on top of the page content */
  display: none;
  /* Hidden by default */
  width: 100%;
  /* Full width (cover the whole page) */
  height: 100%;
  /* Full height (cover the whole page) */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  /* Black background with opacity */
  z-index: 9999;
  /* Specify a stack order in case you're using a different order for other elements */
  cursor: pointer;
  /* Add a pointer on hover */
}

.App::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-color: #feb0bd;
  z-index: -1;
}

body {
  font-size: 0.9375rem;
  color: #2a2e43;
  font-family: "Rubik", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}

/* total width */
::-webkit-scrollbar {
  background-color: #fff;
  width: 16px;
}

/* background of the scrollbar except button or resizer */
::-webkit-scrollbar-track {
  background-color: #fff;
}

::-webkit-scrollbar-track:hover {
  background-color: #f4f4f4;
}

/* scrollbar itself */
::-webkit-scrollbar-thumb {
  background-color: #babac0;
  border-radius: 16px;
  border: 5px solid #fff;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #a0a0a5;
  border: 4px solid #f4f4f4;
}

/* set button(top and bottom of the scrollbar) */
::-webkit-scrollbar-button {
  display: none;
}

a {
  transition: all 0.5s ease;
  text-decoration: none;
  color: #2a2e43;
}

a:hover,
a:focus,
a:active {
  outline: none;
  box-shadow: none;
  text-decoration: none;
}

a:hover {
  color: unset;
}

p {
  line-height: 1.33;
}

.font-semi-bold {
  font-weight: 500 !important;
}

.font-18 {
  font-size: 1.125rem;
}

.font-38 {
  font-size: 2.375rem;
}

.font-22 {
  font-size: 1.375rem;
}

.font-17 {
  font-size: 1.0625rem;
}

p+p {
  margin-top: 0;
}

@media screen and (min-width: 1600px) {
  .container {
    max-width: 1500px;
  }
}

/* Home Page */
/* Header */
.navbar-nav .btn-donation:active,.navbar-nav .btn-donation:focus {
  border: solid 1.5px #eb445b !important;
  background-color: transparent  !important;
}
header {
  padding: 10px 0px 15px;
}

.logo {
  width: 140px;
  overflow: hidden;
  display: block;
}

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

.home-area header {
  position: absolute;
  width: 100%;
}

.navbar-nav>a {
  font-size: 1.25rem;
  color: #0f0f0f;
  line-height: 2.05;
}

.navbar-nav>a:not(:last-child) {
  margin-right: 50px;
}

.navbar-nav .btn-donation {
  border-radius: 35px;
  border: solid 1.5px #eb445b;
  padding: 5px 38px;
  font-weight: 500;
  color: #ee4258;
  position: relative;
  display: inline-flex;
  z-index: 0;
  overflow: hidden;

  height: 55px;
  align-items: center;
}

.navbar-nav .btn-donation:hover {
  background-image: linear-gradient(to bottom, #eb6879, #ea1e38);
  color: #fff;
}

.navbar-nav {
  align-items: center;
}

/* End Header */
/* Banner */
.banner-filter form {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0;
}

.input-col .form-control::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #78849e;
  opacity: 1;
  /* Firefox */
}

.input-col .form-control:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #78849e;
}

.input-col .form-control::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #78849e;
}

.home-banner {
  background: url("../images/banner-bg.png") no-repeat;
  background-size: cover;
  height: 880px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.input-col {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 35px;
  box-shadow: 0 13px 46px 0 rgba(238, 66, 88, 0.09);
  background-color: #fff;
  height: 55px;
  padding: 0 25px;
}

.input-col .form-control {
  background-color: transparent;
  border: 0;
}

.input-col .form-label {
  margin-bottom: 0;
}

.btn-theme {
  border-radius: 35px;
  background-image: linear-gradient(to bottom, #eb6879, #ea1e38);
  border: 0;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
  padding: 10px 69px;
  height: 55px;
  position: relative;
  display: inline-flex;
  z-index: 0;
  overflow: hidden;
  align-items: center;
}

.btn-theme::before,
.btn-theme3::before {
  content: "";
  position: absolute;
  top: 0;
  right: -50px;
  bottom: 0;
  left: 0;
  border-right: 50px solid transparent;
  border-bottom: 80px solid #000;
  transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  transition: all 0.4s ease;
  z-index: -1;
}

.btn-theme:hover::before,
.btn-theme3:hover::before {
  transform: translateX(0);
}

.input-col .icon svg {
  width: 24px;
  height: 24px;
}

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

.what-field {
  width: 464px;
}

.where-field {
  width: 272px;
}

.primary-color {
  color: #ee4258;
}

/* End Banner */
/* Footer */
footer {
  border-top: 1px solid #eee;
  padding: 29px 0;
  background-color: #fff;
}

.footer-nav>li:not(:last-child) {
  margin-right: 50px;
}

.footer-nav>li {
  font-size: 1.0625rem;
}

.footer-nav>li>a,
.navbar-nav>a {
  position: relative;
  z-index: 0;
}

/* .footer-nav>li>a::before,
.navbar-nav>a::before {
  content: "";
  position: absolute;
  bottom: -5px;
  width: 0;
  height: 1px;
  transition: all 0.3s ease;
  left: 0;
  background-image: linear-gradient(to bottom, #eb6879, #ea1e38);
} */

.navbar-nav>a::before {
  bottom: 0;
  height: 2px;
}

.footer-nav>li>a:hover::before,
.navbar-nav>a:hover::before,
.navbar-nav>a.active::before,
.footer-nav>li>a.active::before {
  width: 100%;
}

.footer-nav>li>a:hover,
.navbar-nav>a:hover,
.navbar-nav>a.active,
.footer-nav>li>a.active {
  color: #ea364d;
}

/* End Footer */
/* End Home Page */
/* Blog */
article {
  margin-bottom: 30px;
}

article .img-box {
  height: 235px;
  overflow: hidden;
  border-radius: 9px 9px 0 0;
}

article .img-box a img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

article .img-box a {
  width: 100%;
  height: 100%;
  display: block;
}

article .text-box {
  border-radius: 0 0 9px 9px;
  border: solid 1px rgba(120, 132, 157, 0.18);
  background-color: #fff;
  padding: 15px 20px;
  min-height: 165px;
}

article .text-box p {
  opacity: 0.45;
  margin-bottom: 10px;
}

.opacity-para {
  opacity: 0.45;
}

.blog-single p {
  margin-bottom: 15px;
}

.blog-single .img-box {
  height: 469px;
  overflow: hidden;
  border-radius: 9px;
  margin-bottom: 40px;
}


/* End Blog */
/* Help Center */
.lgbt-bg {
  padding: 100px 0;
  display: flex;
  align-items: center;
}

.help-center-bg {
  background: url(../images/lgbt-bg.jpg) no-repeat;
  min-height: 969px;
  background-size: cover;
}

.form-area {
  background-color: #fff;
  padding: 40px 35px;
}

.btn-theme3 {
  border-radius: 35px;
  background-color: #ee4258;
  border: 0;
  position: relative;
  z-index: 0;
  overflow: hidden;
  display: inline-flex;
  padding: 10px 35px;
}

/* End Help Center */
/* Auth Pages */
.font-34 {
  font-size: 34px !important;
}

.register-bg {
  background: url(../images/register-bg.jpg) no-repeat;
  background-size: cover;
  height: 1000px;
}

.btn-signup {
  display: flex !important;
  width: 100% !important;
  border-radius: 35px !important;
  text-align: center !important;
  justify-content: center !important;
  align-items: center !important;
  height: 64px !important;
  border: solid 1px rgba(120, 132, 157, 0.5) !important;
  box-shadow: unset !important;
}

.btn-facebook {
  background-color: #1476fc;
}

.grey-color {
  color: #78849e;
}

.user-type-box {
  border-radius: 9px;
  border: solid 1px rgba(120, 132, 157, 0.26);
  padding: 6px 15px;

  height: 57px;
  cursor: pointer;
  transition: all 0.5s ease;
}

.remember-me span.MuiTypography-root.MuiTypography-body1.MuiFormControlLabel-label.css-ahj2mt-MuiTypography-root {
  font-size: 15px;
  color: #2a2e43;
}

span.MuiCheckbox-root.MuiCheckbox-colorPrimary.MuiButtonBase-root.MuiCheckbox-root.MuiCheckbox-colorPrimary.PrivateSwitchBase-root.Mui-checked.css-12wnr2w-MuiButtonBase-root-MuiCheckbox-root {
  color: #ee4258;
}

.border-text {
  position: relative;
  z-index: 0;
}

.border-text::before,
.border-text::after {
  content: "";
  position: absolute;
  height: 1px;
  top: 50%;
  width: 150px;
  background-color: rgba(120, 132, 157, 0.5);
}

.border-text::before {
  left: 0;
}

.border-text::after {
  right: 0;
}

.border-text p {
  text-align: center;
}

.btn-signup svg {
  margin-right: 10px;
  width: 24px;
  height: 24px;
}

.btn-signup i {
  margin-right: 10px;
  font-size: 1.5rem;
}

.css-aqpgxn-MuiFormLabel-root-MuiInputLabel-root {
  font-size: 12px;
  color: #454f63 !important;
}

.text-underline {
  text-decoration: underline;
}

.login-bg {
  background: url("../images/login-bg.jpg") no-repeat;
  background-size: cover;
  height: 970px;
}

/* End Auth Pages */
/* Search Result */
.search-result-filter form {
  display: flex;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(120, 132, 157, 0.18);
  margin-bottom: 30px;
}

.font-12 {
  font-size: 1rem;
}

.yellow-color {
  color: #ff9607;
}

.bg-post {
  border-radius: 9px;
  border: solid 1px rgba(120, 132, 157, 0.18);
  background-color: #fff;
  padding: 20px 15px;
}

.btn-apply {
  padding: 10px;
  border-radius: 35px;
  height: 55px;
  width: 243px;
  color: #ee4258;
  border: solid 1.5px #eb445b;
  background-color: transparent;
  font-size: 1.0625rem;
  font-weight: 500;
  transition: all 0.5s ease;
}

.btn-apply.btn-apply2 {
  border: solid 1.5px rgba(120, 132, 158, 0.5);
  color: #78849e;
}

.btn-apply:hover {
  background-color: #eb445b;
  color: #fff;
}

.btn-apply.btn-apply2:hover {
  background-color: #78849e;
}

.border-line-bottom {
  border-bottom: 1px solid rgba(120, 132, 157, 0.19) !important;
}

.font-medium {
  font-weight: 500 !important;
}

.job-post-detail {
  height: 555px;
  overflow: auto;
  position: sticky;
  top: 30px;
}

.custom-pagination>li:not(:last-child) {
  margin-right: 13px;
}

.custom-pagination>li:first-child {
  font-size: 12px;
  color: #2a2e43;
}

.custom-pagination>li {
  font-size: 0.9375rem;
  color: #ee4258;
}

.custom-pagination>li.active {
  width: 35px;
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background-color: #ee4258;
  color: #fff;
}

.search-popular-companies svg {
  width: 26px;
  height: 26px;
  fill: #ee4258;
}

.search-popular-companies .input-col {
  flex: 0 0 474px;
  width: 474px;
}

.fullwidth .search-popular-companies .input-col {
  flex: 0 0 70%;
  width: 70%;
}

.font-28 {
  font-size: 1.75rem;
}

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

.popular-post-detail textarea.form-control {
  height: 100px;
}

.popular-post-detail {
  height: 520px;
  overflow: auto;
}

/* End Search Result */
/* User Info */
.custom-nav .bg-post {
  border-radius: 0;
  border: 0;
}

.user-item-nav.nav-pills .nav-link.active,
.user-item-nav.nav-pills .show>.nav-link {
  background-color: transparent;
  color: #ee4258;
}

.user-item-nav.nav-pills .nav-link.active svg,
.user-item-nav.nav-pills .show>.nav-link svg {
  fill: #ee4258;
}

.user-item-nav.nav-pills .nav-link,
.custom-accordian .accordion-header button {
  border-radius: 0;
  padding: 0;
  font-size: 17px;
  line-height: 1.29;
  color: #2a2e43;
  padding-bottom: 30px;
  cursor: pointer;
}

.user-item-nav.nav-pills {
  padding: 30px 20px;
}

.user-item-nav.nav-pills .nav-link svg,
.custom-accordian .accordion-header button svg {
  margin-right: 10px;
  fill: #78849e;
}

.opacity5 {
  opacity: 0.5;
}

.accordion-button {
  padding: 0;
  font-size: 0.9375rem;
  color: #2a2e43;
}

.accordion-item {
  border: 0;
}

.accordion-header {
  font-size: 0.9375rem;
  color: #2a2e43;
  font-weight: normal;
  line-height: normal;
}

.accordion-button:focus {
  box-shadow: unset;
  border-color: transparent;
}

.accordion-button:not(.collapsed) {
  background-color: transparent;
  color: #2a2e43;
}

.accordion-body {
  padding: 0;
}

.form-switch .form-check-input {
  width: 36px;
  height: 20px;
}

.form-check-input:checked {
  background-color: green;
  border-color: green;
}

.border-1 {
  border: solid 1px rgba(120, 132, 157, 0.18) !important;
}

.border-radius-9 {
  border-radius: 9px !important;
}

.icon-box {
  height: 55px;
  width: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  border: solid 1.5px #bbc1ce;
  background-color: transparent;
}

.bg-red {
  background-color: #ee4258;
}

.icon-box.bg-red {
  color: #fff;
}

.modal-header {
  border: 0;
}

section.dashboard-sec {
  min-height: 775px;
}

.demo-editor {
  border-radius: 3px !important;
  border: solid 1px rgba(120, 132, 157, 0.5) !important;
  height: 259px !important;
  padding: 10px !important;
}

.input-theme {
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.42);
  height: 32px;
}

.input-theme:active,
.input-theme:focus {
  outline: none;
}

/* End User Info */

/* Start Budget */
.budget-post {
  width: 404px;
  margin: 0 auto;
  text-align: center;
  border-radius: 8px;
  padding: 55px 20px;
  height: 580px;
}

.budget-post img {
  width: 245px;
  height: 230px;
}

.font-74 {
  font-size: 4.625rem;
}

.font-31 {
  font-size: 1.9375rem;
}

.btn-theme-grey {
  border-radius: 35px;
  background-color: #78849e;
  height: 45px;
  font-size: 17px;
  color: #fff;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  align-items: center;
  padding: 0 32px;
  width: 195px;
}

.btn-theme-grey:hover {
  background-image: linear-gradient(to bottom, #eb6879, #ea1e38);
  color: #fff;
}

.budget-post sup {
  top: -40px;
}

.budget-post:hover h4.grey-color {
  color: #ee4258;
}

.budget-post:hover .btn-theme-grey {
  background-color: #ee4258;
}

.py-70 {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

/* End Budget */
/* Start Payment */
.payment-box {
  border-radius: 24px;
  border: solid 1px rgba(255, 255, 255, 0.13);
  padding: 34px 40px;
  position: relative;
  left: -32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-pink {
  background-color: #fc6e80;
}

.current-card {
  border-radius: 8px;
  box-shadow: 0 20px 26px 0 rgba(0, 47, 72, 0.31);
  border: solid 2px rgba(255, 255, 255, 0.13);
  height: 145.1px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pink-text {
  color: #f5e7e9;
}

.offwhite-bg {
  background-color: #f7f7f7;
  width: 35px;
  height: 20.2px;
  display: flex;
  align-items: center;
}

.add-credit-box {
  border-radius: 8px;
  background-color: #c8374a;
  height: 145.1px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.add-credit-box button {
  background: #cf4f60;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.payment-form .form-control {
  /* border-radius: 16px;
  border: solid 3px #fc6e80;
  background-color: rgba(0, 0, 0, 0.16);
  color: #fff;
  font-size: 24px;
  height: 66px; */
  height: 40px;
  padding: 10px 12px;
  width: 100%;
  color: #32325d;
  background-color: white;
  border: 1px solid transparent;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 #e6ebf1;
  -webkit-transition: box-shadow 150ms ease;
  transition: box-shadow 150ms ease;
}

.card-form.form-control {
  box-shadow: 0 20px 26px 0 rgba(0, 47, 72, 0.31);
  border: solid 2px rgba(255, 255, 255, 0.13);
  background-color: #fc6e80;
}

.payment-form input::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #333;
  opacity: 1;
  /* Firefox */
}

.payment-form input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #fff;
}

.payment-form input::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #fff;
}

.payment-form .btn-area button {
  width: 248px;
  height: 56px;
  border-radius: 28px;
  font-size: 22px;
  font-weight: 500;
  background-color: transparent;
  color: #fff;
}

.cancel-btn {
  border: solid 3px #fff;
}

.payment-btn {
  color: #ee4258 !important;
  background-color: #fff !important;
}

/* End Payment */
/* Start Job Lists */
.job-list-item h3 {
  position: relative;
  z-index: 0;
}

.job-list-item h3::before {
  content: "";
  position: absolute;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  left: -30px;
  top: 10px;
  background-color: rgba(120, 132, 158, 0.22);
  z-index: -1;
}

.job-list-item {
  border-radius: 9px;
  border: solid 1px rgba(120, 132, 157, 0.18);
}

.status-box .form-select {
  width: 231px;
  height: 44px;
  border-radius: 10px;
  border: solid 1px #ee4258;
  color: #ee4258;
}

.actions button,
.actions a {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  font-size: 1.25rem;
  color: #fff;
}

.edit-box {
  background-image: linear-gradient(to bottom, #4779fa, #0f51fb);
}

.delete-box {
  background-image: linear-gradient(to bottom, #fc6b6b, #fb0f0f);
}

.custom-accordian .accordion-header button::after {
  content: none;
}

/* End Job Lists */
/* Subsciption */
.subscription-history-list>li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
}

.subscription-history-list>li:not(:last-child) {
  border-bottom: 1px solid #f0f0f0;
}

.current-plan-box {
  padding: 50px 20px 35px;
}

.current-plan-box sup {
  top: -1em;
}

.current-plan-box h4 {
  margin-bottom: 20px;
}

.current-plan-box .btn-theme3 {
  width: 210px;
  height: 69px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-accordian button[aria-expanded="true"] {
  color: #ee4258;
}

.custom-accordian button[aria-expanded="true"] svg {
  fill: #ee4258;
}

.popular-people-detail .bg-red {
  background-image: url('../images/bg-red.png');
  height: 118px;
  margin: -20px -15px 0;
  border-radius: 9px 9px 0 0;
  position: relative;
}

.popular-people-detail .bg-red .img-box {
  width: 149px;
  height: 149px;
  position: absolute;
  left: 15px;
  top: 25px;
}

.mt-90 {
  margin-top: 90px !important;
}

.popular-people-detail .bg-red .img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hover-icon:hover {
  color: #ee4258;
}

.bg-gradient-primary {
  background-image: linear-gradient(to bottom, #eb6879, #ea1e38);
  background-color: transparent;
}

.css-1c2i806-MuiFormLabel-root-MuiInputLabel-root.Mui-focused {
  color: #454f63 !important;
}

.budget-post:hover {
  box-shadow: 0 13px 46px 0 rgba(238, 66, 88, 0.09);
}

.budget-post h5 {
  letter-spacing: 2.7px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

input[type="number"] {
  -moz-appearance: textfield;
  /* Firefox */
}

.user-type-box svg {
  width: 18px;
  height: 18px;
  fill: rgba(120, 132, 158, 0.3);
}

.active.user-type-box {
  border-color: #ee4258;
}

.active.user-type-box p {
  color: #ee4258;
}

.active.user-type-box svg {
  fill: #ee4258;
}

#successful-screen {
  position: fixed;

  inset: 0;
  z-index: 1;
  text-align: center;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.5);

}

#successful-screen svg {
  width: 200px !important;
  height: 200px !important;
  margin: 0 auto !important;
  position: absolute !important;
  bottom: 300px;
  left: 0;
  right: 0;
}

#successful-screen h3 {
  position: absolute;
  bottom: 200px;
  left: 0;
  right: 0;
}

#successful-screen p {
  position: absolute;
  bottom: 180px;
  left: 0;
  right: 0;
}

.box-icon {
  width: 51px;
  height: 51px;
  box-shadow: 0 13px 46px 0 rgba(238, 66, 88, 0.09);
  background-color: #fff;
  border: 0;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ee4258 !important;
  font-size: 1.5rem;
  padding: 0;
}

.btn-check:focus+.btn-primary,
.btn-primary:focus {
  background-color: transparent;
  border-color: transparent;
  box-shadow: unset;
}

.dropdown-toggle::after {
  content: none;
}

.navbar button:hover,
.navbar button:active,
.navbar button:focus {
  border-color: #fff !important;
  background-color: #fff !important;
}

.navbar .dropdown-menu {
  padding: 10px 0;
  border-radius: 8px;
  box-shadow: 0 13px 46px 0 rgba(238, 66, 88, 0.09);
  background-color: #fff;
  border: 0;
}

.navbar .dropdown-item {
  padding: 7px 15px;
  font-size: 0.9375rem;
  color: #000;
}

.navbar .dropdown-item svg {
  margin-right: 10px;
}

.navbar .dropdown-item:hover {
  color: #ea2f45;
}

.custom-nav {
  min-height: 680px;
}

.accordion-button:not(.collapsed) {
  box-shadow: unset;
}

.box-icon img {
  object-fit: cover;
  width: 100%;
  height: 100%;

}

.job-list-detail {
  min-height: 760px;
}

.min-height {
  min-height: 760px;
}

.btn-check:active+.btn-primary,
.btn-check:checked+.btn-primary,
.btn-primary.active,
.btn-primary:active,
.show>.btn-primary.dropdown-toggle {
  background-color: #fff;
  border-color: #fff;
}

.btn-check:active+.btn-primary:focus,
.btn-check:checked+.btn-primary:focus,
.btn-primary.active:focus,
.btn-primary:active:focus,
.show>.btn-primary.dropdown-toggle:focus {
  box-shadow: none;
}

.font-15 {
  font-size: 0.9375rem;
}

.height69 {
  height: 69px !important;
}

.line-height-normal {
  line-height: normal !important;
}

.css-68u1dt-MuiInputBase-root-MuiInput-root:after {
  border-bottom: 2px solid #ee4258;
}

label+.css-1dsf2cy-MuiInputBase-root-MuiInput-root-MuiSelect-root {
  margin-top: 3px;
}

.MuiInput-root.MuiInput-underline:after {
  border-bottom: 2px solid #ee4258 !important;
}

.cursor-pointer {
  cursor: pointer;
}

.home-banner .btn-theme {
  width: 210px;
  padding: 0;
  text-align: center;
  justify-content: center;
}

.input-col .form-control::-webkit-input-placeholder {
  /* Edge */
  color: #78849e;
  font-weight: 500;
}

.input-col .form-control:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #78849e;
  font-weight: 500;
}

.input-col .form-control::placeholder {
  color: #78849e;
  font-weight: 500;
}

.Mui-focused.css-aqpgxn-MuiFormLabel-root-MuiInputLabel-root {
  color: #ee4258;
}

.company-review textarea {
  background-color: #f0f2f7 !important;
  resize: none;
}

.company-review .btn-theme3 {
  background-image: linear-gradient(to bottom, #eb6879, #ea1e38);
}

.company-review textarea::-webkit-input-placeholder {
  /* Edge */
  font-weight: 500;
}

.company-review textarea:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  font-weight: 500;
}

.company-review textarea::placeholder {
  font-weight: 500;
}

.css-854e78-MuiInputBase-root-MuiInput-root-MuiSelect-root {
  height: auto;
}

.btn-gradient {
  background-image: linear-gradient(to bottom, #eb6879, #ea1e38);
}

.css-348fk2.Mui-focused {
  color: #ea3249;
}

label+.css-14uelgw {
  margin-top: 20px;
}

label+.css-1hycuhf {
  margin-top: 3px;
}

.loader-area {
  position: fixed;
  z-index: 999;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #fff;
  transition: all 0.5s ease;
}

.job-list-item .text-box {
  flex: 0 0 400px;
  max-width: 400px;
}

.height-800 {
  min-height: 800px;
}

.text-red {
  color: #ee4258;
}

/* End Subscription */
.editortext li,
.editortext p,
.editortext span {
  font-size: 0.9375rem;
  margin-bottom: 10px;
}

.popular-post .img-box {
  width: 64px;
  height: 64px;
  overflow: hidden;
  border-radius: 14px;
}

.popular-post .img-box a {
  width: 100%;
  height: 100%;
  display: block;
}

.popular-post .img-box a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-logo {
  width: 64px;
  height: 64px;
  overflow: hidden;
  border-radius: 14px;
}

.company-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comment .img-box {
  min-width: 47px;
  height: 47px;
  overflow: hidden;
  border-radius: 50%;
}

.comment .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.file-upload-wrapper {
  position: relative;
  width: 100%;
  height: 60px;
  border: 1px solid rgba(0, 0, 0, 0.42);
}

.file-upload-wrapper::after {
  content: "Select your file!";
  font-size: 18px;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  padding: 10px 15px;
  display: block;
  width: calc(100% - 40px);
  pointer-events: none;
  z-index: 20;
  height: 40px;
  line-height: 40px;
  border-radius: 5px 10px 10px 5px;
  font-weight: 300;
}

.file-upload-wrapper::before {
  content: "Upload";
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  color: #fff;
  font-weight: 700;
  z-index: 25;
  font-size: 16px;
  line-height: 60px;
  padding: 0 15px;
  text-transform: uppercase;
  pointer-events: none;
  background-color: #ee4258;
  height: 59px;
}


.file-upload-field {
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99;
  height: 60px;
  margin: 0;
  padding: 0;
  display: block;
  cursor: pointer;
  width: 100%;
}

.ms-7 {
  margin-left: 80px !important;

}

.popular-post .ms-7 {
  position: relative;
  top: -10px;
}


/**
* Shows how you can use CSS to style your Element's container.
* These classes are added to your Stripe Element by default.
* You can override these classNames by using the options passed
* to the CardElement component.
* https://stripe.com/docs/js/elements_object/create_element?type=card#elements_create-options-classes
*/

.StripeElement {
  height: 40px;
  padding: 10px 12px;
  width: 100%;
  color: #32325d;
  background-color: white;
  border: 1px solid transparent;
  border-radius: 4px;

  box-shadow: 0 1px 3px 0 #e6ebf1;
  -webkit-transition: box-shadow 150ms ease;
  transition: box-shadow 150ms ease;
}

.StripeElement--focus {
  box-shadow: 0 1px 3px 0 #cfd7df;
}

.StripeElement--invalid {
  border-color: #fa755a;
}

.StripeElement--webkit-autofill {
  background-color: #fefde5 !important;
}

.job-preview-sec .budget-post {
  margin-left: auto;
  width: auto;
  height: auto;
  padding: 15px 20px 35px;

}

.resume-icon svg {
  width: 65px;
  height: 65px;
}

.notification-box .img-box {
  min-width: 30px;
  height: 30px;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 10px;
}

.notification-box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.notification-box .text-box h4 {
  font-size: 15px;
  line-height: normal;
  text-transform: capitalize;
}

.notification-box .text-box p {
  font-size: 13px;
  white-space: break-spaces;
}

/* Donation Modal */
.donation-modal .modal-body {
  padding: 0;
}

.donation-modal .modal-body h4 {
  border-bottom: 1px solid #eee;
  padding: 20px;
}

.donation-modal .modal-body form {
  padding: 40px 20px;
}

.donation-modal .btn-area {
  margin-top: 30px;
  text-align: end;
}

.donation-modal .form-control {
  height: 40px;
  padding: 10px 12px;
  width: 100%;
  color: #32325d;
  background-color: white;
  border: 1px solid transparent;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 #e6ebf1;
  -webkit-transition: box-shadow 150ms ease;
  transition: box-shadow 150ms ease;
  font-size: 0.875rem;
}

.static-page-sec p {
  margin-bottom: 15px;
}

.notification-box.dropdown-menu {
  padding: 0;
  left: -50px;
  margin-top: 20px;
  width: 233px;
  max-height: 292px;
  overflow-y: auto;
  overflow-x: hidden;
}

.notification-box.dropdown-menu a.dropdown-item {
  padding: 15px;
}

.notification-box.dropdown-menu a.dropdown-item:not(:last-child) {
  border: 0px;
  border-style: solid;
  border-bottom-width: 1px;
  -moz-border-image: -moz-linear-gradient(right, white, #cedae0, #cedae0, white) 1 20%;
  -o-border-image: -o-linear-gradient(right, white, #cedae0, #cedae0, white) 1 20%;
  border-image: linear-gradient(to right, white 0%, #cedae0 40%, #cedae0 60%, white 100%) 1 20%;
}

#user-notification {
  position: relative;
}

#user-notification span {
  position: absolute;
  top: 5px;
  line-height: normal;
  right: 10px;
  background: #fb3c3c;
  color: #fff;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
}
.favorite-btn svg {
  width: 30px;
  height: 30px;
}
.font-16 {
  font-size: 16px;
}
button[aria-label="Open editor in fullsize"] {
  display: none !important;
}
.chat-box {
  background-image: linear-gradient(to top, #00ce10, #04d614);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 1.25rem;
  color: #fff;
}
/* Chat Screen */
.user-img-box {
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 13px;
  margin-right: 10px;
}
.user-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.user-chat {
  border: solid 1px rgba(120, 132, 157, 0.18);
  background-color: #fff;
}
.online-status {
  width: 10px;
  height: 10px;
  background-color: #3ade74;
  border-radius: 50%;
  position: absolute;
  bottom: 10px;
  left: 62px;
}
.user-chat-header {
  padding: 10px 20px;
  position: relative;
  border-bottom: solid 1px rgba(120, 132, 157, 0.18);
}
.font-14 {
  font-size: 0.875rem;
}
.msger-inputarea {
  display: flex;
  padding: 10px;
  background: transparent;
}
.inputarea {
  flex: 1;
  background:  #f7f7fa;
  position: relative;
  border-radius: 30px;
  margin-right: 20px;
}
.attachfiles {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.attachfiles svg {
  width: 20px;
  height: 20px;
  fill: #babac0;
}
.msger-header-title {
  color: #fff;
}
.send-btn {
  border-color: transparent;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  border-radius: 50%;
  background-image: linear-gradient(to bottom, #eb6879, #ea1e38);
}
.send-btn svg {
  fill: #fff;
  width: 15px;
  height: 15px;
}
.msger-input {
  border-radius: 30px;
  background-color: transparent;
  padding: 10px 20px 10px 35px;
  color: #78849e;
  border-color: transparent;
  height: 100%;
  width: 100%;
}
.msger-input::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #78849e;
  opacity: 1;
  /* Firefox */
}
.msger-input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #78849e;
}
.msger-input::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #78849e;
}
.msger-send-btn {
  margin-left: 10px;
  background: rgb(32 38 48);
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.23s;
  padding: 10px 35px;
}
.msger-send-btn:hover {
  background: rgb(0, 180, 50);
}
.msger-input:active,
.msger-input:focus {
  outline: none;
}
.msger-chat {
  background-color: #fcfcfe;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260' viewBox='0 0 260 260'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23dddddd' fill-opacity='0.4'%3E%3Cpath d='M24.37 16c.2.65.39 1.32.54 2H21.17l1.17 2.34.45.9-.24.11V28a5 5 0 0 1-2.23 8.94l-.02.06a8 8 0 0 1-7.75 6h-20a8 8 0 0 1-7.74-6l-.02-.06A5 5 0 0 1-17.45 28v-6.76l-.79-1.58-.44-.9.9-.44.63-.32H-20a23.01 23.01 0 0 1 44.37-2zm-36.82 2a1 1 0 0 0-.44.1l-3.1 1.56.89 1.79 1.31-.66a3 3 0 0 1 2.69 0l2.2 1.1a1 1 0 0 0 .9 0l2.21-1.1a3 3 0 0 1 2.69 0l2.2 1.1a1 1 0 0 0 .9 0l2.21-1.1a3 3 0 0 1 2.69 0l2.2 1.1a1 1 0 0 0 .86.02l2.88-1.27a3 3 0 0 1 2.43 0l2.88 1.27a1 1 0 0 0 .85-.02l3.1-1.55-.89-1.79-1.42.71a3 3 0 0 1-2.56.06l-2.77-1.23a1 1 0 0 0-.4-.09h-.01a1 1 0 0 0-.4.09l-2.78 1.23a3 3 0 0 1-2.56-.06l-2.3-1.15a1 1 0 0 0-.45-.11h-.01a1 1 0 0 0-.44.1L.9 19.22a3 3 0 0 1-2.69 0l-2.2-1.1a1 1 0 0 0-.45-.11h-.01a1 1 0 0 0-.44.1l-2.21 1.11a3 3 0 0 1-2.69 0l-2.2-1.1a1 1 0 0 0-.45-.11h-.01zm0-2h-4.9a21.01 21.01 0 0 1 39.61 0h-2.09l-.06-.13-.26.13h-32.31zm30.35 7.68l1.36-.68h1.3v2h-36v-1.15l.34-.17 1.36-.68h2.59l1.36.68a3 3 0 0 0 2.69 0l1.36-.68h2.59l1.36.68a3 3 0 0 0 2.69 0L2.26 23h2.59l1.36.68a3 3 0 0 0 2.56.06l1.67-.74h3.23l1.67.74a3 3 0 0 0 2.56-.06zM-13.82 27l16.37 4.91L18.93 27h-32.75zm-.63 2h.34l16.66 5 16.67-5h.33a3 3 0 1 1 0 6h-34a3 3 0 1 1 0-6zm1.35 8a6 6 0 0 0 5.65 4h20a6 6 0 0 0 5.66-4H-13.1z'/%3E%3Cpath id='path6_fill-copy' d='M284.37 16c.2.65.39 1.32.54 2H281.17l1.17 2.34.45.9-.24.11V28a5 5 0 0 1-2.23 8.94l-.02.06a8 8 0 0 1-7.75 6h-20a8 8 0 0 1-7.74-6l-.02-.06a5 5 0 0 1-2.24-8.94v-6.76l-.79-1.58-.44-.9.9-.44.63-.32H240a23.01 23.01 0 0 1 44.37-2zm-36.82 2a1 1 0 0 0-.44.1l-3.1 1.56.89 1.79 1.31-.66a3 3 0 0 1 2.69 0l2.2 1.1a1 1 0 0 0 .9 0l2.21-1.1a3 3 0 0 1 2.69 0l2.2 1.1a1 1 0 0 0 .9 0l2.21-1.1a3 3 0 0 1 2.69 0l2.2 1.1a1 1 0 0 0 .86.02l2.88-1.27a3 3 0 0 1 2.43 0l2.88 1.27a1 1 0 0 0 .85-.02l3.1-1.55-.89-1.79-1.42.71a3 3 0 0 1-2.56.06l-2.77-1.23a1 1 0 0 0-.4-.09h-.01a1 1 0 0 0-.4.09l-2.78 1.23a3 3 0 0 1-2.56-.06l-2.3-1.15a1 1 0 0 0-.45-.11h-.01a1 1 0 0 0-.44.1l-2.21 1.11a3 3 0 0 1-2.69 0l-2.2-1.1a1 1 0 0 0-.45-.11h-.01a1 1 0 0 0-.44.1l-2.21 1.11a3 3 0 0 1-2.69 0l-2.2-1.1a1 1 0 0 0-.45-.11h-.01zm0-2h-4.9a21.01 21.01 0 0 1 39.61 0h-2.09l-.06-.13-.26.13h-32.31zm30.35 7.68l1.36-.68h1.3v2h-36v-1.15l.34-.17 1.36-.68h2.59l1.36.68a3 3 0 0 0 2.69 0l1.36-.68h2.59l1.36.68a3 3 0 0 0 2.69 0l1.36-.68h2.59l1.36.68a3 3 0 0 0 2.56.06l1.67-.74h3.23l1.67.74a3 3 0 0 0 2.56-.06zM246.18 27l16.37 4.91L278.93 27h-32.75zm-.63 2h.34l16.66 5 16.67-5h.33a3 3 0 1 1 0 6h-34a3 3 0 1 1 0-6zm1.35 8a6 6 0 0 0 5.65 4h20a6 6 0 0 0 5.66-4H246.9z'/%3E%3Cpath d='M159.5 21.02A9 9 0 0 0 151 15h-42a9 9 0 0 0-8.5 6.02 6 6 0 0 0 .02 11.96A8.99 8.99 0 0 0 109 45h42a9 9 0 0 0 8.48-12.02 6 6 0 0 0 .02-11.96zM151 17h-42a7 7 0 0 0-6.33 4h54.66a7 7 0 0 0-6.33-4zm-9.34 26a8.98 8.98 0 0 0 3.34-7h-2a7 7 0 0 1-7 7h-4.34a8.98 8.98 0 0 0 3.34-7h-2a7 7 0 0 1-7 7h-4.34a8.98 8.98 0 0 0 3.34-7h-2a7 7 0 0 1-7 7h-7a7 7 0 1 1 0-14h42a7 7 0 1 1 0 14h-9.34zM109 27a9 9 0 0 0-7.48 4H101a4 4 0 1 1 0-8h58a4 4 0 0 1 0 8h-.52a9 9 0 0 0-7.48-4h-42z'/%3E%3Cpath d='M39 115a8 8 0 1 0 0-16 8 8 0 0 0 0 16zm6-8a6 6 0 1 1-12 0 6 6 0 0 1 12 0zm-3-29v-2h8v-6H40a4 4 0 0 0-4 4v10H22l-1.33 4-.67 2h2.19L26 130h26l3.81-40H58l-.67-2L56 84H42v-6zm-4-4v10h2V74h8v-2h-8a2 2 0 0 0-2 2zm2 12h14.56l.67 2H22.77l.67-2H40zm13.8 4H24.2l3.62 38h22.36l3.62-38z'/%3E%3Cpath d='M129 92h-6v4h-6v4h-6v14h-3l.24 2 3.76 32h36l3.76-32 .24-2h-3v-14h-6v-4h-6v-4h-8zm18 22v-12h-4v4h3v8h1zm-3 0v-6h-4v6h4zm-6 6v-16h-4v19.17c1.6-.7 2.97-1.8 4-3.17zm-6 3.8V100h-4v23.8a10.04 10.04 0 0 0 4 0zm-6-.63V104h-4v16a10.04 10.04 0 0 0 4 3.17zm-6-9.17v-6h-4v6h4zm-6 0v-8h3v-4h-4v12h1zm27-12v-4h-4v4h3v4h1v-4zm-6 0v-8h-4v4h3v4h1zm-6-4v-4h-4v8h1v-4h3zm-6 4v-4h-4v8h1v-4h3zm7 24a12 12 0 0 0 11.83-10h7.92l-3.53 30h-32.44l-3.53-30h7.92A12 12 0 0 0 130 126z'/%3E%3Cpath d='M212 86v2h-4v-2h4zm4 0h-2v2h2v-2zm-20 0v.1a5 5 0 0 0-.56 9.65l.06.25 1.12 4.48a2 2 0 0 0 1.94 1.52h.01l7.02 24.55a2 2 0 0 0 1.92 1.45h4.98a2 2 0 0 0 1.92-1.45l7.02-24.55a2 2 0 0 0 1.95-1.52L224.5 96l.06-.25a5 5 0 0 0-.56-9.65V86a14 14 0 0 0-28 0zm4 0h6v2h-9a3 3 0 1 0 0 6H223a3 3 0 1 0 0-6H220v-2h2a12 12 0 1 0-24 0h2zm-1.44 14l-1-4h24.88l-1 4h-22.88zm8.95 26l-6.86-24h18.7l-6.86 24h-4.98zM150 242a22 22 0 1 0 0-44 22 22 0 0 0 0 44zm24-22a24 24 0 1 1-48 0 24 24 0 0 1 48 0zm-28.38 17.73l2.04-.87a6 6 0 0 1 4.68 0l2.04.87a2 2 0 0 0 2.5-.82l1.14-1.9a6 6 0 0 1 3.79-2.75l2.15-.5a2 2 0 0 0 1.54-2.12l-.19-2.2a6 6 0 0 1 1.45-4.46l1.45-1.67a2 2 0 0 0 0-2.62l-1.45-1.67a6 6 0 0 1-1.45-4.46l.2-2.2a2 2 0 0 0-1.55-2.13l-2.15-.5a6 6 0 0 1-3.8-2.75l-1.13-1.9a2 2 0 0 0-2.5-.8l-2.04.86a6 6 0 0 1-4.68 0l-2.04-.87a2 2 0 0 0-2.5.82l-1.14 1.9a6 6 0 0 1-3.79 2.75l-2.15.5a2 2 0 0 0-1.54 2.12l.19 2.2a6 6 0 0 1-1.45 4.46l-1.45 1.67a2 2 0 0 0 0 2.62l1.45 1.67a6 6 0 0 1 1.45 4.46l-.2 2.2a2 2 0 0 0 1.55 2.13l2.15.5a6 6 0 0 1 3.8 2.75l1.13 1.9a2 2 0 0 0 2.5.8zm2.82.97a4 4 0 0 1 3.12 0l2.04.87a4 4 0 0 0 4.99-1.62l1.14-1.9a4 4 0 0 1 2.53-1.84l2.15-.5a4 4 0 0 0 3.09-4.24l-.2-2.2a4 4 0 0 1 .97-2.98l1.45-1.67a4 4 0 0 0 0-5.24l-1.45-1.67a4 4 0 0 1-.97-2.97l.2-2.2a4 4 0 0 0-3.09-4.25l-2.15-.5a4 4 0 0 1-2.53-1.84l-1.14-1.9a4 4 0 0 0-5-1.62l-2.03.87a4 4 0 0 1-3.12 0l-2.04-.87a4 4 0 0 0-4.99 1.62l-1.14 1.9a4 4 0 0 1-2.53 1.84l-2.15.5a4 4 0 0 0-3.09 4.24l.2 2.2a4 4 0 0 1-.97 2.98l-1.45 1.67a4 4 0 0 0 0 5.24l1.45 1.67a4 4 0 0 1 .97 2.97l-.2 2.2a4 4 0 0 0 3.09 4.25l2.15.5a4 4 0 0 1 2.53 1.84l1.14 1.9a4 4 0 0 0 5 1.62l2.03-.87zM152 207a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm6 2a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm-11 1a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm-6 0a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm3-5a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm-8 8a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm3 6a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm0 6a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm4 7a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm5-2a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm5 4a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm4-6a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm6-4a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm-4-3a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm4-3a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm-5-4a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm-24 6a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm16 5a5 5 0 1 0 0-10 5 5 0 0 0 0 10zm7-5a7 7 0 1 1-14 0 7 7 0 0 1 14 0zm86-29a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm19 9a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm-14 5a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm-25 1a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm5 4a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm9 0a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm15 1a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm12-2a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm-11-14a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm-19 0a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm6 5a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm-25 15c0-.47.01-.94.03-1.4a5 5 0 0 1-1.7-8 3.99 3.99 0 0 1 1.88-5.18 5 5 0 0 1 3.4-6.22 3 3 0 0 1 1.46-1.05 5 5 0 0 1 7.76-3.27A30.86 30.86 0 0 1 246 184c6.79 0 13.06 2.18 18.17 5.88a5 5 0 0 1 7.76 3.27 3 3 0 0 1 1.47 1.05 5 5 0 0 1 3.4 6.22 4 4 0 0 1 1.87 5.18 4.98 4.98 0 0 1-1.7 8c.02.46.03.93.03 1.4v1h-62v-1zm.83-7.17a30.9 30.9 0 0 0-.62 3.57 3 3 0 0 1-.61-4.2c.37.28.78.49 1.23.63zm1.49-4.61c-.36.87-.68 1.76-.96 2.68a2 2 0 0 1-.21-3.71c.33.4.73.75 1.17 1.03zm2.32-4.54c-.54.86-1.03 1.76-1.49 2.68a3 3 0 0 1-.07-4.67 3 3 0 0 0 1.56 1.99zm1.14-1.7c.35-.5.72-.98 1.1-1.46a1 1 0 1 0-1.1 1.45zm5.34-5.77c-1.03.86-2 1.79-2.9 2.77a3 3 0 0 0-1.11-.77 3 3 0 0 1 4-2zm42.66 2.77c-.9-.98-1.87-1.9-2.9-2.77a3 3 0 0 1 4.01 2 3 3 0 0 0-1.1.77zm1.34 1.54c.38.48.75.96 1.1 1.45a1 1 0 1 0-1.1-1.45zm3.73 5.84c-.46-.92-.95-1.82-1.5-2.68a3 3 0 0 0 1.57-1.99 3 3 0 0 1-.07 4.67zm1.8 4.53c-.29-.9-.6-1.8-.97-2.67.44-.28.84-.63 1.17-1.03a2 2 0 0 1-.2 3.7zm1.14 5.51c-.14-1.21-.35-2.4-.62-3.57.45-.14.86-.35 1.23-.63a2.99 2.99 0 0 1-.6 4.2zM275 214a29 29 0 0 0-57.97 0h57.96zM72.33 198.12c-.21-.32-.34-.7-.34-1.12v-12h-2v12a4.01 4.01 0 0 0 7.09 2.54c.57-.69.91-1.57.91-2.54v-12h-2v12a1.99 1.99 0 0 1-2 2 2 2 0 0 1-1.66-.88zM75 176c.38 0 .74-.04 1.1-.12a4 4 0 0 0 6.19 2.4A13.94 13.94 0 0 1 84 185v24a6 6 0 0 1-6 6h-3v9a5 5 0 1 1-10 0v-9h-3a6 6 0 0 1-6-6v-24a14 14 0 0 1 14-14 5 5 0 0 0 5 5zm-17 15v12a1.99 1.99 0 0 0 1.22 1.84 2 2 0 0 0 2.44-.72c.21-.32.34-.7.34-1.12v-12h2v12a3.98 3.98 0 0 1-5.35 3.77 3.98 3.98 0 0 1-.65-.3V209a4 4 0 0 0 4 4h16a4 4 0 0 0 4-4v-24c.01-1.53-.23-2.88-.72-4.17-.43.1-.87.16-1.28.17a6 6 0 0 1-5.2-3 7 7 0 0 1-6.47-4.88A12 12 0 0 0 58 185v6zm9 24v9a3 3 0 1 0 6 0v-9h-6z'/%3E%3Cpath d='M-17 191a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm19 9a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2H3a1 1 0 0 1-1-1zm-14 5a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm-25 1a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm5 4a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm9 0a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm15 1a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm12-2a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2H4zm-11-14a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm-19 0a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm6 5a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm-25 15c0-.47.01-.94.03-1.4a5 5 0 0 1-1.7-8 3.99 3.99 0 0 1 1.88-5.18 5 5 0 0 1 3.4-6.22 3 3 0 0 1 1.46-1.05 5 5 0 0 1 7.76-3.27A30.86 30.86 0 0 1-14 184c6.79 0 13.06 2.18 18.17 5.88a5 5 0 0 1 7.76 3.27 3 3 0 0 1 1.47 1.05 5 5 0 0 1 3.4 6.22 4 4 0 0 1 1.87 5.18 4.98 4.98 0 0 1-1.7 8c.02.46.03.93.03 1.4v1h-62v-1zm.83-7.17a30.9 30.9 0 0 0-.62 3.57 3 3 0 0 1-.61-4.2c.37.28.78.49 1.23.63zm1.49-4.61c-.36.87-.68 1.76-.96 2.68a2 2 0 0 1-.21-3.71c.33.4.73.75 1.17 1.03zm2.32-4.54c-.54.86-1.03 1.76-1.49 2.68a3 3 0 0 1-.07-4.67 3 3 0 0 0 1.56 1.99zm1.14-1.7c.35-.5.72-.98 1.1-1.46a1 1 0 1 0-1.1 1.45zm5.34-5.77c-1.03.86-2 1.79-2.9 2.77a3 3 0 0 0-1.11-.77 3 3 0 0 1 4-2zm42.66 2.77c-.9-.98-1.87-1.9-2.9-2.77a3 3 0 0 1 4.01 2 3 3 0 0 0-1.1.77zm1.34 1.54c.38.48.75.96 1.1 1.45a1 1 0 1 0-1.1-1.45zm3.73 5.84c-.46-.92-.95-1.82-1.5-2.68a3 3 0 0 0 1.57-1.99 3 3 0 0 1-.07 4.67zm1.8 4.53c-.29-.9-.6-1.8-.97-2.67.44-.28.84-.63 1.17-1.03a2 2 0 0 1-.2 3.7zm1.14 5.51c-.14-1.21-.35-2.4-.62-3.57.45-.14.86-.35 1.23-.63a2.99 2.99 0 0 1-.6 4.2zM15 214a29 29 0 0 0-57.97 0h57.96z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.left-hand {
  max-width: 350px;
  padding: 5px 10px;
  border-radius: 10px;
  margin-bottom: 20px;
  width: fit-content;
  background-color: #f7f7f7;
}
.right-hand {
  max-width: 350px;
  margin-left: auto;
  padding: 5px 10px;
  border-radius: 10px;
  margin-bottom: 20px;
  width: fit-content;
  background-color: #ee4258;
  color: #fff;
}
.user-chat-body {
  height: 360px;
  overflow: auto;
  padding: 20px ;
}
/* End Chat Screen */
/* Blog */
.font-24{
  font-size: 1.5rem;
}
.blog-img-box {
  width: 143px;
  height: 143px;
  overflow: hidden;
  border-radius: 8px;
}
.blog-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.btn-area button {
  width: 125px;
  text-align: center;
  margin: 0 auto;
  display: block;
}
.blog-edit-btn {
  background-color: #6bd51e;
}
/* End Blog */
/* Responsive CSS */
@media (max-width: 1399px) {
  html{
    font-size: 90%;
  }
  .payment-box {
    left: 0;
  }
  .job-list-item .text-box{
    flex: 0 0 350px;
    max-width: 350px;
  }
  .actions button, .actions a {
    width: 45px;
    height: 45px;
  }
  .budget-post {
    width: auto;
  }

  .employer-header .notification-box.dropdown-menu[data-bs-popper] {
    left: -150px;
  }

  .dropdown-menu[data-bs-popper] {
    left: -100px;
  }

  .company-logo {
    height: 45px;
    width: 45px;
  }

  .font-28 {
    font-size: 22px;
  }

  .popular-post-detail p.mb-3 {
    font-size: 14px;
  }

  .form-area {
    padding: 30px;
  }

  .fullwidth .search-popular-companies .input-col {
    width: 60%;
    flex: 0 0 60%;
  }

  .popular-post .img-box {
    width: 40px;
    height: 40px;
    margin-right: 10px !important;
  }

  .popular-post .ms-7 {
    top: 0;
    margin-left: 0 !important;
    margin-top: 10px;
  }
}

@media (max-width: 1199px) {
  .current-plan-box .font-20 {
    font-size: 18px;
  }

  .status-box .form-select {
    width: 200px;
  }

  .job-list-item .text-box {
    flex: 0 0 350px;
    max-width: 350px;
  }

  .actions button,
  .actions a {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .budget-post {
    padding: 30px 0;
  }

  .font-74 {
    font-size: 60px;
  }

  .notification-box.dropdown-menu a.dropdown-item {
    padding: 10px;
  }

  .employer-header .notification-box.dropdown-menu[data-bs-popper] {
    left: -170px;
  }

  .search-popular-companies .btn-theme {
    padding: 10px 55px;
  }

  .what-field {
    width: 400px;
  }

  .bg-post {
    padding: 15px 10px;
  }

  .font-22 {
    font-size: 18px;
    line-height: normal;
  }

  .btn-apply {
    font-size: 14px;
    width: 200px;
  }

  .font-34 {
    font-size: 30px !important;
    line-height: normal;
  }

  .font-17 {
    font-size: 1rem;
  }

  .font-38 {
    font-size: 32px;
  }

  .font-18 {
    font-size: 1rem;
  }

  .navbar-nav>a {
    font-size: 18px;
  }

  .footer-nav>li:not(:last-child) {
    margin-right: 40px;
  }

  .home-banner {
    height: 800px;
  }

  .height-800 {
    min-height: 700px;
  }

  .btn-theme3 {
    height: auto;
    padding: 10px 20px;
  }
}

@media (max-width: 991px) {
  .current-plan-box .btn-theme3 {
    width: 170px;
    height: 50px;
  }

  .job-list-item h3::before {
    width: 10px;
    height: 10px;
    left: -20px;
    top: 5px;
  }

  .actions a {
    margin-right: 10px !important;
  }

  .actions button,
  .actions a {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .job-list-item p {
    font-size: 13px;
  }

  .status-box .form-select {
    width: 150px;
    height: 36px;
    font-size: 14px;
  }

  .job-list-item .text-box {
    flex: 0 0 200px;
    max-width: 200px;
    margin-left: 15px !important;
  }

  .payment-box {
    padding: 34px 25px;
  }

  .budget-post sup {
    font-size: 24px;
    top: -30px;
  }

  .font-74 {
    font-size: 50px;
  }

  .budget-post img {
    width: auto;
    height: 200px;
    object-fit: contain;
  }

  .budget-post {
    height: 500px;
  }

  .custom-nav button.btn-theme {
    font-size: 15px;
    padding: 10px 40px;
    height: auto;
  }

  .myjob-list .d-flex.align-items-center.justify-content-between.bg-post.border-1.border-radius-9 {
    align-items: unset !important;
  }

  .user-item-nav.nav-pills {
    padding: 20px 10px;
    height: 100%;
  }

  .user-item-nav.nav-pills .nav-link,
  .custom-accordian .accordion-header button {
    font-size: 15px;
    padding-bottom: 20px;
  }

  .accordion-button {
    font-size: 14px;
  }

  .navbar .dropdown-item {
    padding: 5px 5px;
    font-size: 13px;
  }

  .navbar .dropdown-item p {
    font-size: 16px;
  }

  .navbar .dropdown-item p.font-15 {
    font-size: 13px;
  }

  .fullwidth .search-popular-companies .input-col {
    padding: 0 15px;
    font-size: 14px;
    height: 45px !important;
  }

  .search-popular-companies .btn-theme {
    height: auto !important;
    padding: 10px 25px;
    font-size: 16px;
  }

  .job-seeker-header .navbar-nav>a:not(:last-child) {
    margin-right: 15px;
    line-height: normal;
  }

  .navbar-nav .btn-donation {
    padding: 9px 15px;
    height: auto;
  }

  .popular-post .font-15 {
    font-size: 13px;
  }

  .help-center-bg {
    height: 100vh;
    min-height: auto;
  }

  article .text-box {
    padding: 10px 15px;
  }

  .font-17 {
    font-size: 14px;
  }

  .font-38 {
    font-size: 26px;
    line-height: normal;
  }

  .font-12 {
    font-size: 14px;
  }

  .register-bg {
    height: 100vh;
  }

  .font-34 {
    font-size: 26px !important;
  }

  .form-area {
    padding: 20px;
  }

  .login-bg {
    height: 100vh;
  }

  .banner-filter form {
    margin: 20px 0;
  }

  .home-banner {
    height: 770px;
  }

  .navbar-nav>a {
    font-size: 1rem;
  }

  .navbar-nav>a:not(:last-child) {
    margin-right: 30px;
  }

  .footer-nav>li:not(:last-child) {
    margin-right: 20px;
  }

  .footer-nav>li>a {
    font-size: 15px;
  }

  .what-field {
    width: 400px;
  }

  .home-banner .btn-theme {
    font-size: 18px;
  }

  .search-result-filter .btn-theme {
    font-size: 14px;
    padding: 10px 10px;
    width: 170px;
    display: block;
  }

  .search-result-filter .input-col {
    padding: 0 15px;
    margin-right: 10px !important;
  }

  .search-result-filter .what-field {
    width: 350px;
  }

  .search-result-filter .where-field {
    width: 240px;
  }
}

@media (max-width: 767px) {
  .favorite-job-detail .btn-apply {
    width: 50%;
  }

  .font-74 {
    font-size: 40px;
  }

  .font-31 {
    font-size: 24px;
  }

  .current-plan-box .font-20 {
    font-size: 16px;
  }

  .job-list-detail .actions,
  .job-list-detail .status-box {
    margin: 20px 0;
  }

  .job-list-item {
    flex-wrap: wrap;
  }

  .job-list-item .text-box {
    max-width: 100%;
    flex: 0 0 auto;
  }

  .package,
  .actions {
    margin-top: 20px;
  }

  .search-popular-companies .input-col {
    flex: 0 0 100%;
    padding: 10px;
    margin-bottom: 20px;
    margin-right: 0 !important;
    height: 55px !important;
  }

  .search-popular-companies {
    justify-content: center;
  }

  .budget-post img {
    height: 150px;
  }

  .job-preview-sec .budget-post {
    padding: 10px;
  }

  .payment-box {
    padding: 55px 25px 55px 15px;
  }

  .budget-post {
    margin-bottom: 20px;
  }

  .user-item-nav.nav-pills {
    height: auto;
    margin-bottom: 20px;
    padding: 20px 10px 0;
  }

  .search-popular-companies {
    flex-wrap: wrap;
  }

  .fullwidth .search-popular-companies .input-col {
    width: 100%;
    flex: 0 0 100%;
    margin-bottom: 15px;
  }

  .search-popular-companies .btn-theme {
    width: 48%;
    display: block;
    padding: 0;
    height: 40px !important;
  }

  .navbar-nav>a.active {
    background-color: #111 !important;
    color: #fff;
  }

  .job-seeker-header .navbar-nav>a:not(:last-child) {
    margin-right: 0;
  }

  .btn-apply {
    width: 1200%;
    margin-right: 0 !important;
  }

  .btn-apply:not(:last-child) {
    margin-bottom: 15px;
  }

  .font-22 {
    font-size: 16px;
  }

  .job-post ul>li.me-2 {
    margin-right: 0 !important;
  }

  .css-ryrseu-MuiRating-root {
    font-size: 16px;
  }

  .search-result-filter .what-field {
    width: 50%;
    flex: 0 0 50%;
    margin-bottom: 0;
  }

  .search-result-filter form {
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .container {
    max-width: 100%;
  }

  .search-result-filter .btn-theme {
    margin-top: 20px;
    width: 100%;
  }

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

  header .logo {
    margin-left: 15px;
  }

  button.navbar-toggler {
    margin-right: 15px;
  }

  .navbar-nav {
    align-items: unset;
    background-image: linear-gradient(to bottom, #eb6879, #ea1e38);
    margin-top: 20px;
  }

  .navbar-nav>a:not(:last-child) {
    margin-right: 0;
    border-bottom: 1px dashed #fff;
  }

  .navbar-nav>a,
  .navbar-nav>.btn-donation {
    display: block;
    padding: 10px 15px;
    color: #fff;
    font-size: 1rem;
  }

  .navbar-nav .btn-donation {
    height: auto;
    border: 0;
    text-align: left;
    font-weight: normal;
    border: 0;
  }

  .footer-nav>li:not(:last-child) {
    margin-right: 15px;
  }

  .footer-nav>li {
    font-size: 14px;
  }

  .footer-nav>li>a {
    font-size: 14px;
  }

  .footer-nav {
    flex-wrap: wrap;
  }

  footer {
    padding: 20px 0;
  }

  .footer-nav-area {
    flex-wrap: wrap;
    justify-content: center !important;
  }

  .what-field,
  .where-field {
    width: 45%;
    flex: 0 0 45%;
    padding: 0 10px;
  }

  .banner-filter form {
    flex-wrap: wrap;
  }

  .where-field.me-3 {
    margin-right: 0 !important;
  }

  .home-banner .btn-theme {
    margin-top: 15px;
  }

  .font-38 {
    font-size: 22px;
  }

  .font-18 {
    font-size: 14px;
  }

  .input-col .form-control {
    font-size: 14px;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  .lgbt-bg .font-34 {
    font-size: 20px !important;
    margin-bottom: 15px;
  }

  .forget-pass-sec .container {
    display: flex;
    flex-direction: column;
  }

  .navbar-nav .btn-donation:hover,
  .navbar-nav .btn-donation:active,
  .navbar-nav .btn-donation:focus {
    background-image: unset;
    background-color: transparent !important;
  }

  /* total width */
  ::-webkit-scrollbar {
    background-color: #fff;
    width: 10px;
  }

  /* background of the scrollbar except button or resizer */
  ::-webkit-scrollbar-track {
    background-color: #fff;
  }

  ::-webkit-scrollbar-track:hover {
    background-color: #f4f4f4;
  }

  /* scrollbar itself */
  ::-webkit-scrollbar-thumb {
    background-color: #babac0;
    border-radius: 10px;
    border: 3px solid #fff;
  }

  ::-webkit-scrollbar-thumb:hover {
    background-color: #a0a0a5;
    border: 2px solid #f4f4f4;
  }
}

@media (max-width: 575px) {
  
  .favorite-job-detail .btn-apply {
    width: 100%;
  }
  .current-plan-box .d-flex.align-items-center.justify-content-between {
    flex-wrap: wrap;
  }

  .current-plan-box .btn-theme3 {
    margin-top: 20px;
  }

  .btn-theme3 {
    width: 100%;
    display: block;
    text-align: center;
  }

  .post-job-area p>br {
    display: none;
  }

  .status-box {
    flex-wrap: wrap;
  }

  .job-list-item .text-box {
    flex: 0 0 100%;
    margin-bottom: 10px;
  }

  .status-box .form-select {
    width: 100%;
    flex: 0 0 100%;
  }

  .status-box {
    width: 100%;
  }

  .payment-box {
    overflow-y: auto;
  }

  .budget-post {
    height: auto;
  }

  section.dashboard-sec {
    text-align: center;
  }

  .employer-header .notification-box.dropdown-menu[data-bs-popper] {
    left: -90px;
  }

  #user-notification span {
    top: 0;
    right: 6px;
  }

  .search-popular-companies .btn-theme {
    width: 45%;
    margin: 0 auto;
  }

  .logo {
    width: 100px;
  }

  .box-icon {
    width: 40px;
    height: 40px;
  }

  .navbar-toggler {
    font-size: 16px;
  }

  .footer-nav {
    justify-content: center;
  }

  .what-field,
  .where-field {
    width: 100%;
    max-width: 100%;
    margin-right: 0 !important;
  }

  .banner-filter form {
    flex-direction: column;
  }

  .what-field {
    margin-bottom: 15px;
  }

  .input-col .form-control {
    height: 55px;
  }

  .home-banner .btn-theme {
    width: 100%;
  }

  .forget-pass-sec .d-flex.align-items-center.justify-content-between {
    flex-wrap: wrap;
    justify-content: center !important;
  }

  .forget-pass-sec .d-flex.align-items-center.justify-content-between p {
    margin-bottom: 10px;
  }

  .help-center-bg .form-area {
    margin-top: 20px;
  }
}

/* End Responsive CSS */
