/* DEFINING CUSTOM VARIABLES */
:root{

  /* --a-primary-color: #6907CB; */
  --a-primary-color: #803892;
  --a-contrast-text-color: #FFFAF5;
  --a-btn-hover: #d8b5e9bb;
  --a-page-bckgnd: rgba(255, 250, 245, 0.95);

  --drk-grey: #696969;
  --lt-grey: #A9A9A9;
  --very-lt-grey: #f5f5f5;
  --off-black: #584E4E;

  --white-text: rgb(221, 221, 221);

  /* font-sizes */
  /* --fs-900: 9.375rem;
  --fs-800: 6.25rem;
  --fs-700: 3.5rem;
  --fs-600: 2rem;
  --fs-500: 1.75rem;
  --fs-400: 1.125rem;
  --fs-300: 1rem;
  --fs-200: 0.875rem; */
  
  /* font-families */
  /* --ff-serif: "Bellefair", serif;
  --ff-sans-cond: "Barlow Condensed", sans-serif;
  --ff-sans-normal: "Barlow", sans-serif; */
}
  
html {
  box-sizing: border-box;
  font-size: 16px;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  min-height: 100vh;
  /* From Kevin Powell */
	/* line-height: 1.5;
  min-height: 100vh; */
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul, textarea, input, button, figure {
  margin: 0;
  padding: 0;
  /* letter-spacing: normal; */
  font-family: 'Montserrat', sans-serif;
  color: var(--off-black);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  letter-spacing: 1px;
}

p {
  font-weight: 300;
  font-size: 1.2rem;
}

ol, ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

a button {
  color: var(--a-primary-color);
}

button:hover {
  cursor: pointer;
}

.error-success,
.error-alert {
  text-align: center;
  font-weight: 700;
  font-style: italic;
  color: red;
  /* background-color: rgba(213, 161, 236, 0.9); */
}


/* From Kevin Powell */	
/* img,
picture {
    max-width: 100%;
    display: block;
} */

/* make form elements easier to work with */
/* input,
button,
textarea,
select {
    font: inherit;
} */

/* remove animations for people who've turned them off */
@media (prefers-reduced-motion: reduce) {  
	*,
	*::before,
	*::after {
	  animation-duration: 0.01ms !important;
	  animation-iteration-count: 1 !important;
	  transition-duration: 0.01ms !important;
	  scroll-behavior: auto !important;
	}
}

/*********************************/
/*        General styling        */
/*********************************/

.account-background {
  width: 100%;
  /* min-height: 100vh; */
}

.centre-text {
  text-align: center;
}

.right-text {
  text-align: right;
}

.left-text {
  text-align: left;
}

audio {
  width: 250px;
  margin-top: 15px;
}

/* typography */
/* .ff-serif { font-family: var(--ff-serif); } 
.ff-sans-cond { font-family: var(--ff-sans-cond); } 
.ff-sans-normal { font-family: var(--ff-sans-normal); } 

.letter-spacing-1 { letter-spacing: 4.75px; } 
.letter-spacing-2 { letter-spacing: 2.7px; } 
.letter-spacing-3 { letter-spacing: 2.35px; } 

.uppercase { text-transform: uppercase; }

.fs-900 { font-size: var(--fs-900); }
.fs-800 { font-size: var(--fs-800); }
.fs-700 { font-size: var(--fs-700); }
.fs-600 { font-size: var(--fs-600); }
.fs-500 { font-size: var(--fs-500); }
.fs-400 { font-size: var(--fs-400); }
.fs-300 { font-size: var(--fs-300); }
.fs-200 { font-size: var(--fs-200); }

.fs-900,
.fs-800,
.fs-700,
.fs-600 {
    line-height: 1.1;
} */

.wrapper {
  /* position: relative; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  min-height: 100vh;
  /* Background image by <a href="https://unsplash.com/@filipkominik?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText">Filip Kominik</a> on <a href="https://unsplash.com/s/photos/open-door?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText">Unsplash</a> */
  background-image: url("../images/filip-kominik-IHtVbLRjTZU-unsplash.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.innerWrapper {
  position: relative;
  padding: 25px;
  width: 100%;
  min-height: 100%;
}

.pageTitleText {
  text-align: center;
}

.page-body {
  max-width: 1000px;
  padding: 15px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  background-color: var(--a-page-bckgnd);
}

.page-body p {
  font-weight: 400;
  padding-bottom: 10px;
}

.page-body h1{
  font-family: 'Fredericka the Great', cursive;
  color: var(--a-primary-color);
  text-align: center;
}
.page-body h2{
  padding-top: 20px;
}

/* .door-poster img{
  display: block;
} */

.phone-scan-door {
  display: flex;
  justify-content: center;
  margin: 15px auto 35px auto;
  max-width: 400px;
}

hr {
  border: 1px solid var(--a-primary-color);
}

h3 span{
  font-style: italic;
  font-weight: 300;
  font-size: 0.8rem;
}

/*********************************/
/*        NAVIGATION MENU        */
/*********************************/

.menu-bar {
  z-index: 100;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  position: sticky;
  top: 0px;
  background-color: var(--a-primary-color);
 }
 
.menu-bar a{
  text-transform: uppercase;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--a-contrast-text-color);
  text-decoration: none;
  transition-duration: 0.25s;
}

.menu-bar img {
  margin-left: 15px;
  width: 1.5rem;
}

.logo {
  font-family: 'Fredericka the Great', cursive;
  white-space: nowrap;
}

.navigation {
  width: 100%;
	position: absolute;
	text-align: center;
	top: 100%;
	right: 0px;
	background-color: var(--a-primary-color);
	opacity: 0.95;
	transform: scale(0, 1);
	transform-origin: right;
	transition: transform 400ms ease-in-out;
}

.navigation li{
	margin: 1.5em 0px;
}

.navigation a{
	/* font-size: 1em;
	text-transform: uppercase; */
  font-weight: 400;
	opacity: 0;
	transition: opacity 150ms ease-in-out;
  transition: color 0.25s;
}

.nav-toggle:checked ~ .navigation {
	/* display: block; */
 transform: scale(1,1);
}

.nav-toggle:checked ~ .navigation a{
	opacity: 1;
	transition: opacity 100ms ease-in-out 350ms;
}

.nav-toggle{
	display: none;
}

.nav-toggle-label{
  position: absolute;
	top: 27px;
	right: 2.5em;
	width: 1em;
	height: 12px;
  cursor: pointer;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after{
	display: block;
	background: var(--a-contrast-text-color);
	height: 4px;
	width: 1.5em;
	border-radius: 2px;
	position: relative;
  transition: transform .25s;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after{
	content: '';
	position: absolute;
}

.nav-toggle-label span::before {
  transform-origin: top left;
	bottom: 7px;
}

.nav-toggle-label span::after{
  transform-origin: bottom left;
	top: 7px;
}

.nav-toggle:checked ~ .nav-toggle-label span {
  height: 0px;
}

.nav-toggle:checked ~ .nav-toggle-label span::before {
  transform: rotate(45deg);
  width: 1.73em;
}

.nav-toggle:checked ~ .nav-toggle-label span::after {
  transform: rotate(-45deg);
  width: 1.73em;
}

/*********************************/
/*            FOOTER             */
/*********************************/

footer p {
  font-size: 0.7rem;
  color: var(--a-contrast-text-color);
}
footer {
  color: var(--a-contrast-text-color);
  background-color: var(--a-primary-color);
  padding: 20px 0px;
  text-align: center;
  font-size: 0.7rem;
  /* min-height: 100px; */
}

footer img {
  display: block;
  /* width: 251px;
  height: 113px; */
  margin: 0px auto;
  /* padding-top: 50px; */
}

footer a{
  color: var(--a-contrast-text-color); 
  font-weight: 800;
  transition: 0.5s;
}

footer a:hover {
  font-size: 0.75rem;
  color: white;
}

.ribbon {
	position: fixed;
	left: 0;
	bottom: -5px;
	width: clamp(160px, 25vw, 225px);
	opacity: .75;
}

.ribbon img {
	width: 100%;
}

/*********************************/
/*      Login Form styling       */
/*********************************/

.form-container{
  width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.long-form-container{
  width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.wide-form-container{
  width: 100vw;
  /* background-color: blue; */
  padding: 0px 10px;
}

.form-container h4{
  padding-bottom: 10px;
}

.form-title{
  font-size: 1.6rem;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 40px;
}
.form-title-left{
  font-size: 1.6rem;
  text-align: left;
  padding-bottom: 10px;
}

.form-sub-heading {
  /* font-size: 1.6rem; */
  text-align: center;
  /* padding-top: 40px; */
  padding-bottom: 40px;
}

.form-sub-heading a{
  display: inline-block;
  text-decoration: none;
  padding-top: 15px;
}

.long-form-inputMaterial {
  display: flex;
}

.form-group-item {
  display: flex;
}

.form-text{
  /* font-family: 'Roboto', sans-serif; */
  font-size: .8rem;
  font-weight: 300;
  padding: 0px 10px;
}

.success-text {
  width: 100%;
  font-size: 1.5rem;
  text-align: center;
  padding-bottom: 25px
}

.form-footer {
  margin-left: 40px;
  display: flex;
  width: auto;
  flex-direction: column;
}

.form-icon {
  color: var(--a-primary-color);
  position: absolute;
  top: 8px;
  left: 4px;
}

.group 			  { 
  position:relative; 
  margin-bottom: 35px; 
  margin-left: 10px;
}

.long-form-group 	{ 
  display: flex;
  /* align-items: right; */
  position:relative; 
  margin-bottom: 25px; 
  margin-left: 10px;
}

.long-form-icon { 
  position: absolute;
  right: 280px;
  top: 8px;
}

.long-form-inputMaterial {
  /* font-family: 'Roboto', sans-serif; */
  font-weight: 300;
  font-size: 0.9rem;
  padding:10px 0px 0px 30px;
  display:block;
  width:300px;
  border:none;
  border-bottom:1px solid #757575;
  background: transparent;
}

.inputMaterial 				{
  /* font-family: 'Roboto', sans-serif; */
  font-weight: 300;
  font-size: 0.9rem;
  padding:10px 0px 0px 30px;
  display:block;
  width:250px;
  border:none;
  border-bottom:1px solid #757575;
  background: transparent;
}

.inputMaterial:focus,
.long-form-inputMaterial:focus {
  outline:none;
}

/* LABEL ======================================= */

.group label 				 {
  color: var(--a-primary-color); 
  font-size:14px;
  font-weight:normal;
  position:absolute;
  pointer-events:none;
  left:30px;
  top:10px;
  transition:0.3s ease all; 
  -moz-transition:0.3s ease all; 
  -webkit-transition:0.3s ease all;
}

.long-form-group label {
  text-align: right;
  padding-top: 8px;
  padding-right: 6px;
  width: 100%;
}

/* active state */
.inputMaterial:focus ~ label, .inputMaterial:valid ~ label 		{
  top:-0.5rem;
  font-size:14px;
  color: var(--a-primary-color);
}

.form-footer-text {
  flex-grow: 1;
  width: 50%;
  /* color: var(--a-contrast-text-color);  */
  text-align: center;
  text-decoration: none;
  transition: 0.5s;
}


.form-footer-text:hover {
  cursor: pointer;
  color: var(--a-primary-color);
}

.sub-heading {
  display: flex;
  flex-wrap: wrap;
	justify-content: space-between;
	/* align-items: center; */
}

.sub-heading button {
  /* display: inline-block; */
  margin-right: auto;
  margin-left: auto;
}

.sub-heading h3 {
  min-width: 150px;
}



.cancel-button a{
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.small-button,
.buttonlogintoregister,
.button-submit,
.button-sd {
  color: var(--a-contrast-text-color); 
  margin: 2px auto;
  background-color: var(--a-primary-color);
  border: solid 2px transparent;
  border-radius: 5px;
  transition: 0.25s;
}

.small-button {
  font-size: 0.8rem;
  padding: 4px 8px;
  text-transform: uppercase;
}

.report-button,
.header-button,
.buttonlogintoregister,
.button-submit,
.button-sd {
  font-size: 1.2rem;
  padding: 8px 16px;
}

.buttonlogintoregister,
.button-submit {
  margin-bottom: 10px;
}

.report-form-container input[type=submit]:hover,
.small-button:hover,
.buttonlogintoregister:hover,
.button-submit:hover,
.button-sd:hover {
  box-sizing: border-box;
  cursor: pointer;
  color: var(--a-primary-color);
  background-color: var(--a-btn-hover);
  border: solid 2px var(--a-primary-color);
}

.report-form-container input[type=submit]:active,
.small-button:active,
.buttonlogintoregister:active,
.button-submit:active {
  border:solid 2px var(--a-primary-color);/* 0.5em solid red; here configure as your needs */
}


.add-button-margin {
  margin-left: 11px;
}

.button-large {
  font-size: 1.5rem;
}

.report-button,
.header-button {
  font-weight: 700;
  margin-right: 15px;
  border-radius: 5px;
  transition: 0.25s;
}

.header-button:hover {
  border: 2px solid var(--a-contrast-text-color);
  color: var(--a-contrast-text-color);
  background-color: var(--a-primary-color);
}

.form-header-text {
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}

.form-header-input label,
.form-header-text label {
  font-weight: 700;
}

.form-header-text ul {
  max-width: 225px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 15px;
}

/*********************************/
/*     DELETE QR CODE MODAL      */
/*********************************/

.modalDelete {
  position: fixed;
  display: none;
  justify-content: center;
	align-items: center;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: hsl(0, 0%, 0%, .7);
}

.modalBox {
  max-width: 600px;
  background-color: white;
  padding: 25px;
}

.modalBox p {
  padding-bottom: 10px;
  color: red;
  font-weight: 700;
  text-align: center;
}

.modalBox p span {
  font-size: 2rem;
}

.modalButtons {
  margin-top: 10px;
  display: flex;
  justify-content: space-around;
}

/*********************************/
/*            ACCOUNTS           */
/*********************************/



#accountTabContainer {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.accountTabButtons {
  width: 33.33%;
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 15px;
  border-radius: 10px 10px 0px 0px;
  border-width: 0.5px 0.5px 0px 0.5px;
}

#accountContentContainer h3{
  margin-top: 0px;
}

.account-button-active {
  color: var(--a-contrast-text-color);
  background-color: var(--a-primary-color);
}

.account-content {
  display: none;
}

.account-content-active {
  display: block;
}

/*********************************/
/*            REPORTS            */
/*********************************/

.report-container{
  background-color: white;
  padding: 20px;
  overflow-x: auto;
}

.report-container td{
  padding-left: 10px;
  padding-right: 10px;
  font-size: 0.8rem;
  text-align: right;
}

.report-container .subheading1,
.report-container .subheading2 {
  text-align: center;
}

.report-container .subheading1 {
  font-weight: 500;
  font-size: 1.1rem;
  padding-top: 10px;
}

.report-container .subheading2 {
  font-weight: 700;
  font-size: 0.8rem;
}

.report-form-container form{
display: flex;
justify-content: center;
flex-wrap: wrap;

}

.report-form-container input{
  border-radius: 5px;
  border: 2px solid var(--a-primary-color);
}

.report-form-container select{
  border-radius: 5px;
  padding-left: 1.5px;
  border: 2px solid var(--a-primary-color);
  cursor: pointer;
}

.report-form-container label {
  padding-left: 5px;
}

/* .report-form-container h5, */
.page-body h3 {
  color: var(--a-contrast-text-color);
  background-color: var(--a-primary-color);
  margin-bottom: 5px;
  margin-top: 40px;
  padding: 8px 15px;
  width: 100%;
}

.page-body table a:visited {
  color: var(--a-primary-color);
} 

.report-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.report-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.report-form-container input[type=submit] {
  width: 150px;
  padding-top: 2px;
  padding-bottom: 2px;
  background-color: var(--a-primary-color);
  color: var(--a-contrast-text-color);
}

.report-form-container input[type=submit]:hover {
  cursor: pointer;
}

td {
  padding: 0px 10px;
}

td a button{
  color: var(--a-contrast-text-color);
}

.report-button {
  margin: 10px;
  /* color: var(--a-primary-color);
  border-color: var(--a-primary-color); */
}

.report-button:hover {
  color: var(--a-contrast-text-color);
  background-color: var(--drk-grey);
}


.report-button-active {
  border: 2px solid var(--a-primary-color);
  color: var(--a-contrast-text-color);
  background-color: var(--a-primary-color);
}

.report-button-active:hover {
  color: var(--a-contrast-text-color);
  background-color: var(--a-primary-color);
  cursor: default;
}

.table-title {
  font-size: 2rem;
  font-weight: 700;
}

/* .profile-container {
  display: none;
} */

/* .profile-active {
  display: block;
} */

/*********************************/
/*      ASSETS FORM styling      */
/*********************************/

.asset-form-container table{
  margin-left: auto;
  margin-right: auto;
}

.asset-form-container td {
  padding-bottom: 10px;
  text-align: right;
}

.asset-form-container textarea,
.asset-form-container select,
.asset-form-container input {
  width: 100%;
  padding: 7px;
}

.asset-form-container select {
  text-transform: uppercase;
}

.asset-form-container p {
  text-align: center;
}

.asset-form-container input[type=color] {
  padding: 0px;
  width: 180px;
}

.asset-form-container input[type=radio] {
  width: 1.3rem;
  height: 1.3rem;
  color: var(--a-primary-color);
}

/*********************************/
/*     UPLOAD LETTER styling     */
/*********************************/
.upload-letter{
  margin: 15px auto;
  background-color: white;
  max-width: 1000px;
  padding-bottom: 80px;
}

.upload-letter h3{
  font-size: 1.8rem;
}

.upload-form-block tr{
  height: 10px;
}

.upload-form-block {
  margin-top: 25px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  padding: 15px;
  border-radius: 15px;
  background-color: #E5E5E5;
  /* -webkit-box-shadow: 5px 5px 15px 5px rgba(0,0,0,0.49); 
  box-shadow: 5px 5px 15px 5px rgba(0,0,0,0.49); */
  }

.form-block button {
  display: block;
  margin:0 auto;
}

.choirVideoText {
  font-size: 1rem;
  max-width: 600px;
  padding: 10px 10px 25px 10px;
  margin-left: auto;
  margin-right: auto;
}

.choirVideoText h4{
  font-weight: bold;
  color: var(--sip-teal);
}

.choirVideoText p{
  margin-top: 0.7rem;
}

/* .upload-button, */
#video_upload_form input{
  width: 220px;
  color: white;
  text-decoration: none;
  background-color: var(--sip-teal);
  border: solid 2px var(--sip-teal);
  border-radius: 3px;
  transition: 0.35s ease;
}

#video_upload_form input {
  padding: 0px 5px;
}

.video-upload-step {
  font-size: 0.75rem;
}

.upload-button{
  padding: 3px 10px;
}


.cameras {
  display: flex;
  flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

.videolist {
  position: relative;
}

.videolist p {
  /* text-indent: 1rem; */
  margin-left: 35px;
}


.videolist p::before {
  content: "";
  background: var(--sip-teal);
  position: absolute;
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 50%;
  left: 1rem;
  margin-top: 5px;
  /* height: 10px;
  width: 10px; */
}

@media only screen and (min-width: 500px) {
  
  .sub-heading {
    flex-wrap: nowrap;
  }

}

/*********************************/
/*       Desktop layout          */
/*********************************/

@media only screen and (min-width: 800px) {

  p {
    font-size: 1rem;
    }

  .menu-bar {
    padding-left: 8%;
    padding-right: 5%;
  }

  .menu-bar a {
    font-size: 1.2rem;
    opacity: 1;
    padding: 2px 6px;
    border-radius: 3px;
    transition-property: color, background-color;
    transition-duration: 0.35s;
  }

  .menu-bar a:hover {
    color: var(--a-primary-color);
    background-color: var(--a-contrast-text-color);
  }

  .nav-toggle-label{
    display: none;
  }

  .navigation {
    all: unset;
    display: block;
    width: 100%;
    position: relative;
    background: none;
    transform: scale(1, 1);
  }

  .navigation a{
    font-weight: 400;
  }

  .navigation ul {
    /* text-align: right; */
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    list-style: none;
  }
  
  .navigation ul li {
    position: relative;
    margin: 0px;
    /* font-size: 0.8rem; */
    /* text-transform: uppercase; */
    padding-left: 15px;
    color: white;
    transition: 0.5s;
  }

  .navigation ul li ul {
    text-align: right;
    display: none;
    position: absolute;
    right: -15px;
    padding-top: 10px;
  }

  .navigation ul li:hover ul {
    display: block;
  }

  .navigation ul li ul li {
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 15px;
    background-color: var(--sip-arctic-blue);
    /* transition: 0.5s; */
  }

  .navigation ul li ul li a {
    font-size: 0.9rem;
    font-weight: 500;
    /* color: rgba(255, 255, 255, 0.9); */
    transition: 0.5s;
  }

  .navigation ul li ul li:hover,
  .navigation ul li ul li:hover a{
    background-color: var(--sip-teal);
    color: var(--sip-arctic-blue);
  }

  .nav-thumb {
    margin: 25px;
  }

  .auction-item-card .auction-item-sub-section:nth-of-type(2) .auction-section {
    margin-bottom: 35px;
  }

  .page-body {
    margin-top: 50px;
    padding: 35px;
  }

  /* .menu-bar img {
    display: inline-block;
    position: absolute;
    left: -15px;
    width: 1.5rem;
  } */

}


/************************************/
/* LOADER https://loading.io/css/ */
/************************************/

.lds-hourglass {
  display: inline-block;
  position: relative;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.lds-hourglass:after {
  content: " ";
  display: block;
  border-radius: 50%;
  width: 0;
  height: 0;
  margin: 6px;
  box-sizing: border-box;
  border: 8px solid var(--a-primary-color);
  border-color: var(--a-primary-color) transparent var(--a-primary-color) transparent;
  animation: lds-hourglass 1.2s infinite;
}
@keyframes lds-hourglass {
  0% {
    transform: rotate(0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  50% {
    transform: rotate(900deg);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  100% {
    transform: rotate(1800deg);
  }
}

  