body, html {
    height: 100%;
}

body {
    font-family: "Montserrat", sans-serif;
    background-color: #DE98B2;
}

.page-container {
    background-color: #DE98B2;
}

.no-scroll {
    overflow: hidden;
}

.text-1 {
    color: white;
}

.text-2 {
    color: white;
}

.text-3 {
    color: white;
}

.text-4 {
    color: white;
}

.text-5 {
    color: white;
}

.toolbar-div {
    border-top: 1px solid rgb(200, 200, 200);
    border-bottom: 1px solid rgb(200, 200, 200);
    background-color: #DE98B2;
}

.log-icon {
    scale: 1.5;
    cursor: pointer;
}

.log-icon-link {
    color: white !important;
}

.menu-li {
    list-style-type: none !important;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.menu-link {
    text-decoration: none !important;
    color: white;
    font-weight: 600;
}
.prod-cat-li {
    list-style-type: none !important;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.prod-cat-link {
    text-decoration: none !important;
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.prod-type-link {
    text-decoration: none !important;
    color: white;
    font-weight: 400;
}

.menu-items {
    display: none;
    position: absolute;
    left: 0;
    width: 100vw;
    min-height: 60px;
    background-color: #DE98B2;
    padding: 10px;
    text-align: center;
}

.search-input {
    border-top: none;
    border-right: none;
    border-left: none;
    border-color: white;
    outline: none;
    color:white;
    background-color: #DE98B2;
}

.search-input::placeholder {
    color: white;
}

.search-icon {
    cursor: pointer;
    color: white;
}

.app-footer {
    padding-top: 25px;
    background-color: black;
    padding-bottom: 25px;
}

.footer-title {
    color: white;
    font-weight: 600;
}

.footer-txt {
    color: white;
}

.footer-txt a {
    color: white !important;
    text-decoration: none !important;
}

.footer-icon {
    color: white;
}

@media only screen and (min-width: 768px) {
    .text-1 {
        font-size: 14px;
    }
    
    .text-2 {
        font-size: 13px;
    }
    
    .text-3 {
        font-size: 12px;
    }
    
    .text-4 {
        font-size: 25px;
    }
    
    .text-5 {
        font-size: 20px;
    }
    .mob-elem {
        display: none !important;
    }
    .page-container {
        min-height: 50vh;
        padding: 0 1.25rem;
        margin-top: 25px;
        margin-left: 2.25rem;
        margin-right: 2.25rem;
        margin-bottom: 25px;
    }
    .mobile-menu-div {
        display: none !important;
    }
    .logo {
        width: 100px;
    }
    .footer-redes-icon {
        width: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .text-1 {
        font-size: 14px;
    }
    
    .text-2 {
        font-size: 13px;
    }
    
    .text-3 {
        font-size: 12px;
    }
    
    .text-4 {
        font-size: 22px;
    }
    
    .text-5 {
        font-size: 20px;
    }
    .desk-elem {
        display: none !important;
    }
    .page-container {
        min-height: 70vh;
        margin-top: 25px;
        margin-bottom: 25px;
    }
    .collapse-horizontal {
        position: absolute;
        top: 0;
        left: 0;
        width: 220px; /* Ancho del contenido expandible */
        min-height: 100%;
        transition: width 0.35s ease;
        overflow: hidden;
    }
    .collapse-horizontal.show {
      width: 220px; /* El mismo ancho que arriba */
    }
    .mobile-menu {
        z-index: 1;
        background-color: #DE98B2;
        height: 100%;
    }
    .mobile-menu-btn {
        position: absolute;
        top: 30px;
        left: 35px;
        z-index: 2;
    }
    .mobile-menu-icon {
        transform: scale(3);
    }
    .mobile-menu-space {
        min-height: 60px;
    }
    .mobile-menu-cat {
        font-weight: 600;
    }
    .mobile-menu-all {
        padding-left: 20px;
        font-weight: 600;
    }
    .mobile-menu-all a{
        text-decoration: none !important;
        color: white;
    }
    .mobile-menu-ptype {
        padding-left: 20px;
        font-weight: 400;
    }
    .mobile-menu-ptype a{
        text-decoration: none !important;
        color: white;
    }
    .accordion-body {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    .logo {
        width: 90px;
    }
    .search-div {
        margin-top: 10px;
    }
    .footer-cols {
        flex-direction: column;
    }
    .footer-redes-col {
        margin-bottom: 30px;
    }
    .footer-redes-div {
        justify-content: center;
    }
    .footer-contact-col {
        margin-bottom: 30px;
    }
    .footer-title, .footer-txt {
        text-align: center !important;
    }
    .footer-redes-icon {
        width: 18px;
    }
    .footer-contact-div {
        justify-content: center;
    }
}

/* Estilos solo para botón de switch */

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
  }
  
  /* Hide default HTML checkbox */
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  /* The slider */
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: #DE98B2;;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
    background-color: #2196F3;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }