﻿.b-row {
    width: 100%;
    display: flex;
}

.b-col-1 {
    width: 8.333333%;
}

.b-col-2 {
    width: 16.666666%;
}

.b-col-3 {
    width: 25%;
}

.b-col-4 {
    width: 33.333333%;
}

.b-col-5 {
    width: 41.666666%;
}

.b-col-6 {
    width: 50%;
}

.b-col-7 {
    width: 58.333333%;
}

.b-col-8 {
    width: 66.666666%;
}

.b-col-9 {
    width: 75%;
}

.b-col-10 {
    width: 83.333333%;
}

.b-col-11 {
    width: 91.666666%;
}

.b-col-12 {
    width: 100%;
}


.newHeader {
    border: 10px solid transparent;
    padding: 15px;
    background-image: url(../../images/new002.png);
}
.headerTitleForum {
    display: flex;
    text-align: center;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
    padding: 5px
}

.headerTitleForumMain {
    width: 100%;
    display: flex;
    flex-direction: row
}

.titleForumHeader :hover {
    color: blue
}

@media screen and (max-width: 800px) {
    .b-row {
        flex-direction: column;
    }

    [class*='b-col-'] {
        width: 100%;
    }

    .b-hidden {
        display: none;
    }
}


@media screen and (max-width: 1015px) {
    .headerTitleForumMain {
        flex-direction: column;
    }   
}

