/* BOX SIZING */
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* NORMALIZE */
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section, summary {
  display: block;
}

audio, canvas, video {
  display: inline;
  zoom: 1;
}

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

[hidden] {
  display: none;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

html, button, input, select, textarea {
  font-family: sans-serif;
}

a:focus {
  outline: thin dotted;
}

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

h1 {
  font-size: 1.7em;
  margin: 0.5em 0;
  line-height: 1em;
}

h2 {
  font-weight: 900;
  font-size: 1.5em;
  line-height: 1.2em;
  margin: 0.83em 0 0 0;
}

h3 {
  font-size: 1.17em;
  margin: 1em 0 0 0;
}

h4 {
  font-size: 1em;
  margin: 1.33em 0;
}

h5 {
  font-size: 0.83em;
  margin: 1.67em 0;
}

h6 {
  font-size: 0.75em;
  margin: 2.33em 0;
}

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

b, strong {
  font-weight: 700;
}

blockquote {
  margin: 1em 40px;
}

dfn {
  font-style: italic;
}

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

code, kbd, pre, samp {
  font-family: monospace, serif;
  _font-family: "courier new", monospace;
  font-size: 1em;
}

pre {
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: none;
}

q:before, q:after {
  content: none;
}

small {
  font-size: 75%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

dd {
  margin: 0 0 0 40px;
}

menu, ol, ul {
  padding: 0 0 0 40px;
}

nav ul, nav ol {
  list-style: none;
  list-style-image: none;
}

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}

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

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

legend {
  border: 0;
  white-space: normal;
  margin-left: -7px;
  padding: 0;
}

button, input, select, textarea {
  font-size: 100%;
  vertical-align: middle;
  margin: 0;
}

button, input {
  line-height: normal;
}

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

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

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

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

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

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

textarea {
  overflow: auto;
  vertical-align: top;
}

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

body, figure, form {
  margin: 0;
}

p, pre, dl, menu, ol, ul {
  margin: 1em 0;
}

/* CLEARFIX MICRO */
.cf:before, .cf:after {
  content: " ";
  display: table;
}

.cf:after {
  clear: both;
}

.block {
  display: block;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}
.flex.ai-center {
  align-items: center;
}
.flex.center {
  justify-content: center;
}
.flex.nowrap, .flex.no-wrap {
  flex-wrap: nowrap;
}
.flex.top {
  align-items: flex-start;
}

.flex-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.flex-boxes .box {
  flex: 2 2 auto;
}
.flex-boxes .box.box-33 {
  flex: 1 1 30%;
  max-width: 33%;
}
@media only screen and (max-width: 1200px) {
  .flex-boxes .box.box-33 {
    flex: 1 1 40%;
    max-width: 49%;
  }
}
@media only screen and (max-width: 800px) {
  .flex-boxes .box.box-33 {
    flex: 1 1 60%;
    max-width: 100%;
  }
}
@media only screen and (max-width: 600px) {
  .flex-boxes .box.box-33 {
    flex: 1 1 100%;
  }
}
.flex-boxes.center {
  justify-content: center;
}
.flex-boxes.top {
  align-items: flex-start;
}

.flex-fill {
  display: flex;
  justify-content: space-between;
}
.flex-fill.center, .flex-fill.ai-center {
  align-items: center;
}
.flex-fill.top {
  align-items: flex-start;
}

/* COLUMNS */
.col {
  float: left;
  padding: 10px;
}

.col-right {
  float: right;
}

.col-10 {
  width: 10%;
}

.col-15 {
  width: 15%;
}

.col-20 {
  width: 20%;
}

.col-25 {
  width: 25%;
}

.col-30 {
  width: 30%;
}

.col-33 {
  width: 33%;
}

.col-40 {
  width: 40%;
}

.col-50 {
  width: 50%;
}

.col-60 {
  width: 60%;
}

.col-70 {
  width: 70%;
}

.col-75 {
  width: 75%;
}

.col-80 {
  width: 80%;
}

.col-85 {
  width: 85%;
}

.col-90 {
  width: 90%;
}

.col-100 {
  width: 100%;
}

.col-wrap .col-25:nth-child(4n+1) {
  clear: both;
}

.col-wrap .col-20:nth-child(5n+1) {
  clear: both;
}

.col-wrap .col-33:nth-child(3n+1) {
  clear: both;
}

.col-wrap .col-50:nth-child(2n+1) {
  clear: both;
}

@media only screen and (max-width: 900px) {
  .col-50, .col-60, .col-70, .col-40, .col-30 {
    width: 100%;
  }
  .col-33, .col-25, .col-20 {
    width: 50%;
  }
  .col-wrap .col:nth-child(2n+1) {
    clear: both;
  }
  .col-wrap .col:nth-child(4n+1),
  .col-wrap .col:nth-child(5n+1),
  .col-wrap .col:nth-child(3n+1) {
    clear: none;
  }
  .col-wrap .col-50:nth-child(2n+1) {
    clear: none;
  }
}
@media only screen and (max-width: 600px) {
  .col {
    padding: 5px;
  }
  .col-33, .col-25, .col-20 {
    width: 100%;
  }
}
.ta-center {
  text-align: center;
}

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

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

.bold {
  font-weight: bold;
}

.bold900 {
  font-weight: 900;
}

.fs-0-5 {
  font-size: 0.5em;
  line-height: 1em;
}

.fs-0-6 {
  font-size: 0.6em;
  line-height: 1em;
}

.fs-0-7 {
  font-size: 0.7em;
  line-height: 1em;
}

.fs-0-8 {
  font-size: 0.8em;
  line-height: 1em;
}

.fs-0-9 {
  font-size: 0.9em;
  line-height: 1em;
}

.fs-1-1 {
  font-size: 1.1em;
  line-height: 1em;
}

.fs-1-2 {
  font-size: 1.2em;
  line-height: 1em;
}

.fs-1-3 {
  font-size: 1.3em;
  line-height: 1em;
}

.fs-1-4 {
  font-size: 1.4em;
  line-height: 1em;
}

.fs-1-5 {
  font-size: 1.5em;
  line-height: 1em;
}

.fs-1-6 {
  font-size: 1.6em;
  line-height: 1em;
}

.fs-1-7 {
  font-size: 1.7em;
  line-height: 1em;
}

.fs-1-8 {
  font-size: 1.8em;
  line-height: 1em;
}

.fs-1-9 {
  font-size: 1.9em;
  line-height: 1em;
}

.fs-2 {
  font-size: 2em;
  line-height: 1.1em;
}

.fs-3 {
  font-size: 3em;
  line-height: 1.1em;
}

.lh-1 {
  line-height: 1em;
}

.lh-1-1 {
  line-height: 1.1em;
}

.lh-1-2 {
  line-height: 1.2em;
}

.lh-1-3 {
  line-height: 1.3em;
}

.lh-1-4 {
  line-height: 1.4em;
}

.lh-1-5 {
  line-height: 1.5em;
}

.lh-2 {
  line-height: 2em;
}

.pad-s {
  padding: 5px;
}

.pad-m {
  padding: 10px;
}

.pad-l {
  padding: 20px;
}

.pad-xl {
  padding: 40px;
}

.pad-horz-s {
  padding-left: 5px;
  padding-right: 5px;
}

.pad-horz-m {
  padding-left: 10px;
  padding-right: 10px;
}

.pad-horz-l {
  padding-left: 20px;
  padding-right: 20px;
}

.pad-horz-xl {
  padding-left: 40px;
  padding-right: 40px;
}

.pad-vert-s {
  padding-top: 5px;
  padding-bottom: 5px;
}

.pad-vert-m {
  padding-top: 10px;
  padding-bottom: 10px;
}

.pad-vert-l {
  padding-top: 20px;
  padding-bottom: 20px;
}

.pad-vert-xl {
  padding-top: 40px;
  padding-bottom: 40px;
}

.pad-bot-s {
  padding-bottom: 5px;
}

.pad-bot-m {
  padding-bottom: 10px;
}

.pad-bot-l {
  padding-bottom: 20px;
}

.pad-bot-xl {
  padding-bottom: 40px;
}

.pad-top-s {
  padding-top: 5px;
}

.pad-top-m {
  padding-top: 10px;
}

.pad-top-l {
  padding-top: 20px;
}

.pad-top-xl {
  padding-top: 40px;
}

.pad-left-s {
  padding-left: 5px;
}

.pad-left-m {
  padding-left: 10px;
}

.pad-left-l {
  padding-left: 20px;
}

.pad-left-xl {
  padding-left: 40px;
}

.pad-right-s {
  padding-right: 5px;
}

.pad-right-m {
  padding-right: 10px;
}

.pad-right-l {
  padding-right: 20px;
}

.pad-right-xl {
  padding-right: 40px;
}

.mar-s {
  margin: 5px;
}

.mar-m {
  margin: 10px;
}

.mar-l {
  margin: 20px;
}

.mar-xl {
  margin: 40px;
}

.mar-horz-s {
  margin-left: 5px;
  margin-right: 5px;
}

.mar-horz-m {
  margin-left: 10px;
  margin-right: 10px;
}

.mar-horz-l {
  margin-left: 20px;
  margin-right: 20px;
}

.mar-horz-xl {
  margin-left: 40px;
  margin-right: 40px;
}

.mar-vert-s {
  margin-top: 5px;
  margin-bottom: 5px;
}

.mar-vert-m {
  margin-top: 10px;
  margin-bottom: 10px;
}

.mar-vert-l {
  margin-top: 20px;
  margin-bottom: 20px;
}

.mar-vert-xl {
  margin-top: 40px;
  margin-bottom: 40px;
}

.mar-bot-no {
  margin-bottom: 0px;
}

.mar-bot-s {
  margin-bottom: 5px;
}

.mar-bot-m {
  margin-bottom: 10px;
}

.mar-bot-l {
  margin-bottom: 20px;
}

.mar-bot-xl {
  margin-bottom: 40px;
}

.mar-top-no {
  margin-top: 0px;
}

.mar-top-s {
  margin-top: 5px;
}

.mar-top-m {
  margin-top: 10px;
}

.mar-top-l {
  margin-top: 20px;
}

.mar-top-xl {
  margin-top: 40px;
}

.pad-r-s {
  padding-right: 5px;
}

.pad-r-m {
  padding-right: 10px;
}

.pad-r-l {
  padding-right: 20px;
}

.pad-r-xl {
  padding-right: 40px;
}

.pad-l-s {
  padding-left: 5px;
}

.pad-l-m {
  padding-left: 10px;
}

.pad-l-l {
  padding-left: 20px;
}

.pad-l-xl {
  padding-left: 40px;
}

.width-20 {
  max-width: 20px;
  width: 100%;
}

.width-25 {
  max-width: 25px;
  width: 100%;
}

.width-40 {
  max-width: 40px;
  width: 100%;
}

.width-50 {
  max-width: 50px;
  width: 100%;
}

.width-60 {
  max-width: 60px;
  width: 100%;
}

.width-75 {
  max-width: 75px;
  width: 100%;
}

.width-80 {
  max-width: 80px;
  width: 100%;
}

.width-100 {
  max-width: 100px;
  width: 100%;
}

.width-150 {
  max-width: 150px;
  width: 100%;
}

.width-200 {
  max-width: 200px;
  width: 100%;
}

.width-250 {
  max-width: 250px;
  width: 100%;
}

.width-300 {
  max-width: 300px;
  width: 100%;
}

.width-350 {
  max-width: 350px;
  width: 100%;
}

.width-400 {
  max-width: 400px;
  width: 100%;
}

.width-480 {
  max-width: 480px;
  width: 100%;
}

.width-500 {
  max-width: 500px;
  width: 100%;
}

.width-600 {
  max-width: 600px;
  width: 100%;
}

.width-700 {
  max-width: 700px;
  width: 100%;
}

.width-800 {
  max-width: 800px;
  width: 100%;
}

.width-900 {
  max-width: 900px;
  width: 100%;
}

.width-1000 {
  max-width: 1000px;
  width: 100%;
}

.width-1100 {
  max-width: 1100px;
  width: 100%;
}

.width-1200 {
  max-width: 1200px;
  width: 100%;
}

.middle {
  margin-right: auto;
  margin-left: auto;
}

body {
  font-weight: 400;
  font-family: "Lato", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", "Helvetica", "Arial", "Lucida Grande";
  font-size: 16px;
  line-height: 22px;
  background: #efefef;
  color: #454454;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: "subpixel-antialiased";
  padding: 0;
  margin: 0;
  text-rendering: optimizeLegibility;
}

body, html {
  height: 100%;
}

a {
  text-decoration: none;
  font-weight: bold;
  color: #065783;
}

img {
  -ms-interpolation-mode: bicubic;
  max-width: 100%;
  height: auto;
  border: 0;
}

.hide {
  display: none;
}

.no-wrap {
  white-space: nowrap;
}

h1, h1 a,
h2, h2 a,
h3, h3 a {
  font-weight: 900;
  color: #065783;
}

.square {
  aspect-ratio: 1/1;
}

.sixteennine {
  aspect-ratio: 16/9;
  width: 100%;
  position: relative;
  /*
  &:after 
  { 
  	padding-top: 56.25%; 
  	display: block; 
  	content: ''; 
  }*/
}

hr {
  border: 0;
  height: 2px;
  background: rgba(0, 0, 0, 0.2);
  margin: 20px 0;
}

.border-5 {
  border-radius: 5px;
  overflow: hidden;
}

.border-10 {
  border-radius: 10px;
  overflow: hidden;
}

.border-20 {
  border-radius: 20px;
  overflow: hidden;
}

.border-5-white {
  border: solid 5px #fff;
}

.border-10-white {
  border: solid 10px #fff;
}

.shadow {
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}

.shadow-10-grey {
  box-shadow: 0 0 10px #ccc;
}

.shadow-5-grey {
  box-shadow: 0 0 5px #ccc;
}

a.fc-normal,
.fc-normal {
  color: #343434 !important;
}

.italic {
  font-style: italic;
}

.white {
  background: #fff;
}

.grey {
  background: #E4E4E4;
}

.light {
  background: #F5F5F5;
}

.badge {
  font-size: 0.9em;
  background-color: #065783;
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  border-radius: 2px;
  padding: 5px 10px;
  display: inline-block;
  margin: 1px;
  font-weight: 900;
}
.badge.rounded {
  border-radius: 20px;
  padding: 5px 14px;
}
.badge.outline {
  background: transparent;
  border: solid 1px #065783;
  color: #065783;
}

table th {
  font-size: 0.8em;
  text-align: left;
  line-height: 1.2em;
  text-transform: uppercase;
  padding: 6px 10px;
}
table td {
  border-top: 1px solid #ccc;
  padding: 6px 10px;
  line-height: 1.3em;
}

blockquote {
  padding: 30px;
  margin: 20px;
  border-left: solid 7px #065783;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 2px 2px #ccc;
  font-size: 1em;
  line-height: 1.4em;
}

.highlight {
  margin: 20px 0;
  padding: 20px;
  background: rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.pagination {
  text-align: center;
  padding: 20px 20px 80px 20px;
  margin-top: 40px;
}
.pagination a {
  font-weight: 400;
  text-decoration: none;
  padding: 10px;
  font-size: 1.1em;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.1);
  margin: 0 1px;
}
.pagination .co a {
  background: #065783;
  color: #ffffff !important;
  padding: 20px 10px;
  font-weight: 900;
  margin: 0 3px;
}

.global-notifications {
  padding: 10px;
  text-align: center;
  background: #35be55;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  color: #fff;
  font-size: 1em;
  margin-bottom: 10px;
}

.notification {
  padding: 5px;
  border-radius: 2px;
  max-width: 800px;
  margin: 5px auto;
}
.notification .title {
  font-size: 1.1em;
  line-height: 1em;
  padding: 10px;
  font-weight: 900;
}
.notification.with-message {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#page-decoration {
  min-height: 100%;
  background-position: top left;
  background-repeat: no-repeat;
  background-image: url(/images/geo.png);
  background-size: 30%;
}

#header {
  background: #065783;
  background: rgba(7, 84, 125, 0.5803921569);
}
#header .inner {
  max-width: 2000px;
  margin: 0 auto;
}
#header .top {
  position: relative;
  display: flex;
  justify-content: space-between;
  vertical-align: middle;
  align-items: center;
  padding: 20px;
}
@media (max-width: 600px) {
  #header #logo {
    flex: 0 0 110px;
  }
}
#header #logo img {
  max-width: 150px;
  display: block;
}
@media (max-width: 600px) {
  #header #logo img {
    padding-top: 0;
    max-width: 100%;
  }
}
#header #mobile-options {
  margin-left: auto;
  padding: 0 10px 0 0;
  display: none;
}
@media (max-width: 600px) {
  #header #mobile-options {
    display: inline-block;
  }
}
#header #mobile-options a {
  font-size: 13px;
  line-height: 1em;
  padding: 13px 10px;
  background: #065783;
  color: #fff;
  border-radius: 5px;
  margin: 3px;
  text-transform: uppercase;
  display: inline-block;
}
#header #extras {
  text-align: right;
  width: 50%;
  padding: 5px;
  position: relative;
  margin-left: auto;
}
@media (max-width: 600px) {
  #header #extras {
    display: none;
  }
}
#header #extras a {
  border-radius: 4px;
  font-size: 12px;
  text-transform: uppercase;
  padding: 5px 15px;
  margin: 5px;
  white-space: nowrap;
  color: #fff;
  transition: background 0.25s;
}
#header #extras a.selected, #header #extras a:hover {
  background: rgba(0, 0, 0, 0.3);
}
#header .profile {
  align-self: center;
  width: 45px;
  height: 45px;
  margin-right: 10px;
}
#header .profile a img {
  border: solid 3px #fff;
  border-radius: 100%;
  display: inline-block;
  transition: border 0.25s;
}
#header .profile a:hover img {
  border: solid 3px #ccc;
}

#content-wrap {
  margin: 0 auto;
  padding-bottom: 60px;
}

#nav {
  background: rgba(0, 0, 0, 0.1);
  text-align: center;
  font-size: 1.2em;
  border-radius: 5px;
  padding: 15px;
}
#nav .inner {
  max-width: 2000px;
  margin: 0 auto;
}
#nav .mobile-only {
  display: none;
}
@media (max-width: 600px) {
  #nav .mobile-only {
    display: block;
  }
}
@media (max-width: 600px) {
  #nav {
    display: none;
  }
  #nav.open {
    display: block;
    border-radius: 0;
  }
  #nav.open a {
    display: block;
  }
}
#nav a {
  font-size: 1em;
  text-transform: uppercase;
  padding: 10px 15px;
  color: #fff;
  border-radius: 2px;
  display: inline-block;
  white-space: nowrap;
}
#nav a.selected {
  background: #fff;
  color: #065783;
  padding: 10px 25px;
  margin: 0 10px;
}

.members-nav {
  margin-top: -20px;
  margin-left: -20px;
  margin-right: -20px;
  margin-bottom: 20px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.8);
  padding: 10px;
  text-align: center;
}
@media (max-width: 600px) {
  .members-nav {
    margin: -10px -10px 20px -10px;
    padding: 10px 20px;
    white-space: nowrap;
    overflow-x: scroll;
    position: relative;
    mask-image: linear-gradient(to right, black calc(100% - 50px), transparent 100%);
  }
}
.members-nav a {
  padding: 10px 15px;
  font-size: 0.9em;
  line-height: 1em;
  white-space: nowrap;
  display: inline-block;
  border-radius: 5px;
  transition: background 0.25s;
}
.members-nav a:hover {
  background: rgba(0, 0, 0, 0.1);
}
.members-nav a.selected {
  background: #333;
  color: #fff;
}

#content {
  padding: 20px;
  max-width: 1800px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  #content {
    padding: 10px;
  }
}
#content p {
  margin: 0px;
  padding: 7px 0;
}

body.frontend #content img {
  max-width: 100%;
  height: auto;
}

#footer {
  max-width: 500px;
  margin: 20px auto;
  font-size: 0.8em;
  line-height: 1.3em;
  padding: 10px;
  text-align: center;
  color: #242424;
}

.filters {
  margin-bottom: 10px;
}
@media (max-width: 780px) {
  .filters {
    white-space: nowrap;
    overflow-x: scroll;
  }
}
@media (prefers-color-scheme: dark) {
  .filters .button.filter {
    color: #fff;
  }
}

.button {
  background: #065783;
  color: #fff;
  padding: 10px 20px;
  transition: background 0.25s;
  vertical-align: middle;
  white-space: nowrap;
  font-size: 0.9em;
  line-height: 1.5em;
  text-transform: uppercase;
  border-radius: 3px;
  font-weight: 900;
  display: inline-block;
  margin: 3px;
  border-top: 0 !important;
  border-right: 0 !important;
  border-left: 0 !important;
  border-bottom: solid 2px rgba(0, 0, 0, 0.3);
}
.button .badge {
  line-height: 1em;
}
.button:hover {
  text-decoration: none;
  background: #012d46;
  color: #fff;
}
.button i.pad-r {
  padding-right: 8px;
}
.button.delete {
  background: #e46360;
}
.button.delete:hover {
  background: #c53734;
}
.button.save {
  background: #35be55;
}
.button.save:hover {
  background: #3caa40 !important;
}
.button.view {
  background: #69c54c;
}
.button.view:hover {
  background: #59b23d !important;
}
.button.featured {
  background: #dbba05;
}
.button.featured:hover {
  background: #dbba05 !important;
}
.button.disabled {
  background: #efefef;
  cursor: default;
  color: #666;
}
.button.disabled:hover {
  background: #efefef;
  color: #fff;
  color: #666;
}
.button.grey {
  background: rgba(0, 0, 0, 0.3);
  cursor: default;
  color: #fff;
  border: none;
}
.button.filter {
  background: transparent;
  border: none;
  color: #111;
}
.button.filter.selected {
  background: #111;
  color: #fff;
}
.button.filter.selected .badge.dark {
  background: rgba(255, 255, 255, 0.3);
}
.button.dark {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
}
.button.dark-selected {
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
  border: none;
}
.button.selected {
  background: #012d46;
}
.button.lighter {
  background: #39a0da;
}
.button.smllr {
  padding: 5px 15px;
  font-size: 0.8em;
  margin: 3px 1px;
}
.button.smllr .badge {
  padding: 2px 7px !important;
  margin-left: 8px;
  margin-right: -5px;
}
.button.smllr .badge.light {
  background: rgba(255, 255, 255, 0.3);
}
.button.smallest {
  padding: 2px 10px;
  font-size: 11px;
  margin: 1px;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=password],
input[type=search],
input[type=date],
input[type=datetime-local],
input[type=file],
input[type=time],
input[type=number],
textarea,
select {
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  border: solid 2px #ccc;
  font-size: 1.1em;
}
input[type=text].saved, input[type=text].saved:focus, input[type=text].saved:hover,
input[type=tel].saved,
input[type=tel].saved:focus,
input[type=tel].saved:hover,
input[type=email].saved,
input[type=email].saved:focus,
input[type=email].saved:hover,
input[type=password].saved,
input[type=password].saved:focus,
input[type=password].saved:hover,
input[type=search].saved,
input[type=search].saved:focus,
input[type=search].saved:hover,
input[type=date].saved,
input[type=date].saved:focus,
input[type=date].saved:hover,
input[type=datetime-local].saved,
input[type=datetime-local].saved:focus,
input[type=datetime-local].saved:hover,
input[type=file].saved,
input[type=file].saved:focus,
input[type=file].saved:hover,
input[type=time].saved,
input[type=time].saved:focus,
input[type=time].saved:hover,
input[type=number].saved,
input[type=number].saved:focus,
input[type=number].saved:hover,
textarea.saved,
textarea.saved:focus,
textarea.saved:hover,
select.saved,
select.saved:focus,
select.saved:hover {
  border: solid 2px #35be55 !important;
  outline: none;
}
input[type=text].error, input[type=text].error:focus, input[type=text].error:hover,
input[type=tel].error,
input[type=tel].error:focus,
input[type=tel].error:hover,
input[type=email].error,
input[type=email].error:focus,
input[type=email].error:hover,
input[type=password].error,
input[type=password].error:focus,
input[type=password].error:hover,
input[type=search].error,
input[type=search].error:focus,
input[type=search].error:hover,
input[type=date].error,
input[type=date].error:focus,
input[type=date].error:hover,
input[type=datetime-local].error,
input[type=datetime-local].error:focus,
input[type=datetime-local].error:hover,
input[type=file].error,
input[type=file].error:focus,
input[type=file].error:hover,
input[type=time].error,
input[type=time].error:focus,
input[type=time].error:hover,
input[type=number].error,
input[type=number].error:focus,
input[type=number].error:hover,
textarea.error,
textarea.error:focus,
textarea.error:hover,
select.error,
select.error:focus,
select.error:hover {
  border: solid 2px #e46360 !important;
  outline: none;
}

input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=date]:focus,
input[type=datetime-local]:focus,
input[type=file]:focus,
input[type=time]:focus,
input[type=number]:focus,
textarea:focus,
select:focus {
  border: solid 2px #065783;
}
input[type=text]:focus.saved, input[type=text]:focus.saved:focus,
input[type=tel]:focus.saved,
input[type=tel]:focus.saved:focus,
input[type=email]:focus.saved,
input[type=email]:focus.saved:focus,
input[type=password]:focus.saved,
input[type=password]:focus.saved:focus,
input[type=search]:focus.saved,
input[type=search]:focus.saved:focus,
input[type=date]:focus.saved,
input[type=date]:focus.saved:focus,
input[type=datetime-local]:focus.saved,
input[type=datetime-local]:focus.saved:focus,
input[type=file]:focus.saved,
input[type=file]:focus.saved:focus,
input[type=time]:focus.saved,
input[type=time]:focus.saved:focus,
input[type=number]:focus.saved,
input[type=number]:focus.saved:focus,
textarea:focus.saved,
textarea:focus.saved:focus,
select:focus.saved,
select:focus.saved:focus {
  border: solid 2px #35be55 !important;
  outline: none;
}
input[type=text]:focus.error, input[type=text]:focus.error:focus,
input[type=tel]:focus.error,
input[type=tel]:focus.error:focus,
input[type=email]:focus.error,
input[type=email]:focus.error:focus,
input[type=password]:focus.error,
input[type=password]:focus.error:focus,
input[type=search]:focus.error,
input[type=search]:focus.error:focus,
input[type=date]:focus.error,
input[type=date]:focus.error:focus,
input[type=datetime-local]:focus.error,
input[type=datetime-local]:focus.error:focus,
input[type=file]:focus.error,
input[type=file]:focus.error:focus,
input[type=time]:focus.error,
input[type=time]:focus.error:focus,
input[type=number]:focus.error,
input[type=number]:focus.error:focus,
textarea:focus.error,
textarea:focus.error:focus,
select:focus.error,
select:focus.error:focus {
  border: solid 2px #e46360 !important;
  outline: none;
}

label {
  text-transform: uppercase;
  font-size: 0.7em;
  font-weight: 700;
  line-height: 1.1em;
}

label.accent-color {
  color: #065783;
}

input[type=submit] {
  color: #fff;
}

.input_row {
  margin-bottom: 16px;
}

@media (max-width: 780px) {
  .hide-mobile {
    display: none;
  }
}

.grey-border {
  border: solid 2px #ddd;
  transition: border 0.25s;
}

.grey-border:hover {
  border: solid 2px #666;
}

.data-row {
  padding: 10px 20px;
  border-radius: 4px;
  transition: border 0.25s, background 0.25s, border-radius 0.25s;
  border: solid 2px #ddd;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.data-row:hover {
  border: solid 2px #666;
}
.data-row.saved, .data-row.saved:hover {
  background-color: rgba(153, 241, 174, 0.6196078431);
}
@media (max-width: 780px) {
  .data-row {
    gap: 8px;
  }
}
.data-row.ai-start {
  align-items: flex-start;
}
.data-row .ai-self {
  align-self: center;
}
.data-row .leading {
  flex: 0 1 auto;
  justify-self: flex-start;
  text-align: left;
}
.data-row .main {
  flex: 1 1 auto;
  justify-self: flex-start;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  gap: 40px;
}
.data-row .main.start {
  justify-content: flex-start;
}
@media (max-width: 780px) {
  .data-row .main {
    gap: 10px;
    padding: 10px;
  }
}
.data-row .main .data {
  flex: 1 1 50%;
  justify-self: flex-start;
  text-align: left;
}
.data-row .main .extras {
  flex: 0 1 auto;
  justify-self: flex-end;
  text-align: left;
  margin-left: auto;
}
@media (max-width: 780px) {
  .data-row .main .extras {
    margin-left: 0;
  }
}
.data-row .title {
  font-weight: 900;
  font-size: 1.4em;
  line-height: 1em;
  color: #065783;
}
.data-row .title a {
  color: #065783;
  font-weight: 900;
}
@media (prefers-color-scheme: dark) {
  .data-row .title {
    color: #fff;
  }
  .data-row .title a {
    color: #fff;
  }
}
.data-row .subtitle {
  font-size: 1em;
  line-height: 1em;
  color: #343434;
  padding-top: 8px;
}
@media (prefers-color-scheme: dark) {
  .data-row .subtitle {
    color: #b5b5b5;
  }
}
.data-row .trailing {
  flex: 0 1 auto;
  justify-self: flex-end;
  margin-left: auto;
  text-align: right;
}
.data-row .trailing.ta-center {
  text-align: center;
}
.data-row .flex-start {
  align-self: flex-start;
}

.data-rows .data-row {
  margin-bottom: 10px;
}
.data-rows .data-row:last-child {
  margin-bottom: 0;
}
.data-rows.boxes {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.data-rows.boxes .data-row {
  margin-bottom: 10px;
  flex: 1 0 10%;
}

.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 100px;
  max-width: 100%;
}

fieldset {
  margin-top: 20px;
  background: #efefef;
  border-radius: 3px;
  padding: 20px;
}
@media (prefers-color-scheme: dark) {
  fieldset {
    background: rgba(0, 0, 0, 0.3);
    border: solid 1px rgba(0, 0, 0, 0.7);
  }
}
fieldset legend {
  margin: 0;
  padding: 3px 10px;
  font-size: 0.8em;
  border-radius: 2px;
  text-transform: uppercase;
  background: #fff;
  border: solid 1px #666;
  font-weight: 900;
}
@media (prefers-color-scheme: dark) {
  fieldset legend {
    background: #111;
    border: solid 1px rgba(0, 0, 0, 0.7);
  }
}

.accent-font, .flow-chart .involvement-ministry .ministry-coord-sections .ministry-coord-section .ministry-coord-actions .ministry-coord-element .element, .flow-chart .involvement-ministry .ministry {
  font-weight: 700 !important;
  text-transform: uppercase;
}

.block_type_5 {
  margin: 40px;
}

.upper {
  text-transform: uppercase;
}

hr.block {
  width: 100px;
  height: 10px;
  background: #065783;
}

hr.grey {
  margin: 20px auto 10px auto;
  padding: 0;
  height: 7px;
  width: 100px;
  background: #ccc;
}

.box {
  box-shadow: 0 2px 2px #d9d8d8;
  padding: 20px;
  margin-bottom: 20px;
}
.box.pad-s {
  padding: 10px;
}
.box.pad-l {
  padding: 40px;
}
.box .heading,
.box header {
  margin: -20px -20px 20px -20px;
  text-transform: uppercase;
  padding: 10px 20px;
  font-weight: 900;
  font-size: 1.1em;
  color: #065783;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.box .heading a,
.box header a {
  padding: 10px;
}
.box.white .heading, .box.white header {
  background: #e5e5e5;
}
.box form {
  margin: 0px;
  padding: 0px;
}

.notice {
  padding: 20px;
  position: relative;
  overflow: hidden;
  font-family: Consolas, Monaco, "Courier New", monospace;
  font-size: 1em;
  line-height: 1.1em;
  font-weight: bold;
  color: #fff;
  background-color: #666;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.notice.mar-bot-m {
  margin-bottom: 20px;
}
.notice .msg {
  padding: 10px;
}
.notice a.button {
  background: rgba(0, 0, 0, 0.3);
  padding: 10px 20px;
  border: none;
}

body.admin .notice {
  margin: -20px -20px 20px -20px;
}

.error {
  background-color: #f03c69;
}

.success {
  background-color: #35be6c;
}

.success.selected {
  background-color: #057b34;
}

.grecaptcha-badge {
  display: none !important;
}

.link-list a {
  display: flex;
  padding: 10px;
  border-bottom: solid 1px #ccc;
  justify-content: space-between;
  align-items: center;
  transition: background 0.25s;
}
.link-list a img {
  width: 50px;
  height: 50px;
  margin-right: 15px;
  background: #efefef;
  border-radius: 100%;
  transition: background 0.25s;
}
.link-list a .name {
  text-align: left;
  flex: 1 1 auto;
  width: 50%;
}
.link-list a:last-child {
  border-bottom: none;
}
.link-list a:hover {
  background: #efefef;
}
.link-list a:hover img {
  background: #ccc;
}

h1 {
  margin: 0;
  padding: 40px 0 0 0;
  line-height: 1em;
  color: #065783;
  font-weight: 900;
  font-size: 2.5em;
}
@media (max-width: 780px) {
  h1 {
    font-size: 2em;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 1.75em;
  }
}
h1.no-pad {
  padding: 0;
}

h2 {
  margin: 0;
  padding: 40px 0 0 0;
  line-height: 1em;
  color: #065783;
  font-weight: 900;
  font-size: 2em;
}
h2.no-pad {
  padding: 0;
}
@media (max-width: 780px) {
  h2 {
    font-size: 1.7em;
  }
}
@media (max-width: 600px) {
  h2 {
    font-size: 1.25em;
  }
}

.staff-positions .staff-positions-wrap {
  margin: 20px auto;
  border-bottom: solid 2px #ccc;
}
.staff-positions .staff-positions-wrap h2 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 30px;
  text-align: center;
}
@media (max-width: 600px) {
  .staff-positions .staff-positions-wrap h2 {
    text-align: left;
    margin-left: 20px;
  }
}
.staff-positions .staff-positions-wrap:last-child {
  border-bottom: none;
}
.staff-positions .staff-positions-wrap .staffer {
  flex: 1 1 10%;
  max-width: 300px;
  margin: 0 10px 45px 10px;
}
@media (max-width: 980px) {
  .staff-positions .staff-positions-wrap .staffer {
    flex: 1 0 30%;
  }
}
.staff-positions .staff-positions-wrap .staffer .family-picture img {
  border-radius: 5px;
  display: block;
}
@media (max-width: 600px) {
  .staff-positions .staff-positions-wrap .staffer .family-picture img {
    max-width: 300px !important;
  }
}
.staff-positions .staff-positions-wrap .staffer .profile-picture img {
  display: block;
  max-width: 105px !important;
  margin: 0 auto;
}
.staff-positions .staff-positions-wrap .staffer.type-1 {
  text-align: center;
  flex: 1 0 135px;
}
.staff-positions .staff-positions-wrap .staffer .about h3 {
  font-size: 22px;
  margin-top: 14px;
  padding-top: 0;
}
.staff-positions .staff-positions-wrap .staffer .about .role {
  font-style: italic;
  margin-bottom: 5px;
}
.staff-positions .staff-positions-wrap .staffer .about .bio {
  font-size: 14px;
}

.main-carousel {
  overflow: hidden;
  padding: 0;
  margin: 0;
  border-radius: 5px;
  overflow: hidden;
}

.main-carousel.group-cell-1 .carousel-cell {
  width: 100%;
}

.main-carousel.group-cell-2 .carousel-cell {
  width: 50%;
}

.main-carousel.group-cell-3 .carousel-cell {
  width: 33%;
}

.main-carousel.group-cell-4 .carousel-cell {
  width: 25%;
}

.main-carousel.group-cell-5 .carousel-cell {
  width: 20%;
}

.main-carousel .cell-padding {
  padding: 0 5px;
}

.main-carousel img {
  display: block;
  border-radius: 5px;
}

.main-carousel .flickity-button {
  top: auto;
  bottom: -15px;
  border: solid 2px #fff;
}

@media only screen and (max-width: 600px) {
  .main-carousel .flickity-button {
    width: 33px;
    height: 33px;
    bottom: -10px;
  }
}
.group-cell-0 {
  height: 300px;
  background: rgba(0, 0, 0, 0.2);
}

.group-cell-0 img {
  height: 300px !important;
  border-radius: 0 !important;
}

.homepage-notification {
  padding: 20px 20px 20px 80px;
  text-align: left;
  background: #35be6c;
  color: #fff;
  margin: 5px 5px 10px 5px;
  font-weight: bold;
  font-size: 1.2em;
  line-height: 1.4em;
  border-radius: 3px;
  position: relative;
}

.homepage-notification h1,
.homepage-notification h2,
.homepage-notification h3,
.homepage-notification h4 {
  color: #1f6d3d;
  font-weight: 900;
  padding: 0 0 10px 0;
  margin: 0 0 10px 0;
  text-transform: uppercase;
}

.homepage-notification .icon {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 60px;
  text-align: center;
  font-size: 30px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  background: rgba(0, 0, 0, 0.2);
  padding-top: 20px;
  color: #1f6d3d;
}

.content-row {
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  align-items: flex-start;
}
.content-row:empty {
  display: none;
}
.content-row .block {
  flex: 1 1 23%;
}
.content-row .block .box {
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .content-row .block {
    flex: 1 1 98%;
  }
}
.content-row .block .heading {
  text-align: center;
  font-weight: 900;
  font-size: 1.5em;
  line-height: 1em;
  padding-bottom: 10px;
}
.content-row .block .heading a {
  font-weight: 900;
}
.content-row.count-2, .content-row.count-3, .content-row.count-4 {
  flex-wrap: nowrap;
}
@media (max-width: 980px) {
  .content-row.count-2, .content-row.count-3, .content-row.count-4 {
    flex-wrap: wrap;
  }
}
.content-row.count-2 .block, .content-row.count-3 .block, .content-row.count-4 .block {
  flex: 0 1 100%;
}
@media (max-width: 980px) {
  .content-row.count-2 .block, .content-row.count-3 .block, .content-row.count-4 .block {
    flex: 1 1 100%;
  }
}

.awesome-options {
  padding: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-weight: 900;
  gap: 5px;
  margin-bottom: 20px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}
@media (max-width: 980px) {
  .awesome-options {
    font-size: 0.8em;
  }
  .awesome-options label {
    flex: 0 0 100%;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .awesome-options {
    margin-left: -20px;
    margin-right: -20px;
  }
}
.awesome-options a {
  color: #545454;
  background-color: #fff;
  padding: 5px 20px;
  border-radius: 25px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.25s;
  vertical-align: middle;
  border: solid 3px rgba(0, 0, 0, 0.1) !important;
  font-weight: 900;
  transition: all 0.25s;
}
.awesome-options a i {
  margin-right: 5px;
}
.awesome-options a:hover {
  background: #065783;
  color: #fff;
}
@media (max-width: 980px) {
  .awesome-options a {
    padding: 5px 10px;
  }
}
.awesome-options a .badge {
  margin-left: 10px;
  margin-right: -10px;
  padding: 2px 10px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.2);
}

.flow-chart .involvement-ministry {
  border-radius: 5px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.3);
}
.flow-chart .involvement-ministry .ministry {
  padding: 20px;
  margin: -10px -10px 10px -10px;
  font-size: 1.6em;
  color: #fff;
  background-color: #065783;
  border-radius: 5px;
  display: flex;
  align-items: center;
}
.flow-chart .involvement-ministry .ministry .elders {
  width: 300px;
  margin-left: auto;
  text-align: right;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}
.flow-chart .involvement-ministry .ministry .elders label {
  font-size: 0.5em;
}
.flow-chart .involvement-ministry .ministry .elders .elder {
  width: 50px;
}
.flow-chart .involvement-ministry .ministry .elders .elder img {
  border: solid 3px #fff;
  border-radius: 100%;
}
.flow-chart .involvement-ministry .ministry-coord-sections {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  border-radius: 5px;
  overflow: hidden;
  padding: 10px;
}
.flow-chart .involvement-ministry .ministry-coord-sections .ministry-coord-section {
  flex: 1 1 98%;
}
.flow-chart .involvement-ministry .ministry-coord-sections .ministry-coord-section.grouped {
  flex: 1 1 30%;
}
@media (max-width: 980px) {
  .flow-chart .involvement-ministry .ministry-coord-sections .ministry-coord-section {
    flex: 1 1 95%;
  }
}
.flow-chart .involvement-ministry .ministry-coord-sections .ministry-coord-section .section {
  background: #777;
  border-radius: 5px;
  padding: 10px 15px;
  color: #fff;
  font-weight: 900;
}
.flow-chart .involvement-ministry .ministry-coord-sections .ministry-coord-section .ministry-coord-actions {
  background: #fff;
  padding: 20px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.flow-chart .involvement-ministry .ministry-coord-sections .ministry-coord-section .ministry-coord-actions .ministry-coord-element {
  text-align: center;
  background: #efefef;
  padding: 10px 10px 20px 10px;
  flex: 1 1 18%;
}
.flow-chart .involvement-ministry .ministry-coord-sections .ministry-coord-section .ministry-coord-actions .ministry-coord-element .element {
  font-weight: 900;
  line-height: 0.9em !important;
  font-size: 1.1em;
  padding: 10px;
}
.flow-chart .involvement-ministry .ministry-coord-sections .ministry-coord-section .ministry-coord-actions .ministry-coord-element .element small {
  display: block;
  padding-top: 5px;
  font-size: 0.7em;
  line-height: 1em;
  color: #666;
}
@media (max-width: 980px) {
  .flow-chart .involvement-ministry .ministry-coord-sections .ministry-coord-section .ministry-coord-actions .ministry-coord-element {
    flex: 1 1 44%;
  }
}
.flow-chart .involvement-ministry .ministry-coord-sections .ministry-coord-section .ministry-coord-actions .ministry-coord-element.no-coords {
  background-color: #f5d2d2;
}
.flow-chart .involvement-ministry .ministry-coord-sections .ministry-coord-section .ministry-coord-actions .ministry-coord-element .no-coordinator {
  background: #e43838;
  color: #fff;
  padding: 20px;
  font-weight: 900;
  margin: 10px;
  border-radius: 2px;
  font-size: 0.9em;
  text-align: center;
  line-height: 1em;
}
.flow-chart .involvement-ministry .ministry-coord-sections .ministry-coord-section .ministry-coord-actions .ministry-coord-element .coordinators {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.flow-chart .involvement-ministry .ministry-coord-sections .ministry-coord-section .ministry-coord-actions .ministry-coord-element .coordinators div {
  flex: 0 1 60px;
  text-align: center;
  font-size: 1em;
  line-height: 0.9em;
  font-weight: 900;
}
.flow-chart .involvement-ministry .ministry-coord-sections .ministry-coord-section .ministry-coord-actions .ministry-coord-element .coordinators img {
  border: solid 3px #fff;
  background: #ccc;
  border-radius: 100%;
  margin-bottom: 3px;
  max-width: 60px !important;
}

.series-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px;
}
.series-detail .series-image {
  flex: 1 0 40%;
}
.series-detail .series-data {
  flex: 1 0 50%;
}
@media (max-width: 780px) {
  .series-detail {
    display: block;
    padding: 0px 0px 20px 0px;
    gap: 20px;
  }
  .series-detail .series-data {
    padding: 20px;
  }
}

.check-in-members {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 780px) {
  .check-in-members {
    gap: 10px;
  }
}
.check-in-members .member {
  background-color: #efefef;
  flex: 1 1 150px;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
  font-weight: 900;
  font-size: 1.1em;
  max-width: 200px;
}
.check-in-members .member img {
  max-width: 140px;
  max-height: 140px;
  display: block;
  margin: 0 auto 10px auto;
}
@media (max-width: 780px) {
  .check-in-members .member {
    flex: 1 0 100px;
    font-size: 1em;
  }
  .check-in-members .member img {
    max-width: 80px;
    max-height: 80px;
  }
}
.check-in-members .member.checked_in {
  background: #57bb57;
}
.check-in-members .member.checked_in a {
  color: #fff !important;
}
.check-in-members .member .online-box {
  padding-top: 15px;
  margin-top: 15px;
  border-top: solid 1px #fff;
  display: block;
  padding-bottom: 5px;
}

.gap-xs {
  gap: 3px;
}

.gap-s {
  gap: 5px;
}

.gap-m {
  gap: 10px;
}

.gap-l {
  gap: 20px;
}

.gap-xl {
  gap: 40px;
}

.grid-100,
.grid-200,
.grid-300 {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  padding: 20px;
}
.grid-100 a,
.grid-200 a,
.grid-300 a {
  display: inline-block;
  max-width: 400px;
}
@media (max-width: 780px) {
  .grid-100 a,
  .grid-200 a,
  .grid-300 a {
    max-width: 100%;
  }
}

.grid-100 {
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
}

.grid-200 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.date-block {
  display: inline-block;
  text-align: center;
  overflow: hidden;
  border-radius: 5px;
  border: solid 2px #065783;
  background-color: white;
  min-width: 90px;
}
.date-block .dow {
  text-transform: uppercase;
  font-weight: 400;
  background: #065783;
  color: #fff;
  padding: 2px 10px 4px 10px;
}
.date-block .month {
  font-weight: 400;
  font-size: 1.2em;
  padding-top: 5px;
  color: #555;
}
.date-block .day {
  padding: 5px 24px 18px 24px;
  font-size: 2em;
  color: #065783;
  font-weight: 900;
}
.date-block .time {
  border-top: solid 1px #ccc;
  padding: 10px;
  text-transform: uppercase;
}

.event-dates {
  display: flex;
  align-items: center;
  gap: 3px;
}
.event-dates .event-to {
  margin: 25px -15px 0 -15px;
  padding: 3px 7px;
  background: white;
  z-index: 2;
  border-bottom: solid 2px #065783;
  border-top: solid 2px #065783;
  font-size: 0.8em;
  color: #333;
  font-weight: 900;
}

.event-breakdown {
  font-size: 11px;
  gap: 2px;
  overflow: hidden;
}
@media (max-width: 980px) {
  .event-breakdown {
    border-radius: 5px;
    font-size: 10px;
    flex-wrap: wrap;
  }
}
.event-breakdown .event-ministry {
  background: #307ea8;
  padding: 5px 10px 5px 20px;
  align-items: center;
  gap: 10px;
  display: flex;
  justify-content: space-between;
  line-height: 1em;
}
@media (max-width: 980px) {
  .event-breakdown .event-ministry {
    padding: 10px 15px;
    justify-content: center;
  }
}

.toggler {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding: 8px 16px 8px 38px;
  border-radius: 40px;
  background: #e46360;
  color: #fff !important;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 16px;
}
.toggler .dial {
  position: absolute;
  top: 5px;
  left: 5px;
  right: auto;
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 100%;
  cursor: pointer;
  transition: all 0.25s;
}
.toggler.on {
  background: #35be55;
  padding: 8px 34px 8px 16px;
}
.toggler.on .dial {
  left: auto;
  right: 5px;
}

.member-attendance {
  outline: none;
  transition: background 0.25s;
}
.member-attendance:hover {
  background: #efefef;
}
.member-attendance:focus {
  outline: none;
}
.member-attendance.selected {
  background: #a8eba8;
}

.card.member {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.card.member.basic {
  display: block;
  text-align: center;
  line-height: 1em;
  padding: 10px;
}
.card.member.basic .first-name {
  padding-top: 2px;
  font-size: 0.9em;
  font-weight: 400;
}
.card.member.basic .family-name {
  font-size: 0.9em;
  font-weight: 400;
}
.card.member.basic .full-name {
  font-weight: 900;
  padding-top: 5px;
}
.card.member.basic .extra {
  padding-top: 5px;
  font-size: 0.9em;
  color: #343434;
}
.card.member .img img {
  width: 50px;
  height: 50px;
  background: #efefef;
  border-radius: 100%;
}
.card.member .details {
  line-height: 1em;
}
.card.member .details .name {
  font-size: 1.3em;
  font-weight: 900;
}
.fixed-letter-bar {
  position: fixed;
  top: 80px;
  bottom: 20px;
  right: 20px;
  width: 50px;
  padding: 10px 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  overflow-y: scroll;
  transition: top 0.25s;
}
@media (max-width: 780px) {
  .fixed-letter-bar {
    top: 130px;
  }
  .fixed-letter-bar.full {
    top: 20px;
  }
}
.fixed-letter-bar.full {
  top: 20px;
}
.fixed-letter-bar a {
  color: #fff;
  display: block;
  padding: 10px 5px;
  transition: background 0.25s;
}
.fixed-letter-bar a:hover {
  background: rgb(0, 0, 0);
}
.fixed-letter-bar a:focus {
  outline: none;
}

.messages .message-date {
  padding-bottom: 20px;
}
.messages .message {
  padding: 40px 40px 20px 40px;
  position: relative;
  border-radius: 20px;
  margin: 20px auto 30px auto;
  background: #fff;
  border: solid 2px #ccc;
  transition: background 0.25s;
}
.messages .message:hover {
  background: #fff;
}
.messages .message:before2 {
  content: "";
  display: block;
  border-left: 4px solid #ccc;
  width: 1px;
  position: absolute;
  z-index: 0;
  top: 55px;
  left: 18px;
  bottom: 20px;
}
.messages .message .data {
  margin-left: 10px;
  margin-top: -20px;
  font-size: 110%;
  line-height: 1.3em;
}
.messages .message .data a {
  font-weight: 900;
  font-size: 1.2em;
  padding-right: 5px;
}
.messages .message .data .by {
  padding-bottom: 10px;
  font-size: 0.8em;
}
.messages .message .data .profile {
  width: 50px;
  height: 50px;
  position: absolute;
  top: -10px;
  left: -15px;
  text-align: center;
  border: solid 2px #ccc;
  border-radius: 100%;
}
.messages .message .text {
  font-size: 1.2em;
  line-height: 1.3em;
  word-break: break-word;
}
.messages .message .reactions {
  margin-top: 10px;
  margin-left: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.messages .message .reactions .group {
  border: solid 2px #ccc;
  padding: 2px 10px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.messages .message .reactions i {
  font-size: 20px;
}
.messages .message .reactions img {
  width: 30px;
  height: 30px;
  display: block;
  border: solid 2px #fff;
  border-radius: 100%;
}
.messages .message .reaction-actions {
  position: absolute;
  top: -10px;
  right: -15px;
  background: #fff;
  padding: 5px;
  border-radius: 40px;
  border: solid 2px #ccc;
  display: flex;
}
.messages .message .reaction-actions a {
  padding: 5px 8px;
  display: block;
  border-radius: 40px;
  transition: background 0.25s;
  color: #666;
}
.messages .message .reaction-actions a.selected {
  color: #065783;
}
.messages .message .reaction-actions a:hover {
  background: #efefef;
}
.messages .message .edit {
  position: absolute;
  bottom: 10px;
  right: 15px;
}

.fa.fa-toggle-on {
  color: #9AC160;
  font-size: 30px;
  font-weight: 400;
}

.fa.fa-toggle-off {
  color: #E46360;
  font-size: 30px;
  font-weight: 400;
}

.article .title {
  line-height: 1em;
  color: #065783;
  font-weight: 900;
  font-size: 1.7em;
}
.article .title a {
  font-weight: 900;
}
.article .article-image {
  height: 100px;
  background-size: cover;
  margin-bottom: 20px;
  transition: all 0.25s;
  border-radius: 2px;
}
.article:hover .article-image {
  height: 175px;
}
.article.full {
  max-width: 600px;
  margin: 20px auto;
}
.article.full .title {
  padding-top: 20px;
  font-size: 2.5em;
}
.article.full .body {
  font-size: 1.2em;
  line-height: 1.5em;
}

.meta {
  margin: 10px 0;
  padding: 10px;
  font-size: 1em;
  line-height: 1em;
  font-weight: 400;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.meta img {
  background: #ccc;
  width: 45px;
  height: 45px;
  border-radius: 100%;
}
.meta label {
  display: block;
  padding-bottom: 2px;
  font-weight: 900;
}
.meta .meta-data {
  padding: 10px;
  border-radius: 20px;
}

.articles .article {
  display: inline-block;
  padding: 20px 20px 40px 20px;
  margin-bottom: 20px;
  border-bottom: solid 2px rgba(0, 0, 0, 0.2);
}

.video {
  padding: 10px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 5px;
}
@media (max-width: 780px) {
  .video {
    padding: 0px;
  }
  .video .title {
    padding: 10px 20px;
    font-weight: 900;
  }
}

.series-bar {
  padding: 20px;
  color: #fff;
}
.series-bar a {
  color: #fff;
}
.series-bar a.button {
  background: rgba(0, 0, 0, 0.4);
}
.series-bar a.button.disabled, .series-bar a.button.disabled:hover {
  opacity: 0.3;
  color: #fff;
  background: rgba(0, 0, 0, 0.4) !important;
  cursor: default;
}
.series-bar .badge {
  background: rgba(255, 255, 255, 0.3);
}

.videos-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.videos-wrap .video {
  background: rgba(255, 255, 255, 0.75);
  transition: background 0.25s;
  overflow: hidden;
  padding: 8px;
  flex: 1 0 23%;
  max-width: 500px;
  border-radius: 3px;
}
.videos-wrap .video img {
  display: block;
  margin: 0 auto;
}
.videos-wrap .video .title {
  padding: 10px 5px 5px 5px;
  line-height: 1em;
  font-weight: 900;
}
.videos-wrap .video .subtitle {
  padding: 15px 0 5px 0;
  line-height: 1em;
  font-weight: 400;
  font-style: italic;
}
.videos-wrap .video:hover {
  background: #ccc;
}
@media (max-width: 780px) {
  .videos-wrap .video {
    flex: 1 0 40%;
    max-width: 48%;
  }
}
.videos-wrap.count-1 .video {
  flex: 1 0 100%;
}
.videos-wrap.count-2 .video {
  flex: 1 0 48%;
}
.videos-wrap.count-3 .video {
  flex: 1 0 30%;
}

.video-page .title {
  padding: 10px 0px 5px 0px;
  line-height: 1em;
  font-weight: 900;
}
.video-page .subtitle {
  padding: 5px 0 5px 0;
  font-size: 1.1em;
  line-height: 1em;
  font-weight: 400;
  font-style: italic;
}

.events-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.events-wrap .event {
  flex: 1 0 23%;
  max-width: 23%;
}
.events-wrap .event .icon {
  padding: 25px 0px;
  text-align: center;
}
.events-wrap .event i {
  font-size: 40px;
}
@media (max-width: 780px) {
  .events-wrap .event {
    flex: 1 0 40%;
    max-width: 48%;
  }
  .events-wrap .event .icon {
    padding: 25px 40px;
  }
}

.next-meeting {
  padding: 20px;
  margin: 20px 5px;
  text-align: center;
}
.next-meeting label {
  font-size: 1.1em;
  color: #065783;
}
.next-meeting .the-date {
  font-size: 2em;
  font-weight: 900;
  line-height: 1em;
  padding-top: 5px;
}
.next-meeting .in-person {
  padding-top: 5px;
  font-size: 1.1em;
  line-height: 1em;
}
.next-meeting .youtube-icon {
  padding-top: 10px;
  font-size: 32px;
}
.next-meeting .youtube-icon i {
  color: red;
}

.prayer {
  padding: 10px;
}
.prayer .prayer-profile {
  margin-right: 20px;
}
.prayer .prayer-inner {
  display: flex;
  align-items: center;
}

.prayer-section.members-page {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.prayer-section.members-page .prayer {
  flex: 1 0 20%;
}
.prayer-section.members-page .prayer .prayer-inner {
  display: block;
  align-items: center;
  text-align: center;
  max-width: 500px;
}
.prayer-section.members-page .prayer .prayer-profile {
  margin-right: 0;
}
@media (max-width: 780px) {
  .prayer-section.members-page .prayer {
    flex: 1 0 40%;
  }
}
@media (max-width: 600px) {
  .prayer-section.members-page .prayer {
    flex: 1 0 90%;
  }
}

.bulletins {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.bulletin-wrapper {
  border-top: solid 5px #065783;
  flex: 1 1 auto;
  padding: 20px 40px;
  margin: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 2px #ccc;
  background: #fff;
  transition: background 0.25s;
  line-height: 1em;
  text-align: center;
  max-width: 200px;
  display: block;
}
.bulletin-wrapper .month {
  font-size: 0.9em;
  line-height: 1.2em;
  text-transform: uppercase;
}
.bulletin-wrapper .day {
  font-size: 1.7em;
  font-weight: 900;
  line-height: 1em;
}
.bulletin-wrapper i {
  padding-bottom: 5px;
}
.bulletin-wrapper .badge {
  font-size: 0.7em;
  background: #ccc;
}
.bulletin-wrapper:hover {
  background: #efefef;
}

.classes-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
.classes-wrap .dow {
  flex: 0 0 33%;
}
@media (max-width: 780px) {
  .classes-wrap .dow {
    flex: 0 0 100%;
  }
}
.classes-wrap .dow .classes .class {
  max-width: 500px;
}
.classes-wrap .classes {
  display: block;
}

.classes,
.youth-group-classes {
  display: flex;
  flex-wrap: wrap;
}
.classes h3,
.youth-group-classes h3 {
  padding-left: 10px;
}
.classes .class,
.youth-group-classes .class {
  flex: 1 0 33%;
  max-width: 400px;
}
@media (max-width: 980px) {
  .classes .class,
  .youth-group-classes .class {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 600px) {
  .classes .class,
  .youth-group-classes .class {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.classes .class .inner,
.youth-group-classes .class .inner {
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  margin: 10px;
}
.classes .class img,
.youth-group-classes .class img {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  display: block;
  margin: 0;
  padding: 0;
}
.classes .class .title,
.youth-group-classes .class .title {
  color: #fff;
  background: #065783;
  font-weight: 900;
  padding: 10px 15px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.classes .class .desc,
.youth-group-classes .class .desc {
  padding: 20px;
}
.classes .class .teachers,
.youth-group-classes .class .teachers {
  padding: 0 20px 20px 20px;
}

.articles-block {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px;
}
.articles-block .article {
  flex: 1 1 20%;
}
@media (max-width: 980px) {
  .articles-block {
    padding: 20px;
    display: block;
  }
  .articles-block .article {
    padding-bottom: 40px;
  }
}

.servings {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
}
.servings .assignment {
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border-radius: 2px;
  transition: all 0.25s;
}
.servings .assignment:hover {
  background: #efefef;
}
.servings .assignment .date {
  border: solid 2px #ccc;
  border-radius: 2px;
  text-align: center;
}
.servings .assignment .element-name {
  color: #666;
  font-weight: 900;
}
.servings .assignment .element-template {
  color: #666;
  font-weight: 400;
  font-size: 0.9em;
}

.member-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 10px;
}
.member-boxes .box {
  flex: 1 1 20%;
  margin: 10px;
}
.member-boxes .box ul {
  margin: 0 10px;
  padding: 0 10px;
}
.member-boxes .box ul li {
  padding-bottom: 15px;
  line-height: 1em;
}
.member-boxes .box ul li:last-child {
  padding-bottom: 0;
}
.member-boxes .box.bulletin, .member-boxes .box.elder {
  flex: 1 0 300px;
}
.member-boxes .box.box-50 {
  flex: 3 0 45%;
}
.member-boxes .box.box-60 {
  flex: 3 0 60%;
}
.member-boxes .box.box-100 {
  flex: 3 0 90%;
}
@media (max-width: 980px) {
  .member-boxes .box {
    flex: 1 0 90%;
  }
  .member-boxes .box.bulletin {
    flex: 0 0 100%;
  }
}

.member-box .pad {
  background: #fff;
  box-shadow: 0 0 3px #ccc;
  padding: 20px;
  margin-bottom: 20px;
}
.member-box .pad ul li {
  padding-bottom: 10px;
}
.member-box .pad h3 {
  padding: 0;
  margin: 0;
  text-transform: uppercase;
  color: #065783;
  font-size: 1.1em;
  line-height: 1em;
}

.bulletin-link {
  display: block;
  padding: 20px;
  background: #848484;
  color: #fff;
  font-size: 24px;
  text-align: center;
  margin-top: 5px;
}

.bulletin-link i {
  padding-right: 10px;
}

.bulletin-link div {
  font-size: 12px;
  font-weight: normal;
  text-transform: uppercase;
}

.birthday-members {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.birthday-members .birthday-member {
  flex: 1 0 80px;
  margin: 25px 2px 2px 5px;
  text-align: center;
  padding: 0 10px 10px 10px;
  background: #efefef;
  max-width: 100px;
  box-shadow: 0 1px 1px #888;
  transition: background 0.25s;
}
.birthday-members .birthday-member:hover {
  background: #ccc;
}
.birthday-members .birthday-member.selected {
  background: #065783;
  color: #fff;
}
.birthday-members .birthday-member .date {
  font-weight: 900;
  font-size: 1.5em;
  line-height: 1em;
  padding: 5px 0;
}
.birthday-members .birthday-member .name {
  line-height: 1em;
  font-weight: 400;
  font-size: 0.8em;
}
.birthday-members .birthday-member img {
  width: 65px;
  height: 65px;
  background: #ccc;
  border-radius: 100%;
  display: block;
  margin: -15px auto 0 auto;
  border: solid 5px #fff;
}

.birthday_member {
  display: flex;
  overflow: hidden;
  border-radius: 2px;
  margin: 2px 0;
  color: #fff !important;
  font-weight: bold;
  margin: 2px;
  font-size: 0.9em;
  transition: opacity 0.25s;
  width: 99%;
}

.birthday_member:hover {
  opacity: 0.6;
  color: #fff;
}

.birthday_member .date {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 3px 10px;
  width: 36px;
}

.birthday_member .member {
  display: inline-block;
  padding: 3px 10px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.letters {
  border-radius: 3px;
  text-align: center;
  padding: 10px;
  margin: 20px 0;
  text-transform: uppercase;
  word-break: break-all;
  line-height: 2em;
  background: rgba(0, 0, 0, 0.1);
}
.letters a {
  display: inline-block;
  padding: 10px;
  border-radius: 2px;
  transition: background 0.25s;
}
.letters a:hover {
  background: #fff;
}
.letters a.selected {
  background: #065783;
  color: #fff;
}

.families {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.families a {
  flex: 1 1 20%;
  max-width: 24%;
  position: relative;
  background: rgba(0, 0, 0, 0.1);
  padding: 0;
  display: inline-block;
  aspect-ratio: 22/15;
}
@media (max-width: 980px) {
  .families a {
    flex: 1 1 31%;
    max-width: 33%;
  }
}
@media (max-width: 600px) {
  .families a {
    flex: 1 1 45%;
    max-width: 50%;
  }
}
.families a img {
  display: block;
}
.families a .name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  transition: background 0.25s;
  color: #fff;
  padding: 10px;
}
@media (max-width: 600px) {
  .families a .name {
    padding: 5px;
  }
}
.families a .star {
  font-size: 24px;
  position: absolute;
  right: 10px;
  top: 10px;
  color: #fff;
}
.families a:hover .name {
  background: #065783;
}

.family {
  padding: 20px;
  margin-top: 60px;
  background: #fff;
  text-align: center;
}
.family .image {
  max-width: 375px;
  margin: -60px auto 20px auto;
}
.family .image img {
  width: 100%;
  height: auto;
  display: block;
  border: solid 7px #fff;
  border-radius: 7px;
  box-shadow: 0 3px 3px #ccc;
  background: #ccc;
}
.family .info-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.family .info-boxes .box {
  flex: 0 1 auto;
  background: #efefef;
  transition: background 0.25s;
  padding: 15px;
  margin: 5px;
  line-height: 1.1em;
  text-align: left;
  position: relative;
  border-radius: 3px;
  display: flex;
  align-items: center;
}
.family .info-boxes .box i {
  font-size: 28px;
  color: #343434;
  margin-right: 10px;
}
.family .info-boxes a.box:hover {
  background: #ccc;
}

.member-blocks {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 20px 20px 20px;
  justify-content: center;
}
@media (max-width: 780px) {
  .member-blocks {
    padding: 40px 0 20px 0;
  }
}

.member-block {
  flex: 0 0 30%;
  padding: 10px 10px 20px 10px;
  margin: 10px 10px 40px 10px;
  background: #efefef;
  border-radius: 2px;
  text-align: center;
  max-width: 300px;
  min-width: 200px;
}
@media (max-width: 780px) {
  .member-block {
    flex: 1 1 40%;
    max-width: 90%;
  }
}
@media (max-width: 600px) {
  .member-block {
    flex: 1 1 100%;
    max-width: 90%;
  }
}
.member-block .member-image {
  max-width: 80px;
  margin: -40px auto 10px auto;
  border-radius: 100%;
  background: #ccc;
}
.member-block .member-image img {
  display: block;
  border: solid 5px #fff;
  border-radius: 100%;
  width: 80px;
  height: 80px;
}
.member-block .member-image .blank {
  width: 80px;
  height: 80px;
}
.member-block .member-name {
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  padding-bottom: 10px;
}
.member-block i {
  padding-right: 5px;
}
.member-block .member-birthday,
.member-block .member-email,
.member-block .member-phone {
  padding-bottom: 8px;
}
.member-block .member-email {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

@media (max-width: 600px) {
  .member-blocks .member-block:last-child {
    margin-bottom: 0;
  }
}

.member-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 7px;
  border-bottom: solid 1px #ccc;
  margin-bottom: 8px;
  align-items: center;
}
.member-row .member-image {
  flex: 0 0 80px;
  padding: 0 20px 0 10px;
  text-align: center;
}
@media (max-width: 600px) {
  .member-row .member-image {
    flex: 0 0 55px;
    padding: 0 10px 0 0;
  }
}
.member-row .member-name {
  text-align: left;
  flex: 1 1 30%;
  padding: 10px;
}
.member-row .member-name .name {
  font-weight: 900;
}
.member-row .member-birthday {
  font-size: 0.8em;
}
.member-row .member-details {
  font-size: 0.8em;
  text-align: left;
  flex: 0 0 40%;
  padding: 5px;
}
.member-row .member-email {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.member-row .member-phone {
  white-space: nowrap;
}
.member-row i {
  padding-right: 5px;
}

.member-rows .member-row:last-child {
  border-bottom: none;
}

#meals {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.meal-listing {
  flex: 1 1 300px;
  max-width: 400px;
  background: #fff;
  color: #343434;
  transition: box-shadow 0.25s;
  border-radius: 3px;
}
.meal-listing:hover {
  box-shadow: 0 0 10px #ccc;
}
.meal-listing .img img {
  display: block;
  background: #efefef url(/images/geo.png);
  background-size: 150%;
  background-repeat: no-repeat;
}
.meal-listing .for {
  padding: 20px;
}
.meal-listing .for-name {
  font-size: 1.4em;
  line-height: 1.3em;
  font-weight: 900;
}
.meal-listing .individual-member {
  position: relative;
}
.meal-listing .individual-member img.member {
  width: 150px;
  position: absolute;
  margin-top: -75px;
  margin-left: -75px;
  top: 50%;
  left: 50%;
  border: solid 5px #fff;
  border-radius: 100%;
  background: #efefef;
}

.meal-dates {
  margin-top: 10px;
}

.meal .img {
  text-align: right;
  padding: 0 20px;
  max-width: 400px;
}
@media (max-width: 780px) {
  .meal .img {
    text-align: left;
  }
}
.meal .img img.member {
  margin: 0 auto;
  border-radius: 100%;
  max-width: 150px !important;
}
.meal .img img.family {
  max-width: 230px !important;
}
.meal .img img {
  border: solid 5px #fff;
  box-shadow: 0 0 10px #ccc;
  background: #efefef url(/images/geo.png);
  background-size: 150%;
}
.meal .individual-member {
  overflow: hidden;
  position: relative;
}
.meal .individual-member img.member {
  width: 150px;
  position: absolute;
  margin-top: -75px;
  margin-left: -75px;
  top: 50%;
  left: 50%;
  border: solid 5px #fff;
  border-radius: 100%;
  background: #efefef;
}
.meal .content {
  padding: 0 20px;
}
.meal .for-name {
  font-size: 1.4em;
  line-height: 1.3em;
  padding-top: 5px;
  font-weight: 900;
}
.meal .from-dates {
  padding-top: 5px;
  color: #666;
  font-weight: 400;
}
.meal .deliver-to {
  padding-top: 10px;
}
.meal .deliver-to b {
  text-transform: uppercase;
  font-size: 0.9em;
  font-weight: 900;
}
.meal .notes {
  padding: 20px 10px 20px 30px;
  margin: 20px 0px 20px 10px;
  border-left: solid 5px #ccc;
}
.meal .notes h3 {
  margin: 0;
  padding: 0;
  font-size: 14px;
  text-transform: uppercase;
}
.meal .date-row {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
  margin-bottom: 5px;
  justify-content: space-between;
  background: #fff;
}
.meal .date-row .date {
  flex: 0 0 120px;
  text-align: left;
  font-size: 16px;
  line-height: 18px;
}
.meal .date-row .provider {
  flex: 0 1 60%;
  text-align: left;
}
.meal .date-row .actions {
  flex: 1 1 10%;
  text-align: right;
}

.involvement-ministry {
  margin: 0 0 20px 0;
}

.involvement-ministry h3 {
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 5px;
}

.involvement-ministry h2 {
  text-transform: uppercase;
  font-size: 1.3em;
}

.ministry-section {
  padding: 5px;
}

.ministry-actions {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.ministry-action {
  padding: 10px 14px;
  margin: 5px;
  border-radius: 3px;
  transition: background 0.25s;
}
.ministry-action .title {
  font-weight: 700;
}
.ministry-action .notes {
  font-size: 0.9em;
  line-height: 1em;
}

.ministry-action:hover {
  background: #efefef;
}

.ministry-action:hover.selected,
.ministry-action.selected {
  background: #c6efc7;
}

.ministry-action label {
  padding-left: 5px;
  padding-right: 5px;
  text-transform: none;
  font-size: 14px;
  line-height: 14px;
  font-weight: 400;
  flex: 1 1 40%;
}

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