/* shows a circle with a number in it */
.circle-with-number {
    position: relative;
    display: block;
    width: 80%;
    height: 0;
    padding: 38% 0;
    border-radius: 50%;
    border: 1px solid #aaa;
    color: #333;
    font-size: 14px;
    text-align: center;
    line-height: 0;
    margin:0 auto;
    margin-top:20px;
    margin-bottom: 5px;
}
/* text below the circle with number */
p.circle-with-number-sub {
    width: 100%;
    text-align: center;
}

.circle-with-number.bg-green-lighter {
    border-color: #00a3a3 !important;
}

.circle-with-number.bg-orange-lighter {
    border-color: #ed9212 !important;
}

.fa-star.star-hover,.fa-star-o.star-hover { transition: all .2s ease-in-out; }
.fa-star.star-hover:hover,.fa-star-o.star-hover:hover {

    -webkit-transform: rotate(9deg) scale(1.2); /* Chrome 4+, Op 15+, Saf 3.1, iOS Saf 3.2+ */
    -moz-transform: rotate(9deg) scale(1.2); /* Fx 3.5-15 */
    -ms-transform: rotate(9deg) scale(1.2); /* IE 9 */
    -o-transform: rotate(9deg) scale(1.2); /* Op 10.5-12 */
    transform: rotate(9deg) scale(1.2); /* Fx 16+, IE 10+ */

    cursor:pointer;
}

.modal .select2-container {
    z-index: 1082;
}
.select2 {
    width: 100% !important;
}


.select2.select2-container.select2-container--open .select2-selection--single,
.select2.select2-container.select2-container--open .select2-selection--multiple {
    border: #777 2px solid !important;
    border-bottom: none !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 12px;
}

.select2-container--open .select2-dropdown--below {
    border: 2px solid #777 !important;
    border-top: none !important;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.select2-result-repository { padding-top: 4px; padding-bottom: 3px; }
.select2-result-repository__avatar { float: left; width: 60px; margin-right: 10px; }
.select2-result-repository__avatar img { width: 100%; height: auto; border-radius: 2px; }
/*.select2-result-repository__meta { margin-left: 70px; }*/
.select2-result-repository__title { color: black; font-weight: bold; word-wrap: break-word; line-height: 1.1; margin-bottom: 4px; }
.select2-result-repository__forks, .select2-result-repository__stargazers { margin-right: 1em; }
.select2-result-repository__forks, .select2-result-repository__stargazers, .select2-result-repository__watchers { display: inline-block; color: #aaa; font-size: 11px; }
.select2-result-repository__description { font-size: 13px; color: #777; margin-top: 4px; }
.select2-results__option--highlighted .select2-result-repository__title { color: white; }
.select2-results__option--highlighted .select2-result-repository__forks, .select2-results__option--highlighted .select2-result-repository__stargazers, .select2-results__option--highlighted .select2-result-repository__description, .select2-results__option--highlighted .select2-result-repository__watchers { color: #c6dcef; }