﻿/* 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;
}

.bg-black {
    background-color: #282932;
    border-color: #282932;
}

/* Provide sufficient contrast against white background */
a {
  color: blue;
}

    a:hover, a:active {
        color: darkblue;
    }

.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;
}

.active {
    text-decoration-color: red;
}

/* Modal & Notification Styles
--------------------------------------------------- */

.modal-content {
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3);
    position: center;
    top: 1px;
    margin-bottom: 50px;
    padding: 0;
    border-radius: 5px;
    border: 1px solid #404040;
    background-color: #f1f1f1;
}

    .modal-content .modal-header {
        background: #707070;
        color: #FFF;
    }

        .modal-content .modal-header .modal-title {
            font-weight: 600;
        }

    .modal-content .prompt-footer {
        padding: 15px;
        text-align: center;
    }

    .modal-content .prompt-button {
        box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3);
        display: inline-block;
        width: 150px;
        margin: 0 20px;
        padding: 10px;
        border-radius: 5px;
        font-size: 18px;
        background-color: #707070;
        text-align: center;
        color: #FFF;
        margin-top: 10px;
    }

    .modal-content .prompt-button-confirm {
        color: lightblue;
    }

    .modal-content .prompt-button-confirm-disabled {
        color: lightblue;
        opacity: 0.35;
    }

    .modal-content .prompt-button-cancel {
        color: red;
    }

    .modal-content .prompt-button-text {
        margin-left: 10px;
        font-weight: 100;
        color: #FFF;
    }

    .modal-content .prompt-button-text-disabled {
        margin-left: 10px;
        font-weight: 100;
        color: #FFF;
        opacity: 0.35;
    }

.notification {
    position: fixed;
    z-index: 999999999999999;
    background: #ffffe0;
    top: 50px;
    right: 20px;
    width: 40%;
    margin: 10px;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 4px 0px 5px #CCC;
    color: #000000;
    border: 1px solid #404040;
    display: none;
}

    .notification .fas {
        color: #000000;
        padding-right: 3px;
    }

/* 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 */
}

/* My CSS */
.signup-panel {
    top: 15%;
    left: 10%;
    width: 80%;
    height: 75%;
    position: absolute;
    border: 3px solid black;
    border-radius: 12px 12px;
    background-color: #faf9f6;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 650px;
    /*box-shadow: 5px 10px rgba(0, 0, 0, 0.25);*/
}

.signup-buttons {
    border: 1px solid black;
    width: 33%;
    display: flex;
    justify-content: center;
    padding: 5px;
    font-weight: bold;
}

.signup-bar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.selected {
    background-color: #f9c43e;
}

.back-bar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-bottom: 1px solid lightgrey;
}

.back-button {
    display: flex;
    align-items: center;
    padding-left: 15px;
    padding-right: 15px;
    cursor: pointer;
    border-radius: 12px 0px 0px 0px;
}

    .back-button:hover,
    .back-button[hover] {
        background-color: lightgrey;
    }

    .back-button:active,
    .back-button[active] {
        background-color: #999999;
    }

.back-button-disabled {
    display: flex;
    align-items: center;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 12px 0px 0px 0px;
    width: 44px;
}

.pad-bottom {
    padding-bottom: 7px;
}

.pad-top {
    padding-top: 0px;
}

.fixed-height {
    height: 62px;
}

.fixed-height-half {
    height: 62px;
}

.fixed-height-checkbox {
    height: 56px;
}

.fixed-height-textarea {
    height: 85px;
}

.confirm-button {
    display: inline-flex;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    padding: 14px 16px;
    color: black;
    background-color: #f9c43e;
    border: none;
    width: 100%;
    border-radius: 12px;
}

    .confirm-button:focus,
    .confirm-button[focus] {
        outline: none;
    }

button:disabled,
button[disabled] {
    opacity: 0.35;
}

.loading-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media screen and (max-width: 600px) {
    .navbar {
        width: 100%;
    }

    .navbar-toggler {
        visibility: hidden;
        display: none;
    }

    .signup-panel {
        width: 100%;
        height: 100%;
        top: 8.4%;
        left: 0%;
        overflow-y: scroll;
    }

    .fixed-height {
        height: 124px;
    }

    .fixed-height-half {
        height: 54px;
    }

    .fixed-height-textarea {
        height: 72px;
    }

    .pad-top {
        height: 7px;
    }

    .here-map {
        visibility: hidden;
        display: none;
    }
}

.here-map {
    width: 100%;
    /* Firefox */
    height: -moz-calc(100% - 58px);
    /* WebKit */
    height: -webkit-calc(100% - 58px);
    /* Opera */
    height: -o-calc(100% - 58px);
    /* Standard */
    height: calc(100% - 58px);
    min-height: 710px;
    position: absolute;
    top: 58px;
}

.stripe-button {
    width: 40%;
    font-weight: bold;
    border: 1px solid black;
    border-radius: 12px;
    background-color: mediumpurple;
    color: white;
    height: 40px;
}