:root {
    --green-color: #00EA6A;
    --yellow-color: #F9BE01;
    --light-color: #EDEDED;
    --dark-color: #363537;
    --black-color: #000;
    --text-color: #8C8C8C;
    --border-color: #EDEDED;
    --background: #F6F6F6;
    --green-color-light1: #70EBA7;
    --green-color-light2: #DEFFED;
}
/* Neutralizar estilos del navegador Basico */
* {box-sizing: border-box;}

html {
    background: #fff;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}
span, input, select, option, form, div, button, p, a, h1, h2, h3, h4, h5, h6 {
    font-family: "Plus Jakarta Sans", "Helvetica Neue";
    font-size: inherit;
    text-decoration: none;
    margin: 0;
    color: var(--black-color);
}
green {color: var(--green-color);}

/* Estilos de la Estructura */
body {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 100dvh;
    max-width: 100vw;
    margin: 0;
    padding: 0;
    flex-direction: column;
}
main {padding-bottom: 20px;}
.conteiner {
    width: 100%;
    max-width: 1040px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.leftcolumn>a:hover{
    transform:scale(1.1);
}
.leftcolumn>a>svg{    
    transition: transform 1s; /* Transición suave */
}
.leftcolumn>a>svg:hover{
    transform: rotateY(180deg);
}
.block {
    width: 100%;
    padding: 5px;
    margin: auto 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.txt-center {text-align: center;}
.center {margin: 0 auto;}

/* Titulos */
h1 {font-size: 25px; font-weight: 700;}
h2 {font-size: 20px; font-weight: 700;}
h3 {font-size: 19px; font-weight: 700;}
h4 {font-size: 18px; font-weight: 600;}
h5 {font-size: 17px; font-weight: 600;}
h6 {font-size: 16px; font-weight: 600;}

/* Botones */
.btn-icon {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 5px 10px;
}
/* Define la animación combinada para el efecto de sacudida y agrandamiento */
@keyframes shakeGrow {
    0% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.2) rotate(20deg); }
    50% { transform: scale(1.2) rotate(-20deg); }
    75% { transform: scale(1.2) rotate(20deg); }
    100% { transform: scale(1.2) rotate(0deg); }
}

/* Aplicar animaciones al estado hover del botón */
.alignavatar > svg:hover {
    animation: shakeGrow 1s ease;
    animation-fill-mode: forwards;
}
.alignavatar{
    gap: 20px;
}
.btn-icon svg {stroke: var(--black-color);}
.btn svg {stroke: var(--black-color);}
.btn:hover svg {stroke: var(--border-color);}

.btn {
    width: auto;
    height: auto;
    font-size: 16px;
    line-height: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    padding: 8px 10px;
    border-radius: 10px;
    color: var(--black-color);
    background: var(--border-color);
    transition: all 0.2s ease-in-out;
}

.btn:hover {
    background: var(--black-color);
    color: var(--border-color);
}

.btn-yellow {
    color: var(--black-color);
    background: var(--yellow-color);
}

.btn-avatar {

    margin-top:10px;
}

/* Estilos Header */
header.conteiner {
    width: 100%;
    max-width: 1500px;
    display: flex;
    flex-direction: row;
}

header .block {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-direction: row;
}

.logo {
    font-size: 27px;
    font-weight: 700;
}

header .menu {
    display: flex;
    align-items: center;
    flex-grow: 1;
    line-height: 30px;
    font-size: 16px;
    font-weight: 600;
    gap: 10px;
    flex-direction: row;
}

header .menu .buttons {
    display: flex;
    flex-grow: 1;
    gap: 10px;
    justify-content: end;
    align-items: center;
}

/* Menu Mobile */
.menu-mobile {
    display: none;
    position: fixed;
    bottom: 0px;
    width: 100%;
    background: white;
    border-top: 1px solid var(--border-color);
}
.menu-mobile .menu {
    max-width: 400px;
    width: 100%;
    margin-inline: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.menu-mobile .menu .option {
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    padding: 10px;
    flex-grow: 1;
    transition: all 0.2s ease-in-out;
}

.menu-mobile .menu .option:hover * {
    color: var(--green-color);
    stroke: var(--green-color);
}

/* Body */
.taxo-loop {
    display: flex;
    padding: 4px;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
    overflow-x: auto;
    width: auto;
    width: 100%;
    justify-content: center;
}
.taxonomy {
    width: 100%;
    max-width: 700px;
    display: flex;
    justify-content: center;
    align-self: center;
}
.taxonomy-grid {
    display: flex;
    width: auto;
    gap: 5px;
    flex-direction: column;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
    justify-content: start;
    color: var(--black-color);
    transition: all 0.2s ease-in-out;
}
.taxonomy-grid:hover {
    transform: translateY(-4px);
}
.taxonomy-grid svg {
    width: 50px;
    height: 50px;
    stroke: var(--green-color) !important;
}
.taxonomy-grid path {
    stroke: var(--green-color) !important;
}
.hero-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 20px 0px;
}

/* Grid for Ads */
.grid-posts {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}
/* AD Sinle Grid */
.post-grid {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 100%;
    height: 100%;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
}
.post-grid:hover {
    transform: translateY(-3px);
}
.post-grid .flag {
    padding: 3px 8px;
    top: 5px; left: 5px;
    border-radius: 8px;
    position: absolute;
    font-size: 10px;
    font-weight: 600;
    color: var(--black-color);
    background: var(--green-color);
}
.post-grid .thumb {
    aspect-ratio: 1/1;
    object-fit: cover;
    overflow: hidden;
    width: 100%;
}
.post-grid .post-content {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.post-content .title {
    font-size: 14px;
    font-weight: 700;
    line-height: 17px;
    color: var(--dark-color);
    text-transform: uppercase;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
            line-clamp: 2; 
    -webkit-box-orient: vertical;
}
.post-content .price {
    font-size: 16px;
    font-weight: 700;
}
.post-content .location {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 7px;
    flex-wrap: nowrap;
    overflow-x: hidden;
    font-size: 13px;
    color: var(--text-color);
    stroke: var(--text-color);
}
.post-content .location svg {
    width: 14px; height: 14px;
}
.post-content .location path {
    stroke: var(--text-color);
}
.post-content .date {
    margin-top: auto;
    padding-top: 5px;
    text-align: end;
    font-size: 11px;
    color: var(--text-color);
}

.banner-dark {
    background: linear-gradient(90deg, var(--dark-color) 40%, rgba(0, 0, 0, 0.516) 100%), 
    url('/img/banner-1.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 30px;
    border-radius: 20px;
    min-height: 200px;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 10px;
    overflow: hidden;
    color: var(--border-color);
}
.banner-dark > * {
    color: var(--light-color);
}

/* Footer */
footer {
    margin-top: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 10px 10px 10px;
    background: var(--background);
}
footer .credits {
    font-size: 14px;
    color: var(--text-color);
}

/* USER */
.avatar {
    height: 40px;
    aspect-ratio: 1/1;
    width: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 100px;
}

/* SEARCH PAGE */

.search-post {
    padding-top: 20px;
}

.search-post form {
    max-width: 300px;
}

.search {
    position: relative;
}

.search input {
    width: 100%;
    border-radius: 10px;
    padding: 15px 20px 15px 40px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
    border: 1px solid var(--border-color);
    outline: none;
    transition: all 0.2s ease-in-out;
}

.search svg {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    box-sizing: border-box;
}

.search path{
    stroke: var(--text-color);
}

#map {
    height: 300px;
    margin-bottom: 15px;
    overflow: hidden;
}

.order-post {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 15px;
    color: var(--text-color);
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}

.order {
    color: var(--dark-color);
    font-size: 16px;    
}

.order select {
    border: none;
    color: var(--green-color);
    font-weight: 700;
    outline: none;
}

/* MESSAGES PAGE */
.messages {
    padding-top: 20px;
}

.account {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
}

.chats {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chats .chat {
    display: flex;
    flex-direction: row;
    gap: 15px;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
}

.chats .chat .info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.info .user {
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
}
.info .ad {
    line-height: 14px;
    font-size: 14px;
}
.chats .chat:hover {
    background: var(--border-color);
    cursor: pointer;
}
.chats .chat.selected {
    background: var(--background);
}

.chat-messages {
    width: 60%;
    display: flex;
    flex-direction: column;
    padding: 0px;
    gap: 0px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    min-height: 60dvh;
    max-height: 70dvh;
}

.chat-info {
    background: var(--green-color-light1);
    padding: 10px;
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
}

.chat-info .info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 15px;
    line-height: 15px;
}
.chat-info .info span:nth-child(1){
    font-weight: 600;
}

.chat-msg {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px;
    flex-grow: 1;
    overflow-y: auto;
}

.chat-msg .msg {
    width: auto;
    padding: 15px;
}

.chat-msg .msg.user {
    margin-right: auto;
    background: var(--background);
    border-radius: 20px 20px 20px 0px;
}

.chat-msg .msg.iam {
    margin-left: auto;
    background: var(--green-color-light2);
    border-radius: 20px 20px 0px 20px;
}

.chat-send {
    display: flex;
    flex-direction: row;
    width: 100%;
    position: relative;
    border-top: 1px solid var(--border-color);
}

.chat-send input {
    width: 100%;
    outline: none;
    border: none;
    padding: 15px;
    padding-right: 60px;
}

.chat-send .btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    aspect-ratio: 1/1;
    border-radius: 100px;
    border: none;
    background: var(--green-color);
    color: white;
}
.chat-send .btn svg {
    width: 25px;
    height: 25px;
}
.chat-send .btn path {
    fill: var(--light-color);
    stroke: var(--green-color);
}

/*Parte pantopro*/
.Icono-Vendedor{
    max-width: 35%;
    padding: 0%;
    margin: 0%;

}

.Container-image{
    background: #969f9a;
    padding: 0%;
    margin: 0%;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    aspect-ratio: 1/1;
    justify-content: center;
    position: relative;
    border-radius: 10px;
   
}
.icon-next{
    display: flex;
    position: absolute;
    right: 10px;
    opacity: 85%;
    padding: 0px;
    
}
.icon-preview{
    display: flex;
    position: absolute;
    opacity: 85%;
    padding: 0px;
    left: 10px;

}
.icon-next svg{
    transition: transform 0.3s ease;
}
.icon-next svg:hover{
    cursor: pointer;
}
.icon-next svg:active{
    transform: scale(1.2);
}
.icon-preview svg{
    transition: transform 0.3s ease;
}
.icon-preview svg:hover{
    cursor: pointer;
}
.icon-preview svg:active{
    transform: scale(1.2);
}



.product-image{
    display: flex;
    padding: 0px; 
    height: 100%;
    width: auto;
    object-fit: contain;  
  
}

.container-contact{   
    padding: 0px;
    margin: 0px;  
}

.container-left{
    width: 50%;
}
.container-right{
    width: 35%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}
.block.container-product{
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: start;
    justify-content: space-between;
}
.Contact-datos{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20PX;
    align-items: center;
  
}
.Contact-datos svg{
    flex-grow: 1;
    flex-direction: row;
    display: flex;
    justify-content: end;
}
.Buttons-send{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 20px;
}
.Buttons-send :hover path{
    stroke: #d8d8d8;
}
.especifaction-contact{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 20px;  
    gap: 5px;
    
}

.especifaction-contact h2{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
    
    
}
.icons-contact{
    display: flex;
    gap: 10px;
}

.icons-contact svg{
    cursor: pointer;
    padding:9px;
    background: #d8d8d8;
    border-radius: 200px;
    width: 40px;
    height: 40px;
    transition: 1s ease;
    
    
}
.icons-contact svg:hover{
    transform: translateY(-7px) rotateZ(360deg);
    background-color: #2ff789;
}
.container-contacto{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 15px;
}
.reports{
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 20px;
    align-items: start;   
}
.reports h2{
    font-size: 20px;
}
.title-product{
    padding-top: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 80px;
}


.title-product svg{
    width: 30px;
    height: 30px;
}

.title-product path{
    stroke: #00EA6A;
}
.title-product svg:hover path{
    
    fill: #00EA6A;
}
.title-product h1{
    font-size: 30px;
}
.report-button{
    padding: 10px;
    border: 1px solid brown;
    border-radius: 10px;
    color: brown;
    font-weight: 600;
    width: auto;
}

.price-product{
    display: flex;
    flex-direction: row;
    gap: 50px;
    padding-top: 20px;
    align-items: center;
 
    
}
.price-product  h1{
    font-size: 30px;
    font-weight: 1000;
}
.runing-send{
    display: flex;
    flex-direction: row;
    gap: 10px;
    left: -100%;
    overflow: auto;
    animation: run 3s infinite ease;
    position: relative;
}
.runing-send svg path{
    stroke: #136143;
  
}


.price-product a{
  
    display: flex;
    gap: 10px;
    font-size: 15px;
    padding: 10px;
    background: linear-gradient(190deg,#00EA6A,70%, rgba(48, 209, 158, 0.442));
    color: #f0f8ff;
    border-radius: 10px; 
    overflow: hidden;
}
.price-product a h1{
    font-size: 15px;
    font-weight: 300;
    color: #F6F6F6;
    position: relative; 
    overflow: hidden; 
}

.ubication-product{
    display: flex;
    flex-direction: row;   
    align-items: center;
    padding-top: 10px;
    
    
}

.ubication-product span{
    display: flex;
    gap: 8px;
    color: #b5b5b5;
    align-items: center;  
}
.detalls-product{
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-top: 20px;
}

.detalls-product h1{
    font-size: 20px;
    
}

.detalls-product span{
    color: #b5b5b5;
}
.detalls-product h2{
    font-weight: 400;
    font-size: 20px;
}

.description-product{
    display: flex;
    flex-direction: column;
    padding-top: 20px;
    gap: 10px;
}

.description-product h1{
    font-size: 20px;
}
.description-product span{
    color: #b5b5b5;
}
.publication-product{
    display: flex;
    flex-direction: column;
    padding-top: 20px;
    gap: 10px;    
}
.publication-product span{
    color: #b5b5b5;
}
.favorite-product{
    display: flex;
    flex-direction: column;
    padding-top: 20px;
    gap: 10px;
}
.favorite-product span{
    color: #b5b5b5;
    display: flex;
    gap: 5px;
}
.container-information{
    display: flex;
    flex-direction: row;
    gap: 50px;
}

.favorite-product path{
    stroke: #999999;
}
.Contact-datos h2{
    font-size: 20px

}
.especifaction-contact span{
    display: flex;
    gap: 5px;
}
.report-button:hover {
   background-color: brown;
   color: #f0f8ff;

}

/* Login */
.container-login{
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
}
.container-buttons{
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    max-width: 250px;
    
}
.container-buttons .btn-yellow.btn{
    font-size: 14px;
    display: flex;
    justify-content: center;
    gap: 5px;
    background-color: #000000;
    color: #fff;
}
.container-buttons svg path{
    stroke: #fff;
}
.container-buttons .btn-yellow.btn:hover{
    background-color: #333232;
    color: #fff;
}
.form-login{
    display: flex;
    flex-direction: column;
    width: 250px;
    gap: 5px;
    font-size: 15px;   
}
.form-login span{
    color: #8C8C8C;
}

.form-login input{
    height: 30px;
    
    border-radius: 5px;
    border: 1px solid rgb(160, 160, 164);
    
}
form{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.btn-iniciosesion input{
    display: flex;
    flex-direction: column;
    width: 250px;
    border-style: hidden;
    background-color: var(--green-color);
}
.btn-iniciosesion input:hover{
    background-color: #2ff789;
    cursor: pointer;
    color: #020202;
}
.recuperation-register{
    display: flex;
    flex-direction: row;
    gap: 20px;
    font-size: 12px;
}
.input-pass{
    display: flex;
    position: relative;
    align-items: center;
}
.input-pass input{
    width: 250px;
    height: 30px;
    border-radius: 5px;
    border: 1px solid rgb(160, 160, 164);

}
.input-pass svg{
    right: 10px;
    position: absolute;
}
.input-pass svg path{
    stroke: #8C8C8C;
}
.input-pass svg:hover{
    cursor: pointer;

}

.rowleft{
    width: 100%;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: var(--dark-color);
    font-weight: bold;
    font-size: 20px; 
    margin-top: 500;
    text-align: left;
    
}
.cuadro {
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 30px;
    background-color: var(--light-color);
}
.cuadro div:nth-child(1) {
    display: flex;
    flex-direction: column;
    
}
.leftcolumn {
    width: 30%;
    display: flex;
    padding: 20px;
    flex-direction: column;
    gap: 20px;
    color: var(--dark-color);
    font-weight: 800;
    font-size: 20px;
    text-align: left;
    font-family:"Plus Jakarta Sans";
    
}
.leftcolumn a {
    width: 30%; 
    width: 100%;
    max-width: 100x;
    display: flex;
    flex-direction: row;
    gap: 20px;
    font-weight: 600;
    color: var(--text-color);
    font-size: 18px;
    text-align: left;
    transition: 0.3s ease;
}
.subleftcolumn{
    align-items: left;
    display: flex;
    flex-direction: column;
    width: 100%;
}
.subleftcolumn1{
    margin-top: 15px;    
    font-size: 17px;
    font-weight: 700;   
    color: var(--text-color);
}
.subrightcolumn{
    display: flex;
    flex-direction: column;
}
.subrightcolumnA{
    margin-top: 22px
}

.subrightcolumnB{   
    margin-top: 28px
    
}
.subleftcolumnA{
    margin-top: 27px;    
    font-size: 17px;
    font-weight: 700;   
    color: var(--text-color);
}
.subleftcolumnB{
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    margin-top: 13px;    
    font-size: 13px;
    font-weight: 500;
}
.leftcolumnitemf {
    color:var(--green-color)
   
    
}

.rightcolumn {    
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: var(--dark-color);
    font-weight: bold;
    font-size: 20px;
    text-align: left;
}

.firstconteiner {
    display: flex;
    flex-direction: row;
    gap: 20px;    
}

.conteinerb {
    width: 100%;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    
}
.cuadro2 {
    border-radius: 15px;
    display:flex;
    padding: 20px;
    flex-direction: row; 
    background-color: white;
    box-shadow: 0 4px 10px 1px rgba(0, 0, 0, 0.25); /* X=0, Y=4, blur=10, spread=1, color con 25% de opacidad */
}
.cuadro3 {
    display:flex;
    padding: 30px;

    justify-content: space-between;
    flex-direction: row;
    border-radius: 15px;
    background-color: white;
    box-shadow: 0 4px 10px 1px rgba(0, 0, 0, 0.25); /* X=0, Y=4, blur=10, spread=1, color con 25% de opacidad */
}
.middleground{
    margin-top:50;
    font-size:19px;
}
.middleground2{
    margin-top:10;
    font-size:15px;
    font-weight:600;
    color: var(--text-color);
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.inline-group {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

label {
    font-size: 16px;
    color: #363537;
    margin-bottom: 5px;
}

.conteinerb input[type="text"], .conteinerb textarea, .conteinerb select {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 100%;
}

textarea {
    resize: vertical;
}

.termsandconds{
    margin: 0 auto;
    font-weight:700;
}
.file-upload {
    width:400px;
    height:50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background-color: var(--light-color);
    color: white;
    border: 1px solid #b1b1b1;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;

}

.file-upload:hover {
    background-color: #70EBA7;
}

.file-upload input[type="file"] {
    display: none;
}

.submit-button {
    background-color: #00EA6A;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #70EBA7;
}
/* Nuevas cosas de la parte de mamolina */
.btnCambiar{
    border-radius: 10px;
    font-size: 15px;
    padding: 12px;
    border: none;
    cursor: pointer;
    color: #848b89;
    font-weight: 550;
    background: #969f9a31;
}

#logout {
    cursor: pointer;
}

#avatar-img {
    object-fit: cover;
    border-radius: 1000px;
}

#containt-verified {
    display: flex;
    flex-direction: row;
    font-size: 16px;
    gap: 5px;
    align-items: center;
    justify-content: center;
}
#containt-verified > p{
    color: #00EA6A;
}
#containt-verified > span{
  background-color: #00EA6A;
  color: white;
  padding: 2px 7px;
  border-radius: 50%;
}

.subleftcolumnB input {
    display: flex;
    width: auto;
    border-radius: 8px;
    padding: 7px;
    border: #969f9a solid;
    margin: 0;
}

.delete-btn{
    background: #ffcccc;
    border-radius: 10px;
    border: none;
    color: black;
    font-weight: 500;
    text-align: center;
    font-size: 16px;
    line-height: 16px;
    padding: 10px;
    cursor: pointer;
}

.delete-info{
    background: #ccffe3;
    border-radius: 10px;
    border: none;
    color: black;
    font-weight: 500;
    text-align: center;
    font-size: 16px;
    line-height: 16px;
    padding: 10px;
    cursor: pointer;
}

#container-avatar {
    display: flex;
    flex-direction: row; 
    justify-content: space-between;
    gap: 10px;
    width: 100%;
}
.containt-btn-cambiar input{
    display: flex;
    padding: 12px;
    border: none;   
}
.containt-btn-cambiar{
    display: flex;
    padding: 10px;
}

.btn-grey{
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background-color: #969f9a31;
    color: gray;
    padding: 8px 20px;
    border-radius: 10px;
    text-align: center;
    margin-left: 10px;
    min-width: auto;
}

.iconUser{
    background: #00EA6A;
    padding: 35px 45px;
    margin-top: 10px;
    border-radius: 50%;
   
}
.iconUser span{
    font-size: 30px;
    font-weight: bold;
    color: rgb(7, 110, 63);
}

.btn-grey span{
    color: gray;
}
.btn-grey span::first-letter{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: gray;
    font-weight: bold;
}


/* nuevas cosas pantopro */
.block .title{
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.block .title .fire svg {
    filter: drop-shadow(2px 2px 2px rgb(250, 125, 0));
    animation: fire 3s infinite ease-in-out;
}


/* Media Querys */
/* Mobile Big */
@media screen and (max-width:660px) {
    .menu-mobile{
        display: flex;
    }
    header nav.menu > a{
        display: none;
    }
    header .block{ 
        justify-content: center;
    }
    .block.container-product{
        flex-direction: column;  
    }
    .container-left{
        width: 100%;
    }
    .container-right{
        width: 100%;
    }
    .conteiner{
        padding: 15px;
    } 
}

/* Mobile */
@media screen and (max-width:510px) {
    header nav.menu {
        display: none;
    }
}

@media screen and (width < 650px) {
    .subleftcolumnB{
        flex-direction: column;
        align-items: start;
        gap: 10px;
        
    }
    .cuadro2{
        flex-direction: column;
        gap: 20px;
    }
    .btn-grey{
        margin-left: 0px;
    }
    .containt-btn-cambiar{
        padding: 10px 0;
    }
}

/* animations */
@keyframes fire {
    0%{
        filter: drop-shadow(2px 2px 2px rgb(250, 125, 0));
    }
    50%{
        filter: drop-shadow(2px 2px 2px rgb(250, 0, 0));
    }
    100%{
        filter: drop-shadow(2px 2px 2px rgb(250, 125, 0));
    }
}
@keyframes run {
    0% {
        left: -100%;
      }
    50%,70% {
        left: 50%;
        transform: translateX(-50%);
      }
      100% {
        left: 150%;
      }
}
