﻿.eo-view-tabs {
    height: 100%;
}

.eo-view-tabs__header {
    height: 36px;
    position: relative;
    padding-left: 10px;
    background-color: #fbfbfb;
    border-bottom: 1px solid #eee;
    /*width: calc(100% - 58px);*/
    /*display: inline-flex;
    overflow-x: hidden;
    overflow-y: hidden;*/
    width:100%;

    display: inline-flex;
    overflow-x: hidden;
    overflow-y: hidden;
    /*width:100%;*/
}

.eo-view-tabs__tab {
    font-size: 12px;
    white-space: nowrap;
    background-color: transparent;
    margin: 0px 1px 0px 1px;
    padding: 0px 10px 0 10px;
    position: relative;
    height: 35px;
    border-bottom: 2px solid transparent;
    border-width: 0 0 2px 0;
    z-index: 2;
    color: #95A5A6;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: 0.1px;
    cursor: pointer;
}

    .eo-view-tabs__tab--selected, .eo-view-tabs__tab:hover {
        height: 35px;
        border-bottom: 2px solid #69bcff;
        border-bottom-width: 2px;
        border-width: 0 0 2px 0;
        z-index: 2;
        color: #2c3e50;
        position: unset;
        transition: .3s ease-in-out;
    }

    @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
     /* IE10+ CSS styles go here */
         .eo-view-tabs__tab--selected, .eo-view-tabs__tab:hover {
            position: inherit;
        }
    }

.eo-view-tabs__header + .eo-view-tabs__content {
    height: calc(100% - 36px);
}

.eo-view-tabs__content {
    width: 100%;
}

    .eo-view-tabs__content > div[eo-tab] {
        width: 100%;
        padding: 10px;
        height: 100%;
        position: absolute;
        left: -9999px;
    }

        .eo-view-tabs__content > div[eo-tab].eo-nopadd {
            padding: 0px;
        }

    .eo-view-tabs__content > div.eo-view-tabs__content--nopadd {
        padding: 0;
    }

    .eo-view-tabs__content > div:first-child {
        display: block;
        position: unset;
    }

    @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
     /* IE10+ CSS styles go here */
        .eo-view-tabs__content > div:first-child {
            position: inherit;
        }
    }

    .eo-view-tabs__content div.eo-view-tabs__tab--hidden {
        position: absolute;
        left: -9999px;
    }

    .eo-view-tabs__content div.eo-view-tabs__tab--visible {
        position: unset;
    }

    @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
     /* IE10+ CSS styles go here */
        .eo-view-tabs__content div.eo-view-tabs__tab--visible {
            position: inherit;
        }
    }
    
.eo-view-tabs__tab--move{
    display: inline-block;
    line-height: 36px;
}
    .eo-view-tabs__tab--move + .eo-view-tabs__header {
        width: calc(100% - 58px);
    }
.eo-view-tabs__tab--move:hover{
    line-height: 36px;
}