/*============================================================================================*/
/* Your custom styles below */
/*============================================================================================*/

/* ===== NUEVA IDENTIDAD - SOBRESCRIBIR ELEMENTOS ESPECÍFICOS ===== */

/* Colores principales específicos para este sitio */
:root {
  --dorado-principal: #918151;
  --dorado-claro: #D1BB96;
  --dorado-muy-claro: #E8D6B7;
  --gris-oscuro: #5A5E5E;
}

/* Elementos específicos del slider y rangos */
input[type="range"]::-webkit-slider-thumb {
  background-color: var(--dorado-principal) !important;
}

input[type="range"]::-moz-range-thumb {
  background-color: var(--dorado-principal) !important;
}

/* Sobrescribir colores azules restantes */
.bg-primary {
  background-color: var(--dorado-principal) !important;
}

.text-primary {
  color: var(--dorado-principal) !important;
}

.border-primary {
  border-color: var(--dorado-principal) !important;
}


.wrapper1{
    position: relative;
    /*width: 95vmin;*/
    background-color: #ffffff;
    /*padding: 50px 40px 20px 40px;*/
    border-radius: 10px;
    margin-top: 15px;
}
.container1{
    position: relative;
    width: 100%;
    height: 80px;
    margin-top: 5px;
}
input[type="range"]{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    outline: none;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    background-color: transparent;
    pointer-events: none;
}
.slider-track{
    width: 100%;
    height: 5px;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    border-radius: 5px;
}
input[type="range"]::-webkit-slider-runnable-track{
    -webkit-appearance: none;
    height: 5px;
}
input[type="range"]::-moz-range-track{
    -moz-appearance: none;
    height: 5px;
}
input[type="range"]::-ms-track{
    appearance: none;
    height: 5px;
}
input[type="range"]::-webkit-slider-thumb{
    -webkit-appearance: none;
    height: 1.7em;
    width: 1.7em;
    background-color: #3264fe;
    cursor: pointer;
    margin-top: -9px;
    pointer-events: auto;
    border-radius: 50%;
}
input[type="range"]::-moz-range-thumb{
    -webkit-appearance: none;
    height: 1.7em;
    width: 1.7em;
    cursor: pointer;
    border-radius: 50%;
    background-color: #3264fe;
    pointer-events: auto;
}
input[type="range"]::-ms-thumb{
    appearance: none;
    height: 1.7em;
    width: 1.7em;
    cursor: pointer;
    border-radius: 50%;
    background-color: #3264fe;
    pointer-events: auto;
}
input[type="range"]:active::-webkit-slider-thumb{
    background-color: #ffffff;
    border: 3px solid #3264fe;
}
.values{
    background-color: #3264fe;
    width: 80%;
    position: relative;
    margin: auto;
    padding: 5px 0;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
    font-size: 12px;
    color: #ffffff;
}
.values:before{
    content: "";
    position: absolute;
    height: 0;
    width: 0;
    border-top: 15px solid #3264fe;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    margin: auto;
    bottom: -14px;
    left: 0;
    right: 0;
}

/* Make product action icons always visible and larger */
.grid_item ul {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.grid_item ul li a {
    width: 45px !important;
    height: 45px !important;
    line-height: 45px !important;
}

.grid_item ul li a i {
    font-size: 18px !important;
    line-height: 45px !important;
}
