﻿/*Animation Periods*/
/*Notification Colours*/
/*Login Page Colours*/
/*Sub Window*/
/*Image Cropper*/
/*Border Radii*/
body {
  /*body should fill the screen with no margin*/
  height: 100vh;
  margin: 0;
  background: rgb(29, 46, 57);
  min-height: 500px;
}

/*Title font face*/
@font-face {
  font-family: "TitleFont";
  src: url("../../Images/Fonts/TitleFont.ttf") format("truetype"), url("../../Images/Fonts/TitleFont.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
/*All text apart from title text should use the Segoe UI font family*/
body {
  font-family: "Segoe UI", Verdana, Helvetica, Sans-Serif;
  color: rgb(255, 255, 255);
}

input {
  font-family: "Segoe UI", Verdana, Helvetica, Sans-Serif;
  font-weight: 400;
  font-size: 1em;
}

/*Title text*/
h1 {
  font-family: "TitleFont";
  font-size: 3em;
  margin: 20px 0px 20px 0px;
  font-weight: 300;
  text-align: center;
}

/*danger text class for warning text*/
.text-danger {
  color: red;
  font-size: 0.9em;
  margin-bottom: 2px;
}

/*Style all button type input elements*/
input[type=button], input[type=submit], input[type=reset], button {
  border: none;
  background: rgb(14, 28, 38);
  color: rgb(255, 255, 255);
  padding: 7px 30px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9em;
}

/*hover effect for all button type input elements*/
input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover, button:hover {
  background: rgb(0, 171, 218);
}

/*changes the focus affect when clicking a button*/
input[type=button]:focus, input[type=submit]:focus, input[type=reset]:focus, button:focus {
  outline: none;
}

.checkmark-label-wrapper {
  display: flex;
  flex-direction: row;
  font-size: 0.9em;
}

.thematicbreak {
  margin: 0px 8px;
  border: 1px solid #243845;
}

.warningtext {
  color: rgb(255, 0, 0);
}

.anchortag:hover {
  text-decoration: underline;
}

.anchortag {
  display: inline;
  cursor: pointer;
  color: #00ABDA;
}

.center-vertical {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

/* Text Field */
.infoTag-container {
  position: relative;
}

.infoTag {
  position: absolute;
  right: 0;
  bottom: 3px;
  background: radial-gradient(circle, #FFF 0%, #FFF 30%, #243845 30%);
  border-radius: 10000px;
}

.infoTag > path {
  fill: #243845;
}

.hidden {
  display: none;
}

.hidden-i {
  display: none !important;
}

.bumpright {
  margin-right: 5px;
}
