﻿@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

body {
    font-family: "DM Sans", sans-serif;
    border: 0px;
    margin: 0px;
    padding: 0px;
}

.css-selector {
    background: linear-gradient(270deg, #9e969f, #a58fa6); /* #d81be7, #810e8a */
    background-size: 400% 400%;
    -webkit-animation: AnimationName 30s ease infinite;
    -moz-animation: AnimationName 30s ease infinite;
    animation: AnimationName 30s ease infinite;
}

@-webkit-keyframes AnimationName {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

@-moz-keyframes AnimationName {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

@keyframes AnimationName {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

.frmTB {
    /* max-width: 350px; */
    padding: 15px;
    border: 1px solid #151515;
    font-size: 0.9em;
    background-color: #FFF;
    color: #151515;
    display: table-cell;
    border-radius: 5%;
}

.DivCartelAT {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    margin-top: 30px;
    width: 80%;
    height: auto;
    max-height: 200px;
    overflow-y: scroll;
    padding: 15px;
    text-align: center;
    font-family: "DM Sans", sans-serif;
    font-size: 1.1em;
    z-index: 999;
    color: #856404;
    background-color: #ffeeba;
    border: #fff3cd 1px solid;
    border-radius: 2%;
}

.DivCartelADV {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    margin-top: 30px;
    width: 80%;
    height: auto;
    max-height: 200px;
    overflow-y: scroll;
    padding: 15px;
    text-align: center;
    font-family: "DM Sans", sans-serif;
    font-size: 1.1em;
    z-index: 999;
    color: #721c24;
    border-bottom: #f5c6cb 1px solid;
    background-color: #f8d7da;
    border-radius: 2%;
}

.DivCartelOK {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    margin-top: 30px;
    width: 80%;
    height: auto;
    max-height: 200px;
    overflow-y: scroll;
    padding: 15px;
    text-align: center;
    font-family: "DM Sans", sans-serif;
    font-size: 1.1em;
    z-index: 999;
    color: #004085;
    background-color: #cce5ff;
    border-bottom: #b8daff 1px solid;
    border-radius: 2%;
}

.btn {
    border: none;
    color: white;
    padding: 14px 28px;
    cursor: pointer;
    border-radius: 5px;
}

.primary {
    background-color: #007bff;
}

    .primary:hover {
        background: #0b7dda;
    }

.secondary {
    background-color: #e7e7e7;
    color: black;
}

    .secondary:hover {
        background: #ddd;
    }
