* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.signup .subtitle {
  background: rgba(35, 55, 67, 0.61) 0 0 no-repeat padding-box;
  box-shadow: 0 3px 6px #00000029;
  border-radius: 10px;
  font: normal normal 500 14px/30px "Poppins";
  color: #fff;
  text-align: center;
  padding: 5px;
  width: 500px;
  margin-bottom: 20px;
}
.main {
  font-family: "Poppins", sans-serif;
  position: relative;
}

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

.left_nav {
  width: 260px;
  height: 100%;
  position: fixed;
  left: 0;
  display: flex;
  flex-direction: column;
  z-index: 333;
  background: transparent linear-gradient(180deg, #202541 0%, #233743 100%) 0% 0% no-repeat padding-box;
}

.main_logo {
  width: 100%;
  height: 80px;
  margin: 30px 0 30px;
}

.main_logo .logo {
  width: 100%;
  height: 80px;
  background: url("../img/main_logo.svg") no-repeat center;
}

.menu_items {
  color: #fff;
}

.menu_items a:hover {
  text-decoration: none;
}

.menu_items .item {
  width: 100%;
  height: 60px;
  padding: 20px 40px;
  display: flex;
  cursor: pointer;
  color: #fff;
}

.menu_items .item .icon {
  width: 20px;
  height: 20px;
  margin-right: 25px;
  display: flex;
  align-items: center;
}
.loader {
  width: 100%;
  height: 100vh;
  background: #223041 0% 0% no-repeat padding-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.loader_img {
  padding-bottom: 20px;
}
.loader_dots-container {
  width: 570px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader_dots-container div {
  min-width: 42px;
  width: 42px;
  height: 42px;
  margin: 0 5px;
  border-radius: 50%;
  transform: scale(0);
  animation: updwn 2s linear infinite;
}
.loader_dots-container div:nth-child(1) {
  animation-delay: 0s;
  background: #FFEC6E;
}
.loader_dots-container div:nth-child(2) {
  animation-delay: 0.15s;
  background: #FED768;
}
.loader_dots-container div:nth-child(3) {
  animation-delay: 0.30s;
  background: #FCC061;
}
.loader_dots-container div:nth-child(4) {
  animation-delay: 0.45s;
  background: #01E8A1;
}
.loader_dots-container div:nth-child(5) {
  animation-delay: 0.60s;
  background: #02D6CB;
}
.loader_dots-container div:nth-child(6) {
  animation-delay: 0.75s;
  background: #02CAE5;
}
.loader_dots-container div:nth-child(7) {
  animation-delay: 0.90s;
  background: #348BEC;
}
.loader_dots-container div:nth-child(8) {
  animation-delay: 1.05s;
  background: #02CAE5;
}
.loader_dots-container div:nth-child(9) {
  animation-delay: 1.20s;
  background: #02D6CB;
}
.loader_dots-container div:nth-child(10) {
  animation-delay: 1.35s;
  background: #01E8A1;
}
.loader_dots-container div:nth-child(11) {
  animation-delay: 1.50s;
  background: #FCC061;
}
.loader_dots-container div:nth-child(12) {
  animation-delay: 1.65s;
  background: #FED768;
}
.loader_dots-container div:nth-child(13) {
  animation-delay: 1.80s;
  background: #FFEC6E;
}

@keyframes updwn {
  0%, 100% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
}

.active_menu_item {
  color: #01E9A1 !important;
  background: #06012D;
  border-right: 4px solid #01E9A1;
}

.active_menu_item .a {
  fill: #01E9A1;
}

.item.active {
  color: #01E9A1 !important;
  background: #06012D;
  border-right: 4px solid #01E9A1;
}

.item.active .a {
  fill: #01E9A1;
}

.button_container {
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.burger_menu {
  display: none;
}
.main_title.new_feedback_header {
  padding-left: 240px;
}

.button_container .post_btn {
  width: 180px;
  height: 50px;
  background: linear-gradient(102deg, #FFEC6E 0%, #FCBD60 100%) 0% 0% no-repeat padding-box;
  box-shadow: 0 3px 6px #00000061;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #223242;
}

.button_container .post_btn span {
  position: relative;
}

.button_container .post_btn:before {
  --size: 0;
  content: '';
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  background: radial-gradient(circle closest-side, #f3ae33, transparent);
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease;
}

.button_container .post_btn:hover:before {
  --size: 180px;
}

.button_container .post_btn_small {
  display: none;
  background: url("../img/plus_btn.svg") no-repeat center;
  width: 50px;
  height: 50px;
  cursor: pointer;
}

.button_container .post_btn_small:active {
  background-image: url("../img/plus_btn.svg");
}
.left_nav .store_icons {
  width: 260px;
  padding: 20px 30px;
  position: fixed;
  bottom: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.left_nav .store_icons img {
  cursor: pointer;
}

.left_nav .store_icons.custom-store_icons {
  bottom: 0;
}

/* theme button*/
.check-box-wrapper {
  width: 260px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 20px;
}

.check-box-wrapper.custom-check-box-wrapper {
  position: absolute;
  bottom: 120px;
}

.active-check-box-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.active-check-box-wrapper > label {
  margin-bottom: 0;
  font-size: 16px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.check-box-active {
  width: 65px;
  height: 30px;
  position: relative;
}

.check-box-active label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.7em;
  transform: translateY(-50%);
  cursor: pointer;
  width: 60px;
  height: 30px;
  background: #5A6D7E 0% 0% no-repeat padding-box;
  box-shadow: 0 3px 6px #00000029;
  border-radius: 15px;
}

.check-box-active label::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 15px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  box-sizing: border-box;
  background: #01E9A1 0% 0% no-repeat padding-box;
  box-shadow: 0 3px 6px #00000029;
  transform: translateY(-50%);
}

.check-box-active input {
  display: none;
}

.check-box-active input:checked + label::before {
  background: #5A6D7E 0% 0% no-repeat padding-box;
  box-shadow: 0 3px 6px #00000029;
  cursor: pointer;
}

.check-box-active input:checked + label::after {
  transform: translateX(26px) translateY(-50%);
  background-color: #01E9A1;
  cursor: pointer;
}

.check-box-active label.active-class::after {
  background: #ccc;
  cursor: pointer;
}

/* top menu */
.top_menu {
  width: 100%;
  height: 64px;
  position: fixed;
  background: #121424;
  display: flex;
  align-items: center;
  padding: 0 40px;
  font-size: 25px;
  z-index: 222;
  border-bottom: 1px solid #5A6D7E;
  color: white;
}

.top_menu .user_info {
  width: 250px;
  height: 64px;
  position: absolute;
  right: 0;
  padding: 27px 10px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.top_menu .user_info .bell_icon {
  width: 25px;
  height: 30px;
  margin: 0 15px;
  display: flex;
}
.top_menu .user_info .bell_icon:hover .a {
  fill: #01E9A1;
}
.top_menu .user_info .speaker_icon {
  /*width: 35px;*/
  height: 30px;
  margin: 0 15px;
  display: flex;
}
.top_menu .user_info .speaker_icon:hover .a {
  fill: #01E9A1;
}

.avatar_dropdown {
  margin: 0 15px;
  display: flex;
  align-items: center;
}

.avatar_dropdown .avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
 /* background: url("../img/User_avatar_img.png") no-repeat center;*/
}
.avatar_dropdown .avatar.avatar_empty {
  background: url("../img/empty_user.svg") no-repeat center;
  background-size: contain;
}
.dropdown_menu .dropdown-toggle:after {
  color: #fff;
}

.dropdown_menu .dropdown-toggle:hover:after {
  color: #01E9A1;
}

.dropdown_menu .dropdown-menu {
  background: #223442;
  top: 22px;
  left: -25px;
  right: 0px !important;
  min-width: 17rem;
}

.dropdown_menu .dropdown-menu .dropdown-item {
  color: white;
  display: flex;
  align-items: center;
  padding: .25rem 20px;
}
.dropdown_menu .dropdown-menu .dropdown-item:hover {
  background: #141F27;
  color: #01E9A1;
}
.dropdown_menu .dropdown-menu .dropdown-item:hover svg path {
  fill: #01E9A1;
}

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

.dropdown-menu .dropdown-item:hover {
  background: none;
}

.dropdown-menu .dropdown-item:focus {
  color: #01E9A1;
}

.dropdown-menu .dropdown-item:focus path {
  fill: #01E9A1;
}

.dropdown-item.speaker, .dropdown-item.bell {
  display: none !important;
}

.top_menu_dropdowns {
  padding: 0 30px 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.practice_dropdown {
  position: relative;
}

.practice_dropdown .practice_btn {
  background: transparent;
  color: #fff;
  border: 1px solid #8593A1;
  border-radius: 10px;
}

.practice_dropdown .practice_btn:hover {
  cursor: pointer;
  background: #233743;
  color: #01E9A1;
  border-color: transparent;
}

.practice_dropdown .dropdown-menu {
  margin: 30px 0;
  width: 220px;
  border-radius: 5px;
  top: -16px !important;
  left: -40px !important;
  background: #0D262F;
  border: 1px solid #5A6D7E;
  position: relative;
  filter: drop-shadow(0px 0px 1px #5A6D7E) drop-shadow(0px 0px 1px #5A6D7E) drop-shadow(0px 0px 1px #5A6D7E)
}

.practice_dropdown .dropdown-menu.input_tab {
  width: 235px;
}

.practice_dropdown .dropdown-menu::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 25%;
  height: 20px;
  width: 30px;
  background: inherit;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}

.dropdown-menu .practice_input {
  background: transparent;
  box-shadow: 0 3px 6px #00000029;
  border: 1px solid #FFFFFF;
  border-radius: 10px;
  padding: 0 15px;
  width: 205px;
  height: 40px;
  color: #fff;
  margin-bottom: 55px;
}

.dropdown-menu .distance_range {
  width: 100%;
  margin-bottom: 50px
}

.roles_tab {
  height: 330px;
}

.dropdown-menu .distance_range .form-label {
  margin-bottom: 0;
  color: #01E9A1;
  font-size: 14px;
}

/* -------- range ------*/
.wrap1 {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  width: 100%;
  height: 60px;
}

input[type=range] {
  margin: 7px 0;
  padding: 0;
  min-height: 3px;
  border-radius: 5px;
  background: linear-gradient(90deg, rgb(255, 255, 255) 60%, rgb(255, 255, 255) 60%);
  font: inherit;
}

input[type=range], [type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
}

input[type=range]::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  box-sizing: border-box;
  border: none;
  border-radius: 5px;
  width: 100%;
  height: 3px;
}

input[type=range]::-webkit-slider-thumb {
  margin-top: -8px;
  box-sizing: border-box;
  border: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #01E9A1;
  cursor: pointer;
}

input[type=range]::-ms-tooltip {
  display: none;
}

input[type=range] ~ output {
  display: none;
}

.js [type=range] ~ output {
  display: block;
  position: absolute;
  left: 0.75em;
  top: 0;
  padding: 0.25em 0.5em;
  border-radius: 3px;
  transform: translate(calc((var(--val) - var(--min)) / (var(--max) - var(--min)) * 11em - 50%));
  color: #fff;
}

/* --------end  range ------*/

.dropdown-menu .dropdown-footer {
  position: fixed;
  bottom: 0;
  width: 217px;
  height: 40px;
  background: #2B4351 0% 0% no-repeat padding-box;
  border-radius: 0px 0px 5px 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dropdown-menu .dropdown-footer.input_footer {
  width: 233px;
}

.dropdown-footer .done_btn {
  width: 52px;
  height: 22px;
  background: transparent linear-gradient(112deg, #01E9A1 0%, #39C3F5 100%) 0% 0% no-repeat padding-box;
  border-radius: 11px;
  color: #233743;
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  padding: 3px 13px;
}

.shape_content-checkbox {
  display: flex;
  align-items: center;
  height: 40px;
  padding: 10px 20px 0;
  border-bottom: 1px solid #5A6D7E;
}

.shape_content-checkbox.hourly-rate-checkbox {
  padding: 10px 10px 0;
  justify-content: space-evenly;
}

.shape_content-checkbox.hourly-rate-checkbox label {
  color: #ffffff;
}

.shape_content-checkbox.hourly-rate-checkbox input[type=checkbox] + label:before {
  float: right;
}

.shape_content-checkbox.hourly-rate-checkbox label .shift_status {
  padding-left: 0;
  margin: 0 25px;
}

.shape_content-checkbox.hourly-rate-checkbox .high-to-low {
  background: url("../img/arrow-up.svg") no-repeat left;
  background-size: 8%;
}

.shape_content-checkbox.hourly-rate-checkbox .low-to-high{
  background: url("../img/arrow-down.svg") no-repeat left;
  background-size: 8%;
}

.shape_content-checkbox input[type=checkbox] + label {
  display: block;
}

.shape_content-checkbox input[type=checkbox] {
  display: none;
}

.shape_content-checkbox input[type=checkbox] + label:before {
  content: "\2714";
  border: 1px solid #01E9A1;
  border-radius: 3px;
  display: inline-block;
  width: 18px;
  height: 18px;
  font-size: small;
  font-weight: 700;
  padding-left: 2px;
  padding-bottom: 4px !important;
  margin-right: 15px;
  color: transparent;
}

.shape_content-checkbox input[type=checkbox]:checked + label:before {
  background-color: #01E9A1;
  color: #233743;
}

.shape_content-checkbox input[type=checkbox]:disabled + label:before {
  border-color: #5A6D7E;
}

.shape_content-checkbox input[type=checkbox]:disabled + label {
  color: #5A6D7E;
  opacity: 0.8;
  cursor: not-allowed;
}

.date_picker {
  background: transparent;
  color: white;
}

.date_picker::-webkit-calendar-picker-indicator {
  filter: invert(100%);
}

.shape_content-checkbox .shift_status {
  position: relative;
  padding-left: 20px;
}

.shape_content-checkbox .shift_status:before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.active_color:before {
  background: #FCC562;
}

.closed_color:before {
  background: #4891FF;
}

.completed_color:before {
  background: #780E0E;
}

.job_checks {
  font-size: 16px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  align-items: center;
}

.job_checks.favorite-checkbox {
  position: relative;
  margin-left: 25px;
}

.job_checks.favorite-checkbox .custom-checkbox .custom-control-input + .custom-control-label:before {
  position: absolute;
  left: -32%;
  top: 16%;
}

.radio-item {
  display: inline-block;
  position: relative;
  padding: 0 6px;
}

.radio-item label {
  margin-bottom: 0;
}

.radio-item input[type='radio'] {
  display: none;
}

.radio-item label:before {
  content: " ";
  display: inline-block;
  position: relative;
  top: 3px;
  margin: 0 5px 0 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #01E9A1;
  background-color: transparent;
}

.radio-item input[type=radio]:checked + label:after {
  border-radius: 50%;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 7px;
  left: 9px;
  content: " ";
  display: block;
  background: #01E9A1;
}


/* main content */
.content {
  width: calc(100% - 260px);
  height: auto;
  position: absolute;
  right: 0;
  padding-top: 64px;
  background: transparent radial-gradient(closest-side at 57% 49%, #102D37 0%, #000000 100%) 0% 0% no-repeat padding-box;
}

.main {
  font-family: 'Poppins', sans-serif;
  position: relative;
}

.map_content.col-9 {
  padding: 0 !important;
}

.map_content {
  max-width: 73%;
  width: 100%;
}

.map_image {
  width: 100%;
  height: 100%;
  background-image: url("../img/map_screen.png");
  position: relative;
}

.drop_mark-dentist {
  position: absolute;
  top: 30%;
  left: 50%;
  width: 40px;
  height: 53px;
  background: url("../img/dentist_drop.svg") no-repeat center;
  background-size: contain;
}

.drop_mark-dentist .mark_container {
  width: 100%;
  position: relative;
}

.drop_mark-dentist:hover .mark_container .card {
  display: block;
}

.drop_mark-assistant {
  position: absolute;
  top: 45%;
  left: 45%;
  width: 40px;
  height: 53px;
  background: url("../img/assistant_drop.svg") no-repeat center;
  background-size: contain;
}

.drop_mark-assistant .mark_container {
  width: 100%;
  position: relative;
}

.drop_mark-assistant:hover .mark_container .card {
  display: block;
}

.mark_container .card {
  display: none;
  position: absolute;
  top: 50px;
  width: 210px;
  height: 280px;
  background: #2B4351 0% 0% no-repeat padding-box;
  box-shadow: 0 3px 20px #121B20;
  border-radius: 10px;
  padding: 12px;
}

.card .card_img-content {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.card .card_img-content .mark_user-img {
  width: 75px;
  height: 75px;
  cursor: pointer;
}

.card .card_img-content .like_heart {
  cursor: pointer;
}

.card .mark_user-data {
  display: flex;
  justify-content: center;
  padding: 5px;
}

.card .mark_user-data .mark_user-name {
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

.card .mark_user_rate {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  font-size: 14px;
}

.card .mark_user_specification {
  display: flex;
  align-items: center;
  justify-content: center;
}

.card .mark_user-thumb {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-direction: row;
  color: #FBB930;
  font-size: 14px;
  line-height: 14px;
}

.map_wrapper {
  /*width: 100%;*/
}

.right_cards {
  max-width: 27%;
  width: 100%;
}

.map_wrapper .right_cards {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 100vh;
}

.spec_card {
  max-width: 450px;
  width: 100%;
 /* height: 205px; */
  margin: 10px 0;
  padding: 0 10px;
  background: #2B4351 0% 0% no-repeat padding-box;
  box-shadow: 0 3px 6px #00000029;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
}

.right_cards .spec_card-container {
  width: 100%;
  padding: 0 15px;
  /* text-align: center; */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  z-index: 11;
  /*background-color: #020507;*/
}

.spec_card .spec_image {
  /*max-width: 75px;*/
  /* padding: 10px 10px; */
}

.spec_image img {
  width: 100%;
  /* height: 75px; */
}

.spec_card .spec_info {
  width: 100%;
  /* padding: 10px; */
}

.spec_info .spec_name {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.spec_name .spec_like {
  background: url("../img/heart_empty.svg") no-repeat center;
  width: 20px;
  height: 18px;
  float: right;
  position: relative;
  background-size: contain;
  cursor: pointer;
}

.spec_name .spec_like.liked {
  background: url("../img/heart.svg") no-repeat center;
}

.spec_check {
  /* width: 100%; */
  height: 40px;
  float: right;
  margin: 15px 0px 0px 0px; 
  /* padding: 5px 5px 0 0; */
}
.spec_check:hover .a_check, .spec_check:hover .b_check {
  fill: #39C3F5;
}

.spec_info .spec_specification {
  display: flex;
  align-items: center;
  /*padding-top: 10px;*/
  color: #fff;
}

.spec_specification .icon, .mark_user_specification .icon {
  width: 25px;
  height: 25px;
  background-size: contain;
  margin-right: 5px;
}

.spec_time .spec_time_icon {
  width: 20px;
  height: 20px;
  background: url("../img/clock.svg") no-repeat left;
  background-size: contain;
  margin-right: 10px;
}

.spec_info .spec_rate {
  padding: 5px 0;
  font-size: 14px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  display: flex;
}

.spec_info .spec_time_text {
  color: #fff;
  font-size: 15px;
}

.spec_thumb {
  /* margin-top: 3px; */
  height: 22px;
  color: #FBB930;
  font-size: 15px;
  display: flex;
  align-items: flex-end;
}

.spec_thumb .spec_points {
  line-height: 14px;
  margin-left: 8px;
}

.spec_thumb img {
  width: 20px;
  height: 20px;
}

.spec_button {
  /* padding: 12px 0 0 25px; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.spec_button .spec_btn {
  background: transparent linear-gradient(98deg, #04BBFD 0%, #8394E5 100%) 0% 0% no-repeat padding-box;
  border-radius: 24px;
  color: #202941;
  font-size: 15px;
  padding: 5px 30px;
  /*width: 160px;*/
  position: relative;
  overflow: hidden;
}
.spec_button .spec_btn span {
  position: relative;
}

.spec_button .spec_btn:before {
  --size: 0;
  content: '';
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  background: radial-gradient(circle closest-side, #8394E5, transparent);
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease;
}
.spec_button .spec_btn:hover:before {
  --size: 180px;
}

.spec_btn:active {
  background: transparent linear-gradient(98deg, #04BBFD 0%, #8394E5 100%) 0% 0% no-repeat padding-box !important;
}


.f_size_14 {
  font-size: 15px;
}

.active_color {
  color: #FCC562;
}

.closed_color {
  color: #4891FF;
}

.completed_color {
  color: #982F2F;

}

.dentist_color {
  color: #98E4FF;
  text-transform:capitalize;
}

.assistant_color {
  color: #FF0000 !important;
  text-transform:capitalize;
}

.specialist_color {
  color: #FFDE07;
  text-transform:capitalize;
}

.associate_dentist_color {
  color: #39c3f5;
  text-transform:capitalize;
}

.hygienist_color {
  color: #04BBFD;
  text-transform:capitalize;
}

.front_office_color {
  color: #8394E5;
  text-transform:capitalize;
}

.volunteer_extern_color {
  color: #FCE794;
  text-transform:capitalize;
}

.icon.dentist {
  background: url("../img/dentist.svg") no-repeat center top 39%;
}

.icon.volunteer_extern {
  background: url("../img/volunteer-extern.svg") no-repeat center top 39%;
}

.icon.assistant {
  background: url("../img/assistant.svg") no-repeat center top 39%;
}

.icon.specialist {
  background: url("../img/specialist.svg") no-repeat center top 39%;
}

.icon.associate_dentist {
  background: url("../img/associate-dentist.svg") no-repeat center top 39%;
}

.icon.hygienist {
  background: url("../img/hygienist.svg") no-repeat center top 39%;
}

.icon.front_office {
  background: url("../img/front-office.svg") no-repeat center top 39% !important;
}

/* calendar start*/
.main_block .calendar_block {
  color: #fff;
  margin-top: 20px;
}

.main_block .calendar_block.custom-calender {
  display: flex;
}

.main_block .calendar_block .calender-left-side.custom-calender_block {
  max-width: 65%;
  width: 100%;
  margin-right: 20px;
}

.main_block .calendar_block .calender-right-side {
  display: none;
  max-width: 35%;
  width: 100%;
  margin-top: 62px;
}

.seeker-calendar-block .seeker-calendar-left-side.custom-calender_block {
  max-width: 80%;
  width: 100%;
  margin-right: 20px;
}

.seeker-calendar-block .seeker-calendar-right-side {
  display: block;
  /* max-width: 25%; */
  width: 100%;
  margin-top: 60px;
  overflow-y: auto;
    overflow-x: hidden;
    max-height: 100vh;
}

.seeker-calendar-block .seeker-calendar-right-side .seeker-shiftActivity-card.seeker-shiftActivity-card {
  margin-left: auto;
  /* width: 100%; */
  height: auto;
  /* max-width: 378px; */
  display: flex;
  flex-direction: column;
}

.seeker-calendar-block .seeker-calendar-right-side .seeker-shiftActivity-card.seeker-shiftActivity-card .spec_image {
  max-width: 100%;
}

.seeker-calendar-block .seeker-calendar-right-side .seeker-shiftActivity-card.seeker-shiftActivity-card .close-right-side-calender {
  padding: 15px 10px 0;
}

.seeker-calendar-block .seeker-calendar-right-side .seeker-shiftActivity-card.seeker-shiftActivity-card .seeker-activity-info {
 /*  padding: 0 20px 20px; */
}


.seeker-calendar-block .seeker-calendar-left-side.custom-seeker-calendar-left-side {
  max-width: 60%;
  width: 100%;
  margin-right: 20px;
}

.seeker-calendar-block .seeker-calendar-right-side.custom-seeker-calendar-right-side {
  max-width: 40%;
  display: block;
}

.seeker-calendar-block .seeker-calendar-right-side .manage-availability-side {
  display: block;
  width: 100%;
  /* padding-left: 50px; */
}

.seeker-calendar-block .seeker-calendar-right-side .manage-availability-side .slider-time-cord1 {
  left: 28%;
  font-size: 16px;
}

.seeker-calendar-block .seeker-calendar-right-side .manage-availability-side .slider-time-cord2 {
  left: 48%;
  font-size: 16px;
}

.seeker-calendar-block .seeker-calendar-right-side .manage-availability-side .manage-availability-side-title {
  margin: 0 0 60px;
  justify-content: space-between;
}

.seeker-calendar-block .seeker-calendar-right-side .manage-availability-side .manage-availability-side-title a {
  text-decoration: none;
  font: normal normal 600 14px/21px Poppins;
  border-bottom: 1px solid #01E9A1;
  color: #01E9A1;
  margin-left: auto;
}

.seeker-calendar-block .seeker-calendar-right-side .manage-availability-side .manage-availability-side-title a:hover {
  border-bottom: 1px solid #ffffff;
  color: #ffffff;
}

.seeker-calendar-block .seeker-calendar-right-side .manage-availability-side .demo-output {
  width: 100%;
}

.seeker-calendar-block .seeker-calendar-right-side .manage-availability-side .rangeBlock-resetBtn {
  width: 247px;
  height: 48px;
  background: transparent linear-gradient(100deg, #A3E4F8 0%, #C4FFED 100%) 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #00000061;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  margin-left: 30px;
  font: normal normal 600 16px/25px Poppins;
  color: #223242;
}

.seeker-calendar-block .seeker-calendar-right-side .manage-availability-side .ui-slider-range.ui-widget-header {
  z-index: 0 !important;
  border: 2px solid rgb(1, 233, 161) !important;
  height: 4px !important;
}

.main_block .calendar_block .calender-right-side .block-item.calender-block-item {
  max-width: 100%;
}

.fc-direction-ltr .fc-daygrid-event.fc-event-end, .fc-direction-rtl .fc-daygrid-event.fc-event-start.custom-size {
  width: 91%;
  height: 50%;
}

.fc-toolbar-chunk {
  display: flex;
}

.fc-theme-standard .fc-scrollgrid,
.fc-theme-standard td, .fc-theme-standard th {
  border: 1px solid #3E4C58 !important;
}

.fc-daygrid-day {
  background: #131623;
}

.fc-col-header-cell.fc-day {
  background: #223442;
  height: 60px;
  padding: 16px 35px;
  text-align: start;
}

#calendar {
  max-height: 1100px;
}

/*.fc .fc-daygrid-day-frame {*/
/*  min-height: 145px !important;*/
/*}*/

.calendar_status {
  padding-top: 35px;
}

.fc .fc-daygrid-day.fc-day-today {
  background-color: #202541 !important;
}

.fc-daygrid-event {
  width: 64px;
  height: 64px;
}

.fc-daygrid-event.fc-daygrid-block-event {
  border: 1px solid transparent;
}

.fc-daygrid-event.dentist-event {
  background: #98E4FF;
}

.fc-daygrid-event .fc-event-main-frame {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 40px;
  height: 40px;
}

.fc-daygrid-event.active {
  background: #E58686;
}

.fc-daygrid-event.closed {
  background: #4891FF;
}

.fc-daygrid-event.completed {
  background: #FCC562;
}

/*.dentist-event .fc-event-main-frame {*/
/*  background-image: url("../img/dentist.svg");*/
/*}*/

.dentist-event .fc-event-main-frame .fc-event-title-container:before {
  /*background-image: url("../img/dentist.svg");*/
  content: "3";
  display: flex;
  justify-content: center;
  text-align: center;
  margin: 5px 13px;
  font-size: 20px;
  color: #000000;
}

/*.assistant-event .fc-event-main-frame {*/
/*  background-image: url("../img/assistant.svg");*/
/*}*/

.assistant-event .fc-event-main-frame .fc-event-title-container:before {
  /*background-image: url("../img/assistant.svg");*/
  content: "2";
  display: flex;
  justify-content: center;
  text-align: center;
  margin: 5px 13px;
  font-size: 20px;
  color: #000000;
}

/*.specialist-event .fc-event-main-frame {*/
/*  background-image: url("../img/specialist.svg");*/
/*}*/

.specialist-event .fc-event-main-frame .fc-event-title-container:before {
  /*background-image: url("../img/specialist.svg");*/
  content: "1";
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 20px;
  color: rgb(0, 0, 0);
  margin-top: 5px;
}

/*.associate-event .fc-event-main-frame {*/
/*  background-image: url("../img/associate.svg");*/
/*}*/

.associate-event .fc-event-main-frame .fc-event-title-container:before {
  content: "5";
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 20px;
  color: rgb(0, 0, 0);
  margin-top: 5px;
}

/*.hygienist-event .fc-event-main-frame {*/
/*  background-image: url("../img/hygienist.svg");*/
/*}*/

.hygienist-event .fc-event-main-frame .fc-event-title-container:before {
  content: "5";
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 20px;
  color: rgb(0, 0, 0);
  margin-top: 5px;
}

/*.front_office-event .fc-event-main-frame {*/
/*  background-image: url("../img/front_office.svg");*/
/*}*/

.front_office-event .fc-event-main-frame .fc-event-title-container:before {
  content: "5";
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 20px;
  color: rgb(0, 0, 0);
  margin-top: 5px;
}

/*.volunteer-event .fc-event-main-frame {*/
/*  background-image: url("../img/volunteer.svg");*/
/*}*/

.volunteer-event .fc-event-main-frame .fc-event-title-container:before {
  content: "5";
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 20px;
  color: rgb(0, 0, 0);
  margin-top: 5px;
}

.calendar-tooltip {
  position: absolute;
  top: 50px;
  background: #223142 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #00000029;
  width: 160px;
  height: 150px;
  display: none;
  flex-direction: column;
  justify-content: center;
  padding: 0 10px;
}

.calendar-tooltip.show {
  display: flex;
}

.calendar-tooltip::before{
  content: "";
  position: absolute;
  left: 45%;
  top: -10px;
  width: 0px;
  height: 0px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #223142;
  clear: both;
}

.calendar-tooltip .calendar-tooltip-item {
  font: normal normal normal 14px/21px Poppins;
  padding: 10px 0 10px 40px;
  cursor: pointer;
}

.calendar-tooltip .calendar-tooltip-item.specialist {
  color: #FFDE07;
  background: url("../img/specialist.svg") no-repeat left;
}

.calendar-tooltip .calendar-tooltip-item.hygienist {
  color: #04BBFD;
  background: url("../img/hygienist.svg") no-repeat left;
}

.calendar-tooltip .calendar-tooltip-item.front_office {
  color: #8394E5;
  background: url("../img/front-office.svg") no-repeat left;
}

.fc .fc-daygrid-day-events {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.fc .fc-daygrid-day-bottom {
  padding: 0 !important;
}

.fc-daygrid-day-events {
  height: 90px;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}

.fc-event-main {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

/* .fc-daygrid-day-bg {
  display: none;
} */

.calendar_block .calendar_status {
  display: flex;
}

.calendar_status .status_box {
  width: 20px;
  height: 20px;
  border-radius: 3px;
  margin-right: 10px;
}

.status_box.yellow {
  background: #FCC562;
}

.status_box.blue {
  background: #4891FF;
}

.status_box.red {
  background: rgb(113, 10, 10);
}

/* calendar end*/

/* profile start */
.menu_items {
  color: #fff;
}

.menu_items a:hover {
  text-decoration: none;
}

.menu_items .item {
  width: 100%;
  height: 60px;
  padding: 20px 40px;
  display: flex;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
}

.menu_items .item:hover {
  background: #233743;
  color: #01E9A1;
}

.menu_items .item:hover .icon .a {
  fill: #01E9A1;
}

.user_name.profile-user_name .edit_pencil:hover .a,
.user_name.profile-user_name-2 .edit_pencil:hover .a {
  fill: #01e9a1;
}
.menu_items .item .icon {
  width: 20px;
  height: 20px;
  margin-right: 25px;
  display: flex;
  align-items: center;
}

.active_menu_item {
  color: #01E9A1 !important;
  background: #06012D;
  border-right: 4px solid #01E9A1;
}

.active_menu_item .a {
  fill: #01E9A1;
}

.main {
  font-family: 'Poppins', sans-serif;
  position: relative;
}

.content .main_block {
  padding: 40px 65px;
}

.progress {
  margin-top: 45px;
  width: 650px;
  height: 20px;
  box-shadow: 0 3px 6px #0000007A;
  border-radius: 11px !important;
  background: #202741 0% 0% no-repeat padding-box !important;
}

.progress .progress-bar {
  background: transparent linear-gradient(90deg, #04BBFD 0%, #01E9A1 100%) 0% 0% no-repeat padding-box;
}

.progress_buttons .btn-group .btn {
  background: #202741;
  color: #fff;
  font-size: 14px;
  padding: 12px 1px;
}

.progress_buttons .btn-group .btn:hover {
  background: #141F27;

}


.progress_buttons .btn-group .btn:hover a {
  color: #01E9A1;
}
.active_tab_item .tab_a:hover{
  color: #202741!important;
}
.progress_buttons .btn-group .btn:first-child {
  border-radius: 30px 0 0 30px;
}

.progress_buttons .btn-group .btn:last-child {
  border-radius: 0 30px 30px 0;
}

.progress_buttons .tab_a {
  color: #fff;
  text-decoration: none;
  width: 100%;
  height: 100%;
  padding: 12px 35px;
}

.active_tab_item {
  color: #202741;
  background: transparent linear-gradient(180deg, #04BBFD 0%, #01E9A1 100%) 0% 0% no-repeat padding-box !important;
  box-shadow: 0 0 6px #00000029 !important;
}

.active_tab_item .tab_a {
  color: #202741;
}

/* personal info*/
.user_content {
  padding: 85px 0;
  display: flex;
}

.user_img img {
  width: 190px;
  height: 185px;
  border-radius: 15px;
}

.user_data {
  padding: 10px 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.user_name {
  width: 300px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.user_name span {
  cursor: pointer;
}

.user_data .user_sub_title {
  color: #fff;
  font-size: 18px;
  font-family: 'Poppins', sans-serif;
  padding-bottom: 8px;
}

.user_name h4 {
  color: #fff;
  font-size: 25px;
}

.user_data .user_info_text {
  padding: 5px 0;
  line-height: 30px;
  max-width: 340px;
  display: flex;
}

.user_data .location {
  height: 60px;
  line-height: 30px;
  align-items: start;
}

.user_data .user_info_text span {
  padding-left: 20px;
  font-size: 16px;
  color: #fff;
  max-width: 310px;
}

.user_sub-menu {
  padding: 0px 110px;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  font-size: 16px;
}

.user_sub-menu p {
  font-size: 14px;
}

.user_sub-menu .sub_menu-title {
  color: #01E9A1;
  font-size: 14px;
}

.about_content {
  color: #fff;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  padding-bottom: 130px;
}

.about_content .about_title {
  color: #01E9A1;
  padding-bottom: 25px;
}

.about_content .about_text {
  max-width: 555px;
  width: 100%;
}

.feedback_content .feedback_title {
  display: flex;
  align-items: center;
  height: 26px;
}

.feedback_title .feedback_text a {
  font-size: 20px;
  color: #fff;
  padding-left: 15px;
  text-decoration: none;
}
.feedback_title .feedback_text a:hover {
  color: #01e9a1;
}

.add_address-modal {
  height: 505px;
  position: relative;
  box-shadow: 0 3px 20px #121B20;
  border: 1px solid #5A6D7E !important;
  border-radius: 10px !important;
  background: transparent linear-gradient(180deg, #272F36 0%, #181E39 100%) 0% 0% no-repeat padding-box;
}

.add_address-modal .address_radio-container {
  padding: 40px 105px;
}

.add_address-modal .address_radio-container .radio-item label {
  margin-bottom: 25px;
}

.add_address-modal .address_btn-container {
  padding: 0 105px;
  display: flex;
  justify-content: center;
}

.add_address-modal .address_btn-container .add_address-btn,
.add_address-modal .address_btn-container .use_address-btn {
  width: 185px;
  height: 48px;
  border-radius: 24px;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: #212E42;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.add_address-modal .address_btn-container .add_address-btn span,
.add_address-modal .address_btn-container .use_address-btn span{
  position: relative;
}
.add_address-modal .address_btn-container .add_address-btn:before,
.add_address-modal .address_btn-container .use_address-btn:before {
  --size: 0;
  content: '';
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease;
}
.add_address-modal .address_btn-container .add_address-btn:hover:before,
.add_address-modal .address_btn-container .use_address-btn:hover:before {
  --size: 185px;
}
.add_address-modal .address_btn-container .add_address-btn {
  background: transparent linear-gradient(100deg, #01E9BA 0%, #F1F1F1 100%) 0% 0% no-repeat padding-box;
}
.add_address-modal .address_btn-container .add_address-btn:before {
  background: radial-gradient(circle closest-side, #00c89e, transparent);
}

.add_address-modal .address_btn-container .use_address-btn {
  background: transparent linear-gradient(100deg, #FBF0AA 0%, #F1F1F1 100%) 0% 0% no-repeat padding-box;
}
.add_address-modal .address_btn-container .use_address-btn:before {
  background: radial-gradient(circle closest-side, #fff685, transparent);
}

.add_address-modal .address_btn-container .add_address-btn:focus,
.add_address-modal .address_btn-container .use_address-btn:focus {
  outline: none !important;
  border: none !important;
  box-shadow: none;
}

.new_card-modal .address-modal-title {
  font: normal normal 600 29px/43px Poppins;
  color: #FFFFFF;
}

/* profile empty */
.user_content-empty {
  padding: 85px 0 0;
  display: flex;
}

.user_content-empty .user_img {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.user_img .fileInput {
  position: absolute;
  top: 0;
  left: 0;
  width: 190px;
  height: 185px;
  opacity: 0;
  cursor: pointer;
}

.user_img .image_view {
  position: absolute;
  top: 0;
  left: 0;
  width: 190px;
  height: 185px;
  border-radius: 15px;
  cursor: pointer;
}

.empty_user_data {
  display: flex;
  flex-direction: column;
  padding: 0 10px;
}

.empty_user_data .user_inputs {
  display: flex;
}

.empty_user_data label {
  display: initial;
  flex-direction: column;
  color: #01E9A1;
  font-size: 15px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  padding-left: 35px;
  padding-bottom: 20px;
}

.empty_user_data .user_inputs input {
  width: 290px;
  height: 44px;
  box-shadow: 0 3px 6px #00000029;
  border: 1px solid #E4E4E4;
  border-radius: 10px;
  font-size: 16px;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 5px 20px;
  background: transparent;
  margin: 5px 0 10px;
}
.user_inputs .error_msg {
  color: red;
}

.empty_user_data .user_inputs input:focus-visible {
  outline: none;
  border: 1px solid #01E9A1;
}

.empty_user_data .user_inputs select {
  width: 290px;
  height: 44px;
  box-shadow: 0 3px 6px #00000029;
  border: 1px solid #E4E4E4;
  border-radius: 10px;
  font-size: 16px;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 5px 20px;
  margin-top:5px;
  background: transparent;
}

.empty_user_data .user_inputs select:focus-visible {
  outline: none;
}

.empty_content-btn {
  padding: 0 240px 85px;
}

.empty_content-btn .save_btn,
.buttons_container .save_btn,
.v_card-btn-container .v_card-save-btn {
  width: 145px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #212E42;
  font-size: 16px;
  border: none;
  border-radius: 24px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: transparent linear-gradient(103deg, #BB94FF 0%, #01E9A1 100%) 0% 0% no-repeat padding-box;
}
.empty_content-btn .save_btn span,
.buttons_container .save_btn span,
.v_card-btn-container .v_card-save-btn span {
  position: relative;
}

.empty_content-btn .save_btn:before,
.buttons_container .save_btn:before,
.v_card-btn-container .v_card-save-btn:before {
  --size: 0;
  content: '';
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  background: radial-gradient(circle closest-side, #BB94FF, transparent);
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease;
}

.empty_content-btn .save_btn:hover:before,
.buttons_container .save_btn:hover:before,
.v_card-btn-container .v_card-save-btn:hover:before{
  --size: 145px;
}
/*.empty_content-btn .save_btn:hover,*/
/*.buttons_container .save_btn:hover,*/
/*.v_card-btn-container .v_card-save-btn:hover {*/
/*  cursor: pointer;*/
/*  background: #fff;*/
/*}*/

.empty_content-btn .save_btn:focus,
.buttons_container .save_btn:focus,
.v_card-btn-container .v_card-save-btn:focus {
  outline: none;
}

.buttons_container {
  display: flex;
}

.buttons_container .delete_btn {
  width: 145px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #212E42;
  font-size: 16px;
  border: none;
  border-radius: 24px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: transparent linear-gradient(103deg, #F8F3FF 0%, #FC8F8F 100%) 0% 0% no-repeat padding-box;
}
.buttons_container .delete_btn span {
  position: relative;
}

.buttons_container .delete_btn:before {
  --size: 0;
  content: '';
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  background: radial-gradient(circle closest-side, #f88181, transparent);
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease;
}
.buttons_container .delete_btn:hover:before {
  --size: 145px;
}


.buttons_container .delete_btn:focus {
  outline: none;
}

/* business */
.business_content, .business_content-empty {
  padding: 85px 0;
  display: flex;
}

.business_content-empty .user_img {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.user_data .practice_btn {
  width: 185px;
  height: 48px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  background: transparent linear-gradient(100deg, #D0BCF2 0%, #74F6CE 100%) 0% 0% no-repeat padding-box;
  border-radius: 24px;
  border: none;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.user_data .practice_btn span {
  position: relative;
}

.user_data .practice_btn:before {
  --size: 0;
  content: '';
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  background: radial-gradient(circle closest-side, #63f3ae, transparent);
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease;
}
.user_data .practice_btn:hover:before {
  --size: 185px;
}



.user_data .practice_btn:focus {
  border: none;
  outline: none !important;
  box-shadow: none;
}

.user_data .practice_btn img {
  margin-right: 10px;
  width: 16px;
  height: 16px;
}

/* new card modal */
.new_card-dialogue {
  width: 604px;
  height: 605px;
  position: relative;
  box-shadow: 0 3px 20px #121B20;
  border: 1px solid #5A6D7E !important;
  border-radius: 10px !important;
  background: transparent linear-gradient(180deg, #272F36 0%, #181E39 100%) 0% 0% no-repeat padding-box;
}

.add_card-close.modal-header {
  border-bottom: none;
}

.add_address-modal {
  padding: 0 25px;
  max-width: 735px;
  width: 100%;
  height: auto;
}

.add_address-modal .add_address-close.modal-header {
  border-bottom: 1px solid #5A6D7E;
}

.add_card-close .add_card-modal-close,
.add_address-close .add_card-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
  cursor: pointer !important;
  background: url("../img/images/modal-close-icon.svg") no-repeat center;
}

.add_card-close .add_card-modal-close:focus {
  outline: none;
}

.add_address-container {
  display: flex;
  flex-direction: column;
}

.add_address-container label {
  display: flex;
  flex-direction: column;
  color: #01E9A1;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
}

.add_address-container input {
  height: 44px;
  background: transparent;
  box-shadow: 0px 3px 6px #00000029;
  border: 1px solid #5A6D7E;
  border-radius: 10px;
  margin: 10px 0;
  font-size: 16px;
  color: #fff;
  padding: 5px 15px;
}

.new_card-dialogue .modal-body {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding-top: 15px;
}

.new_card-dialogue .modal-body .v_card-container {
  width: 380px;
  height: 235px;
  border: 1px solid #8593A1;
  border-radius: 10px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.v_card-container .v_card-numbers-group, .v_card-name {
  color: #8593A1;
  font-size: 24px;
  font-family: 'Poppins', sans-serif;
}

.new_card-dialogue .modal-body .v_card-data {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.v_card-data {
  max-width: 380px;
  width: 100%;
}

.v_card-data input, .v_card-data select {
  width: 100%;
  height: 44px;
  box-shadow: 0px 3px 6px #00000029;
  border: 1px solid #FFFFFF;
  border-radius: 10px;
  background: transparent;
  color: #fff;
  padding: 10px 18px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
}

.v_card-data input::placeholder {
  color: #fff;
}

.v_card-data input:focus-visible,
.v_card-data select:focus-visible {
  outline: none;
}

.new_card-dialogue .modal-body .v_card-btn-container {
  max-width: 380px;
  width: 100%;
  display: flex;
  justify-content: center;
}

/* carousel */
.carousel_container {
  /* padding-top: 50px; */
  display: block;
  justify-content: center;
}

.carousel_container .carousel {
  width: 100%;
}

.carousel_container .carousel .carousel-inner {
  display: flex;
  max-width: 100%;
}

.carousel_container .carousel-indicators {
  bottom: -35px;
}

.custom-owl-carousel.owl-theme .owl-dots .owl-dot span, .shift-activity-carousel.owl-theme .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #223142 0% 0% no-repeat padding-box;
  box-shadow: 0 3px 6px #00000029;
}

.custom-owl-carousel.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span, .shift-activity-carousel.owl-theme .owl-dots .owl-dot.active span,
.shift-activity-card-carousel.owl-theme .owl-dots .owl-dot.active span,
.find-match-carousel.owl-theme .owl-dots .owl-dot.active span,
.seeker-map-img-container.owl-theme .owl-dots .owl-dot.active span, .seeker-pending-container.owl-theme .owl-dots .owl-dot.active span {
  background: #01E9A1 0% 0% no-repeat padding-box;
}

.custom-owl-carousel.owl-theme .owl-dots button:focus, .shift-activity-carousel.owl-theme .owl-dots button:focus {
  outline: none;
}

.carousel_container .carousel-inner {
  width: 100%;
}

/* cards */
.reviews-list {
  display: flex;
  flex-wrap: wrap;
}

.custom-owl-carousel .card, .reviews-list .card {
  /*width: 345px !important;*/
  height: 285px;
  background: #223142 0% 0% no-repeat padding-box;
  box-shadow: 0 0 6px #00000029;
  border-radius: 10px;
}

.reviews-list .card {
  margin: 10px;
}

.custom-owl-carousel .card .card_head, .reviews-list .card .card_head {
  padding: 40px 20px;
  height: 205px;
  position: relative;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #02E6A9;
}

.custom-owl-carousel .card_head .card_testimonial, .reviews-list .card_head .card_testimonial {
  background: url("../img/quotation_marks_icon.svg");
  width: 100px;
  background-position: center;
  height: 18px;
  background-repeat: no-repeat;
}

.custom-owl-carousel .card_head .card_text, .reviews-list .card_head .card_text {
  margin: 12px 5px;
  width: 220px;
  font-size: 14px;
  color: #fff;
}

.custom-owl-carousel .card_head .card_img, .reviews-list .card_head .card_img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  position: absolute;
  right: 30px;
  bottom: -35px;
  background:#334253;
}

.custom-owl-carousel .card .card_footer, .reviews-list .card .card_footer {
  padding: 15px 45px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.custom-owl-carousel .card_footer .card_user_name, .reviews-list .card_footer .card_user_name {
  font-size: 17px;
  color: #fff;
}

.custom-owl-carousel .card_footer .card_user_like, .reviews-list .card_footer .card_user_like {
  height: 22px;
  color: #FBB930;
  font-size: 14px;
  display: flex;
  align-items: flex-end;
}

.custom-owl-carousel .card_user_like .card_user_points, .reviews-list .card_user_like .card_user_points {
  line-height: 14px;
}

.custom-owl-carousel .card_user_like img, .reviews-list .card_user_like img {
  width: 20px;
  height: 20px;
}

/*payment info */
.payment_content {
  padding: 80px 0 40px;
}

.payment_content .payment_title {
  color: #01E9A1;
  padding-bottom: 25px;
  width: 165px;
  cursor: pointer;
}
.payment_content .payment_title:hover {
  color: #fff;
}

@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/materialicons/v92/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2) format('woff2');
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

#accordion .card-header button[aria-expanded="true"]:after {
  font-family: 'Material Icons';
  content: "expand_less";
  vertical-align: middle;
  font-size: 30px;
  color: #fff;
}

#accordion .card-header button[aria-expanded="false"]:after {
  font-family: 'Material Icons';
  content: "expand_more";
  vertical-align: middle;
  font-size: 30px;
  color: #fff;
}

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

#accordion .card {
  max-width: 960px;
  background: transparent linear-gradient(180deg, #272F36 0%, #181E39 100%) 0% 0% no-repeat padding-box;
  box-shadow: 0 3px 20px #121B20;
  border: 1px solid #5A6D7E;
  border-radius: 10px;
  margin: 20px 0;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

#accordion .card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: none;
}

#accordion .card .card-header .btn {
  padding: 0;
}

.visa_card_name {
  display: flex;
  width: 390px;
}

.visa_card_name img {
  padding: 10px 0;
}

.visa_card_name .name_number {
  height: 56px;
  justify-content: space-between;
}

#accordion .card .card-header .visa_card_date {
  width: 165px;
  display: flex;
  justify-content: flex-start;
}

#accordion .card .card-header .expired {
  color: #FF5454;
}

#accordion .card .card-body {
  padding-top: 0;
}

#accordion .card .card-body .card_content {
  border-top: 1px solid #5A6D7E;
  display: flex;
  justify-content: space-between;
}

#accordion .card_content-title {
  color: #01E9A1;
}

#accordion .card_change {
  color: #01E9A1;
  border-bottom: 1px solid #01E9A1;
  width: 66px;
  padding-bottom: 3px;
  cursor: pointer;
}

#accordion .billing_content {
  max-width: 365px;
}

#accordion .billings_buttons {
  display: flex;
  justify-content: flex-end;
}

.billings_buttons .billing_btn {
  width: 105px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #212E42;
  font-weight: 600;
  border: none;
  background: transparent linear-gradient(110deg, #B4B4B4 0%, #F1F1F1 100%) 0% 0% no-repeat padding-box;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.billings_buttons .billing_btn span {
  position: relative;
}

.billings_buttons .billing_btn:before {
  --size: 0;
  content: '';
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease;
}

.billings_buttons .billing_btn:hover:before {
  --size: 105px;
}

#accordion .billing_name-input {
  padding: 5px 15px;
  margin-top: 30px;
  max-width: 315px;
  height: 44px;
  background: transparent;
  box-shadow: 0px 3px 6px #00000029;
  border: 1px solid #5A6D7E;
  border-radius: 10px;
  color: #fff;
}

#accordion .billing_name-input:focus {
  outline: none;
}

.billings_buttons .billing_remove-btn {
  background: transparent linear-gradient(110deg, #B4B4B4 0%, #F1F1F1 100%) 0% 0% no-repeat padding-box;
}
.billings_buttons .billing_remove-btn:before {
  background: radial-gradient(circle closest-side, #B4B4B4, transparent);
}

.billings_buttons .billing_edit-btn {
  background: transparent linear-gradient(108deg, #98E4FF 0%, #DDDFDE 100%) 0% 0% no-repeat padding-box;
}
.billings_buttons .billing_edit-btn:before {
  background: radial-gradient(circle closest-side, #6dcff1, transparent);
}

.billings_buttons .billing_cancel-btn {
  background: transparent linear-gradient(108deg, #AFAFAF 0%, #F1F1F1 100%) 0% 0% no-repeat padding-box;
}
.billings_buttons .billing_cancel-btn:before {
  background: radial-gradient(circle closest-side, #AFAFAF, transparent);
}

.billings_buttons .billing_save-btn {
  background: transparent linear-gradient(108deg, #01E9BA 0%, #DDDFDE 100%) 0% 0% no-repeat padding-box;
}
.billings_buttons .billing_save-btn:before {
  background: radial-gradient(circle closest-side, #52e7bf, transparent);
}

.hidden {
  display: none !important;
}

.billings_buttons button:focus {
  outline: none;
}

/* profile end */

/* referals start*/
.menu_items {
  color: #fff;
}

.menu_items a:hover {
  text-decoration: none;
}

.menu_items .item {
  width: 100%;
  height: 60px;
  padding: 20px 40px;
  display: flex;
  cursor: pointer;
  color: #fff;
}

.menu_items .item .icon {
  width: 20px;
  height: 20px;
  margin-right: 25px;
  display: flex;
  align-items: center;
}

.active_menu_item {
  color: #01E9A1 !important;
  background: #06012D;
  border-right: 4px solid #01E9A1;
}

.active_menu_item .a {
  fill: #01E9A1;
}

.main {
  font-family: 'Poppins', sans-serif;
  position: relative;
}

.content .main_block {
  padding: 40px 35px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  z-index: 1;
}

.main_block .referrals_title {
  display: flex;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  padding-bottom: 20px;
}

.main_block .referrals_title span {
  color: #04BBFD;
  font-style: italic;
}

.main_block .referrals_content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  padding: 40px 90px;
}

.referrals_content .referrals_card {
  width: 280px;
  height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.referrals_card .referrals_subtitle {
  color: #01E9A1;
  font-size: 18px;
  font-weight: 500;
  padding: 20px 0 8px;
}

.referrals_card .referrals_description {
  text-align: center;
}

.referrals_soc-info {
  padding-top: 30px;
}

.referrals_info, .referrals_soc-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.referrals_info .info_title,
.referrals_soc-info .info_title {
  color: #01E9A1;
  font-size: 25px;
  font-weight: 500;
}

.referrals_info .info_subtitle,
.referrals_soc-info .info_subtitle {
  color: #ffffff;
  font-size: 18px;
  padding: 5px 0 10px;
}

.referrals_info .info_subtitle span {
  color: #04BBFD;
  font-style: italic;
}

.referrals_info .referrals_inputs {
  width: 100%;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.referrals_inputs label {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}

.referrals_info .referrals_inputs .input_item {
  max-width: 650px;
  width: 100%;
  height: 45px;
  margin: 8px 0;
  box-shadow: 0px 3px 6px #00000029;
  border: 1px solid #FFFFFF;
  border-radius: 22px;
  background: transparent;
  padding: 0 20px;
  color: #fff;
}

.referrals_info .referrals_or {
  color: #01E9A1;
  font-size: 18px;
}

.referrals_inputs .input_item:focus-visible {
  outline: none;
}

.referrals_inputs label span {
  position: relative;
}

.referrals_inputs label img,
.referrals_inputs label svg {
  position: absolute;
  right: 7px;
  top: 14px;
}
.referrals_inputs label svg:hover .a_ref {
  fill: #04a2b7;
}

.social_content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 0 70px;
}

.social_content .soc_input {
  max-width: 450px;
  width: 100%;
  margin: 0 10px;
}

.social_content .soc_input label {
  position: relative;
  width: 100%;
}

.social_content .soc_input input {
  width: 100%;
  height: 44px;
  padding: 0 25px;
  box-shadow: 0px 3px 6px #00000029;
  border: 1px solid #FFFFFF;
  border-radius: 22px;
  background: transparent;
  color: #fff;
}

.social_content .soc_input input:focus-visible {
  outline: none;
}

.social_content .soc_input span {
  position: absolute;
  right: 10px;
  top: 10px;
  color: #04BBFD;
  cursor: pointer;
}
.social_content .soc_input span:hover {
  color: #01e9a1;
}

.soc_items {
  display: flex;
}

.soc_items .soc_facebook {
  width: 45px;
  height: 45px;
  background: url("../img/referrals_facebook.svg") no-repeat center;
}

.soc_items .soc_linkedin {
  width: 45px;
  height: 45px;
  background: url("../img/referrals_linkedIn.svg") no-repeat center;
}

.soc_items .soc_twitter {
  width: 45px;
  height: 45px;
  background: url("../img/referrals_twitter.svg") no-repeat center;
}

.soc_items .soc_instagram {
  width: 45px;
  height: 45px;
  background: url("../img/referrals_instagram.svg") no-repeat center;
}

/* referals end*/


/* Footer */
.content_footer {
  width: 100%;
  height: 260px;
  z-index: 1;
  color: #fff;
  position: absolute;
  background: #000000;
}

.footer_container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 42px;
}

.footer_social {
  display: flex;

}

.social_item:hover .a {
  fill: #01E9A1;
}

.feedback_header {
  padding-left: 255px;
}

.footer_social .social_item {
  width: 33px;
  height: 33px;
  margin: 0 10px;
  cursor: pointer;
}

.footer_links {
  padding: 35px 0 30px;
}

.footer_links ul {
  display: flex;
  margin-bottom: 0;
}

.footer_links ul li {
  color: #fff;
  height: 26px;
  padding: 0 30px;
  font-size: 16px;
  border-right: 1px solid #fff;
  list-style-type: none;
  cursor: pointer;
}

.footer_links ul li a {
  text-decoration: none;
  color: #fff;
}

.footer_links ul li:last-child {
  border-right: none;
}

.footer_google {
  display: flex;
}

.footer_google .google_icon_item {
  margin: 0 10px;
}

.add-new-review {
  color: #01E9A1;
  font: normal normal normal 14px/21px Poppins;
  display: block;
  margin-bottom: 20px;
  text-decoration: none;
}

.add-new-review:hover {
  color: #fff;
}

.reviewUs-svg1 {
  margin-bottom: 40px;
}

.reviewUs-add-btn {
  background: transparent linear-gradient(102deg, #F2BF6D 0%, #FFB2B2 100%) 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 29px;
  border: none;
  color: #202941;
  font-size: 14px;
  padding: 5px 30px;
  margin-top: 25px;
  position: relative;
  overflow: hidden;
}

.reviewUs-add-btn span {
  position: relative;
}

.reviewUs-add-btn:before {
  --size: 0;
  content: '';
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  background: radial-gradient(circle closest-side, #f6e8b5, transparent);
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease;
}
.reviewUs-add-btn:hover:before {
  --size: 160px;
}






.review-text.review-text.review-text {
  padding-bottom: 30px;
}

.review-img-block {
  margin: 0 auto;
}

.review-img-block .review-img-block_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.reviewUs-svg1-f {
  width: 100px;
  height: 97px;
  background: #5A6D7E 0% 0% no-repeat padding-box;
  border-radius: 10px;
  opacity: 0.95;
  display: flex;
  justify-content: center;
  align-items: center;
}

.reviewUs-svg1-f:hover {
  opacity: 1;
  transition: 0.3s;
}

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

.seeker-right_cards.seeker-right_cards {
  background: none;
}

.seeker-right_cards-title {
  margin: 65px 0;
  font: normal normal normal 15px Poppins;
  color: #01E9A1;
}

.seeker-spec_card.seeker-spec_card {
  position: relative;
  width: 100%;
  /* height: 363px; */
  background: #223142 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #0000008C;
  border-radius: 10px;
  padding-top: 6px;
  padding-bottom: 15px;
  display: grid;
  grid-template-columns: 120px 216px;
  grid-template-rows: 115px;
  /* margin: 7px 50px; */
  margin: 5px 0px;
}

.seeker-spec_image.seeker-spec_image {
  width: 100%;
}

.seeker-spec-specification {
  justify-content: space-between;
}

.seeker-spec_image {
  height: 120px;
}

.seeker-spec_image img {
  width: 110px !important;
  height: 104px !important;
  object-fit: cover;
  border-radius: 10px;
}

.seeker-spec_name.seeker-spec_name {
  font: normal normal 600 18px Poppins;
  letter-spacing: 0px;
  color: #ffffff;
  cursor: pointer;
}

.seeker-spec_info.seeker-spec_info.seeker-spec_info {
  flex: 1;
  height: 150px;
  width: auto;
}

.seeker-spec_info .like_heart {
  width: 20px !important;
  height: 20px;
}

.seeker-shift-id {
  text-align: right;
  font: normal normal normal 15px Poppins;
  color: #01E9A1;
 /* margin-top: 5px;
  margin-right: 15px;*/
  letter-spacing: 0.5px;
}

.seeker-date {
  font: normal normal normal 15px Poppins;
  color: #FFFFFF;
  padding-left: 30px;
  background: url("../img/images/calendar-green.svg") no-repeat left;
}

.seeker-spec-thumb {
  margin: 0;
}

.seeker-activity-info {
  flex-direction: column;
  padding: 0px 5px 0px 15px;
  grid-column: 1/3;
}

.seeker-activity-info .location {
  font: normal normal normal 15px Poppins;
  color: #FFFFFF;
  background: url(../img/images/location.svg) no-repeat left top 0%;
  /* padding: 5.5px 0 5.5px;
  margin-left: 2px; */
  overflow: hidden;
}

.seeker-activity-info .price {
  background: url(../img/images/price.svg) no-repeat left;
  font: normal normal normal 15px Poppins;
  color: #FFFFFF;
  padding: 5.5px 0 5.5px 30px;
  display: flex;
  justify-content: space-between;
  padding-left: 30px;
  /*width: 83%;*/
}

.seeker-activity-info .price span {
  display: block;
}

.seeker-spec_info .hours, .seeker-activity-info .hours {
  font: normal normal normal 15px Poppins;
  color: #FFFFFF;
  background: url(../img/images/hours.svg) no-repeat left;
  padding: 5.5px 0 5.5px 30px;
}

.seeker-activity-info .express-interest button {
  width: 130px;
  height: 41px;
  background: transparent linear-gradient(
          102deg, #BEDEFE 0%, #8394E5 100%) 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 29px;
  text-align: center;
  border: none;
  font-size: 15px;
  line-height: 21px;
  font-family: Poppins;
  color: #202941;
  text-shadow: 0px 3px 6px #00000029;
  cursor: pointer;
  /* margin-top: 20px; */
}

.seeker-activity-info .express-interest .icons .share {
  background: url(../img/images/share.svg) no-repeat right;
  /* width: 30px; */
  height: 35px;
  display: block;
  /* transform: translate(35px, 25px); */
}

.loc-pd {
  padding-left: 30px !important;
  text-align: left;
}

.seeker-content-hov {
  transform: translate(0, 40px);
}

.seeker-drop_mark-assistant, .seeker-drop_mark-dentist {
  cursor: pointer;
}

.seeker-mark_container {
  height: 50px;
}

.seeker-content-hov {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.seeker-drop_mark-assistant:hover .seeker-content-hov, .seeker-drop_mark-dentist:hover .seeker-content-hov {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: 0.3s all ease;
}

/* ** end ** */


.bell_icon, .speaker_icon {
  cursor: pointer;
}

.triangle {
  visibility: visible;
  opacity: 0;
}

.bell-notification, .speaker-notification {
  width: 408px;
  background: #0E2730 0% 0% no-repeat padding-box;
  box-shadow: 0px 13px 6px #0000004D;
  position: absolute;
  right: 0;
  top: 70px;
  cursor: auto;
  height: 90vh;
  overflow-y: auto;
}

.bell-notification, .speaker-notification, .bell-triangle, .speaker-triangle {
  transition: .5s ease all;
  opacity: 0;
  visibility: visible;
  pointer-events: none;
}

.bell-notification-active, .speaker-notification-active, .bell-modal-triangle_active, .speaker-modal-triangle_active {
  opacity: 1;
  visibility: visible;
  transition: 0.6s ease all;
  z-index: 10;
  pointer-events: auto;
}

.bell-modal-triangle_active {
  display: block;
  position: absolute;
  height: 20px;
  width: 30px;
  background: #0E2730;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
  left: 9%;
  top: 54px;
}

.speaker-modal-triangle_active {
  display: block;
  position: absolute;
  height: 20px;
  width: 30px;
  background: #0E2730;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
  left: 77px;
  top: 54px;
}

.header-modal-header {
  height: 80px;
  padding: 30px;
  display: flex;
  justify-content: space-between;
}

.modall-title {
  text-align: left;
  font: normal normal 500 18px Poppins;
  letter-spacing: 0px;
  color: #FFFFFF;
  position: relative;
}

.red-circle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #E90101 0% 0% no-repeat padding-box;
  border-radius: 100%;
  left: 55px;
}

.modall-close, .modall-close2 {
  width: 12px;
  line-height: 35px;
  transform: translate(-20%, -20px);
  font-size: 35px;
  cursor: pointer;
}

.modal-content-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.modal-content-item {
  height: 72px;
  display: flex;
}

.modal-content-item .item-left {
  width: 20px;
  height: 72px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content-item .item-left span {
  width: 11px;
  height: 10px;
}

.modal-content-item .item-right {
  flex: 1;
}

.right-item-title {
  text-align: left;
  font: normal normal 600 15px Poppins;
  letter-spacing: 0px;
  line-height: 20px;
  padding: 5px 0 0 10px;
  margin: 0;
}

.right-item-subtitle {
  font-size: 12px;
  padding: 5px 0 0 10px;
  margin-top: -5px;
}

.item-info {
  background: #5A6D7E 0% 0% no-repeat padding-box;
}

.item-info-left {
  background-image: url("");
}

.item-success {
  background: #193B47 0% 0% no-repeat padding-box;
}

.item-success-left {
  background: #E1FEDB 0% 0% no-repeat padding-box;
}

.item-error {
  background: #193B47 0% 0% no-repeat padding-box;
}

.item-error-left {
  background: #FFD9D9 0% 0% no-repeat padding-box;
}

.speaker-modal-header {
  border-bottom: 1px solid #5A6D7E;
  margin-bottom: 10px;
}

.speaker-modall-title span {
  left: 145px;
}

.speaker-list-title {
  text-align: left;
  font: normal normal 500 13px Poppins;
  letter-spacing: 0px;
  color: #01E9A1;
  padding-left: 20px;
  margin-bottom: 5px;
}

.active-triangle2 {
  left: 50px;
}

.nt-avatar {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.speaker-item.speaker-item {
  padding: 0 15px 0 5px;
}

.st-offer-sent.st-offer-sent {
  background: #143744;
}

.speaker-item-left.speaker-item-left {
  width: 65px;
}

.offer-sent-title {
  text-align: left;
  font: normal normal 500 15px Poppins;
  letter-spacing: 0px;
  color: #01E9A1;
}

.interest-received {
  background: #245161;
}

.interest-received-title {
  font: normal normal 600 14px/21px Poppins;
  letter-spacing: 0px;
  color: #FCC161;
}

.speaker-item-right {
  position: relative;
}

.speaker-right-subtitle {
  text-align: left;
  font: normal normal 550 14px/21px Poppins;
}

.st-offer-rejected.st-offer-rejected {
  background: #234855;
}

.offer-rejected-title {
  color: #F66969;
  font: normal normal 550 14px/21px Poppins;
}

.speaker-today-list.speaker-today-list, .speaker-old-list.speaker-old-list {
  gap: 2px;
}

.min-min {
  display: block;
  position: absolute;
  font: normal normal normal 12px/18px Poppins;
  right: 5px;
  top: 18px;
}

.interest-rejected {
  background: #435A71;
}

.interest-rejected-title {
  color: #F66969;
}

.offer-rejected-subtitle, .interest-rejected-subtitle {
  font: normal normal normal 14px/21px Poppins;
}

.speaker-right-title {
  margin-top: 10px;
  margin-bottom: 0;
}

.st-no-offer {
  background: #245161;
}

.st-noOffer-subtitle, .st-old-subtitle {
  margin-top: 19px;
  font: normal normal normal 14px/21px Poppins;
}

.speaker-yesterday-list {
  gap: 2px;
}

.modal-content-item {
  cursor: pointer;
}

.modal-content-item:hover {
  opacity: 0.8;
}

.st-old-item {
  background: transparent;
}

.border-border {
  border-bottom: 1px solid #5A6D7E;
  opacity: 0.4;
  width: 95%;
  margin: 0 auto;
}

.header-modal-content {
  margin-bottom: 20px;
}

.header-modal-footer {
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
}

.speaker-footer-title {
  color: #01E9A1;
  font: normal normal 500 14px/18px Poppins;
  cursor: pointer;
}
.speaker-footer-title:hover {
  color: #01E9A1;
  text-decoration: none;
}

.title-underline {
  border-bottom: 1px solid #01E9A1
}

.unread-item .item-left {
  position: relative;
}

.unread-item .unread-item-circle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #E90101 0% 0% no-repeat padding-box;
  border-radius: 100%;
  left: 48px;
  top: 14px;
}

/* seeker-profile empty */
.seekerMob-main_block .seeker-progress {
  width: 970px;
  margin-top: 0;
}

.driver-license {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent linear-gradient(106deg, #AFF5E2 0%, #F9FCD4 100%) 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 29px;
  width: 200px;
  height: 48px;
  gap: 5px;
  cursor: pointer;
  border: none;
}

.driver-license:focus {
  outline: none;
}

.driver-license p {
  font: normal normal 600 16px/25px Poppins;
  letter-spacing: 0px;
  color: #202541;
  text-shadow: 0px 3px 6px #00000029;
  margin: 0;
}

.seeker-empty-content-btn {
  display: flex;
  gap: 15px;
}

.seeker-progress {
  display: flex;
  align-items: center;
  position: relative;
}

.seeker-progress-bar {
  width: 100%;
  height: 8px;
  margin: 0px 4px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.progress-step-list {
  position: absolute;
  width: calc(100% - 8px);
  height: 100%;
  z-index: 2;
  display: flex;
  left: 7px;
  cursor: pointer;
}

.progress-step {
  display: block;
  width: 25%;
  height: 100%;
  border-right: 1px solid #8593A1;;
}

.progress-step4 {
  border: none;
}

.progress-step-hover_list {
  display: flex;
  justify-content: space-around;
  width: 100%;
  max-width: 815px;
  padding-top: 20px;
  position: absolute;
  z-index: 10;
  pointer-events: none;
}

.progress-step-hover {
  width: 148px;
  height: 67px;
  background: #202841 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #00000029;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 10px 10px 0 10px;
  border-radius: 8px;
  position: relative;
}

.progress-step-hover_title {
  display: block;
  text-align: center;
  font: normal normal normal 12px/18px Poppins;
  letter-spacing: 0px;
  color: #01E9A1;
  margin: 5px;
  cursor: text;
}

.progress-step-hover_subtitle {
  display: block;
  text-align: center;
  font: normal normal normal 12px/18px Poppins;
  letter-spacing: 0px;
  color: #8593A1;
  cursor: text;
}

.seeker-profile-tab_content {
  padding-top: 15px;
}

.progress-step-hover::before {
  content: "";
  display: block;
  position: absolute;
  height: 15px;
  width: 25px;
  background: #202841 0% 0% no-repeat padding-box;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
  left: 50%;
  top: -15px;
  transform: translateX(-50%);
}

.progress-step-hover {
  opacity: 0;
  visibility: hidden;
}

.driver-license:hover {
  background: #fff;
}

.progress-step-module {
  width: 100%;
  max-width: 815px;
  list-style: none;
  display: flex;
}

.progress-step-module li {
  flex: 1;
  text-align: right;
  cursor: text;
  font: normal normal 500 14px/21px Poppins;
  color: #01E9A1;
  position: relative;
  top: .8rem;
  left: 25px;
  opacity: 0;
  visibility: hidden;
  transition: .5s ease all;
}

.module-active.module-active {
  visibility: visible;
  opacity: 1;
  transition: 1.3s ease all;
}

/* seeker profile edit start */

.seeker-distanceTravel {
  width: 290px;
  height: 44px;
  box-shadow: 0px 3px 6px #00000029;
  border: 1px solid #E4E4E4;
  border-radius: 10px;
  font-size: 16px;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 5px 20px;
  background: transparent;
  margin: 5px 0 30px;
  cursor: pointer;
}


.seeker-profile-edit_inpBlock {
  width: 290px;
  display: flex;
}

.professionalLicense {
  width: 250px;
}

.download-professionalLicense-btn {
  width: 58px;
  height: 48px;
  display: block;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
}


.rangeBlock {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.6s ease all;
  position: fixed;
}

.rangeBlock-active {
  position: static;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: 0.6s ease all;
}

.rangeBlock-header {
  margin-top: 50px;
}

.rangeBlock-header-title {
  margin-bottom: 20px;
}

.rangeBlock-header-subtitle {
  width: 649px;
  margin-top: 0;
  margin-bottom: 40px;
}

.demo-output {
  width: 600px;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.rangeBlock-label {
  display: flex;
  align-items: center;
  gap: 20px;
  font: normal normal 500 16px/25px Poppins;
  margin-top: 10px;
  position: relative;
  width:95px;
}

.customCheckbox {
  display: block;
  overflow: hidden;
  width: 25px;
  height: 21px;
  border: 1px solid #01E9A1;
  border-radius: 3px;
  cursor: pointer;
  position: relative;
}

.rangeBlock-input {
  opacity: 0;
  cursor: pointer;
  width: 25px;
  height: 21px;
  position: absolute;
}

.rangeBlock-label-checked .checkbox-arrow {
  visibility: visible;
  opacity: 1;
  z-index: 20;
  transition: 0.3s ease all;
}


.rangeBlock-label-checked{
  background: #01E9A1;
  transition: 0.3s ease all;
  position: relative;
}

.rangeBlock-label-checked::after {
  content: "";
  display: inline-block;
  width: 17px;
  height: 10px;
  border-left: 2px solid #233743;
  border-bottom: 2px solid #233743;
  transform: rotate(-49deg);
  position: absolute;
  left: 5px;
  top: 1px;
  transition: 0.3s ease all;
  pointer-events: none;
  z-index: 10;
}

.rangeBlock-saveBtn {
  width: 211px;
  height: 48px;
  background: transparent linear-gradient(102deg, #01E9A1 0%, #C4FFED 100%) 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #00000061;
  border-radius: 24px;
  border: none;
  cursor: pointer;
}
.rangeBlock-saveBtn:hover , .rangeBlock-saveBtn:focus , .backgroundCheckBtn:hover , .backgroundCheckBtn:focus,
.seeker-calendar-block .seeker-calendar-right-side .manage-availability-side .rangeBlock-resetBtn:hover ,
.seeker-calendar-block .seeker-calendar-right-side .manage-availability-side .rangeBlock-resetBtn:focus,
.main_block .manage-availability:hover , .main_block .manage-availability:focus {
  outline: none;
  border: none;
  background: #fff;
}

.backgroundCheck-text {
  font: normal normal 300 14px/24px Poppins;
  letter-spacing: 0px;
  color: #FFFFFF;
  margin-top: 50px;
}

.backgroundCheckBtn {
  font: normal normal 500 14px/21px Poppins;
  letter-spacing: 0px;
  color: #202541;
  text-shadow: 0px 3px 6px #00000029;
  width: 156px;
  height: 41px;
  background: transparent linear-gradient(100deg, #8AC0E9 0%, #BA98FF 100%) 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 29px;
  cursor: pointer;
  border: none;
}

::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #112A3B;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #243b4b;
}


.modal-dialog {
  max-width: 730px!important;
  margin: 1.75rem auto;
}

.bell-svg {
  pointer-events: none;
}

.modall-close:hover , .modall-close2:hover {
  transition: .3s ease all;
  transform: translate(-20%, -20px) scale(1.2);
}

#time-range p {
  font-family:"Arial", sans-serif;
  font-size:14px;
  color:#333;
}
.ui-slider-horizontal {
  height: 8px;
  background: #D7D7D7;
  border: 1px solid #BABABA;
  box-shadow: 0 1px 0 #FFF, 0 1px 0 #CFCFCF inset;
  clear: both;
  margin: 8px 0;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
}
.ui-slider {
  position: relative;
  text-align: left;
}
.ui-slider-horizontal .ui-slider-range {
  top: -1px;
  height: 100%;
}
.ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  height: 8px;
  font-size: .7em;
  display: block;
  border: 1px solid #5BA8E1;
  box-shadow: 0 1px 0 #AAD6F6 inset;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  border-radius: 6px;
  background: #81B8F3;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgi…pZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0, 50% 100%, color-stop(0%, #A0D4F5), color-stop(100%, #81B8F3));
  background-image: -webkit-linear-gradient(top, #A0D4F5, #81B8F3);
  background-image: -moz-linear-gradient(top, #A0D4F5, #81B8F3);
  background-image: -o-linear-gradient(top, #A0D4F5, #81B8F3);
  background-image: linear-gradient(top, #A0D4F5, #81B8F3);
}
.ui-slider .ui-slider-handle {
  border-radius: 50%;
  background: #F9FBFA;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgi…pZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0, 50% 100%, color-stop(0%, #C7CED6), color-stop(100%, #F9FBFA));
  background-image: -webkit-linear-gradient(top, #C7CED6, #F9FBFA);
  background-image: -moz-linear-gradient(top, #C7CED6, #F9FBFA);
  background-image: -o-linear-gradient(top, #C7CED6, #F9FBFA);
  background-image: linear-gradient(top, #C7CED6, #F9FBFA);
  width: 22px;
  height: 22px;
  -webkit-box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.6), 0 -1px 0 1px rgba(0, 0, 0, 0.15) inset, 0 1px 0 1px rgba(255, 255, 255, 0.9) inset;
  -moz-box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.6), 0 -1px 0 1px rgba(0, 0, 0, 0.15) inset, 0 1px 0 1px rgba(255, 255, 255, 0.9) inset;
  box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.6), 0 -1px 0 1px rgba(0, 0, 0, 0.15) inset, 0 1px 0 1px rgba(255, 255, 255, 0.9) inset;
  -webkit-transition: box-shadow .3s;
  -moz-transition: box-shadow .3s;
  -o-transition: box-shadow .3s;
  transition: box-shadow .3s;
}
.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 22px;
  height: 22px;
  border: none;
  cursor: pointer;
}
.ui-slider .ui-slider-handle:after {
  content:"";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  top: 50%;
  margin-top: -4px;
  left: 50%;
  margin-left: -4px;
  background: #30A2D2;
  -webkit-box-shadow: 0 1px 1px 1px rgba(22, 73, 163, 0.7) inset, 0 1px 0 0 #FFF;
  -moz-box-shadow: 0 1px 1px 1px rgba(22, 73, 163, 0.7) inset, 0 1px 0 0 white;
  box-shadow: 0 1px 1px 1px rgba(22, 73, 163, 0.7) inset, 0 1px 0 0 #FFF;
}
.ui-slider-horizontal .ui-slider-handle {
  top: -.5em;
  margin-left: -.6em;
}
.ui-slider a:focus {
  outline:none;
}

#time-range , #time-range2 {
  flex: 1;
}

.time-range {
  position: relative;
  flex: 1;
}

#time-range p , .time-range p {
  font: normal normal normal 18px Poppins;
  letter-spacing: 0px;
  color: #8AB2C1;
}

.time-range p span {
  position: absolute;
  transform: translateY(-170%);
  width: 90px;
}

.slider-time-cord1 {
  left: 25% !important;
}

.slider-time-cord2 {
  left: 75% !important;
}

.ui-widget-content.ui-widget-content.ui-widget-content {
  background: #425B6A;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.ui-slider-horizontal .ui-slider-handle {
  background: #01E9A1;
}

.ui-slider-handle.ui-state-default.ui-corner-all   {
  background: #01E9A1;
  top: -.5em;
  border: 0;
  box-shadow: none;
  cursor: pointer;
}

.ui-slider-range.ui-widget-header {
  background: #01E9A1;
  border: 4px solid #01E9A1;
  z-index: 1;
}

.ui-slider-handle.ui-state-default.ui-corner-all:after {
  border: 0;
  background: #fff;
  width: 18px;
  height: 18px;
  box-shadow: none;
  margin-top: -9px;
  margin-left: -8.7px;
}

.ui-slider-handle.ui-state-default.ui-corner-all:focus {
  border: 0;
}

.ui-slider-horizontal {
  height: 4px !important;
}

.time-range.ui-slider.ui-slider-horizontal.ui-widget.ui-widget-content.ui-corner-all {
  cursor: pointer;
}

.seeker-privacyPolicy-main_block.seeker-privacyPolicy-main_block  {
  padding: 40px 20px;
}

.seeker-driver-license {
  margin-top: 10px;
  margin-left: -5px;
}
.aboutUs-title.aboutUs-title.aboutUs-title {
  position: relative;
  margin-bottom: 48px;
  text-align: left;
}

.aboutUs-title:after {
  content: '';
  position: absolute;
  display: block;
  width: 77px;
  height: 6px;
  background: #01E9A1 0% 0% no-repeat padding-box;
  border-radius: 3px;

}

.seeker-help-contact-description.seeker-help-contact-description.seeker-help-contact-description {
  margin: 42px auto;
  text-align: left;
  max-width: 100%;
  font: normal normal normal 14px/28px Poppins;
  padding: 0;
  color: #C5C7C9;
}

.seeker-help-faq-title.seeker-help-faq-title.seeker-help-faq-title   {
  margin-bottom: 40px;
  margin-top: 40px;
}

.seeker-grabShift-map-image.seeker-grabShift-map-image {
  background: transparent;
  overflow-y: auto;
}

.seeker-map-img-container {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.seeker-grab-map_content {
  width: 100%;
  padding: 50px 15px;
}

.grCalTitle {
  font: normal normal normal 12px/18px Poppins;
  letter-spacing: 0px;
  color: #FFFFFF;
}

.seeker-grab-calendarBl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-left: 40px;
  padding-top: 80px;
}

.grab-calendar-wrap {
  width: 360px;
}

.grab-clMonth-list {
  display: flex;
  list-style: none;
  background: #223442;
  border-radius: 10px 10px 0px 0px;
  border: 1px solid #3E4C58;
  margin: 0;
}

.cl-item-month {
  flex: 1;
  text-align: center;
  border-right: 1px solid #3E4C58;
  padding: 5px;
}

.cl-item-month:last-child {
  border: 0;
}

.grab-clDays-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(5, 1fr);
  background: #131623;
  border-left: 1px solid #3E4C58;
}

.grab-clDays-list-item {
  font-size: 10px;
  text-align: right;
  padding: 5px;
  border-right: 1px solid #3E4C58;
  border-bottom: 1px solid #3E4C58;
  min-height: 40px;
  cursor: pointer;
}

.cl-red-item {
  background: #710A0A !important;
}

.cl-lightGr-item {
  background: #233743 0% 0% no-repeat padding-box !important;
  border: 1px solid #01E9A1;
  color: #01E9A1;
}

.cl-lightGray-item {
  background: #233743 0% 0% no-repeat padding-box !important;
  border: 1px solid !important;
}

.cl-yellow-item {
  background: #FCC562 0% 0% no-repeat padding-box !important;
  border: 1px solid !important;
}

.cl-blue-item {
  background: #4891FF 0% 0% no-repeat padding-box !important;
}

.calendar-title-back , .calendar-title-next  {
  cursor: pointer;
  font-size: 14px;
}

.grab-calendarBl-right {
  flex: 1;
}

.grab-calendarRight-list , .grab-calendarDays-list2 {
  list-style: none;
  display: flex;
  margin: 0;
}

.grab-calendar-right_inner {
  height: 222px;
  min-width: 90%;
  margin: 50px 50px;
  animation: fadeIn 1s ease-in both;
}

.grab-calendar-right_inner.second {
  display: none;
}


.grab-calendarRight-list {
  border-radius: 10px 10px 0px 0px;
  background: #223442;
  border: 1px solid #3E4C58;
}

.grab-calendarDays-list2 {
  height: 159px;
}

.grab-calendarRight-list .cl-item-month {
  flex: 1;
  border-right: 1px solid #3E4C58;
  font: normal normal normal 21px/31px Poppins;
  line-height: 50px;
}

.grab-calendarRight-list .cl-item-month:last-child {
  border-right: 0;
}

.grab-calendarDays-list2 .grab-calendarDays-list2_item {
  flex: 1;
  height: 75%;
  text-align: right;
  padding-right: 15px;
  border: 1px solid #3E4C58;
  position: relative;
  z-index: 1;
  background: #131623;
  cursor: pointer;
}

.seeker-grabShift_card .location {
  padding-left: 29px;
  padding-bottom: 2px !important;
}

.calendarDays-list2_item-notification1 {
  background: #233743 0% 0% no-repeat padding-box;
  border-radius: 5px;
  width: 48px;
  height: 44px;
  display: flex;
  align-items: center;
  position: absolute;
  font: normal normal normal 14px/21px Poppins;
  justify-content: center;
  bottom: 10px;
  left: 10px;
}

.calendarDays-list2_item-notification2 {
  position: absolute;
  bottom: 10px;
  left: 10px;
  text-align: left;
}

.calendarDays-list2_item-notification2 p {
  font: normal normal normal 14px Poppins;
  margin: 0;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.seekerGrab-calendar_status {
  margin-left: 20px;
}

.graay.status_box {
  width: 20px;
  height: 20px;
  border-radius: 3px;
  margin-right: 10px;
  background: #233743;
}

.available.status_box {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  border: 1px solid #576268;
  border-radius: 3px;
}

.seeker-grab-content_txt {
  text-align: left;
  font: normal normal 300 14px/21px Poppins;
  letter-spacing: 0px;
  color: #FCC562;
  margin-left: 20px;
  margin-top: 10px;
  padding-top:20px;
}

.cl-light-color {
  color: #8593A1;
}

.seeker-shiftActivity-card.seeker-shiftActivity-card {
  min-height: 480px;
}

.withdraw-btn.withdraw-btn.withdraw-btn {
  background: transparent linear-gradient(100deg, #D08AE9 0%, #BA98FF 100%) 0% 0% no-repeat padding-box;
  font: normal normal 500 14px/21px Poppins;
  color: #202541;
  text-shadow: 0px 3px 6px #00000029;
  margin: 0;
}

.seekerShiftAct-express {
  gap: 8px;
}

.seekerShiftAct-express button  {
  margin: 0px 10px 0px 0px !important;
  gap: 5px;
  font: normal normal 500 15px/21px Poppins !important;
  color: #202941 !important;
  text-shadow: 0px 3px 6px #00000029 !important;
}

.newHourlyRate-border {
  margin: auto;
  border-bottom: 1px dashed;
  color: #5A6D7E80;
  letter-spacing: 1.5px;
  width: 98%;
    margin: 10px auto;
}

.shift-newHourlyRate {
  display: flex;
  justify-content: space-between;
  /* padding-right: 30px; */
}

.shift-newHourlyRate .shift-newHourlyRate-txt {
  text-align: left;
  font: normal normal normal 15px Poppins;
  letter-spacing: 0px;
  color: #FCC562;
  margin: 0px;
}

.seekerShiftAc-spec_specification.seekerShiftAc-spec_specification {
  justify-content: flex-start;
  gap: 8px;
}

.seekerShiftActiv-cardHours.seekerShiftActiv-cardHours {
  font: normal normal normal 13px Poppins;
  color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  /* align-items: center; */
  float: right;
}

.seekerShiftActiv-cardHours span {
  display: block;
  position: relative;
  overflow: hidden;
  line-height: 40px;
  width: 100%;
}

.seekerShiftActiv-cardHours-left {
  text-align: right;
}

.seekerShiftActiv-cardHours-left:before {
  content: '';
  position: absolute;
  display: block;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  border: 3px solid #01E9A1;
  z-index: 1;
}

.seekerShiftActiv-cardHours:after {
  content: '';
  position: absolute;
  display: block;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  border: 3px solid #8394E5;
}

.seeker-shiftActicityLocation {
  margin-top: 2px;
}

.shiftActiv-accpet.shiftActiv-accpet.shiftActiv-accpet {
  background: transparent linear-gradient(115deg, #24AF84 0%, #6ED9B8 100%) 0% 0% no-repeat padding-box;
}

.shiftActiv-counter.shiftActiv-counter.shiftActiv-counter {
  background: transparent linear-gradient(121deg, #C3E1ED 0%, #99A6DF 100%) 0% 0% no-repeat padding-box;
}

.shiftActiv-reject.shiftActiv-reject.shiftActiv-reject {
  background: transparent linear-gradient(112deg, #FB9D9D 0%, #FF4D4D 100%) 0% 0% no-repeat padding-box;
}

.seekerShiftAct-share.seekerShiftAct-share.seekerShiftAct-share.seekerShiftAct-share {
  transform: translate(25px,30px);
}

.seekerAvailabilityModal-content.seekerAvailabilityModal-content {
  width: 604px !important;
  height: 279px !important;
}

.seekerAvailabilityModal-header.seekerAvailabilityModal-header.seekerAvailabilityModal-header.seekerAvailabilityModal-header.seekerAvailabilityModal-header {
  border: none !important;
}

.seekerAvailabilityModal-text {
  font: normal normal 500 21px/31px Poppins;
  color: #FFFFFF;
  width: 90%;
  margin: 30px auto;
}

.seekerAvailabilityModal-text-hours {
  cursor: pointer;
  display: inline-block;
  cursor: pointer;
  color: #01E9A1;
}

.seekerAvailabilityModal-ok-btn.seekerAvailabilityModal-ok-btn {
  width: 114px;
  height: 38px;
  background: transparent linear-gradient(105deg, #84FFD5 0%, #AEECD7 100%) 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 29px;
  font: normal normal 500 12px/18px Poppins;
  color: #202941;
  text-shadow: 0px 3px 6px #00000029;
  opacity: 1;
  display: block;
  margin: 0 auto;
  float: none;
}

.seekerCircleBtn-block {
  width: 58px;
  height: 30px;
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 15px;
  position: relative;
  background: #5A6D7E;
  cursor: pointer;
}

.seekerCircleBtn-circle {
  position: absolute;
  width: 26px;
  height: 26px;
  background: #01E9A1;
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 50%;
  left: 0;
  top: 2px;
  transition: .3s ease;
  pointer-events: none;
}

.seekerCircleBtn-block-active {
  background: #233743;
}

.seekerCircleBtn-block-active .seekerCircleBtn-circle {
  transition: .3s ease;
  transform: translateX(116%);
}

.seekerQuickAvailability-modalHeader {
  display: block;
}

.seekerQuickAvailability-modalHeader .close {
  transform: translateY(5px);
}

.seekerQuickAvailability-modalLabel {
  font: normal normal 500 16px/25px Poppins;
  color: #01E9A1;
}

.seekerQuickAvailability-modalDate , .seekerQuickAvailability-modalHours {
  display: block;
  box-shadow: 0px 3px 6px #00000029;
  border: 1px solid #FFFFFF;
  border-radius: 10px;
  width: 100%;
  height: 44px;
  padding: 10px;
  background: transparent;
  color: #fff;
  position: relative;
}

.seekerQuickAvailability-modalHoursBlock {
  display: flex;
  gap: 10px;
}

.seekerQuickAvailability-modalHours {
  flex: 1;
  padding-left: 20px;
}

.seekerQuickAvailabilityModal.seekerQuickAvailabilityModal.seekerQuickAvailabilityModal {
  width: 552px;
  min-height: 459px;
}

.saveAvailability-btnBlock {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.seekerQuickAvailabilityModal-save-btn.seekerQuickAvailabilityModal-save-btn.seekerQuickAvailabilityModal-save-btn {
  width: 211px;
  height: 48px;
  background: transparent linear-gradient(102deg, #01E9A1 0%, #C4FFED 100%) 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #00000061;
  border-radius: 24px;
  opacity: 1;
  font: normal normal 600 16px/25px Poppins;
  color: #223242;
}

.modal_Border-seeker {
  color: #5A6D7E;
  opacity: 0.41;
  letter-spacing: 1px;
  margin: 20px 0 10px 0;
  width: 105%;
  margin-left: -10px;
}

.seekerQuickAvailability-modalTitle {
  width: 100%;
  text-align: center;
  font: normal normal 600 29px/43px Poppins;
  color: #FFFFFF;
}

.seeker-main_title {
  margin-left: 13% !important;
}

.grab-calendarBl-left .grCalTitle {
  display: flex;
  align-items: center;
  gap: 5px;
}

.grab-calendarBl-left .grCalTitle span {
  display: block;
  line-height: 30px;
}

.seekerQuickAvailability-modalDate::-webkit-calendar-picker-indicator {
  font-size: 20px;
  cursor: pointer;
  filter: invert(0.8);
}

.seekerQuickAvailability-modalDate::after {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
  /*background-image: url();*/
}

.seekerShiftAct-titleOf {
  cursor: pointer;
  width: 100%;
  max-width: 160px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.seekerShiftAct-titleOf:hover:after {
  content:attr(data-text);
  overflow: visible;
  text-overflow: inherit;
  position: fixed;
  z-index: 1;
  left:auto;
  top:auto;
  width: auto;
  max-width: 18rem;
  border-radius: 10px;
  padding: 0 .5rem;
  background: #223142 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #00000029;
  white-space: normal;
  word-wrap: break-word;
  display: block;
  color: #ffffff;
  margin-top: 0.7rem;
  font-size: 16px;
}

.showDetalisModal-content.showDetalisModal-content {
  width: 838px;
  min-height: 632px;
  left: 50%;
  transform: translateX(-50%);
}

.modal-title.share-shift-modal-title.modal-title.share-shift-modal-title.modal-title.share-shift-modal-title {
  padding: 0;
  font: normal normal 500 29px/20px Poppins;
  color: #fff;
}

.skShMd-innerRight {
  flex: 1;
  padding-top: 15px;
}
.skShMd-innerRight-title {
  height: 30px;
  display: flex;
  gap: 43px;
}

.skShMd-innerRight-title p {
  font: normal normal 600 25px/14px Poppins;
  letter-spacing: 0px;
  color: #ffffff;
  margin: 0 !important;
}

.skShMd-innerRight-title img {
  display: block;
  margin-top: -2px;
}

.seekerShift-modalBody-inner .seekerShift-modalBody-header {
  gap: 10px;
  padding-top: 10px;
}

.skShMd-innerRight-title2-list {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 !important;
}

.skShMd-innerRight-title2-list li {
  display: flex;
  gap: 12px;
}

.skShMd-innerRight-title2-list li .seekerModalText {
  font: normal normal normal 15px Poppins;
  letter-spacing: 0;
  color: #ffffff;
}

.skShMd-innerRight-title2-list li img {
  margin-top: 4px;
}

.seekerModalCoins {
  font: italic normal normal 16px/25px Poppins;
  letter-spacing: 0;
  color: #01e9a1;
  margin-left: 40px;
}

.skShMd-innerRight-title3-list {
  gap: 10px;
}

.skShMd-innerRight-title3-list {
  justify-content: space-between;
  padding-right: 20px;
  margin: 0 !important;
}

.showDetalisModal-content {
  padding-left: 0 !important;
}

.showDetalisModal-content .modal-body {
  padding-left: 20px !important;
}

.skShMd-innerRight-title3-list li:nth-child(2) {
  margin-left: -2%;
}

.skShMd-innerRight-title3-list li:nth-child(3) p {
  margin-left: -22% !important;
}

.modal-spec_specification {
  width: 100px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.newHourlyRate-border2 {
  letter-spacing: 3px;
  width: 105%;
  margin-left: 15px;
  color: #5a6d7e80;
  letter-spacing: 3px;
}

.modal-seeker-shiftActicityLocation {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 35px;
  margin-bottom: 18px;
  margin-top: 0;
}

.seekerShiftAcModal-footerImgBlock {
  width: 95%;
  height: 170px;
  margin: 0 auto;
}

.seekerShiftAcModal-footerImgBlock img {
  display: block;
  width: 103%;
  height: 100%;
  object-fit: cover;
}

.seekerShModal-shareBl {
  position: relative;
  height: 30px;
  margin-top: 10px;
  width: 90%;
}

.seekerShModal-shareBl .share {
  background: url(../img/images/share.svg) no-repeat;
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  transform: none !important;
  right: -10px;
  top: 50%;
}

.shiftActFilt-txt {
  text-align: left;
  font: normal normal normal 18px Poppins;
  color: #ffffff;
  margin-left: 5px;
}

.seeker-checkbox-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.seeker-checkbox-item .seeker-shitActPending {
  font: normal normal normal 18px Poppins;
  color: #8593a1;
  margin-left: 20px;
}

.seeker-checkbox-item .seeker-shitActPending .customCheckbox {
  margin: 0 20px;
}

.seeker-map-img-container {
  margin-top: 20px;
  display: flex;
}

.seeker-map-img-containerHide {
  display: none !important;
}

.seeker-pending-container {
  display: none !important;
}

.seeker-pending-containerActive {
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
  display: block !important;
}

.closedCircle {
  font: normal normal normal 13px Poppins;
  color: #4891ff;
  position: relative;
  display: block;
  width: 30px;
  top: -12px;
  left: -30px;
}

.closedCircle::after {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4891ff;
  top: 6px;
  right: -28px;
}

.seekerShiftAct-email,
.seekerShiftAct-phone,
.seekerShiftAct-global {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  line-height: 20px;
}

.seekerShiftAct-email img, .seekerShiftAct-phone img, .seekerShiftAct-global img {
  width: 17px !important;
  height: 12px !important;
}

.seekerShiftAct-global {
  margin-bottom: 20px;
}

.seekerShiftAct-email span,
.seekerShiftAct-phone span,
.seekerShiftAct-global span {
  font: normal normal normal 14px/21px Poppins;
}

.seekerShAct-cancel-btn.seekerShAct-cancel-btn {
  width: 145px;
  height: 38px;
  background: transparent linear-gradient(102deg, #f3fffb 0%, #99bdc9 100%) 0%
  0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 29px;
}

.seekerGrab-main_title {
  margin-left: 14%;
}


.cancelModal-section1 {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 20px;
}

.cancelModal-select {
  max-width: 485px;
  width: 100%;
  height: 44px;
  box-shadow: 0px 3px 6px #00000029;
  border: 1px solid #ffffff;
  border-radius: 10px;
  background: transparent;
  padding: 0 17px;
  color: #ffffff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.cancelModal-select option {
  background: #363f4b;
  padding: 8px;
}

.cancelModal-textarea {
  display: block;
  background: #1f2737 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #00000029;
  border: 1px solid #ffffff;
  border-radius: 10px;
  width: 100%;
  height: 118px;
  padding-top: 10px;
  padding-left: 10px;
  color: #fff;
  font-size: 15px;
}

.cancelModal-section2 {
  margin: 60px 0;
}

.cancelModal-submit-btn {
  width: 156px;
  height: 41px;
  background: transparent linear-gradient(102deg, #fff9f1 0%, #9cf3e5 100%) 0%
  0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 29px;
  border: none;
  outline: none;
  cursor: pointer;
}

.cancelModal-submit-btn:focus,
.cancelModal-submit-btn:active {
  border: none;
  outline: none;
}

.user_inputs.seekerProfile-section1 {
  justify-content: space-between;
  width: 60%;
  margin-bottom: 20px;
}

.seekerProfile-section1-img {
  display: flex;
  align-items: center;
  justify-content: space-between !important;
  gap: 10px;
  font: normal normal normal 29px/43px Poppins;
  letter-spacing: 0px;
  margin-bottom: 20px;
}

.lineHeight50 {
  line-height: 50px;
}

.seekerProfile-user_content {
  width: 100%;
  padding-top: 20px;
  border-bottom: 1px solid #545454;
  padding-right: 20%;
  display: flex;
}

.seekerProfLists {
  display: inline;
  flex-wrap: wrap;
  gap: 40px;
}

.seekerProfList-items-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.seekerProfList-items-left .sLeftText {
  font: normal normal normal 20px/30px Poppins;
  letter-spacing: 0px;
  color: #01e9a1;
}

.sRightText {
  font: italic normal normal 21px/31px Poppins;
  letter-spacing: 0px;
  color: #ffffff;
}

.seekerProfList1 {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.seekerProfList-items {
  display: flex;
  justify-content: space-between;
  margin: 12px 10px;
}

.seekerProfList-items-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.seekerDowBtn {
  width: 72px;
  height: 41px;
  background: transparent linear-gradient(125deg, #aff5e2 0%, #f9fcd4 100%) 0%
  0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 29px;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.seekerPr-mileSelect {
  display: block;
  height: 44px;
  box-shadow: 0px 3px 6px #00000029;
  border: 1px solid #ffffff;
  border-radius: 10px;
  width: 80%;
  margin: 20px auto;
  background: transparent;
  color: #fff;
  padding: 0 10px;
}

.seekerPr-mileSelect option {
  background: #03080a;
}

.seekerAboutInfo-title {
  width: 83px;
  text-align: left;
  font: normal normal medium 16px/25px Poppins;
  letter-spacing: 0px;
  color: #01e9a1;
  margin-top: 20px;
}

.seekerAboutInfo-text {
  width: 556px;
  text-align: left;
  font: normal normal normal 16px/25px Poppins;
  letter-spacing: 0px;
  color: #ffffff;
}

.pppp {

}

.calendar_block.seeker-calendar-block .calendar_status {
  margin-bottom: 100px;
  flex-wrap: wrap;
}

.main_block .manage-availability {
  width: 100%;
  max-width: 211px;
  height: 48px;
  background: transparent linear-gradient(102deg, #01E9A1 0%, #C4FFED 100%) 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #00000061;
  border-radius: 12px;
  font: normal normal 600 16px/25px Poppins;
  color: #223242;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  cursor: pointer;
}

/* .calendar_block.seeker-calendar-block .fc-day-past[data-date="2021-09-22"] {
  background: #FCC562;
  border: 1px solid #3E4C58;
}

.calendar_block.seeker-calendar-block .fc-day[data-date="2021-09-16"],
.calendar_block.seeker-calendar-block .fc-day[data-date="2021-09-17"] {
  background: #233743 0% 0% no-repeat padding-box;
  border: 1px solid #3E4C58;
} */

.calendar_block.seeker-calendar-block .fc-day-today, #seeker-grab-shift .fc-day-today {
  background: #131623 0% 0% no-repeat padding-box !important;
  border: 1px solid #01E9A1 !important;
}

/* .calendar_block.seeker-calendar-block .fc-day[data-date="2021-09-30"] {
  background: #E58686 0% 0% no-repeat padding-box;
}

.calendar_block.seeker-calendar-block .fc-day[data-date="2021-09-18"] {
  background: #4891FF 0% 0% no-repeat padding-box;
  border: 1px solid #3E4C58;
} */

.calendar_block.seeker-calendar-block  .fc-toolbar-chunk, #seeker-grab-shift .fc-toolbar-chunk {
  align-items: center;
}

.calendar_block.seeker-calendar-block .fc-button-primary, #seeker-grab-shift .fc-button-primary {
  background: transparent !important;
  border: none !important;
}

.calendar_block.seeker-calendar-block .fc-button-primary:focus, #seeker-grab-shift .fc-button-primary:focus {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}

.calendar_block.seeker-calendar-block .fc-toolbar-title, #seeker-grab-shift .fc-toolbar-title {
  font: normal normal normal 16px/25px Poppins !important;
}

.calendar_block.seeker-calendar-block .fc .fc-daygrid-day-events {
  justify-content: flex-start;
}

.calendar_block.seeker-calendar-block .shift-time {
  background: transparent;
  width: 200px;
  padding: 0 15px;
  margin: -40px 0;
}


.calendar_block.seeker-calendar-block .shift-time:after {
  content: "09:00 - 17:00";
  background: url("../img/clock_white.svg") no-repeat left;
  font: normal normal normal 16px/25px Poppins;
  color: #FFFFFF;
  padding-left: 25px;
  white-space: inherit;
}

.calendar_block.seeker-calendar-block.custom-calender .shift-time:after {
  white-space: break-spaces;
  font: normal normal normal 14px/25px Poppins;
  margin-left: -10px;
}

.calendar_block.seeker-calendar-block .shift-cost {
  background: transparent;
  width: 200px;
  padding: 0 15px;
}

.calendar_block.seeker-calendar-block .shift-cost:after {
  content: "$5";
  background: url("../img/coins.svg") no-repeat left;
  font: normal normal normal 16px/25px Poppins;
  color: #FFFFFF;
  padding-left: 25px;
}

.calendar_block.seeker-calendar-block .shift-time.like-icon {
  background: url("../img/like_icon.svg") right no-repeat;
  padding-bottom: 30px;
}

.calendar_block.seeker-calendar-block .completed {

}

.express-interest-modal .express-interest-modal-dialog {
  max-width: 694px !important;
}

.express-interest-modal .express-interest-modal-dialog .express-interest-modal-content {
  height: 755px auto;
  background: transparent linear-gradient(180deg, #272F36 0%, #181E39 100%) 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 20px #121B20;
  border: 1px solid #5A6D7E;
  border-radius: 10px;
  /* padding: 22px 30px; */
}

.express-interest-modal .express-interest-modal-dialog .express-interest-modal-content .express-interest-modal-header .express-interest-modal-title {
  /*padding-left: 52px;*/
  font: normal normal 600 29px/43px Poppins;
  color: #FFFFFF;
}

.express-interest-modal .express-interest-modal-dialog .express-interest-modal-content .express-interest-content {
  padding: 0 20px;
}

.express-interest-modal .express-interest-modal-dialog .express-interest-modal-content .express-interest-content .title-part .title-of-practice {
  font: italic normal 600 20px/30px Poppins;
  color: #01E9A1;
}

.express-interest-modal .express-interest-modal-dialog .express-interest-modal-content .express-interest-content .title-part .right-side {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.express-interest-modal .express-interest-modal-dialog .express-interest-modal-content .express-interest-content .title-part .right-side .date {
  font: normal normal normal 18px/27px Poppins;
  color: #FFFFFF;
  margin-left: 34px;
  padding-left: 30px;
  background: url("../img/images/calendar-green.svg") no-repeat left;
}

.express-interest-modal .express-interest-modal-dialog .express-interest-modal-content .express-interest-content .title-part .right-side .specialist-name.dentist {
  font: normal normal normal 18px/27px Poppins;
  margin-left: 34px;
  padding-left: 30px;
  background: url(../img/dentist.svg) no-repeat left;
  color: #39C3F5;
}

.express-interest-modal .express-interest-modal-dialog .express-interest-modal-content .express-interest-content .name-part img {
  border-radius: 50%;
  width: 63px;
  height: 64px;
}

.express-interest-modal .express-interest-modal-dialog .express-interest-modal-content .express-interest-content .name-part .name {
  font: normal normal 600 25px/38px Poppins;
  letter-spacing: 0px;
  color: #FFFFFF;
  padding-left: 17px;
}


.express-interest-modal .express-interest-modal-dialog .express-interest-modal-content .express-interest-content .hourly-rate {
  font: normal normal normal 18px/27px Poppins;
  color: #01E9A1;
}

.express-interest-modal .express-interest-modal-dialog .express-interest-modal-content .express-interest-content .hourly-rate span {
  color: #ffffff;
}

.express-interest-modal .express-interest-modal-dialog .express-interest-modal-content .express-interest-content .shift-timings label,
.express-interest-modal .express-interest-modal-dialog .express-interest-modal-content .express-interest-content .expected-hourly-rate label {
  font: normal normal medium 15px/23px Poppins;
  letter-spacing: 0px;
  color: #01E9A1;
}


.express-interest-modal .express-interest-modal-dialog .express-interest-modal-content .express-interest-content .express-interest-btn {
 display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  cursor: pointer;
  max-width: 186px;
  width: 100%;
  height: 44px;
  background: transparent linear-gradient(100deg, #BEFEE8 0%, #9D83E5 100%) 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 29px;
  font: normal normal medium 18px/27px Poppins;
  color: #202941;
  text-shadow: 0px 3px 6px #00000029;
}

.selected-date {
  padding: 0 30px 30px;
  font-size: 22px;
}

#seeker-grab-shift {
  width: 100%;
  height: 98%;
/*   max-width: 355px;
  min-height: 355px; */
}

#seeker-grab-shift .fc-col-header-cell-cushion {
  margin-left: -30px;
  font-size: 12px;
}

#seeker-grab-shift .fc .fc-daygrid-day-frame {
  min-height: 38px !important;
}

#seeker-grab-shift .fc-daygrid-day-events, #seeker-grab-shift .fc-daygrid-day-events {
  position: relative;
  min-height: 0.26rem !important;
  height: 0;
}

#seeker-grab-shift .fc-event-title-container {
  background: transparent;
  border: none;
}

#seeker-grab-shift .fc-daygrid-day-number {
  font-size: 12px !important;
}

#seeker-grab-shift .fc-day[data-date="2021-09-01"] {
  background: rgb(113, 10, 10);
}

#seeker-grab-shift .fc-day[data-date="2021-09-10"] {
  background: rgb(72, 145, 255);
}

#seeker-grab-shift .fc-day[data-date="2021-09-20"] {
  background: #FCC562;
}

#seeker-grab-shift .fc-day[data-date="2021-09-23"], #seeker-grab-shift .fc-day[data-date="2021-09-04"]{
  background: #233743;
}

#seeker-grab-shift .fc-daygrid-day {
  cursor: pointer;
}

#seeker-grab-shift .fc-day-today .fc-daygrid-day-number {
  color: #01E9A1;
}

#seeker-grab-shift .fc-scrollgrid-sync-inner {
  display: flex;
  justify-content: flex-end;
}

.shift-details-offers-hourly-rate .seekerModalText {
  margin-left: 20px;
}

.right_cards.seeker-right_cards-mobile {
  display: none;
}

.profile-range-block .right-side {
  margin-left: auto;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}
.dot {
  height: 12px;
  width: 12px;
  background-color: red;
  border-radius: 50%;
  display: inline-block;
  margin-top:-19%;  
}
.express_interest_time_select{
	padding: 8px;
	margin: 4px 4px 4px 0px;
	width: 41% !important;
}
#shift_form1 .left-side .hourly_rate {
  top: 250px;
  left: 1.9%; 
}
#editShiftForm .left-side .hourly_rate {
 top: 250px;
  left: 1.9%; 
}

#postShift1 .modal-body {
	/*overflow-y:scroll;*/
}
.post-shift-modal .post-shift-modal-dialog .post-shift-modal-content .post-shift-modal-body .left-side .form-item .pr_cbs{
	height: 20px;
	width:60px; 
}
.prc_label {
  width: 187px;
  color: #fff !important;
  margin-left: 8px;
}
#seekerShiftDetalis .showDetalisModal-content.showDetalisModal-content {	
	width:100% !important;
}
.sd_additional_info{
  color:#fff;
  margin-left:7.5%;
}
.sd_dental_soft, .sd_imaging_soft{
	color:#fff;
}
#seekerShiftDetalis .showDetalisModal-content.showDetalisModal-content .status .dot.active-dot {
  background: #FCC562 !important;
}
#seekerShiftDetalis .showDetalisModal-content.showDetalisModal-content .status .active {
	color: #FCC562;
	text-transform: capitalize;
}
#seekerShiftDetalis .showDetalisModal-content.showDetalisModal-content .status .dot.completed-dot {
  background: #710a0a !important;
}
#seekerShiftDetalis .showDetalisModal-content.showDetalisModal-content .status .completed {
	color: #710a0a;
	text-transform: capitalize;
}
#seekerShiftDetalis .showDetalisModal-content.showDetalisModal-content .status .dot.closed-dot {
  background: #4891FF !important;
}
#seekerShiftDetalis .showDetalisModal-content.showDetalisModal-content .status .closed {
	color: #4891FF !important;
	text-transform: capitalize;
}
.branch_address_link
{
  color:#fff !important;
}
.sd_hourly_rate, .sd_estimited_earning, .sd_break_time, #sh_break_time{
	color:#eee !important;
}
.seeker-activity-info .imaging_software {
  background: url(../img/images/imaging_software.svg) no-repeat left;
  font: normal normal normal 15px Poppins;
  color: #FFFFFF;
  padding: 5.5px 0 5.5px 30px;
    padding-left: 30px;
  display: flex;
  justify-content: space-between;
  padding-left: 30px;
  /*width: 83%;*/
}
.seeker-activity-info .dental_software {
  background: url(../img/images/dental_software.svg) no-repeat left;
  font: normal normal normal 15px Poppins;
  color: #FFFFFF;
  padding: 5.5px 0 5.5px 30px;
    padding-left: 30px;
  display: flex;
  justify-content: space-between;
  padding-left: 30px;
  /*width: 83%;*/
}
.seeker-activity-info .additional_info {
  background: url(../img/images/additional_info.svg) no-repeat left;
  font: normal normal normal 15px Poppins;
  color: #FFFFFF;
  padding: 5.5px 0 5.5px 30px;
    padding-left: 30px;
  display: flex;
  justify-content: space-between;
  padding-left: 30px;
  /*width: 83%;*/
}
.main_block .activity-info .additional_info {
  background: url(../img/images/additional_info.svg) no-repeat left;
  font: normal normal normal 15px Poppins;
  color: #FFFFFF;
  padding: 5.5px 0 5.5px 30px;
    padding-left: 30px;
  display: flex;
  justify-content: space-between;
  padding-left: 30px;
  width: 83%;
}
#expressInterest .express-interest-modal-dialog .express-interest-modal-content .shift-note {
  font: normal normal 300 14px/21px Poppins;
  color: #FCC562 !important;
  margin-top: 13px;
}
#counter_offer_modal .counter-modal-dialog .shift-note{
  font: normal normal 300 14px/21px Poppins;
  color: #FCC562;
}
.spec_card-container .sd_additional_info{
	margin-left:30px;
}
.main_block .activity-info .imaging_software {
  font: normal normal normal 15px/25px Poppins;
  color: #FFFFFF;
  background: url("../img/images/imaging_software.svg") no-repeat left;
  padding: 5.5px 0 5.5px 30px;
}
.main_block .activity-details .specialist-name.front_office {
  background: url("../img/front-office.svg") no-repeat left;
  color: #8394E5;
}
.icon.front.office {
  background: url("../img/front-office.svg") no-repeat left !important;
}
.password_message div{
	width:30%;
}
.status_box.green {
  background: #ccc;
}
.main_block .status .dot.expired-dot {
  background: #ccc;
}
.main_block .status .expired {
  color: #ccc;
  text-transform: capitalize;
}
.shift-history .page-link {
  background-color: #000 !important;
  color: #fff !important;
}
.seeker-spec_info .break_time, .seeker-activity-info .break_time {
  font: normal normal normal 15px Poppins;
  color: #FFFFFF;
  background: url(../img/break_time.svg) no-repeat left;
  padding: 5.5px 0 5.5px 30px;
}
.main_block .activity-info .break_time {
  font: normal normal normal 15px/25px Poppins;
  color: #FFFFFF;
  background: url("../img/break_time.svg") no-repeat left;
  padding: 5.5px 0 5.5px 30px;
}
.break_time {
  font: normal normal normal 15px Poppins;
  color: #FFFFFF;
  background: url(../img/break_time.svg) no-repeat left;
  padding: 5.5px 0 5.5px 30px;
}
.post_btn2 {
  width: 180px;
  height: 50px;
  background: linear-gradient(102deg, #FFEC6E 0%, #FCBD60 100%) 0% 0% no-repeat padding-box;
  box-shadow: 0 3px 6px #00000061;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #223242;
  margin-left:24%;
}
