﻿/* 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 */
}

/* Student Form styles
-------------------------------------------------- */
.dropdown-holder {
  display: flex;
  justify-content: center;
  /* margin-bottom: 1rem; */
  flex-grow: 1;
p {
  margin-bottom:0px;
  margin-right:7px;
}
}

.telerik-dropdown select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23333333" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48"><path d="M8 20l12 12 12-12z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px top 50%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 200px;
  font-size: 14px;
  color: #333;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.telerik-dropdown select:hover {
  border-color: #aaa;
}

.telerik-dropdown select:focus {
  border-color: #0078d4;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 120, 212, 0.3);
}

.telerik-dropdown select option {
  background-color: #fff;
  color: #333;
}

.telerik-dropdown select option:checked {
  background-color: #0078d4;
  color: #fff;
}
.form-container {
  max-width: 700px;
  margin: auto;
  padding: 45px;
  background-color: #f9f9f9;
  border-radius: 25px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  /* border: 7px double #f39f10; */
  width:100%;
}

.intro-screen {
      display: none;
      text-align: center;
      padding: 50px;
      background-color: #ffffff;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width:100%;
      height:100vh;
      z-index: 9999;
      flex-direction:column;
      justify-content: center;
      align-items: center;
  }
  .form-element {
    border-radius: 10px;
  }
  .btn-holder {
    display: flex;
    justify-content: center;
  }
  .confirmation-holder {
    display: flex;
  width: 100%;
  height: 100vh;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  }

  .fade-in {
      animation: fadeIn 2s forwards !important;
  }

  .fade-out {
      animation: fadeOut 2s forwards !important ;
  }

  @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
  }

  @keyframes fadeOut {
      from { opacity: 1; }
      to { opacity: 0; }
  }
