/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
.tabset .tab-panels section {
    display: none;
}
.tabset .tab-panels section.active {
    display: flex;
}
.tabset .tabs {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
}
.tab-panels {
    background-color: #f5f6f6;
    z-index: 6;
    position: relative;
    box-shadow: 0 5px 15px 6px rgba(0,0,0,0.1);
}
.tab-panels .tab-panel {
    font-size: 12px;
}
.tab-panels .tab-panel p {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin: 0;
}
.tab-panels .tab-panel p span {
    margin: 5px 0 7px 0;
}
.tab-panels .tab-panel p span.key{
    padding-right: 5px;
    background-color: #f5f6f6;
    z-index: 1;
    font-size: 9px;
    color: #807f7f;
}
.tab-panels .tab-panel p span.line{
    flex: 1;
    padding: 0 5px;
}
.tab-panels .tab-panel p span.the-line{
    height: 50%;
    border-bottom:1px solid #bbb;
}
.tab-panels .tab-panel p span.value{
    padding-left: 5px;
    background-color: #f5f6f6;
    z-index: 1;
    font-size: 9px;
    color: #807f7f;
}
.tabset .tabs .tab {
    margin: 0 3px;
}
.tabset .tabs .tab button {
    outline: none;
    cursor: pointer;
    padding: 12px 5px;
    transition: 0.3s;
    background-color: #fff;
    color: #04203e;
    border-radius: 0;
    border-top-left-radius: 13px;
    border-top-right-radius: 13px;
    border: 1px solid #04203e52;
    border-bottom: 0;
    min-width: 100px;
    font-size: 10px;
}
.tabset .tabs .tab button.active {
    color: #fff;
    background-color: #fb5723;
    border-color: #fb5723;
}
.tabset .tab-panels section{
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
}
.tabset .tab-panels .sub-section {
    display: none;
    width: 100%;
    padding: 5px 20px 20px;
}
.tabset .tab-panels .sub-section.active {
    display: block;
}
.tabset .tab-panels .sub-sections-tabs {
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background-color: #fff;
}
.tabset .tab-panels .sub-sections-tabs .tab {
    width: 100%;
    cursor: pointer;
    padding: 5px 5px 5px 20px;
    background-color: #fff;
    border-bottom: 1px solid #e5e8eb;
    font-size: 10px;
    color: #04203e;
}
.tabset .tab-panels .sub-sections-tabs .tab.active {
    background-color: #f5f6f6;
    border-bottom: 0;
    font-weight: bold;
}
.tabset .tab-panels .sub-sections {
    width: 55%;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
