﻿/* 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;
    background: url('../img/Sydney-1.jpg') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    font-size: medium;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px; /* Vertically center the text there */
}

/***** CSS CUSTOMISATION *****/

.carousel-item {
    height: 80vh;
    min-height: 350px;
    background: no-repeat center center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.carousel-caption {
    left: 10%;
    right: 10%;
    top: 65%;
    transform: translateY(-35%);
    bottom: initial;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.bg-light-custom {
    background-color: rgb(245, 245, 245);
}

.dropdown-item {
    font-size: 1rem;
    font-weight: 500;
}

.dropdown .dropdown-menu {
    border-radius: 0;
}

.dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
    border-radius: 0;
}

.dropdown > .dropdown-toggle:active {
    pointer-events: none;
}

.dropdown-toggle::after {
    margin-left: 0.0em;
}

.btn {
    font-size: large;
    font-weight: 600;
    padding: 10px;
    padding-left: 30px;
    padding-right: 30px;
}

.btn-primary {
    border-color: #093f89;
    background-color: #093f89;
}

.btn-outline-primary {
    color: #093f89;
    border-color: #093f89;
}

    .btn-outline-primary:hover {
        border-color: #093f89;
        background-color: #093f89;
    }

.bg-primary {
    background-color: #093f89 !important;
}

.text-primary {
    color: #093f89 !important;
}

.text-secondary {
    color: #d71a21 !important;
}

a {
    color: #093f89;
}

.overlay {
    background: rgba(0,0,0,0.4);
}

.has-search .form-control {
    padding-left: 2.375rem;
}

.has-search .form-control-feedback {
    position: absolute;
    z-index: 2;
    display: block;
    width: 2.375rem;
    height: 2.375rem;
    line-height: 2.375rem;
    text-align: center;
    pointer-events: none;
    color: #aaa;
}

.bg-custom {
    background-color: rgba(240, 240, 240, 0.9);
}

/*tr {
    line-height:5px;
    min-height: 5px;
    height: 5px;
}*/

@keyframes glowing {
    0% {
      background-color: #093f89;
      box-shadow: 0 0 5px #093f89;
    }
    50% {
      background-color: #0c4ca7;
      box-shadow: 0 0 20px #0c4ca7;
    }
    100% {
      background-color: #093f89;
      box-shadow: 0 0 5px #093f89;
    }
  }
  
  .btn-flash {
    animation: glowing 1500ms infinite;
  }