/*Side Tabs Styles*/


/*
For some reason support and feedback tabs
do not have the same starting pos, might be
a result of transform rotate
*/


.side-tab a{
    color: white;
}

.side-tab a:focus {
    outline-offset: 20px;
	display: block;
}

#support {
    border-radius: 5px 5px 0 0;
    bottom: 15rem;
    right: -4rem;
}

#feedback {
    border-radius: 5px 5px 0 0;
    bottom: 5rem;
    right: -3.1rem;
}

.side-tab {
    transform: rotate(-90deg);
    position: fixed;
    padding: 1rem;
    background-color: #026CD0;
    color: white;
    z-index: 50;
    line-height: 0;
}

.side-tab p {
    margin: 0;
    font-size: .8rem;
}

.side-tab i {
    padding-right: .5rem;
}

#support i {
    color:  #09ef00;
}

/**Mobile css**/
@media only screen and (max-width: 768px) {
    .side-tab{
        display: none;
        visibility: hidden;
    }
    
    .side-tab p {
        display: none;
        visibility: hidden;
    }
    
}