body {
  font-family: "Work Sans", serif;
  font-optical-sizing: auto;
  padding: 0;
  margin: 0;
}

.mynfp-orange { color: #f89829; }
.mynfp-background { background: #f89829; }

.site-footer {
  background: #fff5e5;
  width: fit-content;
}

a, a:visited { color: #d17408; }
a:hover { color: #0a58ca; }

.justify { text-align: justify !important; }

.dropdown a, .documents a, .calendar a, .events a,
.site-footer a, #forgotpasswordtext a, #forgotsuccess a {
  text-decoration: none;
}

.whitespacepreserve {
  white-space: pre-wrap;
  overflow-wrap: break-word;
}

hr { margin: 0 auto; }

#eventstitle { width: fit-content; }
#eventcalendar {
  border-spacing: 1em;
  border-collapse: separate;
  height: 1px;
}
#eventcalendar td.weekend {
  border-color: gray-100 !important;
}
.calendarevententry { font-size: 80%; }

#loginbody {
  background-image: url("https://mynfp.com.au/background-memberlogin.jpg");
  background-size: cover;
}
#login { background-color: rgba(248, 152, 41, 0.75); }
#loginbuttons { height: 64px; }

#feedbackmain {
  background-image: url("https://mynfp.com.au/background-feedback.jpg");
  background-size: cover;
}

.incircle {
  display: block;
  background: #4444ff;
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 120%;
  font-weight: bold;
}

.folder {
  width: 15px;
  height: 10px;
  position: relative;
  background-color: #ff9900; 
  border-radius: 0 1px 1px 1px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.59);
}

.folder:before {
  content: '';
  width: 50%;
  height: 2px;
  border-radius: 0 2px 0 0;
  background-color: #ff9900;
  position: absolute;
  top: -2px;
  left: 0px;
}

.locked {
  background-color: gray;
  border-radius: 3px;
  width: 15px;
  height: 15px;
  margin-top: 10px;
  position: relative;
}

.locked:before {
  content: "";
  position: absolute;
  border: 3px solid gray;
  top: -10px;
  left: 2px;
  width: 10px;
  height: 15px;
  border-radius: 10px 10px 0 0;
}

.hovertip {
  position: relative;
  display: inline-block;
}

.hovertip .hovertiptext {
  visibility: hidden;
  width: 200px;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  position: absolute;
  z-index: 1;
}

.hovertip:hover .hovertiptext {
  visibility: visible;
}