.form-control:not(.search-bar-input) {
    color: var(--bs-body-color)  !important;
} 
.search-bar-input{
	    color: var(--bs-body-color)  !important;
}
 
.pdf-icon {
	 font-size: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    position: relative;
    width: 6em; 
    -moz-background-size: 85% auto; 
}
.pdf-icon:after {
	     content: 'PDF';
    font-family: Arial;
    font-weight: bold;
    font-size: 1.2em;
    text-align: center;
    padding: 0.2em 0 0.1em;
    color: #fff;
    display: block; 
    width: 3.4em; 
    background:var(--primary-color) !important;
    border-radius: 2px;
}


.xml-icon {

    font-size: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; 
    position: relative;
    width: 6em; 
    -moz-background-size: 85% auto; 
       top: -35px;
    right: -68px;
}
.xml-icon:after {
	content: 'XML';
    font-family: Arial;
    font-weight: bold;
    font-size: 1.2em;
    text-align: center;
    padding: 0.2em 0 0.1em;
    color: #fff;
 
    position: absolute; 
    width: 3.4em; 
  background:var(--secondary-color) !important;
    border-radius: 2px;
}

@keyframes swipe-left-out {
  from { transform: translateX(0); }
  to { transform: translateX(-100%) }
}

.swipe-left-out {
  animation: swipe-left-out .5s forwards;
}

@keyframes swipe-right-in {
  from { transform: translateX(-100%); }
  to { transform: translateX(0) }
}

.swipe-right-in {
  animation: swipe-right-in .5s forwards;
}

.user-avatar {
  background-color: #f2f3f4;
  height: 1.8rem;
  width: 1.8rem;
}

.user-avatar.no-image {
  background-image: url(../../../images/user.svg);
  background-repeat: no-repeat;
  background-size: 1.2rem;
  background-position: center;
  border: 1px solid #e1e2e3;
}

.user-avatar > img {
  height: 1.8rem;
  width: 1.8rem;
}

/* css para galeria y otros */
.city-card {
    position: relative;
    width: 100%;
    padding-bottom: 75%; /* 3/4 aspect ratio (4 / 3 * 100) */
    background-size: 100% 100%;
    background-position: center;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.25s ease-in-out;
    cursor: pointer;
}

.city-card-text{
    color: white;
    transition: all 0.25s ease-in-out;
}

.city-card:hover {
    background-size: 125% 125%;
    background-position: center;
}

.city-card:hover .city-card-text {
    opacity: 0;
}

.city-card:hover .city-card-hover {
    opacity: 1;
}

.city-card-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    transition: all 0.25s ease-in-out;
}

.city-card-hover {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(248, 153, 74, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease-in-out;
}

.city-card-overlay {
    min-height: 75%;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
    display: flex;
    align-items: end;
    transition: all 0.25s ease-in-out;
}

label.btn-option, label.btn-option:hover {
    border: 1px solid #CBC9C9 !important;
    color: #989595 !important;
    background-color: #FAFAFA !important;
    height: 100%;

    small {
        font-size: 13px;
        line-height: 15px;
    }

    img {
        filter: invert(70%) sepia(10%) saturate(61%) hue-rotate(314deg) brightness(84%) contrast(86%);
    }
}

.btn-check:checked + label.btn-option {
    /* Add your styles here */
    background-color: white !important; /* Example: changing the background color */
    border: 1px solid #F28B36 !important; /* Example: changing the border */
    color: #F28B36 !important; /* Example: changing the text color */

    img {
        filter: invert(61%) sepia(67%) saturate(1082%) hue-rotate(336deg) brightness(99%) contrast(92%);
    }
}

.search-results {
    border: 1px solid #ccc;
    max-height: 200px;
    overflow-y: auto;
    width: 100%;
    margin-top: 5px;
    position: absolute;
    background-color: white;
    z-index: 100;
    display: none;
}
.result-item {
    display: flex;
    justify-content: space-between;
    padding: 5px;
    background-color: #f9f9f9;
    cursor: pointer;
}
.result-item:hover {
    background-color: #e0e0e0;
}
.selected-items {
    margin-top: 10px;
}
.selected-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    margin-bottom: 5px;
    position: relative;
}
.input-container {
    position: relative;
    width: 100%;
}
.clear-button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    display: none;
}
.company-label {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 5px;
    cursor: pointer;
    background-color: #f9f9f9;
}
.company-label:hover {
    background-color: #e0e0e0;
}

.delete-button {
    cursor: pointer;
    color: #989595;
    margin-left: 10px;
}

.filters {
    display: flex;
    justify-content: space-between;
}

.filter {
    flex: 1;
    padding: 10px;
    margin: 5px;
    background-color: white;
    border: 1px solid lightgray;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    color: grey;
    transition: background-color 0.3s, color 0.3s, border-bottom 0.3s;
    border-bottom: none;
}

.filter.active {
    background-color: white;
    color: #F28B36;
    border-bottom: 2px solid #F28B36;
}

.filter.asc:after {
    content: ' ▲'; /* Arrow up */
}

.filter.desc:after {
    content: ' ▼'; /* Arrow down */
}

.filter:hover {
    background-color: #ddd;
}

.mobile-nav-filter {
    text-decoration: none;
    text-align: center;
    display: block;
    padding: 1rem 1rem;
    min-width: fit-content;
    white-space: nowrap;      /* Force text to stay on one line */
    overflow: hidden;         /* Hide any overflow */
    text-overflow: ellipsis;  /* Optional: adds ... at the end of the text if it overflows */
    flex-grow: 1;

    p{
        line-height: 16px;
        color: white;
        margin-bottom: 0 !important;
        margin-top: 0.5rem;
        font-weight: 500;
    }


    img {
        filter: invert(100%) sepia(0%) saturate(7484%) hue-rotate(122deg) brightness(107%) contrast(107%);
    }
}

div.bg-primary {
    background-color: var(--primary-color) !important;
}

.textorange{
    color: #f28b36;
}

.destino-card {
    background-size: 100% 100%;
    background-position: center center;
    min-height: 350px;
    transition: all 0.25s ease-in-out;
    .content {
        transition: all 0.25s ease-in-out;
        background-color: rgba(0, 0, 0, 0.2)
    }
}
.destino-card:hover {
    background-size: 120% 120%;
    .content {
        background-color: rgba(0, 0, 0, 0.3)
    }
}

/*div.destino-navbar {
    width: 100%;
    max-width: 250px;
    height: 100%;
    margin-right: 0;
    margin-top: 0;

    .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }
}*/
