.bootstrap-wrapper {
  /*
   for fast reload and to reduce build time keep commit below bootstrap line,
   only un_commit below bootstrap import line when modify variables.
   */
}

[role=tabpanel] .card {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px !important;
}

.card.card-height {
  height: auto !important;
}
.card .img-wrapper {
  height: auto;
}
.card .img-wrapper a {
  height: 13em;
}
.card .img-wrapper a #videoContainer {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  width: 100%;
}
.card .img-wrapper a #videoContainer iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.card .img-wrapper a img {
  height: 100%;
}
.card .responsive-media-wrapper {
  position: relative;
  height: 13em;
  width: 100%;
  overflow: hidden;
}
.card .responsive-media-wrapper img,
.card .responsive-media-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 0;
}
.card .item-card .item-card-title {
  min-height: 27px;
}
.card .item-card .item-card-title a {
  -webkit-line-clamp: 1;
}
.card .item-card:hover {
  transform: initial !important;
}
.card .card-body .card-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 270px;
}
.card .card-body .card-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 270px;
}
.card .card-body .tags-container {
  min-height: 27px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card .card-body .custom-footer .rates {
  background: #7f007f;
  border-radius: 4px;
  text-align: center;
  padding: 5px;
  color: #fff;
  font-size: 12px;
}
.card.user_profile_card {
  height: auto;
  min-height: 305px;
}
.card.user_profile_card .card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

/* Media queries (Mobile, Table, Laptop & Above)  */
@media (max-width: 767px) {
  .card {
    margin: 0 !important;
  }
  .card.card-height {
    height: auto !important;
  }
  .card .img-wrapper {
    height: auto !important;
  }
  .card .item-card .item-card-title {
    min-height: auto !important;
  }
  .card .item-card .rates {
    width: 100% !important;
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
  .card.small-device-mt {
    margin-top: 12px !important;
  }
  .card.small-device-mt a {
    width: 100%;
  }
  .user_profile_card {
    height: auto !important;
  }
  .user_profile_card .card-body {
    max-height: none !important;
  }
}
/* SCSS for Vertical Scrollbar on Body with Light Grey Foreground and Transparent Background */
html:has(body.modal-open) {
  overflow: hidden !important;
}
html:has(body.modal-open) body {
  padding-right: 0 !important;
}
html:has(body.modal-open) .modal {
  /* For Firefox */
  scrollbar-width: thin !important;
  scrollbar-color: rgba(128, 128, 128, 0.7) transparent !important; /* Semi-transparent light grey thumb with transparent track */
  /* For WebKit Browsers (Chrome, Safari, Edge) */
}
html:has(body.modal-open) .modal::-webkit-scrollbar {
  width: 8px !important; /* Vertical scrollbar width */
  height: 0px !important; /* Hides horizontal scrollbar */
}
html:has(body.modal-open) .modal::-webkit-scrollbar-thumb {
  background-color: rgba(128, 128, 128, 0.7) !important; /* Semi-transparent grey thumb */
  border-radius: 10px !important; /* Rounded corners for thumb */
  border: 2px solid transparent !important; /* Make it look floating by ensuring no edges */
}
html:has(body.modal-open) .modal::-webkit-scrollbar-track {
  background-color: transparent !important; /* Fully transparent track */
}

html, body {
  /* Hide horizontal scrollbar and keep vertical scrollbar */
  /* For Firefox */
  scrollbar-width: thin !important;
  scrollbar-color: rgba(128, 128, 128, 0.7) transparent !important; /* Semi-transparent light grey thumb with transparent track */
  /* For WebKit Browsers (Chrome, Safari, Edge) */
}
html::-webkit-scrollbar, body::-webkit-scrollbar {
  width: 8px !important; /* Vertical scrollbar width */
  height: 0px !important; /* Hides horizontal scrollbar */
}
html::-webkit-scrollbar-thumb, body::-webkit-scrollbar-thumb {
  background-color: rgba(128, 128, 128, 0.7) !important; /* Semi-transparent grey thumb */
  border-radius: 10px !important; /* Rounded corners for thumb */
  border: 2px solid transparent !important; /* Make it look floating by ensuring no edges */
}
html::-webkit-scrollbar-track, body::-webkit-scrollbar-track {
  background-color: transparent !important; /* Fully transparent track */
}

.app-breadcrumb {
  /* Darker green for active and hover state only when anchor is present */
}
.app-breadcrumb a {
  text-decoration: none;
}
.app-breadcrumb .default-breadcrumb {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  list-style: none;
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.app-breadcrumb .default-breadcrumb li.crumb {
  position: relative;
  background-color: #8bc34a; /* Initial light green background */
  color: #ffffff; /* White text color */
  transition: background-color 0.3s ease-in-out;
  display: flex; /* Enable flexbox for alignment */
  align-items: center; /* Vertical centering */
}
.app-breadcrumb .default-breadcrumb li.crumb::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 100%;
  height: 100%;
  width: 1.5em;
  background-color: #8bc34a; /* Same initial background as breadcrumb */
  clip-path: polygon(50% 50%, -50% -50%, 0 100%);
  transition: background-color 0.3s ease-in-out;
}
.app-breadcrumb .default-breadcrumb li.crumb::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 1px;
  height: 100%;
  width: 1.5em;
  background-color: #8bc34a; /* Same initial background as breadcrumb */
  clip-path: polygon(100% 0, 100% 100%, 0% 100%, 50% 50%, 0% 0%);
  transform: translateX(-100%);
  transition: background-color 0.3s ease-in-out;
}
.app-breadcrumb .default-breadcrumb li.crumb:not(:first-child) {
  margin-left: 2em;
  padding-right: 1em;
}
.app-breadcrumb .default-breadcrumb li.crumb a {
  color: #ffffff; /* White text for links */
  display: inline-block;
  padding: 0.25em 0.5em;
  max-width: 250px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s ease-in-out;
}
.app-breadcrumb .default-breadcrumb li.crumb.active, .app-breadcrumb .default-breadcrumb li.crumb.active::before, .app-breadcrumb .default-breadcrumb li.crumb.active::after, .app-breadcrumb .default-breadcrumb li.crumb.active:has(a), .app-breadcrumb .default-breadcrumb li.crumb.active:has(a)::before, .app-breadcrumb .default-breadcrumb li.crumb.active:has(a)::after, .app-breadcrumb .default-breadcrumb li.crumb:hover:has(a), .app-breadcrumb .default-breadcrumb li.crumb:hover:has(a)::before, .app-breadcrumb .default-breadcrumb li.crumb:hover:has(a)::after {
  background-color: #689f38;
}
.app-breadcrumb .default-breadcrumb li.crumb a:hover {
  color: #ffffff; /* Keep text white on hover */
}

.dx-overlay-wrapper {
  z-index: 99999 !important; /* Adjust to a higher value based on your needs */
}

#expiryDate .dx-texteditor-input-container .dx-placeholder {
  padding: 0 13px;
}
#expiryDate .dx-texteditor-input-container .dx-texteditor-input {
  padding: 0 18px;
}

.site-logo img {
  width: 82px !important;
  height: 62px !important;
  flex-shrink: 0 !important;
}
.site-logo .site-text {
  font-family: "Mulish", Arial, Helvetica, sans-serif !important;
}
.site-logo .site-text .first {
  color: #7F007F;
  font-size: 26.21px !important;
  font-style: normal !important;
  font-weight: 700 !important;
  line-height: normal !important;
  text-transform: capitalize !important;
}
.site-logo .site-text .second {
  color: #007F7F;
  font-size: 26.21px !important;
  font-style: normal !important;
  font-weight: 700 !important;
  line-height: normal !important;
}

.header-bottom-area .navbar-collapse .main-menu li a {
  padding: 15px 0 !important;
}

.sub-nav {
  padding: 0 !important;
}
.sub-nav ul {
  margin: 0 !important;
}
.sub-nav ul li {
  margin: 0 !important;
}
.sub-nav ul li a {
  padding: 8px !important;
  display: inline-block;
}
.sub-nav ul li a:hover {
  color: #7f007f;
}

@media (max-width: 991px) {
  .site-logo img {
    width: 50px !important;
    height: auto !important;
  }
}
@media only screen and (max-width: 640px) {
  .site-logo img {
    width: 40px !important;
    height: auto !important;
  }
  .site-logo .site-text {
    display: none !important;
  }
}
@media only screen and (max-width: 1023px) {
  .navbar {
    display: flex !important;
  }
  .navbar .navbar-toggler {
    margin-left: 0 !important;
  }
  .navbar .header-login {
    position: initial;
    width: auto;
    height: auto;
  }
  .navbar .header-signup {
    position: initial;
    width: auto;
    height: auto;
  }
}
.size-30 {
  width: 30px; /* Adjust width for larger circle */
  height: 30px; /* Adjust height for larger circle */
}

.size-35 {
  width: 35px; /* Adjust width for larger circle */
  height: 35px; /* Adjust height for larger circle */
}

.footer-section, .copyright-area {
  background-color: #009688 !important;
}

footer h4 {
  margin-left: 90px;
  text-align: left;
}
footer ul li {
  margin-left: 93px;
  text-align: left;
}
footer #custom-search-input {
  height: 40px;
}
footer #custom-search-input .selection {
  width: 98%;
}
footer #custom-search-input .selection .select2-selection {
  background: none;
  border: none;
  height: 40px;
}
footer #custom-search-input .selection .select2-selection .select2-selection__rendered {
  padding-left: 10px;
  padding-right: 10px;
  line-height: 40px;
}
footer #custom-search-input .selection .select2-selection .select2-selection__rendered .select2-selection__placeholder {
  display: block;
  text-align: left;
}
footer #custom-search-input .selection .select2-selection .select2-selection__arrow {
  top: 0;
  right: 10px;
  height: 40px;
}
footer .footer-social li {
  margin-left: 10px;
}
footer .social-icon {
  display: inline-flex; /* Use flexbox for easy centering */
  justify-content: center; /* Horizontally center the icon */
  align-items: center; /* Vertically center the icon */
  border-radius: 50%; /* Make the container a circle */
  text-align: center;
}
footer .social-icon:hover {
  opacity: 0.9; /* Slight opacity change on hover */
}
footer .facebook {
  background-color: #3b5998; /* Facebook blue */
}
footer .linkedin {
  background-color: #0077b5; /* LinkedIn blue */
}
footer .whatsapp {
  background-color: #25d366; /* WhatsApp green */
}

@media (max-width: 767px) {
  footer h4 {
    margin-left: 30px;
  }
  footer ul li {
    margin-left: 40px;
  }
}
.create-job-tabs-wrapper .step-line {
  background: #e0e0e0;
  height: 2px;
  width: 100%;
  max-width: 70vw;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.create-job-tabs-wrapper .nav-pills.custom .nav-link.active {
  background: transparent;
}
.create-job-tabs-wrapper .nav-pills.custom li {
  background: transparent;
  margin: 0 30px;
  z-index: 2;
}
.create-job-tabs-wrapper .nav-link.custom {
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 12vw;
}
.create-job-tabs-wrapper .nav-link.custom.active {
  background-color: transparent;
  color: #007bff;
}
.create-job-tabs-wrapper .nav-link.custom.active span.icon {
  background: #007f7f;
  color: #fff;
}
.create-job-tabs-wrapper .nav-link.custom.active span.icon i {
  color: #fff;
}
.create-job-tabs-wrapper .nav-link.custom span.icon {
  background: #ecfcfc;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 50px;
  width: 42px;
  height: 42px;
  margin: 0 auto;
  border: 3px solid #8cc2c2 !important;
}
.create-job-tabs-wrapper .nav-link.custom span.icon i {
  color: #007f7f;
  font-size: 16px;
  line-height: unset;
}
.create-job-tabs-wrapper .nav-link.custom span.text {
  color: #007f7f;
  font-size: 14px;
}
.create-job-tabs-wrapper .tab-content.custom {
  display: flex;
  justify-content: center;
}
.create-job-tabs-wrapper .tab-content.custom .tab-pane {
  width: 70vw;
}

.stepwizard-step .btn-circle.active,
.stepwizard-step .btn-circle:focus,
.stepwizard-step .btn-circle:hover {
  background: #007f7f; /* Custom active background color */
  color: #fff !important; /* Ensure text/icon is white */
  -webkit-appearance: none; /* Reset appearance */
}
.stepwizard-step .btn-circle.active::before {
  border-bottom: 3px solid #007F7F !important;
}

.stepwizard-step .btn-circle i {
  color: teal;
}
.stepwizard-step .btn-circle:hover i, .stepwizard-step .btn-circle.btn-success i {
  color: white;
}

.stepwizard-step p {
  margin-top: 0px;
  color: #fff;
}

.create-service-main .stepwizard-step {
  width: 16% !important;
}

.stepwizard-row {
  display: table-row;
}

.stepwizard {
  display: table;
  width: 100%;
  position: relative;
}

.stepwizard-step button[disabled] {
  /*opacity: 1 !important;
  filter: alpha(opacity=100) !important;*/
}

.stepwizard .btn.disabled,
.stepwizard .btn[disabled],
.stepwizard fieldset[disabled] .btn {
  opacity: 1 !important;
  color: #fff;
}

.stepwizard-row:before {
  top: 14px;
  bottom: 0;
  position: absolute;
  content: " ";
  width: 100%;
  height: 1px;
  background-color: transparent;
  z-index: 0;
}

.stepwizard-step {
  display: table-cell;
  text-align: center;
  position: relative;
}
.stepwizard-step i {
  line-height: unset;
}

.btn-circle {
  width: 30px;
  height: 30px;
  text-align: center;
  padding: 6px 0;
  font-size: 12px;
  line-height: 1.43 !important;
  border-radius: 15px;
}

@media only screen and (max-width: 683px) {
  .create-service-main .stepwizard-step {
    width: 30% !important;
  }
}
.ticket-wrapper .chat-messages {
  display: flex;
  flex-direction: column;
  max-height: 800px;
  overflow-y: scroll;
}
.ticket-wrapper .chat-message-left,
.ticket-wrapper .chat-message-right {
  display: flex;
  flex-shrink: 0;
}
.ticket-wrapper .chat-message-left {
  margin-right: auto;
}
.ticket-wrapper .chat-message-left .comment-wrapper {
  min-width: 300px;
  background-color: #fafafa !important;
}
.ticket-wrapper .chat-message-left .comment-wrapper .attachment-wrapper {
  background: #ffffff;
}
.ticket-wrapper .chat-message-right {
  flex-direction: row-reverse;
  margin-left: auto;
}
.ticket-wrapper .chat-message-right .comment-wrapper {
  min-width: 300px;
  background-color: #007F7F !important;
  color: #ffffff !important;
}
.ticket-wrapper .chat-message-right .comment-wrapper .comment-title {
  color: #ffffff !important;
}
.ticket-wrapper .chat-message-right .comment-wrapper .attachment-wrapper {
  background: #009688;
}
.ticket-wrapper .chat-message-right .comment-wrapper .attachment-wrapper a {
  color: #eeeeee !important;
}
.ticket-wrapper .flex-grow-0 {
  flex-grow: 0 !important;
}

.seeall a {
  background-color: #fff;
  padding: 8px 24px;
  border-radius: 7px;
  color: #7f007f;
  border: 2px solid #7f007f;
  font-weight: 600;
}
.seeall a:hover {
  background: #7f007f;
  color: #fff;
}

/* Media queries (Mobile, Table, Laptop & Above)  */
@media (max-width: 767px) {
  .hero-banner .btn--post {
    margin: 0 !important;
  }
  .all-sections .container {
    padding: 0;
  }
  .default-article .heading {
    margin-bottom: 0 !important;
  }
  #carouselFeatureServices .card-height {
    height: auto !important;
  }
  .testimonial_card {
    padding: 30px 26px !important;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-banner .heading {
    font-size: 32px !important;
  }
  .hero-banner .para {
    font-size: 16px;
  }
}
* {
  transition: all 0.1s ease-in-out !important;
  color: #181818;
}

#skill-row .selection .select2-selection--multiple {
  padding: 0 0 5px 10px !important;
}
#skill-row .selection li {
  background-color: #007F7F !important;
  color: #fff !important;
  padding: 5px 15px !important;
  border: none !important;
}
#skill-row .selection li button {
  float: right !important;
  border: none !important;
  padding: 0;
  font-size: 20px;
  line-height: 20px;
  font-weight: normal;
}
#skill-row .selection li button, #skill-row .selection li span {
  color: #fff;
  background: none;
}

.dashboard-sidebar-inner .sidebar-main-menu li.open a i, .dashboard-sidebar-inner .sidebar-main-menu li.open a span {
  color: #fff !important;
}

.highlight-effect {
  position: relative;
  animation: pulse-bg 1s ease-in-out 0s 1 normal forwards; /* One-time animation */
}

@keyframes pulse-bg {
  0% {
    box-shadow: 0 0 0px rgba(220, 53, 69, 0.7); /* Red color with transparency */
    background-color: rgba(220, 53, 69, 0.1); /* Light red background */
  }
  50% {
    box-shadow: 0 0 15px rgba(220, 53, 69, 0.7); /* Larger glow with red color */
    background-color: rgba(220, 53, 69, 0.15); /* Slightly more intense background */
  }
  100% {
    box-shadow: 0 0 0px rgba(220, 53, 69, 0); /* Remove glow */
    background-color: transparent; /* Reset to no background */
  }
}
.upwork-bg {
  background: #13544e !important;
}

.upwork-text-black-50 {
  color: #181c27 !important;
}

*:not(input[type=checkbox],
input[type=radio],
#preview-img,
#profile-pic-edit-btn,
.badge,
.modal.fade.show,
.app-breadcrumb *,
.upper-tab,
.upper-tab *,
.payment-method img,
.border-radius-0) {
  border-radius: 8px !important;
}

select {
  appearance: none !important; /* Remove the default dropdown arrow */
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  padding-right: 40px; /* Space for the custom arrow */
  position: relative;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%201024%201024%22%3E%3Cpath%20d%3D%22M910%20300l-398%20400-398-400%22/%3E%3C/svg%3E"); /* Custom arrow as an SVG */
  background-repeat: no-repeat;
  background-position: right 15px center; /* Position the arrow 10px from the right */
  background-size: 12px 12px; /* Adjust arrow size */
}

select:focus,
select:active {
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%201024%201024%22%3E%3Cpath%20d%3D%22M910%20700l-398-400-398%20400%22/%3E%3C/svg%3E"); /* This is the inverted arrow */
}

.is-invalid {
  background-image: none !important;
  border: 1px solid red !important;
  box-shadow: none !important;
}

.invalid-feedback {
  color: red !important;
}

.alert {
  padding-left: 0 !important;
}

.job-tags {
  font-size: 0.875rem;
}
.job-tags .job-tag {
  background-color: #f0f0f0;
  border-radius: 15px;
  padding: 5px 10px;
  margin-right: 5px;
}

label {
  font-size: 15px !important;
  font-weight: 500 !important;
}

.form-control:not(.default),
input[type=text]:not(.default),
input[type=date]:not(.default),
input[type=number]:not(.default),
input[type=email]:not(.default),
input[type=password]:not(.default),
input[type=tel]:not(.default),
input[type=url]:not(.default),
input[type=search]:not(.default),
select:not(.default) {
  display: block;
  line-height: 1.5 !important;
  background-clip: padding-box !important;
  border-radius: 0.25rem !important;
  background-color: #fff !important;
  font-size: 16px !important;
  width: 100% !important;
  padding: 8px 20px !important;
  color: #000000 !important;
  font-weight: 400 !important;
  border: 1px solid #ced4da;
  height: 40px !important;
  box-sizing: border-box !important;
}
.form-control:not(.default):disabled,
input[type=text]:not(.default):disabled,
input[type=date]:not(.default):disabled,
input[type=number]:not(.default):disabled,
input[type=email]:not(.default):disabled,
input[type=password]:not(.default):disabled,
input[type=tel]:not(.default):disabled,
input[type=url]:not(.default):disabled,
input[type=search]:not(.default):disabled,
select:not(.default):disabled {
  background-color: #e9ecef !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
  opacity: 60% !important;
}

/* Placeholder */
.form-control::-moz-placeholder, input::-moz-placeholder, textarea::-moz-placeholder {
  color: #6c757d !important;
  opacity: 1 !important;
}
.form-control::placeholder,
input::placeholder,
textarea::placeholder {
  color: #6c757d !important;
  opacity: 1 !important;
}

/* Textarea specific styling */
textarea {
  display: block;
  line-height: 1.5 !important;
  background-clip: padding-box !important;
  border-radius: 0.25rem !important;
  background-color: #fff !important;
  font-size: 16px !important;
  width: 100% !important;
  padding: 8px 20px !important;
  color: #000000 !important;
  font-weight: 400 !important;
  border: 1px solid #ced4da !important;
  box-sizing: border-box !important;
  resize: vertical !important; /* Allow only vertical resizing */
}

textarea:not(.custom-height) {
  height: auto !important; /* Set height to auto, but keep padding consistent */
  min-height: 140px !important; /* Set a standard minimum height */
}

.input-group {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
}
.input-group .input-group-text {
  height: 40px !important;
}

.bg-transparent {
  background: transparent !important;
  background-color: transparent !important;
}

.header .header-bottom-area.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.card-form-wrapper input[type=checkbox]:checked {
  background-color: #7f007f !important;
  border-color: #7f007f !important;
}

.app-breadcrumb li a {
  font-size: 18px !important;
}

.clickable-card, .cursor, .fa, .nav-item, .nav-link {
  cursor: pointer !important;
}

.required::after {
  content: "*";
  color: red;
  font-size: 1.5em;
}

.no-control {
  pointer-events: none !important; /* Prevent clicking */
  opacity: 0.5 !important; /* Make the element appear disabled */
}

.opacity-100 {
  opacity: 1 !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

.opacity-50 {
  opacity: 0.5 !important;
}

.opacity-25 {
  opacity: 0.25 !important;
}

.opacity-0 {
  opacity: 0 !important;
}

.fw-500 {
  font-weight: 500 !important;
  color: #676767;
}

.select2-search input {
  border: none !important;
}

.dz-preview {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  background-color: #f9f9f9;
  border-radius: 5px;
  width: 98%;
  box-sizing: border-box;
  position: relative; /* Needed for absolute positioning */
  flex-wrap: wrap; /* To wrap content when it gets too large */
}
.dz-preview .dz-image {
  flex: 0 0 50px;
  margin-right: 15px;
}
.dz-preview .dz-image img {
  max-width: 50px;
  max-height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.dz-preview .dz-details {
  flex-grow: 1;
  margin-right: 15px;
}
.dz-preview .dz-details .dz-filename {
  font-weight: bold;
}
.dz-preview .dz-details .dz-size {
  font-size: 12px;
  color: #999;
}
.dz-preview .dz-progress {
  flex-grow: 1;
  margin-right: 15px;
}
.dz-preview .dz-progress .dz-upload {
  display: block;
  width: 100%;
  height: 5px;
  background: #007bff;
  border-radius: 5px;
}
.dz-preview .dz-success-mark,
.dz-preview .dz-error-mark {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
}
.dz-preview .dz-remove {
  flex-shrink: 0;
  margin-left: auto;
  color: #007bff;
  text-decoration: underline;
  cursor: pointer;
}

.dz-success-mark,
.dz-error-mark {
  display: none !important;
}

@media (max-width: 768px) {
  .dz-preview {
    flex-direction: column;
    align-items: flex-start;
  }
  .dz-preview .dz-remove {
    margin-top: 10px;
  }
}

/*# sourceMappingURL=styles.css.map*/