* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    color: #555;
}

.container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

button {
    border: none;
    background: none;
}

button:focus {
    outline: none;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 6px solid #f3f3f3;
    border-top: 6px solid #00bbff;
    border-radius: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    animation: spin 1s infinite linear;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

h2 {
    text-align: center;
    margin-top: 50px;
    font-size: 30px;
}

a.button {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    text-decoration: none;
    color: initial;
    width: -webkit-fill-available;
}

#eng {
    display: none;
}

.carousel-control-next,
.carousel-control-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: end;
    -ms-flex-pack: center;
    justify-content: center;
    width: 81px;
    padding: 35px;
    padding-bottom: 30px;
    color: #fff;
    text-align: center;
    opacity: 0.8;
    transition: opacity .15s ease;
}

.carousel-indicators {
    margin-bottom: 27px;
}

#tag.eng:empty {
    display: none !important;
}

#tag.esp:empty {
    display: none !important;
}


#tag {
    background: #fff;
    color: #000;
    border-radius: 4px;
    font-size: 12px;
    text-align: center;
    padding: 7px 20px;
    z-index: 1000 !important;
    position: absolute;
    margin-left: 19px;
    margin-top: 15px;
}

.back {
    background-color: #00bbff !important;
    padding: 15px;
    display: flex;
    align-items: center;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 10000;
}



img#tour {
    width: auto;
    height: 330px;
    object-fit: cover;
    border-radius: 17px;
}

.logo {
    text-align: center;
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, auto));
    grid-gap: 30px;
    margin: 50px auto;
    max-width: 1500px;
    padding: 20px;
    margin-top: 110px;
}

ul {
    max-height: 150px;
    overflow: scroll;
}

::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 3px;
    height: 23px;
}

::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0, 0, 0, .5);
    -webkit-box-shadow: 0 0 1px rgb(255 255 255 / 50%);
}

.content {
    padding: 30px;
}

.product {
    border-radius: 24px 24px 7px 7px;
    border: 0px !important;
    padding: 10px;
    -webkit-box-shadow: inset 0 -1px 0 0 rgb(0 0 0 / 0%), 8px 10px 15px 8px rgb(19 41 104 / 10%);
}

.product img {
    width: 100%;
    display: block;
}

.product .title {
    text-align: left;
    padding-top: 30px;
    padding-bottom: 20px;
    font-weight: 600;
    font-size: 19px;
    text-transform: initial;
}

.product .description {
    padding: 0 20px 20px 20px;
    line-height: 22px;
}

.product .price {
    text-align: center;
    font-weight: 600;
    font-size: 22px;
    color: #555555;
    font-family: sans-serif;
    width: max-content;
    padding-left: 18px;
    text-align: center;
    padding: 5px 22px;
    margin-left: 0px;
    border-radius: 4px;
    margin-top: 10px;
}
.product .cart {
    text-align: center;
    padding: 15px;
    background-color: #00bbff;
    color: white;
    font-size: 17px;
    border-radius: 3px;
    cursor: pointer;
    position: initial;
}

.product .cart i {
    padding-left: 10px;
}