﻿
@font-face {
    font-family: 'Arsenal';
    src: url('/fonts/Arsenal/Arsenal-Regular.ttf');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Trebuchet MS', sans-serif !important;
}

button {
    font-family: 'Trebuchet MS', sans-serif !important;
}

body {
    padding: 0;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding:0;
    /*
    padding-left: 15px;
    padding-right: 15px;
    */
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

@media (max-width: 575px) {
    .dashboard-subrow-communities {
        padding-left:1%;
        padding-right:1%;
    }
}

:root {
    --anchor-blue: #00bce2;
    --anchor-dark-blue: #1c4966;
    --anchor-text: #263444;
    --anchor-muted: #607080;
    --anchor-border: #e3e8eb;
    --anchor-line: #d5dde1;
    --card-radius: 16px;
}

/* &#x262E; */
#layout-dashboard-header-button.btn.dropdown-toggle::after {
    content: "\02630";
    border-top: 0;
    border-right: 0;
    border-left: 0;
    font-size: 20pt;
}

#layout-dashboard-header-button.btn.dropdown-toggle.show::after {
    content: "\02630";
    border-top: 0;
    border-right: 0;
    border-left: 0;
    font-size: 20pt;
}

/* Page section */

.table-admin-small td {
    font-size:small;
    border:dotted 1px grey;
}

.table-admin-small th {
    font-size: small;
    border: solid 1px grey;
}


.home-hero-desktop {
    width: 100%;
    height: 320px;
    background-image: url("/images/v3/home_banner_desktop_v2.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home-hero-mobile {
    width: 100%;
    height: clamp(190px, 32vw, 230px);
    background-image: url("/images/v3/home_banner_mobile_v2.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-hero-desktop {
    width: 100%;
    height: 420px;
    background-image: url("/images/v3/about-banner_desktop.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-hero-mobile {
    width: 100%;
    height: clamp(190px, 32vw, 230px);
    background-image: url("/images/v3/about-banner_mobile.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.membership-hero-desktop {
    width: 100%;
    height: 420px;
    background-image: url("/images/v3/membership-banner_desktop.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.membership-hero-mobile {
    width: 100%;
    height: clamp(190px, 32vw, 230px);
    background-image: url("/images/v3/membership-banner_mobile.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* begin mods */
.community-section {
    max-width: 720px;
    margin: 0 auto;
    padding: 24px 16px 40px;
}

.community-section__header {
    margin-bottom: 20px;
}

    .community-section__header h1 {
        margin: 0;
        color: var(--anchor-dark-blue);
        font-family: Georgia, serif;
        font-size: clamp(2rem, 8vw, 3rem);
        font-style: italic;
        font-weight: 500;
        line-height: 1.1;
    }

    .community-section__header p {
        margin: 12px 0 0;
        color: var(--anchor-dark-blue);
        font-family: Georgia, serif;
        font-size: 1.35rem;
        font-style: italic;
    }

/* Main card */

.community-card {
    overflow: hidden;
    margin-top: 18px;
    border: 1px solid var(--anchor-border);
    border-radius: var(--card-radius);
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(28, 73, 102, 0.12);
}

.community-card__parent {
    position: relative;
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr) 18px;
    gap: 16px;
    align-items: start;
    padding: 16px;
    color: inherit;
    text-decoration: none;
}

.community-card__image {
    display: block;
    width: 110px;
    height: 82.5px;
    border-radius: 12px;
    object-fit: cover;
    object-position: center;
}

.community-card__intro h2 {
    margin: 2px 0 7px;
    color: var(--anchor-text);
    font-size: 1.18rem;
    font-weight: 650;
    line-height: 1.2;
}

.community-card__intro p {
    margin: 0;
    color: var(--anchor-text);
    font-size: 0.98rem;
    line-height: 1.45;
}

.community-card__arrow,
.subtopic__arrow {
    align-self: center;
    color: var(--anchor-dark-blue);
    font-size: 2rem;
    font-weight: 300;
    line-height: 1;
}

/* Child-topic region */

.community-card__children {
    position: relative;
    margin: 0 16px 0 126px;
    border-top: 1px solid var(--anchor-border);
}

    /*
  Vertical line showing that the sub-topics belong to
  the parent topic above.
*/
    .community-card__children::before {
        position: absolute;
        top: 0;
        bottom: 50%;
        left: 17px;
        width: 1px;
        background: var(--anchor-line);
        content: "";
    }

.subtopic {
    position: relative;
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr) 16px;
    gap: 10px;
    padding: 16px 0;
    color: inherit;
    text-decoration: none;
}

    .subtopic + .subtopic {
        border-top: 1px solid var(--anchor-border);
    }

    /* Horizontal branch from the vertical hierarchy line */

    .subtopic::before {
        position: absolute;
        top: 27px;
        left: 17px;
        width: 18px;
        height: 1px;
        background: var(--anchor-line);
        content: "";
    }

.subtopic__dot {
    position: relative;
    z-index: 1;
    width: 12px;
    height: 12px;
    margin-top: 5px;
    margin-left: 11px;
    border-radius: 50%;
    background: var(--anchor-blue);
    box-shadow: 0 0 0 3px #ffffff;
}

.subtopic__content h3 {
    margin: 0 0 7px;
    color: #007ea6;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.25;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.subtopic__content p {
    margin: 0;
    color: var(--anchor-text);
    font-size: 0.92rem;
    line-height: 1.45;
}

.subtopic__arrow {
    font-size: 1.7rem;
}

/* Interaction states */

.community-card__parent:hover,
.community-card__parent:focus-visible,
.subtopic:hover,
.subtopic:focus-visible {
    background: #f7fbfc;
}

.community-card__parent:focus-visible,
.subtopic:focus-visible {
    outline: 3px solid rgba(0, 188, 226, 0.45);
    outline-offset: -3px;
}

/* Small phone adjustment */

@media (max-width: 379px) {
    .community-section {
        padding-inline: 12px;
    }

    .community-card__parent {
        grid-template-columns: 96px minmax(0, 1fr) 14px;
        gap: 12px;
        padding: 14px;
    }

    .community-card__image {
        width: 96px;
        height: 72px;
    }

    .community-card__children {
        margin-right: 14px;
        margin-left: 110px;
    }

    .community-card__intro h2 {
        font-size: 1.05rem;
    }

    .community-card__intro p,
    .subtopic__content p {
        font-size: 0.88rem;
    }
}

/* Optional desktop adjustment */

@media (min-width: 768px) {
    .community-section {
        padding-top: 36px;
    }

    .community-card__parent {
        grid-template-columns: 150px minmax(0, 1fr) 20px;
        gap: 20px;
        padding: 20px;
    }

    .community-card__image {
        width: 150px;
        height: 112.5px;
    }

    .community-card__children {
        margin-right: 20px;
        margin-left: 170px;
    }
}

/* end mods */

#layout-dashboard-header-button:focus {
    border-color: #00bce2;
}

#layout-dashboard-header-button:active {
    border-color: #00bce2;
}

input[type="text"] {
    border-radius: 15px;
}

section.home-index p {
    font-family: Arsenal;
}

section.home-index button {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    border-radius: 8px 8px;
    padding-bottom: 3px;
}

.home-container {
    position: relative;
}

.home-text-content {
    position: relative;
}

.home-background-div-sunset {
    width: 100%; /* Adjust width as needed */
    height: 300px; /* Adjust height as needed */
    background-image: url('/Images/sunset.png'); /* Replace with your image URL */
    background-size: cover; /* cover 100% 100%; Ensures the image covers the entire div */
    background-position: center; /* Centers the image */
    zzbackground-repeat:repeat-x; /* Prevents tiling */
}

.home-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the container */
    z-index: -1; /* Places the image behind the text */
}

#div-home-yacht {
    height:250px;
    width: 100%;
    max-height: 250px;
}

#video-home-yacht {
    position:absolute;
    left:0;
    top:0;
    height:250px;
    width:100%;
    object-fit:fill;
}

#div-home-yacht1 {
    position: relative;
    left: 0;
    top: 35px;
    font-family: Arsenal;
    font-size: 20px;
    color: white;
    text-align:center;
    width:100%;
}

#div-home-yacht2 {
    position: relative; /** fixed */
    left: 0;
    top: 60px;
    font-family: Arsenal;
    font-size: 16px;
    color: white;
    width: 75%;
}

@media not (max-width: 576px) {
    #div-home-yacht2zz {
        font-size:16px;
        width:65%;
    }
}

#div-home-yacht3 {
    position: relative;
    left: 0;
    top: 90px;
}

/* Set width on the form input elements since they're 100% wide by default */
/*
input,
select,
textarea {
    max-width: 280px;
}
*/
section.admin-main {
    padding-left: 15px;
    padding-right: 15px;
}

section.admin-main h1 {
    font-size:20pt;
}

#home-privacy-policy .row.bg-ya-gray h5.fg-ya-blue {
    text-transform:uppercase;
}

#home-tos .row.bg-ya-gray h5.fg-ya-blue {
    text-transform: uppercase;
}

.footer-social-icons {
    padding-bottom: 5px;
}

.footer-social-icons img {
    height: 20px;
    padding-left:5px;
    padding-right:5px;
}

article.msg-row-level-1  .msg-title {
    padding-left:5px;
    padding-right:5px;
    padding-bottom:5px;
}

.msg-main-inner {
    padding-right: 5px;
    padding-left: 5px;
}

.msg-row .msg-body {
    overflow-wrap:break-word;
}

.msg-row .msg-links {
    overflow-wrap:break-word;
    padding-left:5px;
    padding-right:5px;
    background-color:white;
}

.msg-row .msg-links .message-link-title {
    color:#00bce2 !important;
}



.text-bg-white {
    color: white;
}

#modal-community-message.message-level-2 .row.modal-community-message-form-title {
    /*display:none;*/
}

#modal-community-message.message-level-3 .row.modal-community-message-form-title {
    display: none;
}

#modal-community-message.message-level-1 h5.submit-a-reply {
    display: none;
}

#modal-community-message.message-level-2 h5.submit-a-message {
    display: none;
}

#modal-community-message.message-level-3 h5.submit-a-message {
    display: none;
}

section.home-index p {
    /*font-size:13pt;*/
    padding-right: 10px;
}

.home-block-bordered {
    border-right: 3px solid #00bce2;
    border-bottom: 3px solid #00bce2;
}

.home-blocks-of-gray {

}

.fg-ya-blue {
    color: #00bce2;
}

.bg-ya-darkblue {
    background-color: #03284e;
}

.fg-ya-darkblue {
    color: #03284e;
}

.bg-ya-blue {
    background-color: #00bce2;
}

.bg-ya-light-blue {
    background-color:#d9f5fb;
}

.bg-ya-gray {
    background-color: #e8e8e8;
}

.bg-taupe {
    background-color: #e8e3e3;
}

/* #e8e3e3; */


#div-sub-main mark {
    padding: 0;
}

#community-form-search.hide {
    display: none;
}

#message-list-form-search.hide {
    display:none;
}

#modal-community-message-edit {
    font-size: 10pt;
}

.modal-fullscreen .modal-dialog {
    max-width: 100%;
    margin: 0;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100vh;
    display: flex;
    position: fixed;
    z-index: 100000;
}


.is-hidden {
    height:2px;
}

.msg-main.shrunk .msg-main-more .btn-msg-main-more {
    display: block;
}

.msg-main:not(.shrunk) .msg-main-more .btn-msg-main-more {
    display: none;
}

.msg-main.shrunk .msg-main-more .btn-msg-main-less {
    display: none;
}

.msg-main:not(.shrunk) .msg-main-more .btn-msg-main-less {
    display: block;
}

.msg-main.shrunk .msg-main-inner {
    max-height: 150px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.msg-main.no-shrink .msg-main-more {
    visibility:hidden;
}

/*
.msg-main.shrunk .msg-main-more {
    display: block;
}

.msg-main:not(.shrunk) .msg-main-more {
    display:none;
}
*/

.btn.message-rating.no-hover:hover {
    color: red !important;
    background-color: #00bce2 !important;
    xxborder-color: #00bce2 !important;
}

.message-rating {
    margin-right:10px;
    padding-top:5px;
    padding-bottom:0;
    text-decoration: none;
    font-size:18px;
    zzpadding:5px;
    border:none !important;
    background-color:transparent;
}

.message-rating.rated-0 {
    color:gray !important;
}

    .message-rating:not(.rated-0) {
        color: #00bce2 !important;
    }

.dashboard-menu .badge {
    padding: 4px !important;
    padding-top: 3px !important;
    padding-bottom: 3px !important;
    font-weight: 300 !important;
    margin-left: 5px;
    color: white !important;
    min-width: 18px;
}

#div-sub-main .badge {
    padding: 4px !important;
    padding-top: 3px !important;
    padding-bottom: 3px !important;
    font-weight: 300 !important;
    margin-left: 5px;
    color: white !important;
    min-width: 18px;
}

.badge.text-bg-zero {
    display:none;
}

.badge.text-bg-0 {
    display: none;
}

.badge.text-bg-none {
    background-color:transparent;
    color:gray !important;
}

.btn .badge {
    margin-left: 2px;
}

#div-sub-main {
    margin-top: 5px;
    margin-left: 20px;
    margin-right: 20px;
    /*margin-bottom: 150px;*/
}

a.link-disabled {
    opacity: 0.7;
    cursor:unset !important;
}

.btn.btn-primary:hover {
    color: white;
    background-color: #00bce2;
    border-color: #00bce2;
}
.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
    background-color: #777;
    border-color: #fff
}


.fs-new-message:not(.fs-expanded) {
    max-height: 30px;
}

    .fs-new-message:not(.fs-expanded) span.not-expanded {
        display: inline;
    }

    .fs-new-message:not(.fs-expanded) span.is-expanded {
        display: none;
    }

.fs-new-message.fs-expanded span.not-expanded {
    display: none;
}

.fs-new-message.fs-expanded span.is-expanded {
    display: inline;
}

.fs-new-message:not(.fs-expanded) > form.fs-new-message-form {
    visibility: hidden;
}

.fs-new-message {
}

    .fs-new-message > legend {
    }

.fs-new-message-form {
    padding-top: 10px;
}

    .fs-new-message-form input {
        margin-top: 10px;
        zzfont-weight: 600;
    }

    .fs-new-message-form input, textarea {
        border: none;
        width: 99%;
    }

.row.msg1 {
    padding-top: 10px;
    border: 1px dotted #e0e0e0;
    border-bottom: 0;
}

.row.msg2 {
    padding-top: 10px;
    border: 1px dotted #e0e0e0;
}

.btn.btn-med {
    --bs-btn-padding-y: 0.04rem !important;
    --bs-btn-padding-x: 0.35rem !important;
    --bs-btn-font-size: 0.85rem !important;
}

.btn.btn-sxm {
    --bs-btn-padding-y: 0.2rem !important;
    --bs-btn-padding-x: 0.30rem !important;
    --bs-btn-font-size: 0.95rem !important;
}

.btn.btn-sm-2 {
    --bs-btn-padding-y: 0.2rem !important;
    --bs-btn-padding-x: 0.35rem !important;
    --bs-btn-font-size: 0.95rem !important;
}

.msg-loop {
    margin-bottom: 15px;
    padding-left: 10px;
    padding-right: 10px;
}

.msg-loop-odd {
    zzbackground-color: #f3f3f3;
    background-color: #f7f7f7;
}

@media not (max-width: 576px) {
    #dashboard-title {
        color: white;
        font-size: 22px;
    }

    .dashboard-username {
        color: white;
        font-size: 22px;
        text-align: right;
    }

    .dashboard-title1 {
    }

    .dashboard-title2 {
    }

    .dashboard-title-separator {
    }
}
/* small */
@media not (max-width: 576px) {
    .small-only {
        display:none;
    }
}

@media (max-width: 576px) {
    .not-small {
        display: none;
    }
}

@media (max-width: 575px) {
    .small-only {
        display: block;
    }
}

@media (max-width: 576px) {
    #dashboard-title {
        color: white;
        font-size: 16px;
    }

    .dashboard-username {
        color: white;
        font-size: 12px;
        text-align: right;
    }

    .dashboard-title1 {
        display: none;
    }

    .dashboard-title2 {
    }

    .dashboard-title-separator {
        display: none;
    }
}

.ZZchat-message-left {
    background-color: #f5f5f5;
}

card.no-radius {
    border-radius: 0 !important;
}

.form-control {
    border-radius: 0;
}

.btn {
    border-radius:10px 10px;
}

.btn-primary {
    background-color: #00b6dd;
    border-color: #00b6dd;
}

    .btn-primary:disabled {
        background-color: #00b6dd;
        border-color: #00b6dd;
        opacity: 0.2;
    }

body, html {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

#about-our-principles h5 {
    font-family: 'Times New Roman',Times,serif;
    font-size:18pt;
    font-weight:500;
}

.fg-deep-ocean {
    color: #012e40;
}

.bg-deep-ocean {
    background-color: #012e40;
}

.fg-calm-teal {
    color: #012e40;
}

.bg-calm-teal {
    background-color: #012e40;
}

.fg-anchor-orange {
    color: #f4a340;
}

.bg-anchor-orange {
    background-color: #f4a340;
}

.btn-primary.bg-anchor-orange {
    border-color: #f4a340;
}

.fg-soft-white {
    color: #f8f8f6;
}

.bg-soft-white {
    background-color: #f8f8f6;
}

.fg-mist {
    color: #eef5f8;
}

.bg-mist {
    background-color: #eef5f8;
}

.fg-harbour-grey {
    color: #e8e8e8;
}

.bg-harbour-grey {
    background-color: #e8e8e8;
}

.fg-charcoal {
    color: #333333;
}

.fg-white {
    color: white;
}

.fg-default {
    color: #00bce2;
}

.bg-default {
    background-color: #00bce2;
}

.fg-home {
    color: #00bce2;
}

.bg-home {
    background-color: #00bce2;
}

.fg-therapist {
    color: #a99f9c;
}

.bg-therapist {
    background-color: #a99f9c;
}

.fg-coach {
    color: #a2997b;
}

.bg-coach {
    background-color: #a2997b;
}


.fg-sports {
    color: #3c7bbf;
}

.bg-sports {
    background-color: #3c7bbf;
}

.fg-expert-sessions {
    color: #eb7d0e;
}

.bg-expert-sessions {
    background-color: #eb7d0e;
}

.fg-businesses {
    color: #c2ab58;
}

.bg-businesses {
    background-color: #c2ab58;
}

.fg-individuals {
    color: #44aa93;
}

.bg-individuals {
    background-color: #44aa93;
}


footer.bg-footer {
    color: white;
    background-color: #00bce2;
    width: 100%;
    min-height: 75px;
}

body.-dashboard-message- footer.bg-footer {
    background-color: #00bce2;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}

body.-dashboard-message footer.bg-footer {
    background-color: #00bce2;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}

body.-dashboard-message-item footer.bg-footer {
    background-color: #00bce2;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}

body.-profile-changeemail footer.bg-footer {
    background-color: #00bce2;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}

body.-dashboard-profile-uploadavatar footer.bg-footer {
    background-color: #00bce2;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}

body.-dashboard-profile-editavatar footer.bg-footer {
    background-color: #00bce2;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}

body.-profile-changepassword footer.bg-footer {
    background-color: #00bce2;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}

body.-profile-changeusername footer.bg-footer {
    background-color: #00bce2;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}


body.-account-forgotpassword-confirmation footer.bg-footer {
    background-color: #00bce2;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}

body.-resetpassword footer.bg-footer {
    background-color: #00bce2;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}

body.-resetpasswordconfirmation footer.bg-footer {
    background-color: #00bce2;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}

body.-account-forgotpassword footer.bg-footer {
    background-color: #00bce2;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}

body.-account-login footer.bg-footer {
    background-color: #00bce2;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}

body.-dashboard-admin footer.bg-footer {
    background-color: #00bce2;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}

footer.bg-footer a {
    font-size: 1.05rem;
    text-decoration: none;
}

/** 
body:not(.-home-index) footer.bg-footer {
    background-color: #00bce2;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}

body.-home-index footer.bg-footer {
    background-color: #00bce2;
    width: 100%;
    min-height: 75px;
}
*/


.p-content p {
    text-align: justify;
}

.container {
}

.bottom-space {
    height: 65px;
}

.no-bs {
    --bs-gutter-x: 0;
}

.bg-header {
    background-color: #00bce2;
}

.app-calendar-col {
    min-height: 80px;
    border: 1px solid #00bce2;
}

.app-calendar-day {
    color: white;
    background-color: #00bce2;
    border: 1px solid #00bce2;
    border-radius: 3px;
    position: absolute;
    zztop: 5px;
    zzleft: 5px;
    font-size: 0.85rem;
    cursor: pointer;
}

.disabled, :disabled {
    pointer-events: none !important;
}

.profile-image-avatar.selected {
    border: 1px solid red;
}

section.hoa {
}

.hoa-bg-blue {
    background-color: #00bce2;
}

.hoa-bg-white {
    background-color: white;
}

.hoa-white {
    color: white;
}

.hoa-blue {
    color: #00bce2;
}

.msg-row.msg-is-collapsed.msg-yes .msg-collapsable {
    display: none;
}

.msg-row.from-me .msg-details {
    border-radius: 5px;
    zzmargin-left: 25px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 10px;
    padding-left: 10px;
    /*text-align: right;*/
    background-color: #e9e9e9;
}

.msg-row.from-them .msg-details {
    /*text-align: left;*/
    border-radius: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 10px;
    padding-left: 10px;
    zzmargin-right: 55px;
    background-color: #00bce250;
    /* 00bce2 */
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

section.community-message-item .msg-row.msg-fade-in {
    animation: fadeIn 2s;
}

#div-model-messages .msg-row.profile-msg-fade-in {
    animation: fadeIn 2s;
}

.btn.is-admin {
    border-color: #870000;
    background-color: white;
    zzbackground-color: #870000;
    zzcolor: white;
    color: #870000;
}

.is-admin-strip {
    background-color: #a50b0b43;
}

section.community-message-item {
    padding: 7px;
    padding-left:0;
    padding-right:0;
}

    .msg-link-title {
        font-size: 1.15rem !important;
    }

    .community-message-item .section-level-1 {
        padding: 10px;
        margin-bottom: 10px;
    }

.community-message-item .section-level-2 {
    padding-top: 10px;
    padding-bottom:10px;
    margin-left: 20px;
    margin-bottom: 10px;
}

.community-message-item .msg-main {
    zzbackground-color: #ededed60;
}

    .community-message-item .msg-main > .msg-body {
        /*padding-left:5px;*/
        padding-right: 5px;
    }

    .community-message-item .msg-main > .msg-links {
        padding-left: 5px;
        padding-right: 5px;
    }

.community-message-item .msg-toolbar {
    padding: 7px;
}

.community-message-item .section-level-3 {
    padding-top: 10px;
    padding-bottom: 10px;
    margin-left: 20px;
    margin-bottom: 10px;
}

body.show-container-main #container-main {
    display: block;
}

body.show-container-main #container-alt {
    display: none;
}

body.show-container-alt #container-alt {
    display: block;
}

body.show-container-alt #container-main {
    display: none;
}

.row.dashboard-menu {
    background-color: white;
}

#container-menu {
    /*
     position:absolute;
     top:0;
     left:0;
     right:0;
     */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 50px;
    background-color: white;
}

body:not(.show-container-main) #container-main {
    display: none;
}

body:not(.show-container-community) #container-community {
    display: none;
}

body:not(.show-container-alt) #container-alt {
    display: none;
}

#div-sub-main {
    margin-top: 5px;
    margin-left: 20px;
    margin-right: 20px;
    /*margin-bottom: 150px;*/
    /*overflow-x: hidden;*/
}

    #div-sub-main a:not(.message-rating):not(.btn) {
        color: #00bce2 !important;
    }

    #div-sub-main .btn:hover {
        color: white !important;
        background-color: #00bce2;
        border-color: none;
    }

    #div-sub-main a:not(.btn):hover {
        color: #00bce2 !important;
        --bs-link-color-rgb: (0, 188, 226) !important;
        border-color: none;
    }

    #div-sub-main a.btn:hover {
        color: white !important;
        --bs-link-color-rgb: (0, 188, 226) !important;
        font-weight: bold;
        border-color: none;
    }

.col-12.for-section ZZsection {
    border: 1px solid pink;
    min-height: 20px;
}

.community-message-item > div:first-of-type {
    border-top: 1px solid #cccccc;
    padding-top: 10px;
}

article.msg-row.is-masked .msg-masked-notice {
    padding-top: 3px;
    font-weight: 500;
    font-size: large;
    font-style: italic;
}

article.msg-row:not(.is-masked) .msg-masked-notice {
    display: none;
    padding-top: 3px;
    font-weight: 500;
    font-size: large;
    font-style: italic;
}

article.msg-row.is-masked .msg-main {
    background-color: whitesmoke;
}

article.msg-row.is-masked .msg-title {
    visibility: hidden;
}

article.msg-row.is-masked .msg-body {
    display: none;
}

article.msg-row.is-masked .msg-links {
    display: none;
}

article .msg-main-outer {
    padding-right:0 !important;
}
article.msg-row .msg-main {
    zzpadding-left:5px;
    zzpadding-right:5px;
}

article.msg-row .msg-action-post {
    float: left;
    width: 20px;
    display: inline;
    margin-right: 10px;
}

article.msg-row .msg-title {
    font-size: larger;
    font-weight: bold;
    padding-top: 5px;
}

article.msg-row .msg-body {
}

.btn.is-following span.follow {
    display: none;
}

.btn.is-following span.un-follow {
    display: inline;
}

.btn.not-following span.un-follow {
    display: none;
}

.btn.not-following span.follow {
    display: inline;
}


.profile-column {
    border-bottom: 10px solid transparent;
}

    .profile-column img.profile-image-cols {
        width: 80px;
        border-right: 10px solid transparent;
        float: left;
    }

    .profile-column .profile-profession {
        font-size: 9pt;
    }

    .profile-column .profile-tier {
        font-size: 9pt;
        page-break-after: always;
    }

    .profile-column .profile-title {
        font-weight: 600;
    }

/* small */
@media (max-width: 576px) {
    .profile-column img.profile-image-cols {
        width: 40px;
        border-right: 5px solid transparent;
    }

    .profile-column .profile-title {
        font-size: 9pt;
    }

    .profile-column .profile-profession {
        font-size: 8pt;
        overflow: hidden;
        white-space: nowrap;
    }

    .profile-column .profile-tier {
        font-size: 8pt;
        overflow: hidden;
        white-space: nowrap;
    }
}
/* med */
@media (max-width: 768px) {
    .profile-column img.profile-image-cols {
        width: 60px;
        border-right: 10px solid transparent;
    }

    .profile-column .profile-title {
        font-size: 11pt;
    }

    .profile-column .profile-profession {
        font-size: 9pt;
        overflow: hidden;
        white-space: nowrap;
    }

    .profile-column .profile-tier {
        font-size: 9pt;
        overflow: hidden;
        white-space: nowrap;
    }
}

/* medium */
@media (max-width: 992px) {
    .profile-column img.profile-image-cols {
        width: 60px;
        border-right: 10px solid transparent;
    }

    .profile-column .profile-profession {
        font-size: 9pt;
        overflow: hidden;
        white-space: nowrap;
    }

    .profile-column .profile-tier {
        font-size: 9pt;
        overflow: hidden;
        white-space: nowrap;
    }
}

/* large */
@media (min-width: 992px) {
}

.zzscrolling-wrapper::-webkit-scrollbar {
    display: none;
}

.scrolling-wrapper {
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
}

    .scrolling-wrapper .scrolling-item {
        display: inline-block;
    }

.scrolling-wrapper-flexbox {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
}

    .scrolling-wrapper-flexbox .scrolling-item {
        flex: 0 0 auto;
    }

.scrolling-wrapper {
    -webkit-overflow-scrolling: touch;
}