@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif !important;
    --primary-color: #8c1f5b;
    --complement-color: #dcdcdc;
    
}

.card__container {
    width: 100vw;
    /*     height: 100vh; */
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main__content__card {
    width: 90%;
    height: auto;
    /*     height: 90%; */
    display: flex;
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-rows: 0.1fr 0.9fr;
    grid-template-columns: repeat(auto-fit, min(320px, 1fr));
    grid-template-areas:
        "title"
        "section";
}

.card__title {
    grid-area: title;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #8c1f5b;
    color: #dcdcdc;
    height: 5em;
    border-radius: 2em 2em 0 0;
    margin-top: 1em;
}

.card__title h1 {
    font-size: 2em;
    color: #8c1f5b;
    font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
        "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
    font-weight: bold;
}
.card__content {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #8c1f5b;
    border-radius: 0 0 1em 1em;
    font-size: calc(50vh / 15);
}

.card__element {
    color: #8c1f5b;
    font-family: Poppins;
    width: 50%;
    padding: 0.5%;
    padding: 0.5em 1em;
}

.card__element-hidden {
    display: none;
}

.card__element-buttom {
    width: 100%;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    padding-top: 1%;
}

.card__element-buttom label {
    text-align: center;
}

.invalid-tooltip {
    position: relative;
    width: 50%;
    text-align: center;
    top: 0;
}

div#mapa {
    width: 100% !important;
    height: 65vh !important;
}

div#mapaM {
    width: 100% !important;
    height: 65vh !important;
}

.textColor {
    font-size: 15px !important;
    font-weight: bold;
    font-family: "Times New Roman", Times, serif;
}

.btn-success_own{
    background-color: var(--primary-color);
    color: var(--complement-color);
    font-family: "Times New Roman", Times, serif;
    font-weight: bold;
    font-size: 16px;
}

@media screen and (min-width: 0px) and (max-width: 1022px) {
    .card__element {
        width: 100%;
        font-size: calc(100vw / 20);
    }

    input::placeholder {
        font-size: calc(100vw / 30);
    }

    input[type="text"],
    input[type="number"] {
        font-size: 30px;
        color: black;
    }

    .PoliticsStaments {
        font-size: calc(100vw / 40);
    }

    .card__content {
        display: flex;
        flex-flow: column nowrap;
        justify-content: center;
        align-items: center;
    }

    .card__element-buttom button {
        width: 100%;
        font-size: calc(100vw / 30);
    }

    .card__title h1 {
        font-size: 2em;
    }

    .textColor {
        font-size: 15px !important;
        color: black !important;
        font-family: "Times New Roman", Times, serif;
        /* background-color: aliceblue; */
    }
}
