@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";

.bg {    
    background-image: url("../img/background.jpg");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

html, body {
    background-color: #fff;
    color: #636b6f;
    font-family: 'Nunito', sans-serif;
    font-weight: 200;
    height: 100vh;
    margin: 0;
    height: 100%;
}

.full-height {
    height: 100vh;
}

.flex-center {
    align-items: center;
    display: flex;
    justify-content: center;
}

.position-ref {
    position: relative;
}

.top-right {
    position: absolute;
    right: 10px;
    top: 18px;
}

.content {
    text-align: center;
}

.title {
    font-size: 84px;
}

.links > a {
    color: #7e7e7e;
    padding: 0 25px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .1rem;
    text-decoration: none;
    text-transform: uppercase;
}

.wrapper {
    display: flex;
    /* width: 100%; */
    /* align-items: stretch; */
}

.context{
    z-index: 1;
}

#content {
    width: 100%;
    padding: 20px;
    min-height: 100vh;
    transition: all 0.3s;
}

.card{
    border: 1px solid grey;
    padding-left: 0.5%;
    overflow: auto;
    background-color: rgba(245, 245, 245, 1);
    opacity: 1.0;
}

.card-header{
    background-color: rgba(248, 248, 248, 1);
    color: #cc6600;
    font-family: 'Poppins', sans-serif;
}

.card-body{
    background-color: rgba(255, 255, 255, 1);
}

.card::-webkit-scrollbar-track {
    background-color: #F4F4F4;
}
.card::-webkit-scrollbar {
    width: 15px;
    background: #F4F4F4;
}
.card::-webkit-scrollbar-thumb {
    background: #dad7d7;
}

/* Dados do mapa */
#map {        
    border-radius: 25px;
    background-color: rgba(235, 235, 235, 0.7);
    border: 2px solid #cc6600;
}

.loader {
    border: 10px solid #c0bdbd;
    border-radius: 80%;
    border-top: 10px solid #cc6600;
    width: 100px;
    height: 100px;
    -webkit-animation: spin 0.7s linear infinite; /* Safari */
    animation: spin 0.7s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .1s;
    transition: .1s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .1s;
    transition: .1s;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.timePick{
    height: 31px;
    width: 100%;
    border-radius: 2px;
    border-width: 1.2pt;
    border-color: rgb(204, 204, 204);
}
