.oaws_field_nolabel label {
    display: none !important;
}

.oaws_wrap_settings {
	display: flex;
	margin-top: 30px;

    &.submitting {
        position: relative;
        cursor: wait;
        &::before {
            content: '';
            position: absolute;
            width: calc(100% + 20px);
            height: calc(100% + 20px);
            z-index: 999;
            opacity: 0.8;
            background-color: rgba(0,0,0,0.5);
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            border-radius: 8px;
        }
    }

    .oaws_g_set_tabcontents {
        flex: 0 0 60%;
        padding: 30px;
        background-color: #fff;
        border-radius: 7px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        display: flex;
        flex-flow: column;
        justify-content: space-between;
    }
    .oaws_g_set_tabs {
        flex: 0 0 300px;
        margin: 0;
        li {
            margin-bottom: 15px;
            padding-right: 30px;
            a {
                text-decoration: none;
                padding: 15px 20px;
                font-size: 15px;
                color: #464646;
                display: inline-flex;
                width: 100%;
                box-sizing: border-box;
                transition: all 0.2s linear;
                outline: unset !important;
                box-shadow: unset;
                img {
                    margin-right: 10px;
                }

                &.active, &:hover {
                    box-shadow: 0px 1px 5px rgba(0,0,0,0.2);
                    border-radius: 8px;
                    color: #f25a87;
                    background-color: #fff;
                }
            }
        }
    }

    .options_group {
        &:last-child {
            margin-bottom: 0;
        }
        &:not(:last-child) {
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #f2f0f0;
        }
        h3 {
            margin: 0 0 10px 0;
            color: var(--oaws-primary-color);
        }
        ul {
            li.option_item {
                margin-bottom: 20px;
            }
        }
    }

    .oaws_child_settings {
        .oaws_setting_form {
            margin-right: 15px;
            width: 100%;
        }
    }

    .oaws_setting_form {
        &:not(.oaws_flex_row_reverse) label {
            margin-bottom: 4px;
            display: inline-block;
            font-weight: 500;
            font-size: 14px;
        }
        &.remove_label_field label {
            display: none;
        }
    }

    .oaws_setting_field {
        &.oaws_init_select2 {
            height: 40px !important;
            display: block;
        }
    }

}

.oaws_wrap_action_button {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.oaws_header_settings {
  	margin-bottom: 50px;
    .oaws_title_page {
        font-weight: 500;
        font-size: 30px;
        color: #172a68;
    }
    .oaws_subtitle_page {
        margin: 10px 0 0 0;
        opacity: 0.8;
        font-weight: 500;
    }
}

#oaws_import_export {
    .options_group {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 50px;
        padding-bottom: 30px;
        .oaws_group_option {
            display: flex;
            align-items: flex-start;
            img {
                margin-right: 30px;
            }
            
        }
    }

}

#oaws-status-connection {
    color: #c0001a;
    &.actived {
        color: #039903;
    }
}

#oaws-import-form-settings .oaws_field_wrap {
    padding: 10px;
	background-color: #f4f4f4;
	border-radius: 10px;
}

body.opal-product_page_oaws-settings {
    background-color: #f5f7fa;
}