.pagetitle {
	font-weight: 400;
	font-style: normal;
	font-size: 2rem;
	color: #222;
	padding-bottom: 10px;
}

/* Press releases */

.press-release-card {
	width: 50%;
	min-width: 18rem;
	background-color: #dfdff8;
}

/* Links pages */

.profile-picture {
display: block;
margin-left: auto;
margin-right: auto;
margin-top: 10%;
height: auto;
max-width: 100px;
}
.profile-name {
text-align: center;
padding: 30px;
color: #000000;
font-weight: bold;
font-size: 1.4em;
}

.profile-description {
text-align: center;
color: #0A0A0A;
font-size: 1.2em;
}

.links-background {
  background-image: url("/images/website/lightbulb.jpg");
  height: 1000px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

@media (max-width: 600px) {
 	.links-background img {
		width: 215px;
		height: 30px;
	}
}

/* Remove sliders on number fields. */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Remove sliders on number fields. */
/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* For simple forms, like login, forgot password, and others */
.simple-form {
  width: 340px;
  margin: 50px auto;
	font-size: 15px;
	opacity: 0;
	animation: arrive 500ms ease-in-out 0.1s forwards;
}
.simple-form form {
  margin-bottom: 15px;
  background: linear-gradient(160deg, rgba(25, 25, 112,1) 0%,rgba(239, 239, 251,1) 150px);
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
  padding: 30px;
  border-radius: 5px;
}
.simple-form h2 {
  margin: 0 0 15px;
}

@keyframes arrive {
    0% {
        opacity: 0;
        transform: translate3d(0, 50px, 0);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Override colour scheme from bootstrap. */
.simple-form a {
	color: #007bff;
	text-decoration: none;
}

.simple-form img {
	margin-bottom: 1rem;
}

/* Privacy Policy table */
#policy table, th, td {
  table-layout: fixed;
  border: 2px solid #191970;
  border-collapse: collapse;
  padding: 5px;
	vertical-align: top;
}

#policy table, th {
  text-align: center;
}

#itemstable td
{
  padding: 0.3rem;
}

/* Used for displaying image as part of viewing attachments. */
.modal-media-image {
width: 100%;
max-width: 100%;
max-height: 100%;
}


/* Attachments - Used for drag and drop */

.dm-uploader {
	border: 0.25rem dashed #A5A5C7;
	text-align: center;
}
.dm-uploader.active {
	border-color: red;

	border-style: solid;
}

.card.pointer {
	cursor: pointer;
}


/* Autocomplete - used at least with stock properties. */

.autocomplete {
  /*the container must be positioned relative:*/
  position: relative;
  display: inline-block;
}
.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}
.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
}
.autocomplete-items div:hover {
  /*when hovering an item:*/
  background-color: #e9e9e9;
}
.autocomplete-active {
  /*when navigating through the items using the arrow keys:*/
  background-color: DodgerBlue !important;
  color: #ffffff;
}

/* Stock - updating prices */

.wholesale-update {
  box-shadow: 0 0 0 0.3rem rgba(102, 255, 102, 0.5);
	transition: box-shadow 0.3s ease-in-out;
}

.wholesale-notupdate {
  box-shadow: none;
	transition: box-shadow 0.3s ease-in-out;
}

/* Navbar */
.bg-midnight-blue {
	background-color: #191970;
}

/* Notification */
.notification-container {
		position: fixed;
		top: 20px;
		right: 20px;
		z-index: 999;
}

.notification {
		display: none;
		margin-bottom: 10px;
}
