.board-container {
    background-color: #c4d0dc;
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    flex-direction: column;
    opacity: 0;
    transition: all 300ms ease-in-out;
    transition-delay: 50ms;

    & .icon {
        display: flex;
        width: 100%;
        height: initial;
        justify-content: center;
        align-items: center;

        &.analogline {
            background-color: #6056bc;
        }

        &.announcement {
            background-color: #2050ac;
        }

        &.processor {
            background-color: #20a368;
        }

        &.ds1interface {
            background-color: #5677bc;
        }
        &.dcpmm {
            background-color: #5677bc;
        }

        &.ipserverinterface {
            background-color: #2092ac;
        }

        & img {
            margin: 20px;
            height: 80%;
            width: 80%;
        }
    }

    .code {
        margin: 5px;
        font-size: 15px;
        text-align: center;
        color: #24314b;
        font-weight: bold;
        line-height: 14px;
    }

    .board-info-container {
        height: 100%;
        display: flex;
        justify-content: flex-end;
        flex-direction: column;
        margin: 0px 0px 5px 0px;

        .board-info {
            box-sizing: border-box;
            display: inline-flex;
            align-items: center;
            font-size: 7px;
            width: 100%;
            font-weight: bold;
        }
    }

    &.horizontal {
        flex-direction: row;

        & .code {
            text-align: left;
            height: 100%;
            display: flex;
            align-items: center;
        }

        & .icon {
            height: 100%;
            width: initial;
        }

        .board-info-container {
            width: initial;
            flex-direction: row;
            flex-flow: wrap;
            align-content: center;
            margin: auto 5px auto auto;
        }

        & .board-info-container .board-info {
            width: 40%;
            display: flex;
        }
    }
}
