﻿main {
    background-color: #f3f3f3;
}

.hero .hero-icon {
    position: absolute;
    font-size: 75px;
    left: 45px;
    top: -4px;
}

section.admincenter {
    padding: 25px 0;
}

.box {
    background-color: #FFF;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    margin-bottom: 20px;
    padding: 15px;
}

    .box.noPadding {
        padding: 0;
    }

    .box .box-title {
        font-size: 18px;
        color: #000;
        padding: 7px 12px;
        border-bottom: 1px solid #eee;
    }

    .box .box-item {
        padding: 6px 10px;
        border-bottom: 1px solid #eee;
        font-size: 15px;
    }

        .box .box-item .desc {
            font-size: 14px;
            color: #788690;
        }

        .box .box-item .locked {
            color: red;
        }

        .box .box-item .notActivated {
            color: deeppink;
        }

table {
    width: 100%;
    background-color: #FFF;
    border-spacing: 0;
    border-collapse: collapse;
}

    table tr th {
        text-align: center;
        padding: 8px 10px;
        border-bottom: 1px solid #ddd;
        font-size: 14px;
        color: #7e949c;
        font-weight: 500;
    }

    table tr td {
        font-size: 14px;
        color: #8b9598;
        padding: 8px 10px;
        border-bottom: 1px solid #eee;
        border-right: 1px solid #eee;
        position: relative;
    }

        table tr td.bold {
            font-weight: 500;
            color: #474c4e;
        }

.item button.vote {
    background-color: #e9edf1;
    color: #868e96;
    padding: 1px 8px;
    border-radius: 3px;
    border: 0;
    width: 100%;
    white-space: nowrap;
}
    .item button.vote span.icon {
    }
    .item button.vote span.tag {
        padding-left: 7px;
        font-weight: 600;
    }

    .item button.vote:hover {
        background-color: #788592;
        color: #ffffff;
        cursor: pointer;
    }
    .item button.vote.active {
        background-color: #217abd;
        color: #FFF;
    }
.item a.author {
    color: #6b7379;
}
.item a.question {
    font-weight: 500;
    color: #303438;
}

.item.Open td {
}
    .item.Open td.status {
    }
.item.Active td {
    background-color: rgba(33, 150, 243, 0.08);
}
    .item.Active td.status {
        color: #FFF;
        background-color: #2196f3;
    }
.item.Active a.question {
    color: #2196f3;
}
.item.Declined td {
    background-color: rgba(195, 115, 109, 0.08);
}
    .item.Declined td.status {
        color: #FFF;
        background-color: #c3736d;
    }
.item.Declined a.question {
    color: #c3736d;
}

.item td.vote {
    background-color: #FFF;
}
.item td.status a {
    color: #474c4e;
}
.item.Active td.status a,
.item.Declined td.status a {
    color: #FFF;
}

#modals .modal.status {
    width: 320px;
    height: 233px;
    left: calc(50% - 160px);
    top: calc(50% - 140px);
    background: unset;
}
    #modals .modal.status .box {
        border: 0;
        border-radius: 6px;
        margin: 0;
    }
        #modals .modal.status .box ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
            #modals .modal.status .box ul li {
                padding: 3px;
            }
                #modals .modal.status .box ul li span {
                    margin-left: 6px;
                }

        #modals .modal.status .box .buttons {
            margin-top: 17px;
        }
            #modals .modal.status .box .buttons button {
                background-color: #737d86;
                border: 0;
                color: #FFF;
                padding: 0 14px;
                line-height: 34px;
                font-size: 15px;
                font-weight: 500;
                border-radius: 3px;
                margin-right: 5px;
            }
                #modals .modal.status .box .buttons button:hover {
                    background-color: #2196f3;
                }


#modals .modal.loginRequired {
    left: calc(50% - 250px);
    top: calc(50% - 140px);
    width: 500px;
    height: 238px;
}

    #modals .modal.loginRequired .modal-content {
        padding: 30px;
    }

        #modals .modal.loginRequired .modal-content p {
            font-size: 18px;
        }

        #modals .modal.loginRequired .modal-content button {
            border: 0;
            background-color: #217abd;
            color: #FFF;
            font-size: 16px;
            font-weight: 500;
            padding: 7px;
            border-radius: 3px;
            margin-top: 15px;
        }

            #modals .modal.loginRequired .modal-content button:hover {
                background-color: #2c93e0;
                cursor: pointer;
            }

@media (max-width: 767.98px) {
    .hero .hero-icon {
        text-align: center;
        left: 0;
        top: 0;
        width: 100%;
        font-size: 60px;
    }
}

@media (max-width: 575.98px) {
    table tr td {
        word-break: break-word;
    }
}