:root {
    --var-theme-color: #1779b8;
}

.justify-content-space-between {
    display: flex;
    justify-content: space-between;
}

.column-space-between {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.justify-content-flex-end {
    display: flex;
    justify-content: flex-end;
}

.logoBox {
    padding: 3px;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.container {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.body-container {
    flex: 1;
}

.goTop {
    position: fixed;
    right: 5rem;
    bottom: 5rem;
    background-color: var(--var-theme-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
}

.goTop:hover {
    box-shadow: 1px 1px 15px 3px #dddddd;
}

.planeTop {
    font-size: 1.4rem !important;
    color: white !important;
}

.articleTag {
    display: inline-block;
    padding: 2px 5px;
    margin-top: 0.5rem;
}

.friendshipLinkBox {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    padding: 2px 0;
    align-items: center;
}

.friendBtn {
    display: inline;
    padding: 3px 5px;
    border-radius: 2px;
    margin-left: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    border: none;
    background-color: transparent;
    color: #323232;
}

.friendBtn:hover, .friendBtn:active {
    color: var(--var-theme-color);
    text-decoration: underline;
}

.technicalSupport {
    text-align: center;
    font-size: 0.7rem;
    padding-bottom: 20px
}

.technicalSupport a {
    color: white !important;
}

.technicalSupport a:hover, .technicalSupport a:active {
    color: cornflowerblue;
}

.footer-container {
    margin: 0;
    width: 100%;
    background-color: var(--var-theme-color);
    color: white;
}

.editor-content table {

}

.editor-content table tr th, .editor-content table tr td {
    border: 1px #dddddd solid;
}

.editor-content table tr th {
    background-color: #f1f1f1;
}


@media screen and (max-width: 1200px) {

}

@media screen and (max-width: 992px) {

}

@media screen and (max-width: 768px) {
    .goTop:hover {
        box-shadow: none;
    }

    .goTop:active {
        box-shadow: 1px 1px 15px 3px #dddddd;
    }

    .goTop {
        position: fixed;
        right: 2rem;
        bottom: 3rem;
        background-color: var(--var-theme-color);
        width: 35px;
        height: 35px;
        border-radius: 50%;
        text-align: center;
        line-height: 40px;
        cursor: pointer;
    }

    .planeTop {
        font-size: 1.4rem !important;
        color: white !important;
        margin-top: 0.4rem !important;
    }
}
.privacyPosition {
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    display: none;
}

.privacyContainer {
    margin: 20px;
    padding: 30px;
    background-color: #2b2e2e;
}

.privacyLine {
    height: 1px;
    width: 100%;
    background-color: #ffffff;
    margin: 20px 0;
}

.privacyButtonRow {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.privacyTitleContent {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.privacyTitle {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
}

.privacyCLose {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 27px;
    background-color: #b5fff8;
    border-radius: 50%;
    font-size: 30px;
    text-align: center;
    cursor: pointer;
}

.privacyCLose:hover {
    box-shadow: 0px 0 2px 2px #e1e1e1;
}

.privacyContent {
    color: #ffffff;
    margin: 20px 0;
}

.privacyButton {
    padding: 10px 40px;
    background-color: #b5fff8;
    cursor: pointer;
    border: none;
    margin-right: 20px;
}

.privacyButton:active {
    background-color: #a1a1a1;
}