﻿/* 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;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px; /* Vertically center the text there */
}

/* Always set the map height explicitly to define the size of the div
       * element that contains the map. */
#map {
    height: 100%;
}

/* Optional: Makes the sample page fill the window. */
html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

#description {
    font-family: Roboto;
    font-size: 15px;
    font-weight: 300;
}

#infowindow-content .title {
    font-weight: bold;
}

#infowindow-content {
    display: none;
}

#map #infowindow-content {
    display: inline;
}

.pac-card {
    margin: 10px 10px 0 0;
    border-radius: 2px 0 0 2px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    outline: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    background-color: #fff;
    font-family: Roboto;
}

#pac-container {
    padding-bottom: 12px;
    margin-right: 12px;
}

.pac-controls {
    display: inline-block;
    padding: 5px 11px;
}

    .pac-controls label {
        font-family: Roboto;
        font-size: 13px;
        font-weight: 300;
    }

#pac-input {
    background-color: #fff;
    font-family: Roboto;
    font-size: 15px;
    font-weight: 300;
    margin-left: 12px;
    padding: 0 11px 0 13px;
    text-overflow: ellipsis;
    width: 400px;
}

    #pac-input:focus {
        border-color: #4d90fe;
    }

#title {
    color: #fff;
    background-color: #4d90fe;
    font-size: 25px;
    font-weight: 500;
    padding: 6px 12px;
}

#target {
    width: 345px;
}

/*Timeline*/

/* (A) "SET" THE TIMELINE CONTAINER */
.vtl {
    /* (A1) RELATIVE POSITION NECESSARY TO PROPERLY POSITION TIMELINE LATER */
    position: relative;
    /* (A2) RESERVE MORE SPACE TO THE LEFT FOR THE TIMELINE */
    padding: 10px 10px 10px 50px;
    /* (A3) OPTIONAL WIDTH RESTRICTION */
    /*max-width: 400px;*/
}

    /* (B) DRAW TIMELINE USING ::BEFORE */
    .vtl::before {
        /* (B1) DRAW THE TIMELINE */
        content: '';
        width: 5px;
        background-color: #DE421A;
        /* (B2) POSITION IT TO THE LEFT */
        position: absolute;
        top: 0;
        bottom: 0;
        left: 15px;
    }

/* (C) STYLES FOR THE EVENTS */
div.event {
    padding: 20px 20px;
    background-color: #f7f7f7;
    position: relative;
    border-radius: 6px;
    margin-bottom: 10px;
}

/* (D) STYLES FOR THE DATE & TEXT */
/*strong.edate {
    font-size: 1.1em;
    font-weight: bold;
    color: #ff6a00;*/
/*}

p.etxt {
    margin: 10px 0 0 0;
    color: #222;
}*/

/* (E) ADD "SPEECH BUBBLE TRIANGLE" TO THE EVENTS */
    div.event::before {
        content: '';
        border: 10px solid transparent;
        border-right-color: #f7f7f7;
        border-left: 0;
        position: absolute;
        top: 20%;
        left: -10px;
    }

/* (F) ADD A CIRCLE ON THE TIMELINE TO INDICATE AN EVENT */
    div.event::after {
        content: '';
        background: #fff;
        border: 4px solid #DE421A;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        position: absolute;
        top: 20%;
        left: -41px;
    }