#tabs .tab {
    display: inline-block; /* выстраиваем вкладки в один ряд */
    padding: 5px 10px;
    cursor: pointer;
    position: relative;
    z-index:5;
    background-color: #eaeaea;
    font-size: 11.5px; /*текст главных вкладок*/
    margin-right: 4px;
}
#tabs .bi{
    position: relative;
    top:-6px;
    left:8px;
}

#tabs i.bi.bi-x-circle { /*размер х в заголовке табов (закрыть таю)*/
    font-size: 13px;
}

#tabs .whiteborder {
   border: 1px solid #707070;
    border-bottom: 1px solid #fff;
    border-radius: 3px 3px 0  0;
    background-color: white;
}

@media screen and (min-height:710px){
    #tabs .tabContent {
        width: 95vw;
        height: 89vh;
        border: 1px solid #707070;
        position: relative;
        top: -1px; 
        z-index:1;
        padding: 10px;
        border-radius: 0 0 3px 3px;
        font-size: 12px;
        overflow: scroll;
        overflow-x:hidden
    }
}

@media screen and (max-height:700px){
    #tabs .tabContent {
        width: 95vw;
        height: 83vh;
        border: 1px solid #707070;
        position: relative;
        top: -1px; 
        z-index:1;
        padding: 10px;
        border-radius: 0 0 3px 3px;
        font-size: 12px;
        overflow: scroll;
        overflow-x:hidden
    }
}

#tabs .hide {
    display: none;
}
#tabs .show {
    display: block;
}





