﻿/* 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: white;
    background-color: #1CBEAF;
    border-color: #1CBEAF;
}

.btn-big {
    width: 310px;
    height: 64px;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1CBEAF;
    border-color: #1861ac;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  font-size: 14px;
  font-family: BentonSans;
  height:100%;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.main-wrapper {
    height: 100vh;
/*    overflow: auto;*/
}

.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 */
    font-family: BentonSans;
    height: 100%;
}
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px; /* Vertically center the text there */
}

.signup-background {
    background-color: #222E50;
    background-image: url(/images/background.svg);
    
}

@font-face {
    font-family: BentonSans;
    src: url(/fonts/BentonSans.woff) format('woff');
}

h3, h5 {
    font-weight: 700;
}

.top {
    mix-blend-mode: normal;
    filter: drop-shadow(0px 4px 20px rgba(0, 0, 0, 0.25));
    width: 100%;
    background-color: #222E50;
    height: 64px;
}

/* Tick Cross */
svg {
    width: 100px;
    display: block;
    margin: 0px auto 0px;
}

.path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 0;
    &.circle

{
    -webkit-animation: dash .9s ease-in-out;
    animation: dash .9s ease-in-out;
}

&.line {
    stroke-dashoffset: 1000;
    -webkit-animation: dash .9s .35s ease-in-out forwards;
    animation: dash .9s .35s ease-in-out forwards;
}

&.check {
    stroke-dashoffset: -100;
    -webkit-animation: dash-check .9s .35s ease-in-out forwards;
    animation: dash-check .9s .35s ease-in-out forwards;
}

}

p {
    text-align: center;
    margin: 20px 0 60px;
    font-size: 1.25em;
    &.success

{
    color: #73AF55;
}

&.error {
    color: #D06079;
}

}


@-webkit-keyframes dash {
    0% {
        stroke-dashoffset: 1000;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes dash {
    0% {
        stroke-dashoffset: 1000;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@-webkit-keyframes dash-check {
    0% {
        stroke-dashoffset: -100;
    }

    100% {
        stroke-dashoffset: 900;
    }
}

@keyframes dash-check {
    0% {
        stroke-dashoffset: -100;
    }

    100% {
        stroke-dashoffset: 900;
    }
}

/* Validation */
body > div > main > div > div:nth-child(1) > div > div > section > form > div:nth-child(3) > div,
body > div > main > div > div:nth-child(1) > div > div > section > form > div:nth-child(4) > div {
    width: 100%;
    max-width: 450px;
}

body > div > main > div > div:nth-child(1) > div > div > section > form > div:nth-child(3) > div > ul,
body > div > main > div > div:nth-child(1) > div > div > section > form > div:nth-child(4) > div > ul {
    margin-bottom: 0;
}

.validation-summary-errors {
    text-align: center;
}

.validation-summary-errors > ul {
    list-style-type: none;
    padding-left: 0;
}

.icon-hideshow {
    cursor: pointer;
}
    .icon-hideshow:hover {
        color: #1CBEAF;
    }
.list-item {
    margin-left: 10px;
    color: #0c546082;
}
.list-item-success {
    color: #0c5460;
}

    /* App icons
-------------------------------------------------- */
    .staunch-app-icon {
        display: inline-block;
        margin: 0 10px 20px 0;
        height: 36px;
        width: 36px;
        opacity: 0.8;
        transition: transform .2s;
    }
        .staunch-app-icon.active {
            transform: scale(1.2);
            opacity: 1.0;
        }
            .staunch-app-icon.active:hover {
                transform: scale(1.5);
                opacity: 1.0;
            }
        .staunch-app-icon:hover {
            transform: scale(1.5);
            opacity: 1.0;
        }
