* {
    margin: 0;
    padding: 0;
    outline: none;
    text-decoration: none;
    font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    box-sizing: border-box;
}

:root {
    --colorBlue: #0096d2;
    --colorYellow: #f69c00;
    --colorCircle: #f69c00;
    --colorBlackTitle: #0e0e13;
    --colorTextGray: #8b8282;
    --colorBackgroundArrow: #e8f5fa;
    --colorSeparatorGray: #ececec;
    --colorBlueLight: #f9fdff;
}

::placeholder {
    color: var(--colorBlackTitle);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

.header {
    background-color: var(--colorBlue);
    transition: all 0.9s ease;
    font-size: 20px;
}

.container-box.flex-end {
    display: flex;
    justify-content: flex-end;
}

.container-box {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.container-logo {
    order: 0;
    width: 150px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .container-logo svg #letra {
    fill: white;
}

.header.yellow .container-logo > svg #letra {
    fill: #0e0e13;
}

.header.yellow {
    background: var(--colorYellow);
    --colorCircle: var(--colorBlue);
}

.header.black {
    background: var(--colorBlackTitle);
}

.header.yellow .container-logo > svg #curva {
    fill: var(--colorBlue);
}

.header.black .container-logo > svg #letra {
    fill: var(--colorBlue);
}

.header.no-landing {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
}

.container-header-nav.sticky .container-logo > svg #letra {
    fill: white;
}

body.always-fixed {
    padding-top: 70px;
}

.container-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.container-header.no-landing {
    /*padding-top: 0;*/
}

.menu {
    width: 55%;
}

.menu-line {
    height: 6px;
    width: 100%;
    background-color: var(--colorCircle);
    border-radius: 3px;
    margin-top: 15px;
    display: none;
}

.list-menu {
    display: flex;
    list-style: none;
    justify-content: space-between;
}

.item-menu {
    color: white;
    position: relative;
    padding: 0 3px;
    z-index: 2;
}

.item-menu.active {
    font-weight: bolder;
}

.item-menu.active::after {
    content: " ";
    width: 100%;
    height: 6px;
    background: var(--colorYellow);
    position: absolute;
    bottom: 2px;
    left: 0;
    z-index: -1;
    border-radius: 10px;
}

.item-menu:hover {
    font-weight: bold;
}

.header.yellow .item-menu.active::after {
    background: var(--colorBlue);
}

.container-login {
    border: 2px solid;
    border-radius: 30px;
    padding: 10px 15px;
    color: white;
}

.header.no-landing .container-login {
    border: none;
}

.txt-login {
    color: white;
}

.container-login:hover,
.container-login:hover .txt-login {
    color: #0e0e13;
}

.hero {
    display: flex;
}

.container-txt-hero {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 45%;
    position: relative;
}

.container-txt-btn-hero {
    align-self: center;
}

.hero-slide {
    display: none;
}

.hero-slide.show {
    display: block;
    opacity: 0;
    animation: fadeIn 0.9s ease 0s 1 normal forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-15%);
    }
    to {
        opacity: 1;
        transform: translateY(0%);
    }
}

.title-hero {
    font-size: 3em;
    line-height: 60px;
    color: var(--colorBlackTitle);
    position: relative;
}

.header.black .title-hero {
    color: var(--colorBlue);
}

.text-hero {
    margin-top: 30px;
    color: white;
    font-size: 1.5em;
    line-height: 40px;
}

.title-hero::after {
    content: " ";
    width: 50%;
    height: 5px;
    background: var(--colorYellow);
    position: absolute;
    bottom: -18px;
    left: 0;
    border-radius: 10px;
}

.header.yellow .title-hero::after {
    background: var(--colorBlue);
}

.container-img-hero {
    width: 60%;
    display: none;
}

.container-img-hero.show {
    display: block;
    animation: fadeIn 0.9s ease 0s 1 normal forwards;
}

.container-img-hero img {
    width: 100%;
    display: block;
}

.search-bar-header {
    max-width: 70%;
    order: 1;
    width: 45%;
}

.search-bar-header .search {
    margin: 0;
}

.search-bar-header .input-search {
    font-size: 16px;
    color: gray;
    padding-left: 0;
    width: 75%;
}

.search-bar-header .custom_select select {
    border: none;
    width: initial;
}

.search-bar-header .select2-container--default .select2-selection--single .select2-selection__rendered {
    display: flex;
    align-items: center;
    height: 100%;
}

.search-bar-header .select2-container {
    height: 100%;
}

.search-bar-header .select2-container .select2-selection--single {
    border: none;
    display: flex;
    align-items: center;
    height: 100% !important;
}

.search-bar-header .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100% !important;
}

.header.no-landing .search {
    padding: 0;
}

.search {
    width: 100%;
    background: white;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    margin-top: 35px;
    box-sizing: border-box;
    padding: 7px 10px;
    padding-left: 0;
    height: 57px;
}

.input-search {
    border: none;
    width: 80%;
    box-sizing: border-box;
    font-size: 1.3em;
    color: var(--colorBlackTitle);
    padding-left: 45px;
    display: grid;
    place-items: center;
}

.btn-search-container {
    width: 12%;
    height: 96%;
    padding: 7px 10px;
    background: var(--colorYellow);
    border: none;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1px 1px 1px 1px;
}

.btn-search {
    width: 60px;
    height: 100%;
    background: var(--colorYellow);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-cart {
    display: flex;
    align-items: center;
    list-style: none;
}

.login-cart .nav-link {
    color: white;
}

.login-cart .nav-link:hover {
    color: #0b0b0b;
}

.cart-div .nav-link:hover {
    color: #0b0b0b;
}

.login-cart .dropdown-menu-left {
    right: 0;
    top: initial;
    left: auto;
    min-width: initial;
}

.login-cart .dropdown-menu-left .cart_buttons {
    padding: 0;
}

.login-cart .dropdown-menu-left .cart_buttons .btn-fill-out {
    background: white;
}

.ddcommon .ddlabel {
    color: white;
}

.ddcommon .ddArrow::before {
    color: white;
}

.container-btn-carrusel-item {
    display: flex;
    margin-bottom: 60px;
}

.circle-hero {
    background: transparent;
    border-radius: 7px;
    width: 15px;
    height: 15px;
    border: 2px solid var(--colorCircle);
    margin-right: 12px;
    cursor: pointer;
}

.circle-hero.active {
    animation: activeDot 0.7s ease 0s 1 normal forwards;
}

.circle-hero.dotOut {
    animation: dotOut 0.7s ease 0s 1 normal forwards;
}

.container-header-nav.sticky {
    position: fixed;
    opacity: 0;
    top: 0;
    width: 100%;
    z-index: 999;
    background: var(--colorBlue);
    animation: fadeInHeader 0.6s ease 0s 1 normal forwards;
}

.container-header-nav.sticky .item-menu.active::after {
    background: var(--colorYellow);
}

.header .container-header-nav.sticky .container-logo > svg #curva {
    fill: var(--colorYellow);
}

@keyframes fadeInHeader {
    from {
        opacity: 0;
        transform: translateY(-15%);
        background: white;
    }
    to {
        opacity: 1;
        transform: translateY(0%);
        background: var(--colorBlue);
    }
}

@keyframes activeDot {
    0% {
        width: 15px;
        background: transparent;
    }
    50% {
        width: 15px;
        background: var(--colorCircle);
    }
    100% {
        width: 46px;
        background: var(--colorCircle);
    }
}

@keyframes dotOut {
    0% {
        width: 46px;
        background: var(--colorYellow);
    }
    50% {
        width: 15px;
        background: var(--colorYellow);
    }
    100% {
        width: 15px;
        background: transparent;
    }
}

.header.yellow .circle-hero {
    border-color: var(--colorBlue);
}

.header.yellow .circle-hero.active {
    background: var(--colorBlue);
}

/*@media screen and (max-width: 1000px) {
  .header.no-landing .container-header{
    flex-direction: row;
  }
  .header.no-landing .container-login{
    display: flex;
  }
}*/
@media screen and (max-width: 900px) {
    .header.no-landing .container-header {
        flex-wrap: wrap;
    }

    .search-bar-header {
        order: 1;
        width: 100%;
    }

    .search-bar-header .btn-search {
        width: 50px;
    }

    .search-bar-header .search {
        height: 50px;
    }

    .search-bar-header .custom_select select {
        font-size: .9em;
    }

    .search-bar-header .select2-container--default .select2-selection--single .select2-selection__placeholder {
        font-size: .9em;
    }
}

@media screen and (max-width: 525px) {
    .header.no-landing .container-box {
        padding: 0 15px;
        font-size: .9em;
    }

    .header.no-landing .container-logo svg {
        width: 100%;
    }

    .login-cart .nav-link {
        padding-right: 0;
        padding-left: 9px;
    }

    .search-bar-header .select2-container--default .select2-selection--single .select2-selection__rendered {
        padding-left: 0px;
    }
}

@media screen and (max-width: 375px) {
    .header.no-landing .container-login {
        padding: 8px;
        border: none;
    }
}

.logo_s {
    display: none;
}

.dropdown-menu2 {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0.625rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #FFFFFF;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 0.25rem;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    width: 50%;
}

.dropdown-menu2:before {
    content: '';
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid white;
    position: absolute;
    top: -12px;
    left: 20px;

}

.dropdown-menu2 a {
    display: flex;
    color: #7c7c7c;
    padding: 8px;
    margin-left: 10px;
    margin-right: 5px;
    align-items: center;
}

.dropdown-menu2 a:hover {
    color: #FF8300;
}

.dropdown-menu2 li:not(:last-child) {
    border-bottom: 1px solid #E2E2E2;
}

.dropdown-menu2 li {
    align-items: center;
    margin-bottom: 5px; /* Ajusta el margen según tus preferencias */
}

.custom-width {
    width: 235px;
}

.dropdown-menu2 li a i {
    font-size: 22px;
    margin-right: 8px;
}

.dropdown:hover .dropdown-menu2 {
    display: block;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 998;
}

.overlay.active {
    display: block;
}

.abrir-menu,
.cerrar-menu {
    display: none;
}

.icon-size-h {
    font-size: 20px;
}

.options-menu-p {
    order: 2;
    display: flex;
    align-content: space-around;
}

.cart-div {
    display: flex;
    list-style: none;
    align-items: center;
    order: 0;
    align-content: space-around;
}

.cart-div li a {
    color: #FFFFFF;
}


/*@media screen and (max-width: 700px) {
  .search-bar-header {
    width: 30%;
  }
  .abrir-menu,
  .cerrar-menu{
    display: block;
    border: 0;
    font-size: 40px;
    background-color: transparent;
    color: #FFFFFF;
  }
  .login-cart {
    position: fixed;
    top: 0;
    left: 0;
  }
  .container-header-nav .login-cart{
    opacity: 0;
    visibility: hidden;

    flex-direction: column;
    align-items: flex-start;
    background-color: #FF8300;
    bottom: 0;
    padding: 2rem;
    box-shadow: 0 0 0 100vmax rgba(0, 0, 0, .5);
  }
  .container-header-nav .login-cart.visible{
    opacity: 1;
    visibility: visible;
  }

  .login-cart li i,
  .login-cart li span{
    display: inline-block;
  }
  .login-cart li{
    border-bottom: 1px solid #FFFFFF;
    margin-bottom: 5px;
  }
  .header.no-landing .container-logo{
    width: 30%;
  }
}*/

/*@media screen and (min-width: 701px) and (max-width: 835px) {
  .search-bar-header {
    width: 60%;
  }
  .login-cart li span{
    display: none;
  }
  .username{
    display: none;
  }
}*/