.tickets__item:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding-bottom: 15px;
}

.ticket-form select, .ticket-form input {
  border: 1px solid #06b3ff !important;
  border-radius: 0.5rem !important;
  background-color: #fff !important;
  color: #495057 !important;
  height: 50px !important;
}
.ticket-form textarea {
  border: 1px solid #06b3ff !important;
  border-radius: 0.5rem !important;
  background-color: #fff !important;
  color: #495057 !important;
}
.ticket-form__upload {
  width: 100%;
  border-radius: 0.5rem !important;
  padding: 30px;
  border: 1px solid #06b3ff !important;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.ticket-form__upload h6 {
  margin-top: 10px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: #06b3ff;
}
.ticket-form__type {
  padding: 20px 20px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
  background-color: #fff;
  cursor: pointer;
  width: 100% !important;
}
.ticket-form__type--active {
  border: 1px solid #06b3ff !important;
  background-color: rgba(6, 179, 255, 0.1) !important;
}
.ticket-form__img {
  position: relative;
  width: 100px;
  border-radius: 0.5rem;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 10px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.ticket-form__img img {
  width: 100%;
  overflow: hidden;
  -o-object-fit: contain;
     object-fit: contain;
}
.ticket-form__img--close {
  background-color: #ce2f2f;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  position: absolute;
  top: -10px;
  right: -10px;
  cursor: pointer;
}

.thread-card {
  position: fixed;
  right: 0;
  bottom: 0;
  top: 60px;
  width: 45%;
  height: 94vh;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 50;
}
@media (max-width: 768px) {
  .thread-card {
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    height: 100vh;
    z-index: 1000;
  }
}
.thread-card__header {
  padding: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .thread-card__header {
    padding: 15px;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background-color: #fff;
    z-index: 1001;
  }
}
.thread-card__detail {
  padding: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.thread-card__detail td {
  font-size: 13px !important;
}
.thread-card__detail img {
  width: 100px;
  margin-bottom: 10px;
  border-radius: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .thread-card__detail {
    padding: 15px;
  }
  .thread-card__detail table {
    font-size: 12px;
  }
  .thread-card__detail td {
    font-size: 12px !important;
    padding: 5px 0;
    display: block;
    width: 100%;
  }
  .thread-card__detail td:first-child {
    font-weight: bold;
    margin-bottom: 5px;
  }
  .thread-card__detail tr {
    display: block;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 10px;
  }
  .thread-card__detail img {
    width: 80px;
    height: 80px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.thread-card__chat {
  height: 100%;
}
.thread-card__chat--message {
  padding: 20px;
  overflow-y: auto;
  height: 300px;
  width: 100%;
}
@media (max-width: 768px) {
  .thread-card__chat--message {
    padding: 15px;
    height: calc(100vh - 200px);
    max-height: calc(100vh - 200px);
  }
}
.thread-card__chat--message__left {
  display: flex;
  justify-content: start;
  width: 100%;
}
.thread-card__chat--message__left--message {
  padding: 10px 15px;
  border-radius: 0.5rem;
  background-color: #dadada;
  color: #000;
  font-size: 14px;
}
.thread-card__chat--message__left--message h5 {
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .thread-card__chat--message__left--message {
    padding: 8px 12px;
    font-size: 13px;
    max-width: 85%;
  }
  .thread-card__chat--message__left--message h5 {
    font-size: 12px;
  }
}
.thread-card__chat--message__right {
  display: flex;
  justify-content: end;
  width: 100%;
}
.thread-card__chat--message__right--message {
  padding: 10px 15px;
  border-radius: 0.5rem;
  background-color: #06b3ff;
  color: #fff;
  font-size: 14px;
}
.thread-card__chat--message__right--message h5 {
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .thread-card__chat--message__right--message {
    padding: 8px 12px;
    font-size: 13px;
    max-width: 85%;
  }
  .thread-card__chat--message__right--message h5 {
    font-size: 12px;
  }
}
.thread-card__chat--message__image {
  border-radius: 0.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-right: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .thread-card__chat--message__image {
    width: 80px;
    height: 80px;
    margin-right: 5px;
  }
}
.thread-card__chat--form {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 20px;
  width: 100%;
  z-index: 100;
  background-color: #fff;
}
@media (max-width: 768px) {
  .thread-card__chat--form {
    padding: 15px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1002;
  }
}
.thread-card__chat--form__img {
  width: 50px;
  height: 50px;
  position: relative;
  border-radius: 0.5rem;
  -o-object-fit: contain;
  object-fit: contain;
  margin-right: 10px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  margin-left: 10px;
}
@media (max-width: 768px) {
  .thread-card__chat--form__img {
    width: 40px;
    height: 40px;
    margin-right: 5px;
    margin-left: 5px;
  }
}
.thread-card__chat--form__img--close {
  background-color: #ce2f2f;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  position: absolute;
  top: -5px;
  right: -20px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .thread-card__chat--form__img--close {
    width: 12px;
    height: 12px;
    top: -3px;
    right: -15px;
  }
}
.thread-card__chat--form__image {
  width: 50px;
  height: 50px;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  margin-left: 10px;
}
@media (max-width: 768px) {
  .thread-card__chat--form__image {
    width: 40px;
    height: 40px;
    margin-left: 5px;
  }
}

.window_cleaning .form-select {
  background: transparent !important;
  color: #495057 !important;
  width: 100%;
  outline: auto !important;
  border: 1px solid #ced4da !important;
  border-radius: 0.25rem !important;
  padding: 0.375rem 0.75rem !important;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.carpet-cleaning .addons {
  padding: 20px;
  margin-top: 40px;
  cursor: pointer;
  border-radius: 10px;
}
.carpet-cleaning .addons__checkbox {
  width: 25px;
  height: 25px;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.2);
}
.carpet-cleaning .addons__checkbox--active {
  background-color: #10abfd !important;
}
.carpet-cleaning .addons__info h4 {
  font-size: 18px !important;
  font-weight: 600;
  margin: 0px !important;
}

a[role=button]:hover,
.cursor-pointer {
  cursor: pointer;
}

select {
  -webkit-appearance: auto !important;
  color: #fff !important;
}

input[type=radio] {
  width: auto !important;
  height: auto !important;
}

.input-bg-blue {
  background-color: #10abfd !important;
  border-radius: 10px;
  padding: 8px 12px;
  color: #fff;
}

.input-bg-green {
  background-color: #94DA71 !important;
  border-radius: 10px;
  padding: 8px 12px;
  color: #fff;
}

.btn-primary {
  background-color: #06b3ff !important;
  border: #06b3ff 1px solid;
}
.btn-primary :hover, .btn-primary :focus, .btn-primary :active {
  box-shadow: 0 0 0 0.2rem #06b3ff !important;
  border: #06b3ff 1px solid;
  background-color: #06b3ff !important;
}

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

.text-blue {
  color: #06b3ff !important;
}

.text-green {
  color: #4caf50 !important;
}

.text-xs {
  font-size: 12px !important;
}

.text-9 {
  font-size: 9px !important;
}

.text-10 {
  font-size: 10px !important;
}

.text-12 {
  font-size: 12px !important;
}

.text-underlined {
  text-decoration: underline !important;
}

.list-green.active {
  border-radius: 45%;
  background-color: #4caf50;
  padding: 3px 7px;
  color: #fff;
}

.btn-green {
  background: #4caf50 !important;
}

.btn-tab {
  border-radius: 40px;
}

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

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

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

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

.modal-sm {
  max-width: 30% !important;
}

.section_textbox {
  text-transform: none !important;
}

.swal2-container {
  z-index: 1200 !important;
}

.vuejs3-datepicker .vuejs3-datepicker__calendar {
  width: 100%;
  color: #06b3ff;
  font-weight: bold;
}
.vuejs3-datepicker .vuejs3-datepicker__calendar-topbar {
  display: none;
}
.vuejs3-datepicker .vuejs3-datepicker__calendar-actionarea .cell.day.selected {
  background-color: #4caf50;
}

@media only screen and (max-width: 600px) {
  .vuejs3-datepicker__calendar-actionarea .cell.day.selected {
    border-radius: 48% !important;
  }
}
.inl-tabs .dropdown .dropdown-menu li {
  display: block;
  margin-bottom: 0;
  padding: 0 5px 0 5px;
}

.inl-tabs .dropdown .dropdown-menu li:hover {
  background-color: #06b3ff !important;
  opacity: 1;
}

.inl-tabs .dropdown .inl-tabs-dropdown-menu.show {
  background-color: #06b3ff !important;
  z-index: 10000;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .popup-auth h2.swal2-title,
.popup-auth h2#decideModalSub {
    color: #595959;
  }

  .button_float {
    display: none;
  }

  .logo {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  .logo padding .bukka-icon-size {
    margin-top: 0 !important;
  }

  .detail-pages h1 {
    margin-top: 0px;
    padding-top: 0px;
  }

  .modal_update_card .modal-content .modal-body .footer_area img {
    width: 60%;
  }

  .modal_update_card .modal-dialog {
    max-width: 100%;
  }
  .modal_update_card .modal-dialog .button_updtecard {
    display: block;
    width: 100%;
  }

  .profle-block {
    padding-top: 0px;
  }
  .profle-block h1 {
    padding: 0px;
  }

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

  #offerScreenModal h2,
#requestMoreInfoModal h2 {
    font-size: 20px;
  }

  .bins-container h6 {
    font-size: 16px;
  }
  .bins-container .bins-title {
    min-height: 100px !important;
  }
  .bins-container .btn-group .btn {
    height: 40px;
    padding: 3px 5px;
  }
  .bins-container img {
    height: 60px !important;
    margin-bottom: 5px;
  }

  .forgotpwd {
    padding-top: 0px;
  }
}
/* Small devices (portrait tablets and large phones, 600px and up) */
/* Medium devices (landscape tablets, 768px and up) */
/* Large devices (laptops/desktops, 992px and up) */
/* Extra large devices (large laptops and desktops, 1200px and up) */
.profile-table-list {
  margin-bottom: 0px;
}
.profile-table-list tbody tr td {
  padding: 0px;
}

.popup-auth h2.swal2-title,
.popup-auth h2#decideModalSub {
  color: #fff;
}

.logo {
  margin-top: 1.5rem;
}
.logo padding .bukka-icon-size {
  margin-top: 3rem;
}

header .account-block .profile_pic {
  width: auto !important;
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.offer-img {
  position: absolute;
  right: 0;
  margin-top: -120px;
  height: 400px;
}

.bins-container img {
  height: 100px;
}

.forgotpwd {
  padding-top: 70px;
}

body.no-bg {
  background: none;
}

.option {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.option__item {
  cursor: pointer;
  padding: 10px 20px;
  border-radius: 10px;
  border: 1px solid #ccc;
  background-color: #fff;
  color: #000;
  margin-bottom: 10px;
  width: 250px;
}
.option__item:hover {
  background-color: #ccc;
}
.option__item--active {
  background-color: #10abfd !important;
  color: #fff !important;
}
