﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

/* Provide sufficient contrast against white background */
a {
    color: #0366d6;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.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%;
}

body {
    /* Margin bottom by footer height */
    margin-bottom: 60px;
    background-color: steelblue;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px; /* Vertically center the text there */
    text-align: right;
}

/* Meu Código
-------------------------------------------------- */
.search-input,
.myBtn {
    border: none;
    border-radius: 4px;
    height: 35px;
    letter-spacing: .06em;
    font: 400 16px/40px "Lato", sans-serif;
    min-width: 200px;
}

.search-input {
    padding: 0 15px;
    margin-bottom: 30px;
    width: 100%;
}


/* Button */
.myBtn {
    font-weight: 700;
    color: #333;
    padding: 0 35px;
    background-color: #f6f6f6;
    margin:1px;
}

    .myBtn:hover {
        background-color: #f2f2f2;
    }

.actions .myBtn:first-of-type {
    margin-right: 10px;
}

/* Logo */

.main-logo {
    font: 300 60px/60px "Lato", sans-serif;
    color: white;
    margin-bottom: 50px;
}

.logo-first-letter {
    font: 700 60px/60px "Raleway", sans-serif;
}

.divcenter {
    width: 90%;
    height: auto;
    background-color: black;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    padding: 25px 25px 15px 25px;
    border-radius: 8px;
    overflow-y: auto;
    max-height: 78%;
}


/*=============== CIRCLES ===============*/

.circles {
    width: 40vmin;
    height: 40vmin;
    margin: 15% auto;
    -webkit-perspective: 50000px;
    perspective: 50000px;
    color: white;
}

    .circles span {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        display: block;
        width: 18.4%;
        height: 18.4%;
        border-radius: 100%;
        background: currentColor;
    }

    .circles div {
        position: absolute;
        width: 100%;
        height: 100%;
        border-left: 2vmin solid;
        border-top: 2vmin solid transparent;
        border-radius: 100%;
    }

        .circles div:nth-child(1) {
            -webkit-animation: anim-1 1s linear infinite;
            animation: anim-1 1s linear infinite;
        }

        .circles div:nth-child(2) {
            -webkit-animation: anim-2 1s linear infinite;
            animation: anim-2 1s linear infinite;
        }

        .circles div:nth-child(3) {
            -webkit-animation: anim-3 1s linear infinite;
            animation: anim-3 1s linear infinite;
        }

@-webkit-keyframes anim-1 {
    from {
        -webkit-transform: rotateZ(120deg) rotateX(66deg) rotateZ(0deg);
        transform: rotateZ(120deg) rotateX(66deg) rotateZ(0deg);
    }

    to {
        -webkit-transform: rotateZ(120deg) rotateX(66deg) rotateZ(360deg);
        transform: rotateZ(120deg) rotateX(66deg) rotateZ(360deg);
    }
}

@keyframes anim-1 {
    from {
        -webkit-transform: rotateZ(120deg) rotateX(66deg) rotateZ(0deg);
        transform: rotateZ(120deg) rotateX(66deg) rotateZ(0deg);
    }

    to {
        -webkit-transform: rotateZ(120deg) rotateX(66deg) rotateZ(360deg);
        transform: rotateZ(120deg) rotateX(66deg) rotateZ(360deg);
    }
}

@-webkit-keyframes anim-2 {
    from {
        -webkit-transform: rotateZ(240deg) rotateX(66deg) rotateZ(0deg);
        transform: rotateZ(240deg) rotateX(66deg) rotateZ(0deg);
    }

    to {
        -webkit-transform: rotateZ(240deg) rotateX(66deg) rotateZ(360deg);
        transform: rotateZ(240deg) rotateX(66deg) rotateZ(360deg);
    }
}

@keyframes anim-2 {
    from {
        -webkit-transform: rotateZ(240deg) rotateX(66deg) rotateZ(0deg);
        transform: rotateZ(240deg) rotateX(66deg) rotateZ(0deg);
    }

    to {
        -webkit-transform: rotateZ(240deg) rotateX(66deg) rotateZ(360deg);
        transform: rotateZ(240deg) rotateX(66deg) rotateZ(360deg);
    }
}

@-webkit-keyframes anim-3 {
    from {
        -webkit-transform: rotateZ(360deg) rotateX(66deg) rotateZ(0deg);
        transform: rotateZ(360deg) rotateX(66deg) rotateZ(0deg);
    }

    to {
        -webkit-transform: rotateZ(360deg) rotateX(66deg) rotateZ(360deg);
        transform: rotateZ(360deg) rotateX(66deg) rotateZ(360deg);
    }
}

@keyframes anim-3 {
    from {
        -webkit-transform: rotateZ(360deg) rotateX(66deg) rotateZ(0deg);
        transform: rotateZ(360deg) rotateX(66deg) rotateZ(0deg);
    }

    to {
        -webkit-transform: rotateZ(360deg) rotateX(66deg) rotateZ(360deg);
        transform: rotateZ(360deg) rotateX(66deg) rotateZ(360deg);
    }
}


/*------------ MODAL ----------------------*/

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    margin: 0;
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
    display: block;
    background-color: black;
    border: 1px solid #888;
    min-width: 80%;
    min-height: 80%;
    max-width: 80%;
    max-height: 80%;
    color: black;
    overflow-y: auto;
    overflow-x: hidden;
    text-align: center;
    margin: 5% 10% 5% 10%;
    border-radius:8px;
}

.textareamodal {
    position: absolute;
    top: 0;
    left: 0;
    height: 93.5%;
    width: calc(100% - 6px);
    border: 0 none white;
    overflow: hidden;
    resize: none;
    background-color: white;
    text-align: left;
    overflow-y: scroll;
    margin: 3px
}

.textareafixed {
    width: 100%;
    height: auto;
    max-height: 200px;
    min-height: 200px;
    border: 0 none white;
    overflow: hidden;
    resize: none;
    background-color: white;
    text-align: left;
    overflow-y: scroll;
    margin: 3px
}


.divbotaofechar {
    background-color: #f1f1f1;
    position: absolute;
    bottom: 1px;
    margin: 3px;
    width: calc(100% - 6px);
}

.containermodal {
    padding: 3px;
    width: 100%;
    height: 100%;
    margin-bottom: 50px;
}

/* Add Zoom Animation */
.animateappear {
    animation: appear 1s ease-in-out forwards;
}

.animateopacity {
    animation: opacity 1s ease-in-out forwards;
}

@keyframes appear {
    0% {
        transform: scale(0);
    }

    25% {
        transform: scale(1)
    }

    50% {
        transform: scale(1)
    }

    75% {
        transform: scale(1)
    }

    100% {
        transform: scale(1)
    }
}

@keyframes opacity {
    0% {
        display: none;
        opacity: 0;
    }

    25% {
        display: block;
        opacity: 0.25;
    }

    50% {
        display: block;
        opacity: 0.5;
    }

    75% {
        display: block;
        opacity: 0.75;
    }

    100% {
        display: block;
        opacity: 1;
    }
}
