:root {
    /* Colores de la equipación de V&V */
    --color-1: #f5f5f5;
    --color-2: #cc232a;
    /* Colores del logo de V&V */
    --color-3: #0d2e60;
    --color-4: #0d2e60;
    --color-5: #1e1a64;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100vh !important;
}

body {
    background-color: var(--color-1) !important;
    /* background: linear-gradient(150deg, var(--color-1) 80%, #0d2e60);
    height: 100vh !important;
    width: 100vw; */
}

svg {
    display: none;
}

.background {
    display: block;
    position: fixed;
    z-index: 99;
}

.bg-top {
    top: 0;
}

.bg-bottom {
    bottom: 0;
}

.logo {
    width: 25vw;
    height: 25vw;
    /* min-width: 40px; */
    min-height: 40px;
    max-width: 150px;
    max-height: 150px;
}

.link {
    width: 36px;
    height: 36px;
}

.logo-container {
    width: 90vw;
    position: fixed;
    top: 0;
    margin: 1em 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: x-large;
    z-index: 100;
}

.logo-container-bg,
.footer-bg {
    width: 100vw;
    margin: 0;
    background-color: var(--color-1) !important;
    z-index: 98;
}

.logo-container,
.show-weather,
.white_color {
    color: var(--color-5);
    font-weight: bold;
    text-shadow: 1px 1px 1px white !important;
}

.show-weather img {
    width: 24px;
    height: 24px;
    margin: 0 8px;
}

.show-weather {
    cursor: pointer;
    user-select: none !important;
    font-size: large;
}

#weather {
    margin: 0 !important;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* width: 320px; */
    height: 280px;
}

#dificultadIBP {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#dificultadIBP img {
    width: 100%;
    height: auto;
}

#iframe_aemet_id33044 {
    width: 100%;
    height: 100%;
}

.container {
    margin-top: 25vw;
    padding: 0 1em;
}

label {
    font-weight: bold;
}

.btn-submit {
    background-color: white;
    color: var(--color-2);
    font-weight: bold;
}

.whatsapp,
.apm {
    width: auto;
    height: 32px;
}

footer {
    width: 90vw;
    margin: 1em 5vw;
    display: flex;
    justify-content: center;
}

ul {
    padding: 0;
    list-style: none;
    color: var(--color-5);
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    text-shadow: 1px 1px 1px grey;
}

li {
    margin: 0 .5em;
}

li img {
    height: 2em;
    width: 2em;
}

#terreno {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.terrain-others {
    margin-left: 1em;
    width: 220px;
}

.form-label {
    display: flex;
    align-items: center;
}

#prevision {
    margin-left: .5em;
}

#ibp {
    display: flex;
    /* flex-direction: column; */
    justify-content: center;
    align-items: center;
    overflow-y: hidden;
    height: 148px;
}

.ibp {
    height: 64px;
    width: auto;
}

#ibp iframe {
    position: relative;
    top: -45px;
}

.label-ibp {
    font-weight: 500;
    width: 100%;
    text-align: center;
}

.btn-danger {
    background-color: #cc232a;
}

/* =============================== scrollbar =============================== */
/* =============================== scrollbar =============================== */
/* =============================== scrollbar =============================== */
/* =============================== scrollbar =============================== */

/* width */
::-webkit-scrollbar {
    width: 2px;
    height: 2px;
}

/* Track */
::-webkit-scrollbar-track {
    /* background: #f1f1f1; */
    background: var(--color-2);
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--color-2);
    /* background: #3d3536; */
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    /* background: #03836a; */
    background: var(--color-2);
}

@-webkit-keyframes blinker {
    from {
        opacity: 1.0;
    }

    to {
        opacity: 0.0;
    }
}

@keyframes blinker {
    from {
        opacity: 1.0;
    }

    to {
        opacity: 0.0;
    }
}

.blink {
    text-decoration: blink;
    -webkit-animation-name: blinker;
    animation-name: blinker;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

/* =============================== Not Mobile =============================== */
/* =============================== Not Mobile =============================== */
/* =============================== Not Mobile =============================== */
/* =============================== Not Mobile =============================== */

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {

    .bg-bottom {
        display: none;
    }

}