nav.sew-nav-tab-wrapper {
    margin: 1.5em 0 1em;
}
#sew-log-viewer-select{
    padding: 10px 0 8px;
    line-height: 28px;
}
#sew-log-viewer{
    background: #fff;
    border: 1px solid #e5e5e5;
    box-shadow: 0 1px 1px rgba(0,0,0,.04);
    padding: 5px 20px;
}

.sew-list{
    margin: 0;
}
.sew-list-item{
    display: inline-block;
    margin-right: 10px;
}
.sew-select-field{
    min-width: 415px;
    width: 100%;
}
.slynk-epn-table{
    background: #FFF;
    max-width: 90%;
    box-shadow: 0 2px 0 #E6E6E6;
    border: 1px solid #CCD0D4;
    border-radius: 3px;
}

.sln-table-title{
    border-bottom: 1px #CCD0D4 solid;
    background: #DCDCDC;
}
.sln-table-title th{
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 0;
    margin-top: 0;
}
.sln-table-title th h2{
    margin-bottom: 0;
    line-height: normal;
}
.slynk-epn-table th{
    padding-left: 10px;
}
td.sew-tooltip-td{
    padding-left: 0px;
    padding-right: 0px;
    vertical-align: top;
}

/* Toggle style */
.toggle {
    cursor: pointer;
    display: inline-block;
}

.toggle-switch {
    display: inline-block;
    background: #dcdcdc;
    border-radius: 16px;
    width: 52px;
    height: 26px;
    position: relative;
    vertical-align: middle;
    transition: background 0.25s;
}
.toggle-switch:before, .toggle-switch:after {
    content: "";
}
.toggle-switch:before {
    display: block;
    background: linear-gradient(to bottom, #fff 0%, #eee 100%);
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
    width: 18px;
    height: 18px;
    position: absolute;
    top: 4px;
    left: 4px;
    transition: left 0.25s;
}
.toggle:hover .toggle-switch:before {
    background: linear-gradient(to bottom, #fff 0%, #fff 100%);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5);
}
.toggle-checkbox:checked + .toggle-switch {
    background: #56c080;
}
.toggle-checkbox:checked + .toggle-switch:before {
    left: 30px;
}

.toggle-checkbox {
    position: absolute;
    visibility: hidden;
}

.toggle-label {
    margin-left: 5px;
    position: relative;
    top: 2px;
}
/* Tooltip */
.sew-tooltip-box {
    position: relative;
}
.sew-tooltip-box i{
    font-size: inherit;
    line-height: inherit;
    color: #0073aa;
}
.sew-tooltip-box .sew-tooltip-text {
    visibility: hidden;
    width: auto;
    background-color: #0073aa;
    color: #fff;
    text-align: center;
    padding: 6px;
    position: absolute;
    z-index: 1;
    font-size: 12px;
    line-height: normal;
    bottom: 22px;
    left: 0;
    border-radius: 2px;
    min-width: 300px;
    max-width: 350px;
}
.sew-tooltip-box:hover .sew-tooltip-text {
    visibility: visible;
}
.sew-tooltip-text:after{
    content: " ";
    position: absolute;
    bottom: -6px;
    left: 10px;
    border-bottom: 11px solid transparent;
    border-left: 8px solid #0073aa;
}