@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');
:root {
    --primary-purple: #63165f;
    --primary-purple-ligther: #791173;
    --primary-white: white;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Quicksand', sans-serif !important;
}

body {
    overflow-x: hidden;
}

header {
    background: #63165f;
    color: white;
}

.sub_menu.visible,
.triangulo.visible {
    display: block !important;
}

.container_width {
    max-width: 1440px;
    width: 100%;
    margin: auto;
}

.container_width2 {
    width: 85%;
    margin: auto;
}

.container_header {
    width: 100%;
    height: 43px;
    margin: auto;
    align-items: center;
}

.contenedor {
    width: 100%;
    background: white;
}

.container_header p {
    margin: 0;
}

.content_up {
    width: auto;
    margin-right: 40px;
}

.content_up p {
    font-size: 10px;
    font-weight: 500;
    margin-left: 9px;
}

.cart {
    border-right: 1px solid #ffffff;
    height: 30px;
    align-items: center;
}

.inputsearch {
    width: 60%;
}

.card_home img {
    max-width: 50%;
}

.fa-heart,
.fa-user {
    margin-right: 44px;
}

.button {
    width: 54px;
}

.button:hover {
    background: #63165f;
}

.container_logo {
    width: 85%;
    margin: auto;
    background: white;
    /* height: 96px; */
    padding: 20px 0px 21px 0px;
}

.container_logo input {
    width: 80%;
    height: 41px;
    border-radius: 50px 0px 0px 50px;
    border: none;
    border: 1px solid #ececec;
    color: #c1c1c1;
    font-size: 10px;
}

.btn_responsive2 {
    display: none;
}

.container_logo input:focus {
    border-radius: 50px 0px 0px 50px;
}

.container_logo button {
    background-color: #63165f;
    border-radius: 0px 50px 50px 0px;
}

::placeholder {
    color: #c1c1c1;
}

:-ms-input-placeholder {
    color: #c1c1c1;
}

::-ms-input-placeholder {
    color: #c1c1c1;
}

.container_icon {
    display: flex;
    width: auto;
    justify-content: start;
    flex-wrap: wrap;
    align-items: center;
}

nav {
    background: white;
}

.container_nav {
    display: flex;
    flex-direction: row;
    width: 85%;
    margin: auto;
    background: white;
    margin: 0px auto 2px auto;
}

.containermenu {
    width: 270px;
    background-color: #63165f;
    display: flex;
    flex-direction: row;
    text-align: start;
    align-items: center;
    padding-left: 30px;
    border-radius: 5px 5px 0px 0px;
    font-size: 12px;
    margin-right: 0px;
    position: relative;
    padding: 8px 28px;
}

.menu_container {
    width: 45%;
    display: inline-grid;
}

.menu_container ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    margin: 0;
}

.menu_container ul li a {
    font-size: 14px;
    text-decoration: none;
    color: #000000 !important;
    font-weight: 500;
}

.container_category {
    width: 100%;
    display: none;
    position: absolute;
    top: 48px;
    left: 0px;
    background: rgba(255, 255, 255, 0.8);
    color: #333333;
    font-size: 14px;
    padding: 0px 23px 0px 27px;
    border-radius: 0px 0px 5px 5px;
    z-index: 1;
    cursor: pointer;
}

.container_category ul {
    list-style: none;
}

.container_category ul li {
    display: flex;
    justify-content: space-between;
    padding: 8px 15px;
    border-bottom: 1px solid #c1c1c1;
}

.container_category ul li:last-of-type {
    border: none;
    padding-bottom: 0px;
}

.container_category ul li a {
    font-size: 14px;
    font-weight: 500;
    color: #333333;
}

.containermenu label {
    margin: 0 !important;
}

.sectionrwd {
    display: none;
}

.container_category ul li a:hover {
    text-decoration: none;
}

#check:checked~.container_category,
.menuvisible {
    display: block;
    transition: all 1s;
}

#check {
    display: none;
}

.checkbtn {
    font-size: 20px;
    cursor: pointer;
}

.checkbtnMenu {
    cursor: pointer;
    font-size: 14px;
}

.circle {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #63165f;
    border-radius: 50px;
    width: 30px;
    height: 30px;
    position: relative;
}

.circle>label>img {
    cursor: pointer;
}

.number {
    position: absolute;
    top: -10px;
    right: -5px;
    font-size: 9px;
    background: #63165f;
    padding: 2px 6px;
    border-radius: 50%;
    border: 1.5px solid white;
}

#checkCart:checked~.container_cart {
    display: block;
    transition: all 1s;
}

#checkCart:checked~.arrow {
    display: block;
    transition: all 1s;
}

#checkCart {
    display: none;
}

.btn_responsive {
    display: none;
}

.container_cart {
    display: none;
    position: absolute;
    width: 286px;
    height: 377px;
    background: white;
    top: 61px;
    grid-template-rows: 3fr 1fr;
    padding: 27px 18px 12px 11px;
    font-size: 14px;
    z-index: 9999;
    transform: translateX(-20%);
}

.arrow {
    display: none;
    position: absolute;
    width: 30px;
    height: 26px;
    border: solid 1px #c1c1c1;
    background-color: #ffffff;
    transform: rotate(45deg) skew(15deg, 15deg);
    top: 52px;
    right: 0%;
    z-index: 9999;
}

.container_cart p {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.25;
    letter-spacing: normal;
    text-align: left;
    color: #262626;
}

.container_cart p:last-of-type {
    font-weight: bold;
}

.container2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 92px;
    color: #262626;
    margin-bottom: 20px;
    justify-content: center;
    align-items: center;
}

.container2 p {
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.43;
    letter-spacing: normal;
    margin-bottom: 0px;
}

.container_counter {
    width: 100%;
}

.container_counter .input_counter {
    border: none;
    width: 10px;
    font-size: 14px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.43;
    letter-spacing: normal;
    color: #333333;
    margin: 0px 3px 0px 3px;
}

.text_red {
    color: #f1304b !important;
    font-size: 12px;
    display: inline;
}

.container_counter .button_counter {
    width: 25px;
    height: 25px;
    border-radius: 50px;
    background-color: #f7f7f7;
    border: none;
}

.content_gray {
    margin: auto;
    width: 73px;
    height: 73px;
    border-radius: 10px;
    background-color: #ebebeb;
    position: relative;
}

.content_gray .image2 {
    position: absolute;
    top: -20px;
    left: -10px;
}

.content_gray img {
    top: 0px;
}

.grid_container {
    border-bottom: 1px solid #c1c1c1;
}

.content_button a {
    border-radius: 5px;
    background-color: #63165f;
    display: block;
    width: 202px;
    padding: 15px 37px;
    font-size: 14px;
    color: white;
    line-height: 1.14;
    letter-spacing: -0.06px;
    text-align: center;
    color: #ffffff;
    margin: 22px auto 0px auto;
}

.content_button a:hover {
    text-decoration: none !important;
}

#checkMenu:checked~.sub_menu {
    display: block;
    transition: all 1s;
}

#checkMenu {
    display: none;
}


/* .sub_menu {
    position: absolute;
    display: none;
    border: none !important;
    border-radius: 8px;
    width: 297px;
    padding: 10px 31px 10px 23px;
    margin-left: 0px;
    right: -95%;
    top: 65%;
    background: white;
} */

.sub_menu {
    position: absolute;
    display: none;
    border: none !important;
    border-radius: 8px;
    width: 297px;
    padding: 10px 31px 10px 23px;
    margin-left: 0px;
    right: -144%;
    top: 16%;
    background: #ffffffb8;
}

.sub_menu ul li {
    padding: 8px 0px 0px 0px !important;
}

.sub_menu ul li:last-of-type {
    border: none;
}

.sub_menu ul li a {
    font-size: 14px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.14;
    letter-spacing: normal;
    color: #333333;
    margin: 0px 0px 8px 0px;
}

#checkMenu:checked~.triangulo {
    display: block;
    transition: all 1s;
}

.triangulo {
    /* background: rgb(255 255 255 / 42%); */
    display: none;
    position: absolute;
    width: 30px;
    height: 26px;
    /* border-radius: 5px; */
    transform: rotate(181deg);
    top: 66%;
    top: 43%;
    left: 103%;
    width: 0;
    height: 0;
    border-left: 16px solid #ffffff;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

.content_logo img {
    display: block;
    /*  margin-left: 30px; */
    width: 73%;
}

.container_hamburger_rwd {
    display: none;
}

.container_search_rwd {
    display: none;
}

.content1 h4 {
    color: #fc3e39;
    font-size: 26px;
    display: inline-block;
    margin: 20px 20px 20px 0px;
}

.text_tachado {
    font-size: 18px;
    color: #545454;
    text-decoration: line-through;
}

.text_black {
    font-size: 15px;
    color: #252525;
}

.text_orange {
    font-size: 15px;
    color: #fc3e39;
}

.colorcontainer {
    width: 30.5px;
    height: 30.5px;
    border: solid 1px #8a8a8a;
    background-color: rgba(0, 108, 255, 0);
    border: 1px solid #8a8a8a;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.colorcontainer>div {
    width: 19.4px;
    height: 19.4px;
    background-color: #006cff;
    border-radius: 50%;
}

.containerbutton {
    align-items: center;
    width: 60%;
}

.buttonDetail {
    display: flex;
    justify-content: flex-start;
}

.containerbutton p {
    margin-right: 37px;
    margin-bottom: 0px;
}

.buttonCart {
    width: 191.5px;
    height: 47.2px;
    border-radius: 4px;
    background-color: #63165f;
    font-size: 14px;
    color: white;
    border: none;
    margin-right: 35px;
}

.buttonCart--mini {
    width: 23.5px;
    height: 18.2px;
    border-radius: 4px;
    background-color: #63165f;
    font-size: 14px;
    color: white;
    border: none;
    margin-left: 5px;
}

.cart-price-block {
    display: flex;
}

.buttonCartWhite {
    width: 202.5px;
    height: 47.2px;
    border-radius: 4px;
    font-size: 14px;
    color: #63165f;
    border: none;
    border: solid 1px #63165f;
    background: white;
}

.buttonDetail button {
    width: 36.1px;
    height: 36.1px;
    border: solid 1px #e5e5e5;
    background-color: rgba(0, 108, 255, 0);
}

.buttonDetail input {
    text-align: center;
    font-size: 11px;
    width: 36.1px;
    height: 36.1px;
    border: solid 1px #e5e5e5;
    background-color: rgba(0, 108, 255, 0);
}


/* INICIO */

.init {
    display: flex;
    justify-content: flex-end;
    background: white;
    width: 100%;
    /* height: 595px; */
}

.grilla_init {
    display: grid;
    width: 54%;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 80px 1fr;
    margin-top: 65px;
    margin-right: 130px;
}

.font_30 {
    font-size: 30px;
    color: white;
    font-weight: 300;
    font-stretch: condensed;
    margin-bottom: 0px;
}

.font_45 {
    font-size: 45px;
    color: white;
}

.content_init2 {
    width: 100%;
    font-size: 22px;
    grid-column: 1/2;
    grid-row: 2/2;
    color: white;
    display: flex;
    justify-content: start;
}

.content_init2 p {
    font-size: 22px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.23;
    letter-spacing: 0.44px;
    color: #ffffff;
}

.price {
    border-right: 1px solid #797777;
}

.price p {
    margin-bottom: 0;
}

.price2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.price2 p {
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.26px;
    color: #ffffff;
    margin-bottom: 9px;
    text-align: start;
}

.price2 p:last-of-type {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 9px;
    float: left;
}

.container_star {
    font-size: 9px;
}


/* SECTION NEW PRODUCTS */

.section2 {
    width: 100%;
    margin: 30px auto 0px auto;
}

.section2_content_button {
    display: none;
}

.container_ul_section1 {
    width: 100%;
    padding: 0px 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 10px;
}

.container_ul_section1 ul li a {
    font-size: 16px;
    margin-right: 30px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 2.28;
    letter-spacing: normal;
    color: #222222 !important;
    line-height: 45px;
    padding-bottom: 20px;
}

.dropdown-divider {
    margin: 0px;
}

.container_ul_section1 ul li {
    line-height: 45px;
}

.container_ul_section1 ul li a:hover {
    text-decoration: none;
    border-bottom: 3px solid #63165f;
}

.content_list {
    width: auto;
}

.contenido_button {
    width: 30%;
    display: flex;
    justify-content: flex-end;
}

.container_ul_section1 ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 0px;
}

.contenido_button button {
    width: 37px;
    height: 37px;
    border-radius: 2px;
    border: solid 1px #e5e5e5;
    background-color: rgba(64, 141, 228, 0);
    color: #777777;
    margin-right: 9px;
}

.contenido_button button:last-of-type {
    margin-right: 0px;
}

.grid_products {
    display: grid;
    width: 93%;
    margin: 0x 0px auto auto;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 426px;
}

.card_product {
    position: relative;
    border-radius: 20px;
    background-color: #f1304b;
    margin-right: 25%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.text_price button {
    display: none;
}

.card_header {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 28px;
}

.discount {
    width: 79px;
    height: 31px;
    box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.16);
    background-color: #ffffff;
    border-radius: 0px 5px 5px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.discount span {
    font-size: 13px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.15;
    letter-spacing: normal;
    text-align: center;
    color: #f1304b;
}

.content_info {
    width: 70%;
}

.content_heart {
    width: 20%;
}

.content_info p {
    font-size: 13px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.15;
    letter-spacing: normal;
    text-align: left;
    color: #ffffff;
    padding: 17px 0px 10px 19px;
    margin-bottom: 0px;
}

.content_stars {
    margin-left: 19px;
}

.content_stars svg {
    font-size: 12px;
}

.content_stars span {
    font-size: 11px;
    color: white;
}

.content_price p {
    font-size: 18px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 0.89;
    letter-spacing: normal;
    color: #ffffff;
    display: inline-block;
    margin-right: 10px;
}

.content_price span {
    font-size: 9px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 0.89;
    letter-spacing: normal;
    color: #c1c1c1;
    /* text-decoration: line-through; */
}

.content_image {
    position: absolute;
    top: 36%;
    right: -40%;
    max-width: 110%;
    padding: 20px;
}

.content_image img {
    width: 100%;
}

.content_image2 {
    position: absolute;
    top: 30%;
    right: -30%;
    max-width: 110%;
}

.content_image2 img {
    width: 100%;
}

.content_shop {
    width: 56px;
    height: 53px;
    border-radius: 10px;
    box-shadow: 0 3px 21px 0 rgba(0, 0, 0, 0.16);
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px 0px 15px 18px;
}

.card_header2 {
    margin-top: 30px;
}

.img_big {
    grid-column: 2/2;
    grid-row: 1/4;
}

.bg_black {
    background-color: #010101 !important;
}

.bg_orange {
    background-color: #ee4824 !important;
}


/* SECTION 3 */

.section3 {
    width: 100%;
    margin: 30px auto 0px auto;
}

.content_nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.content_title {
    width: 30%;
}

.content_title h2 {
    margin-bottom: 0px;
}

.content_navegation {
    width: auto;
}

.content_navegation ul {
    display: flex;
    flex-direction: row;
    list-style: none;
    justify-content: space-around;
    margin-bottom: 0px;
}

.content_navegation ul li a {
    border-radius: 15px;
    padding: 6px 15.2px;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 0.35px;
    color: #545454;
    border: 1px solid transparent;
    margin-right: 8px;
}

.content_navegation ul li:first-child a {
    border: solid 1px #63165f;
}

.content_navegation ul li a:hover {
    border: solid 1px #63165f;
    text-decoration: none;
}

.grid_section3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    margin-top: 50px;
}

.box1 {
    grid-column: 1/1;
    grid-row: 1/3;
    border: solid 1px #e5e5e5;
    background-color: #63165f;
    border-radius: 15px;
}

.imagen_hover {
    position: relative;
}

.icons_hover {
    width: 100%;
    height: 100%;
    display: none;
    position: absolute;
}

.imagen_hover:hover>.icons_hover {
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0px;
}

.icons_hover ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    margin-bottom: 0px;
}

.icons_hover ul li {
    width: 30px;
    height: 30px;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    background-color: #ffffff;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 16px;
    cursor: pointer;
}

.icons_hover ul li:last-of-type {
    margin-right: 0px;
}

.icons_hover ul li img {
    width: 100%;
    margin: auto;
}

.content_imagen {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.content_text_box1 {
    margin-top: 41px;
    text-align: center;
}

.content_text_box1 p,
.content_text_box1 span {
    font-size: 16px !important;
    font-weight: 500 !important;
    font-stretch: normal !important;
    font-style: normal !important;
    letter-spacing: normal !important;
    text-align: center !;
    color: #ffffff !important;
    margin-bottom: 0px !important;
}

.content_text_box1 span {
    font-size: 13px;
    color: #f5f5f5;
}

.content_stars_box1 {
    margin-top: 30px;
    text-align: center;
}

.content_stars_box1 svg {
    font-size: 18px;
}

.content_stars_box1 span {
    font-size: 14px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #ffffff;
}

.box1 p {
    font-size: 20px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-align: center;
    color: #ffffff;
    margin-top: 15px;
}

.card_home img {
    display: block;
    margin: 0px auto 19px auto;
    object-fit: contain;
}

.card_home_text {
    width: 90%;
    margin: 0px auto 20px auto;
    padding-top: 15px;
    border-top: 1px solid #e5e5e5;
}

.card_home_text p {
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.25;
    letter-spacing: normal;
    text-align: center;
    color: #262626;
}

.content_star_home {
    margin-top: 7px;
    text-align: center;
}

.content_star_home span {
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #545454;
}

.content_price_home {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.content_price_home p {
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #fc3e39;
    margin-right: 10px;
    margin-bottom: 0px;
}

.content_price_home span {
    color: #545454;
    /*  text-decoration: line-through; */
}


/* SECTION 4 */

.section4 {
    width: 100%;
    margin: auto;
    margin-top: 30px;
}

.grid_section4 {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin: auto;
    border-radius: 16px;
    border: solid 1px #f7f7f7;
    background-color: #ffffff;
    margin-bottom: 0px;
}

.content_info_section4 {
    width: auto;
    padding: 23px 0px 30px 0px;
    max-width: 53%;
}

.content_info_section4 h3 {
    font-size: 44px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.18;
    letter-spacing: 1px;
    text-align: left;
    color: #333333;
}

.content_info_section4 p {
    opacity: 0.83;
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.62;
    letter-spacing: 0.41px;
    text-align: left;
    color: #333333;
    margin-bottom: 0px;
}

.content_price_section4 span {
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: normal;
    text-align: left;
    color: #c1c1c1;
    display: inline-block;
    margin-right: 5px;
    vertical-align: super;
}

.content_price_section4 p {
    font-size: 36px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #f1304b;
    display: inline-block;
}

.stars_section4 {
    margin-top: 11px;
    display: flex;
    align-items: center;
}

.stars_section4 span {
    font-size: 11px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #545454;
    vertical-align: middle;
}

.slider_section {
    display: none;
}

.stars_section4 svg {
    margin-right: 5px;
}

.button_section4 {
    margin-top: 26px;
}

.button_section4 a:first-child {
    width: 140px;
    height: 50px;
    border-radius: 3px;
    border: solid 1px #63165f;
    background: white;
    color: #2e3871;
    font-size: 14px;
    margin-right: 10px;
}

.button_section4 a {
    padding: 10px 15px;
}

.button_section4 a:last-child {
    width: 140px;
    height: 50px;
    border-radius: 5px;
    background-color: #63165f;
    color: #ffffff;
    font-size: 14px;
    border: none;
}

.content_image_section4 {
    width: 65%;
    margin: 30px 0px 55px 37px;
    border-radius: 8px;
    border: solid 1px rgba(112, 112, 112, 0.54);
    position: relative;
    margin-right: 60px;
    overflow: hidden;
    height: 50%;
}

.content_image_section4 .image_laptop {
    width: 110%;
    position: absolute;
    transform: translateX(-11%) translateY(-12%);
}

.point {
    width: 100%;
    display: flex;
}


/* .content_image_section4::before {
    content: "";
    width: 6px;
    height: 6px;
    background-color: #2e3871;
    position: absolute;
    bottom: 30px;
    right: 50%;
    border-radius: 50%;
}

.content_image_section4::after {
    content: "";
    width: 6px;
    height: 6px;
    background-color: #2e3871;
    position: absolute;
    bottom: 30px;
    right: 45%;
    border-radius: 50%;
} */

.grilla_5 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 248px;
    grid-column-gap: 44px;
    /* justify-content: space-between; */
    margin-bottom: 73px;
    /* width: 100%; */
    margin: auto;
    margin-top: 50px;
    margin-bottom: 50px;
}

.section5 {
    width: 100%;
    margin: 30px auto 0;
}

.card_section5 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    overflow: hidden;
    border-radius: 8px;
    border: solid 1px #f7f7f7;
    background-color: #f7f7f7;
}

.bg_color_red {
    background-color: #f1304b !important;
}

.info_card_section5 {
    width: 40%;
    margin: 25px 0px 43px 33px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.info_card_section5 h3 {
    font-size: 30px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #000000;
    margin-bottom: 21px;
}

.info_card_section5 p {
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #000000;
}

.info_card_section5 button {
    width: 130px;
    height: 40px;
    border-radius: 19.5px;
    border: solid 1px #000000;
    background-color: rgba(0, 0, 0, 0);
    color: #000000;
    font-size: 12px;
}

.img_card_section5 {
    width: auto;
    margin: auto;
}

.img_card_section5 img {
    display: block;
    margin: auto;
}

.grilla_R {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 600px;
    grid-column-gap: 32px;
    /* justify-content: space-between; */
    margin-bottom: 73px;
    /* width: 100%; */
    margin: auto;
    margin-top: 50px;
    margin-bottom: 50px;
}

.sectionR {
    width: 100%;
    margin: 30px auto 0;
}

.card_sectionR {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    overflow: hidden;
    border-radius: 8px;
    border: solid 1px #f7f7f7;
    background-color: #f7f7f7;
    align-items: center;
    justify-content: center;
    position: relative;
}

.bg_color_red {
    background-color: #f1304b !important;
}

.info_card_sectionR {
    width: 40%;
    margin: 25px 0px 43px 33px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.info_card_sectionR h3 {
    font-size: 30px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #000000;
    margin-bottom: 21px;
}

.info_card_sectionR p {
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #000000;
}

.info_card_sectionR button {
    width: 130px;
    height: 40px;
    border-radius: 19.5px;
    border: solid 1px #000000;
    background-color: rgba(0, 0, 0, 0);
    color: #000000;
    font-size: 12px;
}

.img_card_sectionR {
    width: auto;
    margin: auto;
}

.img_card_sectionR img {
    display: block;
    margin: auto;
}

.video_card_sectionR {
    position: absolute;
    z-index: 3;
    width: -webkit-fill-available;
    height: -webkit-fill-available;
}

.youtube-box-thumbnail {
    position: relative;
    width: 444px;
    height: 300px;
}

.youtube-box-thumbnail img {
    display: none;
}

.youtube-box-thumbnail iframe {
    z-index: 1;
}

.youtube-boxR {
    position: relative;
    width: 350px;
    height: 580px;
}

.youtube-boxR img {
    display: none;
}

.youtube-boxR iframe {
    z-index: 1;
}

.container-thumbnail {
    align-items: center;
    position: relative;
    z-index: 5;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-content: center;
    display: flex;
}

.youtube-thumbnailR {
    display: block !important;
    position: absolute;
    top: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.youtube-button {
    z-index: 11;
    position: absolute;
    border: none;
    outline: none;
    background: transparent;
}

.youtube-button-svg {
    width: 70px;
    height: 50px;
    outline: none;
    background: transparent;
}

.youtube-button :focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.youtube-button-svg :focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

@media print {
    .youtube-thumbnailR {
        display: block !important;
        position: absolute;
        top: 0;
        z-index: 10;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.context_text {
    display: flex;
    margin-right: 29px;
}

.context_text p {
    width: 60%;
    color: #ffffff !important;
}

.context_text button {
    border-radius: 19.5px;
    border: solid 1px #ffffff;
    background-color: rgba(0, 0, 0, 0);
    color: white;
}

.image_card_2 img {
    display: block;
    margin-left: 71px;
}

.content_imagen_3 {
    width: 80%;
    margin: auto;
    position: relative;
}

.content_imagen_3 img {
    display: block;
    margin-top: -95px;
}

.content_imagen_3 h3 {
    position: absolute;
    bottom: 0px;
}

.container_text {
    display: flex;
    flex-direction: row;
}

.container_text p {
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: normal;
    text-align: left;
    color: #8a8a8a;
    margin-left: 31px;
    margin-top: 5px;
    width: 38%;
}

.container_text button {
    width: 150px;
    height: 40px;
    border-radius: 19.5px;
    border: solid 1px #c3c3c3;
    background-color: rgba(0, 0, 0, 0);
    color: #252525;
    font-size: 12px;
    margin-top: 8px;
}


/* SECTION 6 */

.section6 {
    width: 84%;
    margin: auto;
}

.section6 h2 {
    font-size: 30px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #222222;
    margin-bottom: 10px;
}

.grid_section6 {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, 296px);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 116px;
    grid-row-gap: 60px;
    margin: auto 0px 57px auto;
}

.card_section6 {
    border-radius: 20px;
    border: solid 1px #e2e2e2;
    background-color: #ffffff;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    padding: 20px;
}

.container_info_6 {
    width: 100%;
    flex-direction: column;
    align-items: flex-end;
    text-align: end;
}

.discount_section6 {
    width: 65px;
    height: 26px;
    border-radius: 4px;
    box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.16);
    background-color: #f1e330;
    font-size: 10px;
    color: white;
    text-align: center;
    margin-bottom: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-right: 0px; */
    margin-left: auto;
}

.content_text_6 p {
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.13;
    letter-spacing: normal;
    text-align: right;
    color: #444444;
}

.calification {
    margin-bottom: 12px;
}

.calification svg {
    font-size: 13px;
}

.calification span {
    font-size: 8px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #545454;
    vertical-align: middle;
}

.price_section6 p,
.price_section6 span {
    margin-bottom: 0px;
    display: inline-block;
    margin-right: 10px;
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #f1304b;
    margin-bottom: 17px;
}

.price_section6 span {
    color: #a7a7a7;
    margin-right: 0px;
}

.button_viewmore {
    padding: 8px;
    margin: 3px;
    color: white;
    font-size: 12px;
    width: 108px;
    height: 36px;
    border-radius: 3px;
    background-color: white;
    border-color: #63165f;
    color: black;
    float: right;
}

.button_viewmore:hover {
    background-color: #63165f;
    color: white !important;
}

.button_purple {
    width: 108px;
    height: 36px;
    border-radius: 3px;
    background-color: #63165f;
    color: white;
    font-size: 10px;
    border: none;
}

.button_heart {
    width: 36px;
    height: 36px;
    border-radius: 3px;
    border: solid 1px #63165f;
    background: white;
    text-align: center;
}

.button_heart svg {
    margin-right: 0px;
}

.border_image {
    border-radius: 10px;
    padding: 10px;
    background: #f0f0f0;
    margin-top: 57px;
    margin-bottom: 61px;
}

.border_image img {
    display: block;
    width: 100%;
}


/* SECTION BANNER */

.section_banner {
    width: 80%;
    margin: auto;
}


/* SECTION 7 */

.section7 {
    width: 84%;
    margin: auto;
}

.section7 h2 {
    font-size: 30px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #222222;
    margin-bottom: 10px;
}

.grid_section7 {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, 286px);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 107px;
    grid-row-gap: 60px;
    margin: auto 0px 57px auto;
}

.card_section7 {
    border-radius: 20px;
    border: solid 1px #e2e2e2;
    background-color: #ffffff;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    padding: 20px;
}

.contenedor_img {
    /* width: 30%; */
    /* display: flex; */
    /* align-items: center; */
    position: absolute;
    /* max-width: 100%; */
    top: 38%;
    left: -18%;
    max-width: 100%;
}

.container_info_7 {
    width: 100%;
    flex-direction: column;
    align-items: flex-end;
    text-align: end;
}

.discount_section7 {
    width: 65px;
    height: 26px;
    border-radius: 4px;
    box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.16);
    background-color: #f1e330;
    font-size: 10px;
    color: white;
    text-align: center;
    margin-bottom: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-right: 0px; */
    margin-left: auto;
}

.content_text_7 p {
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.13;
    letter-spacing: normal;
    text-align: right;
    color: #444444;
}

.calification {
    margin-bottom: 12px;
}

.calification svg {
    font-size: 13px;
}

.calification span {
    font-size: 8px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #545454;
    vertical-align: middle;
}

.price_section7 p,
.price_section7 span {
    margin-bottom: 0px;
    display: inline-block;
    margin-right: 10px;
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #f1304b;
    margin-bottom: 17px;
}

.price_section7 span {
    color: #a7a7a7;
    margin-right: 0px;
}

.button_purple {
    width: 108px;
    height: 36px;
    border-radius: 3px;
    background-color: #63165f;
    color: white;
    font-size: 10px;
    border: none;
}

.button_heart {
    width: 36px;
    height: 36px;
    border-radius: 3px;
    border: solid 1px #63165f;
    background: white;
    text-align: center;
}

.button_heart svg {
    margin-right: 0px;
}

.border_image {
    border-radius: 10px;
    padding: 10px;
    background: #f0f0f0;
    margin-top: 57px;
    margin-bottom: 61px;
}

.border_image img {
    display: block;
    width: 100%;
}


/* SECTION 8 */

.section8 {
    width: 100%;
    margin: 101px auto 111px auto;
}

.grilla_7 {
    display: flex;
    flex-direction: row;
    margin: auto;
    height: 100%;
    justify-content: space-between;
    height: 244px;
}


/* CARD1 */

.card1 {
    width: 30%;
    /* padding: 24px 0px; */
    /* border: solid 1px rgba(99, 22, 95, 0.17); */
    /* background-color: #f7f7f7; */
    /* border-radius: 6px; */
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    position: relative;
}

.content_image_8 {
    position: absolute;
    top: 50%;
    left: -5%;
}

.card_header8 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card_header8 p {
    margin-bottom: 0px;
    font-size: 14px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: 0.07px;
    color: #2d2d2d;
}

.card_header8 img {
    margin-bottom: 10px;
}


/* CARD2 */

.card2 {
    width: 30%;
    border-radius: 6px;
    box-shadow: 0 0 25px 0 rgba(226, 233, 255, 0.65);
    background-color: #f1304b;
    padding: 20px 13px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
}

.content_img_card2 {
    width: 38%;
    text-align: center;
}

.content_img_card2 p {
    font-size: 14px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: 0.07px;
    text-align: center;
    color: #ffffff;
    margin-top: -10px;
}

.content_img {
    width: 50%;
    position: absolute;
    top: 20%;
    right: 45%;
}


/* CARD3 */

.card3 {
    width: 30%;
    border: 1px solid #b5b5b5;
    border-radius: 6px;
    padding: 14px 24px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.content_info_card3 {
    width: 35%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content_info_card3 p {
    font-size: 14px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.14;
    letter-spacing: 0.07px;
    color: #000000;
    margin-bottom: 17px;
    margin-left: 21.8px;
}

.content_image_card3 {
    width: 50%;
    position: relative;
}

.content_image_card3 img:first-child {
    position: absolute;
    z-index: 2;
    right: 22px;
}

.content_image_card3 img:last-child {
    position: absolute;
    z-index: 1;
    right: -45px;
}

.content_text_card3 {
    margin-bottom: 17px;
}

.content_text_card3 span {
    font-size: 11px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: 0.06px;
    color: #989898;
    margin-bottom: 2px;
}

.content_text_card3 p {
    font-size: 14px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: 0.07px;
    color: #000000;
    margin-bottom: 0px;
    text-align: start;
    margin-left: 0px;
}

.content_info_card3 button {
    width: 83px;
    height: 33px;
    background-color: #333333;
    border: none;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.06px;
    text-align: center;
    color: #e3ee6d;
}


/* SECTION 9 */

.section9 {
    width: 85%;
    margin: auto;
}

.section9 h2 {
    font-size: 30px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #222222;
    margin-bottom: 42px;
    margin-left: 7px;
}

.grilla_9 {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    margin-bottom: 158px;
}

.card_section9 {
    width: 30%;
    border-radius: 5px;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    background-color: #ffffff;
    height: 100%;
}

.contenedor_iamgen_section9 img {
    width: 100%;
}

.contenedor_info_section9 {
    padding: 25px 25px 30px 16px;
}

.contenedor_info_section9 h3 {
    font-size: 24px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: normal;
    text-align: left;
    color: #222222;
    width: 80%;
    margin-bottom: 10px;
}

.contenedor_info_section9 span {
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    text-align: left;
    color: #8a8a8a;
    margin-bottom: 20px;
    width: 80%;
    display: block;
}

.contenedor_info_section9 p {
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    text-align: left;
    color: #545454;
    margin-bottom: 18px;
}

.contenedor_info_section9 button {
    display: block;
    margin: auto;
    width: 121px;
    height: 37px;
    border-radius: 19.5px;
    border: solid 1px #63165f;
    background-color: rgba(0, 0, 0, 0);
    font-size: 16px;
    color: #252525;
}


/* FOOTER */

.footer-list ul {
    padding: 0px;
    list-style: none;
}

.footer-list ul li {
    margin-bottom: 8px;
}

.footer-list h3 {
    font-size: 20px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 0.85;
    letter-spacing: normal;
    color: #282828;
    margin-bottom: 25px;
}

.footer-list p {
    font-size: 14px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.53;
    letter-spacing: normal;
    color: #7b7d7f;
}

.footer-list ul li a {
    font-size: 15px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.53;
    letter-spacing: normal;
    color: #7b7d7f;
}

.redes-sociales-footer {
    display: flex;
    width: 77%;
    margin: auto;
    padding: 15px 12px !important;
}

.redes-sociales-footer li {
    background-color: #fff8ff;
    height: 25px;
    width: 25px;
    margin-right: 14px;
    text-align: center;
    color: #63165f;
    border: 1px solid #63165f;
}

.footer-info {
    background-color: #ffffff;
    width: 100%;
}

.footer-info h3 {
    font-size: 33px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 0.52;
    letter-spacing: normal;
    color: #282828;
    margin-bottom: 25px;
}

.footer-info p {
    font-size: 15px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.13;
    letter-spacing: normal;
    text-align: left;
    color: #282828;
}

.newsletter {
    background-color: #63165f;
    width: -webkit-fill-available;
}

.newsletter-title {
    font-size: 25px;
}

.newsletter-check {
    font-size: 15px;
}

.row-newsletter {
    width: 100%;
}

.newsletter-height {
    height: 50px;
}

.newsletter h3 {
    /* font-size: 33px; */
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 0.52;
    letter-spacing: normal;
    color: #ffffff;
    margin-bottom: 25px;
}

.newsletter p {
    font-size: 15px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.13;
    letter-spacing: normal;
    text-align: left;
    color: #ffffff;
}

.input-newsletter {
    align-self: baseline;
}

.newsletter-slogan {
    display: block;
}

.input-newsletter input {
    height: 41px;
    border-radius: 30px;
    font-size: 12px;
    background-color: #ffffff;
    width: 263px !important;
}

.btn-suscribe {
    height: 41px;
    border-radius: 30px;
    background-color: #63165f;
    border-top-left-radius: 30px !important;
    border-bottom-left-radius: 30px !important;
    color: #ffffff;
    border: 1px solid transparent;
    position: relative;
    z-index: 9999;
}

.btn-suscribe:hover {
    background-color: #63165f;
    border: 1px solid #791e75d4;
}

.input-group-append {
    margin-left: -30px;
}

@media screen and (max-width: 360px) {}


/*===========================================*/


/* RWD - HOMEPAGE */

@media (min-width: 1440px) {
    .grid_products {
        width: 90%;
    }
    /* .section7 h2,
  .section6 h2 {
    margin-left: 70px;
  } */
    .grid_section6 {
        display: grid;
        width: 95%;
        grid-template-columns: repeat(3, 305px);
        justify-content: center;
        grid-column-gap: 160px;
    }
    .grid_section7 {
        display: grid;
        width: 95%;
        grid-template-columns: repeat(3, 305px);
        justify-content: center;
        grid-column-gap: 71px;
    }
    .grilla_5 {
        grid-template-columns: repeat(3, 356px);
        justify-content: center;
        grid-column-gap: 25px;
    }
    .container_width2 {
        width: 100%;
        margin: auto;
        overflow-x: scroll;
        overflow-y: hidden;
    }
    .content_image_8 {
        position: absolute;
        top: 50%;
        left: 2%;
    }
    .content_img {
        width: 50%;
        position: absolute;
        top: 20%;
        right: 30%;
    }
    .content_image_section4 .image_laptop {
        transform: translateX(-11%) translateY(-20%);
    }
}

@media (max-width: 1380px) {
    .container_width2 {
        width: 100%;
    }
}

@media (max-width: 1280px) {
    .grid_section4 {
        display: flex;
        flex-direction: row;
        width: 100%;
    }
    .container_width2 {
        width: 100%;
    }
}

@media (max-width: 1200px) {
    /* HEADER */
    /* SECTION 1 */
    .grilla_init {
        margin-right: 93px;
    }
    /* SECTION 2 */
    .container_width2 {
        width: 100%;
        margin: 62px auto 62px auto;
    }
    .content_list {
        width: 43.3%;
    }
    .grid_products {
        grid-template-rows: 380px;
    }
    /* SECTION 3 */
    .section3 {
        width: 90%;
        margin: 139px auto 62px auto;
    }
    /* SECTION 4 */
    .section4 {
        width: 90%;
        margin: auto;
        margin-top: 170px;
    }
    .grid_section4 {
        display: flex;
        flex-direction: row;
        width: 100%;
    }
    /* SECTION 5 */
    .grilla_5 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 248px;
        justify-content: space-between;
        margin-bottom: 73px;
        width: 99%;
    }
    /* SECTION 6 */
    .section6 {
        width: 90%;
        margin: auto;
    }
    .grid_section6 {
        grid-template-columns: repeat(3, 265px);
    }
    /* SECTION 7 */
    .section7 {
        width: 90%;
        margin: auto;
    }
    .grid_section7 {
        grid-template-columns: repeat(3, 265px);
    }
    /* SECTION 8 */
    .section8 {
        width: 90%;
        margin: 101px auto 111px auto;
    }
    .grilla_7 {
        display: grid;
        grid-template-columns: repeat(3, 310px);
    }
    .card1,
    .card2,
    .card3 {
        width: 100%;
    }
    .section9 {
        width: 90%;
        margin: auto;
    }
    .container_icon {
        width: auto;
    }
    .container_cart {
        transform: translateX(-25%);
    }
    /* FOOTER */
    .redes-sociales-footer {
        width: 98% !important;
    }
}

@media (max-width: 1080px) {
    /* SECTION 1 */
    .init {
        height: 100%;
    }
    .grilla_init {
        margin-bottom: 65px;
        width: 82%;
    }
    /* SECTION 2 */
    .content_list {
        width: auto;
    }
    .container_ul_section1 ul li a {
        font-size: 16px;
        margin-right: 30px;
    }
    .grid_products {
        width: 97%;
        grid-template-columns: repeat(3, 1fr);
    }
    /* SECTION 3 */
    .grid_section3 {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }
    .content_navegation {
        width: 60%;
    }
    .content_image_section4 .image_laptop {
        transform: translateX(-12%) translateY(-27%);
        width: 114%;
    }
    .content_info_section4 h3 {
        font-size: 38px;
    }
    .content_info_section4 p {
        font-size: 14px;
    }
    .content_price_section4 span {
        font-size: 15px;
    }
    .content_price_section4 p {
        font-size: 30px;
    }
    .stars_section4 {
        margin-top: 6px;
    }
    .button_section4 {
        margin-top: 23px;
    }
    /* SECTION 4 */
    .info_card_section5 {
        width: 37%;
    }
    .grilla_5 {
        overflow-x: scroll;
        grid-template-columns: repeat(3, 356px);
    }
    .grid_section6 {
        grid-template-columns: repeat(2, 280px);
        justify-content: space-around;
    }
    .grid_section7 {
        grid-template-columns: repeat(2, 280px);
        justify-content: space-around;
    }
    /* SECTION 5 */
    /* SECTION 6 */
    /* SECTION 7 */
    .grilla_7 {
        overflow-y: hidden;
        overflow-x: scroll;
        grid-column-gap: 50px;
    }
    /* SECTION 8 */
    /* SECTION 9 */
    .contenedor_info_section9 h3 {
        font-size: 18px;
        width: 100%;
    }
    .contenedor_info_section9 span {
        font-size: 13px;
    }
    .contenedor_info_section9 p {
        font-size: 13px;
    }
    .contenedor_info_section9 button {
        font-size: 13px;
    }
    /* HEADER */
    .container_icon {
        width: 28%;
    }
    .container_cart {
        transform: translateX(-25%);
    }
    /* FOOTER */
    .redes-sociales-footer {
        width: 30% !important;
    }
}

@media (max-width: 960px) {
    /* HEADER */
    .container_header {
        width: 100%;
    }
    .container_cart {
        transform: translateX(-35%);
    }
    .container_logo {
        width: 90%;
    }
    .container_icon {
        width: 27%;
    }
    .container_nav {
        width: 90%;
    }
    .fa-heart,
    .fa-user {
        margin-right: 30px;
    }
    /* SECTION 1 */
    .grilla_init {
        width: 84%;
    }
    /* SECTION 2 */
    .grid_products {
        width: 97%;
        grid-template-columns: repeat(3, 1fr);
    }
    .content_image {
        position: absolute;
        top: 27%;
        right: -45%;
        max-width: 110%;
    }
    .content_image2 {
        position: absolute;
        top: 34%;
        right: -30%;
        max-width: 110%;
    }
    .redes-sociales {
        display: flex;
        align-items: center;
        justify-content: center;
        padding-left: 0px !important;
    }
    .text-reserved p {
        display: none;
    }
    .flex_footer {
        width: 100%;
    }
    .redes-sociales-footer {
        width: 26% !important;
    }
}

@media (max-width: 768px) {
    .init {
        display: none;
    }
    .grilla_init {
        width: 84%;
        margin: 50px auto;
    }
    .container_header {
        display: none !important;
    }
    .carousel-indicators li {
        width: 4px !important;
        height: 5px !important;
        border-radius: 50% !important;
    }
    .slider_section {
        display: block;
        background-color: #63165f;
    }
    .info_footer {
        width: 50%;
        margin: auto;
    }
    .content_footer {
        margin-top: 0px !important;
        width: 50% !important;
    }
    .content_footer h3 {
        font-size: 20px;
    }
    .flex_footer {
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        background-color: #63165f;
        color: white;
    }
    .flex_footer ul li a {
        color: white;
    }
    .contenedor_all_footer {
        padding: 0px !important;
    }
    .section-email {
        display: none;
    }
    .contenedor_img {
        /* width: 30%; */
        /* display: flex; */
        /* align-items: center; */
        position: absolute;
        /* max-width: 100%; */
        top: 19%;
        left: -28%;
        max-width: 100%;
    }
    .contenedor_img img {
        width: 80%;
    }
    .contenedor_rwd {
        max-width: 100% !important;
    }
    .py-5 {
        padding-bottom: 0px !important;
    }
    .footer {
        background-color: #ffffff;
    }
    .flex_footer {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .text_rwd_footer {
        margin-top: 20px !important;
    }
    /* PUSHBAR */
    .pushbar-menu {
        border-radius: 5px 5px 0px 0px;
    }
    .btn_close {
        width: 100%;
        background: #63165f;
        border-radius: 5px 5px 0px 0px;
        padding: 20px 38px 20px 30px;
        display: flex;
        justify-content: space-between;
    }
    .btn_close p {
        font-size: 12px;
        font-weight: 500;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.75;
        letter-spacing: normal;
        text-align: left;
        color: #ffffff;
        margin-bottom: 0px;
    }
    .btn_close svg {
        font-size: 20px;
        font-weight: 500;
        color: #ffffff;
    }
    .category_rwd ul li {
        display: flex;
        justify-content: space-between;
        margin: 0px 30px;
        padding: 15px 0px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.16);
    }
    .category_rwd ul li a {
        color: black !important;
        font-weight: 500;
        font-size: 14px;
    }
    /* FINALIZA AQUI */
    .container_nav {
        flex-direction: column;
    }
    .menu_container {
        width: auto;
        display: block;
        margin: 25px 0px;
    }
    .container_ul_section1 ul li a {
        font-size: 13px;
    }
    .grid_products {
        grid-column-gap: 66px;
        overflow-x: scroll;
        grid-template-rows: 310px;
        grid-template-columns: repeat(3, 200px);
    }
    .card_product {
        margin-right: 0px;
    }
    .content_image img {
        left: 100px;
    }
    .content_image2 img {
        left: 76px;
    }
    .content_shop {
        width: 36px;
        height: 36px;
    }
    .content_shop svg {
        font-size: 17px !important;
    }
    .card_header svg {
        font-size: 20px !important;
    }
    .card_header2 svg {
        font-size: 12px !important;
    }
    .content_heart svg {
        font-size: 20px !important;
    }
    .content_image {
        height: 200px;
    }
    /* SECTION 3 */
    .box1 {
        display: none;
    }
    .grid_section3 {
        grid-template-columns: repeat(3, 1fr);
    }
    /* SECTION 4 */
    .section4 {
        margin-top: 80px;
    }
    .content_image_section4 .image_laptop {
        transform: translateX(-8%) translateY(-8%);
    }
    .content_navegation {
        width: 67%;
    }
    .content_info_section4 {
        width: 100%;
        padding: 23px 0px 30px 0px;
        text-align: center;
    }
    .content_navegation ul li a {
        font-size: 12px;
    }
    .grid_section4 {
        width: 80%;
        height: 50%;
        flex-direction: column;
        margin: auto;
    }
    .content_image_section4::before {
        display: none;
    }
    .content_image_section4::after {
        display: none;
    }
    .imagenplay {
        display: none;
    }
    .content_image_section4 {
        width: 80%;
        height: 250px;
    }
    .content_info_section4 h3 {
        font-size: 30px;
        text-align: center;
    }
    .content_info_section4 p {
        font-size: 12px;
        text-align: center;
    }
    .content_price_section4 span {
        font-size: 11px;
    }
    .content_price_section4 p {
        font-size: 22px;
    }
    .stars_section4 {
        justify-content: center;
        margin-top: 6px;
    }
    .button_section4 button:first-child {
        font-size: 12px;
    }
    .button_section4 button:last-child {
        font-size: 12px;
    }
    .grid_section6 {
        grid-template-columns: repeat(2, 250px);
    }
    .grid_section6 {
        grid-column-gap: 85px;
    }
    .grid_section7 {
        grid-template-columns: repeat(2, 250px);
    }
    .grid_section7 {
        grid-column-gap: 85px;
    }
    .discount_section7 {
        margin-bottom: 10px;
    }
    .content_text_6 p {
        margin-bottom: 7px;
    }
    .content_text_7 p {
        margin-bottom: 7px;
    }
    .price_section6 p,
    .price_section6 span {
        margin-bottom: 9px !important;
    }
    .price_section7 p,
    .price_section7 span {
        margin-bottom: 9px !important;
    }
    .content_text_6 p {
        font-size: 13px;
    }
    .content_text_7 p {
        font-size: 13px;
    }
    .grilla_9 {
        flex-direction: column;
        margin-bottom: 70px;
    }
    .card_section9 {
        width: 50%;
        margin: 30px auto;
    }
    .section9 {
        margin-top: 80px;
    }
    .section8 {
        display: none;
    }
    .section5 {
        display: none;
    }
    /* HEADER */
    .container_hamburger_rwd {
        display: block;
    }
    .content_logo img {
        margin-left: 0px !important;
    }
    .content_logo {
        margin-left: 0px !important;
    }
    .container_icon {
        width: auto;
    }
    .container_icon svg:first-child {
        display: none !important;
    }
    .container_icon svg:nth-child(2n) {
        display: none !important;
    }
    .inputsearch {
        display: none !important;
    }
    .content_hamburguer {
        background: none;
        border: none;
        border-radius: 0px;
        background-color: white !important;
    }
    .container_logo {
        justify-content: space-between !important;
    }
    .container_cart {
        transform: translateX(-42%);
    }
    .containermenu {
        display: none;
    }
    .container_search_rwd {
        width: 100%;
        margin: auto;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    .container_category_rwd {
        width: 30%;
        display: flex;
        align-items: center;
    }
    .from_search {
        width: 70%;
        position: relative;
    }
    .from_search input {
        width: 100%;
        height: 40px;
        border-radius: 7px;
        box-shadow: 0 2px 33px 0 rgba(114, 49, 49, 0.03);
        border: none;
        border: solid 1px #63165f;
        background-color: #ffffff;
        padding-left: 40px;
    }
    .from_search button {
        width: 20px;
        height: 20px;
        position: absolute;
        left: 13px;
        background: none;
        background-image: url(/img/icons/search.svg);
        background-repeat: no-repeat;
        border: none;
        bottom: 10px;
    }
    .container_category_rwd button {
        width: 75px;
        height: 40px;
        border-radius: 7px;
        background-color: #63165f;
        border: none;
        font-size: 10px;
        font-weight: 500;
        font-stretch: normal;
        font-style: normal;
        letter-spacing: normal;
        text-align: center;
        color: #ffffff;
        padding-left: 13px;
        text-align: left;
    }
    .container_category_rwd button span {
        display: block;
        text-align: left;
        font-size: 6px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        letter-spacing: normal;
        color: #ffffff;
    }
    /* FOOTER */
    .redes-sociales-footer {
        width: 41% !important;
    }
    .newsletter {
        display: none;
    }
}

@media (max-width: 540px) {
    .btn-suscribe {
        border-radius: 2px;
    }
    .input-newsletter {
        width: 90%;
    }
    .input-group-append {
        border-radius: 2px;
        margin-top: -41px;
    }
    .newsletter-title {
        font-size: 15px;
    }
    .newsletter-check {
        font-size: 9px;
    }
    .content_list {
        width: 60.3%;
    }
    .sectionrwd {
        display: block;
    }
    .section2_content_button {
        display: block;
    }
    .contenido_button {
        display: none;
    }
    .dropdown-divider {
        width: 70%;
    }
    .grilla_init {
        margin: 65px auto auto auto;
    }
    .content_init2 {
        display: none;
    }
    .font_30 {
        font-size: 18px;
    }
    .font_45 {
        font-size: 30px;
    }
    .section2_content_button {
        width: 30%;
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
    .section2_content_button button {
        width: 50px;
        height: 20px;
        border-radius: 2px;
        background-color: #63165f;
        color: white;
        font-size: 9px;
        font-weight: 500;
        border: none;
    }
    .section3 {
        margin: 62px auto 62px auto;
    }
    .content_image {
        height: 90px;
    }
    .content_image2 {
        height: 112px;
    }
    .content_nav {
        width: 100%;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        height: 40px;
    }
    .content_nav h2 {
        font-size: 16px;
    }
    .content_navegation {
        width: 70%;
        display: flex;
        align-items: center;
        overflow-x: scroll;
    }
    .content_navegation {
        width: 70%;
        display: flex;
        align-items: center;
        overflow-x: scroll;
        height: inherit;
    }
    .content_navegation ul li a {
        margin-right: 20px;
        color: black !important;
        margin-right: 15px !important;
    }
    .content_title {
        width: 30%;
        display: flex;
        align-items: center;
        height: inherit;
    }
    .grid_section3 {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 20px;
    }
    .card_home_text p {
        font-size: 12px;
        margin-bottom: 0px;
    }
    .content_star_home {
        margin-top: 0px;
    }
    .content_star_home svg {
        font-size: 10px !important;
    }
    .content_price_home p {
        font-size: 9px;
    }
    .content_price_home span {
        font-size: 9px;
    }
    .card_home img {
        margin-bottom: 0px;
    }
    .content_image_section4 .image_laptop {
        width: 112%;
    }
    .section4 {
        width: 70%;
    }
    .content_info_section4 h3 {
        color: #2e3871;
        text-align: center;
    }
    .content_info_section4 p {
        text-align: center;
        font-size: 16px;
    }
    .content_price_section4 span {
        text-align: left !important;
        font-size: 16px;
        vertical-align: middle;
    }
    .content_price_section4 p {
        text-align: left !important;
        font-size: 20px;
        color: #2e2e2e;
    }
    .stars_section4 svg {
        font-size: 9px;
        margin-right: 3px;
        color: #d85a32 !important;
    }
    .stars_section4 span {
        display: none;
    }
    .content_price_section4 {
        width: 80%;
        margin: auto;
    }
    .grid_section4 {
        width: 100%;
    }
    .content_image_section4 {
        height: 200px;
    }
    .text_price {
        display: flex;
        justify-content: space-between;
        margin-top: 9px;
    }
    .text_price button {
        display: block;
        width: 100px;
        height: 30px;
        border-radius: 3px;
        border: solid 1px #63165f;
        background-color: #ffffff;
        color: #63165f;
        font-size: 16px;
        font-weight: 500;
    }
    .btn_responsive {
        display: block;
        width: 100%;
        height: 30px;
        border-radius: 3px;
        background-color: #63165f;
        color: white;
        font-size: 14px;
        letter-spacing: -0.06px;
        border: none;
    }
    .button_section4 a:first-child {
        font-size: 12px;
        display: none;
    }
    .button_section4 a:last-child {
        font-size: 12px;
        display: none;
    }
    .grid_section7 {
        padding-left: 33px;
        overflow: scroll;
        grid-template-columns: repeat(6, 250px);
        grid-template-rows: repeat(1, 1fr);
        justify-content: flex-start;
        margin: 0px 0px 0px auto;
    }
    .section9 {
        display: none;
    }
    .section-email {
        display: none;
    }
    .container_header {
        display: none !important;
    }
    .contenedor_img {
        border-radius: 20px 0px 0px 20px;
    }
    /*  .card_section7:first-child {
        background: #dc3d3d;
    } */
    .section7 h2 {
        font-size: 15px;
        margin-bottom: 15px;
    }
    .button_purple {
        background: white;
        color: #dc3d3d;
    }
    .button_purple svg {
        color: #dc3d3d !important;
    }
    .button_heart {
        background: #dc3d3d;
        border: 1px solid white;
    }
    .button_heart svg {
        color: white !important;
    }
    /* .price_section7 p {
        color: white !important;
    } */
    .border_image {
        padding: 0px;
    }
    .imagenplay {
        display: none;
    }
    .content_image_section4::after {
        display: none;
    }
    .content_image_section4::before {
        display: none;
    }
    .contenido_button2 button {
        width: 25px;
        height: 25px;
        border-radius: 2px;
        border: solid 1px #e5e5e5;
        background-color: rgba(64, 141, 228, 0);
        color: #777777;
        margin-right: 9px;
        font-size: 9px;
    }
    .contenido_button2 {
        width: 30%;
        display: flex;
        justify-content: flex-end;
    }
    .section6 {
        display: none;
    }
    .sectionrwd {
        width: 90%;
        margin: auto;
    }
    .header_sectionrwd {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .header_sectionrwd h2 {
        margin-bottom: 0px;
        font-size: 15px;
        font-weight: 500;
        font-stretch: normal;
        font-style: normal;
        line-height: 2.33;
        letter-spacing: normal;
        text-align: left;
        color: #2c2c2c;
    }
    .btn_responsive2 {
        display: block;
        width: 60%;
        height: 30px;
        border-radius: 3px;
        background-color: #63165f;
        color: white;
        font-size: 14px;
        letter-spacing: -0.06px;
        border: none;
        margin: auto;
    }
    .section7 {
        width: 90%;
        margin: auto auto 80px auto;
    }
    /* HEADER */
    .container_hamburger_rwd {
        display: block;
    }
    .content_logo img {
        margin-left: 0px !important;
    }
    .content_logo {
        margin-left: 0px !important;
    }
    .container_icon {
        width: auto;
    }
    .container_icon svg:first-child {
        display: none !important;
    }
    .container_icon svg:nth-child(2n) {
        display: none !important;
    }
    .inputsearch {
        display: none !important;
    }
    .content_hamburguer {
        background: none;
        border: none;
        border-radius: 0px;
        background-color: white !important;
    }
    .container_logo {
        justify-content: space-between !important;
    }
    .container_cart {
        transform: translateX(-42%);
    }
    .containermenu {
        display: none;
    }
    .container_search_rwd {
        width: 100%;
        margin: auto;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    .container_category_rwd {
        width: 30%;
        display: flex;
        align-items: center;
    }
    .from_search {
        width: 70%;
        position: relative;
    }
    .from_search input {
        width: 100%;
        height: 40px;
        border-radius: 7px;
        box-shadow: 0 2px 33px 0 rgba(114, 49, 49, 0.03);
        border: none;
        border: solid 1px #63165f;
        background-color: #ffffff;
        padding-left: 40px;
    }
    .from_search button {
        width: 20px;
        height: 20px;
        position: absolute;
        left: 13px;
        background: none;
        background-image: url(/img/icons/search.svg);
        background-repeat: no-repeat;
        border: none;
        bottom: 10px;
    }
    .container_category_rwd button {
        width: 75px;
        height: 40px;
        border-radius: 7px;
        background-color: #63165f;
        border: none;
        font-size: 10px;
        font-weight: 500;
        font-stretch: normal;
        font-style: normal;
        letter-spacing: normal;
        text-align: center;
        color: #ffffff;
        padding-left: 13px;
        text-align: left;
    }
    .container_category_rwd button span {
        display: block;
        text-align: left;
        font-size: 6px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        letter-spacing: normal;
        color: #ffffff;
    }
    /* FOOTER */
    .redes-sociales-footer {
        width: 56% !important;
    }
    .links-footer {
        background-color: #62165e;
        padding: 40px;
    }
    .links-footer h3 {
        color: #ffffff !important;
    }
    .links-footer a {
        font-size: 14px !important;
        color: #ffffff !important;
    }
    .newsletter h3 {
        font-size: 20px;
    }
    .input-email {
        width: 30px;
    }
}

@media (max-width: 480px) {
    .grilla_R {
        grid-template-columns: repeat(auto-fill, minmax(min(100%, 25rem), 1fr));
    }
    .container-links ul {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
    }
    #secundario,
    .card_home {
        grid-column: 1 / -1;
    }
    .content_info_section4 {
        max-width: 100%;
    }
    form#searchPForm {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .font_45 {
        font-size: 18px;
    }
    .buttonCart {
        margin-bottom: -11px;
    }
    .img-rwd-footer {
        width: 100%;
    }
    .container_ul_section1 ul li a {
        font-size: 11px;
        margin-right: 0px;
    }
    .font_30 {
        font-size: 16px;
    }
    .grilla_init {
        width: 70%;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr;
        margin: 30px auto 30px auto;
    }
    .section2_content_button {
        width: 27%;
    }
    .content_button a {
        font-size: 12px;
    }
    .content_list {
        width: 72.3%;
    }
    .section4 {
        width: 90%;
    }
    .content_navegation ul li a {
        margin-right: 15px;
    }
    .content_navegation ul li a:last-of-type {
        margin-right: 0px;
    }
    .btn_responsive2 {
        display: block;
        width: 85%;
    }
    .content_price_section4 {
        width: 85%;
    }
    /* HEADER */
    .container_hamburger_rwd {
        display: block;
    }
    .content_logo img {
        margin-left: 0px !important;
    }
    .content_logo {
        margin-left: 0px !important;
    }
    .container_icon {
        width: auto;
    }
    .container_icon svg:first-child {
        display: none !important;
    }
    .container_icon svg:nth-child(2n) {
        display: none !important;
    }
    .inputsearch {
        display: none !important;
    }
    .content_hamburguer {
        background: none;
        border: none;
        border-radius: 0px;
        background-color: white !important;
        margin-left: 20px;
    }
    .container_logo {
        justify-content: space-between !important;
    }
    .container_cart {
        transform: translateX(-42%);
    }
    .containermenu {
        display: none;
    }
    .container_search_rwd {
        width: 100%;
        margin: auto;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    .container_category_rwd {
        width: 30%;
        display: flex;
        align-items: center;
    }
    .from_search {
        width: 100%;
        position: relative;
    }
    .from_search input {
        width: 90%;
        height: 40px;
        border-radius: 7px;
        box-shadow: 0 2px 33px 0 rgba(114, 49, 49, 0.03);
        border: none;
        border: solid 1px #63165f;
        background-color: #ffffff;
        padding-left: 40px;
    }
    .from_search button {
        width: 20px;
        height: 20px;
        position: absolute;
        left: 13px;
        background: none;
        background-image: url(/img/icons/search.svg);
        background-repeat: no-repeat;
        border: none;
        bottom: 10px;
    }
    .container_category_rwd button {
        width: 75px;
        height: 40px;
        border-radius: 7px;
        background-color: #63165f;
        border: none;
        font-size: 10px;
        font-weight: 500;
        font-stretch: normal;
        font-style: normal;
        letter-spacing: normal;
        text-align: center;
        color: #ffffff;
        padding-left: 13px;
        text-align: left;
    }
    .container_category_rwd button span {
        display: block;
        text-align: left;
        font-size: 6px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        letter-spacing: normal;
        color: #ffffff;
    }
    /* FOOTER */
    .section-email {
        display: none;
    }
    .metodo-pago-img img {
        width: 83%;
    }
    .text-reserved {
        display: none;
    }
    .footer h3,
    a {
        color: #ffffff !important;
    }
    .reserved-res {
        display: block !important;
        padding: 15px 0px;
        background-color: #63165f;
        color: #ffffff;
        font-size: 12px;
    }
    .m-respo {
        background-color: #63165f;
        padding-top: 20px;
        padding-left: 33px;
        padding-bottom: 14px;
    }
    .redes-sociales {
        padding-left: 91px !important;
    }
    .section-email {
        display: none;
    }
    .metodo-pago-img img {
        width: 83%;
    }
    .text-reserved {
        display: none;
    }
    .footer h3,
    a {
        color: #ffffff !important;
    }
    .reserved-res {
        display: block !important;
        padding: 15px 0px;
        background-color: #63165f;
        color: #ffffff;
        font-size: 12px;
    }
    .m-respo {
        background-color: #63165f;
        padding-top: 20px;
        padding-left: 33px;
        padding-bottom: 14px;
    }
    .redes-sociales {
        padding-left: 91px !important;
    }
    .content_image {
        top: 35%;
        right: 0px;
        height: 55px;
        height: 250px;
    }
}

@media (max-width: 400px) {
    .content_image {
        top: 35%;
        right: 0px;
        height: 55px;
        height: 250px;
    }
    .content_image2 {
        height: 89px;
    }
    .grid_products {
        grid-template-columns: repeat(3, 167px);
    }
    .discount {
        width: 52px;
        height: 19px;
    }
    .discount span {
        font-size: 7px;
    }
    .content_info p {
        font-size: 10px;
        margin-bottom: 0px;
        padding: 17px 0px 5px 19px;
    }
    .card_header svg {
        font-size: 15px !important;
    }
    .content_stars svg {
        font-size: 7px !important;
    }
    .content_stars span {
        font-size: 5px;
    }
    .content_image_section4 {
        height: 180px;
    }
    .content_price span {
        font-size: 7px;
    }
    .content_image img {
        left: 78px;
        top: -45px;
    }
    .container_ul_section1 ul li a {
        font-size: 10px;
    }
    .grid_products {
        grid-template-rows: 285px;
    }
    .container_nav {
        width: 100%;
    }
    .grid_section4 {
        grid-template-rows: 189px 1fr;
        grid-template-columns: repeat(1, 1fr);
    }
    .content_info_section4 p {
        text-align: center;
        font-size: 14px;
    }
    .content_info_section4 h3 {
        font-size: 20px;
    }
    .content_image_section4 {
        /* grid-template-rows: 189px 1fr; */
        margin: 40px 37px 0px 37px;
    }
    .section4 {
        width: 95%;
    }
    .content_price_section4 {
        width: 95%;
    }
    .btn_responsive2 {
        display: block;
        width: 95%;
    }
    .section_banner {
        width: 95%;
    }
    /* HEADER */
    .container_hamburger_rwd {
        display: block;
    }
    .content_logo img {
        margin-left: 0px !important;
    }
    .content_logo {
        margin-left: 0px !important;
    }
    .container_icon {
        width: auto;
    }
    .container_icon svg:first-child {
        display: none !important;
    }
    .container_icon svg:nth-child(2n) {
        display: none !important;
    }
    .inputsearch {
        display: none !important;
    }
    .content_hamburguer {
        background: none;
        border: none;
        border-radius: 0px;
        background-color: white !important;
    }
    .container_logo {
        justify-content: space-between !important;
    }
    .container_cart {
        transform: translateX(-42%);
    }
    .containermenu {
        display: none;
    }
    .container_search_rwd {
        width: 90%;
        margin: auto;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    .container_category_rwd {
        width: 30%;
        display: flex;
        align-items: center;
    }
    .from_search {
        width: 70%;
        position: relative;
    }
    .from_search input {
        width: 100%;
        height: 40px;
        border-radius: 7px;
        box-shadow: 0 2px 33px 0 rgba(114, 49, 49, 0.03);
        border: none;
        border: solid 1px #63165f;
        background-color: #ffffff;
        padding-left: 40px;
    }
    .from_search button {
        width: 20px;
        height: 20px;
        position: absolute;
        left: 13px;
        background: none;
        background-image: url(/img/icons/search.svg);
        background-repeat: no-repeat;
        border: none;
        bottom: 10px;
    }
    .container_category_rwd button {
        width: 75px;
        height: 40px;
        border-radius: 7px;
        background-color: #63165f;
        border: none;
        font-size: 10px;
        font-weight: 500;
        font-stretch: normal;
        font-style: normal;
        letter-spacing: normal;
        text-align: center;
        color: #ffffff;
        padding-left: 13px;
        text-align: left;
    }
    .container_category_rwd button span {
        display: block;
        text-align: left;
        font-size: 6px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        letter-spacing: normal;
        color: #ffffff;
    }
    /* FOOTER */
    .redes-sociales-footer {
        width: 84% !important;
    }
    .links-footer {
        padding-left: 15px;
    }
    .newsletter {
        display: none;
    }
}


/* css adicional */

.container_options_brand ul li a:hover {
    color: #63165f !important;
}

.hidden-md-up {
    display: none;
}

a.carousel-control-prev {
    height: 50px;
    width: 50px;
    margin-top: calc(21% - 50px);
}

a.carousel-control-next {
    height: 50px;
    width: 50px;
    margin-top: calc(21% - 50px);
}

img.bg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    cursor: pointer;
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .hidden-md-up {
        display: block;
    }
    .hidden-movil {
        display: none;
    }
}

h2 {
    font-size: 17px !important;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #222222 !important;
    line-height: 45px;
}

.tab-pane {
    padding-bottom: 0 !important;
}

a.btn-wt {
    background: #25d366;
    position: fixed;
    bottom: 14px;
    right: 140px;
    z-index: 99999999;
    height: 46px;
    width: 46px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 23px;
}

a.btn-goTop {
    background: #62165e;
    position: fixed;
    bottom: 14px;
    right: 188px;
    z-index: 99999999;
    height: 46px;
    width: 46px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 23px;
    transition: opacity 0.5s;
}

div.grid-item--selected {
    border: 10px solid;
    border-image-slice: 1;
    border-width: 3px;
    background-color: white;
    z-index: 1;
    border-image-source: linear-gradient(-45deg, #7303c0 0%, #ec38bc 50%);
    animation: background-change 5s ease infinite;
}

div.grid-item--selected>* {
    font-size: 0.7rem;
}

@keyframes background-change {
    0% {
        border-image-source: linear-gradient(-45deg, #7303c0 0%, #ec38bc 50%)
    }
    50% {
        border-image-source: linear-gradient(-45deg, #7303c0 100%, #ec38bc 50%)
    }
    100% {
        border-image-source: linear-gradient(-45deg, #7303c0 0%, #ec38bc 50%)
    }
}

a.btn--hidden {
    opacity: 0;
}

.owl-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 0px;
}

a.carousel-control-prev span,
a.carousel-control-next span {
    background: #63165f;
    width: 33px;
    height: 33px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

a.carousel-control-next {
    justify-content: flex-end;
    padding-right: 10px;
}

a.carousel-control-prev {
    justify-content: flex-start;
    padding-left: 10px;
}

ol.carousel-indicators li {
    background-color: #ababab !important;
}

.nav_container {
    width: 100%;
    height: 46px;
}

.container-links {
    width: 50%;
}

.container-links ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 46px;
}

.container-links ul li a {
    font-size: 14px;
    text-decoration: none;
    color: #797979 !important;
    font-weight: 500;
}

.container-search {
    width: 26%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-search input {
    width: 100%;
    height: 41px;
    border-radius: 50px 0px 0px 50px;
    border: none;
    border: 1px solid #ececec;
    color: #c1c1c1;
    font-size: 13px;
}

.inputsearch {
    width: 100% !important;
}

.input-group-append button {
    background: #63165f;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    color: #FFF;
}

.input-group-append button:disabled {
    background-color: #63165f;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    opacity: 1;
}

.overflow-pop {
    background: rgba(0, 0, 0, 0.486);
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 9;
}

.popup {
    width: 50%;
    height: 500px;
    position: relative;
}

img.image-popup {
    width: 100%;
    height: auto;
}

div#closepop {
    position: absolute;
    top: -10px;
    right: -7px;
    z-index: 9;
    cursor: pointer;
}

.content-socials {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border: none;
}

.content-socials a {
    font-size: 30px;
    padding: 0;
    margin-top: -28px;
    margin-bottom: -21px;
}

#secundario {
    max-width: 244px;
    border-radius: 12px;
    overflow: hidden;
    background: none !important;
    border: none !important;
}

.btn-img {
    background: none;
    border: none;
    padding: 0px 10px;
}

.ryq {
    color: white !important;
    width: auto !important;
    height: 23px !important;
    padding: 0px 5px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.repon {
    color: white !important;
    font-size: 9px !important;
    padding: 2px 12px !important;
    height: 20px !important;
}


/* Rating Star Widgets Style */

.rating-stars ul {
    list-style-type: none;
    padding: 0;
    -moz-user-select: none;
    -webkit-user-select: none;
}

.rating-stars ul>li.star {
    display: inline-block;
}


/* Idle State of the stars */

.rating-stars ul>li.star>svg {
    font-size: 15px;
    /* Change the size of the stars */
    color: #ccc;
    /* Color on idle state */
}


/* Hover state of the stars */

.rating-stars ul>li.star.hover>svg {
    color: #FFCC36;
}


/* Selected state of the stars */

.rating-stars ul>li.star.selected>svg {
    color: #FF912C;
}

.overlow {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: #ffffff;
    z-index: 99999999;
    display: flex;
    justify-content: center;
}

.imagen-circular {
    border-radius: 50%;
    overflow: hidden;
    height: 250px;
    width: 250px;
    margin: auto;
}

.imagen-circular img {
    width: 100%;
    height: auto;
}

.content_logo {
    width: 338px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.link_logo {
    display: flex;
    width: 52%;
    justify-content: center;
    align-items: center;
}

.btn_cart_container {
    background: white;
    height: 100%;
    padding: 0 5px 3px;
    display: flex;
    align-items: flex-end;
    position: absolute;
    top: 0;
    right: 10px;
}

.container-links ul li a:hover {
    color: #63165f !important;
}

a.link_logo.m-auto img {
    width: 60%;
    margin: 15px auto 40px;
}

.hidden-btns {
    display: none;
}

button.log {
    width: 30px;
    height: 30px;
    background: #63165f;
    border-radius: 50%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: white;
    margin-bottom: 20px;
    border: none;
    padding-left: 7px;
}

a:hover.btn.text-dark {
    color: #c5c5c5 !important;
}

.price--line-through {
    background-color: transparent;
    background-image: gradient(linear, 19.1% -7.9%, 81% 107.9%, color-stop(0, transparent), color-stop(.48, transparent), color-stop(.5, #000), color-stop(.52, transparent), color-stop(1, transparent));
    background-image: repeating-linear-gradient(163deg, transparent 0%, transparent 48%, rgb(172, 172, 172) 50%, transparent 52%, transparent 100%);
}

.hidden-movil {
    display: none
}

.slick-list.draggable {
    height: 416px;
}

@media (max-width: 540px) {
    .preguntas-responsive {
        margin-right: 9px;
        width: 85% !important;
        justify-content: space-between !important;
    }
    .slider-for.border.mb-2.slick-initialized.slick-slider {
        height: 302px;
    }
    .contact-responsive {
        width: 33% !important;
    }
    .in_blog {
        margin-top: 20px;
    }
    .hidden-movil {
        display: block
    }
    .hidden-in-movil {
        display: none;
    }
    .btn_cart_container {
        top: 81px;
        right: 24px;
    }
    .hidden-btns {
        display: block;
        position: absolute;
        top: 0;
        right: 30px;
        z-index: 99999;
    }
    .grilla_7 {
        display: grid;
        grid-template-columns: repeat(1, 100%);
        overflow-x: visible;
        overflow-y: visible;
        width: 100%;
        height: auto;
    }
    .content_nav {
        height: auto !important;
    }
    .content_navegation {
        width: 100% !important;
    }
    .content_navegation ul {
        flex-wrap: wrap;
        height: auto;
        margin: 20px 0;
    }
    .content_navegation ul li {
        width: 49%;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        border: solid 1px #ececec;
        height: 49px;
        margin-top: 6px;
        border-radius: 8px;
        background: #f3f3f3;
    }
    .content_navegation ul li:first-child a {
        border: none;
    }
    .section5 {
        display: flex;
        margin-top: -123px;
    }
    .container_width2>.grilla_5 {
        overflow-x: scroll;
        grid-template-columns: repeat(1, 100%);
    }
    .card_section5 a img {
        width: 100%;
        height: auto;
    }
    .container_width2>.grilla_5>.card_section5 {
        justify-content: center;
        align-items: center;
        margin-bottom: 15px;
    }
    section.section_banner {
        margin-top: -90px;
    }
    .section8 {
        display: block;
    }
    .newsletter {
        display: block;
        height: auto;
    }
    .row-newsletter {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-bottom: 10px;
    }
    ul.redes-sociales-footer.justify-content-center li a {
        color: rgb(99, 22, 95) !important;
    }
    .section2 div .container_width2 {
        margin-top: -55px !important;
    }
    .content_button a {
        color: white !important;
    }
    .footer h3,
    a {
        color: rgb(255, 255, 255);
    }
    .product_prod {
        flex-direction: column !important;
        justify-content: flex-start !important;
        text-align: center;
    }
    .product_prod a {
        color: black !important;
    }
    article.checkout-contain.mb-5 {
        padding-left: 15px;
    }
    ul.listado-productos>li {
        width: 48% !important;
        margin-bottom: 5px !important;
    }
    .page-link {
        color: black !important;
    }
    li.number.active.page-item a.page-link {
        color: white !important;
    }
    a.grey {
        color: grey !important;
    }
    .photo {
        max-height: 88px !important;
    }
    .container-search {
        display: none;
    }
    .container-links {
        width: 100%;
    }
    .container-links ul li a {
        line-height: normal;
        font-size: 12px;
    }
    .container_hamburger_rwd {
        margin-top: 15px;
    }
    .container_nav {
        width: 100%;
    }
    section.init {
        margin-bottom: 60px;
    }
}

@media (min-width: 1439px) {
    .blog_content_img {
        height: 372px !important;
    }
}

@media (min-width: 541px) and (max-width: 995px) {
    .content_image {
        top: 48%;
        right: 0%;
    }
}