/* Defaults */
.clear {
    clear: both;
}

/* Login */
.logo {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

    .logo img {
        height: 25vh;
    }

/* Messages */
.messages {
    position: absolute;
    bottom: 0;
    left: 20px;
}

/* Alerts */
.alert {
    position: fixed;
    bottom: 20px;
    left: 15px;
    z-index: 10;
    margin-bottom: 0;
}

/* Nav */
nav .logo-small {
    position: absolute;
    top: 5px;
    width: 40px;
}

/* Teams */
.teams .row {
    display: flex;
    align-items: center;
}

    .teams .row, .team-overview figure img {
        width: 100%;
    }

.teams .team {
    transition: 0.1s;
}

    .teams .team:hover {
        background: #f7f7f7;
    }

    .teams .team .checked-wrapper {
        text-align: center;
    }

        .teams .team .fa-check-circle {
            opacity: 0.3;
        }

        .teams .team .fa-check-circle.checked {
            opacity: 1;
            color: #7ad01f;
    }

    .teams .team figure img {
        width:100%;
        border-radius: 3px;
    }

    .teams .team a {
        color: #636b6f;
        text-decoration: none;
    }

    .teams .team h3 {
        margin-top: 12px;
    }

.team-overview .panel-heading span {
    line-height: 30px;
}

.team-overview .list-group-item.checked {
    background: #7ad01f2e;
}

.sdg-logo {
    width: 100%;
}

.team-logo {
    max-width: 300px;
}

/* methodology */

.meth {
    color: #333333;
    border: 1px #636b6f solid;
}

    .meth_h {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .meth_h div {
        flex: 1;
        font-weight: bold;
        font-size: 18px;
        line-height: 25px;
        border-bottom: 1px #636b6f solid;
        padding: 5px 10px;
        display: flex;
        min-height: 65px;
    }

        .meth_h p {
            align-items: center;
            justify-content: center;
            display: inherit;
            margin-bottom: 0;
        }

    .meth_c {
        display: flex;
    }

    .meth_c div {
        flex: 1;
        font-size: 16px;
        line-height: 20px;
        padding: 10px;
        border-bottom: 1px #636b6f solid;
    }

        .meth_c div span {
            display: none;
        }

        .meth_c div h4 {
            margin-top: 0;
        }

@media screen and (max-width: 768px) {

    .meth_h div {
        display: none;
    }

    .meth_h div:first-child {
        display: block;
        min-height: 30px;
    }

    .meth_c {
        display: block;
    }

    .meth_c div {
        border-bottom: 0;
        font-size: 14px;
        line-height: 18px;
        padding-bottom: 0;
    }

    .meth_c div:last-child {
        border-bottom: 1px #636b6f solid;
        padding-bottom: 10px;
    }

    .meth_c div span {
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
    }
}

@media screen and (max-width: 580px){
    .team-overview .available_points {
        float:none !important;
    }

    .team-overview .col-xs-6,
    .admin-stats-view .col-xs-6 {
        width: 100% !important;
    }

    .sdg-logo {
        max-width: 120px;
    }

}

@media screen and (max-width: 500px){
    .teams .team.checked {
        background: #7ad01f2e;
    }

    .teams .team-info h3 {
        font-size: 18px;
    }

    .teams .team-info h4 {
        font-size: 16px;
    }

    .teams .checked-wrapper {
        display: none;
    }
}

.mt-2 {
	margin-top: 20px;
}