/********** Template CSS **********/
:root {
    --primary: #06A3DA;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E;
    --primary-strong: #00A6E0;
    --height-producto: 605px;
    --width-producto: 356px;
    --height-producto-img: 446.5px;
    --width-producto-img:  356px
}


/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
    cursor: wait;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-dark .navbar-brand .h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: var(--light) !important;
    /* border-color: var(--light) !important; */
    background-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        /* position: relative; */
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }

    .navbar-dark .navbar-brand .h1 {
        color: var(--primary);
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand .h1 {
        color: var(--primary);
    }
}


/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, .4);
    z-index: 1;
}

.carousel {
    padding-bottom: 3rem !important;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h3 {
        font-size: 22px;
        font-weight: 600 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
    .carousel {
        padding-bottom: 0rem !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    /* background-color: var(--primary);
    border-radius: 0.5rem;
    border: 2px solid var(--dark); */
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}


/*** Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img  {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

/* .back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 120px;
    z-index: 99;
    border-radius: 50px !important;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
} */

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .4), rgba(9, 30, 62, .4)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.bg-sillas {
    background: linear-gradient(rgba(9, 30, 62, .4), rgba(9, 30, 62, .4)), url(../img/fondo-sillas.WebP) center center no-repeat;
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}

/* ------------------------------- PERSONALIZADOS -------------------------------- */
.g-10,.gx-10 {
    --bs-gutter-x: 10rem;
}

.a:hover {
    color: var(--primary-strong) !important;
}


/*** Category ***/
.cat-item div {
    background: #FFFFFF;
    border: 1px dashed var(--primary);
    transition: .5s;
}

.cat-item:hover div {
    background: var(--primary-strong);
    border-color: transparent;
}

.cat-item div * {
    transition: .35s;
}

.cat-item:hover div * {
    color: #FFFFFF !important;
}

.cat-item:hover div .icon i::before {
    color: var(--primary-strong) !important;
}

/*** SubCategory ***/
.subcat-item div {
    border: 2px dashed var(--primary);
    transition: .5s;
}

.subcat-item:hover div {
    background-color: var(--bs-gray) !important;
    border-color: transparent;
}

.subcat-item div * {
    transition: .35s;
}

.subcat-item:hover div * {
    color: #FFFFFF !important;
}

.subcat-item {
    height: 25rem !important;
    max-height: 100% !important;
    background-size: cover !important;
}

/* @media (max-width: 767.98px) {
    .subcat-item {
        height: 15rem !important;
    }
} */

.subcat-item:hover div .icon i::before {
    color: var(--primary) !important;
}
/*** Icon ***/
.icon {
    padding: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF !important;
    color: var(--primary) !important;
    border-radius: 50px;
    border: 1px dashed var(--primary) !important;
}

.icon > img {
    /* max-width: 4rem; */
    max-height: 4rem;
}

@media (max-width: 767.98px) {
    .icon {
        /* padding: 10px; */
        border: .7px dashed var(--primary) !important;
    }
    .icon > img {
        /* max-width: 3rem; */
        max-height: 3rem;
    }
}
/*** Property List ***/
.nav-pills .nav-item .btn {
    color: var(--dark);
}

.nav-pills .nav-item .btn:hover,
.nav-pills .nav-item .btn.active {
    color: #FFFFFF;
}

.property-item {
    box-shadow: 0 0 50px rgba(0, 0, 0, .2);
    height: var(--height-producto);
    width: var(--width-producto);
    display: grid;
    /* align-items: center; */
    grid-template-rows: 75% 25%;
    justify-items: center;
    justify-content: center;
}

.property-item:hover {
    box-shadow: 0 0 35px rgba(0, 0, 0, .4);
}

.property-item img {
    transition: .5s;
    height: var(--height-producto-img);
    width: var(--width-producto-img);
}

.property-item:hover img {
    transform: scale(1.1);
}

.property-item .border-top {
    border-top: 1px dashed rgba(0, 185, 142, .3) !important;
}

.property-item .border-end {
    border-right: 1px dashed rgba(0, 185, 142, .3) !important;
}

.nombre-producto {
    overflow: auto;
    /* height: calc(.2 * var(--height-producto)); */
}

@media (max-width: 992px) {
    .property-item {
        height: calc(.7 * var(--height-producto));
        width: calc(.7 * var(--width-producto));
    }
    
    .property-item img {
        height: calc(.7 * var(--height-producto-img));
        width: calc(.7 * var(--width-producto-img));
    }

    .nombre-producto {
        /* height: calc(.7 * calc(.2 * var(--height-producto))); */
    }
}


.fila{
    cursor: pointer;
}

.filaAdjunto {
    justify-content: flex-start;
}

.adjuntoCard{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
}

@media (min-width: 992px) {
    .title-login {
        font-size: 3.5rem !important; 
    }
    
    .card-login {
        width: 25rem !important;
    }
}

@media (max-width: 576px) {
    .nav-img-admin {
        width: inherit;
    }
}

.columnaProducto{
    width: 20%;
}
.columnaTipo{
    width: 15%;
}
.columnaSpec{
    width: 4rem;
    max-width: 4rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 576px) {
    .columnaSpec {
        display: none;
    }
}


/* SWITCH CHECK LOCK  */

.switch-container {
    position: relative;
    display: inline-block;
    width: 65px;
    height: 33px;
}

.switch-container input {
    display: none;
}

.switch-container label {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    /* background-color: var(--primary); */
    background-color: #ccc;
    border-radius: 50px;
    transition: background-color 0.2s;
}

.switch-container .lock-icon {
    position: absolute;
    top: 47%;
    margin-left: .6rem;
    transform: translateY(-50%);
    width: 19px;
    height: 22px;
    border-radius: 10%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M144 144c0-44.2 35.8-80 80-80c31.9 0 59.4 18.6 72.3 45.7c7.6 16 26.7 22.8 42.6 15.2s22.8-26.7 15.2-42.6C331 33.7 281.5 0 224 0C144.5 0 80 64.5 80 144v48H64c-35.3 0-64 28.7-64 64V448c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V256c0-35.3-28.7-64-64-64H144V144z"/></svg>');
    background-size: cover;
    transition: transform 0.2s;
}

.switch-container input:checked + label {
    /* background-color: #ccc; */
    background-color: var(--bs-cyan);
}

.switch-container input:checked + label .lock-icon {
    transform: translate(27px, -50%);
    /* background-color: #fff; */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M144 144v48H304V144c0-44.2-35.8-80-80-80s-80 35.8-80 80zM80 192V144C80 64.5 144.5 0 224 0s144 64.5 144 144v48h16c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V256c0-35.3 28.7-64 64-64H80z"/></svg>');
}

.switch-container label:hover {
    /* background-color: var(--primary-strong); */
    background-color: #b3b3b3;
}

.switch-container input:checked + label:hover {
    /* background-color: #b3b3b3; */
    background-color: var(--primary);
}

@media (min-width: 992px) {
    .dropdown-session-menu {
        position: absolute;
        top: 100%;
        right: 0;
        max-width: 200px;
        border-radius: 8px;
        overflow: hidden;
    }
}

.dropdown-session-toggle{
    padding-bottom: calc(35px - .5rem) !important;
}

.dropdown-session-toggle::after{
    display: none;
}

.dropdown-user {
    padding: .5rem;
    border: 1px solid;
    /* border-color: var(--light); */
    border-radius: 50%;
}

.dropdown-item-user {
    text-align: center;
    font-weight: 500;
    /* display: block;
    width: 100%;
    padding: 0.25rem 1rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0; */
    color: var(--light);
    background-color: var(--dark);
}
.dropdown-item-user:hover, .dropdown-item-user:focus {
    color: var(--light);
    background-color: var(--dark);
}

.accion-user{
    width: 87px!important;
    max-width: 87px!important;
}

.usuario-user{
    width: 160px!important;
    max-width: 160px!important;
}

.rol-user{
    width: 95px!important;
    max-width: 95px !important;
}

.card {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.card img {
    width: 100%;
    height: 100%;
    display: block;
}

.card h3 {
    font-size: 18px;
    font-weight: 500;
    margin: 10px 0;
    padding: 0 10px;
}

.delete-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
    color: #ccc;
}

.delete-icon:hover {
    color: #f00;
}

.adjunto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 1rem;
    grid-auto-flow: row;
}

@media (max-width: 768px) {
    .adjunto-grid {
        grid-template-columns: 1fr 1fr;
        column-gap: .5rem;
    }
}

@media (max-width: 576px) {
    .adjunto-grid {
        grid-template-columns: unset;
        row-gap: 2rem;
    }
}

.adjunto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 1rem;
    grid-auto-flow: row;
}

@media (max-width: 768px) {
    .adjunto-grid {
        grid-template-columns: 1fr 1fr;
        column-gap: .5rem;
    }
}

@media (max-width: 576px) {
    .adjunto-grid {
        grid-template-columns: unset;
        row-gap: 2rem;
    }
}

.card-contenido {
    display: grid;
    height: 100%;
    align-items: stretch;
}


.card-contenido img {
    transition: .5s;
    overflow: hidden;
}

.card-contenido:hover img {
    transform: scale(1.1);
}

.card-footer {
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-producto{
    padding-bottom: 0 !important;
}

.click-bloqueado {
    cursor: not-allowed;
}

.clickeable {
    cursor: pointer;
}

.bg-gray {
    background: #6c757d;
    color: white !important;
}

.bg-gray:hover {
    background: #495057;
}

.btn-gray {
    background: #6c757d;
    color: white !important;
}

.btn-gray:hover {
    background: #495057;
}

.img-carrusel-spec-old {
    max-width: 100% !important;
    height: 30rem !important;
}

.img-carrusel-list {
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain;
    
    background-image: url(../img/fondo.png);
}

.img-carrusel-spec {
    max-width: 100% !important;
    max-height: 100% !important;
    width: 31rem !important;
    height: 30rem !important;
    object-fit: contain;
    
    background-image: url(../img/fondo.png);
}

@media (min-width: 425px) and (max-width: 768px) {
    .img-carrusel-spec {
        height: 40rem !important;
    }
}

@media (min-width: 1024px) {
    .img-carrusel-spec {
        height: 40rem !important;
    }
}

/* @media (max-width: 1024px) {
    .img-carrusel-spec {
        width: 28rem !important;
        height: 27rem !important;
    }
}

@media (max-width: 768px) {
    .img-carrusel-spec-old {
        height: 20rem !important;
    }
    .img-carrusel-spec {
        width: 21rem !important;
        height: 20rem !important;
    }
} */

.cursor-help {
    cursor: help;
}

.flex-all-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.titulo-producto {
    color: var(--primary-strong) !important;
    -webkit-text-fill-color: var(--primary-strong);
    /* -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--bs-dark); */
    font-size: 3rem;
}

.titulo-especificaciones {
    color: var(--primary) !important;
    text-shadow: .5px -.5px .5px var(--dark);
}

@media (max-width: 360px) {
    .font-smaller  {
        font-size: smaller !important;
    }
}

.carousel-control-prev-icon {
    /* background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Pro 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M310.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-192 192c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L242.7 256 73.4 86.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l192 192z"/></svg>') !important; */
    background-image: none !important;
}

.carousel-control-next-icon {
    /* background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Pro 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M310.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-192 192c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L242.7 256 73.4 86.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l192 192z"/></svg>') !important; */
    background-image: none !important;
}

.carousel-control-prev-icon::after {
    margin-left: 1rem;
    font-weight: 900;
    font-family: "Font Awesome 6 Free";
    -webkit-font-smoothing: antialiased;
    display: var(--fa-display,inline-block);
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    content: "\f053";
    -webkit-text-fill-color: var(--bs-light);
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: var(--bs-dark);
    font-size: 3rem;
}

.carousel-control-next-icon::after {
    margin-right: 1rem;
    font-weight: 900;
    font-family: "Font Awesome 6 Free";
    -webkit-font-smoothing: antialiased;
    display: var(--fa-display,inline-block);
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    content: "\f054";
    -webkit-text-fill-color: var(--bs-light);
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: var(--bs-dark);
    font-size: 3rem;
}

.sombra-spec {
    box-shadow: 0 0 1rem var(--dark);
    border-radius: 1rem;
}

.contacto-head {
    display: none !important;
    /* display: flex; */
    align-items: center;
    position: absolute;
    top: 7rem;
    left: 1rem;
    padding: .3rem;
    box-shadow: 0 0 .2rem white;
    border-radius: .5rem;
}

@media (max-width: 768px) {
    .contacto-head {
        display: none !important;
    }
}

.bloque-producto {
    display: contents;
    width: min-content;
}

.flotante {
    position: fixed;
    width: 60px;
    height: 60px;
    right: 40px;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
}

.back-to-top {
    display: none;
    bottom: 120px;
    /* box-shadow: 2px 2px 3px #999; */
}

.whatsapp-float {
    bottom: 40px;
    /* box-shadow: 2px 2px 3px #999; */
}

.text-gray{
    --bs-text-opacity:1;
    color:rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

.item-bloquedo {
    --bs-text-opacity:1;
    color:rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
    cursor: not-allowed !important;
    text-decoration: line-through !important;
}

/* Excepción: <a> dentro de .item-bloquedo PERO que NO tenga la clase item-bloquedo */
.item-bloquedo a:not(.item-bloquedo) {
  cursor: pointer !important;
}

video {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

.ui-state-default {
    cursor: grab;
}

.ui-state-default:active {
    cursor: grabbing;
}

.ui-state-default.seleccionado {
	transform: scale(1.05) rotate(-1deg);
	box-shadow: 0px 0px 20px rgba(173, 177, 182, 0.1);
}
