.wbls-settings-menu-tabs {
    display: flex;
    background-color: #f0f0f1;
    padding: 0 35px;
    box-sizing: border-box;
    font-family: Poppins, sans-serif;
}

#wbls-form-settings-menu {
    background-color: #f0f0f1;
    padding: 0 35px;
    border-radius: 0 5px 5px 5px;
}

.wbls-settings-menu-tabs .wbls-tab-item {
    border: 1px solid #cccccc;
    padding: 5px 20px;
    cursor: pointer;
    background-color:#f0f0f1;
    border-bottom: none;
    border-radius: 5px 5px 0 0;
    font-weight: 600;
}

.wbls-settings-menu-tabs .wbls-tab-item.wbls-tab-item-active {
    background-color: #FFFFFF;
}

.wbls-license-cont {
    display: flex;
}

.wbls-license-cont>div {
    flex-grow:1;
}

.license-button {
    position: relative;
    padding: 0 25px;
    background-color: #0A875A;
    color: #FFFFFF;
    cursor: pointer;
    height: 40px;
    line-height: 40px;
    margin-left: 10px;
    box-sizing: border-box;
    border-radius: 3px;
    font-size: 14px;
}

.license-button.wbls-activate-license-button-loading {
    cursor: default;
    opacity: 0.5;
}

.wbls-activate-license-button-loading:before {
    animation: rotation 1s infinite linear;
    position: absolute;
    content: '';
    width: 18px;
    height: 18px;
    background: url(../images/loader.svg) no-repeat;
    background-size: 18px;
    top: calc(50% - 9px);
    left: calc(50% - 9px);
    display: inline-block;
}

.license-button:hover {
    opacity: 0.8;
}

.wbls-option-section-group input[type=text].wbls-license {
    height: 40px;
    padding: 5px 10px;
}