html {
  overflow-y: scroll;
  font-size: 1rem;
  font-weight: normal !important;
}

a {
  color: #b4424b;
}

a:hover {
  color: #9b3844;
}

.margin-right-10 {
  margin-right: 0px;
}

.padding-right-10-desktop {
  padding-right: 0px;
}

.learn-more-button {
  position: relative;
  opacity: 0.33;
  border: 0;
  padding: 0px;
  margin: 0px;
  background: none;
  cursor: pointer;
  cursor: hand;
  transition: opacity 0.25s;
}

.learn-more-button:hover {
  opacity: 1;
}

.learn-more-button:hover .hidden-div {
  display: block;
}

.hidden-div {
  display: none;
  position: absolute;
  left: 0;
  bottom: 100%;
}

.bg-link {
  background-color: #b4424b;
  transition: background-color 0.25s;
  padding: 2px 4px;
  border-radius: 2px;
  color: white;
  text-decoration: none;
}

.bg-link:hover {
  color: rgba(255, 255, 255, 0.75);
  background-color: #9b3844;
}

.menu-options {
  background: black;
  position: fixed;
  width: 100vw;
  height: 100dvh;
  top: 0;
  right: 0;
  z-index: 110;
  background-color: rgba(0, 0, 0, 0.95); /* Black with 0.9 opacity */
  backdrop-filter: blur(20px); /* Blurs the content behind the div */
  -webkit-backdrop-filter: blur(20px);
  color: white;
  transform: translateX(100%);
  transition: transform 0.25s ease-out;
}

.groupchannelcount {
  background: #b4424b;
  text-align: center;
  padding: 0px 5px;
  color: white;
  line-height: 20px;
  height: 20px;
  border-radius: 10px;
  display: inline-block;
}

.collapseContainer {
  height: 60px;
}

.menu-options-blackout {
  background-color: rgba(0, 0, 0, 0.85); /* Black with 0.9 opacity */
  display: none;
  width: 100vw;
  height: 100dvh;
  position: fixed;
  top: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  left: 0;
  z-index: 105;
}

.confirm-action {
  background-color: rgba(0, 0, 0, 0.85); /* Black with 0.9 opacity */
  width: 100vw;
  height: 100dvh;
  position: fixed;
  top: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  left: 0;
  z-index: 100;
  display: none;
}

.confirm-buttons {
  margin-top: 20px;
}

.confirm-button-container {
  position: relative;
}

.remove-form-styles {
  padding: 0;
  margin: 0;
  border: none;
  height: inherit;
  line-height: inherit;
  background: none;
  background-color: none;
  overflow: hidden;
  box-sizing: border-box;
  border-radius: 0;
  box-shadow: none;
}

.remove-form-styles:focus, .remove-form-styles:active {
  outline: none !important;
  border: 0 !important;
  background: none !important;
  box-shadow: none !important;
}

.remove-border {
  border: 0px !important;
}

.select-channel {
  cursor: pointer;
  cursor: hand;
}

.selected-channel {
  cursor: pointer;
  cursor: hand;
  background-color: #b4424b;
  color: white !important;
}

.selected-channel:hover {
  background-color: #9b3844 !important;
}

.options {
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  right: 0;
  top: 30px;
  margin: 0;
  font-size: 0.8em;
  text-align: center;
  z-index: 30;
  width: max-content;
  overflow: none;
  display: flex;
}

.display-post-picture {
  margin: 4px 8px !important;
  border-radius: 4px;
  width: 45px;
  background: #ccc;
  height: 45px;
}

.post-text-top {
  font-size: 0.7em;
  opacity: 0.8;
  line-height: 12px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}

.post-text-bottom {
  margin-top: 5px;
}

.hide-options {
  display: none !important;
}

.options a {
  height: 30px;
  padding: 0px 30px;
  width: 100%;
  line-height: 30px;
  text-decoration: none;
  border-bottom: 1px solid #E8E8E8;
  overflow: hidden;
  color: #b4424b;
  cursor: pointer;
  cursor: hand;
  flex-grow: 1;
  transition-property: color, background-color;
  transition-duration: 0.25s;
}

.options a:hover {
  background-color: #FAFAFA;
}

.options a:last-child {
  border-bottom: none;
}

.dropdown-container {
  position: relative;
}

.confirm-close-button {
  position: absolute;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  top: 0;
  right: 0;
  transform: translate(25%, -25%);
  background-color: #fff;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1), 0px 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  border: 1px solid #E8E8E8;
  z-index: 110;
  cursor: pointer;
  cursor: hand;
  transition: background-color 0.25s;
}

.confirm-close-button:hover {
  background-color: #FAFAFA;
}

.min-height-100dvh {
  min-height: min(100dvh, 100vh);
}

body {
  background-color: #ffffff;
  color: #777677;
}

.rounded-pill {
  border-radius: 50px;
  color: #777677 !important;
}

.red-pill {
  color: white !important;
  background-color: #b4424b !important;
  transition: background-color 0.25s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.box-dropshadow-confirm, .radio-button-dropshadow, .button-dropshadow, .box-dropshadow, .options, .display-post-picture {
  background-color: #fff;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1), 0px 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  border: 1px solid #E8E8E8;
  margin-bottom: 20px;
}

.box-dropshadow {
  overflow: hidden;
  margin-bottom: 0px;
  background: linear-gradient(to bottom, #ffffff, #F9F9F9);
}

.button-dropshadow {
  overflow: hidden;
  margin-bottom: 0px;
  padding: 0px 10px;
  border-radius: 15px;
  line-height: 30px;
  font-size: 0.8em;
  height: 30px;
  background: linear-gradient(to bottom, #ffffff, #F9F9F9);
  opacity: 0.66;
  cursor: pointer;
  cursor: hand;
  transition: opacity 0.25s;
}

.button-dropshadow:hover {
  opacity: 1;
}

.radio-button-dropshadow {
  overflow: hidden;
  margin-bottom: 0px;
  padding: 3px 10px;
  border-radius: 15px;
  line-height: 30px;
  font-size: 0.8em;
  height: 30px;
  display: inline;
  background: linear-gradient(to bottom, #ffffff, #F9F9F9);
  opacity: 0.66;
  cursor: pointer;
  cursor: hand;
  transition: opacity 0.25s;
  white-space: nowrap;
}

.radio-button-dropshadow:hover {
  opacity: 1;
}

.half-data-row {
  border-left: none;
}

.feature-data-row {
  padding: 20px 0px;
  border-bottom: 1px solid #E8E8E8;
}

.data-row {
  height: 60px;
  line-height: 60px;
  border-bottom: 1px solid #E8E8E8;
}

.data-row-chart {
  padding: 20px 0px;
  border-bottom: 1px solid #E8E8E8;
  color: ccc;
  text-align: center;
}

.data-row:last-child, .data-row-link:last-child {
  border-bottom: none !important;
}

.showtoppages, .hidetoppages {
  border-top: 1px solid #E8E8E8;
  cursor: pointer;
  cursor: hand;
}

.data-row-link {
  height: 60px;
  line-height: 60px;
  border-bottom: 1px solid #E8E8E8;
  text-decoration: none;
  color: inherit;
  transition-property: color, background-color;
  transition-duration: 0.25s;
}

.data-row-link:hover {
  color: #b4424b;
  background-color: #FAFAFA;
}

.data-row > div, .data-row-link > div {
  white-space: nowrap;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  padding: 0px;
  margin: 0px;
  margin-left: 10px;
}

.data-row > div:last-child, .data-row-link > div:last-child {
  margin: 0px 10px;
}

.post-row {
  border-bottom: 1px solid #E8E8E8;
}

.flex-nowrap {
  flex-wrap: nowrap; /* Prevent items from wrapping to the next line */
}

.flex-grow-0 {
  flex-grow: 0; /* Do not allow items to grow */
}

.flex-grow-1 {
  flex-grow: 1; /* Allow items to grow and fill remaining space */
}

.data-row-title {
  font-weight: bold;
}

.data-row-edit, .data-row-expand, .data-row-close, .data-row-cancelEdit {
  text-align: right;
  opacity: 0.5;
  transition: opacity 0.25s;
  cursor: pointer;
  cursor: hand;
}

.data-row-edit:hover, .data-row-cancelEdit:hover, .data-row-close:hover, .data-row-expand:hover {
  opacity: 1;
}

.blank-navigation-right {
  text-align: right;
}

.blank-profilepicture {
  width: 50px;
  height: 50px;
  border-radius: 25px;
  background-color: #ccc;
}

.red-pill:hover {
  background-color: #9b3844 !important;
}

.red-pill-outline {
  border: 1px solid #b4424b !important;
  color: #b4424b !important;
  background: none;
  opacity: 0.5;
  transition: opacity 0.25s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.red-pill-outline:hover {
  opacity: 1;
}

.aqua-text-pill {
  color: #60948e !important;
  transition: color 0.25s;
  z-index: 100;
}

.aqua-text-pill:hover {
  color: #4a726c;
}

.red-text {
  color: #b4424b;
}

.notransition {
  -o-transition: none !important;
  -ms-transition: none !important;
  -moz-transition: none !important;
  -webkit-transition: none !important;
  transition: none !important;
}

.normal-link {
  background: #b4424b;
  color: white;
  border-radius: 50px;
  padding: 2px 5px;
}

.mailing-form-container {
  margin-bottom: 20px;
}

.slide-in {
  opacity: 0;
  transform: translateY(150px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.blank-title {
  margin: 0px;
  padding: 30px 0px;
}

.form-login {
  margin-bottom: 10px;
}

.header {
  z-index: 100;
  height: 70px;
  width: 100%;
}

.header-not-sticky {
  position: absolute;
  background: none;
  top: 10px;
  transition: background 0.1s;
}

.header-sticky {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  position: fixed;
  top: 0px;
  transition: background 0.5s;
  box-shadow: 0px 2px 4px rgba(30, 30, 30, 0.2);
  border-bottom: 1px solid rgb(230, 230, 230);
}

.footer-container {
  padding: 25px 0px 25px 0px;
  color: #777677;
  font-size: 1rem;
}

.footer-logo {
  margin-bottom: 15px;
}

.footer-container a, .footer-detail-links a {
  text-decoration: none;
  color: inherit;
  transition: color 0.5s;
}

.footer-container a:hover, .footer-detail-links a:hover {
  color: #444444;
}

.footer-top-row {
  text-align: center;
}

.footer-top-row ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.footer-top-row ul li {
  display: inline-block;
  margin-right: 20px;
}

.footer-top-row ul li:last-child {
  margin-right: 0px;
}

.footer-bottom-row {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #D8D2CB;
  font-size: 0.8rem;
}

.footer-bottom-row ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.footer-bottom-row ul li {
  display: inline-block;
  margin-right: 20px;
}

.footer-bottom-row ul li:last-child {
  margin-right: 0px;
}

.footer-social-buttons {
  font-size: 1.5rem;
  float: none;
}

.footer-social-buttons-text {
  font-size: 1rem;
}

.footer-detail-links {
  float: right;
}

.desktop-image-side {
  display: none;
}

.error-card {
  position: relative;
  margin-top: 140px;
  margin-bottom: 60px;
  background-size: cover;
  background-position: center center;
}

.title-card {
  position: relative;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
  background-color: hsl(0, 0%, 100%);
  background-image: radial-gradient(at 40% 20%, hsl(1, 0%, 85%) 0px, transparent 50%), radial-gradient(at 79% 13%, hsl(187, 0%, 78%) 0px, transparent 50%), radial-gradient(at 15% 45%, hsl(355, 100%, 93%) 0px, transparent 50%), radial-gradient(at 80% 50%, hsl(333, 0%, 68%) 0px, transparent 50%), radial-gradient(at 0% 100%, hsl(20, 0%, 64%) 0px, transparent 50%), radial-gradient(at 80% 100%, hsl(241, 0%, 65%) 0px, transparent 50%), radial-gradient(at 10% 3%, hsl(338, 0%, 100%) 0px, transparent 50%);
}

.title-card-fade-in {
  position: absolute; /* Set the black div to an absolute position so it covers the parent div */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  opacity: 0;
  z-index: 50; /* Set the z-index to make sure it overlays siblings */
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.title-details {
  position: absolute;
  margin-top: 140px;
}

.count-particles {
  background: #000022;
  position: absolute;
  top: 48px;
  left: 0;
  width: 80px;
  color: #13E8E9;
  font-size: 0.8em;
  text-align: left;
  text-indent: 4px;
  line-height: 14px;
  padding-bottom: 2px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
}

.js-count-particles {
  font-size: 1.1em;
}

#stats, .count-particles {
  -webkit-user-select: none;
  margin-top: 5px;
  margin-left: 5px;
}

#stats {
  border-radius: 3px 3px 0 0;
  overflow: hidden;
}

.count-particles {
  border-radius: 0 0 3px 3px;
}

.nav-menu {
  text-align: right;
  cursor: pointer;
  cursor: hand;
  transition: color 0.25s;
}

.nav-menu:hover {
  color: black;
}

.hero-card {
  min-height: 600px;
  position: relative;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
  background-color: hsl(0, 0%, 100%);
  background-image: radial-gradient(at 40% 20%, hsl(1, 0%, 85%) 0px, transparent 50%), radial-gradient(at 79% 13%, hsl(187, 0%, 78%) 0px, transparent 50%), radial-gradient(at 15% 45%, hsl(355, 100%, 93%) 0px, transparent 50%), radial-gradient(at 80% 50%, hsl(333, 0%, 51%) 0px, transparent 50%), radial-gradient(at 0% 100%, hsl(21, 0%, 30%) 0px, transparent 50%), radial-gradient(at 80% 100%, hsl(241, 0%, 36%) 0px, transparent 50%), radial-gradient(at 10% 3%, hsl(338, 0%, 100%) 0px, transparent 50%);
}

.sidenav-title {
  border-bottom: 1px solid rgb(120, 120, 120);
  padding: 20px;
}

.sidenav-a {
  text-decoration: none;
}

.sidenav-a-account {
  text-decoration: none;
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
}

.sidenav-btn {
  border-bottom: 1px solid rgb(50, 50, 50);
  padding: 20px;
  color: rgba(255, 255, 255, 0.66);
  background: none;
  font-size: 1.25em;
  cursor: pointer;
  cursor: hand;
  transition: background, color 0.25s;
}

.sidenav-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: rgb(255, 255, 255);
}

.sidenav-btn-bottom {
  border-top: 1px solid rgb(50, 50, 50);
  padding: 20px;
  color: rgba(255, 255, 255, 0.66);
  background: none;
  font-size: 1.25em;
  cursor: pointer;
  cursor: hand;
  transition: background, color 0.25s;
}

.sidenav-btn-bottom:hover {
  background: rgba(255, 255, 255, 0.1);
  color: rgb(255, 255, 255);
}

.profile-picture {
  background: rgb(50, 50, 50);
  height: 40px;
  width: 40px;
  border-radius: 20px;
  display: inline-block;
  float: left;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1), 0px 2px 4px rgba(0, 0, 0, 0.1);
  background-size: cover;
  background-position: center center;
}

.profile-picture-table {
  width: 30px;
  height: 30px;
  border-radius: 15px;
  background: #ccc;
  position: relative;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1), 0px 2px 4px rgba(0, 0, 0, 0.1);
  background-size: cover;
  background-position: center center;
}

.profile-score {
  width: 30px;
  height: 30px;
  border-radius: 15px;
  line-height: 30px;
  text-align: center;
  background: linear-gradient(to bottom, #eaeaea, #cccccc);
  position: relative;
  margin-right: -10px;
  z-index: 10;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1), 0px 2px 4px rgba(0, 0, 0, 0.1);
  background-size: cover;
  background-position: center center;
}

.platform-icon {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translate(0, 0);
}

.hide-cell-overflow {
  max-width: 0;
  white-space: nowrap;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.user-name {
  height: 40px;
  line-height: 40px;
  margin-left: 20px;
}

.nav-menu-close {
  padding: 4px;
  cursor: pointer;
  cursor: hand;
  opacity: 0.66;
  transition: opacity 0.25s;
}

.nav-menu-close:hover {
  opacity: 1;
}

.hero-card-fade-in {
  position: absolute; /* Set the black div to an absolute position so it covers the parent div */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  opacity: 0;
  z-index: 50; /* Set the z-index to make sure it overlays siblings */
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.matt-roles {
  text-align: center;
  position: absolute;
}

ul.loop-roles {
  list-style: none;
  padding: 0px;
  margin: 0px;
  display: inline;
}

ul.loop-roles li {
  display: none;
  padding: 0px;
  margin: 0px;
}

.video {
  aspect-ratio: 16/9;
  width: 100%;
}

.card-padding {
  padding: 50px 0px;
}

.card-padding:last-child {
  padding-bottom: 0px;
}

.video-overlap-background {
  background-image: none;
  background-repeat: no-repeat;
  padding: 0px;
}

.btn-mailing-list {
  box-sizing: border-box;
  width: 100%;
}

.hero-me {
  position: absolute;
  bottom: 0px;
  left: 0px;
  height: 45dvh;
  width: 100vw;
  overflow: hidden;
  background-size: contain;
  background-position: bottom center;
  background-repeat: no-repeat;
}

.blog-sidebar-container {
  position: relative;
}

.blog-sidebar {
  width: 100%;
  box-sizing: border-box;
}

.blog-sidebar-inner {
  box-shadow: 0px 2px 4px rgb(230, 230, 230);
  border: 1px solid rgb(230, 230, 230);
  padding: 20px;
  border-radius: 5px;
  box-sizing: border-box;
  width: 100%;
}

.blog-sidebar-bottom {
  position: static;
  width: 100% !important;
  margin-top: 30px;
}

.blog-sidebar-not-sticky {
  position: absolute;
}

.blog-sidebar-not-sticky {
  position: absolute;
}

.blog-sidebar-sticky {
  position: fixed;
}

.article-title {
  margin: 0px;
  color: #000000;
  padding: 0px;
  margin-bottom: 15px;
}

.article-date {
  font-size: 0.75em;
  margin-bottom: 5px;
}

.article-tags {
  margin-bottom: 15px;
}

.article-tags-title {
  font-size: 0.75em;
  margin-right: 2px;
}

.article-tag-link {
  text-decoration: none;
  color: inherit;
}

.article-tag {
  border: 1px solid #777677;
  border-radius: 50px;
  padding: 4px 8px;
  margin: 0px;
  font-size: 0.75em;
  transition: all 0.25s;
  cursor: pointer;
  cursor: hand;
}

.article-tag:hover {
  border: 1px solid #000000;
  color: #000000;
  border-radius: 50px;
  padding: 4px 8px;
  margin: 0px;
  font-size: 0.75em;
}

.article-description {
  margin-bottom: 15px;
}

.article-read-more {
  margin: 0px;
  border: #777677 1px solid;
  color: #777677;
  margin-bottom: 15px;
  transition: all 0.25s;
  cursor: pointer;
  cursor: hand;
}

.article-read-more:hover {
  border: 1px solid #000000;
  color: #000000 !important;
}

.article-divider {
  padding: 0px;
  margin: 30px 0px;
}

.pagination-button {
  margin: 0px;
  border: #777677 1px solid;
  color: #777677;
  transition: all 0.25s;
  cursor: pointer;
  cursor: hand;
}

.pagination-button:hover {
  border: 1px solid #000000;
  color: #000000 !important;
}

.pagination-next {
  float: right;
}

.mailinglist-input-first-name {
  border: 1px solid rgba(204, 204, 204, 0.8);
  width: 100%;
  border-radius: 5px 0px 0px 0px;
  box-sizing: border-box;
  padding: 15px;
  border-right: 0px;
}

.mailinglist-input-surname {
  border: 1px solid rgba(204, 204, 204, 0.8);
  width: 100%;
  border-radius: 0px 5px 0px 0px;
  box-sizing: border-box;
  padding: 15px;
}

.mailinglist-input-email {
  border: 1px solid rgba(204, 204, 204, 0.8);
  width: 100%;
  border-radius: 0px 0px 5px 5px;
  box-sizing: border-box;
  padding: 15px;
  margin-bottom: 10px;
  border-top: 0px;
}

.mailinglist-btn {
  width: 100%;
  padding: 0;
  margin: 0px;
  border: 0;
  border: 1px solid rgba(204, 204, 204, 0.8);
  border-radius: 5px;
  box-sizing: border-box;
  padding: 15px;
}

.admin-btn {
  width: 100%;
  padding: 0;
  margin: 0px;
  border: 0;
  border: 1px solid rgba(204, 204, 204, 0.8);
  border-radius: 5px;
  box-sizing: border-box;
  padding: 15px;
}

.admin-right-btn {
  padding: 0;
  margin: 0px;
  border: 0;
  border: 1px solid rgba(204, 204, 204, 0.8);
  border-radius: 0px 5px 5px 0px;
  box-sizing: border-box;
  padding: 15px;
  width: 100%;
}

.img-full {
  max-width: 100%;
  height: auto;
}

.blog-image-caption {
  border-bottom: 1px solid rgba(204, 204, 204, 0.8);
  padding: 10px 0px;
  margin-bottom: 10px;
  font-size: 0.8rem;
}

.admin-padding-top {
  padding-top: 100px;
}

ul.admin-navigation {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

ul.admin-navigation li.title {
  text-transform: uppercase;
  font-size: 0.9rem;
  color: #CCCCCC;
  margin-bottom: 10px;
}

ul.admin-navigation li.link {
  padding-bottom: 5px;
  border-bottom: 1px solid #E8E8E8;
  margin-bottom: 5px;
  display: block;
}

ul.admin-navigation li.link a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  cursor: hand;
  transition: 0.25s color;
  display: block;
}

ul.admin-navigation li.link a:hover {
  color: black;
}

ul.admin-navigation li.section-last-link {
  border-bottom: none;
  margin-bottom: 10px;
}

ul.admin-navigation li.link:last-child {
  border-bottom: none;
  margin-bottom: 0px;
  padding-bottom: 0px;
}

.dropdown-container {
  position: relative;
  float: right;
}

.dropdown-text {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  padding: 0;
  margin: 0;
  width: 200px;
}

.dropbox-inner {
  box-shadow: 0px 2px 4px rgba(30, 30, 30, 0.2);
  border: 1px solid rgb(230, 230, 230);
  padding: 20px;
  border-radius: 5px;
  z-index: 1000;
  background: white;
  box-sizing: border-box;
  width: 100%;
}

.dropdown-button-style {
  box-shadow: 0px 2px 4px rgba(30, 30, 30, 0.2);
  border: 1px solid rgb(230, 230, 230);
  background: white;
}

.show-dropdown .dropdown-text {
  display: block;
}

.sidebar-title {
  text-transform: uppercase;
  font-size: 0.9rem;
  color: #CCCCCC;
  margin-bottom: 10px;
}

.addedtag {
  background: #e8e8e8;
  padding: 0px 12px;
  height: 30px;
  line-height: 30px;
  border-radius: 10px;
  margin-right: 5px;
  display: inline-block;
}

.addedtaginner {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  float: left;
  text-overflow: ellipsis;
}

.mytags {
  line-height: 35px;
  margin-top: 10px;
}

.deleteTag {
  opacity: 0.6;
  transition: 0.25 all;
  padding: 0px;
  margin: 0px;
  border: none;
  width: 20px;
  margin-left: 5px;
  display: inline-block;
  float: right;
}

.deleteTag:hover {
  opacity: 1;
}

.addedtag:last-child {
  margin-right: 0px;
}

.addTagForm {
  border: 1px solid rgba(204, 204, 204, 0.8);
  border-radius: 5px 0px 0px 5px;
  box-sizing: border-box;
  padding: 15px;
  border-right: 0px;
  width: 100%;
}

.addTagButton {
  border: none;
  width: 25%;
  background: #0d6efd;
  color: #ffffff;
  float: right;
  border-radius: 5px;
  box-sizing: border-box;
  padding: 10px;
}

.sidebar_btn {
  background: none;
  padding: 0px;
  margin: 0px;
  color: inherit;
  transition: inherit;
  width: 100%;
  border: none;
  text-align: left;
}

.error-flash, .update-flash {
  display: none;
  margin-bottom: 10px;
}

.list-row-item {
  border-bottom: 1px solid #fafafa;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.list-row-item:last-child {
  border-bottom: 0px solid #fafafa;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.search-filtering-options {
  display: none;
}

@media (min-width: 576px) {
  .header-not-sticky {
    top: 15px;
  }
  .footer-container {
    padding: 30px 0px 60px 0px;
  }
  .footer-bottom-row {
    margin-top: 12.5px;
    padding-top: 12.5px;
  }
  .card-padding {
    padding: 60px 0px;
  }
  .hero-me {
    height: 45dvh;
  }
  .mobile-show {
    display: block;
  }
  .desktop-show {
    display: none;
  }
}
@media (min-width: 768px) {
  .desktop-image-side {
    display: block;
  }
  .half-data-row {
    border-left: 1px solid #E8E8E8;
  }
  .feature-data-row {
    padding: 0px;
    border-bottom: none;
  }
  .padding-right-10-desktop {
    padding-right: 20px;
  }
  .hero-card {
    height: 80dvh;
  }
  .menu-options {
    max-width: 450px;
  }
  .mailing-form-container {
    margin-bottom: 0px;
  }
  .header-not-sticky {
    top: 20px;
  }
  .admin-padding-top {
    padding-top: 110px;
  }
  .footer-container {
    padding: 35px 0px 70px 0px;
  }
  .footer-top-row {
    text-align: left;
  }
  .footer-bottom-row {
    margin-top: 15px;
    padding-top: 15px;
  }
  .footer-social-buttons {
    float: right;
  }
  .footer-logo {
    margin-bottom: 0px;
  }
  .matt-roles {
    text-align: left;
  }
  .card-padding {
    padding: 70px 0px;
  }
  .video-overlap-background {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 40%, #D8D2CB 40%);
    background-repeat: no-repeat;
    padding: 30px 0px;
  }
  .hero-me {
    left: 50vw;
    height: 80dvh;
    width: 45vw;
  }
  .mobile-show {
    display: none;
  }
  .desktop-show {
    display: block;
  }
}
@media (min-width: 992px) {
  .header-not-sticky {
    top: 25px;
  }
  .admin-padding-top {
    padding-top: 115px;
  }
  .footer-container {
    padding: 40px 0px 80px 0px;
  }
  .footer-bottom-row {
    margin-top: 17.5px;
    padding-top: 17.5px;
  }
  .card-padding {
    padding: 80px 0px;
  }
  .video-overlap-background {
    padding: 40px 0px;
  }
  .hero-me {
    left: 45vw;
    width: 50vw;
  }
}
@media (min-width: 1200px) {
  .header-not-sticky {
    top: 30px;
  }
  .admin-padding-top {
    padding-top: 120px;
  }
  .footer-container {
    padding: 45px 0px 90px 0px;
  }
  .footer-bottom-row {
    margin-top: 20px;
    padding-top: 20px;
  }
  .card-padding {
    padding: 90px 0px;
  }
  .video-overlap-background {
    padding: 50px 0px;
  }
  .hero-me {
    left: 40vw;
    width: 55vw;
  }
}
@media (min-width: 1400px) {
  .header-not-sticky {
    top: 35px;
  }
  .admin-padding-top {
    padding-top: 125px;
  }
  .footer-container {
    padding: 50px 0px 100px 0px;
  }
  .footer-bottom-row {
    margin-top: 22.5px;
    padding-top: 22.5px;
  }
  .card-padding {
    padding: 100px 0px;
  }
  .video-overlap-background {
    padding: 60px 0px;
  }
  .hero-me {
    left: 35vw;
    width: 60vw;
  }
}

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