: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;
}
.technicalSupport a{
    color: white !important;
}
.technicalSupport a:hover,.technicalSupport a:active{
    color: cornflowerblue;
}

.footer-container{
    padding: 30px 0 20px 0;
    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;
    }
}