:root {
    --blue: #1e90ff;
    --white: #ffffff;
    --black: #000000;
	--Darkcolor: #1f1f1f;
	--darkgrey: #5d5d5d;
	--Miracostablue: #005a9e;
	--tidepoolsblue: #004a84;
	--tidepoolsorange: #efaa65;
	--lightgrey: #999;
	--light-grey: #e9e6e6;
	--file-uploader__primaryColor: rgb(114, 191, 167);
	--file-uploader__primaryColor--hover: lighten(rgb(114, 191, 167), 15%);
	--file-uploader__black: #242424;
	--file-uploader__error: rgb(214, 93, 56);
	--2025red: #d44750;
	
  }

html {
	font-size: 10px;
}
  
body {
  font-family: "mr-eaves-modern", sans-serif;
  font-optical-sizing: auto;
  margin: 0 !important;
  font-size: 2.5em;
}

.navbar input[type="checkbox"],
.navbar .hamburger-lines{
    display: none;
}

.container{
    max-width: 1200px;
    margin: auto;
}

.container-s{
    max-width: 1200px;
    width: 90%;
    margin: auto;
}
/* Navigation */
nav a{
	font-family: "mr-eaves-modern", sans-serif;
	font-size:1.5em;
}

.navbar{
    box-shadow: 0px 5px 10px 0px #aaa;
    position: fixed;
    width: 100%;
    background: #fff;
    color: #000;
    opacity: 0.85;
    z-index: 100;
}

.navbar-container{
    display: flex;
    justify-content: space-between;
    height: 64px;
    align-items: center;
}

.menu-items{
    order: 2;
    display: flex;
}
.logo{
    order: 1;
    font-size: 2.3rem;
}

.menu-items li{
    list-style: none;
    margin-left: 1.5rem;
    font-size: 1.3rem;
}

.navbar a{
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
	color: var(--2025red);
}

.navbar a:hover{
    color: var(--Miracostablue);
}

/* End Navigation */

h1,h2,h3 {
    font-weight: normal;
	font-family: "etna", sans-serif;
}

h2 {
	color: var(--tidepoolsorange);
	font-weight: bold;
}

.link a{
	color: var(--2025red) !important;
}


a:hover{
	color: var(--Miracostablue); 
}

a.logout {
	font-size:1.5em;
	font-weight: bold;
}

.red {
	color: red;
}

span.error {
	color:red;
	font-size: 14px;
}

#submit-error {
	color: red;
}

svg.svg-inline--fa.fa-circle-check{
	color: green;
}

button:hover {
	background: var(--black);
}

.little {
	font-size: 13px;
}


/* Main Grid container */
img.logo {
    width: 200px;
}

.container {
    display: grid;
    grid-template-areas:
      "header header"
	  "under-header under-header"
      "hero hero"
	  "under-hero under-hero"
      "content content"
      "footer footer";
	  max-width: 100% !important;
	  padding: 0px !important;
  }

  
  .container > div {
    /** padding: 10px 20px;*/
  }

 
  .container > div.header {
    grid-area: header;
    background: var(--2025red);
  }

  

  .container > div.under-header {
	grid-area: under-header;
	background: url('https://www.tanikaholt.matmcc.org/wp-content/uploads/2025/04/banner-scaled.jpg');
	height: 20px;
  }



  .container > div.under-hero {
	grid-area: under-hero;
	background: var(--tidepoolsblue);
	color: var(--white);
	grid-template-columns: 1fr 3fr;
	display: grid;
	gap: 50px;
	padding:50px;

  }



  .container > div.hero {
    grid-area: hero;
    height: 600px;
    background: url('../images/hero.jpg')no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
  }


 
  .container > div.content {
    grid-area: content;
   /** max-width: 1440px;*/
  }

 
  .container > div.footer {
    grid-area: footer;
  }

 

  .footer {
	background: var(--Darkcolor);
  }

  * {box-sizing: border-box}


/* Style the tab */
./**
 * Article container
 */
.article-container {
	padding: 2rem;
}

/**
 * Article Block
 */
.article-block {
	text-align: center;
}

.article-block .entry-content > p {
	color: #666;
}

/**
 * Tabs container
 */
.tabs-container {
	/**padding: 2rem;*/
}

/**
 * Tabs Block
 */
.tabs-block {
	/*display: flex;*/
	align-items: center;
	justify-content: center;
}

/**
 * Tabs
 */
.tabs {
	display: flex;
}

.tabs > ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	width: 15%;
}

.tabs > ul li {
	display: block;
}

.tabs > ul li:not(:last-child) {
	border-bottom: 1px solid #262626;
}

.tabs > ul li a,
.tabs > ul li a:visited {
	display: flex;
	border-bottom: none;
	text-decoration: none;
	background-color: #000;
	color: #fff;
	padding: 1rem 1.5rem;
	transition: all 0.2s ease-in-out;
	word-wrap: break-word;
}

.tabs > ul li a:hover,
.tabs > ul li a:focus,
.tabs > ul li a:active {
	border-bottom: none;
	outline: 0;
}

.tabs > ul li a.active {
	background-color: var(--light-grey);
	color: #0067b8;
	font-weight: bold;
}

.tabs > ul li a:hover:not(.active) {
	color: #0067b8;
}

.tabs > ul li a > span {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.tabs > ul li a > span.tab-label {
	display: none;
}

.tabs section {
	width: 85%;
	background-color: #fff;
	padding: 1rem;
	display: none;
	word-wrap: break-word;
	border-bottom: 6px solid #0067b8;
}

.tabs section > * {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.2s, transform 0.2s;
}

.tabs section > *:nth-child(1) {
	transition-delay: 0.2s;
}

.tabs section > *:nth-child(2) {
	transition-delay: 0.3s;
}

.tabs section > *:nth-child(3) {
	transition-delay: 0.4s;
}

.tabs section > *:nth-child(4) {
	transition-delay: 0.5s;
}

.tabs section > *:nth-child(5) {
	transition-delay: 0.6s;
}

.tabs section > *:nth-child(6) {
	transition-delay: 0.7s;
}

.tabs section > *:nth-child(7) {
	transition-delay: 0.8s;
}

.tabs section > *:nth-child(8) {
	transition-delay: 0.9s;
}

.tabs section > *:nth-child(9) {
	transition-delay: 1s;
}

.tabs section > *:nth-child(10) {
	transition-delay: 1.1s;
}

.tabs section > *:nth-child(11) {
	transition-delay: 1.2s;
}

.tabs section > *:nth-child(12) {
	transition-delay: 1.3s;
}

.tabs section > *:nth-child(13) {
	transition-delay: 1.4s;
}

.tabs section > *:nth-child(14) {
	transition-delay: 1.5s;
}

.tabs section > *:nth-child(15) {
	transition-delay: 1.6s;
}

.tabs section > *:nth-child(16) {
	transition-delay: 1.7s;
}

.tabs section > *:nth-child(17) {
	transition-delay: 1.8s;
}

.tabs section > *:nth-child(18) {
	transition-delay: 1.9s;
}

.tabs section > *:nth-child(19) {
	transition-delay: 2s;
}

.tabs section > *:nth-child(20) {
	transition-delay: 2.1s;
}

.tabs section.active {
	display: block;
}

.tabs section.active-content > * {
	opacity: 1;
	transform: translateY(0);
}

.upload-area {
	background: var(--light-grey);
	text-align: center;
}

 


@media (min-width: 576px) {

	.tabs > ul {
		width: 300px;
	}

	.tabs > ul li a {
		flex-wrap: wrap;
	}

	.tabs > ul li a > span {
		width: 100%;
	}

	.tabs > ul li a > span.tab-label {
		width: 100%;
		display: block;
		margin-top: 0.2rem;
	}

	.tabs section {
		width: calc(100% - 300px);
		padding: 1rem 5rem;
	}
}



/* Form CSS */

.myForm {
    display: flex;
    flex-direction: column;
    background-color: beige;
    border-radius: 3px;
    padding: 1em;
  }
  .row {
    /*display: flex;*/
    justify-content: center;
  }
  .column {
    display: flex;
    flex-direction: column;
    padding: 1em;
  }
  textarea#msg-id {
	font-family: Arial !important;
	height: 100px;
	padding: 1em;
  }

  .input-group {
   	display: flex;
	flex-wrap: wrap;
  }
  .input-group > label {
    margin-right: 1em; 
    padding: .5em 0;
  }
  .myForm input,
  .myForm select {
    flex: 6; 
    padding: .5em;
    margin-bottom: 1em;
    margin-right: 1em;
  }
  .myForm button {
   padding: 1em; 
    background: gray;
    color: white;
    border: 0;
  }

  .myForm button:hover{
	background: black;
  }
  .myForm fieldset {
   	border: 0; 
  }
  .taxi > label,
  .extras > label {
    display: block;
  }

  .success-message{
    color: green;
    margin-top: 20px;
    border: 1px solid green;
    padding: 10px;
    background-color: #e7f9e7;
  }

  .error-message{
    color: red;
    margin-top: 20px;
    border: 1px solid red;
    padding: 10px;
    background-color: #f9e7e7;
  }


    /* Login Form */


  .login-title {
	text-align: center;
  }
  #login-page {
	display: flex;
  }
  .notice {
	font-size: 1em;
	text-align: center;
	color: #000;
	font-family:"mr-eaves-modern", sans-serif;
  }
  .login {
	width: 30%;
	height: 100vh;
	background: #FFF;
	padding: 70px;
  }

  .btn.download{
	width:auto;
	font-size:1.5em;
	font-family: "mr-eaves-modern", sans-serif;
	padding: 5px;
	border-radius: 0px;
	background: var(--tidepoolsblue);
  }

  .table.table-bordered.mt-3{
	font-family: "mr-eaves-modern", sans-serif;
	font-size:1.5em;
  }

  td {
	font-size: 1.3em;
  }

  td a {
	color: var(--2025red);
  }

  th{
	background: var(--black);
	color: #FFF;
  }

  .form-control.mb-2{
	font-size: 1.5em;
	font-family: "mr-eaves-modern", sans-serif;
  }

  .btn.btn-success.mb-2 {
	font-size: 1.5em;
	font-family: "mr-eaves-modern", sans-serif;
	margin-top: 15px;
	background: var(--tidepoolsblue);
	border: none;
	color: #FFF !important;
  }

  .btn.btn-success.mb-2:hover {
  background: #138496;
  }

  .btn.btn-info{
	margin-top: 10px;
	font-size:1.5em;
	font-family: "mr-eaves-modern", sans-serif;
	background: var(--tidepoolsblue);
  }

  .btn.download:hover{
	color: #FFF;
	background: #138496;
  }

  .btn.btn-primary.mb-2{
	font-size:1.5em;
	font-family: "mr-eaves-modern", sans-serif;
	padding: 10px;
	background: var(--lightgrey);
  }

  .container2.mt-5{
	padding: 0 50px;
  }
  

  .login-input {
	background:none;
	border: none;
  }

  .login a {
	margin-top: 25px;
	text-align: center;
	color: #000;
	font-family:"mr-eaves-modern", sans-serif;
	font-size: 20px;
  }
  .form-login {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	align-content: center;
  }
  .form-login label {
	text-align: left;
	font-size: .8em;
	margin-top: 10px;
	margin-left: 20px;
	display: block;
	color: #000;
	font-family:"mr-eaves-modern", sans-serif;
  }
  .input-email,
  .input-password {
	width: 100%;
	background: #ededed;
	border-radius: 25px;
	margin: 4px 0 10px 0;
	padding: 10px;
	display: flex;
  }

  input.admin-input {
	width:35% !important;
	background: #e2e2e2 !important;
	border: none;
	border-radius:20px !important;
	padding: 10px 20px !important;
  }
  .icon {
	padding: 4px;
	color: #666;
	min-width: 30px;
	text-align: center;
  }
  input[type="email"],
  input[type="password"] {
	width: 100%;
	border: 0;
	background: none;
	padding: 4px 0;
	outline: none;
  }

  input#email-id.email_field {
	background: var(--white);
	padding:.5em;
	border: 1px solid #000;
  }


  button[type="submit"] {
	width: 100%;
	border: 0;
	border-radius: 25px;
	padding: 14px;
	background: var(--2025red);
	color: #FFF;
	display: inline-block;
	cursor: pointer;
	font-size: 16px;
	font-weight: bold;
	margin-top: 10px;
	transition: ease all 0.3s;
  }
  button[type="submit"]:hover {
	opacity: 0.9;
  }
  .background {
	width: 70%;
	padding: 40px;
	height: 100vh;
	 /*background: linear-gradient(60deg, rgba(0, 102, 169, 0.5), rgba(8, 21, 60, 0.7)), url('../images/background.jpg') center no-repeat;*/
	background: url('../images/background.jpg') center no-repeat;
	background-size: cover;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: flex-end;
	align-content: center;
	flex-direction: row;
  }
  .background h1 {
	max-width: 420px;
	color: #FFF;
	text-align: right;
	padding: 0;
	margin: 0;
  }
  .background p {
	max-width: 650px;
	color: #1a1a1a;
	font-size: 15px;
	text-align: right;
	padding: 0;
	margin: 15px 0 0 0;
  }
  .created {
	margin-top: 40px;
	text-align: center;
  }
  .created p {
	font-size: 13px;
	font-weight: bold;
	color: #008552;
  }
  .created a {
	color: #666;
	font-weight: normal;
	text-decoration: none;
	margin-top: 0;
  }
  .checkbox label {
	display: inline;
	margin: 0;
  }

  /* Multi-Upload Button */

  .file-uploader {
	background-color: lighten var(--file-uploader__primaryColor, 30%);
	border-radius: 3px;
	color: var(--file-uploader__black);
  }
  
  .file-uploader__message-area {
	font-size: 18px;
	padding: 1em;
	text-align: center;
	color: darken var(--file-uploader__primaryColor, 25%);
  }
  
  .file-list {
	background-color: lighten var(--file-uploader__primaryColor, 45%);
	font-size: 16px;
  }
  
  .file-list__name {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
  }
  
  .file-list li {
	height: 50px;
	line-height: 50px;
	margin-left: 0.5em;
	border: none;
	overflow: hidden;
  }
  
  .removal-button {
	width: 20%;
	border: none;
	background-color: var(--file-uploader__error);
	color: white;
  
	&::before {
	  content: "X";
	}
	&:focus {
	  outline: 0;
	}
  }
  
  .file-chooser {
	padding: 1em;
	transition: background-color 1s, height 1s;
	& p {
	  font-size: 18px;
	  padding-top: 1em;
	}
  }
  

  .file-uploader {
	max-width: 400px;
	height: auto;
	margin: 2em auto;
  
	& * {
	  display: block;
	}
	& input[type="submit"] {
	  margin-top: 2em;
	  float: right;
	}
  }
  
  .file-list {
	margin: 0 auto;
	max-width: 90%;
  }
  
  .file-list__name {
	max-width: 70%;
	float: left;
  }
  
  .file-list li {
	@extend %clearfix;
  }
  
  .removal-button {
	display: inline-block;
	height: 100%;
	float: right;
  }
  
  .file-chooser {
	width: 90%;
	margin: 0.5em auto;
  }
  
  .file-chooser__input {
	margin: 0 auto;
  }
  
  .file-uploader__submit-button {
	width: 100%;
	border: none;
	font-size: 1.5em;
	padding: 1em;
	background-color: var(--file-uploader__primaryColor);
	color: white;
	&:hover {
	  background-color: var(--file-uploader__primaryColor--hover);
	}
  }
  
  
  .file-uploader {
	@extend %clearfix;
  }
  
 
  
  %clearfix {
	&:after {
	  content: "";
	  display: table;
	  clear: both;
	}
  }
  
  .hidden {
	display: none;
	& input {
	  display: none;
	}
  }
  
  .error {
	background-color: $file-uploader__error;
	color: white;
  }
  


  /* Media Querries */
  @media (max-width: 768px) {

	body {
		font-size: 1.125rem;
	}

	.tabs-container {
		padding: 4rem 4rem;
	}

	ul.tab-head
	{
		width: 100%;
	}

	.tabs {
		flex-direction: column;
	}

	.tabs > ul {
		width: 100%;
	}

	.tabs section {
		width: 100%;
	}

	h1{
		margin: 0px;
	}

	h3 {
		margin: 0px;
	}

	.navbar{
        opacity: 0.95;
    }

    .navbar-container input[type="checkbox"],
    .navbar-container .hamburger-lines{
        display: block;
    }

    .navbar-container{
        display: block;
        position: relative;
        height: 64px;
    }

    .navbar-container input[type="checkbox"]{
        position: absolute;
        display: block;
        height: 32px;
        width: 30px;
        top: 20px;
        left: 20px;
        z-index: 5;
        opacity: 0;
        cursor: pointer;
    }

    .navbar-container .hamburger-lines{
        display: block;
        height: 28px;
        width: 35px;
        position: absolute;
        top: 20px;
        left: 20px;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .navbar-container .hamburger-lines .line{
        display: block;
        height: 4px;
        width: 100%;
        border-radius: 10px;
        background: #333;
    }
    
    .navbar-container .hamburger-lines .line1{
        transform-origin: 0% 0%;
        transition: transform 0.3s ease-in-out;
    }

    .navbar-container .hamburger-lines .line2{
        transition: transform 0.2s ease-in-out;
    }

    .navbar-container .hamburger-lines .line3{
        transform-origin: 0% 100%;
        transition: transform 0.3s ease-in-out;
    }

    .navbar .menu-items{
        padding-top: 100px;
        background: #fff;
        height: 100vh;
        max-width: 300px;
        transform: translate(-150%);
        display: flex;
        flex-direction: column;
        margin-left: -40px;
        padding-left: 40px;
        transition: transform 0.5s ease-in-out;
        box-shadow:  5px 0px 10px 0px #aaa;
        overflow: scroll;
    }

    .navbar .menu-items li{
        margin-bottom: 1.8rem;
        font-size: 1.1rem;
        font-weight: 500;
    }

    .logo{
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 2.5rem;
    }

    .navbar-container input[type="checkbox"]:checked ~ .menu-items{
        transform: translateX(0);
    }

    .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line1{
        transform: rotate(45deg);
    }

    .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line2{
        transform: scaleY(0);
    }

    .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line3{
        transform: rotate(-45deg);
    }
}
@media (min-width: 992px) {

	
}

@media (max-width: 500px){
    .navbar-container input[type="checkbox"]:checked ~ .logo{
        display: none;
    }
}