/*--------------------------------------------------------------
CSS Reset
--------------------------------------------------------------*/
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  display: block;
  border: 0;
  width: 100%;
  height: auto;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

.calendar {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(7, minmax(80px, 1fr));
  grid-template-rows: 3.125em;
  grid-auto-rows: 3.125em;
  overflow: auto;
}
.calendar-container {
  width: 90%;
  margin: auto;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background: #fff;
  max-width: 600px;
}
.calendar-header {
  display: flex;
  justify-content: space-around;
  text-align: center;
  padding: 1.25em 0;
  background: linear-gradient(to bottom, #fafbfd 0%, rgba(255, 255, 255, 0) 100%);
  border-bottom: 1px solid rgba(166, 168, 179, 0.12);
}
.calendar-header h1 {
  font-size: 1.2em;
  color: rgba(81, 86, 93, 0.9);
  font-weight: normal;
}
.calendar-header a {
  text-decoration: none;
  text-transform: capitalize;
  color: #99a1a7;
  font-size: 1.2em;
  margin-top: 1em;
}
.calendar-header a:hover, .calendar-header a:active {
  color: #4786ff;
}

.day {
  border-bottom: 1px solid rgba(166, 168, 179, 0.12);
  border-right: 1px solid rgba(166, 168, 179, 0.12);
  text-align: right;
  padding: 18px 36px;
  letter-spacing: 1px;
  font-size: 12px;
  box-sizing: border-box;
  color: #98a0a6;
  position: relative;
  pointer-events: none;
  z-index: 1;
}
.day:nth-of-type(7n + 7) {
  border-right: 0;
}
.day:nth-of-type(n + 1):nth-of-type(-n + 7) {
  grid-row: 2;
}
.day:nth-of-type(n + 8):nth-of-type(-n + 14) {
  grid-row: 3;
}
.day:nth-of-type(n + 15):nth-of-type(-n + 21) {
  grid-row: 4;
}
.day:nth-of-type(n + 22):nth-of-type(-n + 28) {
  grid-row: 5;
}
.day:nth-of-type(n + 29):nth-of-type(-n + 35) {
  grid-row: 6;
}
.day:nth-of-type(7n + 1) {
  grid-column: 1/1;
}
.day:nth-of-type(7n + 2) {
  grid-column: 2/2;
}
.day:nth-of-type(7n + 3) {
  grid-column: 3/3;
}
.day:nth-of-type(7n + 4) {
  grid-column: 4/4;
}
.day:nth-of-type(7n + 5) {
  grid-column: 5/5;
}
.day:nth-of-type(7n + 6) {
  grid-column: 6/6;
}
.day:nth-of-type(7n + 7) {
  grid-column: 7/7;
}
.day-name {
  font-size: 12px;
  text-transform: uppercase;
  color: #99a1a7;
  text-align: center;
  border-bottom: 1px solid rgba(166, 168, 179, 0.12);
  line-height: 50px;
  font-weight: 500;
}
.day--disabled {
  color: rgba(152, 160, 166, 0.6);
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23f9f9fa' fill-opacity='1' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
  cursor: not-allowed;
}
.day--today {
  background-color: beige;
}
.day--holiday {
  background-color: rgba(0, 128, 0, 0.2);
}

.task {
  border-left-width: 3px;
  padding: 8px 12px;
  margin: 10px;
  border-left-style: solid;
  font-size: 14px;
  position: relative;
}
.task--warning {
  border-left-color: #fdb44d;
  grid-column: 4/span 3;
  grid-row: 3;
  background: #fef0db;
  align-self: center;
  color: #fc9b10;
  margin-top: -5px;
}
.task--danger {
  border-left-color: #fa607e;
  grid-column: 2/span 3;
  grid-row: 3;
  margin-top: 15px;
  background: rgba(253, 197, 208, 0.7);
  align-self: end;
  color: #f8254e;
}
.task--info {
  border-left-color: #4786ff;
  grid-column: 6/span 2;
  grid-row: 5;
  margin-top: 15px;
  background: rgba(218, 231, 255, 0.7);
  align-self: end;
  color: #0a5eff;
}
.task--primary {
  background: #4786ff;
  border: 0;
  border-radius: 4px;
  grid-column: 3/span 3;
  grid-row: 4;
  align-self: end;
  color: #fff;
  box-shadow: 0 10px 14px rgba(71, 134, 255, 0.4);
}
.task__detail {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  background: #fff;
  border: 1px solid rgba(166, 168, 179, 0.2);
  color: #000;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  z-index: 2;
}
.task__detail:after, .task__detail:before {
  bottom: 100%;
  left: 30%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.task__detail:before {
  border-bottom-color: rgba(166, 168, 179, 0.2);
  border-width: 8px;
  margin-left: -8px;
}
.task__detail:after {
  border-bottom-color: #fff;
  border-width: 6px;
  margin-left: -6px;
}
.task__detail h2 {
  font-size: 15px;
  margin: 0;
  color: #51565d;
}
.task__detail p {
  margin-top: 4px;
  font-size: 12px;
  margin-bottom: 0;
  font-weight: 500;
  color: rgba(81, 86, 93, 0.7);
}

.rule-1 {
  value: 3.125em;
}

/*--------------------------------------------------------------
Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar */
}

/*--------------------------------------------------------------
Typography
--------------------------------------------------------------*/
body {
  background-color: darkgrey;
  margin: 0;
}

body,
button,
input,
select,
textarea {
  font-family: "Source Sans Pro", "Helvetica", "Arial", sans-serif;
  font-size: 18px;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
}

h2 {
  font-font: "Arvo", serif;
  font-weight: bold;
  font-size: 3.6em;
  color: #333;
}

p {
  margin-bottom: 1.5em;
}

b,
strong {
  font-weight: bold;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  display: inline-block;
  font-family: "Courier 10 Pitch", Courier, monospace;
  color: #ddca7e;
  background: #282c34;
  padding: 0.5em 0.8em;
  border-radius: 0.2em;
}

code,
kbd,
tt,
var {
  font: 15px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}

sup,
sub {
  font-size: 75%;
  height: 0;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  bottom: 1ex;
}

sub {
  top: 0.5ex;
}

small {
  font-size: 75%;
}

big {
  font-size: 125%;
}

figure {
  margin: 0;
  padding: 0;
}

/*--------------------------------------------------------------
General styling
--------------------------------------------------------------*/
h1,
h2,
h3 {
  text-align: center;
  margin: 0;
  padding: 1em 0;
}

p {
  margin: 0;
  padding: 1em 0;
}

img {
  display: block;
  border: 0;
  width: 100%;
  height: auto;
}

.left-aside {
  background-color: #fff;
}

.main-header {
  background-image: url("../images/img-burroughs-farms-004.jpg");
  background-repeat: no-repeat;
  background-size: 50em 12.5em;
  line-height: 3.125rem;
}
.main-header h2 {
  font-size: 4.2em;
  color: rgba(255, 0, 0, 0.8);
  text-shadow: #fff 2px 2px;
}

.login-section {
  background-color: #f9f9f9;
}

.main-content {
  background-color: #f1f1f1;
  padding: 1.25em 0;
}

.image-container {
  display: flex;
  padding: 1.25em;
}

.footer {
  background-color: #fff;
  text-align: center;
}

.logout {
  padding: 1.25em;
  margin: 0 auto;
}
.logout .btn3 {
  clear: both;
  display: block;
  width: 6.25em;
  height: 1.25em;
  font-size: 1.2em;
  line-height: 1.25em;
  text-align: center;
  text-decoration: none;
  color: #555;
  border: 1px solid #555;
  padding: 0.3125em;
  margin: 0 auto;
  transition: background-color 0.5s;
}
.logout .btn3:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

/* Login Form CSS Styling */
form {
  display: grid;
  max-width: 100%;
  padding: 1.875em 1em;
}

form input {
  background: #fff;
  border: 1px solid #9c9c9c;
}

form button {
  background-color: #f1f1f1;
  padding: 0 0.7em;
  width: 100%;
  border: 0;
}

form button:hover {
  background-color: gold;
}

label {
  padding: 0.5em 0.5em 0.5em 0;
}

input {
  padding: 0.7em;
  margin-bottom: 0.5rem;
}

input:focus {
  outline: 0.188em solid gold;
}

@media (min-width: 12.5em) {
  form {
    grid-template-columns: 1fr 12.5em;
    grid-auto-rows: 2.5em;
  }

  label {
    text-align: left;
    grid-column: 1/2;
  }

  input,
button {
    grid-column: 2/3;
  }
}
/*--------------------------------------------------------------
Basic responsive layout for all browsers:
--------------------------------------------------------------*/
.site {
  max-width: none;
}

/*--------------------------------------------------------------
CSS Grid layout for modern browsers:
--------------------------------------------------------------*/
@supports (grid-area: auto) {
  @media screen and (min-width: 50em) {
    .site {
      max-width: none;
      display: grid;
      grid-template-columns: 25em auto 1fr;
    }

    /* Members Only */
    #member-left, #member-right {
      display: none;
    }

    /* Left Side Container CSS */
    #displayLogon {
      display: grid;
    }

    .left-container {
      grid-column: 1/2;
      grid-template-columns: 1fr;
      grid-template-rows: 12.5em;
      margin: 1.25em;
    }

    .login-section {
      grid-column: 1/2;
      grid-row: 1/2;
      background-color: rgba(255, 255, 255, 0.5);
    }

    /* Main Content CSS */
    .main-container {
      grid-column: 2/3;
      grid-row: 1/2;
      display: grid;
      grid-template-columns: 12.5em repeat(2, minmax(auto, 25em)) 12.5em;
      grid-template-rows: 12.5em 1fr 3.125em repeat(2, 12.5em);
      grid-column-gap: 0.625em;
      grid-row-gap: 0.625em;
      justify-content: space-evenly;
      justify-items: inherit;
      width: 100%;
      max-width: 87.5em;
      margin: 1.25em auto;
    }

    .left-aside {
      grid-column: 1/2;
      grid-row: 1/2;
    }

    .main-header {
      grid-column: 2/4;
      grid-row: 1/2;
      display: flex;
      justify-content: center;
    }

    .right-aside {
      grid-column: 4/5;
      grid-row: 1/2;
      display: flex;
      justify-content: center;
    }
    .right-aside .myButton {
      cursor: pointer;
    }

    .main-content {
      grid-column: 1/3;
      grid-row: 2/3;
      display: flex;
      flex-direction: column;
    }

    .image-container {
      grid-column: 3/5;
      grid-row: 2;
      display: flex;
      justify-content: space-evenly;
      background-color: #f1f1f1;
    }

    .footer {
      grid-column: 1/5;
      grid-row: 3/4;
    }

    /* Right Side CSS */
    .right-container {
      grid-column: 3/4;
      grid-row: 1/4;
      display: grid;
      grid-template-columns: 1fr;
      grid-template-rows: 1fr;
      margin: 1.25em;
    }

    .members-only {
      grid-column: 1/1;
      background-color: rgba(255, 255, 255, 0.5);
    }
  }
}

/*# sourceMappingURL=stylesheet.css.map */
