@tailwind base;
@tailwind components;
@tailwind utilities;

/* VARIABLES */
:root {
    --white: #fff;
    --yellow: #fcbc00;
    --yellow-card: #fcd486;
    --clearyellow: #fcd980;
    --table-yellow-white: #ffffff;
    --table-yellow-clear: #ffe5bb;
    --table-yellow-other: #fff2d9;
    --table-yellow-dark: #fcd980;
    --blue: #2f2a85;
    --black: #000;
    --grey: #d9d9d9;
    --my-shadow: 0 4px 20px 0 rgba(0,0,0,0.25);
}

@layer utilities {
  .shadow-my {
    box-shadow: var(--my-shadow);
  }
}

/* LISTA USUARIOS */
#dt-length-0,
#dt-search-0,
.pagination > a:not(:nth-child(3)) {
    color: white;
}

/* GENERAL */

body {
    font-family: 'Poppins', serif !important;
    display: grid;
    min-height: 100dvh;
    grid-template-rows: 1fr auto;
}

.desktop {
    display: block !important;
}

.mobile {
    display: none !important;
}

.material-icons {
    vertical-align: text-bottom;
}

.form-control.hidden {
    display: none !important;
}

/* COLORS */
.white {
    color: var(--white);
}

.yellow {
    color: var(--yellow);
}

.blue {
    color: var(--blue);
}

/* BOTONES */

.btn {
    display: inline-block;
    padding: 10px 40px;
    border-radius: 50px;
    font-size: 17px;
    font-family: 'Source Sans 3', sans-serif;
    margin-right: 15px;
}

.btn.btn-primary {
    background-color: var(--yellow);
    color: var(--blue);
    font-weight: 500;
    border: 2px solid var(--yellow);
}

.btn.btn-primary:hover {
    background-color: var(--white);
    color: var(--yellow);
}

.btn.btn-normal {
    background-color: var(--table-yellow-clear);
    color: var(--blue);
    font-weight: 500;
    border: 2px solid var(--table-yellow-clear);
    border-radius: 100px;
}

.btn.btn-normal:hover {
    background-color: var(--yellow);
    color: var(--blue);
    border: 2px solid var(--yellow);
}

.btn.btn-cancel {
    background-color: var(--blue);
    color: var(--white);
    border: 2px solid var(--blue);
    font-weight: 500;
    border-radius: 100px;
}

.btn.btn-cancel:hover {
    background-color: var(--white);
    color: var(--blue);
    border: 2px solid var(--blue);
}

.btn.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--blue);
    color: var(--white);
    font-weight: bold;
}

.btn.btn-secondary:hover {
    color: var(--yellow);
}

.btn.btn-play {
    position: relative;
    padding-left: 52px;
}

.btn.btn-play:before {
    content: '';
    left: 33px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-left: 12px solid var(--white);
    border-bottom: 6px solid transparent;
    position: absolute;
}

.btn.btn-rounded {
    background-color: var(--table-yellow-clear);
    color: var(--blue);
    border-radius: 20px;
}

.btn.btn-rounded:hover {
    background-color: var(--table-yellow-dark);
    color: var(--blue);
    border-radius: 20px;
}



/* ADJUSTMENTS ADMIN BAR */

body.role_admin #main_container {
    grid-template-columns: 250px 1fr;
    max-width: 1920px;
}

body.role_admin #main_container .container {
    max-width: 100%;
}

body.role_admin #left_header {
    padding-left: 10px;
    padding-right: 10px;
}

body.role_admin #main_content {
    padding-right: 50px;
}

body.role_admin #left_header #menu ul li{
    padding-left: 10px;
}


/* TMP BG */

/*
body:after {
    content: "";
    position: absolute;
    top: 0;
    right: 210px;
    left: 210px;
    width: 100%;
    height: 1000%;
    max-width: 1500px;
    background-image: url(../img/landing.png);
    background-size: auto;
    background-position: top;
    background-attachment: inherit;
    opacity: 0.5;
    z-index: -1;
    background-repeat: no-repeat;
}
*/

/* GENERALES */

body {
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;
}

a {
    text-decoration: none;
}

a:hover {
    cursor: pointer;
    text-decoration: none;
    color: var(--blue);
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

#main_container {
    width: 100%;
    max-width: 1600px;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 50px;
    margin: 0 auto;
}

.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    max-width: 1500px;
}

#main_content .container,
#main_content .container-fluid {
    max-width: 1150px;
}

/* FLEX */

.flex {
    display: flex;
}

.f-wrap {
    flex-wrap: wrap;
}

.f-j-center {
    justify-content: center;
}

.f-j-start {
    justify-content: flex-start;
}

.f-j-between {
    justify-content: space-between;
}

.f-j-end {
    justify-content: flex-end;
}

.f-a-start {
    align-items: start;
}

.f-a-center {
    align-items: center;
}

.f-a-bottom {
    align-items: flex-end;
}

/* TABLES */

.yellow-table {
    border-radius: 15px;
    overflow: hidden;
}

.yellow-table thead {
    background-color: var(--table-yellow-dark);
}

.yellow-table tbody {
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 250px;
    display: grid;
}

.yellow-table thead tr,
.yellow-table tbody tr {
}

.yellow-table tbody tr:nth-child(odd) {
    background-color: var(--table-yellow-clear);
}

.yellow-table tbody tr:nth-child(even) {
    background-color: var(--table-yellow-dark);
}

.yellow-table thead tr th:last-child,
.yellow-table tbody tr td:last-child {
    text-align: center;
}

.yellow-table tr {
    padding: 8px 20px;
}

.yellow-table-2 tr {
    padding: 12px 27px;
}




.scroll-container,
.yellow-table tbody {
    overflow: hidden;
}

.scroll-container:hover,
.yellow-table tbody:hover {
    overflow: auto;
}

.scroll-container::-webkit-scrollbar,
.yellow-table tbody::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}

.scroll-container:hover::-webkit-scrollbar,
.yellow-table tbody:hover::-webkit-scrollbar {
    width: 3px;
    height: 3px;
    position: absolute;
    right: 0;
    top: 0;
}

.scroll-container:hover::-webkit-scrollbar-thumb,
.yellow-table tbody:hover::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 4px;
}


@media (max-width: 768px) {
    .scroll-container,
    .yellow-table tbody {
        overflow: auto;
    }
}




/* MENU */

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: var(--blue);
    margin: 4px;
    -ms-transform: scale(0, 1);
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -ms-transform-origin: left;
    transform-origin: left;
    -webkit-transform-origin: left;
    border-radius: 2px;
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.2, 0.01, 0.16, 1)
            0.12s,
        opacity 0.4s cubic-bezier(0.2, 0.01, 0.16, 1) 0.12s !important;
    transition: transform 0.4s cubic-bezier(0.2, 0.01, 0.16, 1) 0.12s,
        opacity 0.4s cubic-bezier(0.2, 0.01, 0.16, 1) 0.12s !important;
}

.hamburger.is-active div {
    background-color: var(--yellow);
}

#left_header #menu_mobile {
    display: none;
}

#left_header #menu {
    width: 100%;
}

#left_header #menu > h3 {
    font-size: 16px;
    font-weight: 600;
    line-height: 55px;
    color: var(--blue);
}

#left_header #menu > ul {
    padding-left: 0;
}

#left_header #menu ul li {
    padding: 0 6px 0 20px;
    transition: all 0.3s;
    border: 1px solid var(--white);
    background-color: var(--white);
    margin-bottom: 5px;
    margin-top: 5px;
}

#left_header #menu ul li:hover {
    border: 1px solid var(--yellow);
    border-radius: 15px;
    cursor: pointer;
}

#left_header #menu ul li a {
    font-size: 16px;
    font-weight: 600;
    line-height: 45px;
    color: var(--blue);
    padding: 6px 12px;
}

#left_header #menu ul li.active {
    background-color: var(--clearyellow);
    border: 1px solid var(--yellow);
    border-radius: 15px;
}

#left_header #menu ul li.active a {
    color: var(--blue);
    font-weight: bold;
}

#left_header #menu ul li a.feat {
    background-color: var(--yellow);
    font-weight: 500;
    color: var(--blue);
    border-radius: 50px;
    padding: 13px 44px;
    margin-left: 24px;
}

#left_header #menu ul li:last-child {
    padding-right: 0;
}

/* NOT LOGGED MENU */

/* MENU */

#nologged_header #header-container {
    padding-top: 25px;
    padding-bottom: 35px;
    justify-content: space-between;
}

#nologged_header .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

#nologged_header .hamburger div {
    width: 25px;
    height: 3px;
    background-color: var(--blue);
    margin: 4px;
    -ms-transform: scale(0, 1);
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -ms-transform-origin: left;
    transform-origin: left;
    -webkit-transform-origin: left;
    border-radius: 2px;
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.2, 0.01, 0.16, 1)
            0.12s,
        opacity 0.4s cubic-bezier(0.2, 0.01, 0.16, 1) 0.12s !important;
    transition: transform 0.4s cubic-bezier(0.2, 0.01, 0.16, 1) 0.12s,
        opacity 0.4s cubic-bezier(0.2, 0.01, 0.16, 1) 0.12s !important;
}

#nologged_header .hamburger.is-active div {
    background-color: var(--yellow);
}

#nologged_header #menu_mobile {
    display: none;
}

#nologged_header #menu {
    width: 80%;
}

#nologged_header #menu ul li {
    padding: 0 6px;
}

#nologged_header #menu ul li a {
    padding: 10px 10px;
    color: var(--yellow);
    font-size: 1em;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#nologged_header #menu ul li a:hover {
    color: var(--blue);
    font-weight: bold;
    border-bottom: 3px solid var(--blue);
}

#nologged_header #menu ul li a.feat2:hover {
    color: var(--yellow);
    font-weight: bold;
    border-bottom: 3px solid var(--yellow);
}

#nologged_header #menu ul li.active a {
    border-bottom: 3px solid var(--blue);
}

#nologged_header #menu ul li.active a {
    color: var(--blue);
    font-weight: bold;
}

#nologged_header #menu ul li a.feat {
    background-color: var(--yellow);
    font-weight: 500;
    color: var(--blue);
    border-radius: 50px;
    padding: 13px 44px;
    margin-left: 24px;
}

#nologged_header #menu ul li a.feat2 {
    background-color: var(--blue);
    font-weight: 500;
    color: var(--yellow);
    border-radius: 50px;
    padding: 13px 44px;
    margin-left: 24px;
}

#nologged_header #menu ul li:last-child {
    padding-right: 0;
}

/* MENÚ IDIOMAS */

.buscador-menu {
    background-image: url(/img/sidebar-menu/search.svg);
    background-size: 18px;
    background-position: 10px center;
    background-repeat: no-repeat;
    padding: 10px 32px;
    border-radius: 18px;
    border: 2px solid #2f2a85;
    width: 100%;
    padding-right: 5%;
}

.search-bar-container .menu-langs {
    margin: 0 !important;
}

.menu-langs {
    position: relative;
}

.default-lang {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

.bar-button .default-lang img {
    width: 27px;
    height: 27px;
}

.lang-options {
    list-style-type: none;
    padding: 0;
    margin: 0;
    position: absolute;
    display: none;
    top: 160%;
    z-index: 999;
    width: 47px;
    left: -9px;
    overflow: hidden;
    border-radius: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: var(--white);
}

.lang-options li {
    width: 100%;
    height: auto;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    align-content: center;
    border: none !important;
    text-align: center;
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.lang-options li:first-child {
    margin-top: 0 !important;
}

.lang-options li:last-child {
    margin-bottom: 0 !important;
}

.lang-options li:hover {
    background-color: var(--table-yellow-clear);
    border-radius: 0 !important;
}

/*
.lang-options li:before {
    content: '';
    display: inline-block;
    width: 30px;
    height: auto;
    background-size: content;
    background-repeat: no-repeat;
    background-size: cover;
}*/

#current-lang {
    display: flex;
    align-items: center;
    align-content: center;
}

/*
#current-lang:before {
    content: '';
    display: inline-block;
    width: 27px;
    height: 27px;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 50%;
    background-position: center;
    text-align: center;
}

#current-lang.ca:before,
.lang-options li.ca:before {
    content: "🇨🇦";
    background-image: none;
}

#current-lang.en:before,
.lang-options li.en:before {
    content: "🇬🇧";
    background-image: none;
}

#current-lang.fr:before,
.lang-options li.fr:before {
    content: "🇫🇷";
    background-image: none;
}

#current-lang.pl:before,
.lang-options li.pl:before {
    content: "🇵🇱";
    background-image: none;
}

#current-lang.cz:before,
.lang-options li.cz:before {
    content: "🇨🇿";
    background-image: none;
}

#current-lang.es:before,
.lang-options li.es:before {
    content: "🇪🇸";
    background-image: none;
}*/

#nologged_header .buscador-menu {
    background-image: url(/img/sidebar-menu/search.svg);
    background-size: 18px;
    background-position: 10px center;
    background-repeat: no-repeat;
    padding: 10px 32px;
    border-radius: 18px;
    border: 2px solid #2f2a85;
    width: 75%;
    padding-right: 5%;
}

#nologged_header .search-bar-container .menu-langs {
    margin: 0 !important;
}

#nologged_header .menu-langs {
    position: relative;
    width: 70px;
    margin: 20px;
}

#nologged_header .default-lang {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background-color: #fff;
    border-radius: 5px;
    cursor: pointer;
    border-radius: 18px;
    border: 2px solid transparent;
    text-align: center;
}

#nologged_header .default-lang img {
    width: 30px;
    height: 25px;
    border-radius: 5px;
    margin-right: 0px;
}

#nologged_header .lang-options {
    list-style-type: none;
    padding: 0;
    margin: 0;
    position: absolute;
    display: none;
    top: 110%;
    z-index: 999;
    width: 100%;
    background-color: white;
    border-radius: 18px;
    border: 2px solid transparent;
    overflow: hidden;
    left: 0;
}

#nologged_header .lang-options li {
    padding-left: 5px !important;
    padding-right: 5px !important;
    cursor: pointer;
    transition: background-color 0.3s;
    width: auto;
    display: flex;
    align-items: center;
    align-content: center;
    border: none !important;
    text-align: center;
    display: flex;
    justify-content: center;
}

#nologged_header .lang-options li:first-child {
    margin-top: 0 !important;
}

#nologged_header .lang-options li:last-child {
    margin-bottom: 0 !important;
}

#nologged_header .lang-options li:hover {
    background-color: var(--table-yellow-clear);
    border-radius: 0 !important;
}

#nologged_header .lang-options li:before {
    display: inline-block;
    width: 17px;
    height: auto;
    background-size: content;
    background-repeat: no-repeat;
    margin-right: 5px;
}

#nologged_header #current-lang {
    display: flex;
    align-items: center;
    align-content: center;
}

#nologged_header #current-lang:before {
    display: inline-block;
    width: 100%;
    height: auto;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 50%;
    background-position: center;
}

/* MAIN SLIDER */

#mainCarousel {
    margin-bottom: 80px;
}

/*

#mainCarousel .carousel-inner {
    border-radius: 25px;
    overflow: hidden;
}

#mainCarousel .carousel-indicators {
    margin-bottom: 5px;
}

#mainCarousel .carousel-item {
    border-radius: 25px;
    overflow: hidden;
}

#mainCarousel .carousel-item-3 .carousel-caption {
    left: 0;
    bottom: 25%
}

#mainCarousel .carousel-item-3 .carousel-caption .buttons {
    position: absolute;
    left: 6%;
}

#mainCarousel .carousel-item-3 .carousel-caption .buttons .btn-primary {
    color: var(--white);
}

#mainCarousel .carousel-item-3 .carousel-caption .buttons .btn-primary:hover {
    color: var(--black);
}

#mainCarousel .carousel-item-3 .carousel-caption .buttons .btn-secondary {
    border: 2px solid var(--white);
}

#mainCarousel .carousel-item-2 {
    background-color: var(--black);
}

#mainCarousel .carousel-item-2 img {
    opacity: 0.5;
}

#mainCarousel .carousel-indicators li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid var(--white);
    background: transparent;
}

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

#mainCarousel .carousel-control-prev .carousel-control-prev-icon {
    position: absolute;
    left: 25%;
}

#mainCarousel .carousel-control-next .carousel-control-next-icon {
    position: absolute;
    right: 25%;
}

#mainCarousel .carousel-indicators li:hover {
    cursor: pointer;
}

#mainCarousel .carousel-indicators li.active {
    background: var(--white);
}

#mainCarousel .carousel-caption h2 {
    font-size: 3.8em;
    font-weight: bold;
    line-height: 1.1em;
    padding-bottom: 24px;

}

#mainCarousel .carousel-caption p {
    font-size: 2em;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 50px;
}

#mainCarousel .carousel-item-2 .carousel-caption {
    position: absolute;
    top: 20%;
    left: 7%;
    width: 42%;
    text-align: left;
}

#mainCarousel .carousel-caption .buttons .btn-play {
    border-color: var(--white);
}

*/

/* NEW CAROUSEL */

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-inner {
    display: flex;
    transition: transform 0.8s ease-in-out;
    transform: translateX(0%);
}

.carousel-item {
    min-width: 100%;
    max-width: 100%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 25px;
    overflow: hidden;
}

.carousel-item img,
.carousel-item video {
    width: 100%;
    height: auto;
}

.carousel-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
}

.carousel-control {
    position: absolute;
    top: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 15%;
    color: #fff;
    text-align: center;
    opacity: 0.5;
}

/* SWIPER NAVIGATION STYLES */

.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;

    border-radius: 50%;
    transition: all 0.3s ease;
    border: none;
    outline: none;
    font-size: 18px;
    font-weight: bold;

}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.swiper-button-prev:active,
.swiper-button-next:active {
    transform: translateY(-50%) scale(0.95);
}

.swiper-button-prev {
    left: 10px;
}

.swiper-button-next {
    right: 10px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-family: 'swiper-icons';
    font-size: 20px;
    font-weight: bold;
    text-transform: none !important;
    letter-spacing: 0;
    text-transform: none;
    font-variant: initial;
    line-height: 1;
}

.swiper-button-prev::after {
    content: '←';
}

.swiper-button-next::after {
    content: '→';
}

/* Alternative arrow styles using CSS */
.swiper-button-prev::before,
.swiper-button-next::before {
    content: '';
    width: 12px;
    height: 12px;
    border: 2px solid #fff;
    border-top: none;
    border-right: none;
    display: block;
}

.swiper-button-prev::before {
    transform: rotate(45deg);
    margin-left: 4px;
}

.swiper-button-next::before {
    transform: rotate(225deg);
    margin-right: 4px;
}

/* Hide default Swiper arrows and use our custom ones */
.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
}

/* Estilos para la paginación */
.swiper-pagination {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet:hover {
    background: rgba(255, 255, 255, 0.8);
}

.swiper-pagination-bullet-active {
    background: #fff;
    transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .swiper-button-prev,
    .swiper-button-next {
        width: 10px;
        height: 36px;
        margin-top: -5px;
    }

    .swiper-button-prev {
        left: 5px;
    }

    .swiper-button-next {
        right: 5px;
    }

    .swiper-button-prev::before,
    .swiper-button-next::before {
        width: 10px;
        height: 10px;
    }

    .swiper-pagination {
        bottom: 10px;
    }

    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        margin: 0 3px;
    }
}

/* Estilos específicos para el banner principal */
.banner-principal-home-slider .swiper-button-prev,
.banner-principal-home-slider .swiper-button-next {
    background: transparent;
    border: none;
}

.banner-principal-home-slider .swiper-button-prev:hover,
.banner-principal-home-slider .swiper-button-next:hover {

}

/* FEATURES */

#features {
    margin-top: 80px;
    margin-bottom: 130px;
}

#features h2 {
    text-align: center;
    font-size: 3.4em;
    font-weight: bold;
    line-height: 1.1em;
    padding-bottom: 24px;
    color: var(--blue);
    margin-bottom: 64px;
}

#features h2 span {
    color: var(--yellow);
}

#features .boxes {
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
}

#features .boxes > div {
    border-radius: 30px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding-top: 32px;
    padding-bottom: 21px;
}

#features .boxes > div img {
    padding-bottom: 30px;
}

#features .boxes > div h3 {
    color: var(--blue);
    background-color: var(--yellow);
    padding: 7px 19px;
    font-size: 21px;
    font-weight: 500;
    width: 120px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 30px;
}

#features .boxes > div p {
    font-size: 1.5rem;
    min-height: 75px;
    font-weight: bold;
    color: var(--yellow);
}

a.feat2 {
    /*display: none;*/
}

/* ADVANTAGES */

#advantages {
    background-image: url(../img/adv-bg.jpg);
    height: 742px;
    margin-bottom: 100px;
    background-size: cover;
    background-position: center;
}

#advantages .adv-text {
    padding-top: 150px;
    padding-left: 110px;
}

#advantages h2 {
    font-size: 3.4em;
    font-weight: bold;
    line-height: 1.1em;
    padding-bottom: 24px;
    color: var(--white);
    margin-bottom: 33px;
}

#advantages h2 span {
    color: var(--blue);
}

#advantages .adv-info {
    width: 100%;
    border-radius: 100px;
    background-color: var(--white);
    color: var(--blue);
    display: block;
    padding: 10px 41px;
    margin-bottom: 15px;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
    font-size: 24px;
}

#advantages .adv-info:before {
    content: '•';
    color: var(--blue);
    width: 10px;
    height: 10px;
    display: inline-block;
    margin-right: 23px;
    font-size: 44px;
    line-height: 0;
    vertical-align: middle;
}

/* REGISTER FORM */

.css-form .register-form {
    width: 58%;
}

.css-form h2 {
    font-size: 3.4em;
    font-weight: bold;
    line-height: 1.1em;
    padding-bottom: 24px;
    color: var(--blue);
    margin-bottom: 10px;
}

.css-form h2 span {
    color: var(--yellow);
}

.css-form .register-form-explain {
    color: var(--blue);
}

.css-form p {
    font-size: 16px;
    margin-bottom: 34px;
}

.css-form form label:not(.cursor-pointer) {
    padding-left: 21px;
    font-size: 18px;
    font-family: 'Source Sans 3', sans-serif;
    font-style: italic;
    color: #2f2a85;
    opacity: 1;
    margin-bottom: 7px;
}

.css-form form input[type='text'],
.css-form form input[type='email'],
.css-form form input[type='password'],
.css-form form input[type='date'],
.css-form form select {
    width: 100%;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
    border-radius: 100px;
    border: none;
    padding: 14px 30px;
}

.css-form form textarea {
    border-radius: 50px;
    padding: 14px 30px;
}

.css-form form .form-group {
    margin-bottom: 1rem;
}

.css-form form .form-group-radio {
    margin-bottom: 18px;
}

.css-form form .form-group-radio label[for='business'] {
    margin-bottom: 10px;
}

.css-form form .form-group-radio label[for='empresa'],
.css-form form .form-group-radio label[for='particular'] {
    font-size: 18px;
    margin-bottom: 10px;
    font-style: normal;
}

.css-form form .form-group-radio label[for='empresa'] input,
.css-form form .form-group-radio label[for='particular'] input {
    margin-right: 15px;
    margin-left: 20px;
    transform: scale(1.5);
}

.css-form form .form-group-company > div {
    padding-left: 30px;
}

.css-form form .form-group-company > div label {
    font-style: normal;
    font-weight: bold;
    color: var(--blue);
    opacity: 0.7;
}

.css-form form .form-group-terms,
.css-form form .form-group-card {
    padding-left: 21px;
    margin-bottom: 10px;
}

.css-form form .form-group-card {
    margin-top: 40px;
    margin-bottom: 0;
}

.css-form form .form-group-terms input,
.css-form form .form-group-card input {
    transform: scale(1.5);
}

.css-form form .fuel-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding-left: 21px;
}

.css-form form .fuel-container input {
    transform: scale(1.5);
}

.css-form form .fuel-container label {
    padding-left: 5px;
    margin-left: 0;
}

.fake-select {
    display: block;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    position: relative;
    cursor: pointer;
    width: 100%;
    background-color: #fff;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
    border-radius: 100px;
    border: none;
    padding: 14px 30px;
}

.fake-select__selected {
    width: 100%;
    border: none;
    padding: 14px 30px;
    display: inline-block;
    padding: 0;
}

.fake-select__selected.default {
    opacity: 0.5;
    font-style: italic;
}

.fake-select__selected:after {
    /* Añadir una flecha abajo */
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--blue);
}

.fake-select__options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-radius: 25px;
    z-index: 10;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
    top: 60px;
}

.fake-select__options li {
    padding: 10px;
    list-style: none;
}

.fake-select__options li:hover {
    background-color: var(--yellow);
}

/* Mostrar opciones al hacer clic */
.fake-select.open .fake-select__options {
    display: block;
}

.css-form .is-invalid {
    padding-left: 15px;
}

.checkbox {
    @apply appearance-none w-5 h-5 border-2 border-gray-400 rounded-sm bg-white checked:bg-blue-500 checked:border-blue-500;
}

.checkbox:focus {
    outline: none;
}

.checkbox:hover {
    @apply border-blue-400;
}

/* MORE INFO */

#moreInfo {
    width: 100%;
    margin-top: 75px;
    margin-bottom: 50px;
}

#moreInfo .container {
    background-color: var(--blue);
    border-radius: 30px;
    text-align: center;
    padding-top: 86px;
    padding-bottom: 88px;
}

#moreInfo img {
    padding-bottom: 65px;
}

#moreInfo .info-text {
    width: 100%;
}

#moreInfo h2 {
    font-size: 3.8em;
    font-weight: bold;
    line-height: 1.1em;
    padding-bottom: 0;
    color: var(--white);
    margin-bottom: 10px;
}

#moreInfo h2 span {
    color: var(--yellow);
}

#moreInfo p {
    color: var(--white);
    font-size: 1rem;
    padding-bottom: 10px;
    margin-bottom: 1rem;
}

/* FOOTER */

#footerMenu {
    background-color: var(--yellow);
    padding-top: 45px;
    padding-bottom: 45px;
}

#footerMenu ul.fMenu li {
    padding: 0 20px;
}

#footerMenu ul.fMenu li a {
    font-size: 1rem;
    color: var(--blue);
}

#footerMenu ul li.feat {
    background-color: var(--white);
    font-weight: 500;
    color: var(--blue);
    border-radius: 50px;
    padding: 13px 40px;
    margin-left: 37px;
    margin-right: 45px;
}

#footerMenu ul.social li {
    padding: 0 5px;
    width: 48px;
    height: 48px;
    background-color: var(--blue);
    border-radius: 50%;
    position: relative;
    margin-right: 10px;
}

#footerMenu ul.social li img {
    width: 25px;
    height: 25px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* INFO PAGES */

.info-page {
    padding-top: 50px;
    padding-bottom: 100px;
    font-family: 'Poppins', sans-serif;
    color: var(--blue);
    font-size: 18px;
    text-align: justify;
}

.info-page h1 {
    font-weight: bold;
    margin-bottom: 35px;
}

.info-page h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 30px;
}

.info-page p {
    padding-left: 10px;
}

.info-page ul {
    list-style-type: disc;
    padding-left: 25px;
}

.info-page ul.letter-ul {
    list-style-type: none;
}

.info-page > ol,
.info-page > ol > li > ol {
    counter-reset: li;
    padding-left: 15px;
}

.info-page > ol > li {
    display: block;
    position: relative;
}

.info-page > ol > li > h2 {
    display: inline-block;
}

.info-page ol > li:before {
    content: counters(li, '.') '. ';
    counter-increment: li;
    font-size: 22px;
    font-weight: bold;
}

.info-page ol > li > ol {
    padding-left: 55px;
}

.info-page ol > li > ol > li {
    position: relative;
}

.info-page ol > li > ol > li:before {
    content: counters(li, '.') ' ';
    counter-increment: li;
    font-size: 18px;
    font-weight: normal;
    position: absolute;
    left: -50px;
    margin-right: 5px;
    width: 45px;
    text-align: right;
}

.info-page ol > li::marker {
    font-size: 22px;
    font-weight: bold;
    display: none;
}

.info-page ol > li > ol > li::marker {
    font-size: 0;
    font-weight: normal;
    display: none;
}

.info-page > ol > li > ol > li > ol > li::marker {
    font-size: 18px;
}

.info-page > ol > li > ol > li > ol > li::before {
    content: '';
}

.info-page ol > li > ol > li {
    padding-bottom: 20px;
}

.info-page .hour-table {

}

.info-page .hour-table div {
    padding: 10px;
}

.info-page .hour-table .hour-top {
    border-bottom: 2px solid var(--yellow);
}

.info-page table {
    margin-left: 10px;
    border: 1px solid var(--yellow);
}

.info-page table tr {
    border-bottom: 1px solid var(--yellow);
}

.info-page table tr th {
    padding-left: 10px;
    padding-right: 10px;
}

.info-page table tr td {
    padding: 10px;
}

/* MAIL MESSAGES */

div.alert {
    position: fixed;
    z-index: 9999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: 30%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
    color: var(--yellow);
    background-color: var(--blue);
    border: none;
    font-size: 29px;
    font-weight: bold;
}

.alert-close {
    position: absolute;
    right: 15px;
    top: 0;
}

.alert-close:hover {
    cursor: pointer;
}

/* MIPANEL */

.mipanel-grid {
    align-items: flex-start;
    justify-content: space-between;
}

.mipanel-grid > div:not(.mipanel-user-info) > div {
    margin-bottom: 25px;
}

.mipanel-grid div.rounded-3xl:not(.vehiculos-container-perfil) {
    background-color: var(--yellow-card);
}

.mipanel-grid > div.mipanel-user-info {
    width: 100%;
    background-color: var(--white);
    box-shadow: 2px 2px 22.7px 0px #00000040;
}

.mipanel-grid .banner-perfil {
    background-color: var(--white) !important;
}

/* FAQ */

.accordion {
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    margin-bottom: 50px;
    overflow: hidden;
}

.accordion > div {
    border: none
}

.accordion-item {
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
}

.accordion-header {
    padding: 15px;
    cursor: pointer;
    font-weight: bold;
    background-color: var(--yellow-card);
    color: white;
    transition: background-color 0.3s;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
}

.accordion-header:hover {
    background-color: var(--white);
    color: var(--yellow);
}

.accordion-header.showing {
    background-color: var(--white);
    color: var(--yellow);
}

.accordion-content {
    padding: 0 15px;
    display: block;
    background-color: var(--white);
    color: var(--blue);
    text-align: justify;
    opacity: 0;
    height: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.accordion-content.show {
    display: block;
    opacity: 1;
    height: auto;
    padding: 15px;
}

.accordion-content ul {
    list-style-type: none;
    padding-left: 0;
}

.accordion-content ul li:before {
    content: '- ';
}

/* CONTACTO */

body.contact #content {
    max-width: 100%;
}

body.contact #content .contact-holder {
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #fdde99;
    border-radius: 15px;
    padding: 15px;
}

body.contact #content .contact-holder .contact-holder-img {
    max-width: 37%;
    margin-right: 3%;
}

body.contact #content .contact-holder .contact-holder-form {
    max-width: 60%;
}

body.contact h2 {
    font-size: 3.4em;
    font-weight: bold;
    line-height: 1.1em;
    padding-bottom: 12px;
    padding-top: 12px;
    color: var(--blue);
}

body.contact h2 span {
    color: var(--white);
}

body.contact .css-form form input[type='text'],
body.contact .css-form form input[type='email'] {
    width: 100%;
}

body.contact .css-form form .form-group-terms {
    margin-bottom: 0;
}

body.contact .css-form form button[type='submit'] {
    margin-top: 10px;
}

/* COOKIES */

#cookies-policy.cookies {
    bottom: 0;
    font-size: 16px;
    max-height: 100%;
    max-width: 100%;
    overflow: auto;
    position: fixed;
    right: 0;
    transition: transform 0.2s ease-out, opacity 0.2s ease-out;
    z-index: 9999;
}
#cookies-policy.cookies--closing {
    opacity: 0;
    transform: translateY(10px);
}
#cookies-policy.cookies--show .cookies__btn--customize {
    border-bottom: 1px solid #e7e8e9;
    border-top: none;
}
#cookies-policy.cookies--show .cookies__btn svg {
    transform: rotate(180deg);
}
#cookies-policy.cookies--no-js .cookies__expandable:target,
#cookies-policy.cookies--no-js .cookies__section .cookies__expandable {
    height: auto;
    opacity: 1;
    transition: height 0.3s ease-out, opacity 0.3s ease-out;
    visibility: visible;
}
#cookies-policy.cookies--no-js .cookies__details {
    display: none;
}
#cookies-policy.cookies--no-js .cookies__sections {
    max-height: -moz-fit-content;
    max-height: fit-content;
}
#cookies-policy.cookies--no-js svg {
    display: none;
}
#cookies-policy .cookies__expandable {
    display: block;
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: height 0.3s ease-out, opacity 0.3s ease-out,
        visibility 0s linear 0.3s;
    visibility: hidden;
}
#cookies-policy .cookies__expandable--open {
    height: auto;
    opacity: 1;
    transition: height 0.3s ease-out, opacity 0.3s ease-out;
    visibility: visible;
}
#cookies-policy .cookies__alert {
    background: #fff;
    border: 1px solid #e7e8e9;
    border-radius: 8px;
    box-shadow: 0 12px 12px -8px rgba(0, 0, 0, 0.08),
        0 0 4px rgba(0, 0, 0, 0.04);
    margin: 4%;
    max-height: 90%;
    max-width: 90%;
    width: 22em;
}
#cookies-policy .cookies__container {
    display: block;
    height: auto;
    opacity: 1;
    overflow: hidden;
    transition: height 0.3s ease-out, opacity 0.3s ease-out,
        visibility 0s linear 0.1s;
    visibility: visible;
}
#cookies-policy .cookies__container--hide {
    height: 0;
    opacity: 0;
    transition: height 0.3s ease-out, opacity 0.3s ease-out,
        visibility 0s linear 0.3s;
    visibility: hidden;
}
#cookies-policy .cookies__wrapper {
    padding: 1em 1.5em;
}
#cookies-policy .cookies__title {
    color: #2c2e30;
    font-weight: 700;
    line-height: 1.4em;
    margin-bottom: 0.8em;
}
#cookies-policy .cookies__intro {
    color: #2c2e30;
    font-size: 0.875em;
    font-weight: 450;
    line-height: 1.4em;
}
#cookies-policy .cookies__intro p {
    margin-top: 1em;
}
#cookies-policy .cookies__intro p:first-child {
    margin-top: 0;
}
#cookies-policy .cookies__intro a {
    color: inherit;
    text-decoration: underline;
    transition: color 0.2s ease-out;
}
#cookies-policy .cookies__intro a:focus,
#cookies-policy .cookies__intro a:hover {
    color: #7959ef;
}
#cookies-policy .cookies__actions {
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: space-between;
    margin-top: 1em;
}
#cookies-policy .cookies__btn--customize {
    align-items: center;
    border-top: 1px solid #e7e8e9;
    color: #2c2e30;
    display: flex;
    font-size: 0.875em;
    font-weight: 600;
    justify-content: space-between;
    line-height: 1em;
    padding: 1.125em 24px;
    position: relative;
    text-decoration: none;
}
#cookies-policy .cookies__btn svg {
    transition: transform 0.2s ease-out;
}
#cookies-policy .cookies__sections {
    max-height: 450px;
    overflow-y: scroll;
}
#cookies-policy .cookies__section {
    padding: 0 1.5em;
}
#cookies-policy .cookies__section + .cookies__section {
    border-top: 1px solid #eee;
}
#cookies-policy .cookies__box,
#cookies-policy .cookies__category {
    display: block;
    overflow: hidden;
    position: relative;
}
#cookies-policy .cookies__category input {
    display: block;
    margin: 0;
    padding: 0;
    position: absolute;
    right: 105%;
    top: 0;
}
#cookies-policy .cookies__box {
    cursor: pointer;
    line-height: 1.4em;
    padding: 1em 3em 1em 0;
}
#cookies-policy .cookies__box:after,
#cookies-policy .cookies__box:before {
    border-radius: 1.4em;
    content: '';
    display: block;
    position: absolute;
    top: 50%;
}
#cookies-policy .cookies__box:after {
    background: #e7e8e9;
    height: 1.4em;
    margin-top: -0.7em;
    right: 0;
    transition: background 0.2s ease-out, opacity 0.2s ease-out;
    width: 2.5em;
    z-index: 0;
}
#cookies-policy .cookies__box:before {
    background: #fff;
    height: 1em;
    margin-top: -0.5em;
    right: 0.75em;
    transform: translateX(-0.55em);
    transition: transform 0.2s ease-out;
    width: 1em;
    z-index: 1;
}
#cookies-policy .cookies__category input:checked + .cookies__box:after {
    background: var(--yellow);
    opacity: 1;
}
#cookies-policy .cookies__category input:disabled + .cookies__box:after {
    opacity: 0.6;
}
#cookies-policy .cookies__category input:checked + .cookies__box:before {
    transform: translateX(0.55em);
}
#cookies-policy .cookies__label {
    color: #2c2e30;
    font-size: 0.875em;
    font-weight: 600;
}
#cookies-policy .cookies__info {
    color: #2c2e30;
    font-size: 0.875em;
    font-weight: 450;
    line-height: 1.4em;
}
#cookies-policy .cookies__details {
    color: var(--blue);
    display: block;
    font-size: 0.875em;
    margin: 0.625em 0 0.9em;
    transition: color 0.2s ease-out;
}
#cookies-policy .cookies__details:focus,
#cookies-policy .cookies__details:hover {
    color: var(--blue);
}
#cookies-policy .cookies__definitions {
    color: #676767;
    font-size: 0.875em;
    line-height: 1.2em;
    padding-top: 0.8em;
}
#cookies-policy .cookies__cookie + .cookies__cookie {
    margin-top: 1em;
}
#cookies-policy .cookies__name {
    color: #8a8e92;
    display: inline;
    font-weight: 600;
    line-height: 22px;
}
#cookies-policy .cookies__duration {
    color: #8a8e92;
    display: inline;
    text-align: right;
}
#cookies-policy .cookies__description {
    color: #8a8e92;
    display: block;
    line-height: 120%;
    padding-top: 0.3em;
    text-align: left;
    width: 100%;
}
#cookies-policy .cookies__save {
    border-top: 1px solid #e7e8e9;
    display: flex;
    justify-content: flex-end;
    margin-top: 0.4em;
    padding: 0.75em 1.5em;
}
#cookies-policy .cookiesBtn {
    width: 100%;
}
#cookies-policy .cookiesBtn__link {
    background: var(--yellow);
    border: 1px solid var(--yellow);
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    display: block;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    line-height: 1em;
    margin: 0;
    overflow: hidden;
    padding: 0.86em 1em;
    text-align: center;
    text-decoration: none;
    text-overflow: ellipsis;
    transition: opacity 0.2s ease-out;
    white-space: nowrap;
    width: 100%;
}
#cookies-policy .cookiesBtn__link:focus,
#cookies-policy .cookiesBtn__link:hover {
    opacity: 0.8;
}

/* FUNCIONAMIENTO */

.grid-funcionamiento {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 1rem;
    grid-row-gap: 0.9rem;
}

.grid-funcionamiento-1 {
    grid-area: 1 / 1 / 2 / 2;
}
.grid-funcionamiento-2 {
    grid-area: 2 / 1 / 3 / 2;
}
.grid-funcionamiento-3 {
    grid-area: 1 / 2 / 3 / 3;
}



/* FASE 2 */

.sub-header > .container > div {
    margin-top: 15px;
    background-color: var(--yellow);
}

.sub-header .avatar-image {
    max-width: 70px;
    height: 70px;
}

.sub-header .avatar-image img {
    min-width: 70px;
}

.sub-header .feat {
    background-color: var(--yellow);
    font-weight: 500;
    color: var(--blue);
    border-radius: 50px;
    padding: 13px 44px;
    margin-left: 24px;
    padding: 10px 12px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.sub-header .feat:hover {
    color: var(--blue);
    border-bottom: 3px solid var(--white);
}

.seccion-home img {
    width: 102%;
    height: 102%;
    display: block;
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    background: none;
}

.seccion-home a img {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.seccion-home a:hover img {
    transform: scale(1.02);
}

.custom-grid-rows {
    grid-template-rows: 0.5fr 0.15fr 0.5fr 0.5fr 0.1fr;
}

/* BANNERS HOME */

.banner-principal-home-slider {
    max-width: 1150px;
}

.banner-desktop {
    display: none;
}

.banner-mobile {
    display: block;
}

@media (min-width: 768px) {
    .banner-desktop {
        display: flex;
    }

    .banner-mobile {
        display: none;
    }
}

#html-text p {
    margin-bottom: 1em;
    line-height: 1.6;
    color: #333;
}

#html-text ul {
    margin-bottom: 1em;
    padding-left: 1.5em;
    list-style-type: disc;
}

#html-text h2 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    font-size: 1.5em;
    font-weight: bold;
    color: #222;
}

#html-text h3 {
    margin-top: 1.2em;
    margin-bottom: 0.5em;
    font-size: 1.25em;
    font-weight: bold;
    color: #333;
}

#html-text h4 {
    margin-top: 1em;
    margin-bottom: 0.5em;
    font-size: 1.1em;
    font-weight: bold;
    color: #444;
}

#html-text img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1em;
}

#html-text blockquote {
    margin: 1em 0;
    padding: 0.5em 1em;
    border-left: 4px solid #ccc;
    background-color: #f9f9f9;
    color: #555;
}

#html-text code {
    background-color: #f4f4f4;
    padding: 0.2em 0.4em;
    border-radius: 3px;
    color: #d63384;
}

/* SHOP */

#search_yield .aimeos .form-control,
.aimeos .form-select {
    background-color: transparent;
}

/* ADMIN */

/* banners */

.banner-position-info {
    text-align: center;
}

.banner-position-info img {
    width: 30px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

/* Super Admin */

.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
}

.slider:before {
    position: absolute;
    content: '';
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: 0.4s;
}

input:checked + .slider {
    background-color: #4caf50;
}

input:checked + .slider:before {
    transform: translateX(20px);
}

.slider.round {
    border-radius: 20px;
}

.slider.round:before {
    border-radius: 50%;
}

/* FASE 3 */

#left_header {
    padding-top: 30px;
    box-shadow: 2px 2px 12.2px 0px rgba(0, 0, 0, 0.25);
    padding-left: 25px;
    padding-right: 25px;
}

#left_header #logo {
    padding-bottom: 30px;
    border-bottom: 2px solid var(--grey);
    margin-bottom: 30px;
}

#left_header #logo img {
    width: 100%;
    max-width: 225px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

#left_header #cardColumn {
    margin-bottom: 30px;
    box-shadow: 2px 2px 12.2px 0px rgba(0, 0, 0, 0.25);
    border-radius: 30px;
    overflow: hidden;
}

.bar-user-flex {
    align-items: stretch;
}

.sub-header > .container {
    padding-left: 0;
    padding-right: 0;
}

.sub-header .bar-user-info {
    width: fit-content;
    max-width: 32%
}

.sub-header .bar-user-tracs {
    width: fit-content;
    color: var(--blue);
}

.sub-header .bar-user-actions {
    width: fit-content;
}

body.lang_cz .sub-header .bar-user-actions {
    min-width: 40%;
}

.sub-header .vertical-line {
    width: 2px;
    height: 70px;
    background-color: var(--white);
    margin-left: 15px;
    margin-right: 15px;
}

.sub-header .text-left {
    color: var(--blue);
    margin-right: 10px;
}

.bar-button {
    background-color: var(--white);
    border-radius: 15px;
    padding: 10px;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: bold;
    margin-right: 10px;
}

.bar-button a {
    color: var(--blue);
    margin-right: 0;
}

.bar-button img {
    width: 27px;
    height: auto;
}

.bar-button-logout {
    padding: 5px 35px;
    height: calc(47px);
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    margin-left: 0;
}

/* DATATABLES */

#dt-length-0 {
    background-color: rgb(229 231 235);
    width: 70px;
    border: none;
}

#dt-search-0 {
    background-color: rgb(229 231 235);
    border: none;
}

.dt-paging .pagination a {
    background-color: rgb(229 231 235);
    border: none;
    color: var(--blue);
}






/* TIENDA */

input[type="text"]:focus, input:where(:not([type])):focus, [type="email"]:focus, [type="url"]:focus, [type="password"]:focus, [type="number"]:focus, [type="date"]:focus, [type="datetime-local"]:focus, [type="month"]:focus, [type="search"]:focus, [type="tel"]:focus, [type="time"]:focus, [type="week"]:focus, [multiple]:focus, textarea:focus, select:focus {
    --tw-ring-color: transparent;
}

#main_container .aimeos .basket .btn {
    max-width: inherit;
}

#main_container .aimeos .btn.btn-primary {
    background-color: var(--yellow);
    color: var(--white);
    border: none;
    border-radius: 15px;
    padding: 10px 20px;
    font-weight: bold;
}

#main_container .aimeos .btn.btn-primary:hover {
    background-color: var(--yellow);
    color: var(--blue);
    border: none;
}

#main_container .shop-column {
    padding-left: 15px;
}

#main_container .shop-main {
    padding-right: 15px;
}

#main_container .aimeos:not(.cms-page) .product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
}

#main_container .aimeos:not(.cms-page) .product-list .product {
    width: 31%;
    border-radius: 15px;
}

#main_container .aimeos:not(.cms-page) .product-list .product h2 {
    text-transform: initial;
    font-weight: normal;
    font-size: 16px;
}

#main_container .aimeos .product .price-item .rebatepercent {
    right: initial;
    left: 10px;
    top: 10px;
    background-color: transparent;
    color: rgb(27, 139, 66);
    background-color: #bdccf0;
    border-radius: 100%;
    height: 30px;
    width: 30px;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

#main_container .aimeos .product .addbasket {
    /*display:  none;*/
}

#main_container .aimeos .product .addbasket .input-group input[type='number'],
#main_container .aimeos .product .addbasket .input-group .btn-pin {
    display: none;
}

body.aimeos_shop_detail #main_container .aimeos .product .addbasket {
    display: unset;
}

#main_container .aimeos .product .addbasket .input-group {
    display: flex;
    justify-content: center;
}

#main_container .aimeos .product .price-item.default .value {
    font-size: 28px;
    color: var(--blue);
    margin-bottom: 20px;
}

#main_container .aimeos .product .addbasket .input-group input[type='number'],
#main_container .aimeos .product .addbasket .input-group .btn-pin {
    /*display: none;*/
}

#main_container .catalog-list-items .addbasket .btn-primary {
    width: auto;
    max-width: auto;
    margin-left: auto;
    margin-right: auto;
}

#main_container .catalog-detail-basket .stock-list {
    padding: 0;
    margin: 0;
}

#main_container .catalog-detail-additional .item {
    text-align: justify;
}

#main_container .catalog-detail-basket-attribute.items-attribute,
#main_container .catalog-detail-basket .stock-list {
    display: none !important;
}

body .basket-standard-coupon {
    display: none;
}

body .aimeos .common-summary-detail .headline {
    background-color: var(--table-yellow-clear);
    border-radius: 15px;
}

body .aimeos .common-summary-detail .product-item {
    align-items: center;;
}

#main_container .aimeos .input-qty-group {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

#main_container .aimeos .btn-qty-minus,
#main_container .aimeos .btn-qty-plus {
    background-color: var(--white);
    color: var(--yellow);
    border: none;
    width: 47px;
    height: 47px;
    border-radius: 8px;
    margin-left: 5px;
    margin-right: 5px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    font-size:30px;
    color: var(--blue);
}

#main_container .aimeos .product .addbasket input {
    height: 47px;
    border-radius: 5px;
    border: none;
    color: var(--blue);
    font-size: 30px
}

#main_container .aimeos .addbasket button[type='submit'] {
    margin-left: auto;
    margin-right: auto;
    display: block;
}

#main_container .aimeos .addbasket button[type='submit']:hover {
    color: var(--blue) !important;
}

#main_container .catalog-list-items .addbasket .btn-primary {
    background-color: var(--yellow);
    color: var(--blue);
    border: none;
    border-radius: 15px;
}

#main_container .catalog-list-items .addbasket .btn-primary::before {
    content: '';
}

#main_container .catalog-detail-additional .nav-tabs .nav-link.active:not(.btn) {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    background-color: var(--yellow);
    color: var(--blue)
}

#main_container .aimeos .product .text-list {
    text-align: center  ;
}

#main_container .aimeos .product .price-list {
    display: flex;
    justify-content: center;
    margin-inline-start: inherit;
    width: 100%;
}

#main_container .info-column {
    padding-bottom: 30px;
}

#main_container .aimeos .list .product div.list-column:first-of-type .media-list,
#main_container .aimeos .product-list div.list-column:first-of-type .media-list {
    padding-top: calc( 100%);
}

#main_container .aimeos .breadcrumb {
    display: none !important;
}

#main_container .catalog-filter {
    margin-bottom: 15px;
    background-color: var(--table-yellow-clear);
    border-radius: 15px;
}

#main_container .catalog-filter > .section {
    padding: 10px;
    padding-bottom: 0;
    margin-bottom: 0;
}

#main_container .catalog-filter-tree .menu,
#main_container .catalog-filter-tree .header {
    display: block;
    color: var(--blue);
    font-size: 16px;
    border-radius: 15px;
}

#main_container .catalog-filter-tree .header .name {
    padding-left: 0;
}

#main_container .catalog-filter .catalog-filter-search {
    margin-bottom: 15px;
}

#main_container .catalog-filter .catalog-filter-price .header-name,
#main_container .catalog-filter .catalog-filter-supplier .header-name {
    display: block;
    color: var(--blue);
    font-size: 16px;
    font-weight: normal;
    border-radius: 15px;
    padding: .5rem .75rem;
    margin: 0;
    background-color: var(--white);
    border-radius: 15px;
}

#main_container .catalog-filter .noUi-base,
#main_container .catalog-filter .noUi-connects {
    position: absolute;
}

#main_container .catalog-filter .noUi-connect {
    background: var(--yellow-card);
}

#main_container .catalog-filter .header-name {
    color: var(--blue);
    font-weight: 500;
    font-size: 16px;
    border-radius: 15px;
}

#main_container .aimeos .list-container.level-1 {
    display: flex;
    flex-direction: column;
    padding-left: 10px;
    padding-top: 10px;
    font-size: 14px;
}

#main_container .aimeos .list-container.level-1 .cat-item {
    margin-bottom: 10px;
}

#main_container .aimeos .list-container.level-1 .cat-item:last-child {
    margin-bottom: 0;
}

#main_container .aimeos .catalog-filter-supplier .search {
    display: none;
}

#main_container .aimeos .catalog-filter-search .input-group {
    border: 1px solid var(--yellow);
    background-color: var(--white);
}

#main_container .aimeos .search-lists input[type='search'] {
    background-color: transparent;
}

#main_container .aimeos input.price-low {
    background-color: transparent;
    border: none;
    padding-bottom: 0;
    margin-top: 15px;
    padding: 0;
    width: 50px;
    position:relative;
    left: 0;
    text-align: left;
}

#main_container .aimeos input.price-high {
    background-color: transparent;
    border: none;
    padding-bottom: 0;
    margin-top: 15px;
    padding: 0;
    width: 50px;
    position:relative;
    right: 0;
    text-align: right;
}

#main_container .aimeos .price-lists > .btn-primary {
    display: none;
}

#main_container .aimeos .basket-mini-product {
    margin-bottom: 30px;
}

/* Ocultar los controles de incremento/decremento en inputs type="number" */
#main_container .aimeos input[type="number"]::-webkit-inner-spin-button,
#main_container .aimeos input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
    width: auto;
    padding-bottom: 0;
}

#main_container .reset-btn {
margin-bottom: 10px;
  display: flex;
  width: 100%;
  text-align: right;
  justify-content: flex-end;
  max-width: 100%;
}

#main_container .catalog-filter #price-slider {
    margin-top: 0 !important;
    margin-bottom: 30px !important;
    padding: 0;
}

#main_container .noUi-horizontal {
    height: 5px;
    border: none;
}

#main_container .noUi-horizontal .noUi-handle {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: var(--yellow);
    border: none;
    box-shadow: none;
    right: -7px
}

#main_container .noUi-handle::after,
#main_container .noUi-handle::before {
    content: "";
    display: none;
}

#main_container .aimeos input[type="number"] {
    -moz-appearance: textfield;
}

#main_container .catalog-filter-price input[type="range"] {
    margin-top: 0
}

 #main_container .aimeos .slider {
    height: 5px;
    position: relative;
    background: #ddd;
    border-radius: 5px;
}
 #main_container .aimeos .slider .progress {
    height: 100%;
    left: 25%;
    right: 25%;
    position: absolute;
    border-radius: 5px;
    background: #17a2b8;
}

#main_container .aimeos .sort a,
#main_container .aimeos .sort a:link,
#main_container .aimeos .sort a:visited {
    color: var(--ai-primary);
}

#main_container .catalog-filter-attribute fieldset,
#main_container .catalog-filter-supplier fieldset {
    color: var(--ai-primary);
    font-size: 14px;
}

#main_container .aimeos .attr-list,
#main_container .aimeos .form-list {
    margin: 0;
}

#main_container .catalog-filter-attribute .attribute-lists .attr-item,
#main_container .catalog-filter-supplier .supplier-lists .attr-item {
    margin-bottom: 0;
}

#main_container .catalog-filter-attribute label::before,
#main_container .catalog-filter-supplier label::before {
    border: 1px solid var(--blue);
    border-radius: 4px;
}

#main_container .catalog-filter-attribute input.attr-item[type="checkbox"]:checked + label::before,
#main_container .catalog-filter-supplier input.attr-item[type="checkbox"]:checked + label::before {
    background-color: var(--blue);
    content: '';
}

#main_container .aimeos.catalog-detail article.product {

    border-radius: 15px;
    margin-bottom: 30px;
}

#main_container .catalog-product-actions {
    margin-bottom: 15px;
    background-color: var(--table-yellow-clear);
    border-radius: 15px;
}

#main_container .catalog-filter-tree .disabled > .cat-item,
#main_container .catalog-filter-tree .disabled > .cat-item:link,
#main_container .catalog-filter-tree .disabled > .cat-item:visited,
#main_container .catalog-filter-supplier .disabled .attr-name,
#main_container .catalog-filter-attribute .disabled .attr-name {
    color: var(--blue);
}

#main_container .slider-item-ratio .slider-container > ::after {
    padding-top: calc(100%);
}

#main_container .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: auto;
    margin-right: auto;
    border-radius: 30px;
    line-height: 14px;
    padding: 10px;
    color: var(--blue);
    font-weight: 500;
}

#main_container .btn-search {
    color: var(--blue) !important;
}

body.aimeos_shop_detail #main_container .aimeos .product .price-item .rebatepercent {
    left: unset;
    right: 50px;
    top: 15px;
    font-size: 19px;
    margin-right: 20px;
}

body .aimeos-container {
    border: 1px solid var(--yellow);
    border-radius: 15px;
}

body .aimeos-container .minibutton.btn-close {
    content: '';
    background-image: url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/icons/x.svg");
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: middle;
    font-size: 20px;
    color: var(--blue);
    position: absolute;
    right: 15px;
    top: 15px;
}

body.aimeos_shop_checkout .shop-main,
body.aimeos_shop_basket .shop-main,
body.aimeos_shop_confirm .shop-main {
    width: 100%;;
}

body.aimeos_shop_checkout .shop-column,
body.aimeos_shop_basket .shop-column,
body.aimeos_shop_confirm .shop-column {
    display: none;
}

body.aimeos_shop_checkout .checkout-standard-address {
    display: none;
}

body.aimeos_shop_checkout .delivery-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 15px;
}

body.aimeos_shop_checkout .common-summary-address,
body.aimeos_shop_checkout .common-summary-service,
body.aimeos_shop_checkout .common-summary-additional {
    display: none;
}

#main_content .checkout-standard .delivery-options .item-service .option {
    display: none;
}

#main_content .checkout-standard .item-service label:hover {
    cursor: pointer;
}

#main_content .checkout-standard .item-service .option .icons img {
    border: 2px solid transparent
}

#main_content .checkout-standard .item-service .option:checked ~ .icons img {
    border: 2px solid var(--yellow);
}

#main_content .checkout-standard .item-service .option ~ h2,
#main_content .checkout-standard .item-service .option ~ .text {
    color: var(--grey);
}

#main_content .checkout-standard .item-service .option:checked ~ h2,
#main_content .checkout-standard .item-service .option:checked ~ .text {
    color: var(--blue);
}


#main_content .checkout-standard .item-service .description .icons {
    width: 100%;
    height: auto;
}

#main_content .checkout-standard .item-service .description .icons img {
    width: 100%;
    height: auto;
    max-height: inherit;
    margin: 0
}

#main_content .checkout-standard .checkout-standard-payment .item-service label {
    display: flex;
    flex-wrap: nowrap;
}

#main_content .checkout-standard .checkout-standard-payment .item-service label .icons {
    display: none;
}

#main_content .checkout-standard-summary-option .single {
    display: flex;;
}

#main_content .checkout-standard-summary-option input[type="checkbox"] {
    display: block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

#main_content .checkout-standard-summary-option {
    margin-top: 30px
}

#main_content .catalog-detail-basket .selection {
    margin-top: 0;
}

#main_content .catalog-detail-basket .select-item {
    margin: 0;
}

#main_content .basket-mini-product .name {
    text-align: right;
}

#main_content .basket-mini-product .header .name {
    text-align: left;
}

#main_content .list-container .header {
    padding: .5rem .75rem;
  margin: 0;
  background-color: var(--white);
  border-radius: 15px;
}

/* FAVORITOS */

#main_content .account-favorite .favorite-items {
    justify-content: flex-start;
}

#main_content .account-favorite .favorite-items .product {
    padding: 15px;
}

#main_content .account-favorite .favorite-items .product h2 {
    text-align: center;
}

#main_content .favorite-items.product-list .product {
    border: 1px solid var(--yellow);
}

#main_content .catalog-detail .catalog-detail-actions {
    justify-content: space-between;
    flex-wrap: wrap;
    display: flex;
    position: absolute;
    right: 0;
    width: auto;
}




/* CARRITO */

#main_content .basket-mini-product {
    padding: .5rem .75rem;
    margin: 0;
    background-color: var(--table-yellow-clear);
    border-radius: 15px;
}

#main_content .basket-mini-product .to-basket {
    margin: 0
}

#main_content .basket-mini-product .to-basket .btn.btn-rounded {
    background-color: var(--yellow);
    color: var(--blue);
    border-radius: 15px;
    padding: 10px 20px;
    font-weight: bold;
    color: var(--white);
}

#main_content .basket-mini-product .to-basket .btn.btn-rounded:hover {
    color: var(--blue);
}

#main_content .basket-mini-product .header .name {
    padding: .5rem .75rem;
    margin: 0;
    background-color: var(--white);
    border-radius: 15px;
}

#main_content .basket-mini-product .basket {
    margin: 0;
}

#main_content .basket-mini-product .basket .product-item {
    padding-left: 0;
    padding-right: 0;
}



/* Mapa */

.map-responsive  {
    position: relative;
    padding-bottom: 65%;
    height: 0;
    overflow: hidden;
}
.map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}




/* RESPONSIVE */

@media (max-width: 1023px) {

    #main_container {
        display: flex;
        justify-content: center;
        gap: 0;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        padding-left: 10px;
        padding-right: 10px;
    }
    #left_header {
        position: absolute;
        left: -100%;
        top: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--white);
        transition: left 0.3s ease-in-out;
        z-index: 1000;
    }

    #left_header.active {
        left: 0;
        overflow-y: auto;
    }

    #main_content {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
    }



    /* Mapa */

    .map-responsive  {
        position: relative;
        padding-bottom: 200%;
        height: 0;
        overflow: hidden;
    }
    .map-responsive iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }


    /* CABECERA */

    .sub-header .bar-user-info {
        width: 80%;
        border-right: none;
        margin-right: 0;
        border-bottom: 1px solid var(--white);
    }

    .sub-header .bar-user-tracs {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--white);
    }

    .sub-header .bar-user-actions {
        width: 100%;
    }

    #left_header #menu ul li a {
        line-height: 25px
    }

    /* FUNCIONAMIENTO */

    .grid-funcionamiento {
        display: grid;
        grid-template-columns: 1fr;
        grid-column-gap: 1rem;
        grid-row-gap: 0.9rem;
    }

    .grid-funcionamiento-1 {
        grid-area: 1 / 1 / 2 / 2;
    }
    .grid-funcionamiento-2 {
        grid-area: 2 / 1 / 3 / 2;
    }
    .grid-funcionamiento-3 {
        grid-area: 3 / 1 / 4 / 2;
    }

    body.contact #content .contact-holder {
        max-width: 1500px;
        margin-left: auto;
        margin-right: auto;
        padding-top: 50px;
        padding-bottom: 50px;
        background-color: #fdde99;
        border-radius: 15px;
        padding: 15px;
        flex-wrap: wrap;
    }

    body.contact #content .contact-holder .contact-holder-img {
        max-width: 100%;
        margin-right: 0;
    }

    body.contact #content .contact-holder .contact-holder-form {
        max-width: 100%;
    }

    body .routes-modal-wrapper {
        top: 10px !important;
    }

}

/* Estilos para las banderas de países */
.country-flags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.country-flag {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.5rem;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    font-size: 1.2rem;
    transition: all 0.2s ease-in-out;
}

.country-flag:hover {
    background-color: #e9ecef;
    border-color: #adb5bd;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.country-name {
    font-size: 0.875rem;
    color: #6c757d;
    margin-left: 0.5rem;
}

.product-countries {
    margin-top: 0.75rem;
}

.product-countries .country-flag {
    font-size: 1rem;
    padding: 0.125rem 0.25rem;
    background-color: transparent;
    border: none;
}

.catalog-detail-countries {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid #dee2e6;
}

.catalog-detail-countries h4 {
    color: #495057;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}








#users-table,
#vehicles_table,
body.UserController_ordersHistory table {
    font-size: 0.8rem;
}




/* RESPONSIVE */

@media (max-width: 1500px) and (min-width: 900px) {

    #nologged_header #menu ul li a {
        font-size: 0.8em;
        padding: 5px;
    }

    #footerMenu ul.fMenu li a {
        font-size: 0.8em;
    }
}

@media (min-width: 900px) and (max-width: 990px) {
    .container {
        max-width: 90% !important;
    }

    #nologged_header #menu {
        width: 115%;
    }

    #nologged_header #menu ul li a.feat {
        padding: 5px 10px;
    }

    .register-img {
        width: 40%;
    }

    #advantages .adv-text {
        padding-top: 70px;
    }
}

@media (max-width: 899px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    #main_container .shop-main {
        padding-right: 0;
        order: 2
    }

    #main_container .shop-column {
        padding-left: 0;
        order: 1;
    }

    #header-container #logo {
        order: 1;
        width: auto;
    }

    #header-container .menu-langs {
        order: 2;
        width: auto;
        max-width: 0;
        margin-left: 0;
        margin-right: 0;
        z-index: 10;
    }

    #nologged_header .default-lang {
        padding: 0;
        width: 30px;
        margin-right: 5px;
    }

    #nologged_header .lang-options {
        width: 40px;
        border-radius: 5px;
    }

    #header-container #menu {
        order: 3;
        width: auto;
        z-index: 10;
    }

    #logo img {
        max-width: 100%;
    }

    #nologged_header .hamburger {
        display: flex;
    }

    #nologged_header #menu ul {
        display: none;
    }

    #nologged_header #menu_mobile {
        display: inherit;
        position: relative;
        z-index: 2;
    }

    #nologged_header #menu_mobile > ul {
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
        align-items: flex-start;
        background-color: #fff;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        z-index: 99;
        padding: 15px 0;
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 75%;
        padding-top: 40%;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

    #nologged_header #menu_mobile > ul.show {
        right: 0;
    }

    #nologged_header #menu_mobile > ul > li {
        padding: 0 6px;
        width: 100%;
        margin-bottom: 10px;
    }

    #nologged_header #menu_mobile > ul > li > a {
        padding: 10px 12px;
        color: var(--yellow);
        font-size: 1.2em;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        font-size: 14px;
        color: var(--blue);
        font-weight: bold;
    }

    #nologged_header #menu_mobile > ul li a {
        font-size: 14px;
        color: var(--blue);
        font-weight: bold;
    }

    #nologged_header #menu_mobile > ul > li > a:hover {
        color: var(--blue);
        font-weight: bold;
        border-bottom: 3px solid var(--blue);
    }

    #nologged_header #menu_mobile > ul > li.active > a {
        border-bottom: none;
        color: var(--blue);
    }

    #nologged_header #menu_mobile > ul > li.active > a {
        color: var(--blue);
        font-weight: bold;
    }

    #nologged_header #menu_mobile > ul.show > .hamburger-mobile {
        display: flex;
    }

    #nologged_header #menu_mobile > ul > li > a.feat {
        background-color: var(--yellow);
        font-weight: bold;
        color: var(--blue);
        border-radius: 50px;
        padding: 13px 44px;
        margin-left: 24px;
        display: block;
        width: calc(100% - 30px);
        margin-top: 5px;
        margin-left: 10px;
        margin-right: 10px;
        padding: 5px 10px;
        font-size: 0.8em;
        text-align: center;
    }

    #nologged_header #menu_mobile > ul > li > .menu-divisor {
        display: block;
        width: 25%;
        border-bottom: 2px solid var(--blue);
        margin-left: 12px;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    #mainCarousel.menu-open {
        margin-top: 143px;
    }

    #mainCarousel {
        margin-bottom: 50px;
    }

    #mainCarousel .carousel-indicators {
        margin-bottom: -25px;
    }

    #mainCarousel .carousel-item-2 .carousel-caption {
        top: 0;
        width: auto;
        height: 100%;
    }

    #mainCarousel .carousel-caption h2 {
        font-size: 1.2rem;
        padding-bottom: 0;
    }

    #mainCarousel .carousel-caption h2 br {
        display: none;
    }

    #mainCarousel .carousel-caption p {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }

    #mainCarousel .carousel-caption p br {
        display: none;
    }

    #mainCarousel .carousel-caption .buttons {
        display: flex;
        font-size: 0.8rem;
        position: absolute;
        bottom: 0;
        width: 80vw
    }

    #mainCarousel .carousel-item-3 .carousel-caption {
        left: 0;
        bottom: 18%;
    }

    #mainCarousel .carousel-item-3 .carousel-caption .buttons {
        left: 7%;
    }

    #mainCarousel .carousel-caption .buttons .btn {
        padding: 4px 10px;
        font-size: 10px;
    }

    #mainCarousel .carousel-caption .buttons .btn-play {
        padding-left: 20px;
    }

    #mainCarousel .carousel-caption .buttons .btn-play:before {
        left: 5px;
    }

    #mainCarousel .carousel-control-next-icon,
    #mainCarousel .carousel-control-prev-icon {
        width: 12px;
        height: 12px;
    }

    #mainCarousel .carousel-control-prev .carousel-control-prev-icon {
        left: 20%;
    }

    #mainCarousel .carousel-control-next .carousel-control-next-icon {
        right: 20%;
    }

    #features {
        margin-bottom: 50px;
    }

    #features h2 {
        font-size: 30px;
    }

    #features .boxes {
        flex-direction: column;
        grid-template-columns: 1fr;
        width: 100%;
        padding: 0 15px;
    }

    #features .boxes > div {
        width: 100%;
    }

    #features .boxes > div p {
        font-size: 1.4rem;
    }

    #advantages {
        height: auto;
        overflow: hidden;
        position: relative;
        background-size: cover;
        border-radius: 30px;
        padding-left: 10px;
        padding-right: 10px;
        width: 100%;
        margin-bottom: 30px;
    }

    #advantages .adv-text {
        padding-top: 20px;
        padding-left: 10px;
        z-index: 9;
    }

    #advantages h2 {
        font-size: 2em;
    }

    #advantages .adv-info {
        font-size: 14px;
        width: 100%;
    }

    #advantages .adv-img {
        position: absolute;
        top: -15px;
        width: 50%;
        top: 29%;
        left: 50%;
        transform: translateX(-50%);
    }

    #advantages .adv-img img {
        width: 100%;
        height: auto;
        opacity: 0.2;
    }

    .css-form > div {
        flex-direction: column;
    }

    .css-form .register-img {
        width: 50%;
        margin-left: auto;
        margin-right: auto;
        padding: 0;
    }

    .css-form h2 {
        font-size: 1.6rem;
    }

    .css-form h2 br {
        display: none;
    }

    .css-form .register-form {
        width: 100%;
    }

    .css-form form label {
        width: 90%;
        line-height: 15px;
        font-size: 13px;
        margin-bottom: 15;
    }

    .css-form form input[type='text'],
    .css-form form input[type='email'] {
        width: 100%;
    }

    .css-form form .fuel-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .css-form form .fuel-container > div {
        display: flex;
        justify-content: space-between;
        align-items: center;
        align-content: center;
        margin-bottom: 15px;
    }

    .css-form form .fuel-container > div label {
        margin-bottom: 0;
    }

    #moreInfo {
        margin-top: 75px;
        padding-left: 10px;
        padding-right: 10px;
    }

    #moreInfo .container {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    #moreInfo h2 {
        font-size: 1.6rem;
    }

    #moreInfo img {
        max-width: 150px;
        padding-bottom: 20px;
    }

    footer {
        padding-left: 10px;
        padding-right: 10px;
    }

    #footerMenu {
        flex-direction: column;
    }

    #footerMenu .fMenu {
        flex-wrap: wrap;
        justify-content: center;
    }

    #footerMenu ul.fMenu li {
        padding: 0 7px;
        margin-bottom: 5px;
    }

    #footerMenu ul li.feat {
        margin-left: 0;
        margin-right: 0;
    }

    #footerMenu ul li.feat {
        padding: 5px 7px;
        width: 60%;
        text-align: center;
        margin-top: 20px;
        font-weight: 500;
    }

    #footerMenu .social {
        margin-top: 30px;
    }

    .info-page h1 {
        font-size: 1.1rem;
        text-align: left
    }

    .info-page h2 {
        font-size: 1rem;
    }

    .info-page table {
        font-size: 10px;
    }

    .info-page ol > li > ol {
        padding-left: 10px;
    }

    /* MAIL MESSAGES */

    div.alert {
        position: fixed;
        top: 40%;
        width: 82%;
        height: 37%;
        font-size: 23px;
        z-index: 999;
    }

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

    #mainCarousel .carousel-control-next .carousel-control-next-icon {
        right: 30%;
    }

    #mainCarousel .carousel-control-prev .carousel-control-prev-icon {
        left: 30%;
    }

    #header-container div.bar-button-menu {
        order: 2;
    }

    .carousel-caption {
        left: 10%;
    }

    #features {
        margin-top: 30px;
    }

    #features h2 {
        margin-bottom: 20px;
    }

    a.feat2 {
        display: block;
        background-color: var(--blue);
        font-weight: 500;
        color: var(--yellow);
        border-radius: 50px;
        padding: 13px 44px;
        margin-left: 0;
    }

    #nologged_header #menu_mobile > ul li a.feat2 {
        width: calc(100% - 30px);
        margin-top: 5px;
        margin-left: 10px;
        margin-right: 10px;
        padding: 5px 10px;
        font-size: 0.8em;
        text-align: center;
        color: var(--white);
    }

    a.feat2:hover {
        color: var(--yellow);
        font-weight: bold;
        border-bottom: 3px solid var(--yellow);
    }

    .register-form-holder {
        width: 93vw;
    }

    .register-buttons-holder {
        flex-wrap: wrap;
        justify-content: center;
    }
    .register-buttons-holder > * {
        margin-bottom: 5px;
    }
}

@media (max-width: 767px) {
    .desktop {
        display: none !important;
    }

    .mobile {
        display: block !important;
    }

    #footerMenu ul {
        padding-left: 0;
    }

    .sub-header .vertical-line {
        display: none;
    }

    #main_container .aimeos .browser span, #main_container .aimeos .browser a {
        padding: 0.5rem;
    }

    #main_container .aimeos:not(.cms-page) .product-list .product {
        width: 47%;
        margin: 0.5rem 1%;
    }

    #main_container .aimeos .product .price-item.default .value {
        font-size: 22px;
    }

    body.aimeos_shop_checkout .delivery-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 400px) {

    #mainCarousel .carousel-caption h2 {
        font-size: 1rem;
    }

    #mainCarousel .carousel-caption p {
        font-size: 0.7rem;
    }

    .css-form form .form-group-terms,
    .css-form form .form-group-card {
        padding-left: 10px;
    }

    .css-form form .fuel-container {
        padding-left: 10px;
    }

    .css-form form label {
        padding-left: 6px;
    }

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

    #mainCarousel .carousel-control-next .carousel-control-next-icon {
        right: 50%;
    }

    #mainCarousel .carousel-control-prev .carousel-control-prev-icon {
        left: 50%;
    }
}




@media (max-width: 1023px) and (min-width: 768px) {

    body #main_container {
        font-size: .9rem;
    }

    #left_header {
        width: 60%;
    }

    .mobile-menu-button {
        top: 1rem;
    }

    .mobile-menu-button > button {
        box-shadow: 0 0 6px -2px #888686;

    }

    #left_header #menu_mobile {
        display: none;
    }

    .avatar-image {
        width: 70px;
        margin-right:0;
    }

    .bar-user-flex {
        flex-wrap: wrap;
    }

    .bar-user-flex .vertical-line {
        display: none;
    }

    .sub-header .bar-user-info {
        width: 30%;
        border: none;
    }

    .sub-header .bar-user-tracs {
        width: 65%;
        border: none;
    }

    .sub-header .bar-user-actions {
        margin-top: 10px;
    }

    .yellow-table tr {
        padding: 2px 5px;
    }

    #main_container .aimeos .product .price-item.default .value {
        font-size: 20px;
    }
}


@media (max-width: 1365px) and (min-width: 1024px) {

    #nologged_header img {
        width: 100px !important;
    }

    #main_content {
        padding-right: 15px;
    }

    #main_container {
        grid-template-columns: 250px 1fr;
        gap: 10px;
    }

    #main_content .container, #main_content .container-fluid {
        max-width: 100%;
    }

    #left_header #cardColumn {
        border-radius: 10px;
    }

    #left_header #menu ul li a {
        line-height: 25px;
    }

    .banner-principal-home-slider {
        max-width: calc(100vw - 260px);
    }

    .sub-header .avatar-image {
        margin-right: 0;
    }

    .sub-header .vertical-line {
        margin: 0;
    }

    .bar-button-logout {
        padding: 5px;
        margin-right: 0;
    }

    .bar-button-logou a {
        line-height: 0;
    }

    .bar-user-actions {
        margin-left: 10px;
    }

    .bar-button {
        padding: 5px;
    }

    .bar-user-tracs {
        font-size: 0.8rem;
    }


}








/* Responsive adjustments */
@media (max-width: 1023) {
    .country-flags {
        gap: 0.25rem;
    }

    .country-flag {
        font-size: 1rem;
        padding: 0.125rem 0.25rem;
    }

    .country-name {
        font-size: 0.75rem;
    }

    .vertical-line {
        display: none;
    }

    .sub-header .bar-user-info {
        border-bottom: none;
    }

    .sub-header .bar-user-info {
        max-width: inherit;
    }






    /* TIENDA */

    #main_container .shop-main {
        order: 2;
        padding-right: 0;
    }

    #main_container .shop-column {
        order: 1;
        padding-left: 0;
    }

    #main_container .shop-column  > .catalog-filter {
        position: relative;
    }

    #main_container .reset-btn,
    #main_container .btn.supplier-selected {
        position: absolute;
        right: 0;
        top: 0;
    }

    #main_container .search-lists.original {
        display: block;
    }

    #main_container .catalog-list {
        padding-left: 0;
        padding-right: 0;
    }

    #main_container .catalog-list .pagination .browser {
        margin-left: 0;
    }

    #main_container .catalog-list .pagination .browser a {
        padding: 5px;
    }

    .aimeos .sort ul {
        line-height: 6px;
    }

    #main_container .aimeos:not(.cms-page) .product-list .product {
        width: 46%;
        margin: 2%
    }

    body.aimeos_shop_checkout .delivery-options {
        grid-template-columns: 1fr;
    }

    #main_container .checkout-standard .step {
        width: 30%;
    }

    .sub-header > .container > div {
        margin-top: 15px;
    }

    .bar-button.bar-button-logout {
        margin-right: 0px;
    }

    .swiper-button-prev::before, .swiper-button-next::before {
        width: 6px;
        height: 6px;
    }

    #main_container .aimeos .product .price-item.default .value {
        font-size: 19px;
    }

    #main_container .aimeos .common-summary-detail .quantity {
        display: flex;
    }

    #main_container .aimeos .btn.btn-primary {
        font-size: 1rem
    }


    #header-container .menu-langs {
        max-width: 100%;
        margin-left: 0;
        width: 100%;
    }

    #nologged_header .default-lang img {
        width: 30px;
        height: 30px;
        border-radius: 5px;
        margin-left: 0;
        margin-right: 0;
    }

    .carousel-caption {
        position: absolute;
        bottom: 20px;
        left: 57%;
        transform: translateX(-50%);
        text-align: center;
        z-index: 10;
        width: 100%;
    }


}


