/* Container */
.container .ltm-row-container {
    display: flex !important;
    justify-content: center !important;
    max-width: 1000px;
    box-shadow: 0px 0px 0px 14px #9754ad;
    border-radius: 10px;
    background-color: #ffffff78;
}

.ltm-item-level {
    margin-bottom: 2.8%;
    align-items: end;
}

/* Container - printables */
.tea-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 4% 2% 4% 2% !important;
    box-shadow: 0px 0px 0px 14px #7d6487;
    background-color: #ffffff78;
    border-radius: 10px;
    margin-top: 30px;
    margin-bottom: 60px;
}

.tea-row-printables {
    display: flex;
    justify-content: center;
    gap: 26px 0px;
}

/* Title */
h2.ltm-levels-title {
    text-align: center;
    color: #959595;
    font-family: 'Mali';
    padding: 30px 0px 20px 0px;
    font-weight: 600;
    font-size: 30px;
}

.ltm-title-p-h2 {
    padding: 6px 12px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-left: -40px;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    font-family: 'Mali';
    border-radius: 20px;
    background: #723487;
    color: #ffffff;
}

/*********Block In-active*********/
.ltm-level-inactive {
    position: relative;
    top: 16%;
    left: 0%;
    color: white;
    font-size: 20px;
    text-align: center;
    font-family: 'Mali';
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

/* Animation */
.ltm-box-level-inactive {
    position: relative;
    width: 220px;
    height: 220px;
    box-sizing: border-box;
    overflow: hidden;
    margin: 0 auto;
    border-radius: 10px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
}

.ltm-box-level-inactive:hover {
    box-shadow: 0 0 10px 0 #6a3789;
}

.ltm-box-level-inactive p {
    display: none;
    margin-bottom: 0;
}

.ltm-box-level-inactive:hover p {
    display: block;
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFF;
    padding: 30% 20px;
    box-sizing: border-box;
    opacity: none;
    animation: show_ 0.5s ease-out forwards;
}

.ltm-info-level-inactive p {
    font-family: 'Mali';
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    color: white;
    background-color: #6a378999 !important;
}


/***********Block active***********/
.ltm-box-level-active {
    width: 220px;
    margin: 0 auto;
    border-radius: 10px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.ltm-box-level-active:hover {
    box-shadow: 0px 0px 10px 0px #6a3789;
}


.ltm-box-level-active img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.ltm-not-logged-in {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/********** Back  arrow **********/
.tea-back-arrow-p {
    display: flex;
    max-width: 1140px;
    margin: 0 auto;
    margin-top: 6vh;
}


.ltm-not-logged-in img {
    width: 60%;
}

h2.ltm-level-inactive img {
    width: 70%;
}

@keyframes show_ {
    from {
        bottom: -100%;
    }

    to {
        bottom: 0;
    }
}


/* CSS para tamaños de pantalla entre 361px y 768px */
@media screen and (min-width: 361px) and (max-width: 768px) {

    .ltm-box-level-inactive,
    .ltm-box-level-active {
        width: 164px;
        height: 164px !important;
    }

    .ltm-box-level-inactive:hover p {
        padding: 14% 20px;
        font-size: 18px;
    }

    .tea-container {
        margin-left: 3%;
        margin-right: 3%;
        box-shadow: 0px 0px 0px 7px #9754ad;
    }

    .container .ltm-row-container {
        margin: 0px -2px;
        box-shadow: 0px 0px 0px 7px #9754ad;
    }

    .ltm-item-level {
        margin-bottom: 5.8%;
    }
}

/* CSS para pantallas de hasta 360px */
@media screen and (max-width: 360px) {

    .ltm-box-level-inactive,
    .ltm-box-level-active {
        width: 147px;
        height: 147px !important;
    }

    .container .ltm-row-container {
        margin: 0px -2px;
        box-shadow: 0px 0px 0px 7px #9754ad;
    }

    .tea-container {
        box-shadow: 0px 0px 0px 7px #9e77ac;
        margin: 28px 9px;
        margin-left: 3%;
        margin-right: 3%;
    }

    .tea-row-printables {
        gap: 24px 0px;
        margin-top: 12px;
        margin-bottom: 30px;
    }

    .ltm-item-level {
        margin-bottom: 5.8%;
    }
}