/*
Theme Name:     OneListing Pro
Theme URI:      https://directorist.com/themes
Author:         wpWax
Author URI:     https://wpwax.com/
Description:    OneListing - Smart and Powerful Directory & Listing WordPress Theme
Version:        2.0.12
Text Domain:    onelisting
Tags:           two-columns, three-columns, left-sidebar, right-sidebar, custom-colors, custom-menu, featured-images, footer-widgets, full-width-template, sticky-post, theme-options, threaded-comments, translation-ready, blog
*/

.border_rounded {
    border-radius: 15px; /* Ajusta el valor para mayor o menor redondez */
}

.rounded-container {
    width: 150px;
    height: 150px;
    border-radius: 15%;
    overflow: hidden; /* Recorta la imagen para que quede dentro del borde */
}

/* Aplica transparencia solo en móviles */
@media (max-width: 768px) {
    .rounded-container img {
        opacity: 0.4; /* Ajusta la opacidad para mayor o menor transparencia */
    }
}

.rounded-container img {
    width: 100%;
    height: 110%;
    object-fit: cover; /* Ajusta la imagen sin distorsión */
}

@media (max-width: 768px) {
    .cta-button {
        font-size: 16px; /* Ajusta el tamaño del texto */
        padding: 10px 20px;
        width: 100%; /* O asegúrate de que tenga un ancho adecuado */
        display: flex !important; /* Asegura que siempre se muestre */
    }
}

.cta-button {
    display: flex !important;
}

.cta-button {
    background: linear-gradient(45deg, #333, #111);
    color: #FFFFFF; /* Letras claras */
    font-size: 18px;
    font-weight: bold;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 10px rgba(255, 215, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-button:hover {
    background: linear-gradient(45deg, #111, #333);
    transform: scale(1.05);
    box-shadow: 0px 4px 15px rgba(255, 215, 0, 0.4);
}




/* Styling the combo box */
select {
    background-color: #000000 !important;
    color: #FFFFFF !important;
    font-size: 18px !important;
    font-weight: bold !important;
    padding: 12px 24px !important;
    border: none !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0px 4px 10px rgba(255, 215, 0, 0.2) !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-repeat: no-repeat !important;
    background-position: right 16px center !important;
    background-size: 16px 16px !important;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg fill='%23FFF' height='16' viewBox='0 0 24 24' width='16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") !important;
}

/* Arrow customization */
select::-ms-expand {
    display: none;
}

/* Hover effect */
select:hover {
    background: linear-gradient(45deg, #111, #333);
    transform: scale(1.05);
    box-shadow: 0px 4px 15px rgba(255, 215, 0, 0.4);
}

/* Focus effect */
select:focus {
    outline: none;
    background: linear-gradient(135deg, #fff0f0, #ff8090);
}


.facetwp-reset {
    background: linear-gradient(45deg, #333, #111);
    color: #FFFFFF; /* Letras claras */
    font-size: 18px;
    font-weight: bold;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 10px rgba(255, 215, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
}

.el-fz703r {
    color: black !important; /* Fuerza el color negro */
    text-decoration: none; /* Elimina el subrayado */
    font-weight: bold;
    font-size: 16px;
    padding: 5px 10px;
    border-radius: 10px; /* Bordes más redondeados */
    background-color: #f2f2f2; /* Fondo gris claro */
    transition: all 0.3s ease;
}

/* Estilo al pasar el cursor */
.el-fz703r:hover {
    color: black !important; /* Mantiene el color negro */
    background-color: #ddd; /* Fondo gris un poco más oscuro */
    text-decoration: underline;
}

/* Ajustes para móviles */
@media (max-width: 768px) {
    .el-fz703r {
        font-size: 14px;
        padding: 8px 12px;
    }
}