.has-error .help-block {
    color: red;
    text-align: left;
    display: block;
}
.loader {
    display: none;
}
.sk-chase {
    position: fixed;
    margin: 0 auto;
    top: 50%;
    left: 0;
    right: 0;
    width: 40px;
    height: 40px;
    animation: sk-chase 2.5s infinite linear both;
    z-index: 10000;
}
.sk-chase-dot {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    animation: sk-chase-dot 2s infinite ease-in-out both;
}
.sk-chase-dot:before {
    content: "";
    display: block;
    width: 25%;
    height: 25%;
    background-color: #444;
    border-radius: 100%;
    animation: sk-chase-dot-before 2s infinite ease-in-out both;
}
.sk-chase-dot:nth-child(1) {
    animation-delay: -1.1s;
}
.sk-chase-dot:nth-child(2) {
    animation-delay: -1s;
}
.sk-chase-dot:nth-child(3) {
    animation-delay: -0.9s;
}
.sk-chase-dot:nth-child(4) {
    animation-delay: -0.8s;
}
.sk-chase-dot:nth-child(5) {
    animation-delay: -0.7s;
}
.sk-chase-dot:nth-child(6) {
    animation-delay: -0.6s;
}
.sk-chase-dot:nth-child(1):before {
    animation-delay: -1.1s;
}
.sk-chase-dot:nth-child(2):before {
    animation-delay: -1s;
}
.sk-chase-dot:nth-child(3):before {
    animation-delay: -0.9s;
}
.sk-chase-dot:nth-child(4):before {
    animation-delay: -0.8s;
}
.sk-chase-dot:nth-child(5):before {
    animation-delay: -0.7s;
}
.sk-chase-dot:nth-child(6):before {
    animation-delay: -0.6s;
}
@keyframes sk-chase {
    100% {
        transform: rotate(360deg);
    }
}
@keyframes sk-chase-dot {
    80%,
    100% {
        transform: rotate(360deg);
    }
}
@keyframes sk-chase-dot-before {
    50% {
        transform: scale(0.4);
    }
    100%,
    0% {
        transform: scale(1);
    }
}
.coach_details h4 {
    display: inherit;
    color: #007bff;
    font-weight: 700;
}
.stripe-button-el span {
    padding: 0 40px !important;
}
.coach-tooltip {
    z-index: 1;
    width: 320px;
    height: 119px;
    padding: 1px 6px;
    border: 1px solid #ccc;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    position: absolute;
    top: 28px;
    left: 40px;
    display: none;
    background: #fefefe;
}
.coach-tooltip li {
    border-bottom: 1px solid #ddd;
    display: table;
    width: 100%;
}
.coach-tooltip li:last-child {
    border-bottom: none;
}
.coach-tooltip li h6 {
    display: table-cell;
    color: #555;
    width: 110px;
    font-weight: 400;
    font-size: 12px;
}
.coach-tooltip li span {
    font-size: 12px;
    color: #222;
    font-weight: 400;
    display: table-cell;
}
.headline {
    text-align: center;
    font-weight: 100;
    color: #fff;
}
.chat-container {
    position: fixed;
    bottom: 50px;
    right: 50px;
    max-width: 350px;
    width: 100%;
    z-index: 10000;
    transform: scale(0);
    transform-origin: right bottom;
}
.chat-container.show {
    animation: scaleIn 0.15s ease-in-out 0s 1 normal forwards;
}
.chat-container.hide {
    display: none;
}
.chat-window {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    box-shadow: 2px 2px 10px 2px rgba(0, 0, 0, 0.1);
    width: 100%;
}
.online::before {
    content: "";
    display: block;
    height: 13px;
    width: 13px;
    background: #63c76a;
    border: 1px solid #fff;
    border-radius: 50%;
    position: absolute;
    left: 11%;
    z-index: 100;
}
.offline::before {
    content: "";
    display: block;
    height: 13px;
    width: 13px;
    background: #ccc;
    border: 1px solid #fff;
    border-radius: 50%;
    position: absolute;
    left: 11%;
    z-index: 100;
}
.chat-text-delete {
    display: inline-block;
    position: absolute;
}
.chat-action-icon {
    font-size: 17px;
}
.chat-file-thumnail {
    width: 120px;
    height: 100px;
    margin-top: 10px;
    margin-bottom: 10px;
}
#messagesContainer {
    overflow-y: scroll;
    height: 264px;
}
.chat-modal-hide {
    display: none;
}
.chat-header {
    padding: 10px;
    background-color: #dcdcdc;
}
.chat-area {
    border-radius: 3px 3px 0 0;
    height: 300px;
    padding: 1em 1em 0;
    position: relative;
    overflow: auto;
    width: 100%;
}
.message {
    width: 45%;
    border-radius: 10px;
    padding: 0.5em;
    font-size: 0.8em;
    margin-bottom: 10px !important;
}
.message-out {
    color: #fff;
    margin-left: 50%;
}
.message-in {
    background: #f1f0f0;
    color: #000;
}
.chat-inputs {
    display: flex;
    justify-content: space-between;
}
.chat-input input {
    border: none;
    font-size: 0.8em;
    outline: none;
    padding: 1.5em;
    width: 90%;
}
.chat-form {
    background: #fff;
    border-top: 1px solid #e9e9e9;
    border-radius: 0 0 3px 3px;
    display: flex;
    flex-direction: row;
    align-items: center;
    overflow: hidden;
    width: 100%;
}
.submit {
    -webkit-appearance: none;
    background: transparent;
    border: 0;
    cursor: pointer;
}
.submit:focus {
    outline: none;
}
.submit-icon {
    width: 20px;
}
.close-chat {
    position: absolute;
    right: -40px;
    top: -40px;
    width: 35px;
    border-radius: 50%;
    height: 35px;
    background: #f7f7f7;
    cursor: pointer;
    transform: scale(0);
}
.chat-container.show .close-chat {
    animation: scaleIn 0.15s ease-in-out 0.3s 1 normal forwards;
}
.live-chat-typing {
    font-style: italic;
    font-size: 11px;
    padding-left: 10px;
    background: rgb(255, 255, 255);
    margin-bottom: 0;
}
.close-chat svg {
    position: relative;
    left: 9px;
    top: 6px;
    width: 15px;
}
.open-chat {
    position: fixed;
    width: 70px;
    right: 50px;
    bottom: 25px;
    cursor: pointer;
    z-index: 900;
    transform: scale(0);
}
.open-chat.hide {
    display: none;
}
.open-chat.show {
    animation: scaleIn 0.15s ease-in-out 0.15s 1 normal forwards;
}
@keyframes scaleIn {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}
.live-delete-message {
    position: absolute;
    left: 46%;
    margin-top: 3px;
}
.delete-message {
    display: block;
    margin-top: -33px;
    margin-left: -48px;
}
.delete-message i {
    font-size: 19px;
}
.progress {
    height: 17px;
    margin: 0;
    overflow: visible;
    margin-top: 10px;
    border-radius: 50px;
    background: #eaedf3;
    box-shadow: inset 0 10px 10px rgba(244, 245, 250, 0.9);
}
.progress .progress-bar {
    border-radius: 50px;
}
.progress .progress-value {
    position: relative;
    left: -45px;
    top: 4px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
}
.progress-bar.active {
    animation: reverse progress-bar-stripes 0.4s linear infinite, animate-positive 2s;
}
@-webkit-keyframes animate-positive {
    0% {
        width: 0%;
    }
}
@keyframes animate-positive {
    0% {
        width: 0%;
    }
}
.wrapper {
    position: relative;
    left: 50%;
    width: var(--wrapper);
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}
.chatcontainer {
    position: relative;
    top: 36%;
    left: 50%;
    height: 75%;
    background-color: var(--white);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.chatcontainer .left {
    overflow-x: hidden;
    height: 448px;
    float: left;
    width: 42.6%;
    border: 1px solid var(--light);
    background-color: var(--white);
}
.chatcontainer .left .top {
    position: relative;
    width: 100%;
    height: 96px;
    padding: 20px 40px 0 34px;
}
.chatcontainer .left input {
    float: left;
    width: 100%;
    height: 42px;
    padding: 0 15px;
    border: 1px solid var(--light);
    background-color: #eceff1;
    border-radius: 21px;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 400;
}
.chatcontainer .left input:focus {
    outline: none;
}
.chatcontainer .left a.search {
    display: block;
    float: left;
    width: 42px;
    height: 42px;
    margin-left: 10px;
    border: 1px solid var(--light);
    background-color: var(--blue);
    background-image: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/382994/name-type.png);
    background-repeat: no-repeat;
    background-position: top 12px left 14px;
    border-radius: 50%;
}
.chatcontainer .left .people {
    margin-left: -1px;
    border-right: 1px solid var(--light);
    border-left: 1px solid var(--light);
    width: calc(100% + 2px);
}
.chatcontainer .left .people .person {
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 12px 0 0;
    line-height: 25px;
    cursor: pointer;
    background-color: var(--white);
}
.chatcontainer .left .people .person:after {
    position: absolute;
    bottom: 0;
    left: 50%;
    display: block;
    width: 80%;
    height: 2px;
    content: "";
    background-color: var(--light);
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}
.chatcontainer .left .people .person img {
    float: left;
    width: 40px;
    height: 40px;
    margin-right: 12px;
    border-radius: 50%;
}
.chatcontainer .left .people .person .name {
    font-size: 14px;
    line-height: 22px;
    color: var(--dark);
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 600;
    text-transform: capitalize;
}
.chatcontainer .left .people .person .time {
    font-size: 14px;
    padding: 0 0 0 50px;
    color: var(--grey);
    background-color: var(--white);
    display: block;
}
.chatcontainer .left .people .person .preview {
    font-size: 14px;
    display: inline-block;
    overflow: hidden !important;
    width: 70%;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: var(--grey);
    padding-left: 52px;
}
.chatcontainer .left .people .person.active,
.chatcontainer .left .people .person:hover {
    margin-top: -1px;
    margin-left: -1px;
    padding-top: 13px;
    border: 0;
    background-color: var(--blue);
    width: calc(100% + 2px);
    padding-left: 0;
}
.chatcontainer .left .people .person.active span,
.chatcontainer .left .people .person:hover span {
    color: var(--white);
    background: transparent;
}
.chatcontainer .left .people .person.active:after,
.chatcontainer .left .people .person:hover:after {
    display: none;
}
.chatcontainer .right {
    position: relative;
    float: left;
    width: 57.4%;
    height: 100%;
}
.chatcontainer .right .top {
    width: 100%;
    height: 47px;
    padding: 15px 29px;
    background-color: #eceff1;
}
.chatcontainer .right .top span {
    font-size: 15px;
    color: var(--grey);
}
.chatcontainer .right .top span .name {
    color: var(--dark);
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 600;
}
.chatcontainer .right .chat {
    position: relative;
    overflow: hidden;
    padding: 15px 35px 0;
    border-width: 1px 1px 1px 0;
    border-style: solid;
    border-color: var(--light);
    height: 500px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
}
.chatcontainer .right .chat.active-chat {
    display: block;
    display: -webkit-box;
    display: flex;
}
.chatcontainer .right .chat.active-chat .bubble {
    -webkit-transition-timing-function: cubic-bezier(0.4, -0.04, 1, 1);
    transition-timing-function: cubic-bezier(0.4, -0.04, 1, 1);
}
.chatcontainer .right .chat.active-chat .bubble:nth-of-type(1) {
    -webkit-animation-duration: 0.15s;
    animation-duration: 0.15s;
}
.chatcontainer .right .chat.active-chat .bubble:nth-of-type(2) {
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
}
.chatcontainer .right .chat.active-chat .bubble:nth-of-type(3) {
    -webkit-animation-duration: 0.45s;
    animation-duration: 0.45s;
}
.chatcontainer .right .chat.active-chat .bubble:nth-of-type(4) {
    -webkit-animation-duration: 0.6s;
    animation-duration: 0.6s;
}
.chatcontainer .right .chat.active-chat .bubble:nth-of-type(5) {
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
}
.chatcontainer .right .chat.active-chat .bubble:nth-of-type(6) {
    -webkit-animation-duration: 0.9s;
    animation-duration: 0.9s;
}
.chatcontainer .right .chat.active-chat .bubble:nth-of-type(7) {
    -webkit-animation-duration: 1.05s;
    animation-duration: 1.05s;
}
.chatcontainer .right .chat.active-chat .bubble:nth-of-type(8) {
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
}
.chatcontainer .right .chat.active-chat .bubble:nth-of-type(9) {
    -webkit-animation-duration: 1.35s;
    animation-duration: 1.35s;
}
.chatcontainer .right .chat.active-chat .bubble:nth-of-type(10) {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
}
.chatcontainer .right .write {
    border: 1px solid var(--light);
    background-color: #eceff1;
    border-radius: 5px;
    display: flex;
}
.chatcontainer .right .write textarea {
    font-size: 16px;
    float: left;
    width: 88%;
    height: 40px;
    padding: 6px 10px;
    color: var(--dark);
    border: 0;
    margin-right: 11px;
    outline: none;
    background-color: #eceff1;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 400;
}
.chatcontainer .right .write .write-link.smiley:before {
    display: inline-block;
    float: left;
    width: 20px;
    height: 42px;
    content: "";
    background-image: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/382994/smiley.png);
    background-repeat: no-repeat;
    background-position: center;
}
.write-link {
    border-radius: 4px;
    padding: 10px 5px;
    font-weight: 700;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}
.write-link:hover {
    color: #fff;
}
.file-uploads {
    padding: 0 10px;
}
.chatcontainer .right .bubble {
    font-size: 14px;
    position: relative;
    display: inline-block;
    clear: both;
    margin-bottom: 8px;
    padding: 8px 10px;
    vertical-align: top;
    border-radius: 5px;
}
.chatcontainer .right .bubble:before {
    position: absolute;
    top: 19px;
    display: block;
    width: 8px;
    height: 6px;
    content: "\00a0";
    -webkit-transform: rotate(29deg) skew(-35deg);
    transform: rotate(29deg) skew(-35deg);
}
.chatcontainer .right .bubble.you {
    float: left;
    color: var(--white);
    background-color: var(--blue);
    align-self: flex-start;
    -webkit-animation-name: slideFromLeft;
    animation-name: slideFromLeft;
}
.chatcontainer .right .bubble.you:before {
    left: -3px;
    background-color: var(--blue);
}
.chatcontainer .right .bubble.me {
    float: right;
    color: var(--dark);
    background-color: #eceff1;
    align-self: flex-end;
    -webkit-animation-name: slideFromRight;
    animation-name: slideFromRight;
}
.chatcontainer .right .bubble.me:before {
    right: -3px;
    background-color: #eceff1;
}
.chatcontainer .right .conversation-start {
    position: relative;
    width: 100%;
    margin-bottom: 27px;
    text-align: center;
}
.chatcontainer .right .conversation-start span {
    font-size: 14px;
    display: inline-block;
    color: var(--grey);
}
.chatcontainer .right .conversation-start span:before,
.chatcontainer .right .conversation-start span:after {
    position: absolute;
    top: 10px;
    display: inline-block;
    width: 30%;
    height: 1px;
    content: "";
    background-color: var(--light);
}
.chatcontainer .right .conversation-start span:before {
    left: 0;
}
.chatcontainer .right .conversation-start span:after {
    right: 0;
}
@keyframes slideFromLeft {
    0% {
        margin-left: -200px;
        opacity: 0;
    }
    100% {
        margin-left: 0;
        opacity: 1;
    }
}
@-webkit-keyframes slideFromLeft {
    0% {
        margin-left: -200px;
        opacity: 0;
    }
    100% {
        margin-left: 0;
        opacity: 1;
    }
}
@keyframes slideFromRight {
    0% {
        margin-right: -200px;
        opacity: 0;
    }
    100% {
        margin-right: 0;
        opacity: 1;
    }
}
@-webkit-keyframes slideFromRight {
    0% {
        margin-right: -200px;
        opacity: 0;
    }
    100% {
        margin-right: 0;
        opacity: 1;
    }
}
.chat-modal .modal-lg {
    max-width: 1100px;
}
.chat-spinner {
    position: absolute !important;
    left: 50%;
    top: 50%;
    z-index: 999;
    bottom: 50%;
}
.alert-nohide {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}
.label {
    padding: 4px;
}
.label-success {
    background-color: #1ec38b;
    color: #fff;
}
.label-warning {
    background-color: #f91;
    color: #fff;
}
.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.topics {
    border: solid 1px #ccc;
    padding: 10px;
}
.pull-right {
    float: right;
}
.post-header.forums-header {
    padding: 17px 15px;
    display: flex;
    text-align: left;
}
.post-header {
    display: flex;
    justify-content: space-between;
    background: #f7f8f9;
    padding: 17px 30px;
    border: 1px solid #eaeeef;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}
ul.forum-titles {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
    justify-content: flex-end;
}
ul.forum-titles .forum-topic-count,
ul.forum-titles .forum-reply-count {
    flex-basis: 25%;
}
ul.forum-titles li {
    text-align: right;
    font-size: 14px;
}
ul.forum-titles .forum-topic-count,
ul.forum-titles .forum-reply-count {
    flex-basis: 25%;
}
ul.forum-titles .forum-freshness {
    flex-basis: 50%;
}
.bb-radius {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    overflow: hidden;
    box-shadow: 0 3px 6px 0 rgba(4, 73, 89, 0.06);
}
.community-post.style-two:hover {
    background: #f7f9fa;
    transform: translateX(0);
    box-shadow: none;
    border-color: #f7f9fa;
}
.community-post.style-two:not(:last-child) {
    border-bottom: 1px solid #f2f3f4;
}
.community-post.style-two {
    margin-bottom: 0;
    border-radius: 0;
    box-shadow: none;
    position: relative;
}
.community-post:hover {
    box-shadow: 0 24px 40px 0 rgba(2, 47, 57, 0.12);
    border-color: #eef3f6;
    transform: translateX(10px);
}
.community-post.forum-item {
    padding: 23px 15px;
}
.community-post {
    border-radius: 6px;
    background-color: #fff;
    box-shadow: 0 2px 8px 0 rgba(2, 47, 57, 0.1);
    padding: 23px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
    border: 1px solid transparent;
}
.community-post .post-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.community-post .post-content .author-avatar.forum-icon {
    border-radius: 0;
}
.community-post .post-content .author-avatar {
    width: 40px;
    margin-right: 25px;
    border-radius: 50%;
    overflow: hidden;
    height: 40px;
}
.community-post .post-content .entry-content {
    flex: 2;
}
.community-post.style-two .post-content .entry-content .post-title {
    display: inline-block;
    margin-right: 10px;
}
.community-post.style-two .entry-content .post-title {
    font-size: 16px;
}
.community-post .post-content .entry-content .post-title {
    font-size: 18px;
    font-weight: 500;
    color: #1d2746;
    margin-bottom: 0;
    line-height: 1.7;
}
.community-post .post-content .entry-content .post-title a:hover {
    color: #0cbcb7;
}
.community-post .post-content .entry-content .post-title a {
    color: #1d2746;
}
.community-post .post-content .entry-content p {
    margin: 0;
}
.community-post.forum-item .post-content p {
    font-size: 14px;
    line-height: 1.3;
}
.community-post.style-two:not(:last-child) {
    border-bottom: 1px solid #f2f3f4;
}
.post-header .category-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}
.post-header .category-menu li:not(:last-child) {
    margin-right: 10px;
}
.post-header .category-menu li {
    display: inline-block;
}
.post-header .category-menu .short-by {
    padding: 10px 20px;
}
.post-header .category-menu .short-by a.active-short {
    color: #1d2746;
}
.post-header .category-menu .short-by a {
    padding: 7px 0 7px 20px;
    position: relative;
    color: #838793;
    font-size: 14px;
}
.post-header .category-menu .title {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    background: #f7f8f9;
    border-bottom: 1px solid #e6eeef;
    padding: 14px 20px 11px;
    line-height: 1;
    color: #6b707f;
    position: relative;
}
.post-header .category-menu .dropdown-toggle {
    position: relative;
    background: transparent;
    box-shadow: none;
    border: 0;
    color: #6b707f;
    padding: 0 15px;
    font-size: 14px;
}
.post-header .category-menu .dropdown-toggle:after {
    content: "\f3d0";
    font-family: "Ionicons";
    border: 0;
    position: absolute;
    transform: translateY(-58%);
}
.post-header .category-menu li:nth-child(4) .dropdown-menu,
.post-header .category-menu li:nth-child(3) .dropdown-menu {
    right: -11px;
    left: auto !important;
}
.post-header .category-menu li .dropdown-menu {
    top: 12px !important;
    transform: translate3d(0, 23px, 0) !important;
}
.post-header .category-menu .dropdown-menu {
    border: 1px solid #e6eeef;
    background: #fff;
    box-shadow: 0 30px 40px 0 rgba(4, 73, 89, 0.1);
    padding: 0;
    width: 260px;
    animation: slideDown 0.12s cubic-bezier(0, 0.1, 0.1, 1) backwards;
}
.post-header .category-menu .short-by a.active-short:before {
    content: "\f122";
    position: absolute;
    font-family: "Ionicons";
    left: 0;
    top: 7px;
    color: #0abe76;
    font-size: 14px;
}
.post-header .category-menu .short-by a:hover {
    background: transparent;
    color: #1d2746;
}
.post-header .category-menu .btn-secondary:not(:disabled):not(.disabled).active,
.post-header .category-menu .btn-secondary:not(:disabled):not(.disabled):active,
.post-header .category-menu .show > .btn-secondary.dropdown-toggle {
    background-color: transparent;
    border: none;
    color: #6b707f;
    box-shadow: none;
}
.community-post.style-two .meta {
    margin: 0;
    padding: 0;
    list-style: none;
}
.community-post.style-two .meta li {
    display: inline-block;
    margin-right: 15px;
    color: #838793;
    font-size: 14px;
}
.community-post.style-two .meta li a {
    font-size: 14px;
    color: #838793;
}
.community-post .post-meta-wrapper .post-meta-info {
    margin: 0;
    padding: 0;
    list-style: none;
}
.community-post.style-two .post-meta-wrapper .post-meta-info li:not(:last-child) {
    margin-right: 30px;
}
.community-post .post-meta-wrapper .post-meta-info li:not(:last-child) {
    margin-right: 50px;
}
.community-post .post-meta-wrapper .post-meta-info li {
    display: inline-block;
}
.community-post .post-meta-wrapper .post-meta-info li a {
    display: block;
    color: #868b99;
}
.community-post.style-two .post-meta-wrapper .post-meta-info li i {
    transition: all 0.3s ease-in-out;
}
.community-post .post-meta-wrapper .post-meta-info li a i {
    margin-right: 10px;
}
.pagination-wrapper {
    background: #fff;
    padding: 23px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    border-radius: 6px;
    box-shadow: 0 3px 6px 0 rgba(4, 73, 89, 0.06);
}
.pagination-wrapper .pagination {
    margin: 0;
    padding: 0;
    list-style: none;
}
.pagination-wrapper .pagination li:not(:last-child) {
    margin-right: 3px;
}
.pagination-wrapper .pagination li {
    display: inline-block;
}
.community-post.style-two .post-content .cat-wrap {
    display: inline-block;
    vertical-align: 3px;
}
.badge.color-green {
    background: #22936d;
    border-color: #07734f;
}
.badge {
    font-size: 12px;
    background: #8152e0;
    padding: 2px 5px 0;
    color: #fff;
    border-radius: 3px;
    margin-right: 5px;
    display: inline-block;
    line-height: 1.45;
    border-bottom: 1px solid #6030c0;
    vertical-align: middle;
    font-weight: 500;
    height: 22px;
}
.badge:hover {
    color: #fff;
}
.all-answers .forum-comment {
    margin-top: 30px;
}
.forum-post-top {
    display: flex;
}
.forum-post-top .forum-post-author .author-name {
    font-size: 16px;
    font-weight: 500;
    color: #1d2746;
}
.forum-post-top .forum-post-author .forum-author-meta {
    display: flex;
}
.forum-post-top .forum-post-author .forum-author-meta .author-badge:first-child {
    margin-right: 20px;
}
.forum-post-top .forum-post-author .forum-author-meta span,
.forum-post-top .forum-post-author .forum-author-meta a {
    color: #838793;
    font-size: 14px;
}
.forum-post-top .forum-post-author .forum-author-meta .author-badge i {
    margin-right: 5px;
    color: #838793;
}
.all-answers .forum-comment .comment-content {
    margin-top: 10px;
    border-bottom: 1px solid #e8ecee;
    padding-bottom: 28px;
}
.all-answers .forum-comment .comment-content p {
    font-size: 14px;
    line-height: 1.5;
}
.all-answers .forum-comment .comment-content .action-btns {
    margin-top: 20px;
}
.action-button-container.action-btns {
    justify-content: flex-start;
    margin-top: 30px;
}
.action-button-container {
    display: flex;
    justify-content: flex-end;
}
.action-button-container.action-btns .action_btn {
    height: 30px;
    font-size: 14px;
    line-height: 30px;
    padding: 0 15px;
    font-weight: 400;
}
.action-button-container .reply-btn {
    margin-right: 10px;
}
.action-button-container .ask-btn {
    box-shadow: none;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 28px;
    margin-top: 2px;
}
.action_btn {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    box-shadow: 0 20px 30px 0 rgba(12, 118, 142, 0.24);
    border-radius: 4px;
    background: #10b3d6;
    display: inline-block;
    padding: 14px 28px;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
        box-shadow 0.18s ease-in-out;
}
.action-button-container .too-btn {
    background: #fff;
    border: 1px solid #d0d8dc;
    color: #1d2746;
}
.action-button-container .ask-btn:hover {
    background: #16c9f0;
}
.child-comment {
    margin-left: 100px;
}
blockquote {
    padding-left: 20px;
    padding-right: 8px;
    border-left-width: 5px;
    font-style: italic;
    font-family: Georgia, Times, "Times New Roman", serif;
    border-left-style: solid;
    border-left-color: #ccc;
}
.comments-links nav {
    display: inline-block;
}
.wp-post-image {
    width: 100%;
}
article .post-readmore .btn-primary,
article.post .post-readmore .btn-primary {
    border: 2px solid;
    background-color: #0063d1;
    padding: 0.786em 3em;
    font-weight: 400;
    font-size: 0.875em;
    color: #fff;
    margin-top: 25px;
}
article .entry-header {
    padding-bottom: 0;
    margin-bottom: 23px;
    overflow: hidden;
}
article .entry-header .date-meta {
    font-size: 72px;
    font-weight: 500;
    height: 90px;
    width: 110px;
    float: left;
    line-height: 68px;
    color: #0063d1;
}
article .entry-header .entry-contain:before {
    content: "";
    position: absolute;
    width: 1px;
    top: 4px;
    left: 0;
    bottom: 5px;
    background: #eee;
}
article .entry-header .entry-contain:before {
    content: "";
    position: absolute;
    width: 1px;
    top: 4px;
    left: 0;
    bottom: 5px;
    background: #eee;
}
article .entry-header .entry-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 37px;
    margin: 0 0 7px;
}
article .entry-header .entry-title a {
    display: block;
    font-weight: 500;
    width: 100%;
    overflow: hidden;
    color: #2f333a;
}
article .entry-header .entry-meta {
    margin: 0;
}
article .entry-header .entry-meta li {
    border-right: 1px solid #eee;
    padding-right: 23px;
    margin-right: 20px;
    list-style: none;
    display: inline-block;
    line-height: 18px;
    margin-top: 10px;
}
article .entry-header .entry-meta li span {
    color: #ccc;
    font-size: 12px;
    font-weight: 500;
    display: block;
    line-height: 18px;
}
article .entry-header .entry-meta li a,
article .entry-header .entry-meta li span.value {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 12px;
    display: inline-block;
    color: #7a7a7a;
}
article .entry-header .entry-meta li:last-child {
    padding-right: 0;
    border-right: 0;
    margin-right: 0;
}
article .entry-header .entry-meta li a,
article .entry-header .entry-meta li span.value {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 12px;
    display: inline-block;
    color: #7a7a7a;
}
article.post.format-video .post-formats-wrapper {
    position: relative;
    height: 0;
    padding-bottom: 56.25%;
}
article .content-inner {
    display: inline-block;
    width: 100%;
    padding-bottom: 100px;
}
article.post.format-video .post-formats-wrapper {
    position: relative;
    height: 0;
    padding-bottom: 56.25%;
}
article .post-formats-wrapper {
    overflow: hidden;
    margin-bottom: 30px;
}
article .entry-header .entry-contain {
    position: relative;
    padding-left: 30px;
    width: calc(100% - 110px);
    width: -webkit-calc(100% - 110px);
    width: -moz-calc(100% - 110px);
    float: right;
}
article .entry-header .date-meta i {
    font-size: 13px;
    text-transform: uppercase;
    font-style: normal;
    font-weight: 500;
    display: block;
    line-height: 20px;
    margin-top: 3px;
}
article .entry-header .entry-meta .author {
    margin: 0;
}
article .entry-summary {
    clear: both;
}
article .entry-header {
    padding-bottom: 0;
    margin-bottom: 23px;
    overflow: hidden;
}
nav.navigation.post-navigation {
    margin-bottom: 4em;
}
nav.navigation {
    margin: 0 0 1em;
}
nav.navigation .nav-previous {
    float: left;
    width: 50%;
}
.site-main nav.navigation .nav-next {
    float: right;
    text-align: right;
    width: 50%;
}
.post-navigation .nav-links .nav-previous,
.post-navigation .nav-links .nav-next {
    width: 48%;
}
.post-navigation .nav-links .nav-previous {
    float: left;
}
nav.navigation.post-navigation .nav-next a,
nav.navigation.post-navigation .nav-previous a {
    padding: 0.618047em 0;
}
nav.navigation .nav-previous a,
nav.navigation .nav-next a {
    display: inline-block;
    transition: all, ease, 0.3s;
    padding: 0.6180469716em 1em;
    border-radius: 3px;
}
.post-navigation .nav-links .nav-previous a,
.post-navigation .nav-links .nav-next a {
    color: #626060;
}
.post-navigation .nav-links {
    display: flex;
}
.post-navigation .nav-previous h5,
.post-navigation .nav-next h5 {
    margin: 0;
}
.post-navigation {
    padding-top: 80px;
}
.show-chat-users {
    right: 0px !important;
}
.chat-users {
    position: fixed;
    min-width: 300px;
    right: -300px;
    top: 70px;
    background: #fff;
    text-align: left;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.5s ease;
    z-index: 1111;
}
.avatar.avatar-online:before {
    background: #44a675;
}
.avatar.avatar-away:after,
.avatar.avatar-busy:after,
.avatar.avatar-offline:after,
.avatar.avatar-online:after {
    content: "";
    position: absolute;
    display: block;
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    top: 0;
    right: 0;
    border: 3px solid #fff;
}
.media .media-body h6 {
    margin-bottom: 4px;
}
.chat-users .media-body h6 {
    text-transform: capitalize;
}
.not-paid-coach {
    position: fixed;
    width: 70px;
    right: 50px;
    bottom: 25px;
    cursor: pointer;
    z-index: 900;
    transform: scale(0);
}
.not-paid-coach.show {
    animation: scaleIn 0.15s ease-in-out 0.15s 1 normal forwards;
}
.avatar img,
.avatar span {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
.p-0 {
    padding: 0 !important;
}
.users-close-btn {
    bottom: 0;
    right: 0;
    padding: 9px 20px;
    float: right;
}
.chat-users li {
    cursor: pointer;
}
.chat-message .card .card-body .card-text {
    font-size: 13px;
    font-weight: 400;
    color: #747373;
}
.chat-room.small-chat {
    position: fixed;
    bottom: 0;
    width: 20rem;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    margin-right: 20px;
}
.white {
    background-color: #fff !important;
}
.chat-room.small-chat .heading {
    height: 2.1rem;
}
.chat-room.small-chat .profile-photo img.avatar {
    width: 2rem;
    height: 2rem;
}
.chat-room img.avatar {
    width: 3rem;
    height: 3rem;
}
.chat-room.small-chat .profile-photo .state {
    position: relative;
    top: -0.5rem;
    left: auto;
    z-index: 2;
    display: block;
    width: 0.65rem;
    height: 0.65rem;
    margin-left: 1.35rem;
    background-color: #007e33;
    border: 0.1rem solid #fff;
    border-radius: 50%;
}
.chat-room.small-chat .heading .data {
    line-height: 1.5;
}
.chat-room.small-chat .heading .data .name {
    text-transform: capitalize;
    font-size: 0.8rem;
}
.chat-room.small-chat .heading .data .activity {
    font-size: 0.75rem;
}
.chat-room.small-chat .icons {
    padding-top: 0.45rem;
}
.grey-text {
    color: #9e9e9e !important;
}
a:not([href]):not([tabindex]),
a:not([href]):not([tabindex]):focus,
a:not([href]):not([tabindex]):hover {
    color: inherit;
    text-decoration: none;
}
.chat-room.small-chat .my-custom-scrollbar {
    position: relative;
    height: 18rem;
    overflow: auto;
}
.chat-room.small-chat .my-custom-scrollbar > .card-body {
    height: 18rem;
}
.chat-room.small-chat .my-custom-scrollbar > .card-body .chat-message .media img {
    width: 3rem;
}
.chat-room.small-chat .my-custom-scrollbar > .card-body .chat-message .media .media-body p {
    font-size: 0.7rem;
}
.chat-room.small-chat .my-custom-scrollbar > .card-body .chat-message .media .media-body p {
    font-size: 0.7rem;
}
.z-depth-0 {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}
.chat-message .card .card-body .card-text {
    font-size: 13px;
    font-weight: 400;
    color: #747373;
}
.chat-room.small-chat .my-custom-scrollbar > .card-body .chat-message .message-text {
    margin-left: 1rem;
}
.card-footer:last-child {
    border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}
.chat-room.small-chat .card-footer .form-control {
    padding: 0.375rem 0 0.43rem 0;
    font-size: 0.9rem;
    border: none;
}
.direct-chat-timestamp {
    color: #999;
    display: block;
    margin-bottom: 2px;
    font-size: 12px;
}
.direct-chat-text:after,
.direct-chat-text:before {
    position: absolute;
    right: 100%;
    top: 15px;
    border: solid transparent;
    border-right-color: #d2d6de;
    content: " ";
    height: 0;
    width: 0;
    pointer-events: none;
}
.direct-chat-text:after {
    border-width: 7px;
    margin-top: -5px;
}
.bg-light .direct-chat-text:after {
    border-left-color: #f8f9fa;
}
.bg-primary .direct-chat-text:after {
    border-left-color: #007bff;
}
.bg-primary .direct-chat-text:after,
.bg-primary .direct-chat-text:before {
    right: auto;
    left: 100%;
    border-right-color: transparent;
    border-left-color: #007bff;
}
.pull-right {
    float: right;
}
.pull-left {
    float: left;
}
.chat-wrapper {
    width: 40%;
    position: fixed;
    right: 2%;
    z-index: 1;
    background-color: #fff;
    top: 23%;
    border: solid 1px #ccc;
}
.blog-area p {
    font-size: 17px;
}
.package_price {
    text-decoration: line-through;
}
.event_title__3C2PA {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 10px;
}
.event_content__2fB-4 {
    overflow: hidden;
}
.event_calendar__2x4Hv {
    padding: 10px 0;
    text-align: center;
    float: left;
    margin-right: 18px;
}
.event_month__S8D_o {
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 15px;
    line-height: normal;
}
.event_date__2Z7TH {
    display: block;
    font-size: 24px;
    color: #485273;
    line-height: normal;
}
.event_body__BfZIC {
    padding: 25px 20px 38px;
}
.event_body__BfZIC {
    border: 1px solid #e7e7ed;
    margin-bottom: 1px;
}
.event-status {
    position: absolute;
    z-index: 1;
    top: 20px;
    left: 20px;
    font-size: 12px;
    text-transform: uppercase;
    list-style: none;
    margin: 0;
    color: #fff;
    background: #de302f;
    padding: 7px 20px;
    border-radius: 25px;
    font-weight: 500;
}
.event-price {
    position: absolute;
    z-index: 1;
    top: 20px;
    right: 20px;
    font-size: 12px;
    text-transform: uppercase;
    list-style: none;
    margin: 0;
    color: #fff;
    padding: 7px 20px;
    border-radius: 25px;
    font-weight: 500;
    background: #de302f;
}
.event_inner {
    box-shadow: #ddd 0 0 8px 5px;
}
.list-none {
    margin: 0;
    padding: 0;
    list-style: none;
}
.event_meta__CFFPg {
    font-size: 13px;
    color: #9ea6ba;
}
.event_content__2fB-4 ul li {
    width: 100%;
    display: inline-block;
    margin: 0;
    float: left;
    font-size: 13px;
    color: #9ea6ba;
    line-height: 1.78;
}
.text-ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.event_meta__CFFPg span {
    margin-right: 20px;
    margin-bottom: 5px;
    color: #777;
}
.event_meta__CFFPg .fa {
    color: #de302f;
}
.event_meta__CFFPg .fa {
    margin-right: 8px;
    color: #de302f;
}
.color-primary {
    color: #de302f !important;
}
.camp_date {
    background: #0cbcb7;
    float: left;
    width: 25%;
    height: 180px;
    position: relative;
    color: #fff;
}
.camp_date .date {
    font-family: Oswald;
    text-align: center;
}
.camp_date .day {
    float: left;
    font-size: 60px;
    font-weight: 500;
    letter-spacing: -3px;
    line-height: 60px;
    margin-top: 20px;
    position: relative;
    width: 100%;
    margin-left: -6px;
    margin-bottom: 2px;
}
.camp_date .suffix {
    font-size: 16px;
    letter-spacing: 0;
    position: absolute;
    text-transform: uppercase;
    top: -17px;
}
.camp_days {
    background: none repeat scroll 0 0 #0cbcb7;
    bottom: 0;
    font-size: 18px;
    padding: 8px 5px 4px;
    position: absolute;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
    line-height: 18px;
}
.camps_item:hover .camp_wrapper {
    cursor: pointer;
}
.camp_wrapper {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 30px 20px;
    float: left;
    width: 75%;
    height: 160px;
}
.camp_overview {
    font-size: 20px;
    font-weight: 300;
    color: #000;
    line-height: 28px;
}
.camp_overview h2 {
    margin-bottom: 10px;
}
.camp_overview h2 {
    font-size: 24px !important;
    text-transform: uppercase;
    font-weight: 400 !important;
    line-height: 34px;
    color: #000;
    margin-bottom: 0;
    margin-right: 10px;
    font-family: Oswald;
}
.camp_overview h2 span {
    font-size: 22px;
    padding-right: 5px;
    display: block;
    font-weight: 300;
}
.camp_wrapper .camp_breakdown,
.camp_wrapper .camp_details {
    display: none;
}
.camps_item {
    display: inline-block;
    position: relative;
    overflow: hidden;
    height: 180px;
    box-shadow: #ddd 0 0 8px 5px;
    color: white !important;
    margin-bottom: 20px !important;
    width: 100%;
}
.camp_date .month {
    display: block;
    font-size: 36px;
    text-transform: uppercase;
    font-weight: 700;
    font-family: Oswald;
}
.dash-content {
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: #ddd 0 0 3px 2px;
    padding: 10px;
    margin-top: 40px;
    margin-bottom: 40px;
}
.page-header {
    display: block;
    text-align: center;
    padding-bottom: 50px;
}
.page-header .form-check-inline {
    margin-top: 20px;
}
.section-header {
    border-bottom: 1px solid #ccc;
    padding: 23px 16px 8px 0;
}
.section-header h2,
.section-header p {
    margin: 0;
    padding-left: 1.25rem;
}
.camp-btn {
    display: block !important;
    margin: 0 auto;
}
.form-check {
    padding-left: 0;
}
.radio-grid {
    display: grid;
}
.payment-options {
    padding: 10px 0;
    text-align: left;
    padding: 25px;
    margin-top: 50px;
    border: 1px solid #ddd;
    border-radius: 3px;
}
.payment-options h4 {
    margin-bottom: 0;
}
.payment-options .custom-checkbox {
    line-height: 40px;
    width: 100%;
}
.payment-options .custom-checkbox input[type="radio"] {
    vertical-align: middle;
}
.custom-checkbox .sm-heading {
    display: inline-block;
    font-size: 12px;
}
.payment-options .sm-heading {
    border-bottom: none;
    line-height: 1;
    margin-left: 0;
    width: auto;
}
.payment-options .custom-checkbox .card-options {
    display: inline-block;
    float: right;
}
.card-options img {
    margin: 0 0 0 6px;
}
.booking-confirmation-page .ion-android-checkmark-circle {
    color: #23b35f;
}
.booking-confirmation-page .ion-close-circled {
    color: red;
}
.booking-confirmation-page i {
    font-size: 140px;
    line-height: 1.1;
}
.booking-confirmation-page {
    text-align: center;
}
.booking-confirmation-page h2 {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
    display: block;
}
.booking-confirmation-page p {
    font-size: 20px;
    display: block;
    margin-bottom: 30px;
}
.booking-confirmation-page a.button {
    padding: 11px 35px;
    background-color: #eee;
    color: #444;
    font-weight: 600;
    font-size: 16px;
}
/* Global Dropdown Fixes - Prevent Text Cutoff Issues */
select.form-control, 
.form-select,
select.form-control-sm,
select.form-control-lg {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23495057' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px 12px;
    padding-right: 45px !important;
    min-width: 0;
    width: 100%;
    min-height: 44px;
    line-height: 1.4;
    cursor: pointer;
}

/* Ensure dropdown options are properly sized */
select.form-control option,
.form-select option,
select.form-control-sm option,
select.form-control-lg option {
    padding: 10px 15px;
    background: white;
    color: #495057;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
    font-size: 0.95rem;
}

/* Fix for Bootstrap select containers */
.input-group select.form-control {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

/* Better column handling for filter layouts */
.filter-form .row {
    margin-left: -5px;
    margin-right: -5px;
}

.filter-form .row > [class*="col-"] {
    padding-left: 5px;
    padding-right: 5px;
}

/* Responsive dropdown improvements */
@media (max-width: 1200px) {
    /* Give more space to dropdowns on smaller screens */
    .col-lg-2:has(select.form-control) {
        flex: 0 0 20%;
        max-width: 20%;
    }
    
    .col-lg-3:has(select.form-control) {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

@media (max-width: 992px) {
    select.form-control,
    .form-select {
        font-size: 0.95rem;
        padding: 12px 40px 12px 15px !important;
        background-size: 16px 12px;
        background-position: right 12px center;
        min-height: 46px;
    }
}

@media (max-width: 768px) {
    select.form-control,
    .form-select {
        font-size: 1rem;
        padding: 14px 40px 14px 15px !important;
        background-size: 18px 14px;
        background-position: right 12px center;
        min-height: 50px;
    }
    
    /* Stack filter columns properly */
    .gear-filters .col-md-6,
    .match-filters .col-md-6,
    .team-filters .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    select.form-control,
    .form-select {
        font-size: 0.95rem;
        padding: 12px 35px 12px 12px !important;
        background-size: 16px 12px;
        background-position: right 10px center;
        min-height: 48px;
    }
}

/* Fix dropdown arrow color for different themes */
.bg-dark select.form-control,
.bg-primary select.form-control {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
}

/* Ensure proper spacing in filter forms */
.filter-form .col-6 input,
.filter-form .col-6 select {
    margin-bottom: 0.5rem;
}

/* Fix for long category names and options */
.gear-filters select.form-control,
.match-filters select.form-control,
.team-filters select.form-control {
    min-height: 44px;
    line-height: 1.4;
}

/* Prevent layout breaks with long text */
.col-lg-2 select.form-control,
.col-lg-3 select.form-control,
.col-md-6 select.form-control {
    max-width: 100%;
    word-wrap: break-word;
}
