@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500&display=swap');

* {
    font-family: 'Orbitron', sans-serif !important;
}

.d-none {
    display: none;
}

.container-teste {
    max-width: 1300px;
    margin: 0 auto;
}

.compare-yama {
    padding-left: 15px;
    padding-right: 15px;
}

.compare-yama-vertical-divider {
    width: 2px;
    height: 250px;
    background-color: #000;
    align-self: flex-start;
    margin-top: 5vw;
}

.compare-yama-custom-font {
    font-family: 'Orbitron', sans-serif !important;
}

.compare-yama-title {
    width: 100%;
    text-align: center;
    font-size: 4rem;
    margin-bottom: 3rem;
}

.compare-yama-product-list {
    display: flex;
    justify-content: center;
    align-items: center
}

.compare-yama-product {
    width: 40vw;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.compare-yama-product-image {
    width: 70%;
}

.compare-yama-product-image img {
    width: 100%;
}

.compare-yama-product-details {
    text-align: center;
    width: 70%;
}

.compare-yama-product-title {
    font-weight: 500;
    font-size: 3rem;
    margin: 2rem 0 0;
    line-height: 1;
    text-transform: uppercase;
}

.compare-yama-product-subtitle {
    font-size: 1.5rem;
    margin: 0rem 0 0;
}

.compare-yama-product-colors {
    display: flex;
    justify-content: center;
}

.compare-yama-product-colors span {
    display: block;
    width: 17px;
    height: 17px;
    border-radius: 100%;
    margin: 1rem .5rem 0;
    border: 1px solid #000;
    cursor: pointer;
    transition: .2s;
}

.compare-yama-product-colors span:hover {
    transform: scale(1.3);
}

.compare-yama-product-attributes {
    padding: 0;
    margin: 2rem 0 0;
    list-style: none;
    width: 101%;
}

.compare-yama-product-attributes li:first-child {
    border-top: 1px solid #000;
}

.compare-yama-product-attributes li {
    min-height: 70px;
    display: flex;
    width: 100%;
    border-bottom: 1px solid #000;
    padding: 0 4rem;
}

.compare-yama-product-attributes-item {
    display: flex;
    align-items: center;
    width: 100%;
}

.compare-yama-product-attributes-item p {
    margin: 0 0 0 1rem;
    font-size: 1.5rem;
}

.compare-yama-product-without-attributes {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

@media screen and (max-width: 767px) {
    .compare-yama-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .compare-yama-product-attributes li {
        padding: 1rem 2rem;
        height: 110px;
    }

    .compare-yama-product-attributes-item {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .compare-yama-product-attributes-item p {
        text-align: center;
        margin-top: .5rem;
    }

    .compare-yama-vertical-divider {
        display: none;
    }

    .compare-yama-product-title {
        font-size: 2.5rem;
        margin: 1rem 0 0;
    }
}

@media screen and (max-width: 500px) {
    .compare-yama-product-attributes li {
        height: 130px;
    }
}

@media screen and (max-width: 425px) {
    .compare-yama-product-attributes li {
        height: 170px;
    }
}