/*-------------------------------
 BOARDS YO
-------------------------------*/

h1, h2, h3, h4, h5, h1 a, h2 a, h3 a, h4 a, h5 a {
    color: #333;
}

.author #main,
.author .main-content {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.author .main-content {
    padding: 0 20px;
}

.author #content.user-boards {
    width: 100%;
    float: none;
    margin-top: 30px;
}

.author #content.user-boards.user-home {
    width: 1020px;
    float: none;
    margin: 30px auto;
}

.author #content.user-boards.user-home .all-boards {
    padding-top: 25px;
}

.author .board-content {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 0 10px;
    min-height: 400px;
}

.author .user-boards .all-boards {
    width: 100%;
    margin-top: 0; /* Remove margin-top as it might not be needed */
    padding-left: 0px; /* Optional: Add padding for better spacing */
}

.author .user-boards .all-boards.sidebar-visible {
    width: calc(100% - 300px);
}

.author .user-boards .all-boards.sidebar-hidden {
    width: 100%;
    padding-left: 0;
}

.author .board-sidebar {
    width: 300px;
    flex-shrink: 0;
    padding: 20px 20px 20px 0;
    display: none;
}

.board-sidebar.active {
    display: block; /* Show when active */
}

.author .user-boards .board-info h2.board-title {
    font-size: 22px;
    line-height: 26px;
    margin: 0;
    padding: 0 7px;
}

.author .board-sidebar h3 {
    line-height: 30px;
    font-size: 18px;
    margin: 0;
}

.author .board-sidebar p {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 20px;
    color: #666;
}

.author .board-sidebar ul {
    list-style: none;
    padding: 0;
}

.author .board-sidebar ul li {
    background-color: #fff;
    border: 1px solid transparent;
    margin-bottom: 10px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 22px;
    overflow: hidden; /* Ensure child elements don't overflow the border radius */
    position: relative; /* Ensure positioning for the form inside the li */
}

.author .board-sidebar ul .group-item a {
    display: block; /* Make the <a> element take up the entire space */
    color: #333;
    font-weight: 600;
    padding: 8px 18px;
    text-decoration: none; 
}

.author .board-sidebar ul .group-item:hover {
    border: 1px solid #333;
    text-decoration: none;
}

.author .board-sidebar ul .group-item:hover a {
    color: #333;
    font-weight: 600;
    text-decoration: none;
}

.author .group-tab,
.author .share-tab,
.author .settings-tab,
.author .organize-tab {
    color: #333;
    align-items: center;
    appearance: none;
    background: transparent;
    border: 0;
    border-bottom: none;
    display: inline-flex;
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    padding: 8px 16px;
    text-decoration: none;
    white-space: nowrap;
    padding: 5px 7px;
}

.author .group-tab .button-wrap,
.author .share-tab .button-wrap,
.author .settings-tab .button-wrap,
.author .organize-tab .button-wrap {
    display: inline-flex;
    align-items: center;
    border-radius: 5px;
    padding: 3px 12px;
}

.author .group-tab .button-wrap:hover,
.author .share-tab .button-wrap:hover {
    cursor: pointer;
}

.author .group-tab.tab-active .button-wrap {
    background-color: #f7f7f7;
}

.author .group-tab .button-wrap:hover,
.author .share-tab .button-wrap:hover,
.author .settings-tab .button-wrap:hover,
.author .organize-tab .button-wrap:hover {
    background: #f7f7f7;
    text-decoration: none;
    cursor: pointer;
}

.author .board-tabs-wrapper {
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    box-shadow: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author .board-tabs-list {
    align-items: center;
    display: flex;
    gap: 5px;
    flex-grow: 1;
}

.author .board-sidebar ul li.group-item {
    border: 1px solid #ddd; /* Set a distinct border for droppable items */
}

.author .board-sidebar ul li.group-item.over {
    border-color: #438bca;
    background-color: #ecf3fa;
}

.single-bookmark.organize-off .highslide:hover {
    cursor: zoom-in;
}

.ff-groups .single-bookmark.organize-on .highslide:hover {
    cursor: grab; /* Indicate draggable items */
    cursor: -webkit-grab;
}

.single-bookmark.organize-on .highslide:hover {
    cursor: zoom-in;
}


/*.single-bookmark.ui-draggable-disabled {
    cursor: zoom-in;
}*/

.draggable-helper {
    width: 80px;
    height: auto;
    background-color: #fff;
    padding: 5px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Optional for a subtle shadow */
}

.draggable-helper img {
    height: 70px;
    width: 70px;
    margin-bottom: 5px;
}

.helper-text {
    font-size: 12px;
    color: #333;
    line-height: 14px;
}


.switch {
        position: relative;
        display: inline-block;
        width: 28px;
        height: 16px;
        margin-left: 10px;
    }
    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }
    .slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #ccc;
        transition: .4s;
        border-radius: 16px;
    }
    .slider:before {
        position: absolute;
        content: "";
        height: 12px;
        width: 12px;
        left: 2px;
        bottom: 2px;
        background-color: white;
        transition: .4s;
        border-radius: 50%;
    }
    input:checked + .slider {
        background-color: #438bca;
    }
    input:checked + .slider:before {
        transform: translateX(12px);
    }
    .slider.round {
        border-radius: 16px;
    }
    .slider.round:before {
        border-radius: 50%;
    }

.success-pulse {
    animation: success-animation 2s ease-out;
    /*background-color: #5cb85c;*/
    border-color: #198754;
}

@keyframes success-animation {
    0% {
        background-color: #fff;
        border-color: #198754;
        /*box-shadow: 0 0 10px #5cb85c;*/
    }
    100% {
        background-color: #fff;
        border-color: #ccc;
        /*box-shadow: none;*/
    }
}

.author .board-sidebar ul .success-pulse.group-item a {
    color: #198754;
}


.author .group-tab.tab-active,
.author .tab-active,
.author .board-tab {
    border-bottom: none;
}

.author .group-tab.tab-active:hover,
.author .tab-active:hover,
.author .board-tab:hover {
    border-bottom: none;
}

.author .user-boards .board-info h2.board-title {
    font-size: 22px;
    line-height: 26px;
    margin: 0;
    padding: 0 7px;
    display: flex;
    align-items: center; /* Center vertically */
    font-weight: 400;
}

.author .board-subtitle {
    padding: 0 7px;
}

.author .board-subtitle .edit-board-link {
    color: #438bca;
}

.author .breadcrumb-container {
    display: flex;
    align-items: center;
}

.author .breadcrumb-parent {
    font-weight: 400;
    margin-right: 5px; /* Adjust the space between the parent and the caret */
}

.author .breadcrumb-parent:hover {
    text-decoration: underline;
}

.author .caret {
    margin: 0 5px; /* Adjust the space around the caret */
}

.author .breadcrumb-container span {
    font-weight: 400;
}

.group-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.add-group {
    color: #333;
    font-size: 24px;
    text-decoration: none;
    padding: 2px 5px 6px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px; /* Adjust width and height to ensure it's a circle */
    height: 30px;
    line-height: 1;
}

.add-group:hover {
    background-color: #f7f7f7;
    text-decoration: none;
}

#create-group-modal {
    padding: 20px;
    width: 500px;
}

#create-group-modal input[type='text'] {
    width: calc(100% - 22px); /* Adjust width to fit within the form */
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

.option-label {
    margin-bottom: 10px;
    display: block;
}

.os-modal .modal-heading {
    margin: 0 0 10px;
    display: inline-block;
    clear: both;
    width: 100%;
    height: auto;
}


.os-modal .modal-footer {
    display: inline-block;
    height: 37px;
    margin-top: 15px;
    padding-top: 15px;
    clear: both;
    width: 100%;
    height: auto;
    border-top: 1px solid #f2f2f2;
}

.os-modal .modal-btn {
    background-color: #e5e5e5;
    display: inline-flex;
    color: #333;
    font-weight: 700;
    font-size: 16px;
    padding: 7px 10px;
    border-radius: 7px;
    margin: 0 10px 0 0;
    min-height: 36px;
    min-width: 75px;
    width: auto;
    align-items: center;
    justify-content: center;
}

.os-modal .modal-btn .os-spinner {
    margin-left: 0;
}

.os-modal .modal-btn:hover {
    cursor: pointer;
}

.os-modal .btn-saving .os-spinner {
    display: inline-block;
}

.os-modal .modal-btn.disabled-btn {
    pointer-events:none;
    opacity: .5;
}

.author .single-board {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* Adjust the gap to match the margin you had previously */
    width: 100%;
    margin: 20px 0 0 5px;
    /*justify-content: center;*/
}

.author .single-bookmark {
    flex: 0 0 calc(16.66% - 10px);
    height: auto;
    position: relative;
    margin: 0px;
    box-sizing: border-box;
    width: auto;
}

.author .all-boards.sidebar-visible .single-bookmark {
    flex: 0 0 calc(20% - 10px);
}

.author .single-bookmark img {
    width: 100%;
    height: auto;
    min-height: auto;
}



.modal.os-modal {
    z-index: 11001;
    max-width: 700px;
}

.modal.os-modal.delete-modal {
    /*z-index: 11005;*/
    /*max-width: 700px;*/
}

.os-modal .description-textarea {
    width: 95%;
    border: 1px solid #e5e5e5;
    border-radius: 3px;
    margin-right: 5px;
    line-height: 20px;
    resize: none;
    /*font-family: 'open sans';*/
    font-size: 15px;
    padding: 4px 8px;
}

.jquery-modal.blocker.current {
    z-index: 11000;
}

.chosen-container {
    width: 100% !important ;
    min-width: 90% !important;
}

#content.user-boards {
    width: 1020px;
    margin-top: 30px;
}

.user-boards .all-boards {
    display: inline-block;
    width: 100%;
    margin: 50px 0;
}

.board-item-wrap {
    width: 33%;
    float: left;
    text-align: center;
    margin-bottom: 20px;
}

.board-card-wrap {
    width: 300px;
    height: 250px;
    display: inline-block;
    background: #fff;
    border-radius: 8px;
    vertical-align: top;
    text-align: left;
    position: relative;
}

.board-card-wrap:hover {
    /*opacity: .8;*/
    /*border: 1px solid #438bca;*/
}

.board-card-wrap:hover h3 {
    color: #438bca;
}

.board-preview-thumb {
    width: 33.333333%;;
    display: inline-block;
    margin: 0;
    float: left;
}

.board-preview-thumb img {
    object-fit: cover;
    width: 100px;
    height: 100px;
}

.board-preview-thumb:nth-child(1),
.board-preview-thumb:nth-child(1) img {
    border-top-left-radius: 8px;
}
.board-preview-thumb:nth-child(3),
.board-preview-thumb:nth-child(3) img {
    border-top-right-radius: 8px;
}

.board-preview-thumb:nth-child(1) img {
    padding: 0 1px 1px 0;
}
.board-preview-thumb:nth-child(2) img {
    padding: 0 1px 1px 0;
}
.board-preview-thumb:nth-child(3) img {
    padding: 0 0 1px 0;
}
.board-preview-thumb:nth-child(4) img {
    padding: 0 1px 0 0;
}
.board-preview-thumb:nth-child(5) img {
    padding: 0 1px 0 0;
}
.board-preview-thumb:nth-child(6) img {
    padding: 0 0 0 0;
}

.board-card-wrap h3 {
    padding: 13px 16px 15px;;
    font-size: 18px;
    position: absolute;
    bottom: 0;
}

.single-board {
    display: inline-block;
    width: 100%;
    margin: 20px 0;
}

.single-bookmark {
    width: 194px;
    display: inline-block;
    height: auto;
    margin: 5px;
    float: left;
    position: relative;
}

.user-boards .board-info {
    margin: 0 auto;
    padding: 0 5px;
}

.user-boards .board-info h2 {
    font-size: 28px;
    line-height: 26px
}

.user-boards .board-info .board-meta {
    font-weight: 600;
    padding: 0 5px;
}

.user-boards .board-info .board-meta.author-meta {
    display: none;
}

.user-boards .board-info .join-board-cta {
    float: right;
    background-color: #62c462;
    display: inline-block;
    height: 30px;
    line-height: 22px;
    font-weight: 700;
    font-size: 14px;
    padding: 4px 10px;
    border-radius: 7px;
    margin: 5px 0 0 0;
    color: #fff;
}

.user-boards .board-info .join-board-cta:hover {
    background-color: green;
}

.single-bookmark img {
    width: 100%;
    height: auto;
}

.user-boards #author-info h2 {
    display: inline-block;
}

.user-boards #author-info {
    border-bottom: 1px solid rgba(0,0,0,.05);
    padding-bottom: 15px;
    margin: 0 5px;
    clear: both;
}

.single-bookmark .edit-bookmark {
    display: none;
}

.single-bookmark.organize-on:hover .edit-bookmark {
    display: inline-block;
    position: absolute;
    padding: 5px;
    top: 0;
    left: 0;
    margin: 10px;
    background-color: #fff;
    border-radius: 50%;
}

.single-bookmark:hover .edit-bookmark:hover {
    background-color: #f0f0f0;
}
.single-bookmark:hover .edit-bookmark:before {
    display: inline-block;
    content: '';
    background:url('https://officesnapshots.com/wp-content/plugins/os-bookmarks/img/edit-icon.svg');
    width: 18px;
    height: 18px;
    background-size: 15px 15px;
    background-repeat: no-repeat;
    vertical-align: middle;
    background-position: 1px 1px;
}

.board-info .board-title .edit-bookmark.edit-board {
    display: inline-block;
    /*position: absolute;*/
    padding: 5px;
    /*top: 0;
    left: 0;*/
    margin: 10px;
    background-color: #fff;
    border-radius: 50%;
}

.board-info .board-title .edit-bookmark.edit-board:before {
    display: inline-block;
    content: '';
    background:url('https://officesnapshots.com/wp-content/plugins/os-bookmarks/img/edit-icon.svg');
    width: 18px;
    height: 18px;
    background-size: 15px 15px;
    background-repeat: no-repeat;
    vertical-align: middle;
    background-position: 1px 1px;
}

.edit-board-heading {
    margin: 0 0 10px;
    display: inline-block;
    clear: both;
    width: 100%;
    height: auto
}

.edit-board-options {
    margin: 20px 0;
    display: inline-block;
    clear: both;
    width: 100%;
    height: auto
}

.edit-board-options input[type='text'] {
    width: 95%;
    border: 1px solid #e5e5e5;
    border-radius: 3px;
    margin-right: 5px;
    line-height: 20px;
    resize: none;
    /*font-family: 'open sans';*/
    font-size: 15px;
    padding: 4px 8px;
}

.edit-board-buttons {
    display: inline-block;
    height: 37px;
    margin-top: 15px;
    padding-top: 15px;
    clear: both;
    width: 100%;
    height: auto;
    border-top: 1px solid #f2f2f2;
}

.edit-board-buttons .modal-btn {
    background-color: #e5e5e5;
    display: inline-block;
    color: #333;
    font-weight: 700;
    font-size: 16px;
    padding: 7px 10px;
    border-radius: 7px;
    margin: 0 10px 0 0;
}

.edit-board-buttons .btn-right {
    float: right;
}

.single-board .product-listing {
    display: inline-block;
    width: 120px;
    float: left;
    margin: 10px 5px;
}

.single-bookmark .highslide img,
.single-bookmark .highslide:hover img {
    border: 1px solid rgba(0,0,0,.05) !important;
    background: none !important;
}



.author .highslide-wrapper {
     /*width: 100% !important;*/
    /*margin-left: -50px !important;*/
    border: none !important;
    background-color: #333 !important;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.author .highslide-container .highslide-image + div > div:first-child {
    /*width: 300px !important;*/
    background-color: #ffffff;
    height: 600px;
    overflow: scroll;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    top: -1px !important;
}

.author .highslide-caption.photo-sidebar {
    padding: 20px !important;
}

.author .highslide-caption.photo-sidebar h3 {
    margin: 0 5px 20px;
    padding-bottom: 6px;
    border-bottom: 1px solid #f2f2f2;
}

.author .highslide-caption.photo-sidebar p {
    background-color: #f2f2f2;
    border-radius: 50px;
    padding: 5px 15px;
}

.author .photo-sidebar .project-link,
.author .photo-sidebar .product-link {
    display: block;
    padding: 0;
    line-height: 15px;
    margin-bottom: 25px;
}

.author .photo-sidebar .product-link .project-link-text {
    color: #333;
    font-weight: 800;
    margin: 0;
    padding: 0;
    line-height: 24px;
    font-size: 24px;
    letter-spacing: -.5px;
}

.author .photo-sidebar .sidebar-section.product-link:before {
    content: "product";
}

.os-modal .chosen-container .chosen-results li.highlighted {
    background-color: inherit;
  background-image: none;
  color: #555 !important;
}

.os-modal .chosen-container .chosen-results li.active-result.highlighted:hover {
    background-color: #f2f2f2;
  color: #555 !important;
}

.os-modal .wpb-bm {
    width: 100%;
    border: none;
    margin: 0;
    padding: 0 !important;
}

.board-select-wrap {
    position: relative;
}
.board-select-wrap .wpb-bm-inner {
    height: 225px;
    overflow: scroll;
}

.board-select-wrap .edit-board-buttons {
    position: absolute;
    bottom: 0;
    background-color: #fff;
}

.board-selection-box {
    padding-bottom: 60px;
}

.os-modal .save-bookmark-btn {
    width: 65px;
    text-align: center;
    margin-right: 0;
}

.os-modal .update-board-btn {
    width: 60px;
    text-align: center;
}

.os-modal .modal-btn {
    position: relative;
}

.os-modal .modal-btn.create-board-context {
    width: 202px;
    text-align: center;
    margin-right: 0;
}

.os-modal .save-bookmark-btn.disabled-btn,
.os-modal .modal-btn.create-board-context.disabled-btn {
    pointer-events:none;
}

.os-modal .modal-btn.saved-btn,
.tray-new-board .tray-new-board-options .tray-save-btn.saved-btn {
    background-color: #28a745;
    color: #fff;
    text-align: center;
}

.board-selection-box .board-selection-option label {
    display: block;
    font-weight: 600;
    padding: 6px 8px;
}

.board-selection-box .board-selection-option label:hover {
    display: block;
    background-color: #f2f2f2;
    cursor: pointer !important;
}

/*.board-selection-box .board-selection-option:after {
    display: none;
}*/

.board-selection-box .board-selection-option:hover {
    
}

/*.board-selection-box .board-selection-option:hover:after {
    content: 'SAVE';
    display: inline-block;
    float: right;
    color: #fff;
    background-color: #333;
    font-size: 10px;
    padding: 0px 5px;
    border-radius: 7px;
    font-weight: 700;
}*/

.os-modal .edit-board-options .board-options-left {
    float: left;
    padding-bottom: 1px;
}

.os-modal .edit-board-options .board-options-right {
    height: 350px;
    padding: 0 15px;
    display: inline-block;
    float: left;
}

.os-modal .edit-board-options .create-board-options {
    width: 100%;
    padding: 0;
}

.os-modal .display-none {
    display: none;
}

.os-modal .display-inline {
    display: inline-block;
}

.os-modal .bookmark-image-thumbnail {
    max-width: 250px;
}

.os-modal .bookmark-image-thumbnail img {
    width: 100%;
}

.os-modal .edit-board-bookmark-box {
    margin-bottom: 10px;
}

.os-modal .error-msg {
    display: inline-block;
}

.board-tabs-wrapper {
    overflow-x: auto;
    white-space: nowrap;
    box-shadow: inset 0 -1px #1d1e1c40;
    margin-top: 16px;
}

.board-tabs-list {
    align-items: center;
    display: flex;
    gap: 20px;
}

.board-tab {
    align-items: center;
    appearance: none;
    background: transparent;
    border: 0;
    border-bottom: 2px solid transparent;
    color: #333;
    display: inline-flex;
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    padding: 8px 16px;
    text-decoration: none;
    white-space: nowrap;
}

.board-tab:hover {
    cursor: pointer;
    border-bottom: 2px solid #438bca;
    font-weight: 600;
    color: #333;
}

.tab-count {
    background-color: #f2f2f2;
    border-radius: 24px;
    color: #333;
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    padding: 4px 6px;
    vertical-align: middle;
    white-space: nowrap;
    font-weight: 400;
    margin-left: 7px;
}

.tab-active {
    border-bottom: 2px solid #438bca;
    font-weight: 600;
    color: #333;
}

.single-board .tab-content-section.section-inactive {
    display: none;
}

.single-board .tab-content-section.section-active {
    display: inline-block;
}

.single-board .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin-top: 20px;
}

.single-board .pagination a, .single-board .pagination span {
    color: #333;
    background-color: #f2f2f2;
    border: 1px solid #ddd;
    padding: 10px 20px;
    margin: 0 5px;
    text-decoration: none;
    border-radius: 4px;
    /*transition: background-color 0.3s, color 0.3s;*/
}

.single-board .pagination a:hover {
    background-color: #438bca;
    color: #fff;
}

.single-board .pagination .current {
    background-color: #438bca;
    color: #fff;
    border-color: #438bca;
}

.single-board .pagination a.disabled, .single-board .pagination span {
    /*color: #bbb;*/
    /*cursor: not-allowed;*/
    background-color: #fff;
    border: none;
    padding: 10px 20px;
}

.single-board .pagination a:first-child,
.single-board .pagination a:last-child {
    border-radius: 4px;
}

#ex-shareboard.os-modal {
    width: 550px;
    padding: 30px 30px 20px;
}

.collab-icon {
    display: inline-block;
    content: '';
    background: url('https://officesnapshots.com/wp-content/plugins/os-bookmarks/img/people.png');
    width: 16px;
    height: 16px;
    background-size: 16px 16px;
    margin-top: 3px;
    background-repeat: no-repeat;
    background-position: 0px 0px;
    vertical-align: top;
    margin-left: 5px;

}

#ex-shareboard .edit-board-options input[type='text'] {
    width: 100%;
}

.current-collab {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.collab-name {
    font-weight: 600;
}

.collab-info {
    display: flex;
    flex-direction: column;
}

.collab-info span {
    line-height: 18px;
}

.collab-email {
    /*font-style: italic;*/
    color: #666;
    font-size: 12px;
}

.collab-role {
    font-style: italic;
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
}

.edit-board-options .current-collab .remove-collaborator:hover,
.edit-board-options .current-collab .remove-invitation:hover,
.edit-board-options .current-collab .remove-invitation-email:hover,
.edit-board-options .pending-invite a:hover {
    cursor: pointer;
    text-decoration: underline;
}

.edit-board-options .current-collab:last-of-type,
.edit-board-options .pending-invite:last-of-type {
    border-bottom: none;
}

.user-boards .board-info .join-board-cta {
    float: right;
    background-color: #62c462;
    display: inline-block;
    height: 30px;
    line-height: 22px;
    font-weight: 700;
    font-size: 14px;
    padding: 4px 10px;
    border-radius: 7px;
    margin: 5px 0 0 0;
    color: #fff;
}

.user-boards .board-info .join-board-cta:hover {
    background-color: green;
    color: #fff;
}

