html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.glow-on-hover {
    outline: none;
    background: white;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
}

.glow-on-hover-botao {
    width: 220px;
    height: 50px;
    border: none;
    outline: none;
    color: #fff;
    background: #002bff;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
}

.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #00f7ff, #0066ff, #00ffd5, #002bff);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.glow-on-hover:active {
    background: rgb(109, 107, 107);
}

    .glow-on-hover:active:after {
        background: white;
    }

.glow-on-hover:hover:before {
    opacity: 1;
}

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: white;
    left: 0;
    top: 0;
    border-radius: 10px;
}

.anuncio {
    color: dodgerblue;
    font-size: medium;
    text-wrap: balance;
}

div.glow-on-hover {
    height: 350px;
    width: 250px;
    text-align: center;
    box-shadow: 2px 2px 2px;
    margin-top: 2%;
    margin-left: 10px;
    padding-top: 2%;
    padding-left: 10px;
    padding-right: 10px;
    display: inline-block;
}

div.glow-on-hover {
    height: 350px;
    text-align: center;
    box-shadow: 2px 2px 2px;
    margin-top: 2%;
    margin-left: 10px;
    padding-top: 2%;
    padding-left: 10px;
    padding-right: 10px;
    display: inline-block;
}

td.labelBasico {
    text-align: right;
    width: 220px;
}

td.textBasico {
    text-align: left;
    width: 50%;
}

input[type=search], select {
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    background-color: white;
    background-position: 10px 10px;
    background-repeat: no-repeat;
}

* {
    box-sizing: border-box
}

/* Slideshow container */
.slideshow-container {
    max-width: 95%;
    position: relative;
    margin: auto;
}

/* Hide the images by default */
.mySlides {
    display: none;
}

.mySlidesCelular {
    display: none;
}

/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: grey;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.prev {
    right: 90%;
    border-radius: 3px 0 0 3px;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

    /* On hover, add a black background color with a little bit see-through */
    .prev:hover, .next:hover {
        background-color: rgba(0,0,0,0.8);
    }

/* Caption text */
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 100px;
    width: 100px;
    margin: 0 2px;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    opacity: .4;
}

    .active, .dot:hover {
        opacity: 1;
    }

.dotCelular {
    cursor: pointer;
    height: 100px;
    width: 100px;
    margin: 0 2px;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    opacity: .4;
}

.active, .dot:hover {
    opacity: 1;
}

#menu {
    margin: 0;
    padding: 0;
    float: left;
}

    #menu ul li {
        margin: 0;
        padding: 0px;
        border-bottom: 1px solid #CCC;
        text-align: left;
        list-style-type: none;
    }

    #menu a:link {
        background-color: white;
        color: darkslategray;
        font-weight: bold;
        text-decoration: none;
        padding: 8px;
        display: block;
    }

    #menu a:hover {
        background: #E5F0FF;
        color: #039;
        display: block;
    }

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}
