* { box-sizing: border-box; }

::-webkit-scrollbar {
    display: none;
}

:root {
    --greenBtn: #4CAF50;
    --blueBtn: #0050c3;
    --notifCircle: #16319d;
    --darkgray: #101010;
    --darkgray2: #404040;
    --darkgray71: #717171;
    --lightGray: #e7e7e7;
    --itemHeight: auto;
    --wrapperHeight: 150px; /* alto de las imagenes en agregar publicacion */
    --itemBorderRadius: 7px;
    --btnBorderRadius: 4px;
    --headerColor: white;
    --subheaderColor: white; /* #53b357; */
    --followingBtnBackground: #e0ffe2;
    --lightBorderColor: #c2c1d4;
    --fontFam: 'Plus Jakarta Sans', sans-serif;
}

a:hover { cursor: pointer; }

body { 
    margin:0; background-color: white;
    font-family: var(--fontFam);
    overflow-x: hidden;
    padding-bottom: 150;
}

textarea:focus, input:focus{
    outline: none;
}

#bgx-white, #bgx-gray {
    display: none;
}

#loader {
    margin: auto;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: conic-gradient(#0000 10%, var(--blueBtn));
    -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 3px), #000 0);
    animation: s3 0.5s infinite linear;
    text-align: center;
    z-index: 9999999;
}

#toTop, #toDown {
    position: fixed;
    z-index: 10;
    right: 7px;
    bottom: 100px;
    padding: 11px;
    background: rgba(0, 61, 149, 0.8);
    border-radius: 7px;
}

#toTop img, #toDown img {
    width: 30px;
    filter: invert();
}

#fondo {
    background: gray;
    width: -webkit-fill-available;
    width: -moz-available;
    height: -webkit-fill-available;
    height: 100%;
    position: fixed;
    z-index: 999999;
    opacity: 0.4;
    top: 0;
    display: none;
}

#fondosearch {
    background: rgba(53, 53, 53, 0.2);
    display: none;
    z-index: 4;
}

#fondo-2, #fondosearch {
    background: rgba(53, 53, 53, 0.8);
    backdrop-filter: blur(3px);
    width: -webkit-fill-available;
    width: -moz-available;
    height: -webkit-fill-available;
    height: 100%;
    position: fixed;
    z-index: 10;
    top: 0;
}

#header {
    position: fixed;
    width: 100%;
    z-index: 8;
    background-image: linear-gradient(to top, rgba(255, 255, 255, 0), #FFF);
    backdrop-filter: blur(4px);
}

#header img.header-logo {
    margin: 12px 0 13px 11px;
    width: 180px;
}

#header img.header-msg {
    width: 28px;
    position: absolute;
    right: 55px;
    margin: 12px;
}

#header img.header-notifications {
    width: 28;
    position: absolute;
    right: 0;
    margin: 10 20;
}

#header .header-redcircle {
    padding: 5px;
    position: absolute;
    right: 0;
    margin: 10px 40px;
    top: 0;
    background: var(--notifCircle);
    text-align: center;
    border-radius: 20px;
    color: white;
    font-size: 13.5;
    font-weight: 500;
    min-width: 25px;
    animation-name: notif;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
}

#topspace-index {
    padding-top: 100;
}

#search-field {
    padding: 5px;
    text-align: center;
    position: fixed;
    z-index: 7;
    background: white;
    width: 100%;
    top: 37px;
    backdrop-filter: blur(3px);
}

#search-field input {
    width: 95%;
    font-size: 16px;
    padding: 11px 10px 11px 45px;
    margin: 9px 0;
    border-radius: 0px;
    background-color: white;
    background-image: url('../img/lupa3.png');
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: 11px 50%;
    border: 2px solid gray;
    border-radius: 25px;
    border-top: 2px solid red;
    border-right: 2px solid blue;
    border-bottom: 2px solid green;
    border-left: 2px solid orange;
    box-shadow: 0 -4px 5px -2px rgba(255, 0, 0, 0.5), 4px 0 5px -2px rgba(0, 0, 255, 0.5), 0 4px 5px -2px rgba(0, 128, 0, 0.5), -4px 0 5px -2px rgba(255, 165, 0, 0.5);
    border: 2px solid transparent;
}

#searchResults {
    height: 100%;
    overflow: auto;
    position: fixed;
    z-index: 6;
    background: white;
    width: 100%;
    display: none;
}

#historySearch {
    position: fixed;
    background: white;
    width: 100%;
    z-index: 5;
    overflow: auto;
    height: 100%;
}

#content {
    margin-bottom: 250px;
}

.titlePage {
    position: relative;
    margin-top: 10px;
    padding: 20px 125px 20px 15px;
    color: #333333;
    font-weight: bold;
}

.vertodo {
    position: absolute;
    right: 0;
    top: 0;
    padding: 20px 10px;
}

.vertodo a {
    text-decoration: none;
    color: #000000;
}

.vertodo img {
    margin-right: 5px;
    width: 20px;
    vertical-align: bottom;
}

#estadisticas-admin {
    display: grid;
    width: 95%;
    max-width: 700px;
    margin: auto;
    margin-top: 0px;
    grid-template-columns: 49% 49%;
    row-gap: 4%;
    column-gap: 2%;
}

.statics-div.ganancia, .statics-div-admin.ganancia {
    background: linear-gradient(45deg, #626dff, #74d174, #e8ffe8);
}

.statics-div {
    padding: 20px 5px;
    margin: 8px 15px;
    background: linear-gradient(45deg, #d6e7ff, #f9f9f9);
    border-radius: 9px;
}

.statics-div-admin {
    padding: 7px;
    margin: 0;
    background: linear-gradient(45deg, #8bbcff, #f2a9ff);
    border-radius: 4px;
    height: 100px;
    display: grid;
    align-items: center;
    align-content: center;
}

.statics-div-title {
    font-size: 15;
    text-align: center;
    color: #373737;
    font-weight: 500;
}

.statics-div-result.gananciaBrutaNum {
    color: white;
    text-shadow: 0px 0px 5px black;
}

.statics-div-result {
    font-size: 21px;
    font-weight: 700;
    text-align: center;
}

.statics-div.totventas, .statics-div-admin.totventas {
    background: linear-gradient(45deg, #d27ae7, #93bef9, #f9f9f9);
}

#configTiendaAccesos {
    display: grid;
    width: 95%;
    max-width: 700px;
    margin: auto;
    margin-top: 0px;
    grid-template-columns: 49% 49%;
    column-gap: 2%;
}

#configTiendaAccesos a {
    text-decoration: none;
    color: #000000;
}

.configTiendaOpt {
    display: flex;
    padding: 9px;
    background: #ebebeb;
    margin-bottom: 10px;
    border-radius: 4px;
    align-items: center;
    height: 50px;
}

.configTiendaOpt img.resize {
    width: 19px;
}

.configTiendaOpt img {
    width: 20px;
    margin-right: 7px;
}

.planactual {
    width: 94%;
    max-width: 700px;
    margin: 0 auto 15px;
    text-align: center;
    background: linear-gradient(45deg, #fd6699, #2196F3, #FFEB3B);
    border-radius: 9px;
    padding: 25px;
    font-weight: 700;
    box-shadow: 0px 0px 8px 0px gray;
    text-shadow: 0px 0px 5px #000000;
    color: white;
}

/** opciones del menu inferior **/

#index-options {
    position: fixed;
    z-index: 15;
    width: 100%;
    text-align: center;
    background-color: white;
    bottom: 0;
    min-width: 340px;
    height: 51.8px;
    background: white;
}

.hideIndexOptions {
    display: none;
}

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

#index-options ul li {
    display: inline-block;
    width: 18%;
}

#index-options ul li a {
    text-decoration: none;
    color: #4b4b4b;
    padding: 5px;
    border-radius: 20px;
    font-size: 12px;
    display: inline-block;
    width: 100%;
    text-align: center;
    font-weight: 800;
}

#index-options img {
    width: 28px;
    height: auto;
    vertical-align: bottom;
}

#index-options img.footer-home {
    width: 28px;
    height: auto;
}

#index-options img.footer-seguidos {
    width: 28px;
    height: auto;
}

#index-options img.footer-groups {
    width: 28px;
    height: auto;
}

#index-options img.footer-reposts {
    width: 28px;
    height: auto;
}

#index-options-desktop, #index-options-desktop-bg { display: none; }

/* menu deslizable desde abajo */

.menu, .menuZ, .menuZ2 {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background-color: #fff;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    touch-action: none;
    z-index: 20;
    display: flex;
    flex-direction: column;
}

.menu.active, .menuZ.active, .menuZ2.active {
    transform: translateY(0%);
}

.menu.expanded, .menuZ.expanded, .menuZ2.expanded {
    height: 100%;
    border-radius: 0;
}

#expandIcon, #expandIconZ, #expandIconZ2 {
    position: absolute;
    right: 40px;
    top: 10px;
    z-index: 25;
    border-radius: 25px;
    padding: 5px;
}

#expandIcon:active {
    background: rgb(197, 230, 202);
    opacity: 0.85;
}

.menu.expanded #expandIcon {
    /* display: none; */
}

.menu-content {
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1;
    -webkit-overflow-scrolling: touch;
}

.menu-handle {
    width: 60px;
    height: 6px;
    background-color: #ccc;
    border-radius: 3px;
    margin: 10px auto 0;
    display: block;
    z-index: 20;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 15;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

#overlayZ { z-index: 99998; }

#overlayZ2 { z-index: 99999; }

#menuNavZ.active, #menuNavZ2.active {
    transform: translateY(0%);
}

#menuNavZ, #menuNavZ2 {
    transform: translateY(105%);
    transition: transform 0.3s ease;
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 99999;
    box-shadow: 0 -6px 20px rgba(0,0,0,0.28);
}

/* end menu deslizable desde abajo */

#topNavTitle {
    background: white;
    text-align: center;
    padding: 11px;
    position: fixed;
    width: 100%;
    font-size: 17px;
    font-weight: 700;
    z-index: 10;
    border-radius: 11px 11px 0 0;
    font-weight: 800;
    color: gray;
}

#close {
    position: absolute;
    top: 0;
    right: 10px;
    padding: 4px;
    z-index: 11;
    display: block;
}

#close img {
    width: 15px;
}

.mtopcontainer {
    margin-top: 50px;
}

#navProductContainer {
    width: 90%;
    margin: 50px auto;
}

#myproductsHeader {
    width: 100%;
    max-width: 500px;
    position: relative;
    margin: auto;
}

#titlePage {
    margin: 15px auto 30px;
    width: 100%;
    font-weight: 500;
    font-size: 17px;
    display: flex;
    gap: 6px;
}

.filterProds {
    display: flex;
    gap: 5px;
    position: absolute;
    right: 0;
    top: -5px;
    color: gray;
    font-weight: bold;
}

.filterProds img {
    width: 28px;
}

#organizarProds {
    display: none;
}

.tabla-wrapper {
    width: 100%;
    margin: auto;
    max-width: 500px;
}

.order_container {
    display: grid;
    grid-template-columns: 85px auto 130px;
    margin-bottom: 22px;
}

.order_col1 img {
    border-radius: 7px;
    object-fit: cover;
}

.titleContainer {
    margin-bottom: 5px;
}

.titleOrder {
    font-weight: 600;
}


.percentOffAdmin, .descuentos {
    background: #c7c7c7;
    border-radius: 11px;
    width: fit-content;
    padding: 2px 7px;
    font-weight: bold;
    font-size: 14px;
}

.descuentos {
    margin-top: 5px;
    margin-bottom: 5px;
    font-weight: 400;
    color: gray;
    height: 24px;
    display: flex;
    align-items: center;
}

.descuentos img {
    width: 10px;
    margin-left: 5px;
    filter: contrast(0.2);
}


.panteriorAdmin {
    text-decoration: line-through;
    font-size: 12px;
    font-weight: lighter;
    color: gray;
}

.fechaAdmin {
    color: gray;
    font-size: 12.5px;
}

.order_col3 {
    text-align: center;
}

.order_col3 img {
    width: 30px;
    margin-bottom: 12px;
}

.estado_pendiente {
    background: #fdf4b0;
    color: #9d5802;
    padding: 3 9;
    border-radius: 7px;
    display: flex;
    width: fit-content;
    margin: auto;
    align-items: center;
    font-size: 15px;
}

.estado .downPendienteSvg {
    width: 20px;
    margin-left: 5;
    height: 20px;
}

.estado_vendido {
    color: green;
    background: #e2ffe2;
    padding: 3 9;
    border-radius: 4px;
    margin-bottom: 5px;
    display: flex;
    width: fit-content;
    margin: auto;
    align-items: center;
    font-size: 15px;
}

.estado_cancelado {
    background: #ffc0c0;
    color: #9d0202;
    padding: 3 9;
    border-radius: 4px;
    margin-bottom: 5px;
    display: flex;
    width: fit-content;
    margin: auto;
    align-items: center;
    font-size: 15px;
}

#loadMore, .loadMore {
    width: fit-content;
    margin: auto;
    text-align: center;
    margin-top: 25px;
    background: #cecece;
    border-radius: 25px;
    padding: 9px 20px;
}

#msgNoResults.msgNoResults {
    padding: 25px;
}

#msgNoResults {
    text-align: center;
    background: #efefef;
    padding: 25px 15px 0 15px;
    border-radius: 9px;
    width: 90%;
    margin: auto;
    color: black;
    margin-top: 100px;
    max-width: 500px;
}

/** GANANCIAS **/

.formGanancias {
    background: #e5e5e5;
    padding: 11px;
    border-radius: 7px;
    font-size: 14px;
    margin-bottom: 7px;
}

.formc {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 7px;
    justify-content: flex-end;
    align-items: center;
}

.dateStatics {
    border-radius: 9px;
    border: 0;
    width: 105px;
    padding: 3px 4px;
    background: linear-gradient(45deg, #3e6ed9, #1b3a7f);
    color: white;
}

.subformc {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#filterStatsBtn {
    background: gray;
    color: white;
    padding: 4px 12px;
    border-radius: 7px;
    font-weight: 500;
}

#gananciasData {
    display: flex;
    font-size: 13px;
    gap: 5px;
    color: #343434;
    width: 100%;
    justify-content: space-evenly;
}

#gananciasData .colmsg {
    max-width: 35%;
}

#topContainer {
    overflow-x: auto;
    padding-bottom: 37px;
    margin: 0 15px;
    overflow-y: hidden;
    margin-top: 15px;
}

#statsContainer {
    display: flex;
    gap: 10px;
    margin-top: 40px;
    height: 160px;
    flex-wrap: nowrap;
    width: max-content;
    min-width: 100%;
    justify-content: center;
    align-items: flex-end;
}

#statsContainer .col {
    width: 75px;
    background: linear-gradient(45deg, #e600ff, #3888ff);
    border-radius: 7px 7px 0 0;
    position: relative;
    padding-bottom: 25px;
}

.date {
    position: absolute;
    bottom: -27px;
    text-align: center;
    font-size: 11px;
    left: 0;
    right: 0;
    background: gray;
    color: white;
    border-radius: 0 0 7px 7px;
    padding: 7 0;
}

.tot {
    text-align: center;
    top: -18px;
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    gap: 2px;
}

.tot img {
    width: 15px;
}

.monto {
    position: absolute;
    font-size: 12px;
    text-align: center;
    left: 0;
    right: 0;
    color: white;
    font-weight: 500;
    padding-top: 4px;
}

.porcentajeV {
    position: absolute;
    top: -38px;
    text-align: center;
    left: 0;
    right: 0;
    margin: auto;
    font-size: 11px;
    color: #5b5b5b;
    background: #d9d8d8;
    width: min-content;
    border-radius: 25px;
    padding: 2px 7px;
}

/** VISTAS **/

.selProdStatics {
    border-radius: 9px;
    border: 0;
    width: 105px;
    padding: 3px 4px;
    width: 100%;
    background: linear-gradient(45deg, #3e6ed9, #1b3a7f);
    background-color: #1b3b80;
    color: white;
}

#statsContainer .col.colvisits {
    width: 50px;
    background: linear-gradient(45deg, #8BC34A, #3888ff);
}

#countryVisitsContainer {
    margin: 15px;
    border-top: 1px solid #e5e5e5;
    padding-top: 20px;
}

.countryV {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.countryName {
    display: flex;
    gap: 5px;
    align-items: center;
    width: 18%;
    max-width: 50px;
}

.countryName img {
    width: 15px;
}

.countryBar {
    width: 100%;
}

.countryBar2 {
    background: linear-gradient(45deg, #3e6ed9, #1b3a7f);
    padding: 2px 6px;
    border-radius: 4px 15px 15px 4px;
    color: white;
    font-size: 11px;
    font-weight: 500;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

#titlePage.viewsPerProd {
    background: #dfdfdf;
    padding: 5px;
    border-radius: 7px;
    justify-content: center;
    align-items: center;
}

#titlePage img {
    width: 20px;
}

.vistas_container .col3 .viewsperprod {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #dfdfdf;
    padding: 2px 9px;
    border-radius: 15px;
}

.vistas_container .col3 img {
    width: 25px;
}

.vistas_container .col3 img.down {
    width: 13px;
}

.detailVisit {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #dfdfdf;
    padding: 15px 4px;
    align-items: flex-end;
}

.ipcol {
    width: 36%;
}

.pais {
    display: flex;
    gap: 5px;
    align-items: center;
    font-weight: 500;
    font-size: 15px;
}

.pais img {
    width: 18px;
}

.vistas_container .col1 img {
    border-radius: 7px;
    object-fit: cover;
}

#estadisticas {
    display: grid;
    width: 100%;
    margin: auto;
    grid-template-columns: 50% 50%;
    gap: 0;
    row-gap: 0;
}

.statics-div.cupones {
    background: linear-gradient(45deg, #d1ac74, #ffedd1);
}

#mySidenav {
    position: relative;
}

.nooxerLogo {
    width: 95px;
    position: absolute;
    right: 0;
    bottom: -90px;
    left: 0;
    margin: auto;
}

#mySidenav a, #mySidenavMenuProfile a, #mySidenavProfileOptions a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 15px;
    color: #101010;
    display: block;
}

ul#menu-options li.ordersFilter {
    display: inline-flex;
    gap: 10px;
    justify-content: space-evenly;
    padding: 10 0;
    width: 100%;
    align-items: center;
    flex-direction: column;
}

ul#menu-options li.ordersFilter input, 
ul#menu-options li.ordersFilter select {
    padding: 7px;
    width: 70%;
    font-size: 17px;
    color: var(--darkgray2);
    border-radius: 9px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    border: 2px solid #c7c7c7;
}

ul#menu-options li.priceFilter {
    display: inline-flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    padding: 10 0;
    width: 100%;
}

ul#menu-options li.priceFilter input {
    padding: 5px;
    width: 100px;
    font-size: 20px;
}

#mySidenavMenuProfile li.moptions {
    border-bottom: 0;
    position: relative;
}

ul#menu-options li.moptions img.down {
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 12px;
}

img.sideLogo {
    width: 40%;
}

#generalMenuHeaderProfile {
    position: relative;
    margin-bottom: 15px;
}

#menu-profile-pic {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
}

#menu-profile-pic img {
    width: auto;
    height: auto;
    max-height: 100px;
    object-fit: contain;
    max-width: 100px;
}

.tiendaName {
    padding: 0 0 0 32px;
    font-size: 30px;
    font-weight: bold;
}

.tiendaUrl {
    padding: 5px 0 0 32px;
    color: gray;
    font-size: 22px;
}

ul#menu-options {
    list-style-type: none;
    margin-top: 0;
    padding: 0;
}

ul#menu-options li.sidenav {
    position: relative;
}

ul#menu-options a {
    font-size: 18.5px;
    font-weight: 700;
    position: relative;
}

ul#menu-options img {
    width: 28px;
    height: auto;
    margin-right: 13px;
    vertical-align: middle;
}

ul#menu-options li.sidenav img.down {
    position: absolute;
    width: 12px;
    right: 30px;
    top: 0;
    bottom: 0;
    margin: auto;
}

img.submenuimg {
    transition: transform 0.4s ease;
}

.rotated {
    transform: rotate(180deg);
}

ul#menu-options li.subsidenav {
    margin: 20px 0 20px 60px;
    font-size: 18px;
    font-weight: 600;
    width: -webkit-fill-available;
}

ul#menu-options .designdesc {
    display: flex;
    color: gray;
    font-weight: 400;
    margin-left: 45;
    font-size: 14;
}

ul#menu-options img.d9 { filter: invert(17%) sepia(97%) saturate(7491%) hue-rotate(221deg);}
ul#menu-options img.d1 { filter: invert(17%) sepia(97%) saturate(7491%) hue-rotate(339deg); }
ul#menu-options img.d8 { filter: invert(17%) sepia(97%) saturate(7491%) hue-rotate(359deg); }
ul#menu-options img.d3 { filter: invert(17%) sepia(97%) saturate(7491%) hue-rotate(150deg); }
ul#menu-options img.d2 { filter: invert(17%) sepia(97%) saturate(7491%) hue-rotate(43deg); }
ul#menu-options img.d4 { filter: invert(17%) sepia(97%) saturate(7491%) hue-rotate(195deg); }
ul#menu-options img.d5 { filter: invert(17%) sepia(97%) saturate(7491%) hue-rotate(250deg); }

#ventaDiv {
    padding: 7px 15px;
    margin-top: 15px;
}

#ventaDiv input {
    width: 100%;
    padding: 18px 10px;
    font-size: 15px;
    border: 0px solid var(--lightBorderColor);
    border-radius: 4px;
    background-color: #edeef0;
    transition: background-color 0.3s ease;
}

#ventaDiv input#stock {
    text-align: center;
    border: 0;
    font-weight: bold;
    font-size: 20px;
    padding: 15px;
    border-radius: 0;
}

#ventaDiv input.descuento {
    width: 100px;
}

#ventaDiv input.newColor {
    -webkit-appearance: none;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 0;
    cursor: pointer;
}

#ventaDiv input.inputps {
    margin-bottom: 25px;
}

#ventaDiv .hexinput {
    width: 75px;
    background: #2f2f2f;
    color: white;
    font-weight: 600;
    font-size: 13px;
    padding: 0 5px;
    border-radius: 4px;
    border: 0;
    text-align: center;
}

#ventaDiv.addVenta {
    margin-top: 0;
    padding: 0 35px;
}

#ventaDiv input.designRange {
    padding: 5 10;
}

#ventaDiv textarea.morepsinfo {
    height: 130px;
}

#ventaDiv .circpx {
    position: absolute;
    right: 10px;
    top: 8px;
    display: flex;
    color: white;
    gap: 5px;
    font-size: 14px;
}

#ventaDiv .circpx input {
    width: 45px;
    background: #2f2f2f;
    border-radius: 45px;
    padding: 3px;
    color: white;
    font-weight: 600;
    text-align: center;
    border: 0px;
}

#ventaDiv.addlinks {
    margin-top: 75px;
    width: auto;
}

#ventaDiv .colorContainer {
    display: inline-flex;
    gap: 5px;
    justify-content: space-between;
    flex-wrap: nowrap;
    width: 100%;
    margin-bottom: 5px;
}

#ventaDiv input.catcheck, #moveProductToCatsContainer input.catcheck {
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0;
    height: 20px;
    width: 20px;
    margin: auto;
}

#ventaDiv input.subcatcheck, #moveProductToCatsContainer input.subcatcheck {
    width: auto;
    position: absolute;
    right: 15px;
    transform: scale(1.2);
    top: 10;
}

#moveProductToCatsContainer { padding: 0 15px; }

#ventaDiv .input-border {
    border-radius: 4px;
}

#ventaDiv select {
    width: 100%;
    font-size: 15px;
    padding: 18px 10px;
    border: 0px solid var(--lightBorderColor);
    border-radius: 4px;
    background: #edeef0;
    font-weight: 700;
    color: var(--blueBtn);
}

#ventaDiv select#codpais, #ventaDiv select.codpais {
    width: fit-content;
    padding: 9px;
    border: 0px;
    position: absolute;
    left: 40px;
    top: 10px;
    border-right: 1px solid var(--btnBorderRadius);
}

#ventaDiv .designBlock select {
    width: 100%;
    font-size: 20px;
    padding: 7px;
    border: 2px solid var(--lightBorderColor);
    border-radius: 25px;
    background: linear-gradient(45deg, #abc9ff, #ffaefc, #beffc8);
    font-weight: 700;
    font-family: 'Plus Jakarta Sans';
    color: #1a1a1a;
}

#ventaDiv textarea {
    width: 100%;
    height: 150px;
    border: 0px solid var(--lightBorderColor);
    border-radius: 4px;
    font-size: 15px;
    padding: 12px;
    font-family: sans-serif;
    background: #edeef0;
    transition: background-color 0.3s ease;
}

#ventaDiv textarea#editor {
    font-size: 13px;
    font-family: courier;
}

#ventaDiv input.checkb {
    width: auto;
    transform: scale(1.2);
}

#ventaDiv.mobiltop {
    margin-top: 65px;
}

.navSubcontainer {
    border: 2px solid #dfdfdf;
    border-radius: 4px;
    padding: 0px 15px;
    margin-bottom: 30px;
    position: relative;
}

#title-description {
    background: unset;
    margin-top: 20px;
    border-radius: 0;
    padding: 15px 12px 15px 2px;
    position: relative;
}

#title-description.pmtd {
    margin-top: 0;
}

#title-description p.paymethodtitle {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
    font-size: 16px;
    font-weight: 600;
    width: 65%;
}

#title-description img.paymethodimg.mp {
    filter: invert(1);
    width: 100px;
}

#title-description img.paymethodimg {
    position: unset;
    margin: 0;
    width: 27px;
}

#title-description img.pmda {
    bottom: unset;
    top: 15px;
}

#title-description p {
    font-weight: 700;
    font-size: 16px;
    margin: 0;
    padding-top: 0;
    color: var(--darkgray2);
}

#title-description img {
    width: 15px;
    position: absolute;
    right: 10;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: 0.4s ease;
}

.titleline {
    margin-bottom: 18;
    width: 100%;
    height: 2px;
    border-top: 1px solid var(--lightBorderColor);
}

#vender-subir-imagenes {
    width: 100%;
    white-space: nowrap;
    overflow: scroll;
    display: inline-block;
    padding: 0 0 6px;
}

#profile-image {
    position: relative;
    text-align: center;
    margin: auto;
    padding: 0px;
    width: unset;
    height: 150px;
    overflow: hidden;
    border: 2px dashed rgb(180, 180, 180);
    background: url('/img/image_icon_2.png');
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 20px;
    background-size: 35px;
}

#output_image0 {
    object-fit: contain;
    width: 100%;
    height: 150px;
    display: none;
}

p.sub-title-description {
    padding: 0 9px 5px;
    color: #4d4d4d;
    font-size: 14px;
}

#theurl {
    margin: 5px 0;
    padding: 17px 11px;
    font-size: 15px;
    background: #cfcfcf;
    border-radius: 4px;
}

#theurlx {
    color: #084398;
    font-weight: bold;
}

.submenu.open {
    max-height: 500px;
    padding: 10px;
    margin-bottom: 10px;
    margin-top: 5px;
    overflow-y: auto;
}

.submenu {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background-color: #e0e0e0;
    margin-bottom: 0px;
    margin-top: 0px;
    border-radius: 0;
    padding: 0 10px;
}

img.submenuimgTools {
    transition: transform 0.4s ease;
    position: absolute;
    right: 5px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 15px;
    filter: invert(1);
}

.submenuTools.open {
    max-height: 1600;
    margin-bottom: 10px;
    margin-top: 0px;
}

.submenuTools {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease, padding 0.4s ease;
    margin-bottom: 0px;
    margin-top: 0px;
    border-radius: 11px;
}

.whitesubmenu {
    background-color: white;
}

.whitesubmenu div {
    border-bottom: 0;
}


.submenu div:last-child {
    border-bottom: none;
}

.submenu div {
    padding: 0;
    border-bottom: 1px solid #ccc;
}

.submenu div.metodo-box {
    border: 1px dashed gray;
    padding: 0 13px 15px;
    border-radius: 4px;
    margin-top: 15px;
}

.infoTiendaStickerContainer {
    width: auto;
    margin: 0 auto 35px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.infoTiendaSticker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 7px;
    border-radius: 4px;
    flex: 0 0 48%;
    min-height: 50px;
    overflow: auto;
    color: var(--darkgray2);
    font-size: 15px;
}

.infoTiendaSticker img {
    width: 35px;
}

.submenu .designBlockHorario {
    background: white;
    padding: 12px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 56px;
    height: 30px;
}

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

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

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

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

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

.highlight-dropzone {
    outline: 4px dashed #007bff;
    transition: outline 0.15s ease-in-out;
}

input:checked + .slider {
    background-color: #0050c3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.horarios {
    display: flex;
    align-items: center;
    gap: 10px;
    color: gray;
    width: 90%;
    margin: 0 auto 35px;
}

#ventaDiv input.hora {
    width: 100%;
    padding: 10px;
}

.designBlock.db-2 {
    background: #979797;
    transition: background-color 0.3s ease-in-out;
}

.designBlockTitle.dbt-3 {
    padding: 15px;
}

.designBlockTitle.dbt-2 {
    color: #2e2e2e;
    font-weight: 700;
    font-size: 14px;
    padding-left: 10px;
}

.infoTiendaSticker.selected-label {
    background-color: #e7e7e7;
}

#saveFloatBtnContainer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(3px);
}

#header-btn {
    z-index: 8;
    position: absolute;
    right: 0;
    padding: 30px 10px;
}

#header-btn a {
    background: var(--blueBtn);
    color: white;
    font-weight: 700;
    padding: 10px 35px;
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
    font-size: 18px;
}

#profile-username {
    position: fixed;
    background: white;
    z-index: 5;
    width: 100%;
    padding-bottom: 20px;
    top: 0;
}

#profile-username ul {
    position: fixed;
    z-index: 5;
    width: 100%;
    margin: 0;
    white-space: nowrap;
    overflow: scroll;
    color: var(--darkgray);
    border-bottom: 1px solid #c2c1d4;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(7px);
    padding: 15px;
    gap: 15px;
    display: flex;
    align-items: center;
}

#profile-username ul li {
    display: inline-block;
}

#profile-username ul li img.backarrow {
    width: 35px;
    height: auto;
    vertical-align: middle;
    opacity: 0.9;
}

#profile-username ul li img {
    width: 20px;
    height: auto;
    vertical-align: sub;
}

#profile-username ul li p.user1 {
    font-size: 19px;
    font-weight: bold;
    margin-bottom: 0;
    margin-left: 5px;
    margin-right: 0;
    margin-top: 0;
}

#profile-username ul li p {
    font-size: 19px;
}

#vender-subir-imagenes {
    width: 100%;
    white-space: nowrap;
    overflow: scroll;
    display: inline-block;
    padding: 0 0 6px;
}

.wrapper {
    position: relative;
    width: 140px;
    height: 140px;
    border: 0px dashed #ccc;
    background-color: #edeef0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 4px;
    margin-right: 7px;
}

.placeholder {
    width: 35px;
    height: 35px;
    object-fit: contain;
    z-index: 1;
}

#output_image1, #output_image2, #output_image3, #output_image4, #output_image5, #output_image6, #output_image7, #output_image8, #output_image9, #output_image10 {
    object-fit: cover;
    height: var(--wrapperHeight);
}

.delimg {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 16px;
    font-weight: bold;
    border-radius: 50%;
    padding: 2px 6px;
    cursor: pointer;
    display: none;
    z-index: 2;
}

#char_count, #char_count_titulo {
    position: absolute;
    right: 0;
    margin: -19px 11px;
    font-size: 16px;
    font-weight: 500;
    color: gray;
}

#selectingCatsContainer {
    height: auto;
    max-height: 300px;
    overflow-y: auto;
    padding: 20px;
    background: #edeef0;
    border-radius: 4px;
}

#switchTitleContainer, #switchTitleContainerColors, #imagenNew, .switchTitleContainer {
    background: #ededed;
    margin-top: 0;
    width: 100%;
    border-radius: 4px;
    padding: 2px 5px;
    position: relative;
    color: var(--darkgray2);
    font-size: 18px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
}

.titlenewcat.titlenewcatMargin {
    margin: 9px 0;
}

.titlenewcat {
    width: auto;
    padding: 0 5px;
    border-radius: 11px;
    color: black;
    margin: 0;
    background: linear-gradient(45deg, #000000, #000000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sub-category-option {
    padding: 11px 7px;
    margin: 11px 0 11px 25px;
    background: #d9d9d9;
    border-radius: 4px;
    position: relative;
    color: #3a3a3a;
}

.checkboxContainer {
    padding: 8px 4px;
    margin-top: 7px;
    border-radius: 4px;
    color: gray;
    font-size: 14px;
    font-weight: 800;
    display: flex;
    gap: 7px;
}

.cuota-item, .descuento-item, .caractItem {
    margin-top: 10px;
    width: 100%;
    display: inline-flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.medida {
    width: 12%;
    font-weight: 500;
    background: #dbe9ff;
    padding: 8px;
    border-radius: 4px;
    text-align: center;
    color: #000000;
}

.stockContainer {
    display: flex;
    gap: 10px;
    align-items: center;
    color: gray;
}

.cantidad-container {
    display: inline-flex;
    align-items: center;
    border: 0;
    border-radius: 5px;
    overflow: hidden;
    font-family: sans-serif;
    width: 50%;
    background: #edeef0;
}

.cantidad-boton {
    padding: 8px 12px;
    cursor: pointer;
    font-size: 18px;
    user-select: none;
    border-radius: 45px;
    margin: 2px;
}

.add_delete_container {
    display: inline-flex;
    width: 100%;
    justify-content: space-between;
}

.deleteBtn, .addBtn {
    cursor: pointer;
    display: inline-block;
    padding: 7px 11px;
    border-radius: 4px;
    margin-top: 9px;
}

.addBtn {
    color: #084398;
    background: #dbe9ff;
}

.deleteBtn {
    color: #d20000;
    background: #ffdcdc;
}

.variant-block {
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 10px;
}

.addVariantValueBtn {
    color: var(--darkgray);
    background: var(--lightBorderColor);
    margin-right: 20px;
    font-weight: 500;
    font-size: 14px;
}

#switchTitleContainer, #switchTitleContainerColors, #imagenNew, .switchTitleContainer {
    background: #ededed;
    margin-top: 0;
    width: 100%;
    border-radius: 4px;
    padding: 2px 5px;
    position: relative;
    color: var(--darkgray2);
    font-size: 18px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
}

.textoBg {
    padding: 2px;
}

.switchContainer {
    margin: auto;
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0;
    height: fit-content;
}

#configcatBtn {
    background: linear-gradient(45deg, #4dc04dcc, #fff68acc);
}

#configcatBtn, #paintcatBtn {
    position: absolute;
    border-radius: 25px;
    padding: 3px;
    top: 0;
    bottom: 0;
    height: fit-content;
    margin: auto;
    right: 79px;
}

#configcatBtn img, #paintcatBtn img {
    width: 30px;
}

#paintcatBtn {
    right: 120px;
    background: linear-gradient(45deg, #c04da7cc, #7cffedcc);
}

#switchTitleContainer.switchTitleContainerDesign, #imagenNew, #switchTitleContainerColors, .switchTitleContainer {
    border: 0px;
    border-style: solid;
    border-color: #ffffff;
    box-shadow: unset;
    border-radius: 9px;
    height: 91px;
    border-right: 0;
    border-left: 0;
    margin-bottom: 13px;
    justify-content: center;
}

#footer-sub {
    width: 100%;
    text-align: center;
    position: fixed;
    z-index: 9;
    bottom: 50px;
    max-width: 750px;
    margin: auto;
    left: 0;
    right: 0;
    border-top: 3px solid #c2c1d4;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(7px);
}

#footer-sub ul {
    list-style-type: none;
    padding: 0;
}

#footer-sub.footer-sub-bookmarks ul li {
    width: auto;
    min-width: 90px;
}

#footer-sub ul li {
    display: inline-block;
    padding: 9px;
    background: #9f9f9f;
    border-radius: 4px;
    margin: 9px;
    width: 135px;
    font-size: 13.5px;
}

#movermsg {
    background: var(--lightBorderColor);
    width: 100%;
    padding: 9px 15px;
    margin: auto;
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
    border-radius: 9px;
}

#textareaDenuncia, #msg, #subcatname {
    width: 95%;
    resize: none;
    height: 100px;
    border: 1px solid gray;
    margin-left: 2.5%;
    padding: 4px;
    font-size: 20px;
    border-radius: 7px;
}

#mySidenavMenuProfile a.subcat {
    padding-left: 50px;
}

.subtitleMenuNav {
    font-size: 12px;
    color: gray;
    padding: 0 0 0 33px;
    font-weight: bold;
    margin-top: 5px;
}

.divisionContainer {
    background: #e7e7e7;
    margin: 15px 15px;
    border-radius: 11px;
}

.menuBack {
    width: 32px;
    position: absolute;
    top: 0;
    margin: 15px;
    z-index: 12px;
}

#lists_container {
    overflow: auto;
    margin: 10px;
    margin-bottom: 90px;
}

.groupContainer {
    position: relative;
    height: 60px;
    padding: 6px;
}

.groupContainerImg {
    width: 50px;
    height: 50px;
    object-fit: cover;
    position: absolute;
    border-radius: 7px;
}

#groupsToPublish .groupContainer p.groupContainerP, 
#menuContent .groupContainer p.groupContainerP, 
#lists_container .groupContainer p.groupContainerP {
    margin-left: 65px;
    text-align: left;
    margin-right: 35px;
    margin-top: 5px;
    color: #3F51B5;
    font-weight: bold;
}

#groupsToPublish input.groupCheck, 
#menuContent input.groupCheck, 
#lists_container input.groupCheck {
    position: absolute;
    right: 15px;
    top: 7px;
    height: 20px;
    width: 20px;
}

#saveGroupToPublish, #saveListToPublish {
    position: fixed;
    background: var(--blueBtn);
    border-radius: 7px;
    padding: 11px 35px;
    font-size: 14px;
    color: white;
    bottom: 20px;
    right: 0;
    left: 0;
    width: fit-content;
    margin: auto;
    box-shadow: 0px 0px 9px 1px #a9a9a9;
}

.colorCatOpt {
    position: relative;
    padding: 0px 3px 40px;
    font-weight: bold;
    font-size: 15px;
}

#selimg {
    width: fit-content;
    background: var(--blueBtn);
    color: white;
    border-radius: 11px;
    padding: 4px 11px;
    position: absolute;
    top: -3px;
    right: 110px;
}

.copycolorCat, .changecolorCat {
    width: 25px;
    vertical-align: sub;
    margin: 0 5px;
}

.moretools {
    border: 11px;
    background-color: var(--lightGray);
    padding: 10px;
    border-radius: 7px;
    margin: 10px;
    text-decoration: underline;
    text-align: justify;
}

#designCatTools {
    font-family: var(--fontFam);
    height: 50%;
    overflow-y: scroll;
    padding: 9px 11px 100px 11px;
    background: #232323;
    position: fixed;
    width: 100%;
    left: 0;
    z-index: 15;
    bottom: 0;
    border-top: 4px solid #000000;
    transition: 0.7s ease;
}

#designCatTools.closed {
    bottom: -50%;
}

.designToolsSubtitle {
    color: #8d8d8d;
    padding: 7px;
    font-weight: bold;
    font-size: 19px;
}

.designBlock {
    background: linear-gradient(45deg, black, transparent);
    border-radius: 4px;
    padding: 7px;
    margin: 15px 0;
    position: relative;
}

.designBlockTitle {
    padding: 4px 0 9px;
    font-size: 18px;
    color: #dfdfdf;
    display: flex;
}

.alphacolor {
    filter: invert();
    width: 25px;
    height: 25px;
}

.blurcolor {
    position: absolute;
    filter: invert();
    width: 29px;
    height: 29px;
    right: 112px;
    top: 6px;
}

.changecolor {
    position: absolute;
    right: 60px;
    filter: invert();
    width: 28px;
}

.copycolor {
    position: absolute;
    right: 7px;
    filter: invert();
    width: 28px;
}

#selectLogoBtn, #selectHeaderBg, #selectFooterBg {
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    background: #3f3f3f;
    width: fit-content;
    margin: 7px auto;
    border-radius: 25px;
    padding: 3px 20px;
}

#iconCol1 {
    background: #FFFFFF;
}

#iconCol3 {
    background: #000000;
    filter: invert(17%) sepia(50%) saturate(90%) hue-rotate(150deg);
}

#iconCol2 {
    background: #000000;
    border: 1px solid #FFFFFF;
}

.iconColDiv {
    width: 30px;
    height: 30px;
    margin: 7px 3px;
    display: inline-flex;
    border-radius: 25px;
    background: #000000;
}

.productPanorama {
    width: 40px;
    height: 40px;
    margin-right: 2px;
}

.productRectangular {
    width: 40px;
    height: 40px;
}

.cuadrado {
    color: #5b8ed9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    border: 1px solid #003075;
    border-radius: 4px;
    padding: 1px 0 1px 5px;
    margin-top: 11px;
}

.cuadrado img {
    width: 40px;
}

.designBlock img.roundBorderBottomLeftImg {
    transform: rotate(180deg);
}

.designBlock img.roundBorderBottomRightImg {
    transform: scaleY(-1);
}

.designBlock img.roundBorderTopLeftImg {
    transform: rotate(-90deg);
}

.designBlock img.roundBorderBottomRightImg, 
.designBlock img.roundBorderBottomLeftImg, 
.designBlock img.roundBorderTopLeftImg, 
.designBlock img.roundBorderTopRightImg {
    filter: invert(1);
    width: 30px;
    position: absolute;
    top: 10px;
}

.alignTextContainer img {
    filter: invert(1);
}

.alignTextContainer {
    display: inline-flex;
    gap: 10px;
    justify-content: right;
    width: 100%;
}

#title-description.top-titledesc {
    margin-top: 60px;
}

#newbannerimg, #newbannerimg-mobil {
    width: 100%;
    height: 250px;
    background-color: #ccc;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-family: sans-serif;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
}

.designBlock.banner {
    margin-top: 270px;
}

#vincularBannerOpts {
    margin-top: 25px;
    white-space: nowrap;
    overflow: auto;
}

#vincularBannerOpts ul {
    display: flex;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
    justify-content: space-between;
}

#vincularBannerOpts li {
    background-color: #f0f0f0;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    white-space: nowrap;
    border: 1px solid #ccc;
    transition: background 0.2s;
    font-size: 14;
}

#img-favicon {
    text-align: center;
    margin: auto;
    padding: 0px;
    width: 50px;
    height: 50px;
    overflow: hidden;
    border: 2px dashed rgb(180, 180, 180);
    background: url('/img/image_icon_2.png');
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 10px;
    background-size: 25px;
}

.msgCreated {
    text-align: center;
    background: #c2c1d4;
    padding: 15px;
    border-radius: 9px;
    width: 90%;
    margin: auto;
    color: black;
    margin-bottom: 30px;
}

#ventaDiv.mycarrouselstop {
    margin-top: 85px;
}

.mybannerContainer {
    position: relative;
}

.mybanner {
    width: 100%;
    height: 200px;
    margin-bottom: 40px;
    position: relative;
}

.mybannerContainer img.bannerOptions {
    width: 30px;
    position: absolute;
    right: 10px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 45px;
    padding: 4px;
    top: 10px;
}

#lists_container.addcarrousel {
    max-height: 350px;
    margin-bottom: 10px;
}

.myCarrouselContainer img.carrouselOptions {
    width: 20px;
    position: absolute;
    right: 15px;
}

.myCarrouselContainer {
    position: relative;
}

.myCarrouselContainer .titleMyCarrousel {
    width: 90%;
    margin: initial;
}

.sortCarrouselContainer {
    background: #ededed;
    margin-top: 0;
    width: 100%;
    border-radius: 15px;
    position: relative;
    font-size: 18px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 2px dashed;
    padding-top: 10px;
    padding-left: 10px;
}

.carrousel.carrouselSortMargin {
    margin-bottom: 0;
}

.carrousel li.sortCarr {
    width: 100px;
}

.wrapper.showcaselogos {
    border-radius: 100px;
}

.delimg.showcaselogos {
    bottom: 0px;
    width: 100%;
    text-align: center;
    top: unset;
    right: unset;
}

.inputContainerText {
    font-size: 15px;
    font-weight: bold;
    position: absolute;
    background: white;
    padding: 0 5;
    left: 10px;
    top: -5px;
    border-radius: 15px;
}

.inputContainer {
    position: relative;
    margin-bottom: 15px;
}

#colorContainer {
    margin-top: 15px;
}

.restoretext {
    position: absolute;
    display: flex;
    gap: 4px;
    font-size: 14px;
    align-items: center;
}

.regUsers_container {
    display: grid;
    grid-template-columns: 40% 40% 10% 10%;
    margin-bottom: 22px;
    font-size: 14px;
}

.regUsers_container .col1 p.name {
    font-size: 20px;
    font-weight: 600;
}

.regUsers_container p {
    margin: 0;
}

.regUsers_container .col1 {
    word-break: break-word;
    padding-right: 15px;
}

.regUsers_container .col2 {
    word-break: break-word;
    align-items: flex-end;
    padding-right: 10;
    display: flex;
}

.regUsers_container .col3 {
    position: relative;
}

.regUsers_container img.wppicon {
    width: 22px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}

.regUsers_container img.deleteicon {
    width: 28px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}

.linksContainer {
    display: flex;
    position: relative;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    background: #efefef;
    padding: 4px 50px 4px 4px;
    border-radius: 7px;
    font-size: 16px;
}

.linksContainer img {
    width: 24px;
    margin: 5px;
}

.linksContainer img.deletelink, .couponsContainer img.deletelink {
    position: absolute;
    width: 20px;
    right: 10px;
    top: 10px;
    margin: auto;
}

.cuponcode {
    position: relative;
    margin-bottom: 15px;
    padding: 0 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.img_copy_cupon {
    width: 27px;
}

.coupon_state {
    position: absolute;
    right: 0;
    top: 0;
    font-weight: bold;
}

.couponsContainer {
    display: flex;
    position: relative;
    align-items: center;
    gap: 15px;
    margin-bottom: 25;
    background: #efefef;
    padding: 4px 50px 4px 10px;
    border-radius: 15px;
    font-size: 14px;
}

.cuponline {
    width: 4px;
    background: #efefef;
    height: 100%;
    position: absolute;
    border: 2px dashed white;
    left: 82px;
}

.cupon_desc_col {
    font-size: 13px;
    text-align: center;
    width: 110px;
}

.descuentoCupon {
    font-size: 23px;
}

.cuponleft, .cuponright {
    background: #ffffff;
    height: 30px;
    width: 15px;
    position: absolute;
    border-radius: 0 100px 100px 0;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.cuponright {
    right: 0;
    left: unset;
    border-radius: 100px 0 0 100px;
}

#descargarcvs {
    width: 100%;
    padding: 15;
    background: #003d95;
    margin-bottom: 30px;
    border-radius: 4px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

#descargarcvs img {
    width: 25px;
    filter: invert(1);
}

.showNewsletters {
    display: flex;
    justify-content: space-between;
    padding: 7px;
    color: #5f5f5f;
}

.statusLabel {
    position: absolute;
    right: 19px;
    bottom: 15px;
}

.statusPayMethod.act {
    color: green;
    font-weight: 600;
}

.statusPayMethod {
    text-align: right;
}

.inputContainerText.psm {
    top: -10px;
}

#whatsappContainer {
    position: relative;
}

.descContainer {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 17px;
    font-size: 14px;
    justify-content: flex-end;
}

.state {
    color: green;
    background: linear-gradient(90deg, #e2ffe2, transparent);
    padding: 3 9;
    border-radius: 11px;
    margin-bottom: 5px;
    display: block;
    font-size: 14px;
}

.constock, .divfijado {
    background: linear-gradient(90deg, #c7c7c7, transparent);
    color: gray;
    padding: 3 9;
    border-radius: 11px;
    margin-bottom: 5px;
    display: block;
    font-size: 14px;
}

.fijado {
    width: 15px;
    vertical-align: bottom;
    filter: contrast(0.2);
}

.product_container {
    display: grid;
    grid-template-columns: 85px auto 45px;
    margin-bottom: 22px;
}

.product_col1 img {
    border-radius: 7px;
    object-fit: contain;
    border: 1px solid #dfdfdf;
    background: #dfdfdf;
}

.prodTitle {
    width: 90%;
    background: #e1e1e1;
    padding: 11px 7px;
    margin: 0px auto 10px;
    border-radius: 7px;
    font-size: 15px;
    font-weight: bold;
    color: var(--darkgray2);
}

.product_col3 {
    position: relative;
}

.profileOptionsBtnGridSold img {
    width: 26px;
}

.profileOptionsBtnGridCat img { 
    width: 21px; 
}

.profileOptionsBtn.profileOptionBtnCatalog {
    bottom: 35;
}

.profileOptionsBtn img, .profileOptionsBtnGrid img, .profileOptionsBtnGrid-2 img { 
    width: 15px; 
}

.profileOptionsBtn, .profileOptionsBtnGrid, .profileOptionsBtnGrid-2 {
    position: absolute;
    right: 9px;
    top: 0;
    padding: 7px;
    z-index: 4;
}

/** PRODUCT ADMIN VIEW **/

.profileOptionsBtnGridCat {
    position: absolute;
    right: 9px;
    padding: 4px;
    z-index: 4;
    top: 30px;
}

.profileOptionsBtnGridSold {
    position: absolute;
    right: 7px;
    padding: 4px;
    z-index: 4;
    top: 65px;
}

.adminProdOptions {
    position: absolute;
    display: flex;
    top: 0;
    right: 67px;
    margin: 3px 20px;
    color: black;
    font-size: 16px;
    font-weight: 700;
    gap: 6px;
    align-items: center;
}

.adminProdOptions img {
    width: 18px;
}

.allprods {
    position: absolute;
    top: -7px;
    display: flex;
    align-items: center;
}

.allprods img {
    width: 25px;
}

.allprods img.left {
    width: 40px;
    margin-right: -10px;
}

.prom {
    margin-bottom: 15px;
    font-weight: 400;
    font-size: 15px;
    overflow: auto;
    max-height: 150px;
}

.descripcion {
    font-weight: 500;
    font-size: 15px;
    color: var(--darkgray);
    white-space: pre-line;
    margin-top: -15px;
}

.noprodsAdmin {
    width: 93%;
    max-width: 700px;
    margin: 0 auto 20px;
    color: gray;
}

.panterior {
    text-decoration: line-through;
    font-size: 16;
    font-weight: lighter;
}

.pquitado {
    margin-bottom: 15px;
}

.pprice {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: bold;
    display: flex;
    gap: 10px;
    align-items: center;
}

.promGrid {
    font-size: 15px;
    padding: 4px;
    color: #474747;
    position: relative;
    padding-left: 26px;
}

.promGrid img {
    width: 18px;
    vertical-align: middle;
    margin-right: 3px;
    position: absolute;
    left: 0;
    height: 18px;
    margin: auto;
    top: 3px;
}

.divcaract {
    width: 130px;
    font-weight: bold;
}

.caracteristica {
    width: 100%;
    display: flex;
    font-size: 15px;
    font-weight: 500;
    padding: 3px 0px;
}

.color-container {
    display: inline-flex;
    gap: 7px;
}

.prodcol {
    border-radius: 45px;
    width: 25px;
    height: 25px;
    border: 1px dotted gray;
}

.subTitleProd {
    color: gray;
    font-size: 17px;
    padding: 5 0;
}

.titleProd {
    font-size: 14px;
    height: auto;
    font-weight: 800;
    width: 100%;
    display: block;
    padding: 0;
    z-index: 1;
    bottom: 0;
    color: var(--darkgray2);
    margin-bottom: 15px;
}

.caracteristicasContainer.estadisticas {
    padding: 7px;
    background: #e0edff;
    border-radius: 7px;
    margin: 25px 0 150px 0;
}

/** **/

li.faqs {
    position: relative;
    list-style-type: none;
    padding: 7px 25px 7px 7px;
    font-weight: 600;
    background: linear-gradient(45deg, #134ea3, #000000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border: 1px solid #dfdfdf;
    border-radius: 4px;
    margin-bottom: 10px;
}

i.faqs img {
    position: absolute;
    right: 7px;
    top: 12px;
    width: 13px;
}

p.faqanswer {
    white-space: pre-line;
    margin: -18px 5 5 5;
}

img.faqimg {
    width: 100%;
    border-radius: 9px;
    margin-top: 10px;
}

#saved {
    width: 90%;
    background: #000000CC;
    color: white;
    font-size: 15px;
    text-align: center;
    position: fixed;
    margin: auto;
    height: 70px;
    animation: hideAnimation 0.5s ease-in 4s;
    animation-fill-mode: forwards;
    align-content: center;
    display: grid;
    z-index: 25;
    left: 0;
    right: 0;
    font-weight: 800;
    top: 15px;
    border-radius: 25px;
    max-width: 500px;
    padding: 0 5px;
}

@keyframes hideAnimation {
    to {
      visibility: hidden;
      opacity: 0.0;
    }
}

#headerTienda .header-redcircle {
    padding: 5;
    position: absolute;
    right: 0;
    margin: 10 40;
    top: 0;
    background: var(--notifCircle);
    text-align: center;
    border-radius: 20px;
    color: white;
    font-size: 13.5;
    font-weight: 500;
    min-width: 25;
    animation-name: notif;
    animation-duration: 1.5s;  
    animation-fill-mode: forwards;
}

@keyframes notif {
    from { top: -40px; }
    to { top: 5px; background-color: var(--notifCircle); } 
}

@keyframes likeani {
    from { top: -5px; }
    to { top: -16px; background-color: rgb(255, 255, 255); color: gray; }
}

#search-terms ul li.historyTitle {
    color: gray;
    font-weight: 600;
}

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

#search-terms ul li {
    padding: 11px 18px;
    border-bottom: 1px solid #bfbfbf;
    display: flex;
    align-items: center;
}

#search-terms img {
    width: 22px;
    margin-right: 7px;
    vertical-align: bottom;
}

#search-terms {
    margin-top: 10px;
    height: 100vh;
    height: -webkit-fill-available;
    height: 100dvh;
}

#historySearch {
    position: fixed;
    background: white;
    width: 100%;
    z-index: 5;
    overflow: auto;
    height: 100%;
}

#searchResults {
    height: 100%;
    overflow: auto;
    position: fixed;
    z-index: 6;
    background: white;
    width: 100%;
    display: none;
}

#theOrder {
    width: 85%;
    margin: 0 auto 150px;
}

.orderData {
    display: flex;
    border-bottom: 1px solid gainsboro;
    padding: 5px;
}

#theOrder .tit {
    min-width: 145px;
    font-weight: 500;
    color: var(--darkgray2);
}

.print {
    position: absolute;
    top: 0;
}

.print img {
    width: 28px;
}

.mainBtn {
    border-radius: 4px;
    background: var(--blueBtn);
    color: white;
    width: fit-content;
    margin: 18px auto 150px;
    display: flex;
    gap: 5px;
    padding: 9px 20px;
    font-size: 16px;
    align-items: center;
    font-weight: bold;
}

.mainBtn img {
    width: 24px;
    filter: invert();
}

.noVentasMsg {
    text-align: center;
    font-size: 16px;
    width: 80%;
    margin: 15px auto;
}

#addventa {
    position: absolute;
    top: -3.5px;
    left: 18px;
}

#addventa img {
    width: 30px;
}

#backMenu {
    position: absolute;
    left: 15px;
    top: 5px;
}

#backMenu img {
    width: 18px;
}

.selectBuyer {
    position: relative;
    padding: 13px 7px;
    background-color: rgb(196, 196, 196);
    border-radius: 4px;
    margin: 7 0;
    font-size: 15px;
    background: linear-gradient(45deg, #d1d8ff, #89e58d);
    font-weight: bold;
}

.selectBuyer img {
    position: absolute;
    width: 15px;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.selectedBuyer {
    max-height: 0;            /* Cerrado inicialmente */
    overflow: hidden;         /* Evita que se vea el contenido fuera del contenedor */
    opacity: 0;               /* Transparente al inicio */
    transition: max-height 0.4s ease, opacity 0.4s ease; /* Animación */
}

/* Estado abierto */
.selectedBuyer.show {
    max-height: 500px; /* Suficiente para el contenido más alto */
    opacity: 1;
}

.noUserDiv {
    background: #ededed;
    margin: 0;
    width: 100%;
    padding: 11px;
    font-size: 15px;
    font-weight: 500;
    text-align: left;
    color: var(--darkgray71);
}

.formLabel {
    color: gray;
    padding: 4px;
    margin-top: 15px;
    font-weight: bold;
}

.deleteLink { color: gray; text-decoration: none; }

.subDesignCatToolsTitle {
    color: #5b8ed9;
    font-size: 18px;
    font-weight: 800;
    padding: 10px 0 10px 7px;
    position: relative;
}

.subDesignCatToolsTitle:hover { cursor: pointer; opacity: 0.75; }

.fonts {
    color: white;
    padding: 7px; 
    margin: 0;
    border-radius: 7px;
    font-size: 25px;
}

.fontselected { background: gray; }

.f1 { font-family: Arial, Helvetica, sans-serif; }
.f2 { font-family: 'Times New Roman', Times, serif; }
.f3 { font-family: 'Courier New', Courier, monospace; }
.f4 { font-family: "Roboto", sans-serif; }
.f5 { font-family: 'Plus Jakarta Sans', sans-serif; }
.f6 { font-family: Verdana, Geneva, Tahoma, sans-serif; }
.f7 { font-family: 'Comic Neue', cursive; }
.f8 { font-family: "Open Sans", sans-serif; }
.f9 { font-family: "Poppins", sans-serif; }
.f10 { font-family: "Lato", sans-serif; }
.f11 { font-family: "Nunito", sans-serif; }
.f12 { font-family: "Inter", sans-serif; }
.f13 { font-family: "Montserrat", sans-serif; }
.f14 { font-family: "Work Sans", sans-serif; }
.f15 { font-family: "Mulish", sans-serif; }
.f16 { font-family: "Merriweather", serif; }
.f17 { font-family: "Lora", serif; }
.f18 { font-family: "Playfair Display", serif; }
.f19 { font-family: "Libre Baskerville", serif; }
.f20 { font-family: "Cormorant Garamond", serif; }
.f21 { font-family: "Oswald", sans-serif; }
.f22 { font-family: "Bebas Neue", sans-serif; }
.f23 { font-family: "Raleway", sans-serif; }
.f24 { font-family: "Anton", sans-serif; }
.f25 { font-family: "Abril Fatface", cursive; }

#closeLeft {
    display: none;
    position: fixed;
    left: 250px;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 25;
    height: fit-content;
    background: #232323;
    padding: 25px 4px;
    border-radius: 0 7px 7px 0;
    transition: 0.7s ease;
}

#closeLeft.closed {
    left: 0;
}

#closeLeft img {
    filter: invert(1);
    width: 15px;
    transition: transform 0.5s ease;
}

#closeLeft.closed img {
    transform: scaleX(-1);
}

#closeBottom {
    display: block;
    position: fixed;
    left: 0;
    right:0;
    bottom: 50%;
    margin: auto;
    z-index: 20;
    height: fit-content;
    width: fit-content;
    background: #232323;
    padding: 4px 25px;
    border-radius: 7px 7px 0 0;
    transition: 0.7s ease;
}

#closeBottom.closed {
    bottom: 0;
}

#closeBottom img {
    filter: invert(1);
    width: 15px;
    transition: transform 0.5s ease;
}

#closeBottom.closed img {
    transform: scaleY(-1);
}

.hide-header {
    transform: translateY(-100%);
}
  
.hide-footer {
    transform: translateY(100%);
}

#tiendaFooter.gotoBottom {
    bottom: 0;
}

.updown {
    width: 24px;
    height: 24px;
    filter: invert(1);
}