header {
    min-height: 10vh;
}

footer {
    min-height: 10vh;
}

main {
    min-height: 70vh;
}

.hover-assinatura {
    min-height: 350px;
    border-color: #80AED1;
}

.hover-assinatura:hover {
    opacity: 0.5;
    border-color: #80AED1;
}

.btn-primary {
    background-color: #0f2d87;
    border: #0f2d87;
}

.btn-primary:hover {
    background-color: #0f2d87;
    border: #0f2d87;
}

.btn-primary svg {
    display: none;
}

.btn-primary:hover svg {
    display: initial;
}

.btn-outline-primary{
    border-color: #0f2d87;
    color: #0f2d87;
}

.btn-outline-primary:hover{
    background-color: #0f2d87;
    color: #ffffff;
}

.btn-outline-primary:hover svg{
    color: #ffffff;
}

textarea {
    display: none;
    background-color: black;
    color: white;
    height: 200px;
    width: 100%;
    overflow: hidden;
}

#addCargo {
    text-decoration: underline;
    cursor: pointer;
}

.cursor-pointer:hover{
    cursor: pointer;
}

.hidden{
    display: none;
}

#popup-video{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.75);
    z-index: 100;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.video-popup-container{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.fechar-popup{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.fechar-txt{
    color: white;
    margin-bottom: 0;
}

#video{
    max-height: 90%;
    max-width: 90%;
}

.video-txt{
    text-decoration: underline;
    text-align: center;
    margin-top: 40px;
}

.popup-video.show{
    opacity: 1 !important;
    transition: opacity 0.5s ease-in-out !important;
}