.media h4 {
    margin-top: 0;
}

.media-highlight {
    background: #eee;
    height: 30px;
}

#issue-list {
    list-style: none;
    padding-left: 0;
}

.sortactive .media:hover {
    background: #eee;
    cursor: pointer;
}

.btn-group-action {
    margin-left: 40px;
    text-align: right;
    display: inline-block;
}

.issue-status {
    width: 65px;
    display: inline-block;
    vertical-align: middle;
    text-align: right;
}

.vote-info-container {
    display: inline-block;
}

.vote-progress {
    width: 150px;
}

.vote-info-container div {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
}

.vote-results {
    cursor: pointer;
}

.hammer {
    height: 20px;
    width: 20px;
}

.vote-active {
    filter: invert(40%) sepia(90%) saturate(1300%) hue-rotate(87deg) brightness(100%) contrast(60%);
    cursor: pointer;
}

.rotate {
    animation: rotation 2s infinite linear;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(359deg);
    }
}

.wiggle {
    animation: shake 0.3s infinite ease-in-out;
}

@keyframes shake {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(10deg);
    }
    50% {
        transform: rotate(0deg);
    }
    75% {
        transform: rotate(-10deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.toolbox {
    display: inline;
}

.bouncing {
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-name: bounce-6;
    animation-timing-function: ease;
}

@keyframes bounce-6 {
    0% {
        transform: scale(1, 1) translateY(0);
    }
    10% {
        transform: scale(1.1, .9) translateY(0);
    }
    30% {
        transform: scale(.9, 1.1) translateY(-20px);
    }
    50% {
        transform: scale(1.05, .95) translateY(0);
    }
    57% {
        transform: scale(1, 1) translateY(-7px);
    }
    64% {
        transform: scale(1, 1) translateY(0);
    }
    100% {
        transform: scale(1, 1) translateY(0);
    }
}

#generalassembly-participants .added-participants {
    max-height: 500px;
    overflow-y: auto;
}

.not-selectable {
    background-color: lightgray;
    cursor: not-allowed;
}

.not-selectable a,
.not-selectable span {
    background-color: lightgray;
    cursor: not-allowed;
}

.selected {
    background-color: forestgreen;
}

@-webkit-keyframes dot-keyframes {
    0% {
        opacity: 0.4;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(1.2, 1.2);
        transform: scale(1.2, 1.2);
    }
    100% {
        opacity: 0.4;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

@keyframes dot-keyframes {
    0% {
        opacity: 0.4;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(1.2, 1.2);
        transform: scale(1.2, 1.2);
    }
    100% {
        opacity: 0.4;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

.loading-dots {
    text-align: center;
    width: 100%;
}

.loading-dots--dot {
    -webkit-animation: dot-keyframes 1.5s infinite ease-in-out;
    animation: dot-keyframes 1.5s infinite ease-in-out;
    background-color: #B41F21;
    border-radius: 10px;
    display: inline-block;
    height: 10px;
    width: 10px;
}

.loading-dots--dot:nth-child(2) {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.loading-dots--dot:nth-child(3) {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.lbl-status,
.lbl-access {
    cursor: pointer;
}