﻿/* 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. */
:root {
    --background: #141416;
    --white: #ffffff;
    --red: #ff7562;
    --redx: #f4511e;
    --blue: #6d87c3;
    --bluex: #4f8aca;
    --grey: #aaa;
    --greyx: #838383;
    --green: #ecf5e2;
    --dark: rgb(0 0 0 / 0.55);
}

a.navbar-brand {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

/* Provide sufficient contrast against white background */
a {
  color: var(--red);
}

.text-grey {
    color: var(--grey);
}

.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;
}

.nav-link.active {
    color:var(--red) !important;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 18px;
  }
}

.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;
}

.fakeimg {
    height: 200px;
    background: #aaa;
    background-color: #cccccc;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.background-blue {
    background: var(--blue);
}

.background-red {
    background: var(--red);
}

.background-grey {
    background: var(--grey);
}

.background-dark {
    background: var(--dark);
}

.background-green {
    background: var(--green);
    color:black;
}

.iconimg {
    height: 100px;
    width: 100px;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    border-radius: 25px;
}

.fade-slide {
    opacity: 0;
    transform: translateX(-10%);
    animation: fadeSlideIn 1s forwards;
}

.fade-slideup {
    opacity: 0;
    transform: translateY(70%);
    animation: fadeSlideUp 3s forwards;
    animation-delay: 0.4s;
}

.fade-slidedown {
    opacity: 0;
    transform: translateY(-10%);
    animation: fadeSlideUp 1s forwards;
}

.leftSide {
    text-align: left;
}

.bg-dark {
    background-color: var(--background) !important;
}

@keyframes fadeSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    color: white;
}

.data {
    text-align: center;
    margin: 0 auto;
    color: white;
    overflow: hidden;
    margin: 8px 0px 30px calc((95% - 980px)* 0.1);
    /* Ensure sits above blur background */
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding: 20px;
}

.background {
    background-image: url('/images/backgound3.png');
    background-size: contain;
    /* Add the blur effect */
    filter: blur(3px);
    -webkit-filter: blur(3px);
    /* Full height */
    height: 100%;
    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    width: 100%;
    z-index: -1;
}

    .background.background1 {
        background-image: url('/images/backgound1.png');
    }
    .background.background2 {
        background-image: url('/images/backgound2.png');
    }
    .background.background4 {
        background-image: url('/images/backgound4.png');
    }
    .background.background5 {
        background-image: url('/images/backgound5.png');
    }
    .background.background6 {
        background-image: url('/images/backgound6.png');
    }
    .background.background7 {
        background-image: url('/images/backgound7.png');
        background-size: contain;
    }
    .background.background8 {
        background-image: url('/images/backgound8.png');
    }
    .background.background9 {
        background-image: url('/images/backgound9.png');
    }

.content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding: 20px;
}

a, a:visited {
    color: #ffffff;
}

.largeheader {
    font-size: 70px;
    color: white;
}

@media all and (max-width: 980px) {
    .data {
        margin: 0px 0px 0px 0;
    }
    .largeheader {
        font-size: 50px;
    }
    .footer {
        font-size: 10px;
    }
}
@media all and (min-width: 981px) {
    .footer {
        font-size: 12px;
    }
}

.button {
    display: inline-block;
    border-radius: 4px;
    background-color: var(--red);
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 28px;
    padding: 20px;
    width: 200px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
}

    .button span {
        cursor: pointer;
        display: inline-block;
        position: relative;
        transition: 0.5s;
    }

        .button span:after {
            content: '\00bb';
            position: absolute;
            opacity: 0;
            top: 0;
            right: -20px;
            transition: 0.5s;
        }

    .button:hover {
        background-color: #000000;
        border-color: #ffffff;
        border-style: solid;
    }

        .button:hover span {
            padding-right: 25px;
        }

            .button:hover span:after {
                opacity: 1;
                right: 0;
            }

.formfield {
    background-color: var(--green);
}

.comment {
    width: 100%;
    height: 100px;
    padding: 10px;
}


/* 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: 20px; /* Vertically center the text there */
}

.table {
    display: table;
    width: 80%;
    border-collapse: collapse;
    color: white;
}

.table-row {
    display: table-row;
}

.container-row {
}

.cell {
    display: table-cell;
    border: 0px solid var(--grey);
    padding: 5px;
}

    .cell.center {
        text-align: center;
        padding: 50px 10px 50px 10px;
    }

.header {
    font-weight: bold;
}