/* ############################################	*/
/* 				 	   NAV  					*/
/* ############################################	*/
#nav {
  z-index: 10;
  position: fixed;
  width: 100%;
  background-color: black;
  color: white;
  display: flex;
  text-align: center;
  height: 4rem;
  align-items: center;
  top: 0;
  left: 0;
}
#nav .logo, #nav .menu {
  width: 60px;
  flex-shrink: 1;
}
#nav .logo img {
  width: 2rem;
}
#nav .menu {
  font-size: 1.6rem;
  opacity: 0.3;
}
#nav .title {
  font-weight: bold;
  flex-grow: 1;
  font-size: 1.2rem;
}

* {
  font-family: "Raleway", sans-serif;
}

a {
  color: inherit;
}
a:hover {
  color: inherit;
  text-decoration: none;
}
a:active {
  color: inherit;
}

body {
  background-color: #F5F5F5;
  text-align: center;
}

h1 {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 2.5rem 0;
}

h2 {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1.3rem;
  font-weight: bold;
  position: relative;
  z-index: 1;
}
h2:before {
  border-top: 2px solid #dfdfdf;
  content: "";
  margin: 0 auto; /* this centers the line to the full width specified */
  position: absolute; /* positioning must be absolute here, and relative positioning must be applied to the parent */
  top: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  width: 95%;
  z-index: -1;
}
h2 span {
  /* to hide the lines from behind the text, you have to set the background color the same as the container */
  background: #F5F5F5;
  padding: 0 15px;
}

p {
  font-size: 1rem;
}

#wrapper {
  margin: auto;
  padding: 0 2rem;
  margin-top: 6rem;
  padding-bottom: 3rem;
  max-width: 600px;
}

textarea, input[type=text], input[type=email], input[type=password] {
  resize: none;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 1.3rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: white;
}

.notice {
  display: block;
  background-color: rgba(0, 0, 0, 0.1);
  margin-top: 4rem;
  margin-bottom: -4rem;
  padding: 1.2rem 0;
  font-size: 0.8rem;
}

.btn {
  cursor: pointer;
  border-radius: 100px;
  font-weight: bold;
  padding: 0.9rem;
  text-align: center;
  font-size: 1.2rem;
  border: none;
}
.btn--green {
  background-color: #D9E2DF;
  color: #688B80;
}
.btn--green:hover {
  color: #688B80;
}
.btn--red {
  background-color: #DB606C;
  color: white;
}
.btn--red:hover {
  color: white;
}
.btn--black {
  background-color: black;
  color: white;
}
.btn--outline {
  background-color: inherit;
  border: 1px solid black;
  color: black;
}

.poll-no-responses svg {
  opacity: 0.05;
  height: 5rem;
}

.share-link {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1rem 2rem;
  border-radius: 5rem;
  font-weight: bold;
  font-size: 0.9rem;
}

.box {
  display: block;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding: 2rem;
  margin: 0 -2rem;
}
.box * {
  margin: auto;
}
.box--light {
  background-color: white;
}
.box .box-tabs {
  cursor: pointer;
  margin: -2rem;
  margin-bottom: 2rem;
}
.box .box-tabs .box-tab {
  padding: 1rem;
  background-color: #F4F4F4;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.5);
  height: 100%;
}
.box .box-tabs .box-tab--active {
  color: black;
  background-color: white;
}

.slider-container {
  position: relative;
}
.slider-container .slider-bg {
  z-index: -2;
  content: "";
  border-left: 3px dashed rgba(0, 0, 0, 0.05);
  height: 100%;
  position: absolute;
  left: 50%;
  margin-left: -3px;
  top: 0;
}
.slider-container .slider-bg-fade {
  z-index: -1;
  content: "";
  width: 100%;
  height: 200px;
  background-color: red;
  position: absolute;
  left: 0;
}
.slider-container .slider-bg-fade--top {
  top: 0;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f5f5f5+0,f5f5f5+100&1+0,0+100 */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgb(245, 245, 245) 0%, rgba(245, 245, 245, 0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#f5f5f5", endColorstr="#00f5f5f5",GradientType=0 ); /* IE6-9 */
}
.slider-container .slider-bg-fade--bottom {
  height: 100px;
  bottom: 0;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f5f5f5+0,f5f5f5+100&0+0,1+100 */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(245, 245, 245, 0) 0%, rgb(245, 245, 245) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00f5f5f5", endColorstr="#f5f5f5",GradientType=0 ); /* IE6-9 */
}

.slider-label-container .col {
  padding: 0;
}

.slider-label {
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding: 1rem;
  height: 100%;
  vertical-align: middle;
  border-radius: 10px;
  position: relative;
  background-color: white;
  display: flex;
  align-items: center;
}
.slider-label span {
  width: 100%;
}
.slider-label:after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border: 30px solid transparent;
  border-top-color: white;
  border-bottom: 0;
  margin-bottom: -29px;
  filter: drop-shadow(0px 6px 4px rgba(0, 0, 0, 0.2));
}
.slider-label--right {
  border-bottom-right-radius: 0;
}
.slider-label--right:after {
  right: 0;
  border-right: 0;
}
.slider-label--left {
  border-bottom-left-radius: 0;
}
.slider-label--left:after {
  left: 0;
  border-left: 0;
}

label {
  font-weight: bold;
  text-align: center;
}

.tag {
  display: table;
  margin: auto;
  font-size: 0.9em;
  font-weight: bold;
  border-radius: 100px;
  padding: 0.8em 1.2em;
}
.tag--light {
  color: black;
  background-color: #D9D9D9;
}
.tag--dark {
  color: white;
  background-color: black;
}
.tag--green {
  background-color: #688B80;
}
.tag--darkgreen {
  background-color: #526e65;
}
.tag--orange {
  background-color: #F1B919;
}
.tag--red {
  background-color: #DB606C;
}
.tag--darkred {
  background-color: #d23646;
}

.slidecontainer {
  width: 100%;
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 25px;
  border-radius: 20px;
  background: #D9E2DF;
  outline: none;
  border: 3px solid #CBD5D2;
}
.slider--input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #688B80;
  cursor: pointer;
  box-shadow: inset 0px -5px 0px #55746A;
}
.slider--input::-moz-range-thumb {
  -moz-appearance: none;
       appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #688B80;
  cursor: pointer;
  box-shadow: inset 0px -5px 0px #55746A;
}
.slider--result {
  pointer-events: none;
}
.slider--result::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 15px;
  height: 35px;
  border-radius: 10px;
  background: #688B80;
  box-shadow: inset 0px -5px 0px #55746A;
}
.slider--result::-moz-range-thumb {
  -moz-appearance: none;
       appearance: none;
  width: 15px;
  height: 35px;
  border-radius: 10px;
  background: #688B80;
  box-shadow: inset 0px -5px 0px #55746A;
}

.bubble--green {
  background-color: #688B80;
}
.bubble--darkgreen {
  background-color: #526e65;
}
.bubble--orange {
  background-color: #F1B919;
}
.bubble--red {
  background-color: #DB606C;
}
.bubble--darkred {
  background-color: #d23646;
}

.purpose-results-bubbles-main {
  overflow: hidden;
  position: relative;
  margin-top: -2rem;
  margin-bottom: -2rem;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.purpose-results-bubbles-main:before {
  border-top: 3px dashed rgba(0, 0, 0, 0.1);
  content: "";
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.purpose-results-bubbles-main .main-container {
  display: flex;
}
.purpose-results-bubbles-main .main-container .bubble {
  color: white;
  text-align: center;
  border-radius: 100%;
  height: 170px;
  width: 170px;
  z-index: 5;
  padding-top: 40px;
}
.purpose-results-bubbles-main .main-container .bubble .row {
  display: flex;
  align-items: center;
  justify-content: center;
}
.purpose-results-bubbles-main .main-container .bubble * {
  display: block;
}
.purpose-results-bubbles-main .main-container .bubble .percentage {
  text-transform: capitalize;
  font-family: "Helvetica" !important;
  font-weight: bold;
  font-size: 4.2em;
  letter-spacing: -0.02em;
  line-height: 90%;
  padding-left: 0.2em;
}
.purpose-results-bubbles-main .main-container .bubble .symbol {
  font-size: 1.5em;
  padding-left: 0.3em;
}
.purpose-results-bubbles-main .main-container .bubble .title {
  font-weight: bold;
  font-size: 1.2em;
}
.purpose-results-bubbles-main .background-container {
  overflow: hidden;
  position: absolute;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.purpose-results-bubbles-main .background-container .bubble {
  border-radius: 100%;
  display: block;
  width: 33px;
  height: 33px;
  margin: 0 3px;
  opacity: 1;
  animation-name: bubble-hover1;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
}
.purpose-results-bubbles-main .background-container .bubble--colour1 {
  background-color: #97B8AD;
  animation-name: bubble-hover1;
}
.purpose-results-bubbles-main .background-container .bubble--colour2 {
  background-color: #F1B919;
  margin-bottom: 2.5rem;
  animation-name: bubble-hover2;
}
.purpose-results-bubbles-main .background-container .bubble--colour3 {
  background-color: #DB606C;
  margin-bottom: 5rem;
  animation-name: bubble-hover3;
}
.purpose-results-bubbles-main .background-container .bubble--speed1 {
  animation-duration: 2.3s;
}
.purpose-results-bubbles-main .background-container .bubble--speed2 {
  animation-duration: 2.6s;
}
.purpose-results-bubbles-main .background-container .bubble--speed3 {
  animation-duration: 2.9s;
}
@keyframes bubble-hover1 {
  0% {
    transform: translateY(0.25rem);
    opacity: 0.2;
  }
  100% {
    transform: translateY(-0.25rem);
  }
}
@keyframes bubble-hover2 {
  0% {
    transform: translateY(0.5rem);
    opacity: 0.2;
  }
  100% {
    transform: translateY(-0.5rem);
  }
}
@keyframes bubble-hover3 {
  0% {
    transform: translateY(1rem);
    opacity: 0.2;
  }
  100% {
    transform: translateY(-1rem);
  }
}

.purpose-sub-results .tag {
  font-size: 0.8em;
}
.purpose-sub-results .purpose-results-bubbles-sub {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.purpose-sub-results .purpose-results-bubbles-sub:before {
  border-top: 3px dashed rgba(0, 0, 0, 0.1);
  content: "";
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  margin-left: -2em;
  margin-right: -2em;
}
.purpose-sub-results .purpose-results-bubbles-sub .bubbles-container {
  display: flex;
  width: 100%;
}
.purpose-sub-results .purpose-results-bubbles-sub .col {
  display: flex;
  align-items: center;
  justify-content: center;
}
.purpose-sub-results .purpose-results-bubbles-sub .bubble {
  color: white;
  text-align: center;
  border-radius: 100%;
  height: 125px;
  width: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.purpose-sub-results .purpose-results-bubbles-sub .bubble * {
  display: block;
}
.purpose-sub-results .purpose-results-bubbles-sub .bubble .percentage {
  text-transform: capitalize;
  font-family: "Helvetica" !important;
  font-weight: bold;
  font-size: 3.5em;
  letter-spacing: -0.02em;
  line-height: 90%;
  padding-left: 0.2em;
  margin: 0;
}
.purpose-sub-results .purpose-results-bubbles-sub .bubble .symbol {
  font-size: 1.4em;
  padding-left: 0.3em;
  margin: 0;
}

.purpose-results-text {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1em 2em;
}
.purpose-results-text > .tag {
  margin-top: -40px !important;
  margin-bottom: 1.5em;
  font-size: 1em;
}
.purpose-results-text p {
  line-height: 170%;
}

.purpose-word-cloud .iframe-container {
  overflow: hidden;
  padding-top: 56.25%;
  position: relative;
}
.purpose-word-cloud .iframe-container iframe {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.purpose-robot-statement {
  display: flex;
  border: 1px solid rgba(0, 0, 0, 0.1);
  flex-direction: row;
  border-radius: 10px;
  overflow: hidden;
  background-color: #FFFEEB;
}
.purpose-robot-statement div {
  padding: 0.8em;
}
.purpose-robot-statement .robot {
  width: 70px;
  display: flex;
}
.purpose-robot-statement .robot img {
  align-self: center;
  width: 100%;
}
.purpose-robot-statement .text {
  text-align: left;
  width: 100%;
}
.purpose-robot-statement .text p {
  font-size: 0.85em;
  padding: 0;
  margin: 0;
}

.purpose-word-rank-row {
  display: table;
  width: 100%;
}
.purpose-word-rank-row div {
  display: table-cell;
  white-space: nowrap;
  padding-top: 1rem;
  padding-bottom: 1rem;
  vertical-align: middle;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.purpose-word-rank-row:last-child div {
  border: none;
}
.purpose-word-rank-row div:nth-child(1) {
  text-align: left;
  width: 1%;
}
.purpose-word-rank-row div:nth-child(2) {
  font-weight: bold;
  text-align: left;
  font-size: 1.3em;
  width: 98%;
  text-transform: capitalize;
}
.purpose-word-rank-row div:nth-child(3) {
  font-style: italic;
  text-align: right;
  width: 1%;
}

.purpose-response-table .inner {
  display: table;
  width: 100%;
}
.purpose-response-table .inner .purpose-response-row {
  display: table-row;
  width: 100%;
}
.purpose-response-table .inner .purpose-response-row > div {
  display: table-cell;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  vertical-align: middle;
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.purpose-response-table .inner .purpose-response-row:last-child div {
  border: none;
}
.purpose-response-table .inner .purpose-response-row .cell-rank {
  text-align: left;
  width: 1%;
}
.purpose-response-table .inner .purpose-response-row .cell-name {
  text-transform: capitalize;
  text-align: left;
  width: 1%;
}
.purpose-response-table .inner .purpose-response-row .cell-answer {
  font-style: italic;
  text-align: left;
  width: 100%;
}
.purpose-response-table .inner .purpose-response-row .cell-bubble {
  width: 1%;
}
.purpose-response-table .inner .purpose-response-row .cell-bubble .bubble {
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 100%;
}

.purpose-official-statement .statement {
  font-size: 1.3em;
  margin: 1.2em 0;
  padding: 0 0.9em;
}

.purpose-intro-container {
  position: relative;
}
.purpose-intro-container .header {
  position: absolute;
  z-index: 1;
  width: 100%;
  text-align: center;
  top: -25px;
}
.purpose-intro-container .header > .tag {
  background-color: black;
  color: white;
  font-size: 1em;
}
.purpose-intro-container .inner {
  display: flex;
  background-color: #336699;
  border-radius: 10px;
  overflow: hidden;
  color: white;
}
.purpose-intro-container .inner .pic {
  opacity: 0.5;
  width: 150px;
  background-size: cover;
  background-position: center;
  background-image: url("/gfx/matt-stevenson-dodd-2.png");
}
.purpose-intro-container .inner .text {
  width: 100%;
  padding: 2em;
  text-align: left;
}
.purpose-intro-container .inner .text img {
  padding-top: 1em;
  width: 175px;
  padding-bottom: 1em;
}
.purpose-intro-container .inner .text p {
  font-size: 0.9em;
}

.purpose-benchmark-box {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1em 2em;
}
.purpose-benchmark-box > .tag {
  margin-top: -40px !important;
  margin-bottom: 1.5em;
  font-size: 1em;
}
.purpose-benchmark-box .benchmark-container {
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
}
.purpose-benchmark-box .benchmark-container .meter-container {
  width: 100%;
}
.purpose-benchmark-box .benchmark-container .meter-container .position {
  position: relative;
  height: 65px;
}
.purpose-benchmark-box .benchmark-container .meter-container .position .marker {
  margin-left: -3px;
  display: block;
  width: 1px;
  height: 65px;
  border-right: 3px solid #D9D9D9;
  border-left: 3px solid #D9D9D9;
  position: absolute;
  top: 0;
  left: 0;
}
.purpose-benchmark-box .benchmark-container .meter-container .position .marker div {
  font-weight: normal;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  white-space: nowrap;
}
.purpose-benchmark-box .benchmark-container .meter-container .position .marker div span {
  font-size: 0.9em;
  opacity: 0.6;
}
.purpose-benchmark-box .benchmark-container .meter-container .meter-colours {
  border-radius: 50px;
  overflow: hidden;
  flex-grow: 1;
  flex-shrink: 0;
  width: 100%;
  height: 50px;
  background-color: #526e65;
  position: relative;
  opacity: 0.9;
}
.purpose-benchmark-box .benchmark-container .meter-container .meter-colours * {
  display: block;
  height: 100%;
  position: absolute;
}
.purpose-benchmark-box .benchmark-container .meter-container .meter-colours .label {
  font-weight: bold;
  color: white;
  z-index: 2;
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.purpose-benchmark-box .benchmark-container .meter-container .meter-colours .label--0 {
  left: 20px;
}
.purpose-benchmark-box .benchmark-container .meter-container .meter-colours .label--100 {
  right: 20px;
}
.purpose-benchmark-box .benchmark-container .meter-container .meter-colours .overlay {
  z-index: 1;
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2) 30px, rgba(255, 255, 255, 0.1) 30px, rgba(255, 255, 255, 0.2) 60px);
  background-size: 900% 900%;
  animation-name: barberpole;
  animation-duration: 60s;
  animation-direction: reverse;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes barberpole {
  100% {
    background-position: 100% 100%;
  }
}
.purpose-benchmark-box .benchmark-container .meter-container .meter-colours .good {
  background-color: #688B80;
}
.purpose-benchmark-box .benchmark-container .meter-container .meter-colours .ok {
  background-color: #F1B919;
}
.purpose-benchmark-box .benchmark-container .meter-container .meter-colours .bad {
  background-color: #DB606C;
}
.purpose-benchmark-box .benchmark-container .meter-container .meter-colours .verybad {
  background-color: #d23646;
}

.purpose-top-box {
  margin-top: 6rem;
}

footer {
  margin-top: 4rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  max-width: 600px;
  padding: 2rem;
  font-size: 0.8em;
}
footer a {
  text-decoration: underline;
  padding-bottom: 5px;
}
footer .row {
  align-items: center;
}
footer .row .col:first-child {
  width: auto;
  flex-shrink: 1;
  text-align: left;
}
footer .row .col:first-child .powered-by {
  display: inline-block;
  position: relative;
}
footer .row .col:first-child .powered-by span {
  position: absolute;
  right: 0;
  opacity: 0.6;
  font-size: 1em;
}
footer .row .col:last-child {
  width: auto;
  flex-grow: 1;
  text-align: right;
}
footer .row .col:last-child * {
  display: block;
}
footer .row .col:last-child span {
  font-size: 0.8em;
}
footer img {
  height: 45px;
}

/* ############################################	*/
/* 				 	   ADMIN  					*/
/* ############################################	*/
#admin .login-form {
  max-width: 500px;
  margin: auto;
  margin-top: 120px;
}
#admin .login-form input, #admin .login-form textarea {
  padding: 0;
  width: 100%;
  padding: 1rem;
  font-weight: normal;
  margin-bottom: 1rem;
  font-size: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
#admin .login-form label {
  width: 100%;
  text-align: left;
  padding: 0;
  margin: 0;
  margin-bottom: 0.5rem;
}
#admin .login-form button {
  width: 100%;
}
#admin #wrapper {
  margin-top: 0 !important;
  max-width: 100%;
}
#admin .admin-nav {
  margin-top: 62px;
  padding: 1rem 0;
  background-color: rgba(0, 0, 0, 0.1);
}
#admin .admin-nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
#admin .admin-nav ul li {
  display: inline-block;
}
#admin .admin-nav ul li a {
  font-weight: bold;
  font-size: 1rem;
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
}
#admin .admin-nav ul li .logout {
  font-weight: normal;
  font-size: 1rem;
  display: inline-block;
  border: 1px solid rgba(0, 0, 0, 0.25);
  background-color: inherit;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
}
#admin .admin-form {
  background-color: white;
  padding: 2rem;
  border-radius: 1rem;
  margin-bottom: 3rem;
  text-align: left;
}
#admin .admin-form p {
  padding-bottom: 0;
}
#admin .admin-form input, #admin .admin-form textarea {
  padding: 0;
  width: 100%;
  padding: 1rem;
  font-weight: normal;
  margin-bottom: 1rem;
  font-size: 1rem;
}
#admin .admin-form label {
  width: 100%;
  text-align: left;
  padding: 0;
  margin: 0;
  margin-bottom: 0.5rem;
}
#admin .admin-form button {
  width: 100%;
}
#admin .admin-table {
  width: 100%;
  background-color: white;
  text-align: left;
}
#admin .admin-table * {
  vertical-align: middle;
}
#admin .admin-table thead {
  background-color: #688B80;
  color: white;
  font-size: 0.9em;
}
#admin .admin-table td, #admin .admin-table th {
  padding: 1rem;
}
#admin .admin-table td {
  border: 1px solid rgba(0, 0, 0, 0.1);
}
#admin .admin-table .org {
  font-weight: bold;
}
#admin .admin-table .org .name {
  font-weight: normal;
  display: block;
  font-size: 0.9em;
  opacity: 0.8;
  padding: 0;
}
#admin .admin-table .org .statement {
  padding: 0;
  padding-top: 5px;
  display: block;
  font-weight: normal;
}
#admin .admin-table .actions {
  white-space: nowrap;
}
#admin .admin-table .actions form {
  display: inline-block;
}
#admin .admin-table .actions a, #admin .admin-table .actions button {
  border: none;
  white-space: nowrap;
  padding: 0.5rem 0.8rem;
  margin: 0;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.8em;
  border-radius: 1rem;
  opacity: 0.7;
}
#admin .admin-table .actions a i, #admin .admin-table .actions button i {
  margin-left: 5px;
  opacity: 0.5;
}
#admin .admin-table .actions .view {
  background-color: #D9E2DF;
  color: hsl(161deg, 14%, 30%);
}
#admin .admin-table .actions .delete {
  background-color: rgba(219, 97, 109, 0.2352941176);
  color: #851e28;
}/*# sourceMappingURL=app.css.map */