﻿@import url("open-iconic/font/css/open-iconic-bootstrap.min.css");

* {
    margin: 0;
    padding: 0;
    outline: 0;
    box-sizing: border-box;
    border: none;
    text-decoration: none;
}

html,
body,
#root {
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    min-height: 100%;
    font-family: "Poppins", Helvetica, Arial, sans-serif;
    color: #333333;
}

a,
.btn-link {
    color: #0366d6;
}

.btn-primary {
    color: #fff;
    background-color: #ff8b10;
    border-color: #ff8b10;
}

.content {
    padding-top: 1.1rem;
}


.imgproduto {
    width: 80%;
    height: 55%;
    border-radius: 20px;
}

.valid.modified:not([type="checkbox"]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.splash {
    display: flex;
    flex: 1;
    flex-direction: column;
    background-color: #fff;
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
    text-align: center;
}

    .splash p {
        color: #ff3636;
        font-size: 1rem;
        font-weight: bold;
    }

    .splash img {
        width: 50%;
    }

.main-content {
    width: 95%;
    z-index: 2;
    margin-top: 10px;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 1rem;
    flex-direction: column;
    box-shadow: -1px 6px 19px -2px rgba(120, 120, 120, 0.17);
    -webkit-box-shadow: -1px 6px 19px -2px rgba(120, 120, 120, 0.17);
    -moz-box-shadow: -1px 6px 19px -2px rgba(120, 120, 120, 0.17);
}


.area {
    background: #3533a8;
    background: -webkit-linear-gradient(to left, #8f94fb, #4e54c8);
    width: 100%;
    height: 100vh;
}

.circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

    .circles li {
        position: absolute;
        display: block;
        list-style: none;
        width: 20px;
        height: 20px;
        background: rgba(255, 255, 255, 0.2);
        animation: animate 25s linear infinite;
        bottom: -150px;
    }

        .circles li:nth-child(1) {
            left: 25%;
            width: 80px;
            height: 80px;
            animation-delay: 0s;
        }


        .circles li:nth-child(2) {
            left: 10%;
            width: 20px;
            height: 20px;
            animation-delay: 2s;
            animation-duration: 12s;
        }

        .circles li:nth-child(3) {
            left: 70%;
            width: 20px;
            height: 20px;
            animation-delay: 4s;
        }

        .circles li:nth-child(4) {
            left: 40%;
            width: 60px;
            height: 60px;
            animation-delay: 0s;
            animation-duration: 18s;
        }

        .circles li:nth-child(5) {
            left: 65%;
            width: 20px;
            height: 20px;
            animation-delay: 0s;
        }

        .circles li:nth-child(6) {
            left: 75%;
            width: 110px;
            height: 110px;
            animation-delay: 3s;
        }

        .circles li:nth-child(7) {
            left: 35%;
            width: 150px;
            height: 150px;
            animation-delay: 7s;
        }

        .circles li:nth-child(8) {
            left: 50%;
            width: 25px;
            height: 25px;
            animation-delay: 15s;
            animation-duration: 45s;
        }

        .circles li:nth-child(9) {
            left: 20%;
            width: 15px;
            height: 15px;
            animation-delay: 2s;
            animation-duration: 35s;
        }

        .circles li:nth-child(10) {
            left: 85%;
            width: 150px;
            height: 150px;
            animation-delay: 0s;
            animation-duration: 11s;
        }



@keyframes animate {

    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }
}

.hithere {
    animation: hithere 1s ease infinite;
}

@keyframes hithere {
    30% {
        transform: scale(1.2);
    }

    40%, 60% {
        transform: rotate(-20deg) scale(1.2);
    }

    50% {
        transform: rotate(20deg) scale(1.2);
    }

    70% {
        transform: rotate(0deg) scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}


#image-wrapper {
    width: 100%;
    height: 100vh;
    border: 1px solid #333;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at center, #a53511 0%, #d2542a 100%);
}

.blink_me {
    animation: blinker 2s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0.3;
    }
}

.button_tutorial_basico {
    max-height: 20px;
    border: #000000 1px outset;
    padding: 2px;
    border-radius: 5px;
    cursor: pointer;
}

.button_tutorial_basico:hover {
    max-height: 25px !important;
    border: #000000 1px outset;
    padding: 2px;
    border-radius: 5px;
    cursor: pointer;
}

.absolute_button_tutorial {
    position: absolute !important;
    right: 10px !important;
}

.colorButton {
    color: #fff !important;
    background-color: #ff8b1e !important;
    border-color: #ff8b1e !important;
}

.colorButton:hover {
    color: #fff !important;
    background-color: #d2542a !important;
    border-color: #d2542a !important;
}

.btn.btn-info {
    color: #fff !important;
    background-color: #d2542a !important;
    border-color: #d2542a !important;
}

.btn.btn-info:hover {
    color: #fff !important;
    background-color: #ff8b1e !important;
    border-color: #ff8b1e !important;
}

.colorTabPanel {
    color: #ff8b10 !important;
}

