/*
@File: Jaba Template Styles

* This file contains the styling for the actual template, this
is the file you need to edit to change the look of the template.

This files table contents are outlined below

******************************************* 
** - Default-style
** - Default-btn-style
** - Section-title-style
** - Top Header-style
** - Navbar-style
** - Banner-style
** - Categories-style
** - Job-style
** - Employer-style
** - Reviews-style
** - Pricing-style
** - Company-style
** - Counter-style
** - CV-style
** - Paginations-style
** - Partner-style
** - Job Location-style
** - Post A Job-style
** - Job Listing-style
** - Freelancer-style
** - Candidates-style
** - Sidebar-style
** - Team-style
** - Download-style
** - Faq-style
** - Works-style
** - Blog-style
** - Contact-style
** - Error-style
** - User-style
** - Privacy Policy-style
** - Terms & Condition-style
** - Coming Soon-style
*******************************************
*/
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
/*Default-style
======================================================*/
body {
  color: #666666;
  font-size: 16px;
  font-weight: 500;
  font-family: "Roboto";
}

img {
  max-width: 100%;
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  vertical-align: middle;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pt-50 {
  padding-top: 50px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pt-70 {
  padding-top: 70px;
}

.ptb-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.pl-15 {
  padding-left: 15px;
}

.pr-15 {
  padding-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.pr-20 {
  padding-right: 20px;
}

.pl-20 {
  padding-left: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mlr-5 {
  margin-right: 5px;
  margin-left: 5px;
}

.mlrt-5 {
  margin-right: 5px;
  margin-left: 5px;
  margin-top: 5px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #202124;
  font-family: "Roboto";
  font-weight: 600;
  line-height: 1.4;
}

h1 {
  font-size: 45px;
}

h2 {
  font-size: 35px;
}

body {
  font-weight: 400;
}

p {
  margin-bottom: 15px;
  font-size: 16px;
  font-family: "Roboto";
  color: #666666;
  font-weight: 400;
  line-height: 1.7;
}
p:last-child {
  margin-bottom: 0;
}

a {
  text-decoration: none;
}

.owl-nav {
  margin-top: 0 !important;
}

.owl-dots {
  margin-top: 0 !important;
}

.form-control {
  /* height: 50px; */
  border: 1px solid #e2e2e2;
  padding-left: 15px;
  font-weight: 500;
  color: #666666;
  /* font-size: small; */
}
.form-control::-moz-placeholder {
  color: #666666;
  -moz-transition: all ease 0.5s;
  transition: all ease 0.5s;
  font-weight: 500;
}
.form-control::placeholder {
  color: #666666;
  transition: all ease 0.5s;
  font-weight: 500;
}
.form-control:focus {
  border: 1px solid #1f86ef;
  box-shadow: none;
}
.form-control:focus::-moz-placeholder {
  color: transparent;
}
.form-control:focus::placeholder {
  color: transparent;
}
.form-group label {
  /* margin-top: 10px; */
  /* font-size: small; */
  font-weight: 600;
}

textarea {
  height: auto !important;
}

.bg-f0f4fc {
  background-color: #f0f4fc;
}

.bg-f0f5f7 {
  background-color: #f0f5f7;
}

.bg-main-color {
  background-color: #1f86ef;
}

/*Default-btn
======================================================*/
.default-btn {
  background-color: #0066cc;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 30px;
  border-radius: 5px;
  position: relative;
  text-align: center;
  transition: all ease 0.5s;
  display: inline-block;
  border: unset;
  z-index: 1;
  overflow: hidden;
}
.default-btn i {
  position: relative;
  top: 1px;
  padding-left: 6px;
}
.default-btn::before {
  position: absolute;
  content: "";
  background-color: #ff6600;
  height: 100%;
  width: 0%;
  border-radius: 0 5px 5px 0;
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
  bottom: 0;
  right: 0;
  transition: all ease 0.5s;
  z-index: -1;
}
.default-btn::after {
  position: absolute;
  content: "";
  background-color: #0066cc;
  height: 100%;
  width: 0%;
  border-radius: 5px 0 0 5px;
  -webkit-clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
  top: 0;
  left: 0;
  transition: all ease 0.5s;
  z-index: -1;
}
.default-btn:hover {
  color: #ffffff;
  border-color: #1f86ef;
}
.default-btn:hover::before {
  width: 60%;
  height: 100%;
}
.default-btn:hover::after {
  width: 60%;
  height: 100%;
}
.default-btn.style-2 {
  background-color: transparent;
  color: #1f86ef;
}
.default-btn.style-2 i {
  padding-right: 5px;
  top: -1px;
}
.default-btn.style-2:hover {
  color: #ffffff;
}
.default-btn:focus {
  box-shadow: none;
}
.default-btn.for-card {
  padding: 10px 20px;
}

/*Section Title Style
======================================================*/
.section-title {
  max-width: 680px;
  margin: auto auto 40px auto;
  text-align: center;
}
.section-title span {
  color: #1f86ef;
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 500;
}
.section-title h2 {
  font-size: 36px;
  margin-bottom: 10px;
  position: relative;
  border-radius: 10px;
  margin-top: -10px;
}
.section-title h2 .overlay {
  position: absolute;
  left: 0;
  top: 0;
  background: #1f86ef;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 10px;
}
.section-title.white-title span {
  color: #1f86ef;
}
.section-title.white-title h2 {
  color: #ffffff;
}
.section-title.style2 {
  text-align: start;
  margin-left: 0;
  margin-right: auto;
}

.header-language-toggle {
  margin-left: 20px;
}

.header-language-toggle .form-select {
  padding: 5px 30px 5px 10px;
}

/*Pre Loader Style
======================================================*/
.no-scroll-y {
  overflow-y: hidden;
}

.ctn-preloader {
  align-items: center;
  cursor: none;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999;
}
.ctn-preloader .animation-preloader {
  position: absolute;
  z-index: 100;
}
.ctn-preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.2);
  border-top-color: #1f86ef;
  height: 8em;
  margin: 0 auto 3.5em auto;
  width: 8em;
}
.ctn-preloader .animation-preloader .txt-loading {
  /*  font: bold 5em "Montserrat", sans-serif;*/
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.ctn-preloader .animation-preloader .txt-loading .letters-loading {
  color: #1f86ef;
  position: relative;
}
.ctn-preloader .animation-preloader .txt-loading .letters-loading:before {
  animation: letters-loading 4s infinite;
  color: #202124;
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transform: rotateY(-90deg);
}
.ctn-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}
.ctn-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}
.ctn-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}
.ctn-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}
.ctn-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}
.ctn-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(7):before {
  animation-delay: 1.2s;
}
.ctn-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(8):before {
  animation-delay: 1.4s;
}
.ctn-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(9):before {
  animation-delay: 1.6s;
}
.ctn-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(10):before {
  animation-delay: 1.8s;
}

.ctn-preloader .loader-section {
  background-color: #ffffff;
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
}
.ctn-preloader .loader-section.section-left {
  left: 0;
}
.ctn-preloader .loader-section.section-right {
  right: 0;
}

.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}
.loaded .loader-section.section-left {
  transform: translateX(-101%);
  transition: 3.5s 0.1s all cubic-bezier(0.1, 0.1, 0.1, 2);
}
.loaded .loader-section.section-right {
  transform: translateX(101%);
  transition: 3.5s 0.1s all cubic-bezier(0.1, 0.1, 0.1, 2);
}

/* Preloader Animation */
@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}
@keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@media screen and (max-width: 767px) {
  /* Spinner Loading */
  .ctn-preloader .animation-preloader .spinner {
    height: 8em;
    width: 8em;
  }
  .ctn-preloader .animation-preloader .txt-loading {
    /*font: bold 3.5em "Montserrat", sans-serif;*/
  }
}
@media screen and (max-width: 500px) {
  /* Prelaoder */
  .ctn-preloader .animation-preloader .spinner {
    height: 7em;
    width: 7em;
  }
  .ctn-preloader .animation-preloader .txt-loading {
    /*font: bold 2em "Montserrat", sans-serif;*/
  }
}
/*
Top Header Style
======================================================*/
.top-header-area {
  background-color: #1a1a1a;
  padding-bottom: 8px;
  padding-top: 8px;
}
.top-header-area .container-fluid {
  max-width: 1660px;
  padding-left: 30px;
  padding-right: 30px;
  margin: auto;
}
.top-header-area .top-header-left-content span {
  color: #ffffff;
}
.top-header-area .top-header-right-content {
  text-align: end;
}
.top-header-area .top-header-right-content ul {
  padding-left: 0;
  margin-bottom: 0;
}
.top-header-area .top-header-right-content ul li {
  display: inline-block;
  margin-right: 20px;
}
.top-header-area .top-header-right-content ul li:last-child {
  margin-right: 0;
}
.top-header-area .top-header-right-content ul li a {
  color: #ffffff;
  transition: all ease 0.5s;
}
.top-header-area .top-header-right-content ul li a:hover {
  color: #1f86ef;
}
.top-header-area .top-header-right-content ul li .select-content {
  position: relative;
}
.top-header-area .top-header-right-content ul li .select-content .form-select {
  background-color: #1a1a1a;
  color: #ffffff;
  border: unset;
  box-shadow: unset;
  background-image: unset;
  cursor: pointer;
}
.top-header-area .top-header-right-content ul li .select-content i {
  color: #ffffff;
  position: absolute;
  font-size: 13px;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}

/*
Navbar Area Style
======================================================*/
.navbar-area {
  position: relative;
  background-color: #ffffff;
  padding-top: 10px;
  padding-bottom: 10px;
  z-index: 9;
}
.navbar-area.bg-f0f4fc {
  background-color: #f0f4fc;
}
.navbar-area.is-sticky {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: #ffffff;
  position: sticky !important;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}
.navbar-area .container-fluid {
  max-width: 1660px;
  padding-left: 30px;
  padding-right: 30px;
  margin: auto;
}
.navbar-area.style-2 .container-fluid {
  max-width: 1920px;
  padding-left: 60px;
  padding-right: 60px;
}
.navbar-area.style-2 .desktop-nav .navbar-nav {
  padding-left: 140px;
}
.navbar-area .navbar-brand .white-logo {
  display: none;
}
.navbar-area .mobile-responsive-menu .logo .white-logo {
  display: none;
}

.navbar-brand {
  margin-right: 40px;
}

.desktop-nav {
  padding-top: 0;
  padding-bottom: 0;
}
.desktop-nav .navbar {
  transition: all ease 0.5s;
  z-index: 2;
  padding-right: 0;
  padding-top: 0;
  padding-left: 0;
  padding-bottom: 0;
}
.desktop-nav .navbar .navbar-brand {
  margin-right: 60px;
}
.desktop-nav .navbar ul {
  margin-bottom: 0;
  list-style-type: none;
}
.desktop-nav .navbar .navbar-nav .nav-item {
  position: relative;
  padding-bottom: 20px;
  padding-top: 20px;
  padding-right: 0;
  padding-left: 0;
}
.desktop-nav .navbar .navbar-nav .nav-item a {
  font-size: 16px;
  color: #1b2336;
  line-height: 1;
  position: relative;
  font-weight: 600;
  font-family: "Roboto";
  padding-left: 0;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  margin-left: 10px;
  margin-right: 10px;
}
.desktop-nav .navbar .navbar-nav .nav-item a.dropdown-toggle {
  padding-right: 16px;
}
.desktop-nav .navbar .navbar-nav .nav-item a.dropdown-toggle::after {
  display: none;
}

.desktop-nav .navbar .navbar-nav .nav-item a.dropdown-toggle::before {
  top: 3px;
  right: 0;
  opacity: 0.5;
  line-height: 1;
  font-size: 14px;
  content: "\f107";
  position: absolute;
  font-family: "Font Awesome 6 Free";
  display: none;
}

.desktop-nav .navbar .navbar-nav .nav-item a:hover,
.desktop-nav .navbar .navbar-nav .nav-item a:focus,
.desktop-nav .navbar .navbar-nav .nav-item a.active {
  color: #1f86ef;
}
.desktop-nav .navbar .navbar-nav .nav-item a i {
  font-size: 18px;
  line-height: 0;
  position: relative;
  top: 4px;
}
.desktop-nav .navbar .navbar-nav .nav-item:last-child a {
  margin-right: 0;
}
.desktop-nav .navbar .navbar-nav .nav-item:first-child a {
  margin-left: 0;
}
.desktop-nav .navbar .navbar-nav .nav-item:hover a,
.desktop-nav .navbar .navbar-nav .nav-item:focus a,
.desktop-nav .navbar .navbar-nav .nav-item.active a {
  color: #1f86ef;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu {
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  background: #ffffff;
  position: absolute;
  visibility: hidden;
  border-radius: 0;
  display: block;
  width: 250px;
  border: none;
  z-index: 99;
  opacity: 0;
  top: 80px;
  left: 0;
  padding: 0;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li {
  padding: 0;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a {
  color: #1b2336;
  padding: 15px;
  border-bottom: 1px dashed #ededed;
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  display: block;
  position: relative;
}
.desktop-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  a.dropdown-toggle::after {
  display: none;
}
.desktop-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  a.dropdown-toggle::before {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  top: 14px;
  right: 13px;
  line-height: 1;
  font-size: 16px;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:hover,
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:focus,
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
  color: #1f86ef;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
  right: 250px;
  left: auto;
  top: 0;
  opacity: 0;
  visibility: hidden;
}
.desktop-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  a {
  color: #1b2336;
  border-bottom: 1px dashed #ededed;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  position: relative;
}
.desktop-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  a.dropdown-toggle::after {
  display: none;
}
.desktop-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  a.dropdown-toggle::before {
  content: "\ea12";
  position: absolute;
  top: 14px;
  right: 13px;
  font-family: "Roboto";
  line-height: 1;
  font-size: 17px;
}
.desktop-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  a:hover,
.desktop-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  a:focus,
.desktop-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  a.active {
  color: #1f86ef;
}
.desktop-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu {
  right: 250px;
  left: auto;
  top: 0;
  opacity: 0;
  visibility: hidden;
}
.desktop-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  a {
  color: #000000;
}
.desktop-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  a:hover,
.desktop-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  a:focus,
.desktop-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  a.active {
  color: #1f86ef;
}
.desktop-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu {
  right: -250px;
  left: auto;
  top: 0;
  opacity: 0;
  visibility: hidden;
}
.desktop-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  a {
  color: #000000;
}
.desktop-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  a:hover,
.desktop-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  a:focus,
.desktop-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  a.active {
  color: #1f86ef;
}
.desktop-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu {
  right: -250px;
  left: auto;
  top: 0;
  opacity: 0;
  visibility: hidden;
}
.desktop-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  a {
  color: #000000;
}
.desktop-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  a:hover,
.desktop-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  a:focus,
.desktop-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  a.active {
  color: #1f86ef;
}
.desktop-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu {
  right: -250px;
  left: auto;
  top: 0;
  opacity: 0;
  visibility: hidden;
}
.desktop-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  a {
  color: #000000;
}
.desktop-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  a:hover,
.desktop-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  a:focus,
.desktop-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  a.active {
  color: #1f86ef;
}
.desktop-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu {
  right: -250px;
  left: auto;
  top: 0;
  opacity: 0;
  visibility: hidden;
}
.desktop-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  a {
  color: #000000;
}
.desktop-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  a:hover,
.desktop-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  a:focus,
.desktop-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  a.active {
  color: #1b2336;
}
.desktop-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li.active
  a {
  color: #1b2336;
}
.desktop-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li:hover
  .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: -15px;
}
.desktop-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li.active
  a {
  color: #1f86ef;
}
.desktop-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li:hover
  .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: -1px;
}
.desktop-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li.active
  a {
  color: #1f86ef;
}
.desktop-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li:hover
  .dropdown-menu {
  opacity: 1;
  top: -1px;
  visibility: visible;
}
.desktop-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li.active
  a {
  color: #1f86ef;
}
.desktop-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li
  .dropdown-menu
  li:hover
  .dropdown-menu {
  opacity: 1;
  top: -15px;
  visibility: visible;
}
.desktop-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li.active
  a {
  color: #1f86ef;
}
.desktop-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li
  .dropdown-menu
  li:hover
  .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: -15px;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li.active a {
  color: #1f86ef;
}
.desktop-nav
  .navbar
  .navbar-nav
  .nav-item
  .dropdown-menu
  li:hover
  .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: 0;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li:last-child a {
  border-bottom: none;
}
.desktop-nav .navbar .navbar-nav .nav-item:hover .dropdown-menu {
  top: 100%;
  opacity: 1;
  margin-top: 16px;
  transform: translateY(1);
  visibility: visible;
}
.desktop-nav .navbar .others-options {
  padding-left: 40px;
}
.desktop-nav .navbar .others-options .option-item {
  display: inline-block;
  margin-left: 15px;
}
.desktop-nav .navbar .others-options .profile-nav-item .dropdown-bs-toggle {
  padding: 0;
  color: #666666;
  font-weight: 400;
  position: relative;
}
.desktop-nav
  .navbar
  .others-options
  .profile-nav-item
  .dropdown-bs-toggle
  span {
  position: relative;
  top: 1px;
  color: #202124;
  font-weight: 600;
  transition: all ease 0.5s;
}
.desktop-nav
  .navbar
  .others-options
  .profile-nav-item
  .dropdown-bs-toggle
  span::before {
  display: none;
}
.desktop-nav
  .navbar
  .others-options
  .profile-nav-item
  .dropdown-bs-toggle:hover::before {
  color: #1f86ef;
}
.desktop-nav
  .navbar
  .others-options
  .profile-nav-item
  .dropdown-bs-toggle:hover
  span {
  color: #1f86ef;
}
.desktop-nav .navbar .others-options .profile-nav-item .menu-profile img {
  width: 40px;
  height: 40px;
  margin-right: 5px;
  object-fit: contain;
  background: #f0f5f7;
  padding: 2px;
}
.desktop-nav .navbar .others-options .profile-nav-item .menu-profile .name i {
  font-size: 14px;
  color: #666666;
  padding-left: 5px;
}
.desktop-nav .navbar .others-options .profile-nav-item.dropdown .dropdown-menu {
  padding: 15px 15px 10px;
  min-width: 250px;
  max-width: 280px;
  position: absolute;
  right: 0;
  left: auto;
  border-radius: 5px;
  margin-top: 20px;
  border: none;
  display: block;
  transition: all ease 0.5s;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
}
.desktop-nav
  .navbar
  .others-options
  .profile-nav-item.dropdown
  .dropdown-menu
  .dropdown-header {
  padding: 0;
  border-bottom: 1px solid #f2f4f9;
  margin-left: -15px;
  margin-right: -15px;
}
.desktop-nav
  .navbar
  .others-options
  .profile-nav-item.dropdown
  .dropdown-menu
  .dropdown-header
  .figure {
  position: relative;
}
.desktop-nav
  .navbar
  .others-options
  .profile-nav-item.dropdown
  .dropdown-menu
  .dropdown-header
  .figure
  img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  background: #f0f5f7;
  padding: 5px;
}

.desktop-nav
  .navbar
  .others-options
  .profile-nav-item.dropdown
  .dropdown-menu
  .dropdown-header
  .name {
  display: block;
  color: #202124;
  margin-bottom: 2px;
  font-size: 14px;
  font-weight: 500;
}
.desktop-nav
  .navbar
  .others-options
  .profile-nav-item.dropdown
  .dropdown-menu
  .dropdown-header
  .email {
  color: #666666 !important;
  font-size: 13px;
}
.desktop-nav
  .navbar
  .others-options
  .profile-nav-item.dropdown
  .dropdown-menu
  .dropdown-body
  ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}
.desktop-nav
  .navbar
  .others-options
  .profile-nav-item.dropdown
  .dropdown-menu
  .dropdown-body
  ul
  .nav-item {
  margin-left: 0;
}
.desktop-nav
  .navbar
  .others-options
  .profile-nav-item.dropdown
  .dropdown-menu
  .dropdown-body
  ul
  .nav-item
  .nav-link {
  color: #666666;
  padding: 5px 15px 5px 38px;
  position: relative;
  font-size: 15px;
  margin-bottom: 5px;
  font-weight: 400;
}
.desktop-nav
  .navbar
  .others-options
  .profile-nav-item.dropdown
  .dropdown-menu
  .dropdown-body
  ul
  .nav-item
  .nav-link
  span {
  color: #666666;
  display: block;
  font-weight: 400;
}
.desktop-nav
  .navbar
  .others-options
  .profile-nav-item.dropdown
  .dropdown-menu
  .dropdown-body
  ul
  .nav-item
  .nav-link
  .icon {
  color: #666666;
  transition: all ease 0.5s;
  position: absolute;
  left: 15px;
  top: 2px;
  font-size: 16px;
}
.desktop-nav
  .navbar
  .others-options
  .profile-nav-item.dropdown
  .dropdown-menu
  .dropdown-body
  ul
  .nav-item
  .nav-link:hover
  span {
  color: #1f86ef;
}
.desktop-nav
  .navbar
  .others-options
  .profile-nav-item.dropdown
  .dropdown-menu
  .dropdown-body
  ul
  .nav-item
  .nav-link:hover
  i {
  transform: rotateY(-180deg);
}
.desktop-nav
  .navbar
  .others-options
  .profile-nav-item.dropdown
  .dropdown-menu
  .dropdown-footer {
  margin: 10px -15px 0;
  padding: 10px 15px 0;
  border-top: 1px solid #eeeeee;
}
.desktop-nav
  .navbar
  .others-options
  .profile-nav-item.dropdown
  .dropdown-menu
  .dropdown-footer
  ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}
.desktop-nav
  .navbar
  .others-options
  .profile-nav-item.dropdown
  .dropdown-menu
  .dropdown-footer
  ul
  .nav-item
  .nav-link {
  color: red;
  padding: 5px 15px 5px 38px;
  position: relative;
  font-size: 15px;
  font-weight: 500;
}
.desktop-nav
  .navbar
  .others-options
  .profile-nav-item.dropdown
  .dropdown-menu
  .dropdown-footer
  ul
  .nav-item
  .nav-link
  span {
  color: red;
  display: block;
  font-weight: 400;
}
.desktop-nav
  .navbar
  .others-options
  .profile-nav-item.dropdown
  .dropdown-menu
  .dropdown-footer
  ul
  .nav-item
  .nav-link
  img {
  color: red;
  transition: all ease 0.5s;
  position: absolute;
  left: 15px;
  top: 8px;
}
.desktop-nav
  .navbar
  .others-options
  .profile-nav-item.dropdown
  .dropdown-menu
  .dropdown-footer
  ul
  .nav-item
  .nav-link:hover
  i {
  transform: rotateY(-180deg);
}
.desktop-nav
  .navbar
  .others-options
  .profile-nav-item.dropdown
  .dropdown-menu.show {
  margin-top: 10px;
  opacity: 1;
  visibility: visible;
}

/*
Others Option For Responsive Area Style
======================================================*/
.others-option-for-responsive {
  display: none !important;
}
.others-option-for-responsive .dot-menu {
  padding: 0 10px;
  height: 30px;
  cursor: pointer;
  z-index: 999;
  position: absolute;
  right: 60px;
  top: -38px;
}
.others-option-for-responsive .dot-menu .inner {
  display: flex;
  align-items: center;
  height: 30px;
}
.others-option-for-responsive .dot-menu .inner .circle {
  height: 5px;
  width: 5px;
  border-radius: 100%;
  margin: 0 2px;
  transition: all ease 0.5s;
  background-color: #1f86ef;
}
.others-option-for-responsive .dot-menu:hover .inner .circle {
  background-color: #1f86ef;
}
.others-option-for-responsive .container {
  position: relative;
}
.others-option-for-responsive .container .container {
  position: absolute;
  right: -2px;
  top: 15px;
  max-width: 320px;
  margin-left: auto;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.5s;
  transform: scaleY(0);
  z-index: 2;
  padding-left: 15px;
  padding-right: 15px;
}
.others-option-for-responsive .container .container.active {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
}
.others-option-for-responsive .others-options {
  padding: 10px;
  background-color: #ffffff;
  text-align: center;
}
.others-option-for-responsive
  .others-options
  .option-item
  .default-btn.style-2 {
  margin-bottom: 10px;
}
.others-option-for-responsive
  .others-options
  .profile-nav-item
  .dropdown-bs-toggle {
  padding: 0;
  color: #666666;
  font-weight: 400;
  position: relative;
}
.others-option-for-responsive
  .others-options
  .profile-nav-item
  .dropdown-bs-toggle
  span {
  position: relative;
  top: 1px;
  color: #202124;
  font-weight: 600;
  transition: all ease 0.5s;
}
.others-option-for-responsive
  .others-options
  .profile-nav-item
  .dropdown-bs-toggle
  span::before {
  display: none;
}
.others-option-for-responsive
  .others-options
  .profile-nav-item
  .dropdown-bs-toggle:hover::before {
  color: #1f86ef;
}
.others-option-for-responsive
  .others-options
  .profile-nav-item
  .dropdown-bs-toggle:hover
  span {
  color: #1f86ef;
}
.others-option-for-responsive
  .others-options
  .profile-nav-item
  .menu-profile
  img {
  width: 40px;
  height: 40px;
  display: inline-block;
  margin-right: 8px;
}
.others-option-for-responsive
  .others-options
  .profile-nav-item
  .menu-profile
  .name
  i {
  font-size: 14px;
  color: #666666;
  padding-left: 7px;
}
.others-option-for-responsive
  .others-options
  .profile-nav-item.dropdown
  .dropdown-menu {
  padding: 15px 15px 10px;
  min-width: 230px;
  max-width: 280px;
  position: absolute;
  right: 0;
  left: auto;
  border-radius: 5px;
  margin-top: 20px;
  border: none;
  display: block;
  transition: all ease 0.5s;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
}
.others-option-for-responsive
  .others-options
  .profile-nav-item.dropdown
  .dropdown-menu
  .dropdown-header {
  padding: 0;
  border-bottom: 1px solid #f2f4f9;
  margin-left: -15px;
  margin-right: -15px;
}
.others-option-for-responsive
  .others-options
  .profile-nav-item.dropdown
  .dropdown-menu
  .dropdown-header
  .figure {
  position: relative;
}
.others-option-for-responsive
  .others-options
  .profile-nav-item.dropdown
  .dropdown-menu
  .dropdown-header
  .figure
  img {
  width: 80px;
  height: 80px;
}
.others-option-for-responsive
  .others-options
  .profile-nav-item.dropdown
  .dropdown-menu
  .dropdown-header
  .name {
  display: block;
  color: #202124;
  margin-bottom: 2px;
  font-size: 18px;
  font-weight: 500;
}
.others-option-for-responsive
  .others-options
  .profile-nav-item.dropdown
  .dropdown-menu
  .dropdown-header
  .email {
  color: #666666;
  font-size: 15px;
}
.others-option-for-responsive
  .others-options
  .profile-nav-item.dropdown
  .dropdown-menu
  .dropdown-body
  ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}
.others-option-for-responsive
  .others-options
  .profile-nav-item.dropdown
  .dropdown-menu
  .dropdown-body
  ul
  .nav-item {
  margin-left: 0;
}
.others-option-for-responsive
  .others-options
  .profile-nav-item.dropdown
  .dropdown-menu
  .dropdown-body
  ul
  .nav-item
  .nav-link {
  color: #666666;
  padding: 5px 15px 5px 38px;
  position: relative;
  font-size: 15px;
  margin-bottom: 5px;
  font-weight: 400;
}
.others-option-for-responsive
  .others-options
  .profile-nav-item.dropdown
  .dropdown-menu
  .dropdown-body
  ul
  .nav-item
  .nav-link
  span {
  color: #666666;
  display: block;
  font-weight: 400;
}
.others-option-for-responsive
  .others-options
  .profile-nav-item.dropdown
  .dropdown-menu
  .dropdown-body
  ul
  .nav-item
  .nav-link
  .icon {
  color: #666666;
  transition: all ease 0.5s;
  position: absolute;
  left: 15px;
  top: 2px;
  font-size: 16px;
}
.others-option-for-responsive
  .others-options
  .profile-nav-item.dropdown
  .dropdown-menu
  .dropdown-body
  ul
  .nav-item
  .nav-link:hover
  span {
  color: #1f86ef;
}
.others-option-for-responsive
  .others-options
  .profile-nav-item.dropdown
  .dropdown-menu
  .dropdown-body
  ul
  .nav-item
  .nav-link:hover
  i {
  transform: rotateY(-180deg);
}
.others-option-for-responsive
  .others-options
  .profile-nav-item.dropdown
  .dropdown-menu
  .dropdown-footer {
  margin: 10px -15px 0;
  padding: 10px 15px 0;
  border-top: 1px solid #eeeeee;
}
.others-option-for-responsive
  .others-options
  .profile-nav-item.dropdown
  .dropdown-menu
  .dropdown-footer
  ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}
.others-option-for-responsive
  .others-options
  .profile-nav-item.dropdown
  .dropdown-menu
  .dropdown-footer
  ul
  .nav-item
  .nav-link {
  color: red;
  padding: 5px 15px 5px 38px;
  position: relative;
  font-size: 15px;
  font-weight: 500;
}
.others-option-for-responsive
  .others-options
  .profile-nav-item.dropdown
  .dropdown-menu
  .dropdown-footer
  ul
  .nav-item
  .nav-link
  span {
  color: red;
  display: block;
  font-weight: 400;
}
.others-option-for-responsive
  .others-options
  .profile-nav-item.dropdown
  .dropdown-menu
  .dropdown-footer
  ul
  .nav-item
  .nav-link
  img {
  color: red;
  transition: all ease 0.5s;
  position: absolute;
  left: 15px;
  top: 8px;
}
.others-option-for-responsive
  .others-options
  .profile-nav-item.dropdown
  .dropdown-menu
  .dropdown-footer
  ul
  .nav-item
  .nav-link:hover
  i {
  transform: rotateY(-180deg);
}
.others-option-for-responsive
  .others-options
  .profile-nav-item.dropdown
  .dropdown-menu.show {
  margin-top: 10px;
  opacity: 1;
  visibility: visible;
}

.mobile-responsive-nav {
  display: none;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes ripple {
  0% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.75);
    opacity: 0.6;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
@keyframes movebounce {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(40px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes movebounce2 {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(30px);
  }
  100% {
    transform: translateX(0px);
  }
}
/*
Banner Style
======================================================*/
.banner-area {
  padding-top: 60px;
  padding-bottom: 100px;
  overflow: hidden;
}
.banner-area .container-fluid {
  max-width: 1660px;
  padding-left: 30px;
  padding-right: 30px;
}
.banner-area.style2 {
  background-image: linear-gradient(
    to right,
    #1657cb,
    #1460d2,
    #1469d9,
    #1571e0,
    #187ae7,
    #0087ed,
    #0093f1,
    #009ff4,
    #00aff0,
    #00bbdd,
    #00c4bd,
    #00ca99
  );
  padding-top: 120px;
  padding-bottom: 120px;
  overflow: hidden;
}

.banner-area-style3 {
  background-color: #f0f0fa;
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}
.banner-area-style3 .container-fluid {
  max-width: 1660px;
  padding-left: 30px;
  padding-right: 30px;
}
.banner-area-style3::before {
  position: absolute;
  content: "";
  height: 100px;
  width: 100%;
  left: 0;
  bottom: -1px;
  background-color: #ffffff;
  -webkit-clip-path: polygon(99% 0, 100% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(99% 0, 100% 0%, 100% 100%, 0% 100%);
}

.banner-content {
  position: relative;
}
.banner-content .banner-title span {
  color: #1f86ef;
  background-color: #dee8f7;
  display: inline-block;
  padding: 8px 15px;
  margin-bottom: 10px;
  border-radius: 5px;
}
.banner-content .banner-title h1 {
  font-size: 70px;
  line-height: 80px;
  margin-bottom: 20px;
}
.banner-content .serech-over {
  font-size: 18px;
  margin-bottom: 30px;
}
.banner-content .trending-keywords ul {
  padding-left: 0;
  margin-bottom: 0;
}
.banner-content .trending-keywords ul li {
  display: inline-block;
  margin-right: 5px;
}
.banner-content .trending-keywords ul li span {
  color: #202124;
  font-weight: 500;
  display: inline-block;
}
.banner-content .trending-keywords ul li a {
  color: #666666;
  position: relative;
  margin-right: 5px;
  border-bottom: 1px solid #666666;
  transition: all ease 0.5s;
}
.banner-content .trending-keywords ul li a::before {
  position: absolute;
  content: ",";
  right: -5px;
  bottom: 0;
}
.banner-content .trending-keywords ul li a:hover {
  color: #1f86ef;
  border-color: #1f86ef;
}
.banner-content .trending-keywords ul li:last-child a::before {
  display: none;
}
.banner-content .shape-1 {
  position: absolute;
  top: -80px;
  left: -80px;
  animation: spinner 10s linear infinite;
}
.banner-content.style2 {
  padding-right: 50px;
  top: 0;
}
.banner-content.style2 .banner-title h1 {
  color: #ffffff;
}
.banner-content.style2 .serech-over {
  color: #ffffff;
}
.banner-content.style2 .trending-keywords {
  margin-bottom: 60px;
}
.banner-content.style2 .trending-keywords ul li span {
  color: #ffffff;
}
.banner-content.style2 .trending-keywords ul li a {
  color: #ffffff;
  border: unset;
}
.banner-content .funfacts ul {
  padding-left: 0;
  margin-bottom: 0;
}
.banner-content .funfacts ul li {
  display: inline-block;
  margin-right: 80px;
  position: relative;
}
.banner-content .funfacts ul li::before {
  position: absolute;
  content: "";
  height: 35px;
  width: 1px;
  background-color: #ffffff;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.4;
}
.banner-content .funfacts ul li h4 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 10px;
}
.banner-content .funfacts ul li span {
  color: #ffffff;
}
.banner-content .funfacts ul li:last-child::before {
  display: none;
}

.banner-search-form {
  background-color: #ffffff;
  border: 1px solid rgba(32, 33, 36, 0.08);
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
  border-radius: 5px;
  margin-bottom: 30px;
}
.banner-search-form .form-group {
  position: relative;
}
.banner-search-form .form-group .form-control {
  border: unset;
  height: 60px;
  padding-left: 45px;
}
.banner-search-form .form-group .form-select {
  cursor: pointer;
}
.banner-search-form .form-group i {
  position: absolute;
  top: 20px;
  left: 20px;
}
.banner-search-form .form-group::before {
  position: absolute;
  content: "";
  height: 30px;
  width: 1px;
  background-color: rgba(102, 102, 102, 0.2);
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.banner-search-form .form-group.style::before {
  display: none;
}
.banner-search-form .search-btn {
  text-align: end;
}
.banner-search-form .search-btn .default-btn {
  border-radius: 0 5px 5px 0;
  padding: 20px;
}
.banner-search-form .default-btn i {
  position: relative;
  padding-right: 5px;
  top: 2px;
}
.banner-search-form.style-2 {
  padding: 10px;
  position: relative;
  margin-right: -60px;
}
.banner-search-form.style-2 .search-btn .default-btn {
  padding: 18px;
  margin-right: 0px;
  border-radius: 5px;
}

.banner-image-content {
  text-align: center;
  margin-left: 100px;
  position: relative;
  margin-bottom: -25px;
}
.banner-image-content .banner-img-1 {
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}
.banner-image-content .banner-img-1 .shape-2 {
  position: absolute;
  left: -20px;
  bottom: -20px;
  z-index: -1;
  animation: movebounce 10s linear infinite;
}
.banner-image-content .banner-img-2 {
  top: -50px;
  position: relative;
  z-index: 1;
}
.banner-image-content .banner-img-2 .shape-3 {
  position: absolute;
  right: -100px;
  bottom: -20px;
  z-index: -1;
  animation: movebounce 10s linear infinite;
}
.banner-image-content .banner-img-3 {
  bottom: -50px;
  position: relative;
}
.banner-image-content .assisted-candidate {
  background-color: #ffffff;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
  position: absolute;
  top: 50px;
  left: 0;
  z-index: 1;
  text-align: start;
  padding: 20px;
  padding-left: 85px;
  border-radius: 5px;
}
.banner-image-content .assisted-candidate h3 {
  font-size: 16px;
  margin-bottom: 4px;
}
.banner-image-content .assisted-candidate .icon {
  height: 45px;
  width: 45px;
  line-height: 40px;
  border-radius: 100%;
  text-align: center;
  background-color: rgba(248, 24, 21, 0.1);
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
}
.banner-image-content .join-now {
  padding: 20px;
  padding-left: 80px;
  background-color: #ffffff;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
  border-radius: 5px;
  text-align: start;
  position: absolute;
  top: 38%;
  left: 30%;
  z-index: 1;
  transform: translateY(-38%) translateX(-30%);
}
.banner-image-content .join-now h3 {
  font-size: 16px;
  margin-bottom: 5px;
}
.banner-image-content .join-now span {
  display: inline-block;
  margin-bottom: 12px;
}
.banner-image-content .join-now .default-btn {
  display: table;
  padding: 3px 18px;
  padding-bottom: 4px;
  font-size: 13px;
  border-radius: 2px;
}
.banner-image-content .join-now .sm-img {
  position: absolute;
  left: 20px;
  top: 30px;
}
.banner-image-content .creative-agency {
  padding: 20px 50px;
  background-color: #ffffff;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
  border-radius: 5px;
  position: absolute;
  right: 100px;
  bottom: -100px;
  text-align: start;
  z-index: 1;
}
.banner-image-content .creative-agency .icon {
  height: 45px;
  width: 45px;
  line-height: 48px;
  border-radius: 100%;
  background-color: #00b441;
  color: #ffffff;
  font-size: 24px;
  position: absolute;
  text-align: center;
  top: -20px;
  left: -20px;
}
.banner-image-content .creative-agency h3 {
  font-size: 16px;
  margin-bottom: 5px;
}
.banner-image-content .col-lg-6:nth-child(1) .banner-img-1 img {
  border-radius: 100px 0 0 0;
}
.banner-image-content .col-lg-6:nth-child(2) .banner-img-1 img {
  border-radius: 0 100px 0 0;
}
.banner-image-content .col-lg-6:nth-child(3) .banner-img-1 img {
  border-radius: 0 0 0 100px;
}
.banner-image-content .col-lg-6:nth-child(4) .banner-img-1 img {
  border-radius: 0 0 100px 0;
}

.banner-image-content-style2 {
  text-align: center;
  position: relative;
  padding-left: 100px;
}
.banner-image-content-style2 .assisted-candidate {
  background-color: #ffffff;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
  position: absolute;
  bottom: 200px;
  right: -70px;
  z-index: 1;
  text-align: start;
  padding: 20px;
  padding-left: 85px;
  border-radius: 5px;
}
.banner-image-content-style2 .assisted-candidate h3 {
  font-size: 16px;
  margin-bottom: 5px;
}
.banner-image-content-style2 .assisted-candidate .icon {
  height: 45px;
  width: 45px;
  line-height: 40px;
  border-radius: 100%;
  text-align: center;
  background-color: rgba(248, 24, 21, 0.1);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.banner-image-content-style2 .creative-agency {
  padding: 20px 50px;
  background-color: #ffffff;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
  border-radius: 5px;
  position: absolute;
  left: 120px;
  bottom: 30px;
  text-align: start;
  z-index: 1;
}
.banner-image-content-style2 .creative-agency .icon {
  height: 45px;
  width: 45px;
  line-height: 48px;
  border-radius: 100%;
  background-color: #00b441;
  color: #ffffff;
  font-size: 24px;
  position: absolute;
  text-align: center;
  top: -20px;
  left: -20px;
}
.banner-image-content-style2 .creative-agency h3 {
  font-size: 16px;
  margin-bottom: 5px;
}
.banner-image-content-style2 .icon1 {
  position: absolute;
  bottom: 10px;
  left: 64%;
}
.banner-image-content-style2 .icon2 {
  position: absolute;
  top: 180px;
  left: 240px;
}
.banner-image-content-style2 .icon3 {
  position: absolute;
  top: 60px;
  right: 140px;
}

.banner-content-style3 {
  padding-right: 100px;
}
.banner-content-style3 h1 {
  font-size: 70px;
  line-height: 80px;
  margin-bottom: 20px;
}
.banner-content-style3 p {
  margin-bottom: 27px;
}

.banner-image-content-style3 {
  text-align: end;
  position: relative;
  z-index: 1;
}
.banner-image-content-style3 .sm-img {
  position: absolute;
  bottom: -50px;
  left: -30px;
}
.banner-image-content-style3 .shape-1 {
  position: absolute;
  left: 30px;
  bottom: 120px;
  z-index: -1;
  animation: movebounce 10s linear infinite;
}

/*
Page Banner Style
======================================================*/
.page-banner-area {
  padding-top: 100px;
  padding-bottom: 120px;
}

.page-banner-content {
  text-align: center;
}
.page-banner-content h1 {
  font-size: 30px;
  margin-bottom: 10px;
}
.page-banner-content ul {
  padding-left: 0;
  margin-bottom: 0;
}

.page-banner-content ul li {
  display: inline-block;
  margin-right: 15px;
  position: relative;
  position: relative;
  color: #ff6600;
  font-size: 17px;
  font-weight: 700;
}

.page-banner-content ul li:last-child {
  margin-right: 0;
}
.page-banner-content ul li:last-child::before {
  display: none;
}

.page-banner-content ul li a {
  font-weight: 700;
  font-size: 17px;
  transition: all ease 0.5s;
}

.page-banner-content ul li a:hover {
  color: #1f86ef;
}
.page-banner-content ul li::before {
  position: absolute;
  content: "/";
  right: -15px;
  color: #666666;
}

.job-details-banner-area {
  padding-top: 50px;
  padding-bottom: 50px;
}

.job-details-banner-content .job-details-banner-left-content .img {
  margin-bottom: 15px;
}
.job-details-banner-content .job-details-banner-left-content span {
  display: inline-block;
  margin-bottom: 15px;
}
.job-details-banner-content .job-details-banner-left-content h2 {
  font-size: 25px;
  margin-bottom: 15px;
}
.job-details-banner-content .job-details-banner-left-content .info {
  margin-bottom: 30px;
}
.job-details-banner-content .job-details-banner-left-content .info ul {
  padding-left: 0;
  margin-bottom: 0;
}
.job-details-banner-content .job-details-banner-left-content .info ul li {
  display: inline-block;
  position: relative;
  padding-left: 22px;
  margin-right: 15px;
}
.job-details-banner-content .job-details-banner-left-content .info ul li i {
  position: absolute;
  left: 0;
  top: 2px;
  color: #1f86ef;
}
.job-details-banner-content
  .job-details-banner-left-content
  .info
  ul
  li:last-child {
  margin-right: 0;
}
.job-details-banner-content .job-details-banner-right-content {
  text-align: end;
}
.job-details-banner-content .job-details-banner-right-content .default-btn {
  margin-bottom: 25px;
}
.job-details-banner-content
  .job-details-banner-right-content
  .share-content
  ul {
  padding-left: 0;
  margin-bottom: 0;
}
.job-details-banner-content
  .job-details-banner-right-content
  .share-content
  ul
  li {
  display: inline-block;
  margin-right: 7px;
}
.job-details-banner-content
  .job-details-banner-right-content
  .share-content
  ul
  li:last-child {
  margin-right: 0;
}
.job-details-banner-content
  .job-details-banner-right-content
  .share-content
  ul
  li
  span {
  font-weight: 500;
}
.job-details-banner-content
  .job-details-banner-right-content
  .share-content
  ul
  li
  span
  i {
  padding-right: 7px;
  display: inline-block;
  font-size: 14px;
}
.job-details-banner-content
  .job-details-banner-right-content
  .share-content
  ul
  li
  a {
  height: 35px;
  width: 35px;
  line-height: 35px;
  border-radius: 100%;
  display: inline-block;
  text-align: center;
  background-color: #ffffff;
  color: #1f86ef;
  transition: all ease 0.5s;
}
.job-details-banner-content
  .job-details-banner-right-content
  .share-content
  ul
  li
  a:hover {
  background-color: #1f86ef;
  color: #ffffff;
}

/*
Categories Style
======================================================*/
.single-category-card {
  background-color: #f0f5f7;
  padding: 40px;
  border-radius: 5px;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}
.single-category-card::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 0%;
  background-color: #1f86ef;
  border-radius: 5px;
  right: 0;
  bottom: 0;
  transition: all ease 0.5s;
  z-index: -1;
}
.single-category-card .icon {
  height: 70px;
  width: 70px;
  line-height: 78px;
  font-size: 40px;
  color: #1f86ef;
  text-align: center;
  border-radius: 5px;
  background-color: #ffffff;
  border: 1px solid rgba(32, 33, 36, 0.1);
  margin-bottom: 20px;
  transition: all ease 0.5s;
}
.single-category-card h3 {
  font-size: 22px;
  margin-bottom: 0;
  transition: all ease 0.5s;
}
.single-category-card:hover::before {
  width: 100%;
  right: auto;
  left: 0;
}
.single-category-card:hover h3 {
  color: #ffffff;
}

.single-categories-box {
  position: relative;
  padding: 25px 20px;
  padding-left: 105px;
  border-radius: 5px;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
  margin-bottom: 30px;
  z-index: 1;
}
.single-categories-box .icon {
  height: 60px;
  width: 60px;
  line-height: 65px;
  background-color: #f0f5f7;
  font-size: 30px;
  border-radius: 100%;
  color: #1f86ef;
  text-align: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 26px;
  transition: all ease 0.5s;
}
.single-categories-box h3 {
  font-size: 22px;
  margin-bottom: 8px;
  transition: all ease 0.5s;
}
.single-categories-box span {
  transition: all ease 0.5s;
}
.single-categories-box::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 0%;
  left: 0;
  top: 0;
  background-color: #1f86ef;
  transition: all ease 0.5s;
  z-index: -1;
  border-radius: 5px;
}
.single-categories-box:hover .icon {
  background-color: #ffffff;
}
.single-categories-box:hover::before {
  width: 100%;
  right: auto;
  left: 0;
}
.single-categories-box:hover h3 {
  color: #ffffff;
}
.single-categories-box:hover span {
  color: #ffffff;
}
.single-categories-box.style2 {
  text-align: center;
  padding: 30px;
  margin-bottom: 0;
  background-color: #ffffff;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
  margin: 10px;
}
.single-categories-box.style2 .icon {
  position: unset;
  transform: translateY(0);
  margin: auto auto 20px auto;
  background-color: #1f86ef;
  color: #ffffff;
  height: 70px;
  width: 70px;
  line-height: 78px;
}
.single-categories-box.style2:hover .icon {
  background-color: #ffffff;
  color: #1f86ef;
}

.categories-area.style2 {
  position: relative;
}
.categories-area.style2::before {
  position: absolute;
  content: "";
  height: 120px;
  width: 100%;
  left: 0;
  bottom: 0;
  background-color: #ffffff;
}

.category-slider.owl-theme .owl-nav .owl-prev,
.category-slider.owl-theme .owl-nav .owl-next {
  right: 0;
  background-color: #f0f5f7;
  border: none;
  height: 30px;
  width: 30px;
  line-height: 30px;
  border-radius: 100%;
  transition: all ease 0.5s;
  font-size: 32px;
  color: #1f86ef;
}
.category-slider.owl-theme .owl-nav .owl-prev i,
.category-slider.owl-theme .owl-nav .owl-next i {
  position: relative;
  top: -1px;
  left: -15px;
}
.category-slider.owl-theme .owl-nav .owl-prev.owl-next,
.category-slider.owl-theme .owl-nav .owl-next.owl-next {
  top: 60px;
  right: 0;
  left: auto;
}
.category-slider.owl-theme .owl-nav .owl-prev.owl-next i,
.category-slider.owl-theme .owl-nav .owl-next.owl-next i {
  position: relative;
  right: -15px;
  left: auto;
  top: -1px;
}
.category-slider.owl-theme .owl-nav .owl-prev:hover,
.category-slider.owl-theme .owl-nav .owl-next:hover {
  background-color: #1f86ef;
}

.categories-slider2.owl-theme .owl-nav .owl-prev,
.categories-slider2.owl-theme .owl-nav .owl-next {
  right: 0;
  background-color: #ffffff;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
  height: 40px;
  width: 40px;
  line-height: 40px;
  border-radius: 100%;
  transition: all ease 0.5s;
  font-size: 16px;
  color: #1f86ef;
  position: absolute;
  left: -60px;
  top: 47%;
  transform: translateY(-50%);
}
.categories-slider2.owl-theme .owl-nav .owl-prev i,
.categories-slider2.owl-theme .owl-nav .owl-next i {
  position: relative;
  top: 0;
  left: 0;
}
.categories-slider2.owl-theme .owl-nav .owl-prev.owl-next,
.categories-slider2.owl-theme .owl-nav .owl-next.owl-next {
  right: -60px;
  left: auto;
}
.categories-slider2.owl-theme .owl-nav .owl-prev.owl-next i,
.categories-slider2.owl-theme .owl-nav .owl-next.owl-next i {
  position: relative;
  right: 0;
  left: auto;
  top: -1px;
}
.categories-slider2.owl-theme .owl-nav .owl-prev:hover,
.categories-slider2.owl-theme .owl-nav .owl-next:hover {
  background-color: #1f86ef;
  color: #ffffff;
  border-color: #1f86ef;
}

.title .browse-btn {
  text-align: end;
  margin-bottom: 40px;
}

/*
Job Style
======================================================*/

.single-job-card {
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 30px;
  background: #c9c6c61c;
}

.single-job-card .job-image {
  position: relative;
  margin-bottom: 30px;
}
.single-job-card .job-image img {
  border-radius: 5px;
  height: 200px;
  object-fit: cover;
  width: 100%;
}
.single-job-card .job-image .bookmark {
  height: 35px;
  width: 35px;
  line-height: 38px;
  text-align: center;
  background-color: #ffffff;
  border-radius: 100%;
  position: absolute;
  right: 20px;
  top: 20px;
  color: #666666;
  transition: all ease 0.5s;
}
.single-job-card .job-image .bookmark:hover {
  color: #ffffff;
  background-color: #1f86ef;
}
.single-job-card .job-image .urgent {
  background-color: #1f86ef;
  padding: 5px 10px;
  color: #ffffff;
  position: absolute;
  top: 20px;
  left: 20px;
  border-radius: 5px;
}
.single-job-card .job-content .time {
  background-color: #f0f5f7;
  color: #1f86ef;
  padding: 5px 15px;
  margin-bottom: 20px;
  display: inline-block;
  transition: all ease 0.5s;
  border-radius: 5px;
}
.single-job-card .job-content .time:hover {
  color: #ffffff;
  background-color: #1f86ef;
}
.single-job-card .job-content h2 {
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 18px;
}
.single-job-card .job-content h2 a {
  color: #202124;
  transition: all ease 0.5s;
}
.single-job-card .job-content h2 a:hover {
  color: #1f86ef;
}
.single-job-card .job-content .info {
  margin-bottom: 30px;
}
.single-job-card .job-content .info ul {
  padding-left: 0;
  margin-bottom: 0;
}
.single-job-card .job-content .info ul li {
  display: inline-block;
  position: relative;
  padding-left: 22px;
  margin-right: 15px;
}
.single-job-card .job-content .info ul li i {
  position: absolute;
  left: 0;
  top: 2px;
  color: #1f86ef;
}
.single-job-card .job-content .info ul li:last-child {
  margin-right: 0;
}
.single-job-card .job-content .bottom-content ul {
  padding-left: 0;
  margin-bottom: 0;
}
.single-job-card .job-content .bottom-content ul li {
  list-style-type: none;
}
.single-job-card .job-content .bottom-content ul li .left-content {
  padding-left: 60px;
  position: relative;
}
.single-job-card .job-content .bottom-content ul li .left-content .icon {
  height: 45px;
  width: 45px;
  line-height: 42px;
  background-color: #f0f5f7;
  border-radius: 100%;
  text-align: center;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.single-job-card .job-content .bottom-content ul li h3 {
  font-size: 20px;
  color: #1f86ef;
}
.single-job-card .job-content .bottom-content ul li h3 span {
  color: #666666;
  font-size: 16px;
  font-weight: 400;
}
.single-job-card.style-2 {
  background-color: #ffffff;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
}
.single-job-card.style-2 .job-content {
  padding: 15px;
  position: relative;
}
.single-job-card.style-2 .job-content .time {
  margin-bottom: 0;
  position: absolute;
  top: -45px;
  left: 20px;
}
.single-job-card.style-2
  .job-content
  .bottom-content
  ul
  li
  .left-content
  .icon
  img {
  width: auto;
  padding-top: 9px;
  padding-left: 9px;
}
.single-job-card.style-3 {
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
  background-color: #ffffff;
  border-radius: 5px;
}
.single-job-card.style-3 .job-image {
  margin-bottom: 0;
}
.single-job-card.style-3 .job-image img {
  border-radius: 5px 5px 0 0;
}
.single-job-card.style-3 .job-image .time {
  background-color: #ffffff;
  padding: 4px 12px;
  color: #1f86ef;
  position: absolute;
  left: 20px;
  top: 20px;
  font-weight: 500;
  border-radius: 5px;
  transition: all ease 0.5s;
}
.single-job-card.style-3 .job-image .time:hover {
  background-color: #1f86ef;
  color: #ffffff;
}
.single-job-card.style-3 .job-content {
  padding: 25px 30px 35px 30px;
}
.single-job-card.style-3 .job-content h3 {
  font-size: 20px;
  color: #1f86ef;
}
.single-job-card.style-3 .job-content h3 span {
  color: #666666;
  font-size: 16px;
  font-weight: 400;
}
.single-job-card.style-3 .job-content .bottom-content {
  padding-left: 60px;
  position: relative;
}
.single-job-card.style-3 .job-content .bottom-content .icon {
  height: 45px;
  width: 45px;
  line-height: 42px;
  background-color: #f0f5f7;
  border-radius: 100%;
  text-align: center;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.recent-job-box {
  padding: 30px;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
  border-radius: 5px;
  padding-left: 120px;
  position: relative;
  margin: 7px;
  margin-bottom: 30px;
}
.recent-job-box .info ul {
  padding-left: 0;
  margin-bottom: 0;
}
.recent-job-box .info ul li {
  display: inline-block;
  position: relative;
  padding-left: 22px;
  margin-right: 15px;
}
.recent-job-box .info ul li i {
  position: absolute;
  left: 0;
  top: 2px;
  color: #1f86ef;
}
.recent-job-box .info ul li:last-child {
  margin-right: 0;
}
.recent-job-box .logo {
  height: 70px;
  width: 70px;
  background-color: #f0f5f7;
  border-radius: 100%;
  text-align: center;
  position: absolute;
  left: 30px;
  top: 30px;
}
.recent-job-box .logo img {
  width: auto;
  padding-left: 13px;
  padding-top: 13px;
}
.recent-job-box .bookmark {
  height: 35px;
  width: 35px;
  line-height: 38px;
  text-align: center;
  background-color: #e5e5e5;
  border-radius: 100%;
  position: absolute;
  right: 30px;
  top: 30px;
  color: #666666;
  transition: all ease 0.5s;
}
.recent-job-box .bookmark:hover {
  color: #ffffff;
  background-color: #1f86ef;
}
.recent-job-box .time {
  background-color: rgba(25, 103, 210, 0.1);
  padding: 5px 10px;
  border-radius: 5px;
  margin-bottom: 17px;
  display: inline-block;
  color: #1f86ef;
  font-weight: 500;
  transition: all ease 0.5s;
}
.recent-job-box .time:hover {
  background-color: #1f86ef;
  color: #ffffff;
}
.recent-job-box h3 {
  font-size: 18px;
  margin-bottom: 15px;
}
.recent-job-box h3 a {
  color: #202124;
  transition: all ease 0.5s;
}
.recent-job-box h3 a:hover {
  color: #1f86ef;
}

.shoting-btn {
  text-align: center;
  margin-bottom: 40px;
}
.shoting-btn ul {
  padding-left: 0;
  margin-bottom: 0;
}
.shoting-btn ul li {
  display: inline-block;
  margin-right: 5px;
}
.shoting-btn ul li:last-child {
  margin-right: 0;
}
.shoting-btn ul li button {
  background-color: transparent;
  border: unset;
  padding: 5px 10px;
  transition: all ease 0.5s;
  font-weight: 500;
  border-radius: 5px;
  color: #666666;
}
.shoting-btn ul li button:hover,
.shoting-btn ul li button:focus,
.shoting-btn ul li button.active {
  background-color: #f0f5f7;
  color: #1f86ef;
}

.job-slider.owl-theme .owl-nav .owl-prev,
.job-slider.owl-theme .owl-nav .owl-next {
  right: 0;
  background-color: transparent;
  border: 1px solid #1f86ef;
  height: 40px;
  width: 40px;
  line-height: 40px;
  border-radius: 100%;
  transition: all ease 0.5s;
  font-size: 16px;
  color: #1f86ef;
  position: absolute;
  left: -60px;
  top: 45%;
  transform: translateY(-50%);
}
.job-slider.owl-theme .owl-nav .owl-prev i,
.job-slider.owl-theme .owl-nav .owl-next i {
  position: relative;
  top: 0;
  left: 0;
}
.job-slider.owl-theme .owl-nav .owl-prev.owl-next,
.job-slider.owl-theme .owl-nav .owl-next.owl-next {
  right: -60px;
  left: auto;
}
.job-slider.owl-theme .owl-nav .owl-prev.owl-next i,
.job-slider.owl-theme .owl-nav .owl-next.owl-next i {
  position: relative;
  right: 0;
  left: auto;
  top: -1px;
}
.job-slider.owl-theme .owl-nav .owl-prev:hover,
.job-slider.owl-theme .owl-nav .owl-next:hover {
  background-color: #1f86ef;
  color: #ffffff;
  border-color: #1f86ef;
}
.job-slider.owl-theme .owl-dots .owl-dot span {
  background: rgba(25, 103, 210, 0.5);
}
.job-slider.owl-theme .owl-dots .owl-dot.active span {
  background-color: #1f86ef;
}

.job-slider2.owl-theme .owl-dots .owl-dot span {
  background: rgba(25, 103, 210, 0.5);
}
.job-slider2.owl-theme .owl-dots .owl-dot.active span {
  background-color: #1f86ef;
}

/*
Job Details Style
======================================================*/
.job-details-content .job-description {
  margin-bottom: 25px;
}
.job-details-content .job-description h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.job-details-content .our-company {
  margin-bottom: 25px;
}
.job-details-content .our-company h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.job-details-content .previous-interview {
  margin-bottom: 25px;
}
.job-details-content .previous-interview h3 {
  font-size: 22px;
  margin-bottom: 20px;
}
.job-details-content .previous-interview .video-content {
  position: relative;
}
.job-details-content .previous-interview .video-content .video-btn {
  position: absolute;
  text-align: center;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.job-details-content .previous-interview .video-content .video-btn a {
  display: inline-block;
  height: 65px;
  width: 65px;
  line-height: 70px;
  background-color: #ffffff;
  border-radius: 100%;
  transition: all ease 0.5s;
  position: relative;
}
.job-details-content .previous-interview .video-content .video-btn a i {
  font-size: 30px;
  position: relative;
  left: 2px;
  top: 2px;
  transition: all ease 0.5s;
}
.job-details-content .previous-interview .video-content .video-btn a::before {
  position: absolute;
  content: "";
  height: 72px;
  width: 72px;
  background-color: rgba(255, 255, 255, 0.4);
  top: -3px;
  left: -3px;
  border-radius: 100%;
  animation: ripple 2s infinite linear;
}
.job-details-content .previous-interview .video-content .video-btn a:hover {
  background-color: #1f86ef;
}
.job-details-content .previous-interview .video-content .video-btn a:hover i {
  color: #ffffff;
}
.job-details-content .job-responsibilities {
  margin-bottom: 25px;
}
.job-details-content .job-responsibilities h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.job-details-content .job-responsibilities ul {
  padding-left: 0;
  margin-bottom: 0;
}
.job-details-content .job-responsibilities ul li {
  list-style-type: none;
  margin-bottom: 12px;
  position: relative;
  padding-left: 18px;
}
.job-details-content .job-responsibilities ul li::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  border-radius: 100%;
  background-color: #1f86ef;
  left: 0;
  top: 8px;
}
.job-details-content .job-responsibilities ul li:last-child {
  margin-bottom: 0;
}
.job-details-content .our-mission {
  margin-bottom: 25px;
}
.job-details-content .our-mission h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.job-details-content .our-vision {
  margin-bottom: 23px;
}
.job-details-content .our-vision h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.related-job-area h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

/*
Employer Style
======================================================*/
.single-employer-card {
  background-color: #ffffff;
  border-radius: 5px;
  padding: 30px;
  transition: all ease 0.5s;
  position: relative;
  margin-bottom: 30px;
}
.single-employer-card .employer-content {
  padding-left: 90px;
  position: relative;
}
.single-employer-card .employer-content .icon {
  height: 70px;
  width: 70px;
  line-height: 67px;
  border-radius: 100%;
  text-align: center;
  background-color: #f0f5f7;
  position: absolute;
  left: 0;
  top: 7px;
}
.single-employer-card .employer-content h3 {
  font-size: 22px;
  margin-bottom: 12px;
  transition: all ease 0.5s;
}
.single-employer-card .employer-content h3:hover {
  color: #1f86ef;
}
.single-employer-card .employer-content .info {
  margin-bottom: 15px;
}
.single-employer-card .employer-content .info ul {
  padding-left: 0;
  margin-bottom: 0;
}
.single-employer-card .employer-content .info ul li {
  display: inline-block;
  margin-right: 20px;
}
.single-employer-card .employer-content .info ul li span i {
  color: #1f86ef;
  font-size: 14px;
  position: relative;
  top: 2px;
  padding-right: 5px;
}
.single-employer-card .employer-content .info ul li i {
  color: #ffc107;
}
.single-employer-card .employer-content .info ul li:last-child {
  margin-right: 0;
}
.single-employer-card .employer-content p {
  margin-bottom: 20px;
}
.single-employer-card .employer-content .bottom-btn a {
  padding: 4px 12px;
  background-color: #f0f5f7;
  display: table;
  color: #1f86ef;
  font-weight: 500;
  border-radius: 5px;
  transition: all ease 0.5s;
}
.single-employer-card .employer-content .bottom-btn a:hover {
  background-color: #1f86ef;
  color: #ffffff;
}
.single-employer-card .employer-content .categorie-btn {
  position: absolute;
  right: 0;
  top: 0;
}
.single-employer-card .employer-content .categorie-btn a {
  padding: 6px 12px;
  background-color: #1f86ef;
  color: #ffffff;
  transition: all ease 0.5s;
  border-radius: 5px;
}
.single-employer-card .employer-content .categorie-btn a:hover {
  background-color: #202124;
  color: #ffffff;
}
.single-employer-card:hover {
  transform: translateY(-10px);
}

.employers-details-top-content {
  padding: 40px;
  border-radius: 5px;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
  margin-bottom: 40px;
}
.employers-details-top-content .details-left-content {
  padding-left: 110px;
  position: relative;
}
.employers-details-top-content .details-left-content .icon {
  height: 90px;
  width: 90px;
  line-height: 87px;
  text-align: center;
  background-color: #f0f5f7;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 53%;
  transform: translateY(-50%);
}
.employers-details-top-content .details-left-content h3 {
  font-size: 25px;
  margin-bottom: 15px;
}
.employers-details-top-content .details-left-content .info ul {
  padding-left: 0;
  margin-bottom: 0;
}
.employers-details-top-content .details-left-content .info ul li {
  display: inline-block;
  margin-right: 20px;
  padding-left: 20px;
  position: relative;
}
.employers-details-top-content .details-left-content .info ul li:last-child {
  margin-right: 0;
}
.employers-details-top-content .details-left-content .info ul li:last-child i {
  top: 5px;
}
.employers-details-top-content .details-left-content .info ul li a {
  color: #666666;
  transition: all ease 0.5s;
}
.employers-details-top-content .details-left-content .info ul li a:hover {
  color: #1f86ef;
}
.employers-details-top-content .details-left-content .info ul li i {
  color: #1f86ef;
  font-size: 14px;
  position: absolute;
  left: 0;
  top: 3px;
}
.employers-details-top-content .details-right-content {
  text-align: end;
}
.employers-details-top-content .details-right-content .bookmark {
  margin-bottom: 20px;
}
.employers-details-top-content .details-right-content .bookmark a {
  height: 30px;
  width: 30px;
  line-height: 32px;
  border-radius: 100%;
  text-align: center;
  background-color: #f0f5f7;
  display: inline-block;
  font-size: 13px;
  color: #666666;
  transition: all ease 0.5s;
}
.employers-details-top-content .details-right-content .bookmark a:hover {
  background-color: #1f86ef;
  color: #ffffff;
}
.employers-details-top-content .details-right-content .position-btn a {
  background-color: rgba(25, 103, 210, 0.1);
  display: inline-block;
  padding: 10px 18px;
  font-weight: 600;
  border-radius: 30px;
  transition: all ease 0.5s;
}
.employers-details-top-content .details-right-content .position-btn a:hover {
  background-color: #1f86ef;
  color: #ffffff;
}

.employers-details-content .about-content {
  margin-bottom: 25px;
}
.employers-details-content .about-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.employers-details-content .job-responsibilities {
  margin-bottom: 25px;
}
.employers-details-content .job-responsibilities h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.employers-details-content .gallery {
  margin-bottom: 25px;
}
.employers-details-content .gallery h3 {
  font-size: 22px;
  margin-bottom: 25px;
}
.employers-details-content .jurney h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.employers-details-content .jurney p {
  margin-bottom: 20px;
}
.employers-details-content .review h3 {
  font-size: 22px;
  margin-bottom: 20px;
}
.employers-details-content .review .single-review {
  padding: 30px;
  border: 1px solid rgba(32, 33, 36, 0.08);
  border-radius: 5px;
  margin-bottom: 30px;
}
.employers-details-content .review .single-review .review-content {
  position: relative;
  padding-left: 90px;
}
.employers-details-content .review .single-review .review-content .img {
  position: absolute;
  left: 0;
  top: 5px;
}
.employers-details-content .review .single-review .review-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.employers-details-content .review .single-review .review-content span {
  margin-bottom: 15px;
  display: inline-block;
}
.employers-details-content .review .single-review .review-content .rating {
  position: absolute;
  top: 20px;
  right: 0;
}
.employers-details-content .review .single-review .review-content .rating i {
  color: #ffc107;
}
.employers-details-content .review .single-review .review-content p {
  margin-bottom: 0;
}
.employers-details-content .add-review {
  margin-bottom: 40px;
}
.employers-details-content .features-job .section-title {
  margin-bottom: 20px;
}

.add-review {
  background-color: #f0f5f7;
  padding: 30px;
  border-radius: 5px;
  margin-bottom: 30px;
}
.add-review h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.add-review span {
  margin-bottom: 10px;
  display: inline-block;
}
.add-review .rating {
  margin-bottom: 20px;
}
.add-review .rating i {
  color: #ffc107;
}
.add-review .review-form .form-group {
  margin-bottom: 25px;
}
.add-review .review-form .form-group .form-control {
  border: unset;
}

/*
Dream Job Style
======================================================*/
.dream-job-content .dream-job-title {
  margin-bottom: 25px;
}
.dream-job-content .dream-job-title h2 {
  font-size: 36px;
  margin-bottom: 15px;
}
.dream-job-content .job-features-list ul {
  padding-left: 0;
  margin-bottom: 0;
}
.dream-job-content .job-features-list ul li {
  padding-left: 55px;
  position: relative;
  list-style-type: none;
  margin-bottom: 20px;
  padding-right: 100px;
}
.dream-job-content .job-features-list ul li .icon {
  font-size: 35px;
  color: #1f86ef;
  position: absolute;
  left: 0;
  top: 3px;
}
.dream-job-content .job-features-list ul li h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.dream-job-content .job-features-list ul li:last-child {
  margin-bottom: 0;
}

.dream-job-image {
  padding-left: 200px;
  padding-bottom: 130px;
  position: relative;
}
.dream-job-image .sm-img1 {
  height: 300px;
  width: 300px;
  position: absolute;
  bottom: 0;
  left: 70px;
}
.dream-job-image .sm-img1 img {
  border-radius: 100%;
  border: 5px solid #ffffff;
}
.dream-job-image .assisted-candidate {
  background-color: #ffffff;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
  position: absolute;
  top: 50px;
  left: 60px;
  z-index: 1;
  text-align: start;
  padding: 20px;
  padding-left: 85px;
  border-radius: 5px;
}
.dream-job-image .assisted-candidate h3 {
  font-size: 16px;
  margin-bottom: 5px;
}
.dream-job-image .assisted-candidate .icon {
  height: 45px;
  width: 45px;
  line-height: 40px;
  border-radius: 100%;
  text-align: center;
  background-color: rgba(248, 24, 21, 0.1);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.dream-job-image .join-now {
  padding: 20px;
  padding-left: 80px;
  background-color: #ffffff;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
  border-radius: 5px;
  text-align: start;
  position: absolute;
  bottom: 10px;
  right: 0;
  z-index: 1;
}
.dream-job-image .join-now h3 {
  font-size: 16px;
  margin-bottom: 5px;
}
.dream-job-image .join-now span {
  display: inline-block;
  margin-bottom: 12px;
}
.dream-job-image .join-now .default-btn {
  display: table;
  padding: 4px 15px;
  padding-bottom: 6px;
}
.dream-job-image .join-now .sm-img {
  position: absolute;
  left: 20px;
  top: 30px;
}
.dream-job-image .creative-agency {
  padding: 20px 50px;
  background-color: #ffffff;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
  border-radius: 5px;
  position: absolute;
  left: -70px;
  bottom: 140px;
  text-align: start;
  z-index: 1;
}
.dream-job-image .creative-agency .icon {
  height: 45px;
  width: 45px;
  line-height: 48px;
  border-radius: 100%;
  background-color: #00b441;
  color: #ffffff;
  font-size: 24px;
  position: absolute;
  text-align: center;
  top: -20px;
  left: -20px;
}
.dream-job-image .creative-agency h3 {
  font-size: 16px;
  margin-bottom: 5px;
}

/*
Reviews Style
======================================================*/
.single-reviews-card {
  background-color: #ffffff;
  border-radius: 5px;
  padding: 35px;
  position: relative;
  margin-bottom: 30px;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
}
.single-reviews-card .ratings {
  margin-bottom: 20px;
}
.single-reviews-card .ratings i {
  color: #ffc107;
  margin-right: 5px;
  font-size: 14px;
}
.single-reviews-card .ratings i:last-child {
  margin-right: 0;
}
.single-reviews-card p {
  margin-bottom: 20px;
}
.single-reviews-card .clien-info h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.single-reviews-card .quote {
  font-size: 55px;
  line-height: 1;
  position: absolute;
  color: rgba(25, 103, 210, 0.1);
  right: 30px;
  bottom: 20px;
  transition: all ease 0.5s;
}
.single-reviews-card.bu {
  box-shadow: unset;
}
.single-reviews-card:hover .quote {
  color: rgba(25, 103, 210, 0.3);
}
.single-reviews-card.style2 {
  background-color: #ffffff;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
  margin: 10px;
  margin-bottom: 30px;
}
.single-reviews-card.style2 .quote {
  right: 40px;
  bottom: 35px;
}

.single-review-box {
  padding: 30px;
  background-color: #ffffff;
  border-radius: 5px;
}
.single-review-box .top-content {
  position: relative;
  margin-bottom: 25px;
}
.single-review-box .top-content .review-img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.single-review-box .top-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.single-review-box .top-content span {
  display: inline-block;
  margin-bottom: 8px;
}
.single-review-box .top-content .ratings i {
  color: #ffc107;
  font-size: 14px;
  margin-right: 5px;
}
.single-review-box .top-content .ratings i:last-child {
  margin-right: 0;
}
.single-review-box.style-2 {
  margin-bottom: 30px;
}

.reviews-slider.owl-theme .owl-nav .owl-prev,
.reviews-slider.owl-theme .owl-nav .owl-next {
  right: 0;
  background-color: rgba(25, 103, 210, 0.1);
  border: none;
  height: 30px;
  width: 30px;
  line-height: 30px;
  border-radius: 100%;
  transition: all ease 0.5s;
  font-size: 32px;
  color: #1f86ef;
}
.reviews-slider.owl-theme .owl-nav .owl-prev i,
.reviews-slider.owl-theme .owl-nav .owl-next i {
  position: relative;
  top: 0;
  left: -15px;
}
.reviews-slider.owl-theme .owl-nav .owl-prev.owl-next,
.reviews-slider.owl-theme .owl-nav .owl-next.owl-next {
  top: 60px;
  right: 0;
  left: auto;
}
.reviews-slider.owl-theme .owl-nav .owl-prev.owl-next i,
.reviews-slider.owl-theme .owl-nav .owl-next.owl-next i {
  position: relative;
  right: -15px;
  left: auto;
  top: -1px;
}
.reviews-slider.owl-theme .owl-nav .owl-prev:hover,
.reviews-slider.owl-theme .owl-nav .owl-next:hover {
  background-color: #1f86ef;
}

.reviews-slider2.owl-theme .owl-nav .owl-prev,
.reviews-slider2.owl-theme .owl-nav .owl-next {
  right: 0;
  background-color: transparent;
  border: 1px solid #1f86ef;
  height: 40px;
  width: 40px;
  line-height: 40px;
  border-radius: 100%;
  transition: all ease 0.5s;
  font-size: 16px;
  color: #1f86ef;
  position: absolute;
  left: -70px;
  top: 50%;
  transform: translateY(-50%);
}
.reviews-slider2.owl-theme .owl-nav .owl-prev i,
.reviews-slider2.owl-theme .owl-nav .owl-next i {
  position: relative;
  top: 1px;
  left: 0;
}
.reviews-slider2.owl-theme .owl-nav .owl-prev.owl-next,
.reviews-slider2.owl-theme .owl-nav .owl-next.owl-next {
  right: -70px;
  left: auto;
}
.reviews-slider2.owl-theme .owl-nav .owl-prev.owl-next i,
.reviews-slider2.owl-theme .owl-nav .owl-next.owl-next i {
  position: relative;
  right: 0;
  left: auto;
  top: 1px;
}
.reviews-slider2.owl-theme .owl-nav .owl-prev:hover,
.reviews-slider2.owl-theme .owl-nav .owl-next:hover {
  background-color: #1f86ef;
  color: #ffffff;
  border-color: #1f86ef;
}

.reviews-slider3.owl-theme .owl-dots .owl-dot span {
  background: rgba(25, 103, 210, 0.5);
}
.reviews-slider3.owl-theme .owl-dots .owl-dot.active span {
  background-color: #1f86ef;
}

/*
Pricing Style
======================================================*/
.single-pricing-card {
  padding: 40px;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
  border-radius: 5px;
  margin-bottom: 30px;
}
.single-pricing-card .pricing-top-content {
  margin-bottom: 40px;
  position: relative;
}
.single-pricing-card .pricing-top-content::before {
  position: absolute;
  content: "";
  height: 1px;
  width: 240px;
  background-color: #eeeeee;
  bottom: -15px;
}
.single-pricing-card .pricing-top-content h3 {
  font-size: 30px;
  margin-bottom: 8px;
  position: relative;
  margin-top: -5px;
}
.single-pricing-card .pricing-top-content h1 {
  font-size: 50px;
  color: #1f86ef;
  font-weight: 600;
}
.single-pricing-card .pricing-top-content h1 span {
  font-size: 16px;
  font-weight: 400;
}
.single-pricing-card .features-list {
  margin-bottom: 30px;
}
.single-pricing-card .features-list ul {
  padding-left: 0;
  margin-bottom: 0;
}
.single-pricing-card .features-list ul li {
  list-style-type: none;
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
}
.single-pricing-card .features-list ul li i {
  position: absolute;
  left: 0;
  top: 3px;
  color: #1f86ef;
}
.single-pricing-card .features-list ul li:last-child {
  margin-bottom: 0;
}

/*
Company Style
======================================================*/
.single-company-card {
  padding: 25px;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
  border-radius: 5px;
  margin-bottom: 30px;
  transition: all ease 0.5s;
}
.single-company-card .company-content {
  padding-left: 85px;
  position: relative;
}
.single-company-card .company-content .icon {
  height: 70px;
  width: 70px;
  line-height: 66px;
  background-color: #f0f5f7;
  border-radius: 100%;
  text-align: center;
  position: absolute;
  left: 0;
  top: 3px;
}
.single-company-card .company-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.single-company-card .company-content h3 a {
  color: #202124;
  transition: all ease 0.5s;
}
.single-company-card .company-content h3 a:hover {
  color: #1f86ef;
}
.single-company-card .company-content span {
  display: inline-block;
  margin-bottom: 12px;
}
.single-company-card .company-content span i {
  color: #1f86ef;
  font-size: 14px;
  position: relative;
  top: 1px;
}
.single-company-card .company-content h4 {
  font-size: 18px;
}
.single-company-card:hover {
  transform: translateY(-10px);
}

.company-details .details-top-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.company-details .details-top-content p {
  margin-bottom: 20px;
}
.company-details .details-top-content .top-img {
  margin-bottom: 30px;
}
.company-details .about-company {
  margin-bottom: 20px;
}
.company-details .about-company h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.company-details .gallery h3 {
  font-size: 22px;
  margin-bottom: 20px;
}
.company-details .gallery .gallery-img {
  margin-bottom: 30px;
}
.company-details .overview {
  margin-bottom: 30px;
}
.company-details .overview h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.company-details .overview ul {
  padding-left: 0;
  margin-bottom: 0;
}
.company-details .overview ul li {
  list-style-type: none;
  margin-bottom: 13px;
  position: relative;
  padding-left: 15px;
}
.company-details .overview ul li::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  border-radius: 100%;
  background-color: #1f86ef;
  left: 0;
  top: 8px;
}
.company-details .overview ul li:last-child {
  margin-bottom: 0;
}
.company-details .intro-video {
  margin-bottom: 30px;
}
.company-details .intro-video h3 {
  font-size: 22px;
  margin-bottom: 20px;
}
.company-details .intro-video .video-content {
  position: relative;
}
.company-details .intro-video .video-content .video-btn {
  position: absolute;
  text-align: center;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.company-details .intro-video .video-content .video-btn a {
  display: inline-block;
  height: 65px;
  width: 65px;
  line-height: 70px;
  background-color: #ffffff;
  border-radius: 100%;
  transition: all ease 0.5s;
  position: relative;
}
.company-details .intro-video .video-content .video-btn a i {
  font-size: 30px;
  position: relative;
  left: 2px;
  top: 2px;
  transition: all ease 0.5s;
}
.company-details .intro-video .video-content .video-btn a::before {
  position: absolute;
  content: "";
  height: 72px;
  width: 72px;
  background-color: rgba(255, 255, 255, 0.4);
  top: -3px;
  left: -3px;
  border-radius: 100%;
  animation: ripple 2s infinite linear;
}
.company-details .intro-video .video-content .video-btn a:hover {
  background-color: #1f86ef;
}
.company-details .intro-video .video-content .video-btn a:hover i {
  color: #ffffff;
}
.company-details .related-jobs h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

/*
Counter Style
======================================================*/
.counter-area {
  position: relative;
  z-index: 1;
}
.counter-area::before {
  position: absolute;
  content: "";
  height: 100px;
  width: 100%;
  /* background-color: #f0f4fc; */
  z-index: -1;
}

.counter-overly {
  background-color: #1f86ef;
  border-radius: 5px;
  padding: 60px 40px 30px 40px;
}

.single-counter-item {
  position: relative;
  padding-left: 90px;
  margin-bottom: 30px;
}
.single-counter-item h1 {
  color: #ffffff;
  font-size: 36px;
  margin-bottom: 4px;
}
.single-counter-item h1 span {
  font-family: "Quicksand", sans-serif;
  font-style: normal;
}
.single-counter-item h1 .target {
  position: relative;
  top: 2px;
}
.single-counter-item p {
  color: #ffffff;
}
.single-counter-item .icon {
  font-size: 60px;
  color: #ffffff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
}
.single-counter-item .icon i {
  position: relative;
  top: 5px;
}
.single-counter-item .icon::before {
  position: absolute;
  content: "";
  height: 40px;
  width: 40px;
  border-radius: 100%;
  background-color: #ffffff;
  opacity: 0.1;
  bottom: -10px;
  right: -10px;
}
.single-counter-item.style-2 h1 {
  color: #202124;
}
.single-counter-item.style-2 p {
  color: #666666;
}
.single-counter-item.style-2 .icon {
  color: #1f86ef;
}
.single-counter-item.style-2 .icon::before {
  background-color: #1f86ef;
}

.col-lg-3 .single-counter-item {
  margin-left: 55px;
}
.col-lg-3:first-child .single-counter-item {
  margin-left: 20px;
}

/*
CV Style
======================================================*/
.cv-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}
.cv-content p {
  margin-bottom: 30px;
}
.cv-content .cv-btn .video-btn {
  color: #666666;
}
.cv-content .cv-btn .video-btn i {
  color: #202124;
  height: 45px;
  width: 45px;
  line-height: 45px;
  border-radius: 100%;
  background-color: #f0f5f7;
  text-align: center;
  font-size: 20px;
  position: relative;
  top: 3px;
  margin-right: 10px;
  padding-left: 2px;
  transition: all ease 0.5s;
}
.cv-content .cv-btn .video-btn i:hover {
  color: #ffffff;
  background-color: #1f86ef;
}
.cv-content.style2 .cv-btn .video-btn i {
  background-color: #ffffff;
}
.cv-content.style2 .cv-btn .video-btn i:hover {
  color: #ffffff;
  background-color: #1f86ef;
}

.cv-img-area {
  position: relative;
}
.cv-img-area .cv-img-1 {
  margin-top: 30px;
}
.cv-img-area .cv-img-2 {
  padding-left: 30px;
}
.cv-img-area .inbox {
  position: absolute;
  background-color: #ffffff;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
  border-radius: 5px;
  padding: 15px;
  padding-left: 70px;
  bottom: 25px;
  right: 180px;
}
.cv-img-area .inbox h3 {
  font-size: 16px;
  margin-bottom: 5px;
}
.cv-img-area .inbox .icon {
  height: 40px;
  width: 40px;
  color: #f81815;
  text-align: center;
  line-height: 40px;
  border-radius: 100%;
  background-color: rgba(248, 24, 21, 0.1);
  position: absolute;
  font-size: 20px;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.cv-img-area-style2 {
  padding-right: 120px;
  position: relative;
  padding-bottom: 20px;
}
.cv-img-area-style2 .candidate-content {
  width: 330px;
  padding: 30px;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
  border-radius: 5px;
  background-color: #ffffff;
  position: absolute;
  right: 20px;
  bottom: 0;
}
.cv-img-area-style2 .candidate-content .candidate a {
  background-color: rgba(25, 103, 210, 0.1);
  color: #1f86ef;
  display: inline-block;
  padding: 5px 12px;
  border-radius: 5px;
  margin-bottom: 15px;
  transition: all ease 0.5s;
}
.cv-img-area-style2 .candidate-content .candidate a:hover {
  background-color: #1f86ef;
  color: #ffffff;
}
.cv-img-area-style2 .candidate-content p {
  color: #202124;
  font-weight: 600;
  font-size: 18px;
}
.cv-img-area-style2 .candidate-content .info h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

/*
Paginations Style
======================================================*/
.paginations {
  text-align: center;
}
.paginations ul {
  padding-left: 0;
  margin-bottom: 0;
}
.paginations ul li {
  display: inline-block;
  padding-right: 7px;
}
.paginations ul li a {
  text-align: center;
  height: 40px;
  width: 40px;
  line-height: 40px;
  border-radius: 100%;
  border: 1px solid transparent;
  display: inline-block;
  transition: all ease 0.5s;
  color: #202124;
  font-size: 18px;
  box-shadow: 0px 4px 20px rgba(32, 33, 36, 0.1);
}
.paginations ul li a i {
  position: relative;
  top: -1px;
  font-size: 16px;
}
.paginations ul li a:hover {
  background-color: #1f86ef;
  color: #ffffff;
  border: 1px solid #1f86ef;
}
.paginations ul li a.active {
  background-color: #1f86ef;
  color: #ffffff;
  border: 1px solid #1f86ef;
}
.paginations.style2 ul li a {
  background-color: #ffffff;
}
.paginations.style2 ul li a:hover {
  background-color: #1f86ef;
  color: #ffffff;
  border: 1px solid #1f86ef;
}
.paginations.style2 ul li a.active {
  background-color: #1f86ef;
  color: #ffffff;
  border: 1px solid #1f86ef;
}

/*
Partner Style
======================================================*/
.partner-slider.owl-carousel .owl-item img {
  margin: auto;
  width: auto;
}

.partner-title {
  text-align: center;
  margin-bottom: 50px;
}
.partner-title h3 {
  font-size: 18px;
}

.parner-logo img {
  height: 80px !important;
  width: 200px;
  display: inline-block;
  overflow: hidden;
  transition: all ease 0.5s;
  object-fit: scale-down;
}
.parner-logo img:hover {
  opacity: 1;
}

/*
Job Location Style
======================================================*/
.job-location-card {
  position: relative;
  border-radius: 5;
}
.job-location-card img {
  border-radius: 5px;
}
.job-location-card::before {
  position: absolute;
  content: "";
  background: linear-gradient(
    180deg,
    rgba(32, 33, 36, 0) 79.17%,
    #202124 91.15%
  );
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  border-radius: 5px;
  opacity: 0.7;
}
.job-location-card span {
  position: absolute;
  color: #ffffff;
  background-color: #1f86ef;
  padding: 5px 10px;
  right: 10px;
  top: 10px;
  border-radius: 5px;
}
.job-location-card h3 {
  position: absolute;
  bottom: 20px;
  left: 20px;
  margin-bottom: 0;
  font-size: 18px;
}
.job-location-card h3 a {
  color: #ffffff;
  transition: all ease 0.5s;
}
.job-location-card h3 a:hover {
  color: #1f86ef;
}

.job-location-box {
  position: relative;
  border-radius: 5px;
  margin-bottom: 30px;
}
.job-location-box::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-color: #202124;
  opacity: 0.6;
  border-radius: 5px;
}
.job-location-box .job-img img {
  border-radius: 5px;
}
.job-location-box .content {
  position: absolute;
  text-align: center;
  left: 0;
  right: 0;
  top: 55%;
  transform: translateY(-50%);
  transition: all ease 0.5s;
}
.job-location-box .content h3 {
  font-size: 22px;
}
.job-location-box .content h3 a {
  color: #ffffff;
}
.job-location-box .content .open-job {
  transition: all ease 0.5s;
  opacity: 0;
  visibility: hidden;
  margin-top: 20px;
  position: relative;
  bottom: -30px;
}
.job-location-box .content .open-job a {
  color: #ffffff;
  background-color: #1f86ef;
  padding: 5px 10px;
  border-radius: 5px;
  transition: all ease 0.5s;
}
.job-location-box .content .open-job a:hover {
  background-color: #202124;
}
.job-location-box:hover .content {
  top: 50%;
}
.job-location-box:hover .content .open-job {
  opacity: 1;
  visibility: visible;
  bottom: 0;
}

.job-location-slider.owl-theme .owl-nav .owl-prev,
.job-location-slider.owl-theme .owl-nav .owl-next {
  right: 0;
  background-color: rgba(25, 103, 210, 0.1);
  border: none;
  height: 30px;
  width: 30px;
  line-height: 30px;
  border-radius: 100%;
  transition: all ease 0.5s;
  font-size: 32px;
  color: #1f86ef;
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
}
.job-location-slider.owl-theme .owl-nav .owl-prev i,
.job-location-slider.owl-theme .owl-nav .owl-next i {
  position: relative;
  top: -1px;
  left: -15px;
}
.job-location-slider.owl-theme .owl-nav .owl-prev.owl-next,
.job-location-slider.owl-theme .owl-nav .owl-next.owl-next {
  right: -60px;
  left: auto;
}
.job-location-slider.owl-theme .owl-nav .owl-prev.owl-next i,
.job-location-slider.owl-theme .owl-nav .owl-next.owl-next i {
  position: relative;
  right: -15px;
  left: auto;
  top: -1px;
}
.job-location-slider.owl-theme .owl-nav .owl-prev:hover,
.job-location-slider.owl-theme .owl-nav .owl-next:hover {
  background-color: #1f86ef;
  color: #202124;
}

.job-location-slider2.owl-theme .owl-dots .owl-dot span {
  background: rgba(25, 103, 210, 0.5);
}
.job-location-slider2.owl-theme .owl-dots .owl-dot.active span {
  background-color: #1f86ef;
}

.search-job-top-content {
  margin-bottom: 35px;
}
.search-job-top-content .shoing-content {
  font-weight: 600;
  color: #202124;
}
.search-job-top-content .shorting-content {
  position: relative;
  margin-left: -50px;
}
.search-job-top-content .shorting-content .form-control {
  background-color: #f0f5f7;
  border: unset;
}

/*
Post A Job Style
======================================================*/
.post-job-content {
  background-color: #f0f5f7;
  padding: 40px;
  border-radius: 5px;
}
.post-job-content .information-form {
  margin-bottom: 10px;
}
.post-job-content .information-form h3 {
  font-size: 22px;
  margin-bottom: 20px;
}
.post-job-content .information-form .form-group {
  margin-bottom: 25px;
}
.post-job-content .information-form .form-group .form-control {
  border: unset;
}
.post-job-content .some-info {
  margin-bottom: 25px;
}
.post-job-content .some-info ul {
  padding-left: 0;
  margin-bottom: 0;
}
.post-job-content .some-info ul li {
  list-style-type: none;
  margin-bottom: 12px;
}
.post-job-content .some-info ul li .choose-file {
  position: relative;
  padding-left: 120px;
}
.post-job-content .some-info ul li .choose-file label {
  display: inline-block;
  background-color: #ffffff;
  padding: 5px 12px;
  border-radius: 5px;
  cursor: pointer;
}
.post-job-content .some-info ul li .choose-file span {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.post-job-content .some-info ul li:last-child {
  margin-bottom: 0;
}
.post-job-content .requre-information h3 {
  font-size: 22px;
  margin-bottom: 20px;
}
.post-job-content .requre-information .form-group {
  margin-bottom: 25px;
}
.post-job-content .requre-information .form-group .form-check {
  padding-left: 24px;
}
.post-job-content .requre-information .form-group .form-control {
  border: unset;
}

/*
Job Listing Style
======================================================*/
.job-listing-search-form {
  background-color: #f0f5f7;
  border-radius: 5px;
  margin-bottom: 30px;
}
.job-listing-search-form .form-group {
  position: relative;
}
.job-listing-search-form .form-group .form-control {
  border: unset;
  height: 65px;
  padding-left: 55px;
  background-color: #f0f5f7;
}
.job-listing-search-form .form-group .form-select {
  cursor: pointer;
}
.job-listing-search-form .form-group i {
  position: absolute;
  top: 23px;
  left: 30px;
}
.job-listing-search-form .form-group::before {
  position: absolute;
  content: "";
  height: 30px;
  width: 1px;
  background-color: rgba(102, 102, 102, 0.2);
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.job-listing-search-form .form-group.style::before {
  display: none;
}
.job-listing-search-form .search-btn {
  text-align: end;
}
.job-listing-search-form .search-btn .default-btn {
  padding: 20px 55px;
}

/*
Freelancer Style
======================================================*/
.freelancer-top-content .browse-btn {
  text-align: end;
  margin-bottom: 40px;
}
.freelancer-top-content .browse-btn a {
  color: #1f86ef;
  padding-bottom: 3px;
  font-weight: 600;
  border-bottom: 1px solid #1f86ef;
}

.single-freelancer-card {
  padding: 25px;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
  border-radius: 5px;
  margin-bottom: 30px;
}
.single-freelancer-card .freelancer-img {
  position: relative;
  margin-right: -15px;
}
.single-freelancer-card img {
  border-radius: 5px;
}
.single-freelancer-card .freelancer-content {
  padding-left: 15px;
}
.single-freelancer-card .freelancer-content h3 {
  font-size: 18px;
  transition: all ease 0.5s;
}
.single-freelancer-card .freelancer-content h3:hover {
  color: #1f86ef;
}
.single-freelancer-card .freelancer-content span {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 14px;
}
.single-freelancer-card .freelancer-content .ratings {
  margin-bottom: 8px;
}
.single-freelancer-card .freelancer-content .ratings i {
  color: #ffc107;
  font-size: 13px;
}
.single-freelancer-card .freelancer-content .info ul {
  padding-left: 0;
  margin-bottom: 0;
}
.single-freelancer-card .freelancer-content .info ul li {
  display: inline-block;
  position: relative;
  padding-left: 18px;
  margin-right: 15px;
  font-size: 14px;
  color: #666666;
}
.single-freelancer-card .freelancer-content .info ul li:last-child {
  margin-right: 0;
}
.single-freelancer-card .freelancer-content .info ul li i {
  color: #1f86ef;
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 13px;
}

.single-freelancer-box {
  padding: 10px;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
  border-radius: 10px;
  margin-bottom: 30px;
}
.single-freelancer-box .freelancer-img {
  overflow: hidden;
  border-radius: 5px;
  transition: all ease 0.5s;
}
.single-freelancer-box .freelancer-img img {
  overflow: hidden;
  border-radius: 5px;
  transition: all ease 0.5s;
}
.single-freelancer-box .freelancers-content {
  padding: 25px 20px 20px 20px;
}
.single-freelancer-box .freelancers-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.single-freelancer-box .freelancers-content h3 a {
  color: #202124;
  transition: all ease 0.5s;
}
.single-freelancer-box .freelancers-content h3 a:hover {
  color: #1f86ef;
}
.single-freelancer-box .freelancers-content span {
  display: inline-block;
  margin-bottom: 12px;
}
.single-freelancer-box .freelancers-content .info-list ul {
  padding-left: 0;
  margin-bottom: 0;
}
.single-freelancer-box .freelancers-content .info-list ul li {
  display: inline-block;
  margin-right: 8px;
  position: relative;
  padding-left: 18px;
  font-size: 14px;
}
.single-freelancer-box .freelancers-content .info-list ul li i {
  position: absolute;
  left: 0;
  top: 2px;
  color: #1f86ef;
  font-size: 13px;
}
.single-freelancer-box .freelancers-content .info-list ul li i.color {
  color: #ffc107;
}
.single-freelancer-box .freelancers-content .info-list ul li:last-child {
  margin-right: 0;
}
.single-freelancer-box:hover .freelancer-img img {
  transform: scale(1.03);
}

.freelancer-details-content .freelancer-top-content {
  margin-bottom: 30px;
}
.freelancer-details-content .freelancer-top-content .single-freelancer-card {
  padding: 0;
  box-shadow: unset;
  margin-bottom: 0;
}
.freelancer-details-content .freelancer-top-content .download-btn {
  text-align: end;
}
.freelancer-details-content .about-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.freelancer-details-content .about-content p {
  margin-bottom: 15px;
}
.freelancer-details-content .works-experience h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.freelancer-details-content .works-experience ul {
  padding-left: 0;
  margin-bottom: 0;
}
.freelancer-details-content .works-experience ul li {
  list-style-type: none;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(32, 33, 36, 0.08);
}
.freelancer-details-content .works-experience ul li p span {
  color: #1f86ef;
  display: inline-block;
  padding-right: 20px;
  margin-bottom: 8px;
}
.freelancer-details-content .works-experience ul li h4 {
  font-size: 18px;
  margin-bottom: 15px;
}
.freelancer-details-content .education {
  margin-bottom: 20px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(32, 33, 36, 0.08);
}
.freelancer-details-content .education h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.freelancer-details-content .education ul {
  padding-left: 0;
  margin-bottom: 0;
}
.freelancer-details-content .education ul li {
  list-style-type: none;
  margin-bottom: 25px;
}
.freelancer-details-content .education ul li span {
  color: #1f86ef;
  display: inline-block;
  padding-right: 20px;
  margin-bottom: 8px;
}
.freelancer-details-content .education ul li h4 {
  font-size: 18px;
  margin-bottom: 15px;
}
.freelancer-details-content .education ul li:last-child {
  margin-bottom: 0;
}

.skill-content {
  margin-bottom: 30px;
}
.skill-content h2 {
  font-size: 22px;
  margin-bottom: 20px;
}
.skill-content .skills {
  position: relative;
}
.skill-content .skills .skill-item {
  position: relative;
  margin-bottom: 20px;
}
.skill-content .skills .skill-item .skill-header {
  position: relative;
  margin-bottom: 10px;
}
.skill-content .skills .skill-item .skill-header .skill-title {
  font-size: 16px;
  margin-bottom: 0;
}
.skill-content .skills .skill-item .skill-header .skill-percentage {
  position: absolute;
  right: 0;
  top: 4px;
  font-size: 16px;
  font-weight: 500;
  font-color: #202124;
}
.skill-content .skills .skill-item:last-child {
  margin-bottom: 0;
}
.skill-content .skills .skill-item .skill-bar {
  position: relative;
  width: 100%;
}
.skill-content .skills .skill-item .skill-bar .bar-inner {
  position: relative;
  width: 100%;
  border-bottom: 3px solid rgba(25, 103, 210, 0.1);
  border-radius: 30px;
}
.skill-content .skills .skill-item .skill-bar .bar-inner .bar {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 0px;
  height: 3px;
  background: #1f86ef;
  transition: all 2000ms ease;
  border-radius: 10px;
}
.skill-content .skills .skill-item .skill-bar .bar-inner .bar::before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  border-radius: 100%;
  top: -3px;
  right: -1px;
  background-color: #1f86ef;
}

/*
Candidates Style
======================================================*/
.candidates-details-content .about-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.candidates-details-content .about-content p {
  margin-bottom: 15px;
}
.candidates-details-content .works-experience h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.candidates-details-content .works-experience ul {
  padding-left: 0;
  margin-bottom: 0;
}
.candidates-details-content .works-experience ul li {
  list-style-type: none;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(32, 33, 36, 0.08);
}
.candidates-details-content .works-experience ul li p span {
  color: #1f86ef;
  display: inline-block;
  padding-right: 20px;
  margin-bottom: 8px;
}
.candidates-details-content .works-experience ul li h4 {
  font-size: 18px;
  margin-bottom: 15px;
}
.candidates-details-content .education {
  margin-bottom: 20px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(32, 33, 36, 0.08);
}
.candidates-details-content .education h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.candidates-details-content .education ul {
  padding-left: 0;
  margin-bottom: 0;
}
.candidates-details-content .education ul li {
  list-style-type: none;
  margin-bottom: 25px;
}
.candidates-details-content .education ul li span {
  color: #1f86ef;
  display: inline-block;
  padding-right: 20px;
  margin-bottom: 8px;
}
.candidates-details-content .education ul li h4 {
  font-size: 18px;
  margin-bottom: 15px;
}
.candidates-details-content .education ul li:last-child {
  margin-bottom: 0;
}
.candidates-details-content .portfolio h3 {
  font-size: 22px;
  margin-bottom: 20px;
}
.candidates-details-content .portfolio .gallery-img {
  margin-bottom: 30px;
}

.candidates-details-banner-area {
  padding-top: 100px;
  padding-bottom: 100px;
}

.candidates-details-left-content {
  padding-left: 190px;
  position: relative;
}
.candidates-details-left-content .candidates-img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.candidates-details-left-content .candidates-img img {
  border-radius: 100%;
  border: 5px solid #ffffff;
  height: 170px;
  width: 170px;
}
.candidates-details-left-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.candidates-details-left-content .info ul {
  padding-left: 0;
  margin-bottom: 0;
}
.candidates-details-left-content .info ul li {
  display: inline-block;
  padding-left: 20px;
  position: relative;
  margin-right: 15px;
}
.candidates-details-left-content .info ul li i {
  position: absolute;
  left: 0;
  top: 4px;
  font-size: 14px;
  color: #1f86ef;
}
.candidates-details-left-content .info ul li a {
  color: #666666;
  transition: all ease 0.5s;
}
.candidates-details-left-content .info ul li a:hover {
  color: #1f86ef;
}

.candidates-share-content {
  text-align: end;
}
.candidates-share-content ul {
  padding-left: 0;
  margin-bottom: 0;
}
.candidates-share-content ul li {
  display: inline-block;
  margin-right: 7px;
}
.candidates-share-content ul li:last-child {
  margin-right: 0;
}
.candidates-share-content ul li span {
  font-weight: 500;
}
.candidates-share-content ul li span i {
  padding-right: 7px;
  display: inline-block;
  font-size: 14px;
}
.candidates-share-content ul li a {
  height: 35px;
  width: 35px;
  line-height: 35px;
  border-radius: 100%;
  display: inline-block;
  text-align: center;
  background-color: #ffffff;
  color: #1f86ef;
  transition: all ease 0.5s;
}
.candidates-share-content ul li a:hover {
  background-color: #1f86ef;
  color: #ffffff;
}

/*
Sidebar Style
======================================================*/
.single-sidebar-widget {
  padding: 30px;
  background-color: #f0f5f7;
  border-radius: 5px;
  margin-bottom: 30px;
}
.single-sidebar-widget h3 {
  font-size: 22px;
  margin-bottom: 20px;
}
.single-sidebar-widget.job-overview ul {
  padding-left: 0;
  margin-bottom: 0;
}
.single-sidebar-widget.job-overview ul li {
  list-style-type: none;
  margin-bottom: 12px;
  position: relative;
  text-align: end;
}
.single-sidebar-widget.job-overview ul li span {
  font-weight: 600;
  color: #202124;
  position: absolute;
  left: 0;
}
.single-sidebar-widget.job-overview ul li:last-child {
  margin-bottom: 0;
}
.single-sidebar-widget.owner-info ul {
  padding-left: 0;
  margin-bottom: 22px;
}
.single-sidebar-widget.owner-info ul li {
  list-style-type: none;
  margin-bottom: 12px;
  position: relative;
  text-align: end;
}
.single-sidebar-widget.owner-info ul li span {
  font-weight: 600;
  color: #202124;
  position: absolute;
  left: 0;
}
.single-sidebar-widget.owner-info ul li a {
  color: #666666;
  transition: all ease 0.5s;
}
.single-sidebar-widget.owner-info ul li a:hover {
  color: #1f86ef;
}
.single-sidebar-widget.owner-info ul li:last-child {
  margin-bottom: 0;
}
.single-sidebar-widget.owner-info .default-btn {
  width: 100%;
}
.single-sidebar-widget.company-overview ul {
  padding-left: 0;
  margin-bottom: 25px;
}
.single-sidebar-widget.company-overview ul li {
  list-style-type: none;
  margin-bottom: 12px;
  position: relative;
  text-align: end;
}
.single-sidebar-widget.company-overview ul li span {
  font-weight: 600;
  color: #202124;
  position: absolute;
  left: 0;
}
.single-sidebar-widget.company-overview ul li a {
  color: #666666;
  transition: all ease 0.5s;
}
.single-sidebar-widget.company-overview ul li a:hover {
  color: #1f86ef;
}
.single-sidebar-widget.company-overview ul li:last-child {
  margin-bottom: 0;
}
.single-sidebar-widget.company-overview ul li .social-content a {
  height: 30px;
  width: 30px;
  line-height: 35px;
  border-radius: 100%;
  text-align: center;
  background-color: rgba(25, 103, 210, 0.1);
  display: inline-block;
  color: #1f86ef;
  font-size: 14px;
  transition: all ease 0.5s;
  margin-right: 4px;
}
.single-sidebar-widget.company-overview ul li .social-content a:last-child {
  margin-right: 0;
}
.single-sidebar-widget.company-overview ul li .social-content a:hover {
  color: #ffffff;
  background-color: #1f86ef;
}
.single-sidebar-widget.company-overview .default-btn {
  width: 100%;
}
.single-sidebar-widget.location .map-content iframe {
  height: 230px;
  width: 100%;
}
.single-sidebar-widget.location.style2 .map-content {
  margin-bottom: 25px;
}
.single-sidebar-widget.location.style2 ul {
  padding-left: 0;
  margin-bottom: 0;
}
.single-sidebar-widget.location.style2 ul li {
  list-style-type: none;
  margin-bottom: 12px;
  position: relative;
  text-align: end;
}
.single-sidebar-widget.location.style2 ul li span {
  font-weight: 600;
  color: #202124;
  position: absolute;
  left: 0;
}
.single-sidebar-widget.location.style2 ul li a {
  color: #666666;
  transition: all ease 0.5s;
}
.single-sidebar-widget.location.style2 ul li a:hover {
  color: #1f86ef;
}
.single-sidebar-widget.location.style2 ul li:last-child {
  margin-bottom: 0;
}
.single-sidebar-widget.search-bar .form-group {
  position: relative;
}
.single-sidebar-widget.search-bar .form-group .form-control {
  border: unset;
}
.single-sidebar-widget.search-bar .form-group .default-btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  padding: 10px;
  border-radius: 0 5px 5px 0;
}
.single-sidebar-widget.search-bar .form-group .default-btn i {
  font-size: 20px;
  position: relative;
  top: 2px;
  right: 2px;
}
.single-sidebar-widget.widget-peru-posts-thumb {
  position: relative;
  overflow: hidden;
}
.single-sidebar-widget.widget-peru-posts-thumb h3 {
  padding-bottom: 10px;
  margin-bottom: 30px;
  border-bottom: 1px solid #1f86ef;
}
.single-sidebar-widget.widget-peru-posts-thumb .item {
  overflow: hidden;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.single-sidebar-widget.widget-peru-posts-thumb .item:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}
.single-sidebar-widget.widget-peru-posts-thumb .item .thumb {
  float: left;
  height: 75px;
  overflow: hidden;
  position: relative;
  width: 75px;
  margin-right: 15px;
  border-radius: 7px;
}
.single-sidebar-widget.widget-peru-posts-thumb .item .thumb .fullimage {
  width: 75px;
  height: 75px;
  display: inline-block;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center center !important;
  position: relative;
  background-color: #202124;
}
.single-sidebar-widget.widget-peru-posts-thumb .item .thumb .fullimage.bg1 {
  background-image: url(../images/blog/blog-img-7.jpg);
}
.single-sidebar-widget.widget-peru-posts-thumb .item .thumb .fullimage.bg2 {
  background-image: url(../images/blog/blog-img-2.jpg);
}
.single-sidebar-widget.widget-peru-posts-thumb .item .thumb .fullimage.bg3 {
  background-image: url(../images/blog/blog-img-12.jpg);
}
.single-sidebar-widget.widget-peru-posts-thumb .item .info {
  overflow: hidden;
}
.single-sidebar-widget.widget-peru-posts-thumb .item .info span {
  display: block;
  color: #666666;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 500;
}
.single-sidebar-widget.widget-peru-posts-thumb .item .info .title {
  margin-bottom: 0;
  margin-top: 5px;
  line-height: 1.4;
  font-size: 16px;
  font-weight: 700;
}
.single-sidebar-widget.widget-peru-posts-thumb .item .info .title a {
  display: inline-block;
  color: #202124;
  transition: all ease 0.5s;
}
.single-sidebar-widget.widget-peru-posts-thumb .item .info .title a:hover {
  color: #1f86ef;
}
.single-sidebar-widget.categories h3 {
  padding-bottom: 10px;
  margin-bottom: 30px;
  border-bottom: 1px solid #1f86ef;
}
.single-sidebar-widget.categories ul {
  padding-left: 0;
  margin-bottom: 0;
}
.single-sidebar-widget.categories ul li {
  list-style-type: none;
  margin-bottom: 12px;
  position: relative;
  padding-left: 18px;
}
.single-sidebar-widget.categories ul li::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background-color: #1f86ef;
  left: 0;
  top: 8px;
}
.single-sidebar-widget.categories ul li a {
  color: #666666;
  transition: all ease 0.5s;
}
.single-sidebar-widget.categories ul li a:hover {
  color: #1f86ef;
}
.single-sidebar-widget.categories ul li:last-child {
  margin-bottom: 0;
}
.single-sidebar-widget.tags {
  padding-bottom: 20px;
}
.single-sidebar-widget.tags h3 {
  padding-bottom: 10px;
  margin-bottom: 30px;
  border-bottom: 1px solid #1f86ef;
}
.single-sidebar-widget.tags a {
  background-color: #ffffff;
  padding: 8px 18px;
  display: inline-block;
  margin-right: 7px;
  margin-bottom: 10px;
  color: #666666;
  transition: all ease 0.5s;
  border-radius: 5px;
}
.single-sidebar-widget.tags a:hover {
  background-color: #1f86ef;
  color: #ffffff;
}
.single-sidebar-widget.job-alert h3 {
  margin-bottom: 18px;
}
.single-sidebar-widget.job-alert p {
  margin-bottom: 20px;
  font-weight: 500;
  padding-right: 20px;
}
.single-sidebar-widget.job-alert .form-group {
  margin-bottom: 25px;
}
.single-sidebar-widget.job-alert .form-group .form-control {
  border: unset;
}
.single-sidebar-widget.job-alert.style2 .default-btn {
  width: 100%;
}
.single-sidebar-widget.range ul {
  padding-left: 0;
  margin-bottom: 0;
}
.single-sidebar-widget.range ul li {
  list-style-type: none;
  margin-bottom: 15px;
  position: relative;
  padding-left: 20px;
  transition: all ease 0.5s;
}
.single-sidebar-widget.range ul li::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  border-radius: 100%;
  background-color: #1f86ef;
  left: 0;
  top: 9px;
}
.single-sidebar-widget.range ul li:last-child {
  margin-bottom: 0;
}
.single-sidebar-widget.range ul li a {
  color: #666666;
  transition: all ease 0.5s;
}
.single-sidebar-widget.range ul li span {
  position: absolute;
  right: 0;
  height: 30px;
  width: 30px;
  line-height: 30px;
  border-radius: 100%;
  text-align: center;
  color: #1f86ef;
  background-color: rgba(25, 103, 210, 0.1);
  transition: all ease 0.5s;
}
.single-sidebar-widget.range ul li:hover a {
  color: #1f86ef;
}
.single-sidebar-widget.range ul li:hover span {
  background-color: #1f86ef;
  color: #ffffff;
}
.single-sidebar-widget.keyword .form-group .form-control {
  border: unset;
}
.single-sidebar-widget.location-style2 .form-control {
  border: unset;
  margin-bottom: 18px;
}
.single-sidebar-widget.location-style2 p {
  margin-bottom: 18px;
}
.single-sidebar-widget.location-style2 .range-slider-area {
  position: relative;
  min-height: 75px;
  padding-top: 10px;
}
.single-sidebar-widget.location-style2
  .range-slider-area
  .ui-widget.ui-widget-content {
  height: 5px;
  border: none;
  margin-bottom: 20px;
  border-radius: 30px;
  background: rgba(25, 103, 210, 0.2);
}
.single-sidebar-widget.location-style2
  .range-slider-area
  .ui-slider
  .ui-slider-range {
  top: 0px;
  height: 5px;
  background: #1f86ef;
}
.single-sidebar-widget.location-style2
  .range-slider-area
  .ui-state-default
  .ui-state-default,
.single-sidebar-widget.location-style2
  .range-slider-area
  .ui-widget-content
  .ui-state-default {
  position: absolute;
  top: 4px;
  width: 17px;
  height: 17px;
  background: #ffffff;
  border: 1px solid #1f86ef;
  box-sizing: border-box;
  border-radius: 20px;
  cursor: pointer;
  outline: none;
  box-shadow: none;
}
.single-sidebar-widget.location-style2 .range-slider-area .input-outer {
  display: flex;
  justify-content: center;
}
.single-sidebar-widget.location-style2 .range-slider-area .amount-outer {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 70px;
  padding: 0 18px;
  height: 30px;
  top: 8px;
  text-align: center;
  background: rgba(25, 103, 210, 0.2);
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
  color: #1f86ef;
}
.single-sidebar-widget.location-style2
  .range-slider-area
  .amount-outer
  .area-amount {
  margin-right: 7px;
}
.single-sidebar-widget.location-style2 .range-slider-area .amount {
  margin-right: 5px;
}
.single-sidebar-widget.location-style2
  .range-slider-area
  .ui-state-default:last-child
  .ui-state-default,
.single-sidebar-widget.location-style2
  .range-slider-area
  .ui-state-default
  .salary-range
  .ui-state-default {
  display: block !important;
}
.single-sidebar-widget.location-style2 .range-slider-area .okm {
  background-color: rgba(25, 103, 210, 0.2);
  padding: 5px 10px;
  position: absolute;
  left: 0;
  bottom: 0px;
  color: #1f86ef;
  font-size: 14px;
  font-weight: 500;
  border-radius: 5px;
}
.single-sidebar-widget.candidate-side-widget ul {
  padding-left: 0;
  margin-bottom: 0;
}
.single-sidebar-widget.candidate-side-widget ul li {
  list-style-type: none;
  padding-left: 18px;
  position: relative;
  margin-bottom: 12px;
}
.single-sidebar-widget.candidate-side-widget ul li::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  border-radius: 100%;
  background-color: rgba(25, 103, 210, 0.3);
  left: 0;
  top: 7px;
  transition: all ease 0.5s;
}
.single-sidebar-widget.candidate-side-widget ul li:hover::before {
  background-color: #1f86ef;
}
.single-sidebar-widget.candidate-side-widget ul li a {
  color: #666666;
}
.single-sidebar-widget.candidate-side-widget ul li:last-child {
  margin-bottom: 0;
}
.single-sidebar-widget.download .default-btn {
  margin-bottom: 25px;
  width: 100%;
}
.single-sidebar-widget.download .default-btn.btn2 {
  margin-bottom: 0;
  background-color: #ffffff;
  color: #202124;
}
.single-sidebar-widget.download .default-btn.btn2:hover {
  color: #ffffff;
}

/*
Team Style
======================================================*/
.single-team-card {
  padding: 10px;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
  border-radius: 5px;
  margin-bottom: 30px;
}
.single-team-card .team-img {
  transition: all ease 0.5s;
  overflow: hidden;
}
.single-team-card .team-img img {
  border-radius: 5px;
  transition: all ease 0.5s;
  overflow: hidden;
}
.single-team-card .team-content {
  padding: 15px 10px 10px 10px;
}
.single-team-card .team-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.single-team-card .team-content .social-content .social-control {
  position: relative;
  transition: all ease 0.5s;
  text-align: end;
  top: 4px;
  right: 10px;
  height: 40px;
  width: 40px;
  line-height: 40px;
  border-radius: 100%;
  background-color: rgba(25, 103, 210, 0.1);
  transition: all ease 0.5s;
}
.single-team-card .team-content .social-content .social-control:hover {
  background-color: #1f86ef;
  color: #ffffff;
}
.single-team-card .team-content .social-content .social-control .icon {
  text-align: center;
}
.single-team-card .team-content .social-content .social-control .social-icon {
  position: absolute;
  right: 0;
  bottom: 40px;
}
.single-team-card
  .team-content
  .social-content
  .social-control
  .social-icon
  ul {
  padding-left: 0;
  margin-bottom: 0;
}
.single-team-card
  .team-content
  .social-content
  .social-control
  .social-icon
  ul
  li {
  margin-bottom: 8px;
  list-style-type: none;
  transform: translateY(30px);
  transition: all 0.3s ease-in-out 0s;
  opacity: 0;
  visibility: hidden;
}
.single-team-card
  .team-content
  .social-content
  .social-control
  .social-icon
  ul
  li:nth-child(1) {
  transition-delay: 0.2s;
}
.single-team-card
  .team-content
  .social-content
  .social-control
  .social-icon
  ul
  li:nth-child(2) {
  transition-delay: 0.3s;
}
.single-team-card
  .team-content
  .social-content
  .social-control
  .social-icon
  ul
  li:nth-child(3) {
  transition-delay: 0.4s;
}
.single-team-card
  .team-content
  .social-content
  .social-control
  .social-icon
  ul
  li:nth-child(4) {
  transition-delay: 0.5s;
}
.single-team-card
  .team-content
  .social-content
  .social-control
  .social-icon
  ul
  li
  a {
  color: #1f86ef;
  height: 40px;
  background-color: #ffffff;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
  width: 40px;
  line-height: 45px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100%;
  display: inline-block;
  text-align: center;
  transition: all ease 0.5s;
}
.single-team-card
  .team-content
  .social-content
  .social-control
  .social-icon
  ul
  li
  a:hover {
  background-color: #1f86ef;
  color: #ffffff;
  border-color: #1f86ef;
}
.single-team-card
  .team-content
  .social-content
  .social-control:hover
  .social-icon
  ul
  li {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.single-team-card:hover .team-img img {
  transform: scale(1.03);
}

/*
Download Style
======================================================*/
.download-image {
  position: relative;
  text-align: center;
  z-index: 1;
  margin-left: 60px;
}
.download-image .shape {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  z-index: -1;
}

.download-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}
.download-content p {
  margin-bottom: 20px;
}
.download-content h3 {
  font-size: 18px;
  margin-bottom: 30px;
}
.download-content .download-btn ul {
  padding-left: 0;
  margin-bottom: 0;
}
.download-content .download-btn ul li {
  display: inline-block;
  margin-right: 20px;
}
.download-content .download-btn ul li:last-child {
  margin-right: 0;
}

/*
Faq Area Style
======================================================*/
.faq-img {
  padding-right: 40px;
}

.faq-accordion .faq-title span {
  color: #1f86ef;
  margin-bottom: 10px;
  display: inline-block;
  font-weight: 500;
}
.faq-accordion .faq-title h2 {
  font-size: 36px;
  margin-bottom: 30px;
}
.faq-accordion .accordion .accordion-item {
  display: block;
  margin-bottom: 30px;
  border: none;
  border-radius: 7px;
}
.faq-accordion .accordion .accordion-item:last-child {
  margin-bottom: 0;
}
.faq-accordion .accordion .accordion-title {
  position: relative;
  display: block;
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  cursor: pointer;
  padding-left: 60px;
  transition: all ease 0.5s;
}
.faq-accordion .accordion .accordion-title i {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #666666;
  text-align: center;
  height: 40px;
  width: 40px;
  line-height: 40px;
  border-radius: 100%;
  background-color: #ffffff;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
  font-size: 16px;
  transition: all ease 0.5s;
}
.faq-accordion .accordion .accordion-title.active i {
  background-color: #1f86ef;
}
.faq-accordion .accordion .accordion-title.active i::before {
  content: "\f068";
  color: #ffffff;
  font-family: "Font Awesome 6 Free";
}
.faq-accordion .accordion .accordion-content {
  display: none;
  background-color: #ffffff;
}
.faq-accordion .accordion .accordion-content p {
  font-weight: 400;
}
.faq-accordion .accordion .accordion-content.show {
  display: block;
}

/*
Works Style
======================================================*/
.single-works-card {
  padding: 30px;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
  border-radius: 5px;
  transition: all ease 0.5s;
  margin-bottom: 30px;
}
.single-works-card .icon {
  height: 70px;
  width: 70px;
  line-height: 78px;
  border-radius: 100%;
  background-color: #f0f5f7;
  text-align: center;
  margin-bottom: 22px;
  position: relative;
}
.single-works-card .icon .number {
  height: 22px;
  width: 22px;
  line-height: 22px;
  border-radius: 100%;
  background-color: #1f86ef;
  color: #ffffff;
  font-weight: 500;
  position: absolute;
  left: 0;
  top: 0;
}
.single-works-card .icon i {
  font-size: 35px;
  color: #1f86ef;
}
.single-works-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.single-works-card.style-2 {
  background-color: #ffffff;
}
.single-works-card:hover {
  transform: translateY(-10px);
}

/*
Blog Style
======================================================*/
.blog-top-content .browse-btn {
  text-align: end;
  margin-bottom: 40px;
}
.blog-top-content .browse-btn a {
  color: #1f86ef;
  padding-bottom: 3px;
  font-weight: 600;
  border-bottom: 1px solid #1f86ef;
}

.single-blog-card {
  margin-bottom: 30px;
}
.single-blog-card .blog-img img {
  border-radius: 5px;
}
.single-blog-card .blog-content {
  padding-top: 30px;
}
.single-blog-card .blog-content .info-list {
  margin-bottom: 15px;
}
.single-blog-card .blog-content .info-list ul {
  padding-left: 0;
  margin-bottom: 0;
}
.single-blog-card .blog-content .info-list ul li {
  display: inline-block;
  margin-right: 15px;
  padding-left: 20px;
  position: relative;
}
.single-blog-card .blog-content .info-list ul li:last-child {
  margin-right: 0;
}
.single-blog-card .blog-content .info-list ul li a {
  color: #666666;
}
.single-blog-card .blog-content .info-list ul li i {
  position: absolute;
  left: 0;
  top: 5px;
  font-size: 14px;
  color: #1f86ef;
}
.single-blog-card .blog-content h2 {
  font-size: 22px;
  margin-bottom: 15px;
  line-height: 32px;
}
.single-blog-card .blog-content h2 a {
  color: #202124;
  transition: all ease 0.5s;
}
.single-blog-card .blog-content h2 a:hover {
  color: #1f86ef;
}
.single-blog-card .blog-content p {
  margin-bottom: 20px;
}
.single-blog-card .blog-content .read-more {
  color: #fff;
  font-weight: 600;
  transition: all ease 0.5s;
}
.single-blog-card .blog-content .read-more:hover {
  color: #1f86ef;
}
.single-blog-card.style2 .blog-content {
  padding-top: 0;
}
.single-blog-card.style2 .blog-content .info-list ul li {
  font-size: 14px;
}
.single-blog-card.style2 .blog-content .info-list ul li i {
  top: 3px;
}
.single-blog-card.style2 .blog-content h2 {
  font-size: 20px;
  line-height: 30px;
}
.single-blog-card.style3 {
  padding: 10px;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
  border-radius: 5px;
}
.single-blog-card.style3 .blog-content {
  padding: 25px 20px 20px 20px;
}

.subscribe-area {
  padding-top: 60px;
  padding-bottom: 30px;
}

.subsceibe-left-content {
  margin-bottom: 30px;
}
.subsceibe-left-content h2 {
  font-size: 36px;
}

.subscribe-form {
  position: relative;
  margin-bottom: 30px;
}
.subscribe-form .form-control {
  border-color: transparent;
  height: 74px;
}
.subscribe-form .validation-danger {
  color: #f81815;
  padding-top: 5px;
}
.subscribe-form .default-btn {
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 15px 30px;
}

.blog-details .blog-details-top-content {
  margin-bottom: 30px;
}
.blog-details .blog-details-top-content .top-image {
  margin-bottom: 30px;
}
.blog-details .blog-details-top-content .info {
  margin-bottom: 15px;
}
.blog-details .blog-details-top-content .info ul {
  padding-left: 0;
  margin-bottom: 0;
}
.blog-details .blog-details-top-content .info ul li {
  display: inline-block;
  margin-right: 15px;
  padding-left: 20px;
  position: relative;
}
.blog-details .blog-details-top-content .info ul li:last-child {
  margin-right: 0;
}
.blog-details .blog-details-top-content .info ul li a {
  color: #666666;
}
.blog-details .blog-details-top-content .info ul li i {
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 14px;
  color: #1f86ef;
}
.blog-details .blog-details-top-content h2 {
  font-size: 22px;
  margin-bottom: 15px;
}
.blog-details .blog-details-top-content p {
  margin-bottom: 20px;
}
.blog-details .quote {
  padding: 30px 40px 30px 110px;
  background-color: #f0f5f7;
  position: relative;
  border-radius: 5px;
  margin-bottom: 25px;
}
.blog-details .quote p {
  font-size: 18px;
  font-weight: 500;
  color: #202124;
}
.blog-details .quote .icon {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}
.blog-details .blog-deails-content p {
  margin-bottom: 17px;
}
.blog-details .tag-and-share {
  background-color: #f0f5f7;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 30px;
}
.blog-details .tag-and-share .tags ul {
  padding-left: 0;
  margin-bottom: 0;
}
.blog-details .tag-and-share .tags ul li {
  display: inline-block;
  margin-right: 5px;
}
.blog-details .tag-and-share .tags ul li a {
  color: #666666;
  position: relative;
  transition: all ease 0.5s;
}
.blog-details .tag-and-share .tags ul li a:hover {
  color: #1f86ef;
}
.blog-details .tag-and-share .tags ul li a::before {
  position: absolute;
  content: ",";
  right: -3px;
}
.blog-details .tag-and-share .tags ul li i {
  color: #1f86ef;
  padding-right: 5px;
}
.blog-details .tag-and-share .share {
  text-align: end;
}
.blog-details .tag-and-share .share ul {
  padding-left: 0;
  margin-bottom: 0;
}
.blog-details .tag-and-share .share ul li {
  display: inline-block;
  margin-right: 8px;
}
.blog-details .tag-and-share .share ul li:last-child {
  margin-right: 0;
}
.blog-details .tag-and-share .share ul li a {
  color: #666666;
  transition: all ease 0.5s;
}
.blog-details .tag-and-share .share ul li a:hover {
  color: #1f86ef;
}
.blog-details .reply-content {
  background-color: #f0f5f7;
  border-radius: 5px;
  padding: 30px;
  padding-bottom: 5px;
  margin-bottom: 30px;
}
.blog-details .reply-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.blog-details .reply-content p {
  margin-bottom: 20px;
}
.blog-details .reply-content .form-group {
  margin-bottom: 25px;
}
.blog-details .reply-content .form-group .form-control {
  border: unset;
}

/*
Contact Style
======================================================*/
.contact-area {
  padding-top: 70px;
  padding-bottom: 70px;
}
.contact-area.style2 .contact-left-content h2 {
  color: #ffffff;
}
.contact-area.style2 .contact-btn .default-btn {
  background-color: #ffffff;
  color: #1f86ef;
  font-weight: 600;
}
.contact-area.style2 .contact-btn .default-btn::before {
  display: none;
}
.contact-area.style2 .contact-btn .default-btn::after {
  display: none;
}
.contact-area.style2 .contact-btn .default-btn:hover {
  background-color: #202124;
  color: #ffffff;
}

.contact-left-content h2 {
  font-size: 36px;
}

.contact-btn {
  text-align: end;
}

.single-contact-info-box {
  background-color: #f0f5f7;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 5px;
  transition: all ease 0.5s;
}
.single-contact-info-box .info-content {
  padding-left: 70px;
  position: relative;
}
.single-contact-info-box .info-content .icon {
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 100%;
  font-size: 24px;
  color: #ffffff;
  background-color: #1f86ef;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all ease 0.5s;
}
.single-contact-info-box .info-content span {
  transition: all ease 0.5s;
}
.single-contact-info-box .info-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  transition: all ease 0.5s;
}
.single-contact-info-box .info-content a {
  display: block;
  color: #666666;
  margin-bottom: 3px;
  transition: all ease 0.5s;
}
.single-contact-info-box:hover {
  background-color: #1f86ef;
}
.single-contact-info-box:hover .icon {
  background-color: #ffffff;
  color: #1f86ef;
}
.single-contact-info-box:hover h3 {
  color: #ffffff;
}
.single-contact-info-box:hover span {
  color: #ffffff;
}
.single-contact-info-box:hover a {
  color: #ffffff;
}

.contact-map {
  margin-bottom: 30px;
}
.contact-map iframe {
  width: 100%;
  height: 510px;
}

.contact-form {
  background-color: #f0f5f7;
  padding: 50px;
  padding-bottom: 40px;
}
.contact-form .form-group {
  margin-bottom: 25px;
}
.contact-form .form-group .form-control {
  border: unset;
}
.contact-form .form-group .list-unstyled {
  color: #f81815;
  padding-top: 7px;
}
.contact-form .text-danger {
  color: #f81815;
  font-size: 20px;
  padding-top: 10px;
}

/*
Login Area Style
======================================================*/

/*.login {
  max-width: 650px;
  margin: auto;
  padding: 50px;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
}*/

.login h3 {
  font-size: 20px;
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 15px;
  border-bottom: 1px solid #eeeeee;
}

.login h3::before {
  content: "";
  height: 2px;
  width: 70px;
  bottom: 0px;
  position: absolute;
  background-color: #0066cc;
}
.login .form-group {
  margin-bottom: 20px;
}
.login .form-check {
  margin-bottom: 30px;
}
.login .form-check .form-check-input:checked {
  background-color: #1f86ef;
}
.login .form-check .form-check-input:focus {
  box-shadow: none;
}
.login .default-btn {
  padding: 15px 40px;
  margin-bottom: 20px;
}
/*.login a {
  display: inherit;
  color: #666666;
  font-weight: 500;
}
*/
/*
Register Area Style
======================================================*/
/*.register {
max-width: 650px;
margin: auto;
padding: 50px;
box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
}
*/

.register h3 {
  font-size: 20px;
  position: relative;
  padding-bottom: 5px;
  margin-bottom: 15px;
  border-bottom: 1px solid #eeeeee;
}

.register h3::before {
  position: absolute;
  content: "";
  height: 2px;
  width: 70px;
  background-color: #0066cc;
  bottom: 0px;
}

.register .form-group {
  margin-bottom: 20px;
}

.register .default-btn {
  padding: 15px 40px;
  margin-top: 20px;
}

/*
Password Area Style
======================================================*/
/*.password {
  max-width: 650px;
  margin: auto;
  padding: 50px;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
}*/

.password h3 {
  font-size: 20px;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid #eeeeee;
}

.password h3::before {
  bottom: 0px;
  content: "";
  height: 2px;
  width: 70px;
  position: absolute;
  background-color: #0066cc;
}

.password .form-group {
  margin-bottom: 20px;
}
.password .default-btn {
  width: 100%;
}

/*
Privacy Policy Style
======================================================*/
.privacy-content {
  margin-bottom: 10px;
}
.privacy-content h2 {
  font-size: 36px;
  margin-bottom: 10px;
}
.privacy-content h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}
.privacy-content p {
  margin-bottom: 25px;
}
.privacy-content .list ul {
  margin-bottom: 20px;
  padding-left: 0;
}
.privacy-content .list ul li {
  font-weight: 600;
  color: #202124;
  position: relative;
  padding-left: 20px;
  list-style-type: none;
  padding-bottom: 15px;
}
.privacy-content .list ul li i {
  position: absolute;
  left: 0;
  color: #1f86ef;
  top: 6px;
  font-size: 14px;
}

/*
Terms & Condition Style
======================================================*/
.condition-content {
  margin-bottom: 10px;
}
.condition-content h2 {
  font-size: 36px;
  margin-bottom: 30px;
}
.condition-content h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}
.condition-content p {
  margin-bottom: 25px;
}
.condition-content .list ul {
  margin-bottom: 20px;
  padding-left: 0;
}
.condition-content .list ul li {
  font-weight: 600;
  color: #202124;
  position: relative;
  padding-left: 20px;
  list-style-type: none;
  padding-bottom: 15px;
}
.condition-content .list ul li i {
  position: absolute;
  left: 0;
  top: 6px;
  font-size: 14px;
  color: #1f86ef;
}

/*
Error Area Style
======================================================*/
.error-area {
  text-align: center;
}
.error-area .top-content {
  margin-bottom: 20px;
}
.error-area .top-content ul {
  padding-left: 0;
  margin-bottom: 0;
}
.error-area .top-content ul li {
  font-size: 200px;
  font-weight: 700;
  line-height: 1;
  display: inline-block;
  line-height: 1;
  margin-right: 30px;
  color: #1f86ef;
}
.error-area .top-content ul li:first-child {
  color: #202124;
  transform: rotate(30deg);
  top: 15px;
}
.error-area .top-content ul li:last-child {
  color: #666666;
  transform: rotate(30deg);
  position: relative;
  top: 15px;
}
.error-area h2 {
  font-size: 36px;
  margin-bottom: 20px;
}
.error-area p {
  margin-bottom: 30px;
}

/*Coming Soon Style
======================================================*/
.coming-soon-area {
  position: relative;
  z-index: 1;
  height: 100vh;
}
.coming-soon-area::before {
  position: absolute;
  content: "";
  height: 300px;
  width: 100%;
  left: 0;
  top: 0;
  background-color: #f8f8f8;
  z-index: -1;
}

.coming-soon-counter {
  max-width: 880px;
  margin: auto;
  border: 30px solid #ffffff;
  background-color: #f7f7f7;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
  padding-top: 100px;
  padding-bottom: 80px;
  border-radius: 10px;
  position: relative;
  margin-bottom: 30px;
}
.coming-soon-counter::before {
  position: absolute;
  content: "";
  height: 100%;
  width: auto;
  left: -60px !important;
  right: 0;
  bottom: -60px;
  border-radius: 10px;
  border: 1px solid #eeeeee;
  z-index: -1;
}
.coming-soon-counter .list ul {
  margin-bottom: 0;
  padding-left: 0;
}
.coming-soon-counter .list ul li {
  margin: 0 30px;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  color: #1f86ef;
}
.coming-soon-counter .list ul li span {
  font-size: 15px;
  font-weight: 500;
  color: #666666;
}
.coming-soon-counter .list ul li::before {
  position: absolute;
  content: "";
  height: 6px;
  width: 6px;
  background-color: #666666;
  border-radius: 100%;
  right: -30px;
  top: 42px;
}
.coming-soon-counter .list ul li::after {
  position: absolute;
  content: "";
  height: 6px;
  width: 6px;
  background-color: #666666;
  border-radius: 100%;
  right: -30px;
  top: 55px;
}
.coming-soon-counter .list ul li:last-child::before {
  display: none;
}
.coming-soon-counter .list ul li:last-child::after {
  display: none;
}

.coming-soon-content {
  padding-top: 50px;
  max-width: 880px;
  margin: auto;
  text-align: center;
}
.coming-soon-content .top-content {
  max-width: 620px;
  margin: auto;
}
.coming-soon-content .top-content .coming-soon-logo {
  margin-bottom: 20px;
}
.coming-soon-content .top-content .coming-soon-logo .logo-2 {
  display: none;
}
.coming-soon-content .top-content h1 {
  font-size: 36px;
  margin-bottom: 30px;
  font-weight: 600;
}
.coming-soon-content .newsletter-form {
  position: relative;
  margin-bottom: 30px;
  z-index: 4;
}
.coming-soon-content .newsletter-form .form-control {
  height: 58px;
}
.coming-soon-content .newsletter-form .default-btn {
  position: absolute;
  right: 5px;
  top: 5px;
}
.coming-soon-content .newsletter-form .default-btn:hover {
  background-color: #202124;
  color: #ffffff;
}
.coming-soon-content .newsletter-form .default-btn i {
  position: relative;
  top: 2px;
  padding-left: 7px;
}
.coming-soon-content .social-links ul {
  margin-bottom: 0;
  padding-left: 0;
}
.coming-soon-content .social-links ul li {
  display: inline-block;
  margin-right: 10px;
}
.coming-soon-content .social-links ul li:last-child {
  margin-right: 0;
}
.coming-soon-content .social-links ul li a {
  height: 45px;
  width: 45px;
  line-height: 48px;
  background-color: #ffffff;
  border-radius: 100%;
  color: #666666;
  box-shadow: 0px 6px 30px 5px rgba(33, 34, 38, 0.05);
  border: 1px solid #eeeeee;
  display: inline-block;
  text-align: center;
  font-size: 18px;
  transition: all ease 0.5s;
}
.coming-soon-content .social-links ul li a:hover {
  background-color: #1f86ef;
  color: #ffffff;
  transform: translateY(-5px);
}

/*
Footer Style
======================================================*/
.bg-color {
  background-color: #1a1a1a;
}

.logo-content img {
  width: 60%;
}

.single-footer-widget {
  margin-bottom: 10px;
}

.single-footer-widget h3 {
  font-size: 18px;
  color: #ffffff;
  position: relative;
  margin-bottom: 35px;
}

.single-footer-widget h3::before {
  position: absolute;
  content: "";
  height: 2px;
  width: 90px;
  background: #ffffff;
  opacity: 0.2;
  bottom: -15px;
  left: 0;
}
.single-footer-widget h3::after {
  position: absolute;
  content: "";
  height: 2px;
  width: 40px;
  background: #1f86ef;
  bottom: -15px;
  left: 0;
}

.single-footer-widget.logo-content {
  padding-right: 50px;
}

.single-footer-widget.logo-content .footer-logo {
  margin-bottom: 10px;
}

.single-footer-widget.logo-content p {
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: 500;
}

.single-footer-widget.logo-content .social-content ul {
  padding-left: 0;
  margin-bottom: 0;
}

.single-footer-widget.logo-content .social-content ul li {
  display: inline-block;
  margin-right: 7px;
}

.single-footer-widget.logo-content .social-content ul li:last-child {
  margin-right: 0;
}
.single-footer-widget.logo-content .social-content ul li span {
  color: #ffffff;
}
.single-footer-widget.logo-content .social-content ul li a {
  height: 30px;
  width: 30px;
  line-height: 30px;
  color: #1f86ef;
  text-align: center;
  background-color: #ffffff;
  border-radius: 100%;
  display: inline-block;
  transition: all ease 0.5s;
}
.single-footer-widget.logo-content .social-content ul li a:hover {
  background: #1f86ef;
  color: #ffffff;
}
.single-footer-widget.quick-link ul {
  padding-left: 0;
  margin-bottom: 0;
}
.single-footer-widget.quick-link ul li {
  margin-bottom: 15px;
  list-style-type: none;
  position: relative;
  padding-left: 20px;
}
.single-footer-widget.quick-link ul li::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background-color: #1f86ef;
  left: 0;
  top: 8px;
}
.single-footer-widget.quick-link ul li:last-child {
  margin-bottom: 0;
}
.single-footer-widget.quick-link ul li a {
  color: #ffffff;
  transition: all ease 0.5s;
  font-weight: 500;
}
.single-footer-widget.quick-link ul li a:hover {
  color: #1f86ef;
}
.single-footer-widget.info {
  padding-left: 70px;
}
.single-footer-widget.info ul {
  padding-left: 0;
  margin-bottom: 0;
}
.single-footer-widget.info ul li {
  list-style-type: none;
  margin-bottom: 20px;
  padding-left: 25px;
  position: relative;
}
.single-footer-widget.info ul li:last-child {
  margin-bottom: 0;
}
.single-footer-widget.info ul li i {
  position: absolute;
  left: 0;
  color: #1f86ef;
  top: 2px;
}
.single-footer-widget.info ul li h4 {
  font-size: 15px;
  margin-bottom: 6px;
  color: #ffffff;
}
.single-footer-widget.info ul li span {
  color: #ffffff;
}
.single-footer-widget.info ul li a {
  color: #ffffff;
  transition: all ease 0.5s;
}
.single-footer-widget.info ul li a:hover {
  color: #1f86ef;
}

.copy-right {
  background-color: #1a1a1a;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
}
.copy-right p {
  color: #ffffff;
}
.copy-right p span {
  color: #ffffff;
}
.copy-right p a {
  color: #ffffff;
  font-weight: 600;
  transition: all ease 0.5s;
}
.copy-right p a:hover {
  color: #1f86ef;
}

/*footer css end here*/

/*
Go To Top Style
======================================================*/
.go-top {
  position: fixed;
  cursor: pointer;
  top: 87%;
  right: -10%;
  background-color: #1f86ef;
  z-index: 4;
  width: 40px;
  text-align: center;
  height: 50px;
  line-height: 45px;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: 0.9s;
}
.go-top i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  color: #ffffff;
  transition: 0.5s;
  font-size: 20px;
}
.go-top i:last-child {
  opacity: 0;
  visibility: hidden;
  top: 60%;
}
.go-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  z-index: -1;
  background-color: #1f86ef;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.go-top:hover {
  color: #ffffff;
  background: #202124;
}
.go-top:hover::before {
  opacity: 1;
  visibility: visible;
}
.go-top:hover i {
  color: #ffffff;
}
.go-top:hover i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}
.go-top:hover i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}
.go-top:focus {
  color: #ffffff;
}
.go-top:focus::before {
  opacity: 1;
  visibility: visible;
}
.go-top:focus i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}
.go-top:focus i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}
.go-top.active {
  transform: translateY(-95%);
  opacity: 1;
  visibility: visible;
  right: 3%;
  top: 93%;
} /*# sourceMappingURL=style.css.map */

/*Amarjeet css start here*/

/*breadcrumb css start here*/

.inner-banners-info-area {
  position: relative;
}

.inner-banners-info-area:before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  background-color: #000000a6;
  width: 100%;
  height: 100%;
}

.inner-banners-title-info {
  /* z-index: 9; */
  width: 100%;
  bottom: 120px;
  position: absolute;
}

.inner-page-banner-title {
  text-align: center;
}

.inner-page-banner-title h2 {
  color: #fff;
  font-size: 30px;
  letter-spacing: 1px;
}

.inner-page-banner-title .menu-divide-arrow:before {
  content: "/";
  right: -11px;
  color: #fff;
  position: absolute;
}

.inner-page-banner-title ul li {
  color: #ff6600;
  font-size: 18px;
  margin-right: 15px;
  position: relative;
  display: inline-block;
  font-weight: 500;
}

.inner-page-banner-title ul li a {
  color: #fff;
  font-weight: 700;
}

/*breadcrumb css end here*/

/*home page css start here*/

/*owl-carousel slider css start here*/
.carousel-wrap {
  margin: 10px auto;
  /*padding: 0 5%;*/
  width: 100%;
  position: relative;
}

.companies-week-img img {
  height: 170px;
  overflow: hidden;
  object-fit: cover;
}

/* fix blank or flashing items on carousel */
.owl-carousel .item {
  position: relative;
  z-index: 100;
  -webkit-backface-visibility: hidden;
}

/* end fix */
.owl-nav > div {
  margin-top: -26px;
  position: absolute;
  top: 50%;
}

.owl-nav i {
  color: #fff;
  font-size: 25px;
}

.companies-week-slider-info .owl-nav .owl-prev {
  top: 153px;
  left: -40px;
  position: absolute;
}

.companies-week-slider-info .owl-nav .owl-next {
  top: 153px;
  right: -40px;
  position: absolute;
}

/*owl-carousel slider css end here*/

.companies-week-slider-info {
  margin: 0px 0px 0px 0px;
  padding: 80px 0px 0px 0px;
}

.companies-week-box-info {
  padding: 10px;
  margin-top: 30px;
  position: relative;
  background: #f0f5f7;
}

.companies-week-logo {
  top: 15px;
  left: 15px;
  width: 50px;
  height: 50px;
  overflow: hidden;
  background: #fff;
  position: absolute;
  z-index: 999;
}

.companies-week-img {
  position: relative;
}

.companies-week-logo img {
  width: 50px !important;
  height: 50px;
  object-fit: contain;
}

.companies-week-content h4 {
  font-size: 17px;
  margin-top: 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.companies-week-content ul {
  list-style: none;
  padding: 0px 0px 0px 0px;
  margin: 0px 0px 0px 0px;
}

.companies-week-content ul li {
  font-size: 15px;
  overflow: hidden;
  margin-bottom: 10px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.companies-week-content ul li:hover {
  color: #ff6600;
}

.companies-week-content ul li i {
  color: #0066cc;
  padding-right: 5px;
}

.companies-week-slider-info .section-title {
  max-width: 100%;
  text-align: center;
  margin: 0px 0px 0px 0px;
}

/*home page css end here*/

/*header css start here*/

.desktop-nav .navbar .navbar-brand {
  width: 10%;
}

.post-job-employers-btn .default-btn {
  font-size: 14px;
  padding: 5px 5px;
  margin-left: 10px;
}

/*header css end here*/

/*global css start here*/

.heading-bottom-line {
  font-size: 22px;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #eeeeee;
}

.heading-bottom-line:before {
  top: 45px;
  content: "";
  height: 2px;
  width: 70px;
  position: absolute;
  background-color: #0066cc;
}

.banner-search-form .search-btn .default-btn {
  font-size: 15px;
}

/*global css end here*/

/*modal register css start here*/

.sign-with-email-info button {
  width: 100%;
  margin-bottom: 20px;
  margin-top: 10px;
  padding: 10px 10px !important;
  font-size: 17px !important;
}

.option-or-content {
  position: relative;
  text-align: center;
}

.option-or-content p:before {
  content: "";
  width: 45%;
  position: absolute;
  /* transform: translateY(50%); */
  border-bottom: 1px solid #eeeeee;
  bottom: 11px;
  left: 0;
}

.option-or-content p:after {
  content: "";
  width: 45%;
  position: absolute;
  /* transform: translateY(50%); */
  border-bottom: 1px solid #eeeeee;
  bottom: 11px;
  right: 0;
}

.register-option-info-are {
  display: flex;
  margin-top: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eeeeee;
  justify-content: center;
}

.register-option-info-are button {
  /*width:30%;
display:flex;*/
  align-items: center;
  margin-bottom: 20px;
  padding: 8px 8px 8px 8px !important;
  margin-right: 30px;
}

.register-option-info-are .social-icon i {
  color: #fff;
  font-size: 16px;
  border-radius: 5px;
  padding: 6px 8px;
  background: #ff6600;
}

.register-option-info-are .social-icon-name {
  width: 100%;
  color: #fff;
  font-size: 15px;
  text-align: center;
}

.social-icon img {
  padding: 5px;
  background: #fff;
  border-radius: 5px;
}

.already-have-account-content {
  text-align: center;
  margin-top: 15px;
}

.already-have-account-content p {
  margin: 0px 0px 5px 0px;
}

.already-have-account-content a {
  font-size: 17px;
  font-weight: 600;
}

.already-have-account-content a:hover {
  color: #ff6600;
}

.register-modal-info .modal {
  top: 100px !important;
}

/*modal register page css end here*/

/*register email password page css start here*/

.oragneColor {
  color: #ff6600 !important;
}

.register-social-icon {
  margin-top: 20px;
}

.register-social-icon a {
  color: #fff;
  font-size: 17px;
  margin-left: 20px;
  background: #0066cc;
  padding: 7px 12px;
  border-radius: 5px;
  display: inline-block;
}

.register-social-icon a:hover {
  background: #ff6600;
}

.register-btn .default-btn {
  font-weight: 500;
}

.register-login-text-btn {
  text-align: center;
}

.register-or-content p {
  font-size: 17px;
  font-weight: 600;
  margin-top: 20px;
}

.register-terms-Policy-box label {
  font-size: 14px;
  margin-left: 5px;
  font-weight: 600;
  text-transform: capitalize;
}

.register-terms-Policy-box label a {
  color: #0066cc;
}

.register-terms-Policy-box label a:hover {
  color: #ff6600;
}

.recover-password a {
  color: #fff;
}

.register-btn .default-btn {
  width: 100%;
  font-size: 16px;
  padding: 10px 25px;
  margin: 15px 0px;
  border-radius: 5px;
}

.register-login-text-btn p a {
  color: #0066cc;
  font-weight: 600;
}

.register-login-text-btn p a i {
  margin-right: 5px;
}

.register-login-text-btn p a:hover {
  color: #ff6600;
}

.register-social-icon.employer-register .default-btn {
  padding: 5px 5px;
  margin-top: 0px;
}

.register-social-icon.employer-register {
  margin-top: 0px;
}

.register-social-icon.employer-register .social-icon img {
  padding: 2px;
}

/*.register-login-text-btn {
text-align: center;
margin-top: 20px;
padding-top: 20px;
border-top: 1px solid #eeee;
}*/

.register-login-text-btn p {
  font-weight: 600;
}

/*register email password page css end here*/

/*register and login and forget password page css start here*/

/*.register-area-info-area {
padding: 60px 0px;
background: #f0f5f7;
}*/

.register {
  width: 70%;
  margin: auto;
  margin-top: 15px;
}

.register .form-group .form-control {
  height: 40px;
  font-size: 14px;
}

.register-area-info-area .register-area {
  background: #fff;
  padding: 30px 20px;
}

.register-logo-heading {
  width: 17%;
  margin: auto;
  overflow: hidden;
  text-align: center;
  margin-bottom: 10px;
}

.register-area-info-area .form-group label {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 5px;
}

.register-img-info-area {
  height: 100%;
  /*display: flex;*/
  background: #f0f5f7;
  /*align-items: center; */
}

/*.register-img-info-area img {
width:100%;  
height:483px;
object-fit:cover;  
}*/

.register-terms-Policy-box {
  display: flex;
  align-items: center;
}

/*.login-area-info-area {
padding: 60px 0px; 
background: #f0f5f7; 
}*/

.login {
  width: 70%;
  margin: auto;
  margin-top: 15px;
}

.login-area {
  background: #fff;
  padding: 30px 20px 60px 20px;
}

.login-forgot-password a {
  color: #666666;
  display: block;
  font-size: 15px;
  margin-left: 5px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.login-forgot-password a i {
  color: #ff6600;
  margin-right: 3px;
}

.login-forgot-password a:hover {
  color: #ff6600;
}

.login-singup-bottom-content i {
  margin-left: 5px;
}

.login-area .form-group label {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 5px;
}

.login-img-info-area {
  height: 100%;
  /*display: flex;*/
  background: #f0f5f7;
  /*align-items: center; */
}

.login .form-group .form-control {
  height: 40px;
  font-size: 14px;
}

.recruiter-login-content-area {
  margin-top: 10px;
  padding: 10px 0px;
  text-align: center;
  background: #f0f5f7;
  border-radius: 10px;
}

.recruiter-login-content-area p {
  margin: 0px;
  font-size: 15px;
  font-weight: 500;
}

.recruiter-login-content-area a {
  color: #0066cc;
  font-size: 15px;
  font-weight: 600;
}

.recruiter-login-content-area a:hover {
  color: #ff6600;
}

.recruiter-login-content-area a i {
  margin-right: 5px;
}

/*.forgot-password-info-area {
padding: 60px 0px;
background: #f0f5f7;  
}
*/

.password-area {
  background: #fff;
  padding: 30px 20px 60px 20px;
}

.password {
  width: 70%;
  margin: auto;
  margin-top: 15px;
}

.password-area .form-group label {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 5px;
}

.password .form-group .form-control {
  height: 40px;
  font-size: 14px;
}

.password h6 {
  font-size: 16px;
  margin-top: 40px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
}

.forgot-password-btn .default-btn {
  font-size: 16px;
  padding: 10px 25px;
  margin-bottom: 20px;
  border-radius: 5px;
}

.password-container {
  position: relative;
  width: 250px;
}

.password-container input {
  width: 100%;
  padding: 10px;
  padding-right: 40px;
  box-sizing: border-box;
}

.eye-icon-postion {
  position: relative;
}

.toggle-password {
  top: 47px;
  right: 10px;
  color: #ff6600;
  cursor: pointer;
  position: absolute;
  transform: translateY(-50%);
}

/*register and login and forget password page css end here*/

/*login email password page css start here*/

.company-logo-info-area {
  width: 17%;
  margin: auto;
  margin-bottom: 10px;
}

.login-recover-password-btn .default-btn {
  width: 100%;
  font-size: 16px;
  padding: 10px 25px;
  margin-bottom: 0px;
  border-radius: 5px;
}

.login-recover-password-btn a {
  color: #fff;
}

.login-singup-bottom-content p {
  font-weight: 600;
  margin-top: 20px;
  text-align: center;
}

.login-singup-bottom-content a {
  color: #0066cc;
  font-size: 15px;
  font-weight: 600;
}

.login-singup-bottom-content a:hover {
  color: #ff6600;
}

.employer-login-social-btn .default-btn {
  padding: 5px 5px;
  margin-top: 0px;
}

.employer-login-social-btn .social-icon img {
  padding: 2px;
}

.employer-login-singup-password-btn {
  display: flex;
  margin-top: 20px;
  padding-top: 25px;
  justify-content: space-between;
  border-top: 1px solid #eeeeee;
}

.employer-login-singup-password-link p {
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
}

.employer-login-singup-password-link a {
  color: #0066cc;
  font-size: 16px;
  font-weight: 600;
}

.employer-login-singup-password-link a:hover {
  color: #ff6600;
}

/*login email password page css end here*/

/*Please Confirm Your Profile Basic Info css start here*/

.profile-basic-info-heading {
  padding: 60px 0px 0px 0px;
  margin: 0px 0px 0px 0px;
}

.profile-basic-info-form {
  padding: 0px 0px 60px 0px;
  margin: 0px 0px 0px 0px;
}

.personal-info-area {
  margin-bottom: 20px;
}

.profile-basic-info-form .form-group {
  margin-bottom: 25px;
}

.profile-basic-info-form .form-group label {
  font-size: 16px;
  font-weight: 500;
  color: #202124;
  margin-bottom: 10px;
}

.profile-basic-info-form .form-control {
  border-radius: unset;
  background-color: #f0f5f7;
  border: 1px solid rgba(32, 33, 34, 0.08);
}

/* Custom file upload styling */
.custom-file-upload {
  cursor: pointer;
  background: #f0f5f7;
  transition: all 0.3s ease;
  padding: 30px;
  border: 2px dashed #0066cc;
  border-radius: 10px;
  text-align: center;
  font-size: 1.2rem;
}

/*.custom-file-upload:hover {
background: #e9ecef;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}*/

.file-text {
  font-weight: 500;
  color: #495057;
  font-size: 1.1rem;
}

.custom-file-upload i {
  transition: transform 0.3s ease;
  font-size: 40px;
  color: #0066cc;
  margin-bottom: 10px;
}

.custom-file-upload:hover i {
  transform: scale(1.1);
  color: #ff6600;
}

.file-selected {
  border-color: #28a745;
  background: #e7f1ff;
}

.file-selected i {
  color: #28a745;
}

/* Hide the default input */
#file-upload {
  display: none;
}

/* Bigger button styling */
/* button.btn {
  padding: 12px 30px;
  font-size: 1.2rem;
  border-radius: 8px;
} */

.personal-info-btn {
  margin-top: 50px;
  text-align: center;
}

.personal-info-btn .default-btn {
  font-size: 18px;
  padding: 10px 60px;
}

.job-category-tags ul {
  padding: 0px 0px 0px 0px;
}

.job-category-tags ul li {
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
  list-style: none;
  padding: 7px 10px;
  background: #0066cc;
  display: inline-block;
  margin: 10px 13px 10px 0px;
}

.job-category-tags ul li.active {
  background: #ff6600;
}

.job-category-tags ul li:before {
  position: absolute;
  content: "";
  background-color: #ff6600;
  height: 100%;
  width: 0%;
  border-radius: 0 5px 5px 0;
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
  bottom: 0;
  right: 0;
  transition: all ease 0.5s;
  z-index: -1;
}

.job-category-tags ul li:hover:before {
  width: 60%;
  height: 100%;
}

.job-category-tags ul li:after {
  position: absolute;
  content: "";
  background-color: #0066cc;
  height: 100%;
  width: 0%;
  border-radius: 5px 0 0 5px;
  -webkit-clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
  top: 0;
  left: 0;
  transition: all ease 0.5s;
  z-index: -1;
}

.job-category-tags ul li:hover:after {
  width: 60%;
  height: 100%;
}

.location-select-option ul {
  padding: 0px 0px 0px 0px;
}

.location-select-option ul li {
  color: #fff;
  width: 48%;
  cursor: pointer;
  border-radius: 5px;
  list-style: none;
  padding: 10px 10px;
  background: #0066cc;
  display: inline-block;
  text-align: center;
  margin-top: 10px;
  margin-right: 20px;
}

.location-select-option ul li.active {
  background: #ff6600;
}

.personal-info-cv-linkedin-upload-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0px 20px 0px;
}

.personal-info-upload-cv-btn {
  margin-right: 20px;
}

.personal-info-upload-cv-btn a i {
  font-size: 15px;
  margin-right: 10px;
}

.personal-info-upload-content-linkedin a i {
  font-size: 17px;
  margin-right: 8px;
}

.personal-info-area p {
  font-size: 16px;
}

.personal-info-heading-toggle {
  width: 24%;
  position: relative;
}

.toggle-atv-dtv-btn {
  color: #fff;
  width: 80px;
  display: block;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 5px;
  text-align: center;
  letter-spacing: 0.5px;
}

.toggle-atv-dtv-btn.active {
  background: #008000;
}

.toggle-atv-dtv-btn.deactive {
  background: #ff0000;
}

.manual-input-acitve-deactive {
  right: 0px;
  bottom: 15px;
  position: absolute;
}

/*Please Confirm Your Profile Basic Info css end here*/

/*Employer home page css start here*/

.employer-slider-info-area .carousel-inner:before {
  top: 0px;
  right: 0px;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: #0000009e;
}

.employer-slider-info-area .carousel-caption {
  bottom: 27%;
  z-index: 9;
}

.employer-slider-info-area .carousel-caption h2 {
  color: #fff;
  font-size: 40px;
}

.employer-slider-info-area .carousel-caption p {
  color: #fff;
  font-size: 20px;
}

.employer-home-first-section {
  margin: 0px 0px 0px 0px;
  padding: 80px 0px 80px 0px;
}

.employer-home-first-section .section-title {
  text-align: left;
}

.employer-home-second-section {
  margin: 0px 0px 0px 0px;
  padding: 80px 0px 80px 0px;
  background: #f0f5f7;
}

.employer-home-second-section .section-title {
  text-align: left;
}

.employer-home-third-section {
  margin: 0px 0px 0px 0px;
  padding: 80px 0px 80px 0px;
}

.employer-home-third-section .single-category-card .icon {
  color: #ff6600;
}

.employer-home-third-section .single-category-card h3 {
  margin-bottom: 10px;
}

.employer-home-third-section .single-category-card:hover p {
  color: #fff;
}

.employer-home-fourth-section {
  background: #f0f5f7;
  margin: 0px 0px 0px 0px;
  padding: 80px 0px 80px 0px;
}

.employer-home-fourth-section .section-title {
  text-align: left;
  margin: 0px 0px 20px 0px;
}

.employer-home-fourth-box {
  display: flex;
  background: #fff;
  padding: 20px 20px;
  border-radius: 5px;
  margin-bottom: 30px;
}

.employer-home-fourth-icon {
  height: 60px;
  width: 85px;
  background: #0066cc;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  margin-right: 10px;
  color: #fff;
  font-size: 30px;
}

.employer-home-fourth-box-content h4 {
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
}

/*Employer home page css end here*/

/*Employer profile basic info page css start here*/

.employer-profile-basic-info-area {
  margin: 0px 0px 0px 0px;
  padding: 80px 0px 80px 0px;
}

.employer-personal-info-area {
  /* width: 70%; */
  margin: auto;
}

.employer-profile-basic-info-form .form-group label {
  font-size: 16px;
  font-weight: 500;
  color: #202124;
  margin-bottom: 10px;
}

.employer-profile-basic-info-form .form-group {
  margin-bottom: 25px;
}

.employer-personal-info-btn {
  margin-top: 50px;
  text-align: center;
}

.employer-personal-info-btn .default-btn {
  font-size: 18px;
  padding: 10px 60px;
}

/*Employer profile basic info page css end here*/

/*candidates profile details css start here*/

.candidate-profile-details-info h3 {
  font-size: 17px;
}

.candidate-banner-info .candidates-details-left-content {
  padding-left: 180px;
}

.candidate-banner-info .candidates-details-left-content .candidates-img img {
  border-radius: 0px;
}

.candidate-profile-details-info h3 strong {
  width: 16%;
  display: inline-block;
}

.candidate-profile-dcv-btn {
  text-align: right;
  margin-bottom: 20px;
}

.candidate-banner-info .candidates-share-content h4 {
  font-size: 21px;
}

.candidate-banner-info .candidates-share-content ul li a {
  color: #fff;
  line-height: 40px;
  background: #1f86ef;
}

.candidate-banner-info .candidates-share-content ul li a:hover {
  background: #ff6600;
}

.candidate-banner-info .candidates-share-content ul li a i {
  font-size: 22px;
}

.candidate-profile-summary h3 {
  font-size: 20px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eeee;
}

.candidate-profile-summary h5 {
  font-size: 16px;
  margin: 0px 0px 0px 0px;
}

.candidate-profile-divider-line {
  border-top: 1px solid #eeee;
  margin: 20px 0px 30px 0px;
}

.candidate-profile-skill-info ul {
  padding: 0px;
}

.candidate-profile-skill-info ul li {
  color: #fff;
  cursor: pointer;
  list-style: none;
  margin-right: 10px;
  padding: 5px 5px;
  border-radius: 5px;
  background: #0066cc;
  display: inline-block;
  margin-bottom: 15px;
}

.candidate-profile-review-heading h3 {
  font-size: 20px;
  margin-bottom: 30px;
  background: #f0f5f7;
  padding: 15px 0px 15px 20px;
}

.comment-detail-main-area {
  display: flex;
  background: #f0f5f7;
  margin: 0px 0px 30px 0px;
  padding: 20px 20px 20px 20px;
}

.comment-detail-main-area .user-img-main-area img {
  width: 150px;
  height: 150px;
  border-radius: 5px;
  margin: 0px 20px 0px 0px;
  object-fit: cover;
}

.user-content-main-area {
  width: 70%;
}

.user-content-main-area h5 {
  margin: 0px;
  font-weight: 700;
  line-height: 25px;
}

.user-content-main-area h6 {
  color: #ff6600;
  font-size: 14px;
  font-weight: 700;
  margin: 5px 0px;
}

.user-content-main-area p {
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  font-size: 15px;
}

.user-img-main-area img {
  width: 400px;
  height: 150px;
  object-fit: cover;
  border-radius: 5px;
}

.user-img-main-area {
  margin-right: 20px;
}

.candidate-profile-submit-btn {
  margin-top: 10px;
  text-align: center;
}

.candidate-profile-submit-btn .default-btn {
  font-size: 17px;
  padding: 8px 10px;
  border-radius: 5px;
}

.candidate-profile-summary.single-sidebar-widget.job-overview h3 {
  border-bottom: 1px solid #0066cc2e;
}

.candidate-profile-summary.single-sidebar-widget.job-overview ul li {
  position: inherit;
  text-align: inherit;
  padding-bottom: 10px;
  border-bottom: 1px solid #0066cc2e;
}

.candidate-profile-summary.single-sidebar-widget.job-overview ul li span {
  width: 42%;
  position: inherit;
  display: inline-block;
}

.candidate-profile-summary.single-sidebar-widget.job-overview ul li:last-child {
  border: none;
}

.candidate-profile-summary.single-sidebar-widget.download .default-btn {
  margin-bottom: 0px;
}

.contact-candidate-form .form-group {
  margin-bottom: 20px;
}

.candidate-profile-summary.contact-candidate-info {
  background: #f0f5f7;
  padding: 20px 20px 30px 20px;
}

.candidate-profile-summary.contact-candidate-info h3 {
  border-bottom: 1px solid #0066cc2e;
}

/*candidates profile details css end here*/

/*candidate list css start here*/

.candidate-list-filter .single-sidebar-widget {
  background: #fff;
  padding: 10px 15px 15px 15px;
}

.candidate-list-filter h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.candidate-list-filter
  .single-sidebar-widget.keyword
  .form-group
  .form-control {
  font-size: 15px;
  border: 1px solid #e2e2e2;
}

.candidate-list-select-filter ul {
  list-style: none;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
}

.candidate-list-select-filter ul li {
  font-size: 16px;
  margin-top: 10px;
}

.candidate-list-select-filter ul li input {
  margin-right: 5px;
}

.candidate-list-info.single-freelancer-card {
  padding: 10px;
  background: #fff;
}

.candidate-list-info .freelancer-contentli span {
  color: #0066cc;
  font-weight: 600;
}

.candidate-list-info.single-freelancer-card .freelancer-content {
  padding-left: 0px;
  position: relative;
}

.candidate-list-info.single-freelancer-card .freelancer-content .info ul li {
  font-size: 14px;
  padding-left: 0px;
  margin-right: 5px;
  position: inherit;
  margin-bottom: 5px;
  display: inline-block;
}

.candidate-list-info.single-freelancer-card .freelancer-content .info ul li i {
  position: inherit;
  margin-right: 3px;
}

.candidate-list-info.single-freelancer-card img {
  /* height: 150px; */
  object-fit: cover;
}

.candidate-list-info.single-freelancer-card .freelancer-content span {
  margin-bottom: 10px;
  padding: 0px 5px;
  border-radius: 5px;
  font-size: 15px;
}

.candidate-list-info.single-freelancer-card .freelancer-content .info span {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}

.candidate-list-info.single-freelancer-card
  .freelancer-content
  .info
  .candidate-active {
  background: #ff6600;
}

.candidate-list-info.single-freelancer-card
  .freelancer-content
  .info
  .candidate-inactive {
  background: #0066cc;
}

.candidate-list-info .candidate-list-bookmark {
  top: 0;
  right: 0px;
  color: #fff;
  font-size: 15px;
  line-height: 0px;
  cursor: pointer;
  padding: 3px 3px;
  border-radius: 5px;
  position: absolute;
}

.search-job-top-content .shorting-content .form-control {
  background-color: #fff;
}

.candidate-list-filter .single-sidebar-widget.location-style2 .form-control {
  border: 1px solid #e2e2e2;
}

/*candidate list css end here*/

/*Custom Resume Cover Letter page css start here*/

.custom-resume-cover-letter-job-seeker-info {
  width: 85%;
  margin: auto;
  margin-top: 70px;
  background: #f0f4fc;
  margin-bottom: 70px;
  padding: 20px 20px 20px 20px;
}

.custom-resume-cover-letter-detail-info {
  margin-top: 30px;
  background: #fff;
  padding: 15px 20px 0px 20px;
}

.custom-resume-cover-job-seeker-info {
  display: flex;
  margin-top: 15px;
  position: relative;
  align-items: center;
  margin-bottom: 10px;
  justify-content: space-between;
}

.custom-resume-cover-job-seeker {
  width: 80%;
}

.custom-resume-cover-job-seeker h4 {
  font-size: 17px;
  margin: 0px 0px 0px 0px;
}

.custom-resume-cover-user-edit i {
  top: 5px;
  right: 0px;
  color: #fff;
  cursor: pointer;
  padding: 10px 10px;
  border-radius: 5px;
  background: #ff6600;
  position: absolute;
}

.resume-cover-letter-divder-line-info {
  border-top: 1px solid #eeee;
}

.custom-resume-cover-letter-heading h4 {
  font-size: 20px;
  padding-bottom: 5px;
}

.custom-resume-cover-letter-candidate-detail {
  display: flex;
  background: #fff;
  margin-top: 30px;
  padding: 20px 20px 20px 20px;
  justify-content: space-between;
}

.custom-resume-cover-letter-candidates-img-detail-info {
  display: flex;
}

.custom-resume-cover-letter-candidates-img-info {
  width: 28%;
}

.custom-resume-cover-letter-img-edit-icon {
  position: relative;
}

.custom-resume-cover-letter-img-edit-icon i {
  position: absolute;
  bottom: 5px;
  right: 5px;
  background: #0066cc;
  padding: 7px;
  border-radius: 50px;
  color: #fff;
  font-size: 16px;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.custom-resume-cover-letter-img-edit-icon i:hover {
  background: #ff6600;
}

.custom-resume-cover-letter-candidates-details-info h3 {
  font-size: 15px;
  padding-left: 20px;
  padding-bottom: 5px;
  border-bottom: 1px solid #eeeeee;
}

.custom-resume-cover-letter-website-promotion ul {
  margin: 0px;
  padding: 0px;
}

.custom-resume-cover-letter-website-promotion ul li {
  margin-top: 10px;
  cursor: pointer;
  list-style: none;
  font-size: 13px;
  font-weight: 600;
}

.custom-resume-cover-letter-website-promotion ul li i {
  margin-right: 5px;
  color: #0066cc;
}

.custom-resume-cover-letter-website-promotion ul li:hover {
  color: #ff6600;
}

.custom-resume-cover-letter-website-promotion ul li:hover i {
  color: #ff6600;
}

.custom-resume-cover-letter-input-field-info-area {
  background: #fff;
  margin-top: 30px;
  /*display: none;*/
  padding: 0px 0px 30px 0px;
}

.custom-resume-cover-letter-input-field-heading {
  border-bottom: 1px solid #eee;
}

.custom-resume-cover-letter-input-field-heading h4 {
  font-size: 20px;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 10px 0px;
}

.custom-resume-cover-letter-input-field-info-area .form-group {
  margin-top: 20px;
}

.custom-resume-cover-letter-input-field-info-area .form-group label {
  color: #202124;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.custom-resume-cover-letter-input-field-info-area .form-control {
  height: 35px;
  font-size: 15px;
  border-radius: 0px;
  background-color: #f0f5f7;
}

.custom-resume-cover-letter-save-cancel-btn {
  margin-top: 30px;
  text-align: center;
}

.custom-resume-cover-letter-save-cancel-btn .default-btn {
  margin-left: 20px;
  padding: 7px 30px;
}

.custom-resume-cover-letter-skill-btn {
  margin-top: 20px;
  margin-bottom: 20px;
}

.custom-resume-cover-letter-skill-btn .default-btn {
  margin-left: 20px;
  border-radius: 5px !important;
  padding: 7px 20px !important;
}

.custom-resume-cover-letter-upload-cv {
  margin-bottom: 30px;
}

.custom-resume-cover-letter-upload-cv .upload-download-dlt-cv {
  margin-top: 20px;
}

.custom-resume-cover-letter-add-skill .form-control {
  height: 35px;
  border-radius: 0px;
  background-color: #f0f5f7;
}

.custom-resume-cover-letter-add-skill {
  margin-top: 20px;
}

.custom-resume-cover-letter-add-skill .skill-btn-info .default-btn {
  padding: 6px 20px !important;
}

.custom-resume-cover-letter-add-skill .enter-skill-tag-info {
  margin-top: 20px;
}

/*Custom Resume Cover Letter page css end here*/

/*employer Candidates List filter css start here*/

.employer-candidate-info-area {
  margin-bottom: 50px;
}

.employer-candidate-search-box {
  display: flex;
  /* margin: 40px 0px; */
}

.employer-candidate-input-icon {
  width: 100%;
  display: flex;
  padding: 0px 20px;
  align-items: center;
  background: #f0f5f7;
}

.employer-candidate-input-area {
  width: 100%;
}

.employer-candidate-input-area .form-control {
  border: none;
  height: 50px;
  font-size: 15px;
  background: transparent;
}

.employer-candidate-btn-area .default-btn {
  font-size: 16px;
  padding: 14px 40px;
}

.employer-candidate-filter-box .single-sidebar-widget {
  padding: 10px;
}

.employer-candidate-filter-box .single-sidebar-widget h3 {
  font-size: 16px;
  margin-bottom: 10px;
  text-align: center;
}

.employer-candidate-filter-box .single-sidebar-widget .form-control {
  height: 45px;
  font-size: 14px;
  padding-left: 5px;
}
/* input.form-control .Date_Input {
    min-width: 300px;
} */
.react-datepicker {
  display: flex !important;
}
.react-datepicker__month-container {
  width: 50% !important;
}
.date_flex_area {
  display: flex;
  justify-content: space-between;
}
.employer-candidate-number-counting {
  display: flex;
  padding: 0px 10px;
  border-radius: 5px;
  background: #f0f5f7;
  align-items: center;
  margin-bottom: 20px;
  justify-content: space-between;
}

.employer-candidate-number h4 {
  margin: 0px;
  font-size: 20px;
}

.employer-candidate-profile-count ul {
  display: flex;
  margin: 0px;
  padding: 20px 10px;
  background: #f0f5f7;
  align-items: center;
  justify-content: space-between;
}

.employer-candidate-profile-count ul li {
  list-style: none;
  margin-left: 10px;
  padding-right: 10px;
  border-right: 1px solid #cdcdcd;
}

.employer-candidate-profile-count ul li:last-child {
  border: none;
}

.employer-candidate-card-info {
  height: 100vh;
  overflow-x: hidden;
}

.employer-candidate-card-info:-webkit-scrollbar {
  width: 0 !important;
  display: none;
}

.employer-candidate-card-info {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.employer-candidate-card-info .candidate-list-info.single-freelancer-card {
  border-radius: 0px;
  border: 1px solid #ccc;
  box-shadow: 0px 0px 0px 0px #ccc;
}

.employer-candidate-detail-new-info {
  display: flex;
  padding: 15px 15px 10px 15px;
  box-shadow: 0px 0px 5px 0px #ccc;
}

.employer-candidate-img-content-info {
  width: 100%;
  display: flex;
}
.new-reviewed-interviewed-rejected-hired {
  margin-top: 20px;
}
.employer-candidate-img-info {
  width: 25%;
  overflow: hidden;
  margin-right: 15px;
}

.employer-candidate-img-info img {
  border-radius: 10px;
}

.employers-condidate-content {
  width: 50%;
}

.employers-condidate-content h3 {
  font-size: 13px;
  padding-top: 0px;
  padding-bottom: 0px;
}

.employers-condidate-content h3 strong {
  width: 25%;
  display: inline-block;
}

.employer-candidate-dcv-btn {
  text-align: right;
  margin-bottom: 20px;
}

.employer-candidate-dcv-btn .default-btn {
  padding: 5px 5px;
}

.employer-candidate-icon-info ul {
  margin: 0px;
  padding: 0px;
  display: flex;
  list-style: none;
  align-items: center;
}

.employer-candidate-icon-info ul li a {
  height: 25px;
  width: 25px;
  color: #fff;
  font-size: 14px;
  margin-left: 7px;
  line-height: 27px;
  text-align: center;
  border-radius: 50px;
  background: #0066cc;
  display: inline-block;
}

.employer-candidate-icon-info ul li a:hover {
  background: #ff6600;
}

.employer-candidate-card-filter-info .form-control {
  height: 44px;
}

.employer-candidate-card-filter-info {
  margin-bottom: 20px;
}

.employer-candidate-alert-profiles {
  text-align: right;
  margin-bottom: 25px;
}

.employer-candidate-detail-info-area {
  height: 500px;
  overflow: auto;
  margin-top: 35px;
  padding: 15px 15px;
  box-shadow: 0px 0px 5px 0px #ccc;
}

.employer-candidate-cv-heading h3 {
  font-size: 20px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eeee;
}

.employer-candidate-cv-details h5 {
  font-size: 17px;
  margin: 0px 0px 0px 0px;
}

.employer-candidate-profile-skill-info ul {
  padding: 0px;
}

.employer-candidate-profile-skill-info ul li {
  color: #fff;
  cursor: pointer;
  list-style: none;
  margin-top: 10px;
  padding: 5px 10px;
  margin-right: 15px;
  border-radius: 5px;
  background: #0066cc;
  margin-bottom: 10px;
  display: inline-block;
}

.employer-candidate-pagination-info .pagination {
  margin-top: 30px;
  box-shadow: 0px 0px 5px 0px #ccc;
}

.employer-candidate-pagination-info .page-item .page-link {
  color: #0066cc;
  border-radius: 0px !important;
}

.employer-candidate-pagination-info .page-item .page-link.active {
  color: #fff;
  background: #ff6600;
  border: 1px solid #ff6600;
}

/*employer Candidates List end here*/

/*select language css start here*/

.header-language-toggleg {
  margin-left: 10px;
}

.header-language-toggleg .form-control {
  width: 95px;
  height: 30px;
  padding: 0px 10px 0px 10px;
}

/*select language css end  here*/

/*Company Details page css start here*/

.company-detail-info-area {
  margin: 60px 0px 60px 0px;
  padding: 0px 0px 0px 0px;
}

.company-img-short-detail {
  /* padding: 20px 20px; */
  /* background: #f0f5f7; */
}

.company-img-info {
  background: #fff;
  padding: 15px 15px;
}

.company-img-info img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.company-detail-tab-description-info {
  background-color: #f0f5f7;
  padding: 20px 20px;
}

.company-short-detail-info {
  display: flex;
  background: #fff;
  padding: 20px 20px;
  align-items: center;
}

.company-short-detail-img {
  width: 100px;
  /* height: 100px; */
  background: #eee;
  padding: 10px 10px;
  margin-right: 20px;
}

.company-short-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.company-about-short-detail h4 {
  font-size: 20px;
}

.subscribe-best-employer-btn {
  display: flex;
  margin-top: 10px;
  align-items: center;
}

.subscribe-btn.default-btn {
  font-size: 14px;
  padding: 5px 10px;
  margin-right: 30px;
}

.best-employer-btn {
  color: #fff;
  font-size: 12px;
  padding: 1px 10px;
  position: relative;
  background: #0066cc;
  border-radius: 0px 5px 5px 0px;
}

.best-employer-btn:before {
  content: "";
  top: 0px;
  left: -10px;
  width: 50vmin;
  height: 50vmin;
  background: #0066cc;
  position: absolute;
  -webkit-clip-path: path(
    "M 1.00161 0H9.99919V20H1.00161C0.100206 20 -0.341058 18.9011 0.310003 18.2777L8.95484 10L0.310003 1.72228C-0.341058 1.09886 0.100205 0 1.00161 0Z"
  );
  clip-path: path(
    "M 1.00161 0H9.99919V20H1.00161C0.100206 20 -0.341058 18.9011 0.310003 18.2777L8.95484 10L0.310003 1.72228C-0.341058 1.09886 0.100205 0 1.00161 0Z"
  );
}

.company-about-short-detail ul {
  display: flex;
  list-style: none;
  margin: 10px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
}

.company-about-short-detail ul li {
  margin: 0px 0px 0px 0px;
  padding: 0px 20px 0px 0px;
}

.company-about-short-detail ul li i {
  color: #0066cc;
  margin-bottom: 10px;
  padding-right: 5px;
}

.company-detail-tab-info {
  background: #fff;
  padding: 20px 15px;
}

.company-detail-tab-info .nav-tabs {
  border: none;
  justify-content: space-between;
}

.company-detail-tab-info .nav-tabs .nav-link {
  border: 0px;
  color: #fff;
  font-size: 16px;
  border-radius: 5px;
  background: #0066cc;
  padding: 10px 25px;
}

.company-detail-tab-info .nav-tabs .nav-link.active {
  color: #fff;
  background: #ff6600;
}

.company-detail-tab-description {
  background: #fff;
  margin-top: 30px;
  padding: 20px 15px 15px 15px;
}

.company-detail-job-box {
  margin-bottom: 30px;
  background: #f0f5f7;
  border: 2px solid #eee;
  padding: 10px 10px 20px 10px;
}

.company-detail-card {
  padding-bottom: 15px;
  border-bottom: 1px solid #eeee;
}

.company-detail-card h4 {
  font-size: 20px;
}

.company-detail-card ul {
  display: flex;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
}

.company-detail-card ul li {
  color: #666666;
  list-style: none;
  font-size: 14px;
  margin: 5px 0px 0px 0px;
  padding: 0px 20px 0px 0px;
}

.company-detail-card ul li i {
  font-size: 13px;
  color: #0066cc;
  margin-right: 5px;
}

.company-detail-apply-link-save-btn {
  display: flex;
  margin-top: 15px;
  align-items: center;
  justify-content: space-between;
}

.company-detail-link-save-icon ul {
  display: flex;
  list-style: none;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
}

.company-detail-link-save-icon ul li {
  cursor: pointer;
  padding: 10px 12px;
  background: #0066cc;
  border-radius: 5px;
  margin-left: 20px;
  border-right: 1px solid #eeee;
}

.company-detail-link-save-icon ul li i {
  color: #fff;
  font-size: 20px;
}

.company-detail-link-save-icon ul li:hover {
  background: #ff6600;
}

.company-detail-show-upload {
  display: flex;
  padding: 15px 20px;
  align-items: center;
  border: 2px solid #eeee;
  justify-content: space-between;
}

.company-detail-doc-tyep h4 {
  font-size: 17px;
  padding: 0px 0px 0px 0px;
  margin: 0px 0px 0px 0px;
}

.company-detail-doc-tyep h4 i {
  color: #0066cc;
  margin-right: 10px;
}

.company-detail-download-edit {
  position: relative;
}

.company-detail-download-edit .fa-ellipsis-vertical {
  font-size: 25px;
  color: #0066cc;
}

.company-detail-download-edit ul {
  top: 25px;
  right: 0px;
  z-index: 9;
  width: 140px;
  background: #fff;
  padding: 0px 20px;
  position: absolute;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.company-detail-download-edit ul li {
  list-style: none;
  margin-top: 15px;
  cursor: pointer;
  margin-bottom: 15px;
}

.company-detail-download-edit ul li i {
  padding-right: 5px;
}

.company-detail-attechment-info .control-label-file-up .optional-inputfile {
  opacity: 0;
  z-index: -1;
  overflow: hidden;
  position: absolute;
}

.company-detail-attechment-info .control-label-file-up {
  width: 26%;
  margin: auto;
  cursor: pointer;
  font-size: 16px;
  color: #0066cc;
  padding: 5px 10px;
  font-weight: 600;
  border-radius: 5px;
}

.company-detail-attechment-info .control-label-file-up:hover {
  color: #fff;
  background: #ff6600;
}

.company-detail.modal-footer {
  display: block;
  text-align: center;
}

.company-profile-detail-info {
  display: flex;
  justify-content: space-between;
}

.company-profile-detail-box {
  width: 23%;
  padding: 10px 15px;
  margin-top: 10px;
  margin-bottom: 15px;
  background: #eeeeee82;
}

.company-profile-detail-box h4 {
  padding: 0px;
  font-size: 17px;
}

.company-profile-detail-box h4 i {
  color: #0066cc;
  padding-right: 5px;
}

.company-profile-description {
  margin-top: 10px;
}

.company-office-photos-box {
  margin-bottom: 20px;
  background: #f0f5f7;
  padding: 5px;
}

.company-office-photos-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.company-office-video-box {
  margin-bottom: 15px;
}

.company-detail-official-website {
  padding: 15px 20px;
  background: #eeeeee82;
}

.company-detail-official-website h4 {
  padding: 0px;
  font-size: 17px;
}

.company-detail-official-website h4 i {
  color: #0066cc;
  padding-right: 5px;
}

.company-detail-official-website a {
  font-size: 16px;
  font-weight: 400;
}

.company-detail-social-link {
  display: flex;
  margin-top: 20px;
  justify-content: space-between;
}

.company-detail-social-box {
  width: 23%;
  padding: 10px 15px;
  margin-top: 10px;
  margin-bottom: 15px;
  background: #eeeeee82;
}

.company-detail-social-box h4 {
  padding: 0px;
  font-size: 17px;
}

.company-detail-social-box h4 i {
  color: #0066cc;
  padding-right: 5px;
}

.company-detail-social-box a {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/*Company Details page css end here*/

/* job list and job details page css start here*/

.set-alart-and-notification {
  top: 15px;
  right: 20px;
  position: absolute;
}

.job-alert-tag-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.filter-tag-info-area {
  margin-top: 15px;
}

.job-alert-tag-btn span {
  color: #0066cc;
  cursor: pointer;
  padding: 1px 5px;
  font-size: 12px;
  font-weight: 500;
  margin-right: 10px;
  border-radius: 5px;
  margin-bottom: 10px;
  display: inline-block;
  border: 1px solid #0066cc;
}

.job-alert-tag-btn span i {
  margin-left: 10px;
}

.job-alert-tag-btn span:hover {
  color: #ff6600;
  border: 1px solid #ff6600;
}

.job-alert-tag-btn .default-btn {
  padding: 5px 5px;
  font-size: 14px;
}

.job-alert-tag-btn .default-btn i {
  margin-right: 3px;
}

.job-alert-condittion-list {
  margin-top: 30px;
}

.job-alert-condittion-select {
  margin-top: 10px;
}

.job-alert-condittion-select span {
  display: block;
  font-size: 16px;
  margin-bottom: 10px;
}

.job-alert-condittion-select label {
  padding-left: 10px;
}

.job-alert-create-cancel-btn {
  text-align: center;
}

.job-alert-create-cancel-btn .default-btn i {
  margin-right: 10px;
}

.job-alert-create-cancel-btn a {
  margin-right: 20px;
}

.job-alert-condittion-list {
  display: none;
}

.job-alert-condittion-list.hidden {
  display: block;
}

.mannage-notification-job-application .available-job-type-details p {
  width: 10%;
  color: #fff;
  font-size: 12px;
  margin-top: 10px;
  padding: 0px 5px;
  font-weight: 500;
  text-align: center;
  border-radius: 5px;
  background: #0066cc;
}

.job-notification-info {
  width: 77%;
}

.job-card-list-info-area .job-search-info-area {
  margin-top: 30px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 0px 4px;
}

.job-card-list-info-area .job-filter-main-info {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 0px 4px;
}

.job-card-list-info-area .available-job-posts-heading {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 0px 4px;
}

.job-card-list-info-area .available-job-posts-box {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 0px 4px;
}

.job-details-main-info-area {
  margin: 40px 0px 50px 0px;
}

.job-details-main-info-area .job-details-top-info-area {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 0px 4px;
}

.job-details-main-info-area .job-details-tag-info-area {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 0px 4px;
}

.job-details-main-info-area .job-details-role-company-discription {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 0px 4px;
}

.job-details-main-info-area .job-details-job-description {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 0px 4px;
}

.job-details-main-info-area .job-details-job-qualifications {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 0px 4px;
}

.job-details-main-info-area .job-details-related-tags {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 0px 4px;
}

.job-details-main-info-area .summary-offer-info-area {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 0px 4px;
}

/*job list and job details page css end here*/

/*companies list and companies details page css start here*/

.companies-list-filter-info-area {
  padding: 0px 0px 0px 0px;
  margin: 60px 0px 70px 0px;
}

.companies-list-filter-info-area .available-company-heading {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 0px 4px;
}

.companies-list-filter-info-area .job-filter-main-info {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 0px 4px;
}

.companies-list-filter-info-area .available-company-box-info {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 0px 4px;
}

/*companies list and companies details page css end here*/

/*Amarjeet css end here*/
/* css by neha  start here */
/* Varify Email */
.verify-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.verify-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  width: 400px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #d6e8f3;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}

.mail-icon {
  font-size: 28px;
  color: #0066cc;
  text-align: center;
  align-items: center;
}

.email {
  font-weight: bold;
  color: #333;
}

.verified-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.verified-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  text-align: center;
  width: 400px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
  background: #e6ffee;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.icon-wrapper2 {
  background: #ffe6e6;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.check-icon {
  font-size: 32px;
  color: #25ebb0;
}
.cross-icon {
  font-size: 20px;
  color: rgb(247, 44, 44);
}

.username {
  font-weight: bold;
  color: #111827;
}

.message {
  margin: 15px 0 25px;
  font-size: 14px;
  color: #444;
}
/* css by neha end here */

.multi-select-container {
  position: relative;
  width: 100%;
}

.selected-items {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 5px;
  border: 1px solid #ccc;
  min-height: 40px;
  align-items: center;
  cursor: text;
}

.selected-items input {
  border: none;
  flex: 1;
  outline: none;
  min-width: 100px;
}

.tag {
  display: flex;
  color: #fff;
  font-size: 14px;
  margin-top: 5px;
  padding: 0px 5px;
  border-radius: 5px;
  align-items: center;
  border: 1px solid #0066cc;
  justify-content: space-between;
}

.remove-tag {
  padding: 0px;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  margin-left: 10px;
  font-weight: bold;
  background: transparent;
}

.options-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border: 1px solid #ccc;
  max-height: 200px;
  overflow-y: auto;
  background: white;
  z-index: 10;
  list-style: none;
  margin: 0;
  padding: 0;
}

.options-list li {
  padding: 8px 12px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

.options-list li:hover {
  background: #f1f1f1;
}

.options-list li.selected {
  font-weight: bold;
}

.checkmark {
  color: #007bff;
  font-weight: bold;
}
/*new company card css start here*/

.job-card-companies-inf-area {
  margin-top: 50px;
}

.job-card-companies-box {
  height: 450px;
  overflow: auto;
  padding: 10px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #d7cbcb9e;
}

.job-card-companies-img {
  position: relative;
}

.job-card-companies-img img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 5px;
}

.job-card-companies-img .job-card-companies-logo img {
  height: auto;
  width: auto;
  object-fit: contain;
}

.job-card-companies-logo {
  right: 0;
  left: 5px;
  width: 40px;
  height: 40px;
  margin: auto;
}

.job-card-companies-name h4 {
  font-size: 17px;
  color: #ff6600;
  overflow: hidden;
  margin-top: 30px;
  margin-bottom: 10px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.job-card-companies-name h5 {
  font-size: 16px;
  color: #666666;
}

.job-card-companies-name ul li {
  list-style: none;
  overflow: hidden;
  margin-top: 10px;
  border-radius: 5px;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #0066cc;
  font-weight: 600;
  border: 1px solid #e3dcdc;
  /*border-top: 1px solid #eeeeee;*/
}

.job-card-companies-name ul li a {
  color: #666666;
  display: block;
  padding: 0px 5px;
  font-weight: 500;
  font-size: 15px;
}

.job-card-companies-name ul li a:hover {
  color: #ff6600;
}

.job-card-companies-name ul {
  padding: 0px;
  margin-bottom: 0;
}

.view-job-count-btn {
  text-align: center;
  padding: 15px 0px 10px 0px;
}

.view-job-btn.default-btn {
  font-size: 14px;
  font-weight: 400;
  padding: 5px 10px;
}

/*new company card css end here*/
/*table css start page css end here*/

.top-space-search-reslute table th {
  padding: 10px 10px;
  /* 0 5 */
}

.top-space-search-reslute table td {
  padding: 2px 10px;
}

.top-space-search-reslute {
  margin-top: 30px;
}
.top-space-search-reslute .tab-content {
  padding: unset !important;
}
.parentProduceSearch input {
  padding: 5px 10px;
  outline: none;
  border: 2px solid #203764;
  border-radius: 5px;
}
.parentProduceSearch {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
/* .parentProduceSearch {
  flex-direction: column;
  align-items: center;
  gap: 10px;
} */
.parentProduceSearch > :nth-child(2) {
  width: 100%;
}

.parentProduceSearch input {
  width: 100%;
}
.parentProduceSearch select {
  padding: 6px 10px;
  border-radius: 5px;
  border: 2px solid #203764;
  margin: 3px;
}
/* .entries {
  margin-left: auto;
} */
.information_dataTables.px-4 {
  padding-bottom: 15px;
  padding-left: unset !important;
  padding-right: unset !important;
}
.information_dataTables div#example_length {
  margin-top: 20px;
  margin-bottom: 10px;
}
.information_dataTables table tbody tr td {
  font-size: 14px;
  color: #000;
  font-weight: 600;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  background: #203764;
  color: #fff !important;
  border: 1px solid #203764;
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
  min-width: 1.5em;
  padding: 4px 10px;
}
table.dataTable.stripe tbody tr.odd,
table.dataTable.display tbody tr.odd {
  background-color: #f0f2f5;
}

table.dataTable.hover tbody tr:hover,
table.dataTable.display tbody tr:hover {
  background-color: #f0f2f5;
}
.borderTerpProduce th {
  color: #000;
  font-weight: 600;
  border: 1px solid #d2d6da;
}
.rowCursorPointer span.mdi.mdi-check.mr-2.text-xl {
  display: none;
}
.paginationActive {
  width: 30px !important;
  height: 30px;
  border-radius: 50%;
  background: #f88239;
  line-height: 30px;
  text-align: center;
}
.paginationActive a {
  color: #fff !important;
  background-color: transparent;
}

/* .previousBttn:hover {
  border: 2px solid gray;
  padding: 5px;
} */
.paginationBttns {
  width: 95%;
  /* height: 40px; */
  list-style: none;
  display: flex;
  justify-content: right;
  align-items: center;
}

.paginationBttns a {
  padding: 0px;
  margin: 10px;
  border-radius: 20px;
  /* border: 1px solid #2b2eff; */
  color: #203764;
  cursor: pointer;
}

.parentProduceSearch .table-search-box-info {
  width: 20%;
}

tr {
  vertical-align: middle;
}

.form-switch .form-check-input {
  width: 50px;
  height: 20px;
  outline: none;
  border: 2px solid #cdcd;
}

.form-check-input:focus {
  box-shadow: none;
}

.add-recruiters-btn-postion {
  position: relative;
}

.add-recruiters-btn {
  top: 20px;
  right: 30px;
  position: absolute;
}

.add-recruiters-btn .default-btn {
  padding: 5px 10px;
}
.action-icon-info i {
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  padding: 5px 4px;
  border-radius: 5px;
  background: #ff6600;
}
/*table end page   css end here*/
.swiper-wrapper .swiper-button-next {
  color: #fff;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #d6d6d6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}
.swiper-wrapper .swiper-button-prev {
  color: #fff;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #d6d6d6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.swiper-button-next,
.swiper-button-prev {
  top: 0 !important;
  bottom: 82px !important;
  margin: auto !important;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  background: #cac8c8 !important;
}
/*terms conditionand Privacy Policy conditions page css start here*/

.terms-condition-privacy-policy-info {
  background: #f0f5f7;
  margin: 0px 0px 0px 0px;
  padding: 50px 0px 60px 0px;
}

.terms-condition-privacy-policy {
  width: 80%;
  margin: auto;
  background: #fff;
  padding: 20px 20px;
}

.terms-condition-privacy-policy-heading {
  text-align: center;
}

.terms-condition-privacy-policy-heading h2 {
  margin: 0px;
  font-size: 22px;
}

.terms-condition-privacy-policy-heading p {
  font-size: 16px;
  font-weight: 600;
}

.terms-condition-privacy-policy-heading-discription {
  margin-top: 20px;
}

.terms-condition-privacy-policy-discription-info h4 {
  font-size: 18px;
  margin: 20px 0px 0px 0px;
  text-transform: capitalize;
}

.terms-condition-privacy-policy-discription-info ul {
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  list-style: none;
}

.terms-condition-privacy-policy-discription-info ul li strong {
  font-size: 16px;
}

/*terms condition and Privacy Policy conditions page css end here*/
.custom-apply-modal .resume-option {
  border: 1px solid #e6e6e6;
  padding: 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fafafa;
  cursor: pointer;
}

.custom-apply-modal .selected-resume {
  border-color: #0a66c2;
  background: #e8f1fb;
}

.custom-apply-modal .resume-option i {
  font-size: 22px;
  color: #0a66c2;
}

.custom-apply-modal .resume-status {
  margin-left: auto;
  font-size: 14px;
}

.custom-apply-modal .divider {
  text-align: center;
  margin: 16px 0;
  position: relative;
}

.custom-apply-modal .divider span {
  background: white;
  padding: 0 10px;
  color: #555;
}

.custom-apply-modal .divider::before {
  content: "";
  width: 100%;
  height: 1px;
  background: #ddd;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
}

.cover-letter-box label {
  font-weight: 600;
  margin-bottom: 6px;
}
.selected-check-icon {
  color: #1a73e8;
  font-size: 20px;
  margin-left: 10px;
}
.job-apply-custom-resume-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid transparent;
}

.job-apply-custom-resume-info.active {
  background-color: #eef3ff;
  border-color: #1a73e8;
}

.file-name-text {
  display: flex;
  align-items: center;
  gap: 8px;
}

.selected-check-icon {
  color: #1a73e8;
  font-size: 20px;
}
.linkeding-login-register-btn-info {
  margin-top: 30px;
}

.register .linkeding-login-register-btn-info {
  margin-top: 0px;
}

.linkeding-login-register-btn-info img {
  width: 7%;
  padding: 2px;
  border-radius: 5px;
  background: #fff;
  margin-right: 10px;
}

.linkeding-login-btn.default-btn.btn {
  width: 100%;
  color: #fff;
  padding: 7px 40px;
  font-size: 16px;
}

.ck.ck-editor__main {
  max-height: 50vh;
  overflow-y: scroll;
}

/*creadite point css start here*/

.user-wallet-credit-box-info {
  background: #fff;
  margin-bottom: 10px;
  padding: 20px 20px 10px 20px;
}

.user-wallet-credit-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.user-wallet-credit h4 {
  font-size: 16px;
  color: #202124;
  text-transform: capitalize;
}

.user-wallet-credit h4 span {
  font-size: 20px;
  color: #fe6600;
}

.credit-buy-btn {
  color: #fff;
  font-size: 14px;
  padding: 5px 5px;
  margin-left: 10px;
  border-radius: 5px;
  background: #0066cc;
  margin-bottom: 12px;
  text-transform: capitalize;
}

.credit-buy-btn:hover {
  background: #ff6600;
}

.user-wallet-credit-button-info p {
  font-size: 14px;
  margin-top: 5px;
  font-weight: 550;
  padding-top: 10px;
  letter-spacing: 0.5px;
  border-top: 1px solid #dee2e6;
}

.user-wallet-credit-limit {
  display: flex;
  margin-top: 20px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.user-wallet-credit-box h4 {
  font-size: 16px;
  text-transform: capitalize;
}

.user-wallet-transaction-tab .nav-tabs .nav-item {
  width: 50%;
}

.user-wallet-transaction-tab .nav-tabs .nav-link {
  color: #040404;
  font-size: 18px;
  font-weight: 600;
}

.user-wallet-transaction-table td a {
  color: #0066cc;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.user-wallet-transaction-table td a:hover {
  color: #ff6607;
}

.add-credits-modal-info label {
  color: #202124;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
}

.add-credits-modal-info .form-group {
  margin-bottom: 15px;
}

.add-credits-modal-info .form-control {
  height: auto;
  font-size: 15px;
  padding: 7px 10px;
}

.add-credits-modal-info .modal-footer {
  display: block;
  text-align: center;
  padding: 30px 0px;
}

.buy-plan-btn {
  color: #fff;
  font-size: 14px;
  padding: 7px 10px;
  margin-left: 10px;
  border-radius: 5px;
  background: #0066cc;
  margin-bottom: 12px;
  text-transform: capitalize;
}

.buy-plan-btn:hover {
  background: #ff6600;
}

.employer-dashboard-common-heading.subscription-plan-name {
  position: relative;
}

.employer-dashboard-common-heading.subscription-plan-name span {
  top: 15px;
  right: 10px;
  color: #fff;
  position: absolute;
  padding: 5px 15px;
  border-radius: 20px;
  background: #ff6600;
}

/*.job-post-cv-view-card-info {
display:flex;
align-items:center;
justify-content:space-between;
}
 
.job-post-cv-view-card-box {
width: 24%;
background: #fff;
padding: 10px 10px;
border-radius: 5px;
align-items: center;
margin-bottom: 20px;
}
 
 
.job-post-cv-view-point {
display: flex;
align-items: center;
justify-content: space-between;
}
 
.job-post-cv-view-card-box h3 {
color: #0066CC;
font-size: 17px;
padding-bottom: 5px;
border-bottom: 1px solid #e2e6f0;  
}
 
.job-post-cv-view-no h4 {
font-size:15px;
color: #ff6600;
text-transform: capitalize; 
}
 
.job-post-cv-view-no h5 {
font-size: 17px;
}
 
.job-post-cv-view-card-box p {
font-size: 14px;
font-weight: 450;
padding-top: 5px;
text-transform: capitalize;
border-top: 1px solid #e2e6f0;
}
 
.job-post-cv-view-card-box span {
display:block; 
}
 
.job-post-cv-view-card-box span label {
color: #ff6600;
font-size: 14px;
font-weight: 600;
margin-bottom: 10px;
text-transform: capitalize;
} */

/*creadite point css end here*/

.schedule-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.schedule-modal {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 40px rgba(0, 0, 0, 0.15);
}

.modal-button-group {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.custom-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.custom-modal {
  background: #fff;
  width: 450px;
  max-width: 90%;
  border-radius: 8px;
  padding: 20px;
  animation: fadeIn 0.3s ease-in-out;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-close {
  font-size: 22px;
  cursor: pointer;
}

.star-rating-modal i {
  font-size: 22px;
  margin-right: 5px;
  cursor: pointer;
  color: #f4c150;
}
.plan-price-box-info-area {
  margin-bottom: 24px;
}
/*creadite point css start here*/

.user-wallet-credit-limit-info {
  padding: 0px 0px 0px 0px;
  margin: 30px 0px 30px 0px;
}

.user-wallet-credit-limit-info .accordion-item {
  border: none;
  position: relative;
  margin-bottom: 30px;
  box-shadow: inherit;
  border-radius: 0px !important;
}

.user-wallet-credit-limit-info .accordion-button.collapsed .PlusIcon {
  top: 18px;
  right: 20px;
  color: #fff;
  font-size: 18px;
  display: block;
  padding: 0px 5px;
  line-height: 25px;
  position: absolute;
  border-radius: 5px;
  background: #ff6600;
}

.user-wallet-credit-limit-info .accordion-button .PlusIcon {
  display: none;
}

.user-wallet-credit-limit-info .accordion-button.collapsed .MinusIcon {
  display: none;
}

.user-wallet-credit-limit-info .accordion-button .MinusIcon {
  top: 18px;
  right: 20px;
  color: #fff;
  display: block;
  font-size: 18px;
  line-height: 25px;
  padding: 0px 5px;
  position: absolute;
  border-radius: 5px;
  background: #ff6600;
}

.user-wallet-credit-limit-info .accordion-button {
  border: 0px;
  outline: none;
  color: #000;
  font-size: 20px;
  font-weight: 600;
  border-radius: 0px;
  padding: 15px 20px;
  background: #ffff;
  box-shadow: inherit;
}

.user-wallet-credit-limit-info .accordion-body {
  border-top: 1px solid #dee2e6;
}

.user-wallet-credit-limit-info .accordion-button:focus {
  box-shadow: inherit !important;
}

.user-wallet-credit-box-info {
  background: #fff;
  margin-bottom: 10px;
  padding: 20px 20px 10px 20px;
}

.user-wallet-credit-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.user-wallet-credit h4 {
  font-size: 16px;
  color: #202124;
  text-transform: capitalize;
}

.user-wallet-credit h4 span {
  font-size: 20px;
  color: #fe6600;
}

.credit-buy-btn {
  color: #fff;
  font-size: 14px;
  padding: 5px 5px;
  margin-left: 10px;
  border-radius: 5px;
  background: #0066cc;
  margin-bottom: 12px;
  text-transform: capitalize;
}

.credit-buy-btn:hover {
  background: #ff6600;
}

.user-wallet-credit-button-info p {
  font-size: 14px;
  margin-top: 5px;
  font-weight: 550;
  padding-top: 10px;
  letter-spacing: 0.5px;
  border-top: 1px solid #dee2e6;
}

.user-wallet-credit-limit {
  display: grid;
  margin-top: 10px;
  align-items: center;
  grid-template-columns: 50px 1fr;
  grid-template-columns: repeat(5, 1fr);
}

.user-wallet-credit-box {
  height: 200px;
  background: #fff;
  text-align: center;
  margin-bottom: 10px;
  border: 1px solid #dee2e6;
  padding: 5px;
}

.user-wallet-credit-box h3 {
  font-size: 18px;
  color: #ff6600;
  margin-top: 5px;
}

.user-wallet-credit-box h4 {
  font-size: 15px;
  font-weight: 450;
  text-transform: capitalize;
}

.user-wallet-credit-box p {
  font-size: 12px;
  font-weight: 450;
  margin: 5px 0px;
  padding-top: 5px;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  border-top: 1px solid #cdcdcd;
}

.user-wallet-transaction-tab .nav-tabs .nav-item {
  width: 50%;
}

.user-wallet-transaction-tab .nav-tabs .nav-link {
  color: #040404;
  font-size: 18px;
  font-weight: 600;
}

.user-wallet-transaction-table td a {
  color: #0066cc;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.user-wallet-transaction-table td a:hover {
  color: #ff6607;
}

.add-credits-modal-info label {
  color: #202124;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
}

.add-credits-modal-info .form-group {
  margin-bottom: 15px;
}

.add-credits-modal-info .form-control {
  height: auto;
  font-size: 15px;
  padding: 7px 10px;
}

.add-credits-modal-info .modal-footer {
  display: block;
  text-align: center;
  padding: 30px 0px;
}

.buy-plan-btn {
  color: #fff;
  font-size: 14px;
  padding: 7px 10px;
  margin-left: 10px;
  border-radius: 5px;
  background: #0066cc;
  margin-bottom: 12px;
  text-transform: capitalize;
}

.buy-plan-btn:hover {
  background: #ff6600;
}

.employer-dashboard-common-heading.subscription-plan-name {
  position: relative;
}

.employer-dashboard-common-heading.subscription-plan-name span {
  top: 15px;
  right: 10px;
  color: #fff;
  position: absolute;
  padding: 5px 15px;
  border-radius: 20px;
  background: #ff6600;
}

/*.job-post-cv-view-card-info {
display:flex;
align-items:center;
justify-content:space-between;
}
 
.job-post-cv-view-card-box {
width: 24%;
background: #fff;
padding: 10px 10px;
border-radius: 5px;
align-items: center;
margin-bottom: 20px;
}
 
 
.job-post-cv-view-point {
display: flex;
align-items: center;
justify-content: space-between;
}
 
.job-post-cv-view-card-box h3 {
color: #0066CC;
font-size: 17px;
padding-bottom: 5px;
border-bottom: 1px solid #e2e6f0;  
}
 
.job-post-cv-view-no h4 {
font-size:15px;
color: #ff6600;
text-transform: capitalize; 
}
 
.job-post-cv-view-no h5 {
font-size: 17px;
}
 
.job-post-cv-view-card-box p {
font-size: 14px;
font-weight: 450;
padding-top: 5px;
text-transform: capitalize;
border-top: 1px solid #e2e6f0;
}
 
.job-post-cv-view-card-box span {
display:block; 
}
 
.job-post-cv-view-card-box span label {
color: #ff6600;
font-size: 14px;
font-weight: 600;
margin-bottom: 10px;
text-transform: capitalize;
} */

/*creadite point css end here*/

.candidate-complete-info-area {
  width: 100%;
}

.candidate-complete-info-box.single-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  /* padding: 20px 24px; */
  background: #fff;
  border-radius: 10px;
  max-width: 100%;
  overflow: hidden;
}

.left-area {
  flex: 1;
  min-width: 0; /* CRITICAL: allows flex child to shrink */
}

.left-area h4 {
  margin-bottom: 10px;
  font-weight: 600;
  text-align: Start;
}

/* Stepper Wrapper */
.steps-wrapper2 {
  display: flex;
  align-items: center;
  max-width: 100%;
  overflow-x: auto;
  padding-bottom: 6px;
}

.steps-wrapper2::-webkit-scrollbar {
  height: 6px;
}

/* Each Step */
.profile-step-item {
  display: flex;
  align-items: center;
}

/* Circles */
.profile-step-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 3px solid #1868ca;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.profile-step-circle.completed {
  border-color: #1868ca;
  color: #1868ca;
}

.profile-step-circle.pending {
  border-color: #d0d0d0;
  color: transparent;
}

/* Check icon */
.profile-step-circle i {
  font-size: 11px;
}

/* Lines */
.profile-step-line {
  width: 20px;
  height: 4px;
  margin: 0 6px;
  background: #d0d0d0;
  flex-shrink: 0;
  transform: translateY(-1px); /* vertical alignment fix */
}

.profile-step-line.line-completed {
  background: #1868ca;
}

.profile-step-line.line-pending {
  background: #d0d0d0;
}

/* Right Side */
.right-area {
  text-align: right;
  white-space: nowrap;
}

.right-area h4 {
  margin-bottom: 8px;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .candidate-complete-info-box.single-line {
    flex-direction: column;
    align-items: flex-start;
  }

  .right-area {
    text-align: left;
    width: 100%;
  }
}

/*Skill Assessment popup css start here*/
.skills-assessment-test-required-details {
  margin-top: 30px;
  background: #f0f5f7;
  padding: 30px 30px 30px 30px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 0px 4px;
}

.skills-assessment-test-icon-content {
  display: flex;
}

.skills-assessment-icon i {
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  padding: 10px 15px;
  background: #2f89ec;
  border-radius: 5px;
  margin-right: 10px;
  border-right: 1px solid #eeee;
}

.skills-assessment-icon i:hover {
  background: #ff6600;
}

.skills-assessment-content h5 {
  font-size: 17px;
  margin-bottom: 0px;
}

.skills-assessment-content ul {
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
}

.skills-assessment-content ul li {
  width: 30%;
  display: inline-block;
}

.skills-assessment-content ul li i {
  color: #0066cc;
  margin-right: 5px;
}

.skill-assessment-test-allModal-area .modal-title {
  font-size: 18px;
}

.skill-assessment-test-allModal-area .modal-title i {
  color: #fff;
  font-size: 14px;
  padding: 5px 7px;
  margin-right: 5px;
  border-radius: 5px;
  background: #1f86ef;
}

.skill-assessment-javaScript-fundamental {
  background: #f0f5f7;
  padding: 10px 10px;
  border-radius: 5px;
  margin: 20px 0px;
}

.skill-assessment-javaScript-fundamental ul {
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
}

.skill-assessment-javaScript-fundamental ul li {
  margin-right: 15px;
  display: inline-block;
  font-size: 13px;
  margin-top: 15px;
}

.skill-assessment-javaScript-fundamental ul li i {
  color: #0066cc;
  margin-right: 5px;
}

.skill-assessment-important-area {
  padding: 10px;
  border-radius: 5px;
  background: #f0f5f7;
  border: 2px solid #eeee;
}

.skill-assessment-test-allModal-area .modal-footer {
  justify-content: center;
}

.skill-assessment-test-allModal-area .default-btn {
  font-size: 15px;
  padding: 5px 10px;
}

.skill-assessment-test-question-list .modal-header {
  display: block;
  position: relative;
  border-bottom: 5px solid #cdcdcd;
}

.skill-assessment-test-question-list .modal-header:after {
  content: "";
  bottom: -5px;
  width: 100px;
  position: absolute;
  border: 3px solid #ff6600;
}

.skill-assessment-test-question-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.skill-assessment-test-name-timer span {
  color: #202124;
  font-size: 15px;
  font-weight: 600;
}

.skill-assessment-test-name-timer .test-start-timer-area {
  margin-left: 10px;
  background: #f0f5f7;
  border-radius: 50px;
  padding: 8px 10px;
  font-size: 14px;
  color: #ff6600;
}

.skill-assessment-test-name-timer .test-start-timer-area i {
  margin-right: 5px;
}

.skill-assessment-test-tq-close span i {
  margin-left: 10px;
  font-size: 16px;
}
.skill-assessment-test-tq-close span {
  background: #1868ca;
  color: #fff;
  padding: 0px 5px 3px 5px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 5px;
  cursor: pointer;
  margin-left: 10px;
}

.skill-assessment-test-tq-close span:hover {
  background: #f9601a;
}

.skill-assessment-test-tq-close .quit-assessment:hover {
  background: #f9601a;
  color: #fff;
}
.skill-assessment-test-tq-close .submit-assessment:hover {
  background: #f9601a;
  color: #fff;
}
.skill-assessment-test-question-option {
  margin-top: 15px;
}

.skill-assessment-test-num-level {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
.full-screen-test {
  width: 100vw;
  height: 100vh;
  background: #f0f5f7;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.skill-assessment-test-form-area {
  width: 80%;
  background: #fff;
  padding: 15px;
}

.skill-assessment-test-level {
  background: #ff6600;
  color: #fff;
  padding: 2px 5px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 5px;
}

.test-footer {
  text-align: center;
}

.test-footer .default-btn {
  font-size: 15px;
  padding: 5px 10px;
  margin-left: 15px;
}
.skill-assessment-test-question-option label {
  display: block;
  font-size: 14px;
  padding: 7px 5px;
  line-height: 20px;
  border-radius: 5px;
  margin-bottom: 10px;
  border: 1px solid #cdcdcd;
}

.skill-assessment-test-question-option input {
  margin-right: 5px;
}

.skill-assessment-test-question-option {
  display: none;
}

.skill-assessment-test-question-option.active {
  display: block;
}

.skill-assessment-test-score-card-area .modal-body {
  padding: 0px 0px 30px 0px;
}

.skill-assessment-test-score-NoPassed {
  text-align: center;
}

.score-card-top-area {
  background: #f0f5f7;
  padding: 40px 0px;
}

.score-card-top-area i {
  color: #f60;
  margin: auto;
  padding: 10px;
  font-size: 30px;
  margin-bottom: 15px;
  text-align: center;
  border-radius: 50px;
  background: #fff;
}

.score-card-top-area h5 {
  margin: 0px;
}

.score-card-top-area p {
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.score-card-final-score {
  margin: 20px 0px 30px 0px;
}

.score-card-final-score h5 {
  margin: 0px;
  color: #0066cc;
  font-size: 40px;
  line-height: 50px;
}

.score-card-number-area {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.score-card-total-number {
  background: #cdcdcd6b;
  padding: 0px 10px;
  text-align: center;
  border-radius: 5px;
}

.score-card-total-number h5 {
  margin: 0px;
}

.score-card-correct-number {
  padding: 0px 10px;
  text-align: center;
  border-radius: 5px;
  background: #00a300;
}

.score-card-correct-number h5 {
  margin: 0px;
  color: #fff;
}

.score-card-correct-number p {
  color: #fff;
}

.score-card-incorrect-number {
  padding: 0px 10px;
  text-align: center;
  border-radius: 5px;
  background: #d10000;
}

.score-card-incorrect-number h5 {
  margin: 0px;
  color: #fff;
}

.score-card-incorrect-number p {
  color: #fff;
}

.skill-assessment-test-score-Passed {
  text-align: center;
}

.skill-assessment-test-score-Passed .score-card-top-area {
  background: #f0f5f7;
  text-align: center;
}

.skill-assessment-test-score-Passed .score-card-top-area h5 {
  margin: 0px;
  color: #202124;
  letter-spacing: 0.5px;
}

.skill-assessment-test-score-Passed .score-card-top-area p {
  color: #202124;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.5px;
}

.skill-assessment-test-score-Passed .score-card-final-score {
  text-align: center;
}

.continue-application-btn-area {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #cdcdcd;
}

.skills-assessment-test-passed-area {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.test-passed-percentage p {
  font-size: 13px;
  color: #74ad6b;
  margin-left: 10px;
  padding: 5px 10px;
  font-weight: 600;
  border-radius: 50px;
  background: #d1d6d982;
  border: 1px solid #74ad6b;
}

.test-passed-percentage p i {
  margin-right: 5px;
}

.skills-assessment-test-passed-area .skills-assessment-content p {
  color: #ff6600;
}

.skills-assessment-test-passed-area .skills-assessment-content p i {
  margin-right: 5px;
}

/*Skill Assessment popup css end here*/
/*Applicants Overview css start here*/

.application-management-search-select-box {
  gap: 20px;
  display: flex;
  margin-top: 10px;
  background: #fff;
  align-items: center;
  padding: 20px 40px 20px 20px;
  justify-content: space-between;
}

.application-management-search-keyword {
  width: 30%;
  display: flex;
  align-items: center;
  border-radius: 5px;
  border: 1px solid #e2e2e2;
  justify-content: space-between;
}

.application-management-search-input {
  width: 100%;
}

.application-management-select-box {
  width: 30%;
}

.application-management-search-input .form-control {
  border: none;
  outline: none;
  background: transparent;
}

.application-management-Icon i {
  color: #f65e00;
  font-size: 15px;
  padding-right: 15px;
}

.application-management-select-box .form-select {
  outline: none;
}

.application-management-select-box .form-control {
  outline: none;
}

.application-management-select-box .form-control:focus {
  border: 1px solid #e2e2e2;
}

.date-range-wrapper {
  position: relative;
}

.date-range-wrapper i {
  top: 50%;
  left: 12px;
  color: #f65e00;
  position: absolute;
  pointer-events: none;
  transform: translateY(-50%);
}

.date-range-input {
  height: 50px;
  color: #666666;
  font-size: 16px;
  cursor: pointer;
  font-weight: 500;
  border-radius: 6px;
  border: 1px solid #e2e2e2;
  padding: 10px 10px 10px 36px;
}

.date-range-input:focus-visible {
  border: 1px solid #e2e2e2;
}

.application-management-select-box .hidden {
  opacity: 0;
  position: absolute;
  pointer-events: none;
}

.application-management-user-Img-details {
  display: flex;
  padding: 15px;
  background: #fff;
  margin-top: 30px;
  position: relative;
  border-radius: 10px;
}

.application-management-user-details a {
  color: #202124;
  display: block;
  font-size: 17px;
  font-weight: 600;
  padding-bottom: 5px;
}

.application-management-user-Img {
  margin-right: 15px;
}

.application-management-user-Img a img {
  width: 100%;
}

.application-management-user-details ul {
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
}

.application-management-user-details ul li {
  color: #666666;
  font-size: 14px;
  font-weight: 500;
  padding-left: 0px;
  margin-right: 5px;
  position: inherit;
  margin-bottom: 5px;
  display: inline-block;
}

.application-management-user-details ul li i {
  color: #0066cc;
  font-size: 14px;
  margin-right: 5px;
}

.application-management-user-details p {
  color: #ff6600;
  font-size: 14px;
  font-weight: 500;
  margin-top: 10px;
  padding: 0px 10px;
  border-radius: 5px;
  display: inline-block;
}

.application-management-status span {
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 5px;
  background: #f65e00;
  letter-spacing: 0.5px;
}

.application-management-user-details a p {
  color: #666666;
  margin-top: 0px;
  padding: 0px 0px;
}

.application-management-user-details a h6 {
  margin-bottom: -2px;
}
.application-management-skill h6 {
  margin-bottom: -2px;
}
.application-management-skill p {
  color: #f65e00;
  margin-top: 0px;
  padding: 0px 0px;
}

.application-management-user-Img img {
  width: 300px;
  height: 170px;
  object-fit: cover;
  border-radius: 10px;
}

.apply-applicant-profile-details {
  margin-top: 50px;
}
/*Applicants Overview css end here*/
.otp-box {
  width: 4em; /* ⬅️ increase width (try 4em or 4.5em) */
  height: 3em;
  font-size: 1.1em;
  font-weight: 600;
  text-align: center;
  border-radius: 6px;
  border: 1.5px solid #cfd4dc;
  background-color: #fff;
  transition: all 0.2s ease;
}

.otp-box:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 2px rgba(13, 110, 253, 0.15);
  outline: none;
}

.otp-gap {
  width: 25px; /* ⬅️ spacing between boxes */
}
.otp-box {
  width: 3em !important;
  height: 3em !important;
}
.employer-candidate-info-area {
  min-height: calc(100vh - 120px); /* adjust if header height differs */
  /* display: flex; */
  align-items: center;
}

/*other page breadcrumb css start here*/

.breadcrumb-main-list-area {
  display: flex;
  align-items: center;
  /* box-shadow: 0px 0px 5px 0px #ccc; */
  padding: 15px 10px;
}

.breadcrumb-main-list-area h4 {
  margin: 0px;
  font-size: 18px;
}

.breadcrumb-main-list-area ul {
  display: flex;
  list-style: none;
  margin: 0px;
  padding-left: 15px;
}

.breadcrumb-main-list-area ul li a {
  color: #666666;
}

.breadcrumb-main-list-area i {
  padding: 0px 10px;
}

.breadcrumb-main-list-area li:last-child {
  margin-right: 0;
  color: #1967d2;
}

/*other page breadcrumb css end here*/

.test-header h4 i {
  color: #1967d2;
}

.start-header {
  border: 2px solid #fafafa;
  padding: 20px;
  /* border-radius: 20px; */
  box-shadow: small;
}
/*Skill Assessment Form css start here*/

.skill-assessments-from-main-area .form-control {
  height: 40px;
}

.questions-category-main .dropdown-content.show {
  display: block;
}

.questions-category-main .dropdown {
  position: relative;
  border-radius: unset;
  background-color: #f0f5f7;
}

.questions-category-main .dropdown-btn {
  width: 100%;
  padding: 10px;
  cursor: pointer;
}

.questions-category-main .dropdown-content {
  display: none;
  position: absolute;
  width: 100%;
  border: 1px solid #ccc;
  background: #fff;
  max-height: 180px;
  overflow-y: auto;
  z-index: 1000;
}

.questions-category-main .dropdown-content label {
  display: block;
  padding: 5px 10px;
  cursor: pointer;
  margin: 0px !important;
  font-size: 15px !important;
}

.questions-category-main .dropdown-content label:hover {
  background-color: #f2f2f2;
}

.questions-category-main .dropdown-content input {
  margin-right: 5px;
}

.manually-add-dlt-question-area {
  display: flex;
  justify-content: space-between;
}

.manually-add-dlt-question-area .form-group {
  width: 95%;
}

.manually-add-dlt-Icon i {
  color: #fff;
  cursor: pointer;
  font-size: 15px;
  padding: 12px 12px;
  background: #f65e00;
  border-radius: 5px;
}

.number-questions-category .form-control {
  margin-bottom: 15px;
}

.question-bank-question-area {
  margin-bottom: 20px;
}

.question-bank-question-list {
  display: flex;
  margin-bottom: 10px;
  justify-content: space-between;
}

.question-bank-question {
  width: 95%;
}

.question-bank-question h5 {
  font-size: 15px;
  font-weight: 600;
  margin-right: 0px;
}

.question-bank-question h5 span {
  color: #f65e00;
  font-size: 18px;
  font-weight: 800;
  margin-right: 10px;
}

.question-bank-question-dltIcon i {
  color: #fff;
  cursor: pointer;
  background: #f65e00;
  padding: 10px 10px;
  border-radius: 5px;
}

.manually-add-mcq-filed .form-group {
  margin-bottom: 15px;
}

.skill-assessment-btn-area {
  text-align: center;
  padding: 30px 0px;
}

.skill-assessments-test-btn .default-btn {
  padding: 5px 10px;
}
.add-question-button {
  outline: none;
  border: none;
  font-size: 30px;
  color: #fff;
  font-weight: 600;
  border-radius: 5px;
  line-height: 20px;
  background: #0066cc;
  padding: 4px 10px 10px 10px;
}

.add-question-button:hover {
  background: #ff6600;
}
.custom-question-area {
  width: 100%;
  color: inherit;
  outline: none;
  font-size: 15px;
  font-weight: 500;
  border-radius: 5px;
  padding: 8px 10px;
  letter-spacing: 0.5px;
  border: 1px solid #cdcdcd;
}
/*Skill Assessment Form css end here*/
/*create skill assessment test details page css start here*/

.skill-assessment-detail-main {
  background: #fff;
  padding: 15px 15px;
  margin: 0px 0px 20px 0px;
}

.skill-assessment-detail-main h5 {
  font-size: 17px;
}

.skill-assessment-detail-main h5 span {
  color: #6a6666;
}

.skill-assessment-question-bank-question {
  margin-top: 15px;
}

.skill-assessment-question-bank-question h5 {
  width: 100%;
  font-size: 16px;
  padding: 7px 5px;
  background: #f0f5f7;
  display: inline-block;
}

.skill-assessment-question-bank-question h5 span {
  color: #f65e00;
  font-size: 18px;
  font-weight: 800;
  margin-right: 5px;
}

.skill-assessment-manually-add-question h5 {
  margin: 10px 0px;
}

.skill-assessment-manually-add-question h5 span {
  color: #f65e00;
  font-size: 18px;
  font-weight: 800;
  margin-right: 5px;
}

.skill-assessment-manually-add-question ul li {
  color: #202124;
  margin-bottom: 15px;
  margin-left: 30px;
  display: inline-block;
}

.skill-assessment-manually-add-question ul li span {
  color: #6a6666;
}

.skill-assessment-detail-main h4 {
  font-size: 17px;
}

.skill-assessment-detail-main h4 span {
  color: #f65e00;
}

.category-name-no-questions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.category-name-area {
  width: 50%;
}

.number-questions-per-category {
  width: 50%;
  text-align: center;
}

.category-name-area h4 {
  margin-top: 15px;
}

.number-questions-per-category h5 {
  margin-top: 15px;
}

.total-Duration-Questions-passing-percentage {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.total-dqpp-main-area {
  width: 33%;
}

.skill-assessment-javaScript-fundamental span {
  font-size: 14px;
  font-weight: 500;
  color: #f0682f;
  display: block;
}

.skill-assessment-javaScript-fundamental p {
  margin-top: 10px;
}

/* .test-required-tag-area {
  background: #f9603f;
  padding: 1px 5px 5px 5px;
  text-transform: capitalize;
  color: #fff;
  font-weight: 700;
  border-radius: 5px;
  font-size: 14px;
} */
.test-required-tag-area {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border: 1.5px solid #f9603f;
  border-radius: 20px;
  color: #f9603f;
  background: transparent;
  font-size: 12px;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 1;
  white-space: nowrap;
}

.test-required-tag-area i {
  font-size: 13px;
}

.test-required-tag-area {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border: 1.5px solid #f9603f;
  border-radius: 20px;
  color: #f9603f;
  background: transparent;
  font-size: 12px;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 1;
  white-space: nowrap;
}

.test-required-tag-area i {
  font-size: 13px;
}

.reapply-info-tag {
  font-size: 12px;
  font-weight: 600;
  color: red;
  margin-top: 10px;
}
.skill-assessment-test-score-card-area {
  background: #f0f5f7;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
.score-card-wrapper {
  width: 80%;
  margin: auto;
}

/* Assessment failed styling */
.assessment-failed .fa-solid {
  color: #dc3545 !important;
  border-radius: 5px;
  background: #f9d2d5;
}

.assessment-failed {
  border: 1px solid #eb737e;
  background-color: #fff5f5;
}
.assessment-failed h5,
.assessment-failed p {
  color: #dc3545;
}

/* Assessment failed styling */
.assessment-passed {
  border: 1px solid #28a745;
  background-color: #e0eade;
}
.assessment-passed .fa-solid {
  color: #28a745 !important;
  border-radius: 5px;
  background: #a7c2a1;
}

.disabled-btn {
  pointer-events: none;
  opacity: 0.6;
  cursor: not-allowed;
}

/* 🟢 Passed */
.test-passed-tag-area {
  background: transparent;
  border: 1.5px solid #28a745;
  color: #28a745;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.test-passed-tag-area i {
  color: #28a745;
}
.test-failed-tag-area {
  background: transparent;
  border: 1.5px solid #dc3545;
  color: #dc3545;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.test-failed-tag-area i {
  color: #dc3545;
}
.custom-header-row th {
  background-color: #ee764c !important;
  color: #fff !important;
  padding: 14px;
  border: none !important;
}
.table tbody tr:hover {
  background-color: #f5f7fa !important; /* light gray */
  transition: background-color 0.2s ease-in-out;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.table tbody td {
  padding: 10px 10px !important;
}

.table thead th {
  padding: 8px 15px !important; /* keep header smaller */
}

.react-datepicker-wrapper {
  display: block !important;
}

/* Bookmark Candidate Data */
.bookmark-container {
  background: #f8f9fa;
  display: flex;
  /* height: calc(100vh - 100px);
  overflow: hidden; */
}
.folder-sidebar {
  background: #fff;
  border-right: 1px solid #e0e0e0;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  width: 280px;
}
.folder-sidebar-header {
  border-bottom: 1px solid #f0f0f0;
  padding: 20px;
}
.folder-sidebar-header h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}
.folder-count {
  color: #999;
  font-size: 12px;
  margin-left: 8px;
}
.folder-list-container {
  flex: 1 1;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 15px 0;
}
.folder-section {
  margin-bottom: 25px;
}
.folder-section-label {
  color: #888;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 0 20px 10px;
  text-transform: uppercase;
}
.filter-label-inline {
  font-size: 11px;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 5px;
  display: block;
}
.bookmark-filters-row .form-control-sm,
.bookmark-filters-row .form-select-sm {
  font-size: 12px;
  border-radius: 6px;
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  height: 35px;
}
.folder-badge {
  background: #eee;
  border-radius: 4px;
  color: #666;
  font-size: 10px;
  margin-left: 8px;
  padding: 2px 6px;
}
.folder-badge.auto {
  background: #e1f5fe;
  color: #0288d1;
}
.folder-name {
  flex: 1 1;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.folder-item {
  align-items: center;
  color: #444;
  cursor: pointer;
  display: flex;
  padding: 10px 20px;
  transition: all 0.2s;
}
.folder-item.active {
  background: #e6f0ff;
  border-right: 3px solid #1967d2;
  color: #1967d2;
}
.folder-icon {
  font-size: 18px;
  margin-right: 12px;
}
.create-folder-btn {
  align-items: center;
  background: #0000;
  border: 1px dashed #ccc;
  border-radius: 6px;
  color: #666;
  cursor: pointer;
  display: flex;
  font-size: 13px;
  justify-content: center;
  /* margin: 10px 20px; */
  padding: 8px;
}

.bookmark-main-content {
  display: flex;
  flex: 1 1;
  flex-direction: column;
  overflow: auto;
}
.header-left h1 {
  font-size: 24px;
  font-weight: 700;
  font-weight: 700;
  margin-bottom: 4px;
}
.bookmark-filters-row {
  background: #fff;
}
.bookmark-content-header {
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  padding: 20px 30px;
}
.header-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}
.per-page-select {
  height: 45px;
  border-radius: 8px;
  border: 1px solid #e0e6ed;
  padding: 0 30px 0 15px;
  font-size: 14px;
  color: #696969;
  background-color: #fff;
  cursor: pointer;
  outline: none;
  min-width: 140px;
}
.search-input-group {
  height: 45px;
  border-radius: 8px;
  border: 1px solid #e0e6ed;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 0 15px;
  min-width: 250px;
}
.search-input-group {
  position: relative;
  width: 300px;
}
.search-input-group input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  margin-left: 10px;
  font-size: 14px;
  color: #696969;
}
.search-input-group input {
  border-radius: 8px;
  padding-left: 35px;
}
.candidate-row {
  align-items: center;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  margin-bottom: 10px;
  padding: 15px 20px;

  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.candidate-row:hover {
  border-color: #1967d2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.candidate-avatar {
  border-radius: 50%;
  height: 50px;
  margin-right: 15px;
  width: 50px;
}
.candidate-info {
  flex: 1 1;
}
.candidate-name {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}
.candidate-meta {
  color: #777;
  font-size: 13px;
}
.candidate-actions {
  display: flex;
  gap: 10px;
}

.side-panel-overlay.open {
  opacity: 1;
  visibility: visible;
}
.side-panel-overlay {
  background: #0006;
  display: flex;
  height: 100%;
  justify-content: flex-end;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: all 0.3s ease;
  visibility: hidden;
  width: 100%;
  z-index: 9999;
}
.side-panel-overlay.open .side-panel-content {
  transform: translateX(0);
}
.side-panel-content {
  background: #fff;
  box-shadow: -5px 0 15px #0000001a;
  display: flex;
  flex-direction: column;
  height: 100%;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  width: 450px;
}
.side-panel-header {
  align-items: center;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  padding: 20px;
}
.side-panel-header h2 {
  font-size: 18px;
  margin: 0;
}
.close-btn {
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  font-size: 20px;
}
.side-panel-body {
  flex: 1 1;
  overflow-y: auto;
  padding: 30px;
}
.profile-img-large {
  border: 4px solid #f0f5ff;
  border-radius: 50%;
  height: 100px;
  object-fit: cover;
  width: 100px;
}
.profile-info-section {
  margin-top: 25px;
}
.profile-info-section h4 {
  border-bottom: 2px solid #f0f0f0;
  color: #888;
  font-size: 14px;
  margin-bottom: 15px;
  padding-bottom: 8px;
  text-transform: uppercase;
}
.info-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.info-list li {
  align-items: center;
  color: #444;
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}
.profile-info-section {
  margin-top: 25px;
}
.skill-tag {
  background: #f0f5ff;
  border-radius: 20px;
  color: #1967d2;
  display: inline-block;
  font-size: 12px;
  margin-bottom: 8px;
  margin-right: 8px;
  padding: 4px 12px;
}
.side-panel-footer {
  border-top: 1px solid #eee;
  padding: 20px;
}
.table tbody td {
  padding: 10px 10px !important;
}

.section-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #6c757d;
  margin-bottom: 8px;
}

.divider {
  height: 1px;
  background: #e5e5e5;
  margin-bottom: 15px;
}

.total-exp {
  font-size: 14px;
  color: #444;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
}

.experience-block {
  margin-bottom: 18px;
}

.job-title {
  font-weight: 600;
  font-size: 15px;
  color: #222;
}

.company-name {
  font-size: 14px;
  color: #555;
  margin-top: 2px;
}

.job-duration {
  font-size: 12px;
  color: #888;
  margin-top: 2px;
}

.section-title1 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #6c757d;
  margin-bottom: 8px;
}

.divider {
  height: 1px;
  background: #e5e5e5;
  margin-bottom: 15px;
}

.education-block {
  margin-bottom: 18px;
}

.education-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.education-icon {
  color: #555;
  margin-top: 3px;
}

.degree-line {
  font-size: 14px;
  color: #333;
}

.education-year {
  font-size: 12px;
  color: #888;
  margin-top: 2px;
}
.btn-outline-danger:hover {
  background-color: #dc3545 !important;
  color: #fff !important;
  border-color: #dc3545 !important;
}

.btn-outline-danger:hover svg {
  color: #fff !important;
  fill: #fff !important;
}

/* Dashboard new design */

.dashboard-header {
  background: #fff;
  border-radius: 16px;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.04);
  margin-bottom: 30px;
}
.company-branding {
  display: flex;
  align-items: center;
  gap: 15px;
}
.company-logo {
  width: 140px;
  height: 60px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: 10px;
}

.company-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.company-info h2 {
  font-size: 22px;
  font-weight: 700;
  color: #32325d;
  margin: 0;
  line-height: 1.2;
}
.company-info span {
  font-size: 13px;
  color: #8898aa;
  font-weight: 500;
}
.user-welcome {
  text-align: right;
}
.user-welcome h3 {
  font-size: 18px;
  font-weight: 600;
  color: #32325d;
  margin: 0;
}
.user-welcome p {
  font-size: 13px;
  color: #8898aa;
  margin: 0;
}
.summary-card-compact {
  height: 65px;
  background: #fff;
  border-radius: 10px;
  padding: 5px 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.summary-card-compact .employer-box-icon {
  width: 32px;
  height: 32px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-right: 12px;
  flex-shrink: 0;
  background: rgba(94, 114, 228, 0.1);
  color: #5e72e4;
}
.summary-card-compact .content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.summary-card-compact .main-info h5 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  line-height: 1;
  color: #32325d;
}
.summary-card-compact .main-info span {
  font-size: 10px;
  text-transform: uppercase;
  color: #8898aa;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.summary-card-compact .trend-info {
  font-size: 11px;
  color: #2dce89;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}
.summary-card-compact.green-theme .employer-box-icon {
  background: rgba(45, 206, 137, 0.1);
  color: #2dce89;
}
.summary-card-compact:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}
.employer-dashboard-common-heading h2 {
  font-size: 20px;
  font-weight: 700;
  color: #32325d;
  margin-bottom: 20px;
  margin-top: 10px;
}
.ats-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media (max-width: 991px) {
  .ats-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.ats-card {
  background: #fff;
  border-radius: 10px;
  padding: 5px 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 65px;
  overflow: hidden;
}
.ats-new .ats-card-icon {
  background: rgba(94, 114, 228, 0.1);
  color: #5e72e4;
}
.ats-pre .ats-card-icon {
  background: rgba(17, 205, 239, 0.1);
  color: #11cdef;
}
.ats-con .ats-card-icon {
  background: rgba(251, 99, 64, 0.1);
  color: #fb6340;
}
.ats-hr .ats-card-icon {
  background: rgba(255, 214, 0, 0.1);
  color: #ffd600;
}
.ats-tech .ats-card-icon {
  background: rgba(45, 206, 137, 0.1);
  color: #2dce89;
}
.ats-off .ats-card-icon {
  background: rgba(137, 101, 224, 0.1);
  color: #8965e0;
}
.ats-hire .ats-card-icon {
  background: rgba(45, 206, 137, 0.2);
  color: #2dce89;
  border: 1px solid #2dce89;
}
.ats-rej .ats-card-icon {
  background: rgba(245, 54, 92, 0.1);
  color: #f5365c;
}
.ats-card-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.ats-card-content h5 {
  font-size: 16px;
  font-weight: 700;
  color: #32325d;
  margin: 0;
  line-height: 1;
  margin-bottom: 2px;
}
.ats-card-content span {
  font-size: 9px;
  color: #8898aa;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100px;
  display: block;
}
.recruitment-pipeline {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 30px;
  position: relative;
  padding: 0 10px;
}
.step-item {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 991px) {
  .step-item {
    width: 140px;
  }
}
.step-icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 20px;
  background: #fff;
  border: 3px solid #e9ecef;
  color: #8898aa;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}
.step-item.active .step-icon-circle {
  border-color: #5e72e4;
  color: #5e72e4;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(94, 114, 228, 0.15);
}
.step-item:nth-child(1).active .step-icon-circle {
  border-color: #5e72e4;
  color: #5e72e4;
  box-shadow: 0 0 0 4px rgba(94, 114, 228, 0.15);
}
.step-item:nth-child(2).active .step-icon-circle {
  border-color: #11cdef;
  color: #11cdef;
  box-shadow: 0 0 0 4px rgba(17, 205, 239, 0.15);
}
.step-item:nth-child(3).active .step-icon-circle {
  border-color: #fb6340;
  color: #fb6340;
  box-shadow: 0 0 0 4px rgba(251, 99, 64, 0.15);
}
.step-item:nth-child(4).active .step-icon-circle {
  border-color: #2dce89;
  color: #2dce89;
  box-shadow: 0 0 0 4px rgba(45, 206, 137, 0.15);
}
.chart-box .step-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 27px;
  left: 50%;
  width: 100%;
  height: 3px;
  background: #e9ecef;
  z-index: -1;
}
.step-count {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #32325d;
  margin-bottom: 5px;
  line-height: 1;
}
.step-label {
  font-size: 13px;
  color: #8898aa;
  font-weight: 600;
  text-transform: uppercase;
}
.performance-line-chart-funnel,
.dashboard {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .recruitment-pipeline {
    flex-direction: column;
    gap: 0;
  }
}
@media (max-width: 768px) {
  .step-item {
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    gap: 20px;
    padding-bottom: 30px;
    text-align: left;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .chart-box .step-item:not(:last-child)::after {
    top: 54px;
    left: 27px;
    width: 3px;
    height: 30px;
    transform: translateX(-50%);
  }
}
.performance-line-chart-funnel .chart-box {
  width: 49%;
  padding: 20px;
  background: #fff;
}
.performance-line-chart-funnel .chart-box {
  width: 49%;
  padding: 20px;
  background: #fff;
}
.chart-box,
.dashboard-bottom {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  flex: 1;
  min-width: 300px;
}
.sidemenu-area:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}
.chart-box:hover,
.dashboard-bottom:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}
.ats-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}
.funnel-container {
  overflow: hidden;
}
.performance-line-chart-funnel .funnel-container {
  text-align: center;
}
.left.dashboard-bottom {
  flex: 2;
}
.top-space-search-reslute {
  margin-top: 30px;
}
.dashboard-bottom .table-bordered {
  border: none;
}
.dashboard-bottom .table {
  margin-bottom: 0;
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
}
.table thead th {
  padding: 8px 15px !important;
}

.dashboard-bottom thead th {
  background-color: #f6f9fc;
  color: #8898aa;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  padding: 12px 24px;
  border-bottom: 1px solid #e9ecef;
  border-top: none;
  letter-spacing: 0.5px;
}
.dashboard-bottom tbody td {
  padding: 20px 24px;
  vertical-align: middle;
  border-top: 1px solid #e9ecef;
  color: #525f7f;
  font-size: 14px;
  font-weight: 500;
}
.dashboard-bottom .table-bordered td,
.dashboard-bottom .table-bordered th {
  border: none;
  border-bottom: 1px solid #e9ecef;
}
.dashboard-bottom .table-bordered td,
.dashboard-bottom .table-bordered th {
  border: none;
  border-bottom: 1px solid #e9ecef;
}
.top-space-search-reslute .tab-content {
  padding: unset !important;
}

.hover-profile-card {
  position: fixed;
  top: 45%;
  right: 0px;
  transform: translateY(-50%);

  background: #ffffff;
  border-radius: 12px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  z-index: 9;
  animation: fadeIn 0.2s ease-in-out;
}

.hover-profile-card h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.hover-profile-card p {
  font-size: 13px;
  color: #666;
  margin-bottom: 4px;
}
.bookmark-user-list-cell {
  height: 60vh;
  overflow: auto;
}
/* smooth fade animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-50%) translateX(10px);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}
/* CSS styles go here, as provided in the CSS Code section below */
.user-hover-short-details {
  width: 350px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 20px;
  font-family: Arial, sans-serif;
  color: #333;
  position: relative;
}

.user-hover-short-details .header {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.user-hover-short-details .profile-pic {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.user-hover-short-details .header-info h1 {
  font-size: 18px;
  margin: 0;
  font-weight: bold;
}

.user-hover-short-details .header-info p {
  font-size: 14px;
  margin: 0;
  color: #666;
}

.user-hover-short-details .location {
  font-size: 14px;
  color: #666;
  display: flex;
  align-items: center;
  margin-top: 5px;
}

.user-hover-short-details .location::before {
  margin-right: 5px;
  font-size: 12px;
}

.user-hover-short-details .details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 20px;
}

.user-hover-short-details .detail-item p {
  margin: 0;
  font-size: 12px;
  color: #666;
}

.user-hover-short-details .detail-item span {
  display: block;
  font-size: 12px;
  font-weight: bold;
  color: #333;
  margin-top: 2px;
}
.user-hover-short-details .detail-item span.na {
  color: #4caf50; /* Green color for N/A as in image */
}

.user-hover-short-details .skills-section h2 {
  font-size: 14px;
  color: #007bff; /* Blue color for SKILLS header */
  margin: 0 0 10px 0;
  text-transform: uppercase;
  font-weight: bold;
}

.user-hover-short-details .skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.user-hover-short-details .skill-tag {
  background-color: #e0f7fa;
  color: #0288d1;
  padding: 1px 5px;
  border-radius: 4px;
  font-size: 11px;
  margin: 0px;
  font-weight: normal;
}

i.fa-solid.fa-trash {
  cursor: pointer;
  /* color: red;
  background: #f8b6b6; */
}
.user-hover-short-details svg {
  font-size: 12px;
  vertical-align: baseline;
}
.empty-job-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 450px;
  background: #f8fafc;
  border-radius: 12px;
  margin-top: 10px;
}

.empty-job-content {
  text-align: center;
  max-width: 450px;
}

.empty-job-icon {
  width: 90px;
  height: 90px;
  background: #e9f1ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

.empty-job-icon i {
  font-size: 40px;
  color: #2f6fed;
}

.empty-job-content h4 {
  font-weight: 600;
  margin-bottom: 10px;
}

.empty-job-content p {
  color: #6c757d;
  font-size: 14px;
}
.ck-content img {
  width: 300px !important;
  height: 200px !important;
  object-fit: cover; /* prevents distortion */
}
.company-career-detail img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 15px auto;
}
/* Dark background like screenshot */
.custom-video-modal .modal-content {
  background: transparent;
  border: none;
}

.custom-video-modal .modal-dialog {
  max-width: 1050px;
}

.modal-backdrop.show {
  opacity: 0.9;
}
.glass-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
}
.bg-blue-subtle {
  background-color: rgba(25, 103, 210, 0.1);
}
.kpi-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}
.kpi-label {
  display: block;
  color: #64748b;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.kpi-value {
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
}
.kpi-total {
  font-size: 16px;
  color: #94a3b8;
  font-weight: 400;
  margin-left: 5px;
}
.live-indicator-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #1967d2;
  border-radius: 50%;
  margin-left: 10px;
  vertical-align: middle;
  box-shadow: 0 0 10px rgba(25, 103, 210, 0.5);
  animation: dot-pulse 1.5s infinite;
}
.kpi-progress {
  height: 8px;
  background: #f1f5f9;
  border-radius: 100px;
  margin-top: 15px;
  overflow: hidden;
}
.fluid-progress {
  position: relative;
  overflow: hidden;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  border-radius: 100px;
}
.live-indicator-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #1967d2;
  border-radius: 50%;
  margin-left: 10px;
  vertical-align: middle;
  box-shadow: 0 0 10px rgba(25, 103, 210, 0.5);
  animation: dot-pulse 1.5s infinite;
}

.bg-orange {
  background-color: #ff6600;
}

.fluid-progress {
  position: relative;
  overflow: hidden;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  border-radius: 100px;
}
.live-indicator-dot.orange {
  background: #ff6600;
  box-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
  animation: dot-pulse-orange 1.5s infinite;
}

.live-indicator-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #1967d2;
  border-radius: 50%;
  margin-left: 10px;
  vertical-align: middle;
  box-shadow: 0 0 10px rgba(25, 103, 210, 0.5);
  animation: dot-pulse 1.5s infinite;
}
.active-plan-minimal-banner {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-left: 5px solid #1967d2;
  border-radius: 18px;
  padding: 24px 35px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  position: relative;
}
.plan-badge-label {
  display: block;
  font-size: 10px;
  font-weight: 800;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}
.plan-name-display {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.5px;
}
.plan-detail-item {
  display: flex;
  flex-direction: column;
  min-width: 120px;
}
.detail-label {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.detail-value {
  font-size: 20px;
  font-weight: 800;
  color: #1967d2;
}
.premium-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.card-header-premium {
  padding: 24px;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.badge-total {
  background: #f1f5f9;
  color: #475569;
  padding: 6px 14px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 12px;
}
.sub-pack-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 20px;
  transition: all 0.3s ease;
}
.sub-pack-title {
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 15px;
}
.stat-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}
.stat-label {
  color: #64748b;
  font-size: 13px;
}
.stat-val {
  font-weight: 700;
  color: #0f172a;
}
.btn-topup-outline {
  background: transparent;
  border: 2px dashed #1967d2;
  color: #1967d2;
  padding: 12px;
  border-radius: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.premium-tabs-nav {
  display: flex;
  gap: 10px;
  background: #f1f5f9;
  padding: 6px;
  border-radius: 16px;
  width: fit-content;
}
.tab-btn.active {
  background: white;
  color: #1967d2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.premium-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.premium-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.card-header-premium {
  padding: 24px;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.table-premium {
  width: 100%;
  border-collapse: collapse;
}
.table-premium th {
  background: #f8fafc;
  padding: 18px 24px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
}
.table-premium td {
  padding: 20px 24px;
  border-bottom: 1px solid #f1f5f9;
  font-size: 14px;
}
.header-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
.premium-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
  padding: 24px;
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}
.header-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
.table-container {
  border-radius: 12px;
  overflow: hidden;
}
.top-space-search-reslute {
  margin-top: 30px;
}
.top-space-search-reslute .tab-content {
  padding: unset !important;
}
.parentProduceSearch {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.table thead th {
  background-color: #f6f9fc;
  color: #8898aa;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  padding: 15px 20px;
  border-bottom: 1px solid #e9ecef;
  letter-spacing: 0.5px;
}
.table tbody td {
  padding: 18px 20px;
  vertical-align: middle;
  border-bottom: 1px solid #f1f3f9;
  color: #525f7f;
  font-size: 14px;
}
.recruiter-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.status-inactive {
  background-color: #fee6e0;
  color: #fb6340;
}
.status-badge {
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
}
.form-switch .form-check-input:checked {
  background-color: #2dce89;
  border-color: #2dce89;
}
.form-switch .form-check-input {
  cursor: pointer;
  width: 40px;
  height: 20px;
}

.action-btns {
  display: flex;
  gap: 12px;
}
.btn-edit {
  background: #e8eafe;
  color: #5e72e4;
}
.btn-delete {
  background: #fee6e0;
  color: #fb6340;
}

.add-recruiter-btn {
  background: linear-gradient(87deg, #ff6600 0, #ff8533 100%);
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow:
    0 4px 6px rgba(255, 102, 0, 0.11),
    0 1px 3px rgba(0, 0, 0, 0.08);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.tab-btn {
  border: none;
  background: transparent;
  padding: 10px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  color: #64748b;
  transition: all 0.3s ease;
}
.card-header-premium {
  padding: 24px;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.filter-label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.premium-filter-input {
  border-width: 1.5px !important;
  padding: 11px 15px !important;
  border-radius: 14px !important;
}
.premium-filter-input,
.premium-filter-select {
  width: 100%;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 10px 15px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  transition: all 0.2s ease;
  outline: none;
}
.naddi-custom-select {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  padding: 12px 18px;
  border-radius: 14px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 200px;
  user-select: none;
}
.naddi-custom-select.active {
  border-color: #1967d2;
  background: white;
  box-shadow: 0 10px 25px -5px rgba(25, 103, 210, 0.1);
}
.selected-value {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
}
.naddi-options-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  z-index: 100;
  overflow: hidden;
  animation: slideDownFade 0.3s ease;
}
.naddi-option {
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #475569;
  transition: all 0.2s;
  display: flex;
  align-items: center;
}
.pill-blue {
  background: #dbeafe;
  color: #1e40af;
}

.pill-badge {
  padding: 4px 12px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 11px;
}
.table-premium td {
  padding: 20px 24px;
  border-bottom: 1px solid #f1f5f9;
  font-size: 14px;
}
.text-orange-premium {
  color: #e65c00 !important;
}
.status-pill.approved {
  background: #dcfce7;
  color: #166534;
}
.status-pill {
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.custom-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease;
}
.topup-modal-content {
  max-width: 1000px;
  height: auto;
  max-height: 90vh;
  background: #f8fafc;
}

.custom-modal-content {
  background: white;
  width: 85%;
  height: 90vh;
  border-radius: 40px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.modal-header-premium {
  padding: 30px;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.btn-close-custom {
  border: none;
  background: #f1f5f9;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #64748b;
  transition: all 0.2s;
}
.modal-body-premium {
  flex: 1;
  overflow-y: auto;
  padding: 30px;
}
.addon-selection-card {
  background: white;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.addon-icon {
  width: 48px;
  height: 48px;
  background: #f1f5f9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #1967d2;
}
.addon-price {
  font-size: 24px;
  font-weight: 800;
  color: #1e293b;
}
.btn-select-addon {
  margin-top: auto;
  padding: 12px;
  border-radius: 12px;
  border: 1.5px solid #e2e8f0;
  background: white;
  color: #1e293b;
  font-weight: 700;
  transition: all 0.2s;
}
.btn-custom-trigger {
  background: white;
  border: 1.5px solid #1967d2;
  color: #1967d2;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 700;
  transition: all 0.2s;
}
.custom-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease;
}
.btn-select-addon:hover {
  background: #1e293b;
  color: white;
  border-color: #1e293b;
}
.btn-custom-trigger:hover {
  background: #1967d2;
  color: white;
}
.btn-buy-primary {
  background: #1967d2;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(25, 103, 210, 0.3);
  transition: all 0.3s ease;
}
.packs-modal-content {
  width: 85% !important;
  height: 90vh !important;
  max-width: none !important;
  background: #f8fafc;
}
.btn-close-creative {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: white;
  color: #64748b;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 0;
}
.refined-pack-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid #e2e8f0;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}
.refined-card-top {
  margin-bottom: 35px;
}
.refined-pro-pack .refined-name,
.refined-pro-pack .refined-curr,
.refined-pro-pack .refined-val {
  color: white;
}
.refined-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.refined-pro-pack .refined-name,
.refined-pro-pack .refined-curr,
.refined-pro-pack .refined-val {
  color: white;
}
.refined-pro-pack .refined-name,
.refined-pro-pack .refined-curr,
.refined-pro-pack .refined-val {
  color: white;
}
.refined-pro-pack .refined-period {
  color: #94a3b8;
}
.refined-features-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 40px;
  flex-grow: 1;
}
.refined-feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.refined-pro-pack .refined-feature-item i {
  color: #3b82f6;
}
.refined-pack-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  border-color: #1967d2;
}
.refined-card-top {
  margin-bottom: 35px;
}
.refined-name {
  font-size: 22px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 15px;
}
.refined-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.refined-curr {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
}
.refined-val {
  font-size: 44px;
  font-weight: 900;
  color: #1e293b;
  letter-spacing: -1.5px;
}
.refined-period {
  font-size: 15px;
  color: #64748b;
  font-weight: 600;
}
.refined-features-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 40px;
  flex-grow: 1;
}
.refined-feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.refined-feature-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.refined-pro-pack .refined-feature-label {
  color: #94a3b8;
}
.refined-pro-pack .refined-feature-count {
  color: #ffffff;
}
.refined-pro-pack .refined-action-btn {
  background: #3b82f6;
  border-color: #3b82f6;
  color: white;
}
.refined-pro-pack .refined-action-btn:hover {
  background: #2563eb;
  border-color: #2563eb;
}
.refined-feature-label {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
}
.refined-feature-count {
  font-size: 15px;
  color: #1e293b;
  font-weight: 700;
}
.refined-action-btn {
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  border: 2px solid #e2e8f0;
  background: white;
  color: #1e293b;
  font-weight: 800;
  font-size: 16px;
  transition: all 0.2s;
}
.refined-action-btn:hover {
  background: #1e293b;
  color: white;
  border-color: #1e293b;
}
.refined-terms {
  font-size: 12px;
  color: #94a3b8;
  font-weight: 500;
}
.refined-pro-pack {
  background: #0f172a;
  border-color: #0f172a;
}
.refined-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #1967d2;
  color: white;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
}
.modal-header-creative {
  position: relative;
}
.company-header-v2 {
  padding: 40px 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.company-header-v2 {
  padding: 40px 30px;
  text-align: center;
  background: #f8fafc;
  border-bottom: 1px solid #f1f5f9;
}
.company-logo-v2 {
  width: 110px;
  height: 110px;
  border-radius: 28px;
  background: white;
  padding: 10px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 auto;
}
.logo-img-v2 {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 18px;
}

.logo-img-v2 {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.filter-label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.premium-textarea {
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px;
  background: #ffffff;
  font-weight: 500;
  transition: all 0.3s;
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  color: #1e293b;
}
.refined-secondary-btn {
  padding: 16px;
  border-radius: 14px;
  border: 1.5px solid #e2e8f0;
  background: #f8fafc;
  color: #475569;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.2s;
}
.refined-primary-btn {
  padding: 16px;
  border-radius: 14px;
  border: none;
  background: #1967d2;
  color: white;
  font-weight: 800;
  font-size: 16px;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(25, 103, 210, 0.2);
}
.refined-secondary-btn:hover {
  background: #f1f5f9;
  color: #1e293b;
  border-color: #cbd5e1;
}
.refined-primary-btn:hover {
  background: #1557b5;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(25, 103, 210, 0.3);
}
.gateway-card {
  background: white;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  transition: all 0.2s;
}
.gateway-logo {
  width: 50px;
  height: 50px;
  background: #f8fafc;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-cancel-custom {
  padding: 16px;
  border-radius: 14px;
  border: 1.5px solid #e2e8f0;
  background: white;
  color: #64748b;
  font-weight: 700;
  transition: all 0.2s;
}
.gateway-card:hover {
  border-color: #1967d2;
  background: #f0f7ff;
  transform: scale(1.02);
}
.form-label-premium {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #475569;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-select-premium,
.form-control-premium {
  width: 100%;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1.5px solid #e2e8f0;
  background: white;
  font-weight: 500;
  color: #1e293b;
  transition: all 0.2s;
}
.btn-cancel-custom {
  padding: 16px;
  border-radius: 14px;
  border: 1.5px solid #e2e8f0;
  background: white;
  color: #64748b;
  font-weight: 700;
  transition: all 0.2s;
}
.btn-submit-custom {
  padding: 16px;
  border-radius: 14px;
  border: none;
  background: #1967d2;
  color: white;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(25, 103, 210, 0.2);
  transition: all 0.2s;
}
.topup-modal-content {
  max-width: 1000px;
  height: auto;
  max-height: 90vh;
  background: #f8fafc;
}
.btn-cancel-custom:hover {
  background: #f1f5f9;
  color: #1e293b;
}
.btn-submit-custom:hover {
  background: #1557b5;
  transform: translateY(-2px);
}
