﻿@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Fjalla+One&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Oswald:wght@200..700&family=Special+Gothic&display=swap');
.oswald{
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
}
/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}


.fonte-laranja {
    color: rgb(219, 87, 0)
}
.fundo-laranja{
    background-color: rgb(255, 137, 59);
}
.fundo-laranja-degrade {
    background: #FF893B;
    background: linear-gradient(90deg,rgb(219, 87, 0) 0%, rgb(255, 137, 59) 50%, rgb(219, 87, 0) 100%);
}
.fonte-cinza{
    color: rgb(77,77,77);
}

.message-container {
    position: relative;
    width: 100%;
    height: 50px;
    /*overflow: hidden;*/
    display: flex;
    align-items: center;
    justify-content: center;
}

.message {
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    font-size: 18px;
}

    .message.show {
        opacity: 1;
    }

.botaoLaranja {
    background-color: rgb(219, 87, 0);
    border-radius: 0px;
    color: white;
    border: 1px solid white;
    transition: 0.3s ease-in;
}

    .botaoLaranja:hover {
        background-color: white;
        border-radius: 0px;
        color: rgb(219, 87, 0);
        border: 1px solid rgb(219, 87, 0);
    }
.botaoBranco {
    background-color: white;
    border-radius: 0px;
    color: rgb(219, 87, 0);
    border: 1px solid rgb(219, 87, 0);
    transition: 0.3s ease-in;
}

    .botaoBranco:hover {
        background-color: rgb(219, 87, 0);
        border-radius: 0px;
        color: white;
        border: 1px solid white;
    }

.botaoTransparente {
    background-color: transparent;
    border-radius: 0px;
    color: white;
    border: 3px solid white;    
    transition: 0.3s ease-in;
}

    .botaoTransparente:hover {
        border-radius: 0px;
        color: rgb(219, 87, 0);
        border: 3px solid rgb(219, 87, 0);
    }

@media (max-width: 767.98px) {
    .mobile-swap-a {
        order: 4;
    }

    .mobile-swap-b {
        order: 3;
    }
}