#head-error {
    height: 346px;
    background-color: var(--secondary-theme-color);
    display: flex;
    align-items: center;
}
.head-error-title b
{
    color: white;
    background: var(--primary-theme-color);
    border-radius: 5px;
    padding: 0 5px;
}

.container-buttons
{
    margin-top: 12px;
    gap: 1rem;
}
.container-buttons .btn-default
{
    color: white;
    background: var(--primary-theme-color);
}

#mais-produtos
{
    margin-top: 40px;
    margin-bottom: 40px;
}
.mais-produtos-title {
    display: block;
    text-align: center;
}

.glide__arrows 
{
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translate(0, -50%)
}
.glide__arrow 
{
    border: none !important;
    box-shadow: none !important;
    border: 1px solid #CED7DC !important;
    border-radius: 50% !important;
    
    width: 3rem !important;
    height: 3rem !important;

    padding: 1em !important;   

    display: flex !important;
    justify-content: center !important;
    align-items: center !important;

    color: #CED7DC !important;
    font-size: 16px !important;
    transition: all 300ms ease-in-out !important;
}
.glide__arrow:hover
{
    border-color: var( --secondary-theme-color) !important;
    color: var( --secondary-theme-color) !important;

}
.glide__arrow--left 
{
    left: -4em !important;
}
.glide__arrow--right
{
    right: -4em !important;
}
@media screen and (max-width: 768px) {
    .glide__arrow
    {
        display: none !important;
    }
}