.td-head {
    padding: 0.3rem 0.4rem 0.1rem 0 !important;
}

h1 {
    font-size: 17px;
    font-weight: bold;
}

#share{
    cursor:pointer;
}

.browser{
    margin-bottom:20px;
}

.t-head{
    padding: 0.75rem;
    /*border-right: 1px rgba(0,0,0,.05) solid;*/
}

.t-row{
    padding: 0.75rem;
}

.col-symbol{
    width:3%;
}

.browser > .row:nth-child(even){
    background-color:rgba(0,0,0,.05);
}

.browser > .row{
    border: 1px rgba(0,0,0,.05) solid;
}

.clickable{
    cursor: pointer;
}

#searchWrapper{
    border: 2px inset #BBB;
    background-color: rgba(0,0,0,.05);
    border-radius: 1em;
    box-shadow: 2px 2px 3px #666;
    height: 38px;
    overflow: hidden;
}

#searchWrapper.open{
    height: 155px;
}

.fa-label{
    font-size: 80%;
}

.cursor-pointer{
    cursor: pointer;
}
.center{
    text-align: center;
}



@media (max-width: 576px) {

    .marqueephone {
        width: auto;
        height: auto;
        white-space: nowrap;
        overflow: hidden;
        box-sizing: border-box;
    }
    .marqueephone * {
        display: inline-block;
        animation: marqueeSlide2 5s linear infinite alternate;
    }

    .marqueephone *:hover{
        animation-play-state: paused;
    }

    @keyframes marqueeSlide2 {
        0%{
            transform: translate(20%, 0);
        }
        100% {

            transform: translate(calc(-100% - -90px), 0);
        }
    }

}

.marquee {
    width: auto;
    height: auto;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
}
.marquee * {
    display: inline-block;
    animation: marqueeSlide 5s linear infinite alternate;
}

.marquee *:hover{
    animation-play-state: paused;
}

.navbar-toggler{
    margin-top:25%;
    margin-bottom:25%;
}

.verticalWriting{
    writing-mode: vertical-rl;
    user-select:none;
    cursor:pointer;
    transform: rotate(325deg);
    transform-origin: bottom left;
}

@keyframes marqueeSlide {
    0%{
        transform: translate(20%, 0);
    }
    100% {

        transform: translate(calc(-100% - -90px), 0);
    }
}