.carousel-container {
    display: grid;
    grid-template-columns: 5% 90% 5%;
    align-items: center;
}

/* ---------------------------------------ESTILO DAS ARROWS--------------------------------------- */

.carousel-container .glide__arrows {
    display: flex;
    justify-content: center;
}

.carousel-container .glide__arrows .glide__arrow {
    height: 32px;
    width: 20px;
    border: none;
    background-color: unset;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    cursor: pointer;
}

.carousel-container .glide__arrows .glide__arrow:focus {
    outline: none;
}

.carousel-container .glide__arrows .glide__arrow:active {
    transform: scale(.9);
    transition: transform .1s;
}

/* --------------------------------------------------------------------------------------------- */

.carousel-container .glide__track {
    grid-column: 2;
}

.carousel-container .glide__slides {}

.carousel-container .glide__slides .glide__slide {}

.carousel-container .glide__slides .glide__slide .carousel-card {
    margin: 4px 0;
    border-radius: 4px;
    background-color: var(--alternative-background);
    box-shadow: 0 2px 4px rgba(var(--tertiary-color-rgb), .2);
    cursor: pointer;
}

.carousel-container .glide__slides .glide__slide .carousel-card .carousel-card-header {
    display: grid;
    height: 32px;
    min-width: 100%;
    justify-content: end;
    grid-auto-flow: column;
}

.carousel-container .glide__slides .glide__slide .carousel-card .carousel-card-header .control-button {
    display: block;
    width: 20px;
    margin: 0 8px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}

.carousel-container .glide__slides .glide__slide .carousel-card .carousel-card-content {
    display: flex;
    grid-template-columns: 100%;
    justify-content: center;
    align-items: center;
    min-height: 120px;
}

.carousel-container .glide__slides .glide__slide .carousel-card .carousel-card-img {
    max-width: 45%;
}

.carousel-container .glide__slides .glide__slide .carousel-card .carousel-card-footer {
    margin: 0;
    padding: 16px 0;
    font-weight: 700;
    font-size: 1.5rem;
    text-align: center;
    font-family: Roboto;
    color: var(--secondary-color);
    border-top: solid 1px var(--secondary-color);
}

/* ---------------------------------------ESTILO DOS BULLETS--------------------------------------- */

.carousel-container .glide__bullets {
    display: flex;
    justify-content: center;
    grid-column: 2;
}

.carousel-container .glide__bullet {
    width: 8px;
    height: 8px;
    padding: 0;
    margin-left: 8px;
    border-radius: 50%;
    border: none;
    background-color: var(--secondary-color);
    opacity: .5;
    cursor: pointer;
}

.carousel-container .glide__bullet:first-child {
    margin-left: 0;
}

.carousel-container .glide__bullet.glide__bullet--active {
    opacity: 1;
}