/* loading spinner */
.sbb-topolist #loading {
    margin: 80px auto;
    position: relative;
    width: 100px;
    height: 100px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    background: #ccc;
    font: 12px "Lucida Grande", Sans-Serif;
    text-align: center;
    line-height: 100px;
    color: white !important;
    -webkit-box-shadow: 0 0 5px rgba(0,0,0,0.5);
    -moz-box-shadow: 0 0 5px rgba(0,0,0,0.5);
    box-shadow: 0 0 5px rgba(0,0,0,0.5);

}
.sbb-topolist #loading:before {
    content: "";
    position: absolute;
    left: -20px;
    top: -20px;
    bottom: -20px;
    right: -20px;
    -webkit-border-radius: 70px;
    -moz-border-radius: 70px;
    border-radius: 70px;
    background: #eee;
    z-index: -2;
    -webkit-box-shadow: inset 0 0 10px rgba(0,0,0,0.2);
    -moz-box-shadow: inset 0 0 10px rgba(0,0,0,0.2);
    box-shadow: inset 0 0 10px rgba(0,0,0,0.2);
}
.sbb-topolist #loading span {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-top: 80px solid rgba(255,255,255,0.7);
    z-index: -1;
    top: -28px;
    left: 0px;
    -webkit-animation: ticktock 5s linear infinite;
    -webkit-transform-origin: 50px 80px;
}
.sbb-topolist #loading strong {
    color: #FFF !important;
    overflow: hidden;
    display: block;
    hyphens: none !important;
    margin: 0 auto;
    -webkit-animation: expand 2.5s linear infinite;
}
@-webkit-keyframes expand {
    0% {
        width: 0;
    }
    100% {
        width: 60px;
    }
}
@-webkit-keyframes ticktock {
    0% {
        -webkit-transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

/* general */
.sbb-topolist {
    font-family: 'Noto Sans', helvetica, arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
}
.sbb-topolist a,
.sbb-topolist a.active {
    color: #8F243E;
    text-decoration: none;
}
.sbb-topolist .clearfix::after {
    display: block;
    clear: both;
    content: "";
}
@media print {
    .sbb-topolist ul.clearfix,
    .sbb-topolist input {
        display: none;
    }
    .sbb-topolist a[href]:after {
        content: none !important;
    }
}

/* topolist */
.sbb-topolist .alphabet,
.sbb-topolist .searchbar,
.sbb-topolist .list{
    display: none;
}

.sbb-topolist .alphabet ul {
    list-style-type: none;
    margin: 0 0 20px 0;
    padding: 0;
}
.sbb-topolist .alphabet ul li {
    border-right: 1px solid #555555;
    float: left;
    font-weight: bold;
    line-height: 12px;
    margin: 0;
    padding: 0 5px;
}
.sbb-topolist-topolist .alphabet ul li:last-child {
    border: none;
}
.sbb-topolist .searchbar form {
    margin: 0 0 30px 0;
}
.sbb-topolist .searchbar form input {
    box-sizing: border-box;
    height: 38px;
    padding: 6px 12px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 4px;
    transition: border-color 0.15s
    ease-in-out, box-shadow 0.15s
    ease-in-out;
}
.sbb-topolist .searchbar form input[type=text] {
    display: inline-block !important;
    width: 300px !important;
}
.sbb-topolist .searchbar form [type="submit"] {
    color: #fff !important;
    background-color: #8F243E !important;
    border-color: #8F243E !important;
}
.sbb-topolist .list .gridTable{
    border: 1px solid #c1c1c1;
    border-right: 0;
    border-bottom: 0;
    display: grid;
    grid-template-columns: 60% min(12%) min(10%) auto;
}
@media (min-width: 768px) {
    .sbb-topolist .list .gridTable{
        grid-template-columns: 58% min(12%) min(10%) auto;
    }
}
@media (min-width: 1440px) {
    .sbb-topolist .list .gridTable{
        grid-template-columns: 62% min(12%) min(10%) auto;
    }
}
.sbb-topolist .list .gridTable>div{
    border-right: 1px solid #c1c1c1;
    border-bottom: 1px solid #c1c1c1;
    font-weight: bold;
    padding: 4px;
    vertical-align: top;
}
.sbb-topolist .list .gridTable .gridTableHead{
    background-color: #f5f3ef;
    height: 50px;
}
.sbb-topolist .list .gridTable .gridTableCountry{
    background-color: #f5f3ef;
    grid-column: 1 / span 4;
}
.sbb-topolist .list .gridTable .gridTableSpacer{
    background-color: #f5f3ef;
    grid-column: 1 / span 4;
}
.sbb-topolist .list .gridTable .gridTableCell {
    font-weight: normal;
}
.sbb-topolist div.item-data {
    float: left;
    max-width: 94%;
}
.sbb-topolist div.item-link {
    float: right;
}
.sbb-topolist p.item-note {
    margin: 10px 0 0 0;
}
.sbb-topolist .item-note-label {
    font-style: italic;
}
