
#logo-eventu {
    width: 115px;
}

header {
    display: flex;
    position: fixed;
    width: 100%;
    max-width: 800px;
    background-color: rgba(255, 255, 255, 0.76);
    padding: 10px;
    top: 20px;
    left: 50%;
    z-index: 10;
    transform: translateX(-50%);
    align-items: center;
    border-radius: 10px;
    backdrop-filter: blur(8px);
    box-shadow: 1px 1px 10px 0 rgba(0,0,0,0.3);
}

header button {
    border: none;
    margin: 0 10px;
    background: transparent;
    color: #f93465;
    font-weight: bold;
}

header button:hover {
    transform: scale(1.1);
    cursor: pointer;
}

footer {
    background-color: #161616;
    position: relative;
    z-index: 10;
    padding: 20px;
}

footer .footer-cont {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

footer a {
    color: #afadad !important;
    text-decoration: none;
    font-size: 0.9em;
    padding: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}

footer span {
    color: #7b7878;
}





.overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    transition: all 0.4s linear;
    backdrop-filter: blur(5px);
    opacity: 0;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
#cart-cont {
    position: fixed;
    width: 400px;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 101;
    box-shadow: 0 -2px 5px 0 rgba(0,0,0,.2);
    background: #f2f2f2;
    transition: all .4s;
    border-radius: 33px 0 0 10px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    color: black;
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 5px 10px;
    background: #fff;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
    position: relative;
}

.cart-image {
    width: 60px;
    height: 60px;
}

.cart-image img {
    width: 100%;
}

.cart-flex {
    padding: 0 10px;
    font-size: 0.9em;
    flex:1;
}

.cart-total {
    font-weight: bold;
    font-size: 0.9em;
}

.cart-delete {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ff3d88;
    border-left: 1px solid #ddd;
    margin-left: 10px;
    padding: 10px 0 10px 10px;
    font-size: 1.5em;
}

.cart-quanty-input {
    width: 40px;
    text-align: right;
    padding: 2px;
    border: 1px solid #666;
}

.cart-seguro {
    position: absolute;
    width: 100%;
    background: #ffffffd4;
    height: 100%;
    left: 0;
    top: 0;
    backdrop-filter: blur(2px);
    border-radius: 4px;
    display: none;
}

.cart-flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: 10px;
}

.cart-seguro-button {
    background: #ff3d88;
    border: none;
    padding: 5px 20px;
    color: white;
    border-radius: 5px;
    margin: 5px 10px;
}

.cart-price {
    font-weight: 500;
    padding-left: 5px;
    font-size: .9em;
    color: #3b3b3b;
}

.cart-name {
    font-weight: 500;
}

.cart-quanty {
    font-weight: 500;
    font-size: 0.9em;
}


.button-comprar {
    padding: 8px 15px;
    background-color: #f20091;
    color: white;
    border-radius: 8px;
    margin: 5px 0;
    border: none;
    font-weight: 600;
}

.button-comprar:hover {
    cursor: pointer;
    transform: scale(1.05);
    transition: all 0.3s;
}


.btn-primary {
    width: 100%;
    height: 40px;
    border: none;
    background: #ff3d88;
    color: white;
    font-weight: 600;
    border-radius: 6px;
}

.btn-primary:hover {
    background: #fc7bac;
    cursor: pointer;
}

#total-panel {
    background: white;
    border-top: 1px solid #eee;
    padding: 20px;
    box-sizing: border-box;
}

#back-list {
    flex: 1;
    overflow: auto;
}

.btn-back {
    width: 40px;
    text-align: center;
    height: 40px;
    line-height: 40px;
    background: #e3e3e3;
    margin: 0 13px;
    border-radius: 21px;
}

.txc {
    text-align: center;
}

.w50 {
    width: 50%;
}

.w60 {
    width: 60%;
}

.relative {
    position: relative;
}

.row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.row.around {
    justify-content: space-around;
}

.flex1 {
    flex: 1;
}

.h30 {
    height: 30px;
}
.h20 {
    height: 20px;
}
#banner-spacer {
    height: 90px;
}




@media (max-width: 600px){
    #cart-cont {
        width:100%;
    }

    header {
        padding: 9px;
        top: 0;
        border-radius: 0;
    }

    #banner-spacer {
        height: 43px;
    }

    #puntos, #vende, #cuenta {
        display: none;
    }

    #logo-eventu {
        width: 90px;
    }


}

