﻿.discussion-board-search-result-item {
    border: 1px solid #E7E9EA;
    padding: 10px 15px;
    margin: 15px;
    background-color: #FFFFFF;
    cursor: pointer;
    border-radius: 60px;
}

.discussion-board-hierarchy-UpdateExists {
    font-weight:bold;
}

.discussion-board-search-result-phrase {
    color: #0177BC;
    font-size: 18px;
    font-weight: 700;
}

.discussion-board-search-result-text {
    color: #6B6C6D;
}

.discussion-board-search-button {
    margin-right: 15px;
    margin-top: 10px;
    float: right;
    border-width: 0px;
    width: 20px;
    height: 20px;
    background-image: url('../../images/cancel.png');
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent
}

.discussion-board-post {
    background-color: #FFFFFF;
    border: 1px solid #E7E9EA; 
    border-radius: 18px;
    width: 100%;
    padding: 15px 15px 0 15px;
    display: inline-table;
}

.discussion-board-reply {
    background-color: #FFFFFF;
    border: 1px solid #E7E9EA;
    border-radius: 18px;
    padding: 15px 15px 0 15px;
    margin-bottom: 2px;
    margin-left: 50px;
}

.post-image-container {
    position: relative;
    float: left;
}

.post-image-container-inner {
    opacity: 0;
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.post-image-container:hover .post-image-container-inner {
    opacity: 1;
}

#discussion-board-hierarchy {
    cursor: pointer;
    border: none !important;
}

.discussion-board-hierarchy-wrapper {
    width: 100%;
    height: calc(100% - 140px);
    margin-top: 20px;
}

#discussion-board-content {
    width: 80%;
    height: 100%;
    float: left;
    padding: 5px;
}

#contentdiscussion-board-hierarchy div.jqx-widget-content {
    border: none !important;
}

.discussion-board-post-separator-wrapper {
    margin: 2px 0 4px 0;
}

.discussion-board-post-separator {
    background-color: #E7E9EA;
    width: 90%;
    margin: 0 auto;
    height: 1px;
}

#contentboard-document-list-content-table div.jqx-widget-content {
    border: none !important;
}

.discussion-board-interaction-image {
    width: 18px;
    height: 18px;
    margin-left: 10px;
    margin-right: 10px;
    cursor: pointer;
}

.discussion-board-view-interaction {
    text-decoration: underline;
    cursor: pointer;
    margin-left: 10px;
}

.discussion-board-popup-menu-anchor {
    font-weight: 700;
    margin-left: 10px;
    font-size: 18px;
    color: #2C2C2C;
    cursor: pointer;
    line-height: 0.8;
}

.discussion-board-created_username {
    color: #0177BC;
    font-weight: 700;
    margin-right: 20px;
}

.discussion-board-view-more-replies {
    text-align: right;
    cursor: pointer;
    margin-right: 10px;
    font-weight: bold;
    color: #0177BC;
    font-size: 16px;
}

.discussion-board-favorite {
    width: 32px;
    height: 32px;
    position: relative;
    margin: 15px;
    cursor: pointer;
}

.amp-video-container {
    width: 500px;
    height: 275px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.amp-video {

}

.video-processing-container {
    width: 500px;
    height: 275px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5px;
    background-color: #E7E9EA;
    color: black;
}

.video-processing-indicator {
    border: 6px solid #eaeced; /* Light grey */
    border-top: 6px solid #000000;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    margin-top: 40px;
    margin-bottom: 40px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}