/* ======  Google Font Import - Poforsins ==== */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Lato:400,700");

* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* PORTADA HOME */
.position-relative {
    position: relative !important;
}

.position-absolute {
    position: absolute;
    top: 0;
    right: 0;
}

.banner-container {
    padding-top: 4%;
    display: flex;
    align-items: flex-end; /* Alinea los elementos en la parte inferior del contenedor */
    justify-content: space-between; /* Distribuye los elementos en el espacio disponible */
}

.img-right-container {
    max-width: 100%;
    display: flex;
    flex-direction: column;
}

@keyframes slide-in-left {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slide-in-right {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.images-container {
    margin-top: 20px;
}

/* Estilos para dispositivos m¨®viles */

/* seccion de insignias */
/* .title-main {
	display: flex;
	justify-content: center;
	align-items: center;
} */

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 65px;
}

.badge-text {
    margin-top: 10px;
    text-align: center;
}

/* --------- Styles Activities Filter & Search -------------------------------------------------------------------------------------------------------------*/
/* -------------------------------------------------------------------------------------------------------------------------------------------------------- */
.aside-section{
    /* height: 850px; */
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    z-index: 1020;
    padding-bottom: 2rem;
}

.aside-section .filter {
    padding: 0 1rem;
    padding-bottom: 1.5rem;
}

.aside-section .filter .search {
    padding-top: 1.5rem;
}
.aside-section .headerContainer,
filtertypeSpacing{
    padding: 1rem 0; 
    display: flex; 
    justify-content:space-between;
}
.aside-section .filter h5 {
    font-size: 1.125rem; font-weight: 700;
}
.aside-section .filter .Separator {
    border-bottom: solid 1px #D9D9D9;
}
.aside-section .filterCategorySpacing {
    padding-bottom: 1.5rem;
}
.aside-section .checkbox-container input{
    width: 1.125rem; 
    height: 1.125rem; 
    margin: 0.1875rem 0.8125rem 0.1875rem 0.125rem; 
    border-radius: 0.125rem; 
    box-sizing: border-box; 
    flex-shrink: 0;
}

/* --------- STYLE LOGIN -------------------------------------------------------------------------------------------------------------*/
/* ---------------------------------------------------------------------------------------------------------------------------------- */
.login-center {
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e6e6e6;
}

.register-center {
    padding-top: 75px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e6e6e6;
}

.container-login {
    position: relative;
    max-width: 430px;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.container-register {
    position: relative;
    max-width: 360px;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.container-login .forms {
    display: flex;
    align-items: center;
    height: 440px;
    width: 200%;
    transition: height 0.2s ease;
}

.container-register .forms {
    display: flex;
    align-items: center;
    /*height: 680px;*/
    width: 200%;
    transition: height 0.2s ease;
}

.container-login .form {
    width: 100%;
    padding: 40px;
    background-color: #fff;
    transition: margin-left 0.18s ease;
}

.container-register .form {
    width: 100%;
    padding: 30px;
    background-color: #fff;
    transition: margin-left 0.18s ease;
}

.container-login .form .title-lg {
    color: #333;
    position: relative;
    font-size: 27px;
    font-weight: 600;
}

.container-register .form .title-lg {
    position: relative;
    font-size: 1.3rem;
    font-weight: 600;
}

.form .title-lg::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 30px;
    background-color: #da0071;
    border-radius: 25px;
}

.form .input-field {
    position: relative;
    height: 36px;
    width: 100%;
    margin-top: 30px;
}

.input-field input,
.button-cmp {
    position: absolute;
    height: 100%;
    width: 100%;
    padding: 0 35px;
    border: none;
    outline: none;
    font-size: 16px;
    border-bottom: 2px solid #ccc;
    border-top: 2px solid transparent;
    transition: all 0.2s ease;
}

.input-field input:is(:focus, :valid) {
    border-bottom-color: #da0071;
}

.input-field i {
    position: absolute;
    top: 50%;
    /*left: 0;*/
    transform: translateY(-50%);
    color: #999;
}

.input-field input:is(:focus, :valid) ~ i {
    color: #da0071;
}

.input-field i.icon {
    left: 0;
}

.input-field i.showHidePw {
    right: 0;
    cursor: pointer;
    padding: 10px;
}

.form .checkbox-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.checkbox-text .checkbox-content {
    display: flex;
    align-items: center;
}

.checkbox-content input {
    margin: 0 8px -2px 4px !important;
    accent-color: #da0071 !important;
}

.form .text {
    color: #333;
    font-size: 14px;
}

.form a.text {
    color: #da0071;
    text-decoration: none;
}

.form a:hover {
    text-decoration: underline;
}

.form .button {
    margin-top: 35px;
}

.form .button button {
    border: none;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 1px;
    background-color: #da0071;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.button button:hover {
    background-color: #99004f;
}

.form .login-signup {
    margin-top: 30px;
    text-align: center;
}

::placeholder {
    color: #d2d9e1;
}

/* Carrito de compra */
.btn-cart {
    margin-top: 1rem;
    display: inline-block;
    padding: 0.5rem 2rem;
    font-size: 1.2rem;
    background-color: #00070c;
    border-radius: 10px;
    color: #f2f2f2;
    cursor: pointer;
}

.btn-cart:hover {
    background-color: var(--primary);
    color: #f2f2f2;
}

/* contenedor de card activity */

.activity-card-container {
    border: 1pxsolidvar (--border-primary);
    border-radius: 4px;
    display: flex;
    margin-bottom: 16px;
    max-height: 160px;
    overflow: hidden;
}

.activity-card-image img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}

/* Style Accordion */

body {
    font-family: "Lato";
}

h1 {
    font-size: 2em;
    padding: 2em;
    text-align: center;
}

.accordion dl {
}

.accordion dt > a {
    text-align: center;
    font-weight: 700;
    padding: 1em;
    display: block;
    text-decoration: none;
    color: #da0071;
    border-radius: 9px;
    -webkit-transition: background-color 0.5s ease-in-out;
}
.accordion dd {
    background-color: #ffffff;
    color: #6b6768;
    font-size: 1em;
    line-height: 1.5em;
    padding-left: 15px;
}
.accordion dd > p {
    padding: 1em 2em 1em 2em;
}

.accordion {
    position: relative;
    background-color: #fff;
}

/* .container {
    max-width: 960px;
    margin: 0 auto;
    padding: 2em 0 2em 0;
} */

.accordionTitle {
    background-color: #da00710d;
    /* border-bottom: 1px solid #2c3e50; */
}
.accordionTitle:before {
    content: "+";
    font-size: 1.5em;
    line-height: 0.5em;
    float: left;
    -moz-transition: -moz-transform 0.3s ease-in-out;
    -o-transition: -o-transform 0.3s ease-in-out;
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
}
.accordionTitle:hover {
    background-color: #da007170;
    color: #da0071;
}

.accordionTitleActive {
    background-color: #da00713f;
    color: #eee;
}
.accordionTitleActive:before {
    -webkit-transform: rotate(-225deg);
    -moz-transform: rotate(-225deg);
    transform: rotate(-225deg);
}

.accordionItem {
    height: auto;
    overflow: hidden;
}
@media all {
    .accordionItem {
        max-height: 50em;
        -moz-transition: max-height 1s;
        -o-transition: max-height 1s;
        -webkit-transition: max-height 1s;
        transition: max-height 1s;
    }
}
@media screen and (min-width: 48em) {
    .accordionItem {
        /* max-height: 15em; */
        -moz-transition: max-height 0.5s;
        -o-transition: max-height 0.5s;
        -webkit-transition: max-height 0.5s;
        transition: max-height 0.5s;
    }
}

.accordionItemCollapsed {
    max-height: 0;
}

.animateIn {
    -webkit-animation-name: accordionIn;
    -webkit-animation-duration: 0.65s;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-direction: normal;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-fill-mode: both;
    -webkit-animation-delay: 0s;
    -moz-animation-name: normal;
    -moz-animation-duration: 0.65s;
    -moz-animation-iteration-count: 1;
    -moz-animation-direction: alternate;
    -moz-animation-timing-function: ease-in-out;
    -moz-animation-fill-mode: both;
    -moz-animation-delay: 0s;
    animation-name: accordionIn;
    animation-duration: 0.65s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-timing-function: ease-in-out;
    animation-fill-mode: both;
    animation-delay: 0s;
}

.animateOut {
    -webkit-animation-name: accordionOut;
    -webkit-animation-duration: 0.75s;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-direction: alternate;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-fill-mode: both;
    -webkit-animation-delay: 0s;
    -moz-animation-name: accordionOut;
    -moz-animation-duration: 0.75s;
    -moz-animation-iteration-count: 1;
    -moz-animation-direction: alternate;
    -moz-animation-timing-function: ease-in-out;
    -moz-animation-fill-mode: both;
    -moz-animation-delay: 0s;
    animation-name: accordionOut;
    animation-duration: 0.75s;
    animation-iteration-count: 1;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
    animation-fill-mode: both;
    animation-delay: 0s;
}

@-webkit-keyframes accordionIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.8);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
    }
}
@-moz-keyframes accordionIn {
    0% {
        opacity: 0;
        -moz-transform: scale(0.8);
    }
    100% {
        opacity: 1;
        -moz-transform: scale(1);
    }
}
@keyframes accordionIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
@-webkit-keyframes accordionOut {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(0.8);
    }
}
@-moz-keyframes accordionOut {
    0% {
        opacity: 1;
        -moz-transform: scale(1);
    }
    100% {
        opacity: 0;
        -moz-transform: scale(0.8);
    }
}
@keyframes accordionOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.8);
    }
}
