﻿
:root {
    --principal: #FF94E3;
    --principal_light: #FF94E31A;
    --secundario: #8B3C67;
}
@font-face {
    font-family: "Stabil Grotesk Regular";
    src: url("../fonts/StabilGrotesk-Regular.otf");
    font-display: swap;
}

@font-face {
    font-family: "Stabil Grotesk Medium";
    src: url("../fonts/StabilGrotesk-Medium.otf");
    font-display: swap;
}

@font-face {
    font-family: "Stabil Grotesk Bold";
    src: url("../fonts/StabilGrotesk-Bold.otf");
    font-display: swap;
}

@font-face {
    font-family: "Stabil Grotesk Italic";
    src: url("../fonts/StabilGrotesk-Italic.otf");
    font-display: swap;
}


.GroteskRegular {
    font-family: "Stabil Grotesk Regular";
}

.GroteskMedium {
    font-family: "Stabil Grotesk Medium";
}

.GroteskBold {
    font-family: "Stabil Grotesk Bold";
}


.GroteskItalic {
    font-family: "Stabil Grotesk Italic";
}

/* Provide sufficient contrast against white background */
a {
    color: #0366d6;
}



.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    position: relative;
    min-height: 100%;
}

.cargando {
    height: 100vh;
    width: 100vw;
    background-color: whitesmoke;
    position: absolute;
    top: 0px;
    left: 0px;
    text-align: center;
    margin: auto;
    z-index: 999 !important;
}

.spinner-border {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3rem;
    height: 3rem
}

body {
    /* Margin bottom by footer height */
    margin-bottom: 60px;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px; /* Vertically center the text there */
}


.dot {
    height: 20px;
    width: 15px;
    background-color: #00aae4;
    background-image: url("../Img/LogoFooter-fov.png");
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease-in-out;
}

.btn {
    background-color: var(--secundario);
    font-size: 1.5em;
    font-weight: 100;
    color: white;
}

    .btn:hover {
        background-color: var(--secundario);
        filter: brightness(80%);
        color: white;
    }

    .btn:active {
        background-color: var(--secundario) !important;
        filter: brightness(80%);
        color: white !important;
    }


.dot:focus {
    color: mediumpurple;
}

div.stars {
    display: inline-block;
}

input.star {
    display: none;
}

label.star {
    float: right;
    padding: 10px;
    color: #C4C4C4;
    transition: all .2s;
}



@media only screen and (max-width: 600px) {
    label.star {
        font-size: 3.5rem;
    }
}
@media only screen and (min-width: 100px) {
    label.star {
        font-size: 1rem;
    }
}

@media only screen and (min-width: 280px) {
    label.star {
        font-size: 2rem;
    }
}

@media only screen and (min-width: 340px) {
    label.star {
        font-size: 3rem;
    }
}

@media only screen and (min-width: 380px) {
    label.star {
        font-size: 3.5rem;
    }
}

@media only screen and (min-width: 768px) {
    label.star {
        font-size: 3.5rem;
    }
}

@media only screen and (min-width: 992px) {
    label.star {
        font-size: 3.5rem;
    }
}

@media only screen and (min-width: 1200px) {
    label.star {
        font-size: 4rem;
    }
    h1{}
}

input.star:checked ~ label.star:before {
    content: '\f005';
    color: var(--principal);
    transition: all .25s;
}


input.star-5:checked ~ label.star:before {
    color: var(--principal);
    text-shadow: 0px 0px 2px var(--secundario);
}



input.star-1:checked ~ label.star:before {
    color: var(--principal);
}



label.star:hover {
    transform: scale(1.3);
}

label.star:before {
    content: '\f005';
    font-family: FontAwesome;
}

ul.list {
    list-style: none;
    padding: 0px;
}

    ul.list li {
    }

        ul.list li label {
            display: block;
            border: 1.5px solid var(--secundario);
            background-color: white;
            color: rgba(0, 0, 0, 0.8);
            font-size: 1em;
            border-radius: 8px;
            margin: 0 0 10px 0;
            padding: 2px 5px;
            -webkit-touch-callout: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
            -webkit-tap-highlight-color: transparent;
            -webkit-transition: all .2s;
            -o-transition: all .2s;
            transition: all .2s;
        }



            ul.list li label .checkbox::before {
                display: block;
                font-style: normal;
                font-variant: normal;
                text-rendering: auto;
                -webkit-font-smoothing: antialiased;
                font-family: "Bootstrap-icons";
                font-weight: 900;
                font-size: 1.5em;
                padding: 0;
                margin-right: 15px;
                content: "\F584";
                color: var(--secundario);
                -webkit-transition: -webkit-transform .3s ease-in-out;
                transition: -webkit-transform .3s ease-in-out;
                -o-transition: transform .3s ease-in-out;
                transition: transform .3s ease-in-out;
                transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
                position: absolute;
                margin-top: 0.1em;
            }

            ul.list li label .textCheckbox {
                margin-left: 1.8em;
                margin-top: 0.4em;
                margin-bottom: 0.4em;
            }

        ul.list li input[type="checkbox"]:checked + label .checkbox::before {
            content: "\F26D";
            -webkit-transition: -webkit-transform .3s ease-in-out;
            transition: -webkit-transform .3s ease-in-out;
            -o-transition: transform .3s ease-in-out;
            transition: transform .3s ease-in-out;
            transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
            color: var(--secundario);
        }

        ul.list li input[type="checkbox"]:checked + label {
            border: 1.5px solid var(--secundario);
            background-color: var(--principal_light);
            color: black;
            -webkit-transition: all .2s;
            -o-transition: all .2s;
            transition: all .2s;
        }

            ul.list li input[type="checkbox"]:checked + label div {
                color: black;
            }

        ul.list li input[type="checkbox"] {
            display: absolute;
        }

        ul.list li input[type="checkbox"] {
            position: absolute;
            opacity: 0;
        }
        .comentarios{
            min-height: 5em;
        }

.form-floating > .form-control, .form-floating > .form-control-plaintext, .form-floating > .form-select {
    height: auto;
    min-height: auto;
    line-height: initial;
}

.CaracteresComentario {
    position: absolute;
    right: 2em;
}