.config-form-container{
    width: 100%;
    display: flex;
    flex-direction: row;
    height: 600px;
}

.config-form-container.config-edit {
    height: auto !important;
}

.config-form-left{
    width: 50%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    overflow-y: auto;
}

.config-form-right{
    width: 50%;
    display: flex;
    padding-left: 2%;
    flex-direction: column;
    overflow: auto;
}

.pagination-options-container{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: left;
}

.align-color-inrow{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.sb-tab-container{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding-top: 1%;
}

.sb-tab-divider{
    width: 20%;
    background: #fff;
    margin-right: 5px;
    text-align: center;
    padding: 4px;
    border-top-left-radius: 6px;
    color: #23282d;
    border-top-right-radius: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    border: 1px solid #e2e2e2;
    white-space: nowrap;
    font-size: 14px;
}

.sb-tab-divider:hover{
    cursor: pointer;
    box-shadow: 0 -3px 5px #e6e6e6;
    font-weight: 500;
}

.sb-tab-divider-active{
    font-weight: 400;
    background: #f7f7f7;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 -3px 5px #e6e6e6;
}

.sb-tab-divider-active:hover{
    font-weight: 400;
}

.sb-tab-content{
    width: 99%;
    height: auto;
    position: relative;
    background-color: #fff;
    border-top: 1px solid #ddd;
    margin-top: -1px;
}

.disable-pagination{
    color: #ddd !important;
}

.config-form-left::-webkit-scrollbar, .config-form-right::-webkit-scrollbar, #BlankTemplatesList::-webkit-scrollbar{
    width: 5px;
}

.config-form-left::-webkit-scrollbar-track, .config-form-right::-webkit-scrollbar-track, #BlankTemplatesList::-webkit-scrollbar-track {
    background: #dddddd;
}

.config-form-left::-webkit-scrollbar-thumb, .config-form-right::-webkit-scrollbar-thumb, #BlankTemplatesList::-webkit-scrollbar-thumb {
    background: var(--sunDefault);
}

.config-form-left::-webkit-scrollbar-thumb:hover, .config-form-right::-webkit-scrollbar-thumb:hover, #BlankTemplatesList::-webkit-scrollbar-thumb:hover {
    border-radius: var(--sunBorderRadius);
    transition: width 2s;
}