﻿/* Example Styles for React Tags*/
#app {
  padding: 40px;
}
/*react-imageslider*/
.rsc-container {
  width: 100%;
  position: relative;
  width: 80%;
  margin: 0 auto;
  margin-left: 0px;
  margin-right: 0px;
}

.rsc-slider {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  /*transition: all 0.2s ease-in-out;*/
}

.rsc-slider-item {
  width: 1000px;
  box-sizing: border-box;
}

.defaultImage {
  max-height: 100%;
  width: 100%;
  margin-bottom: 9px;
  object-fit: cover;
}

.rsc-slider-item-img {
  box-sizing: border-box;
  padding: 5px;
  height: 442px;
  width: 685px;
  margin-left: 5px;
}

.rsc-slider-item-img img {
  max-height: 100%;
  width: 100%;
  object-fit: cover;
}

.rsc-slider-item_transparent {
  opacity: 0;
}

.rsc-navigation {
  position: absolute;
  top: 0;
  height: 10%;
  cursor: pointer;
  width: 10px;
}

.rsc-navigation_left {
  top: 189px;
  width: 24px;
  color: white;
}

.rsc-navigation_right {
  left: 667px;
  top: 189px;
  width: 24px;
  color: white;
}

.rsc-arrow_left,
.rsc-arrow_right {
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: center;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/PjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iMzA2cHgiIGhlaWdodD0iMzA2cHgiIHZpZXdCb3g9IjAgMCAzMDYgMzA2IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAzMDYgMzA2OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PGc+PGcgaWQ9ImNoZXZyb24tcmlnaHQiPjxwb2x5Z29uIHBvaW50cz0iOTQuMzUsMCA1OC42NSwzNS43IDE3NS45NSwxNTMgNTguNjUsMjcwLjMgOTQuMzUsMzA2IDI0Ny4zNSwxNTMgIi8+PC9nPjwvZz48Zz48L2c+PGc+PC9nPjxnPjwvZz48Zz48L2c+PGc+PC9nPjxnPjwvZz48Zz48L2c+PGc+PC9nPjxnPjwvZz48Zz48L2c+PGc+PC9nPjxnPjwvZz48Zz48L2c+PGc+PC9nPjxnPjwvZz48Zz48L2c+PGc+PC9nPjxnPjwvZz48Zz48L2c+PGc+PC9nPjxnPjwvZz48Zz48L2c+PGc+PC9nPjxnPjwvZz48L3N2Zz4=");
}

.rsc-arrow_left {
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
}

@media screen and (min-width: 1280px) {
  .rsc-arrow_left,
  .rsc-arrow_right {
    background-size: 100%;
  }
}

@media screen and (max-width: 720px) {
  .rsc-navigation {
    width: 10px;
  }

  .rsc-arrow_left,
  .rsc-arrow_right {
    background-size: 10%;
  }
}

/*end of react-imageslider*/

.tags {
  cursor: pointer;
  border-radius: 40px;
  float: initial;
  color: black;
  background: #f5f5f5;
  padding: 5px;
  padding-right: 25px;
  padding-left: 26px;
  margin: 4px;
}
/*.tags > span:hover {
      opacity: 0.7;
  }
  .tags > span:after {
      position: absolute;
      content: "×";
      border: 1px solid;
      padding: 2px 5px;
      margin-left: 3px;
      font-size: 11px;
  }*/

div.ReactTags__tags {
  position: relative;
}

/* Styles for the input */
div.ReactTags__tagInput {
  width: 200px;
  border-radius: 2px;
  display: inline-block;
}

div.ReactTags__tagInput input.ReactTags__tagInputField,
div.ReactTags__tagInput input.ReactTags__tagInputField:focus {
  height: 31px;
  margin: 0;
  font-size: 12px;
  width: 100%;
  border: 1px solid #eee;
  padding: 0 4px;
}

/* Styles for selected tags */
div.ReactTags__selected span.ReactTags__tag {
  border: 1px solid #ddd;
  background: #eee;
  font-size: 12px;
  display: inline-block;
  padding: 5px;
  margin: 0 5px;
  cursor: move;
  border-radius: 2px;
  opacity: 1;
  margin-bottom: 10px;
}

div.ReactTags__selected a.ReactTags__remove {
  color: #aaa;
  margin-left: 5px;
  cursor: pointer;
}

/* Styles for suggestions */
div.ReactTags__suggestions {
  position: absolute;
  z-index: 1000000;
}

div.ReactTags__suggestions ul {
  list-style-type: none;
  box-shadow: 0.05em 0.01em 0.5em rgba(0, 0, 0, 0.2);
  background: white;
  width: 200px;
}

div.ReactTags__suggestions li {
  border-bottom: 1px solid #ddd;
  padding: 5px 10px;
  margin: 0;
}

div.ReactTags__suggestions li mark {
  text-decoration: underline;
  background: none;
  font-weight: 600;
}

div.ReactTags__suggestions ul li.ReactTags__activeSuggestion {
  background: #b7cfe0;
  cursor: pointer;
}

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

.header-background-color {
  height: 350px;
  background-color: black;
}

.header-text {
  padding-top: 50px;
}

.vision {
  background: #353537;
  color: #fff;
  padding: 80px 0;
}

.vision h3 {
  font-size: 30px;
}

.vision .grid {
  text-align: center;
  padding: 30px 0;
}

.pointerCursor {
  cursor: pointer;
}

.mainpage-heading {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 0px;
}

.mainpage-paragraph {
  font-size: 18px;
  text-align: center;
}

.row-padded {
  padding: 2% 0%;
}

.explore p {
  color: #999999;
  font-size: 14px;
  line-height: 140%;
  opacity: 0;
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
}

.explore .ui.message {
  text-align: center;
}

.explore .ui.message .header {
  line-height: 2em;
  font-size: 1.5em;
}

.explore .ui.message p {
  color: #000;
  font-size: 1.3em;
}

.explore p:hover {
  opacity: 1;
}

.explore-category h3 {
  color: #0e0e0f;
  font-size: 18px;
  line-height: 120%;
  font-weight: 400;
  letter-spacing: 1px;
  text-align: center;
}

.explore-category h3::before {
  content: "";
  display: block;
  width: 60px;
  height: 0;
  margin: 5px auto 10px;
  border-top: 1px solid #3f51b5;
}

.explore-category .column {
  text-align: center;
}

.category-section {
  background-color: #fafafa;
  border-top: 1px solid #e5e5e5;
}

.category-section nav a {
  display: block;
  font-size: 15px;
  line-height: 130%;
  padding: 7px 0;
}

.category-section a {
  color: #777777;
}

.card.noboxshadow {
  box-shadow: none !important;
}

.first-section {
  width: 100%;
  height: calc(100vw - 60vw);
  padding: 0;
  top: 0;
  position: relative;
  /*background: linear-gradient(to right, #5c8a8a, #1f2e2e);*/
  background: url("/images/banner-mars.jpg") no-repeat;
  background-size: contain;
  text-align: center;
  background-position: top;
}

.first-section .ui.menu .item img {
  width: 3.5em;
}

.tagline-holder {
  padding-top: 140px;
}

.tagline-holder h1 {
  font-weight: 600;
  font-size: 54px;
  color: #fff;
  line-height: 110%;
  font-family: "Inter", sans-serif;
  letter-spacing: -0.3px;
  text-transform: capitalize !important;
}

.tagline-holder > p {
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  font-family: "Inter", sans-serif;
}

.main-search {
  margin-top: 50px;
}

.main-search > div > input {
  color: #585858;
  width: 400px;
  border-radius: 0 !important;
}

#banner-header .ui.secondary.inverted.menu {
  margin: 0;
}

.nav-secondary {
  margin-bottom: 2%;
}
/* Tiny Modal Width */
@media only screen and (max-width: 767px) {
  .ui.tiny.modal {
    width: 95%;
    margin: 0em 0em 0em -47.5%;
    position: fixed;
    top: 10%;
  }
}

@media only screen and (min-width: 768px) {
  .ui.tiny.modal {
    width: 50%;
    margin: 0em 0em 0em -25%;
    position: fixed;
    top: 20%;
  }
}

@media only screen and (min-width: 992px) {
  .ui.tiny.modal {
    width: 300px;
    margin: 0em 0em 0em -150px;
    position: fixed;
    top: 20%;
  }
}

@media only screen and (min-width: 1200px) {
  .ui.tiny.modal {
    width: 400px;
    margin: 0em 0em 0em -200px;
    position: fixed;
    top: 20%;
  }
}

@media only screen and (min-width: 1920px) {
  .ui.tiny.modal {
    width: 400px;
    margin: 0em 0em 0em -200px;
    position: fixed;
    top: 30%;
  }
}

.ui.grid.explore-category img {
  width: 55px;
}

/* Modal aligned Center, specific to Change Password*/
.visible.transition {
  display: inline-block !important;
  margin-top: auto !important;
  display: inline-block !important;
  position: relative;
  top: -30%;
}

/* Seller profile form - START */
.profile {
  margin-top: 7%;
  margin-bottom: 5%;
}

.listing .tooltip,
.profile .tooltip {
  opacity: 0;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
  color: #b2b2b2;
  font-size: 14px;
  line-height: 18px;
  padding: 5px 40px 0 0;
}

.tooltip-target:hover .tooltip {
  opacity: 1;
}

.profile .social-media {
  width: 100%;
  max-width: 200px;
}

.form-wrapper {
  border: 1px solid #e5e5e5;
  padding: 10px;
  margin-bottom: 18px;
}

#generalModal .ui.button {
  height: 43px;
  padding: 13px;
}

#generalModal input {
  border: 1px solid #aaa;
  color: #484848;
}

.main-search button {
  border-radius: 0;
}

.explore-category img {
  width: 50px;
}
/* User profile form - END */
/*Form style*/
.form-footer {
  margin-top: 15px;
}

.form-footer span a {
  cursor: pointer;
}

.suggestions .ui.wireframe.image {
  height: 155px;
}

.suggestions .ui.image img {
  max-height: 155px;
}

.guidelines .ui.card .ui.image img {
  height: 273px;
}

.ui.teal.big.button {
  font-weight: 400;
}

.ui.teal.buttons .button,
.ui.teal.button {
  background-color: #3b5998;
  color: #ffffff;
  text-shadow: none;
  background-image: none;
}

.ui.teal.button:hover {
  background-color: #304d8a;
  color: #ffffff;
  text-shadow: none;
}

.ui.basic.green.button {
  box-shadow: 0px 0px 0px 1px #000 inset !important;
  color: #000 !important;
}

.ui.basic.green.button:hover,
.ui.basic.green.active.button {
  background: #3f51b5 !important;
  box-shadow: 0px 0px 0px 1px #3b5998 inset !important;
  color: #fff !important;
  margin-right: 1em;
}

.ui.secondary.inverted.menu .link.item,
.ui.secondary.inverted.menu a.item {
  color: #000 !important;
}

#banner-header .ui.menu {
  margin: 0;
}

.ui.secondary.inverted.menu a.item:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #3f51b5 !important;
}

.search-box input {
  height: 35px;
  margin: 15px !important;
  min-width: 250px;
}

.search-box i {
  right: 15px !important;
}

.ui.menu {
  box-shadow: none !important;
}

.ui.card > .content {
  overflow-wrap: break-word;
}

i.circular.icon {
  box-shadow: 0em 0em 0em 0.02em rgb(33, 33, 33) inset !important;
}

/* Search results page */
.search-results .ui.card .ui.image img {
  height: 155px;
}

.search-results ul {
  list-style-type: none;
  padding-left: 0;
}

.search-results ul li a {
  color: #777777;
}

.search-results .ui.link.list a.item span.right-floated {
  float: right;
  text-indent: 0px;
}

.search-results .ui.link.list a.item.category {
  text-indent: 10px;
}

.search-results .ui.link.list a.item.subcategory {
  text-indent: 20px;
}

.search-results ul.filter-results li.selected-filter {
  background-color: lightblue;
}

/* Service details page */

.text-color {
  color: #3b5998;
  font-weight: bold;
  font-size: 20px;
}

.service-details .service-description {
  background-color: #f7f7f7 !important;
}

.service-details .user-info,
.service-details .order-detail {
  text-align: center;
}

.user-info img {
  object-fit: cover;
}

table .icon {
  cursor: pointer;
}

.ui.cards > .card a,
.ui.card a {
  color: rgba(0, 0, 0, 0.87);
}

.service-details .eight .list .item:first-child {
  padding-bottom: 15px;
}

.service-details .description .tag.label {
  margin-top: 5px;
}

.service-details .description #no-skills-specified {
  font-style: oblique;
}

/* Service Detail */
#img-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  height: 100%;
}

#minTabHeight {
  min-height: 18em;
  max-height: inherit;
}

.reviewButtonsAlignRight {
  text-align: right;
  width: 80%;
  display: inline-block;
  margin-left: 5px;
  margin-top: -10px;
}

#reviewCommentArea {
  height: 6em;
}

/* Service listing page - share a skill - START*/
.tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  margin-left: -70px;
  margin-top: -60px;
  border-radius: 6px;
  position: absolute;
  z-index: 1;
}

.serviceListing:hover .tooltiptext {
  visibility: visible;
}

.worksampleFile {
  width: 110px;
  padding-left: 20px;
  padding-right: 20px;
}

.worksampleImage {
  padding-left: 20px;
  padding-right: 20px;
}

.padding-25 {
  padding: 25px 0px;
}

.floatRight {
  float: right;
}
/* Service listing page - share a skill - END */

/* Account Profile page - BEGIN */
.scrollTable {
  overflow-y: auto;
  margin-top: 1.5rem;
}

/*Upload profile image hover effect - BEGIN*/
.hoverImg:hover img {
  opacity: 0.3;
  transition: 0.5s ease;
  backface-visibility: hidden;
}

.iconMiddle {
  transition: 0.5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.hoverImg:hover .iconMiddle {
  opacity: 1;
}

/*Upload profile image hover effect - END*/

/* button edit on the profile card */
.iconRightPadding {
  padding-right: 0.3rem !important;
}

/* adjust the write icon */
.floatRight > i {
  margin: auto !important;
  display: block;
}

/* Makes the icon inline with the text*/
.tooltip-icon-questionmark {
  display: inline;
}

/*Message page - START*/

#chatRoomContainer {
  padding: 0;
  margin: 0;
}

#chatContentContainer {
  padding: 0;
  margin: 0;
}

/*Chat content - START*/
.chatBoxWrapper {
  width: 100%;
  height: 500px;
  padding: 0;
}

#chatBox {
  display: block;
  width: 100%;
  height: 550px;
  padding: 15px 40px;
  margin: 0;
  overflow: hidden;
}

#chatBox:hover {
  overflow-y: auto;
}

.message-container {
  max-width: 100%;
  font-size: 14px;
  height: auto;
  display: flow-root;
}

.time {
  margin: auto 15px;
  font-size: 12px;
}

#left {
  max-width: 80%;
  display: inline-flex;
  margin-top: 30px;
}

#left div {
  padding: 6px 12px 7px;
  background-color: #f1f0f0;
  color: black;
  word-break: break-word;
  border-radius: 1.3em;
}

#right {
  margin-top: 30px;
  float: right;
  max-width: 80%;
  display: inline-flex;
}

#right > div {
  padding: 6px 12px 7px;
  background-color: #0084ff;
  color: white;
  word-break: break-word;
  border-radius: 1.3em;
}

.time {
  color: lightgrey;
}

.message-container img {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  margin: auto 15px auto 0;
}

#input-message-container {
  width: 100%;
  padding: 15px 40px;
}

/*Chat content - END*/

/*Chat list - START*/
.chatRoom {
  height: 614px;
  overflow: hidden;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For IE and Edge */
}

.chatRoom:hover {
  overflow-y: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For IE and Edge */
}

.chatRoom::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome, Safari, and Opera */
}

.searchBar {
  max-width: 100%;
  text-align: center;
  padding: 15px 0;
}

#searchCard {
  max-width: 100%;
}

#chatList {
  padding: 15px;
  cursor: pointer;
  margin: 0;
}

#chatList div:focus {
  background-color: lightgray;
}

#chatList img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

#chatList .content {
  padding: 10px;
  overflow: hidden;
}

#chatList .content .lastest-chat-row {
  color: lightgray;
}

#chatList span {
  text-align: center;
  vertical-align: middle;
  line-height: 58px;
}

.marginBottom {
  margin-bottom: 6em;
}

/*Chat list - END*/

/*Message page - END*/

/*Required Field asterisk*/
#requiredField:after {
  content: " *";
  color: red;
  display: inline;
}

/*Verify Email page - START*/
.verifyEmailField {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.verifyEmailButton {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

/*Verify Email page - END*/

/*Sortable Table Headers with arrows*/

.sortableHeader th.sorted:after {
  display: inline !important;
  font-weight: normal;
  content: "\f0d7" !important;
  margin: 0em 0em 0em 0.5em;
  font-family: "Icons";
}

.sortableHeader th.ascending:after {
  content: "\f0d8" !important;
  opacity: 0.8 !important;
}

.sortableHeader th.descending:after {
  content: "\f0d7" !important;
  opacity: 0.8 !important;
}

.login-header {
  text-align: center;
}

.client-logo {
  background-color: #000;
  text-align: center;
  padding: 15px;
}

.client-logo img {
  width: 60%;
  margin-top: 5px;
}

.login-header p {
  margin: 10px;
}

.search-results .ui.card img {
  max-height: 150px;
  max-width: 100%;
  margin: 0 auto;
  object-fit: cover;
}

.search-results .ui.card .price {
  color: #000;
  font-weight: 700;
}

.order-detail .ui.form {
  text-align: left;
  margin-bottom: 1rem;
}

.item.login.button {
  background-color: #fff !important;
}

.seller-info img {
  margin-right: 1em !important;
}
.seller-info > div {
  margin-right: 1em !important;
}

.ui.cards.top-recent-user .seller-info img {
  width: 4em;
  height: 4em;
  object-fit: cover;
}

#home .ui.wireframe.image {
  background-color: #fff;
}

#home .guidelines .ui.card .content {
  text-align: center;
}

.suggestions .image img {
  object-fit: cover;
  max-height: 120px;
}

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

.table-layout {
  margin: 20px;
}

.text-slogan {
  display: flex;
  justify-content: center;
  flex-direction: column;
  font-weight: 900;
}

#home .text-slogan {
  display: none;
}

#notification-wrapper .ui.segment {
  box-shadow: none;
  border: 1px solid rgba(34, 36, 38, 0.15);
  margin-bottom: 2em !important;
}

.profile-item {
  margin: 30px 1.5em;
  display: block;
}

#home .ui.basic.green.button:hover,
#home .ui.basic.green.active.button,
#home .ui.basic.large.active.button {
  background: #be3c0e !important;
  box-shadow: 0px 0px 0px 1px #be3c0e inset !important;
  color: #fff !important;
  margin: 2em 1em;
  padding: 1.5em 2.5em;
  font-size: 1.1em;
  border: none;
}

#home .ui.basic.large.active.button {
  background: none !important;
  color: #be3c0e !important;
}

#service-listing-section .link {
  cursor: pointer;
}

.m5 {
  margin: 15px 0;
}

.transaction-flex {
  display: flex;
  justify-content: space-around;
  margin: 2em 1em;
  vertical-align: middle;
  align-items: center;
}

.transaction-flex .ui.avatar.image {
  width: 4em !important;
  height: 4em !important;
  object-fit: cover;
}

.transaction-sample-image img {
  object-fit: cover;
  max-height: 120px;
}

.row-flex.seller-info {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.seller-profile {
  display: flex;
  flex-direction: column;
}

.featured-listing .ui.card {
  width: 90%;
  margin: 0 20px;
  height: 420px;
}

.featured-listing .slick-list {
  padding: 10px 0;
}

.featured-listing .ui.card .image img {
  object-fit: cover;
  max-height: 200px;
  height: 150px;
}

.featured-listing .ui.card {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}

.featured-listing .extra.content {
  color: #3e3e3e !important;
  font-weight: 600;
}

.featured-listing .seller-info,
.featured-listing .service-info {
  font-size: 1em;
}

.featured-listing .seller-info img {
  object-fit: cover;
  width: 3em !important;
  height: 3em !important;
}

#listing-detail-section > .row {
  padding: 10px 0 !important;
}

.no-booking {
  color: gray;
  text-align: center !important;
}

.close-button {
  margin: 20px auto !important;
}

.button-group {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-right: 2rem;
  flex-wrap: wrap;
}

.card__custom {
  width: 95% !important;
  margin: 20px auto !important;
  background-color: #f8f9fa !important;
}

@media (max-width: 1023px) {
  .card__custom {
    width: 95% !important;
    margin: 20px auto !important;
  }
}

@media (max-width: 767px) {
  .card__custom {
    margin: 10px auto !important;
    /* font-size: 14px !important;*/
  }
}

@media (max-width: 480px) {
  .card__custom {
    margin: 10px auto !important;
    /*font-size: 14px !important;*/
  }
  .button-group {
    flex-direction: column !important;
    margin: 0 1rem !important;
  }
}

/* Listing Detail Responsive Grid */
.listing-detail-row {
  display: flex !important;
  align-items: center !important;
  border-bottom: 1px solid #e9ecef !important;
  padding: 1rem 0 !important;
}
.listing-detail-label {
  color: #495057 !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  flex: 0 0 140px !important;
  min-width: 120px !important;
}
.listing-detail-value {
  color: #2c3e50 !important;
  font-weight: 500 !important;
  flex: 1 1 0 !important;
  text-align: right !important;
}
@media (max-width: 767px) {
  .listing-detail-row {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    padding: 0.75rem 0 !important;
  }
  .listing-detail-label {
    font-size: 1rem !important;
    min-width: 0 !important;
    flex: unset !important;
    width: 50% !important;
    text-align: left !important;
  }
  .listing-detail-value {
    font-size: 1rem !important;
    flex: unset !important;
    width: 50% !important;
    text-align: right !important;
  }
}

/* Listing Detail Action Buttons Responsive */
.listing-detail-actions {
  display: flex !important;
  justify-content: flex-end !important;
  gap: 1rem !important;
  padding-top: 1rem !important;
}
@media (max-width: 767px) {
  .listing-detail-actions {
    flex-direction: column !important;
    gap: 0.75rem !important;
    align-items: stretch !important;
  }
  .listing-detail-actions .ui.button {
    width: 100% !important;
    min-width: unset !important;
    padding: 1rem 0 !important;
    font-size: 1.1rem !important;
  }
}

/* --- Responsive for Header/Authentication Banner --- */
@media (max-width: 767px) {
  .first-section {
    display: none !important;
  }
  .mobile-header {
    display: block !important;
  }
}
@media (min-width: 768px) {
  .mobile-header {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .vision .ui.grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 10px !important;
  }
  .vision .column {
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 24px !important;
    text-align: center !important;
    padding: 0 !important;
  }
  .vision .two.wide.column {
    display: none !important;
  }
}

/* --- Responsive for Explore Categories --- */
@media (max-width: 991px) {
  .explore-category .row {
    flex-wrap: wrap !important;
    display: flex !important;
    justify-content: center !important;
  }
  .explore-category .four.wide.column {
    width: 45% !important;
    max-width: 45% !important;
    margin: 2.5% !important;
    min-width: 140px;
    box-sizing: border-box;
  }
}
@media (max-width: 600px) {
  .explore-category .row {
    flex-wrap: wrap !important;
    display: flex !important;
    justify-content: center !important;
  }
  .explore-category .four.wide.column {
    width: 95% !important;
    max-width: 95% !important;
    margin: 2.5% auto !important;
    min-width: 0;
    box-sizing: border-box;
  }
  .explore-category img {
    width: 40px !important;
  }
  .explore-category h3 {
    font-size: 16px !important;
  }
}

/* Hamburger menu style for mobile header */
.mobile-header {
  display: none;
  width: 100%;
  background: #222;
  color: #fff;
  padding: 12px 16px;
  position: relative;
  z-index: 1000;
}
.mobile-header .hamburger {
  width: 30px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
}
.mobile-header .hamburger span {
  height: 4px;
  background: #fff;
  margin: 4px 0;
  border-radius: 2px;
  display: block;
}

.mobile-header .hamburger.close span {
  background: #fff;
}

.mobile-header .hamburger.close span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-header .hamburger.close span:nth-child(2) {
  transform: rotate(-45deg) translate(4px, -4px);
}


.mobile-header .mobile-menu {
  display: none;
  background: #222;
  position: absolute;
  top: 48px;
  left: 0;
  width: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.mobile-header.open .mobile-menu {
  display: block;
}
.mobile-header .mobile-menu a {
  color: #fff;
  display: block;
  padding: 12px 16px;
  text-decoration: none;
  border-bottom: 1px solid #333;
}
.mobile-header .mobile-menu a:last-child {
  border-bottom: none;
}

/* --- Responsive for TopRecentUser & TopRatedSeller  --- */
@media (max-width: 599px) {
  .top-recent-user.card,
  .top-recent-user .card {
    width: 48% !important;
    min-width: 120px;
    margin: 1% !important;
  }
  .top-recent-user.ui.cards {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
  }
}
@media (min-width: 600px) and (max-width: 991px) {
  .top-recent-user.card,
  .top-recent-user .card {
    width: 31% !important;
    min-width: 160px;
    margin: 1% !important;
  }
  .top-recent-user.ui.cards {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
  }
}
@media (min-width: 992px) {
  .top-recent-user.card,
  .top-recent-user .card {
    width: 22% !important;
    min-width: 180px;
    margin: 1% !important;
  }
}

/* --- Responsive for ExploreCategories --- */
@media (max-width: 599px) {
  .explore-category .row {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
  }
  .explore-category .four.wide.column {
    width: 48% !important;
    max-width: 48% !important;
    margin: 1% !important;
    min-width: 120px;
    box-sizing: border-box;
  }
}
@media (min-width: 600px) and (max-width: 991px) {
  .explore-category .row {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
  }
  .explore-category .four.wide.column {
    width: 31% !important;
    max-width: 31% !important;
    margin: 1% !important;
    min-width: 140px;
    box-sizing: border-box;
  }
}
@media (min-width: 992px) {
  .explore-category .four.wide.column {
    width: 22% !important;
    max-width: 22% !important;
    margin: 1% !important;
    min-width: 180px;
    box-sizing: border-box;
  }
}
