/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *

 */

 @import url(/assets/bootstrap-0c1687b4b72eb522714e869471fa11c72af24e07def325efed79d8c21e717ac0.css);
 @import url(/assets/style-c996b61da92af72bb3a04f5267316280afbafcac5b67bf55e6508bb3c0dff98e.css);
 @import url(/assets/responsive-9ea5ffc389c371a7ec6cc063feb96521d04814bbc2e1892e5e2ff2edc7eb8445.css);
 @import url(/assets/color-switcher-design-7aaa60838644ac265ba53f0002f7d0274d4bc2a87cc2d5073e5ec0c5101daee3.css);
 @import url(/assets/actiontext-12c27357173eea24467e55baf0e3b42d975d648632ea2bec15fbb8249a0fd347.css);

.bg-warning {
  background-color: #ffbc00 !important;
}

.bg-orange {
  background-color: #ff7e00 !important;
}

.bg-info {
  background-color: #0074d9 !important;
}

.bg-brown {
  background-color: #ab8b40 !important;
}

.posting-date {
  margin: 0 !important;
}
.posting-date h2 {
  font-size: 20px !important;
}

.chat-search-box {
  -webkit-border-radius: 3px 0 0 0;
  -moz-border-radius: 3px 0 0 0;
  border-radius: 3px 0 0 0;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #ffbc00;
}

.chat-search-box .input-group .form-control {
  -webkit-border-radius: 2px 0 0 2px;
  -moz-border-radius: 2px 0 0 2px;
  border-radius: 2px 0 0 2px;
  border-right: 0;
}

.chat-search-box .input-group .form-control:focus {
  border-right: 0;
}

.chat-search-box .input-group .input-group-btn .btn {
  -webkit-border-radius: 0 2px 2px 0;
  -moz-border-radius: 0 2px 2px 0;
  border-radius: 0 2px 2px 0;
  margin: 0;
}

.chat-search-box .input-group .input-group-btn .btn i {
  font-size: 1.2rem;
  line-height: 100%;
  vertical-align: middle;
}

@media (max-width: 767px) {
  .chat-search-box {
    /* display: none; */
  }
}

/************************************************
  ************************************************
                          Users Container
  ************************************************
************************************************/

.users-container {
  position: relative;
  padding: 1rem 0;
  border-right: 1px solid #ffbc00;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

/************************************************
  ************************************************
                                Users
  ************************************************
************************************************/

.users {
  padding: 0;
  height: 400px;
  overflow-y: scroll;
}

.users .person {
  position: relative;
  width: 100%;
  padding: 10px 1rem;
  cursor: pointer;
  border-bottom: 1px solid #ffbc00;
}

.users .person:hover {
  background-color: black;
}

.users .person.active-user {
  background-color: black;
}

.users .person:last-child {
  border-bottom: 0;
}

.users .person .user {
  display: inline-block;
  position: relative;
  margin-right: 10px;
}

.users .person .user img {
  width: 48px;
  height: 48px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
}

.users .person .user .status {
  width: 10px;
  height: 10px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  background: #e6ecf3;
  position: absolute;
  top: 0;
  right: 0;
}

.users .person .user .status.online {
  background: #9ec94a;
}

.users .person .user .status.offline {
  background: #c4d2e2;
}

.users .person .user .status.away {
  background: #f9be52;
}

.users .person .user .status.busy {
  background: #fd7274;
}

.users .person p.name-time {
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-block;
}

.users .person p.name-time .time {
  font-weight: 400;
  font-size: 0.7rem;
  text-align: right;
  color: #8796af;
}

@media (max-width: 767px) {
  .users .person .user img {
    width: 30px;
    height: 30px;
    display: none;
  }
  .users .person p.name-time {
  }
  .users .person p.name-time .time {
    display: none;
  }
}

/************************************************
  ************************************************
                          Chat right side
  ************************************************
************************************************/

.selected-user {
  width: 100%;
  padding: 0 15px;
  min-height: 64px;
  line-height: 64px;
  border-bottom: 1px solid #ffbc00;
  -webkit-border-radius: 0 3px 0 0;
  -moz-border-radius: 0 3px 0 0;
  border-radius: 0 3px 0 0;
}

.selected-user span {
  line-height: 100%;
}

.selected-user span.name {
  font-weight: 700;
}

.chat-container {
  position: relative;
  padding: 1rem;
}

.chat-box {
  height: 400px;
  overflow-y: scroll;
  overflow-x: hidden;
}

.chat-container li.chat-left,
.chat-container li.chat-right {
  display: flex;
  flex: 1;
  flex-direction: row;
  margin-bottom: 40px;
}

.chat-container li img {
  width: 48px;
  height: 48px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

.chat-container li .chat-avatar {
  margin-right: 20px;
}

.chat-container li.chat-right {
  justify-content: flex-end;
}

.chat-container li.chat-right > .chat-avatar {
  margin-left: 20px;
  margin-right: 0;
}

.chat-container li .chat-name {
  font-size: 0.75rem;
  color: #999999;
  text-align: center;
}

.chat-container li .chat-text {
  padding: 0.4rem 1rem;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background: #ffffff;
  font-weight: 300;
  line-height: 150%;
  position: relative;
}

.chat-container li .chat-text:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 10px;
  left: -20px;
  border: 10px solid;
  border-color: transparent #ffffff transparent transparent;
}

.chat-container li.chat-right > .chat-text {
  /* text-align: right; */
}

.chat-container li.chat-right > .chat-text:before {
  right: -20px;
  border-color: transparent transparent transparent #ffffff;
  left: inherit;
}

.chat-container li .chat-hour {
  padding: 0;
  margin-bottom: 10px;
  font-size: 0.75rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 0 0 0 15px;
}

.chat-container li .chat-hour > span {
  font-size: 16px;
  color: #9ec94a;
}

.chat-container li.chat-right > .chat-hour {
  margin: 0 15px 0 0;
}

@media (max-width: 767px) {
  .chat-container li.chat-left,
  .chat-container li.chat-right {
    flex-direction: column;
    margin-bottom: 30px;
  }
  .chat-container li img {
    width: 32px;
    height: 32px;
  }
  .chat-container li.chat-left .chat-avatar {
    margin: 0 0 5px 0;
    display: flex;
    align-items: center;
  }
  .chat-container li.chat-left .chat-hour {
    justify-content: flex-end;
  }
  .chat-container li.chat-left .chat-name {
    margin-left: 5px;
  }
  .chat-container li.chat-right .chat-avatar {
    order: -1;
    margin: 0 0 5px 0;
    align-items: center;
    display: flex;
    justify-content: right;
    flex-direction: row-reverse;
  }
  .chat-container li.chat-right .chat-hour {
    justify-content: flex-start;
    order: 2;
  }
  .chat-container li.chat-right .chat-name {
    margin-right: 5px;
  }
  .chat-container li .chat-text {
    font-size: 0.8rem;
  }
}

.chat-form {
  padding: 15px;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  border-top: 1px solid white;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.card {
  border: 0;
  background: #252525;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  margin-bottom: 2rem;
  box-shadow: none;
}

.message-box {
  width: fit-content;
  max-width: 60%;
  padding: 5px;
  border-radius: 10px;
  margin-bottom: 10px;
  background-color: #555555;
  padding: 10px;
  color: #fff;
}

@media (max-width: 767px) {
  .message-box {
    max-width: 80%;
  }
}

.custom-alert {
  position: fixed;
  top: 50px; /* Adjust based on how far from the top you want it */
  right: 20px; /* Adjust based on how far from the right edge you want it */
  z-index: 200000; /* Ensures the alert stays on top of other content */
}

.image-box.mt-2 img {
  height: 150px;
  object-fit: cover;
}

.image-box img {
  height: 400px;
  object-fit: cover;
}

.image-upload {
  height: 150px;
  width: 150px;
  object-fit: cover;
}

.listing-image {
  height: 300px !important;
  object-fit: cover;
}

.blog-image {
  height: 85px !important;
  object-fit: cover;
}

@media (max-width: 767px) {
  .listing-image {
    height: 400px !important;
  }
}

.user-listing-image {
  height: 250px !important;
  object-fit: cover;
}

.logo-image {
  height: 50px;
}

.category-list {
  overflow: scroll;
  display: flex;
}

.category-list a {
  width: max-content;
}

@media (min-width: 992px) {
  /* CUSTOM WIDTHS */
  .w-md-25 {
    width: 25% !important;
  }
  .w-md-75 {
    width: 70% !important;
  }
}

.person .full-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit; /* Ensures that the text inside the link inherits the default color */
}

.status-badge {
  font-size: 15px;
}

.admin-panel .card {
  background: white;
}

#cookie-modal {
  background-color: #252525;
  color: white;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  border-radius: 0;
  border-color: #ffbc00;
  display: none;
}

.blog-title {
  font-size: 2em;
  font-weight: bold;
}

/* Hide mobile logo by default */
.mobile-logo {
  display: none;
}

/* Show desktop logo by default */
.desktop-logo {
  display: block;
}

/* For smaller screens, show the mobile logo and hide the desktop logo */
@media (max-width: 768px) {
  .mobile-logo {
    display: block;
  }
  .desktop-logo {
    display: none;
  }
}

.sidebar-ad {
  height: 250px;
  width: 100%;
}

hr {
  border-color: white;
}

.forum-sidebar a:hover{
  color: white;
}

.thread-form .form-group, .forum-thread .thread-details{
  color: white;
}

.thread-form strong, .forum-thread strong, .trix-content strong{
  color: white;
}

.forum-post {
  border: 1px solid #ffbc00;
  box-shadow: 1px 2px #ffbc00;
}

.forum-post .card-body p {
  color: white;
}

.user-details a:hover, .forum-thread a:hover{
  color: white;
}

.forum-thread .thread-title {
  font-size: 0.8em;
  font-weight: 500;
}
.forum-thread .thread-content {
  color: white !important;
}

.forum-thread h1 {
  font-size: 2em;
  font-weight: 800;
  color: white;
}

trix-editor h1 {
  color: black !important;
}

.pagy-nav {
  display: block; /* Maintain block-level behavior */
  margin-top: 50px; /* Top margin */
}

.pagy-nav .page {
  display: inline-block;
  margin: 0 10px; /* Space between pages */
}

.pagy-nav .page a, .pagy-nav .page.active, .pagy-nav .page.disabled {
  display: block;
  font-size: 16px;
  line-height: 40px;
  width: 40px;
  text-align: center;
  color: #ffffff;
  background-color: #252525;
  border-radius: 15px;
  border-bottom: 2px solid #ffbc00;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.40);
  transition: all 300ms ease;
}

.pagy-nav .page.active,
.pagy-nav .page a:hover {
  color: #ffbc00;
  display: inline-block;
}

.pagy-nav .page.prev a, .pagy-nav .page.next a{
  display: inline-block;
  width: 80px;
}

.pagy-nav .page.disabled {
  display: inline-block;
  color: #ccc;
  pointer-events: none; 
  width: 80px;

}

.trix-form {
  background-color: white;
  color: black !important;
  padding: 1%;
}

/* .trix-content {
  color: #e4e4e4 !important;
} */

.trix-form strong {
  color: black !important;
}

trix-editor ul li, .trix-content ul li{
  list-style: disc;
  margin-left: 20px;
}

trix-editor ol li, .trix-content ol li{
  list-style: decimal;
  margin-left: 20px;
}

.admin-panel .trix-content {
  color: black !important;
}

.forum-post-content img {
  max-height: 300px;
  width: 100%;
  object-fit: cover;
}

.current_plan {
  border: 1px solid #ffbc00 !important;
  /* bottom: 0 !important;
  position: fixed !important;
  width: 100% !important; */
  text-align: center !important;
}

.organizer-info .icon {
  top: 0 !important;
}

.event-search input {
  width: auto !important;
}

.event-search select {
  -webkit-appearance:none;
  width: auto !important;
}

.simple-calendar {
  .calendar-heading {
    text-align: center;
    font-size: 1.2em;
    color: white;
    margin-bottom: 20px;

    a{
      border: 1px solid #ffbc00;
      padding: 5px;
      border-radius: 5px;
    }

    a:hover{
      background-color: #ffbc00;
      color: black;
    }
  }

  @media (max-width: 768px) {
    .table {
      display: block;
      width: 100%;
      overflow-x: auto;
    }
  }
}

.question-link {
  color: white;
}

.question-link:hover {
  color: #ffbc00;
}


.rating-box .rating {
  display: inline-block;
}

.rating-box .star-label {
  cursor: pointer;
  font-size: 1.2em;
  color: #ccc; /* Default star color */
}

.rating-box input[type="radio"] {
  display: none;
}

/* Style for selected stars (initially empty) */
.rating-box .star-label.selected {
  color: #ffc107; /* Your preferred star color */
}

.dropzone.dz-started .dz-message {
  display: block;
}

.dz-remove {
  color: red;
}

.review-image-box img {
  height: 100px;
  object-fit: cover;
}

.table-responsive table {
  min-width: 800px;
}

/* p, .text, 
.service-block-two .text, 
.product-details .basic-details .text,
.sidebar .related-posts .post .price,
.thread-title,
.forum-thread-filters a,
.project-detail .lower-content p,
.checkout-form .form-group .field-label,
.login-form .form-group label,
.main-footer .about-widget .text p,
.checkout-form input,
.checkout-form textarea,
.checkout-form textarea:focus,
.checkout-form select
{
  color: #e4e4e4 !important;
} */

.forum-user img {
  width: 100%;
}

.tagify{
  line-height: 1.5;
  padding: .375rem .375rem;
}

.business-title{
  font-size: 2.5em;
}

.message-time {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.7rem;
}

.form-category-input .field_with_errors {
  display: inline;
}

.breadcrumb {
  background-color: initial;
  padding: 0;
  color: #e4e4e4;
}

.breadcrumb li{
  margin: 0 5px;
}

.breadcrumb a:hover{
  color: #ffbc00;
}

.clients-section .slide-item img {
  opacity: 1;
}

.clients-section {
  background-color: #121212;
  box-shadow: none;
}
