.reset-settings.settings-content-wrap{
    .reset-confirm-modal {
        .trash-wrapper {
            svg {
                fill: red;
                padding: 10px;
            }
        }

        .input-group {
            width: 100%;
            margin-top: 20px;
            input {
                width: inherit;
                padding: 5px;
                font-size: 14px;

            }
        }

        .button-group {
            display: flex;
            column-gap: 10px;

            button {
                margin-right: 0;

                &.disabled {
                    background-color: #FF8787 !important;
                    cursor: not-allowed;
                    user-select: none;
                    box-shadow: none;
                }
            }
        }
    }
    .settings-main-content-wrap {
        .panel-header {
            > p {
                font-size: 14px;
                font-weight: 500;
                line-height: 16px;
            }
            .notice.notice-warning {
                margin-left: 0;
                margin-right: 0;
                background-color: #FFFAE0;
                border-radius: 8px;
                padding: 10px 15px;

                > p {
                    font-size: 14px;
                    line-height: 20px;
                }
            }
        }

        .panel-body {
            background-color: #F9F9FB;
            padding: 20px;
            margin-top: 20px;
            border: 1px solid #EFF1F5;
            border-radius: 8px;

            > p {
                font-size: 15px;
                font-weight: 500;
            }

            .reset-settings-wrap{
                .reset-settings-item {
                    display: flex;
                    column-gap: 10px;

                    // stylish checkbox
                    .checkbox-wrapper {
                        display: block;
                        position: relative;
                        padding-left: 35px;
                        margin-bottom: 12px;
                        margin-top: 5px;
                        cursor: pointer;
                        font-size: 22px;
                        -webkit-user-select: none;
                        -moz-user-select: none;
                        -ms-user-select: none;
                        user-select: none;
                    }

                        /* Hide the browser's default checkbox */
                    input {
                        position: absolute;
                        opacity: 0;
                        cursor: pointer;
                        height: 0;
                        width: 0;
                    }

                    /* Create a custom checkbox */
                    .checkmark {
                        position: absolute;
                        top: 0;
                        left: 0;
                        height: 20px;
                        width: 20px;
                        border:1px solid #d2c6c6;
                        border-radius: 2px;
                    }

                    /* On mouse-over, add a grey background color */
                    .checkbox-wrapper:hover input ~ .checkmark {
                     background-color: #ccc;
                    }

                    /* When the checkbox is checked, add a blue background */
                    .checkbox-wrapper input:checked ~ .checkmark {
                        background-color: #7A5AF8;
                    }

                    /* Create the checkmark/indicator (hidden when not checked) */
                    .checkmark:after {
                        content: "";
                        position: absolute;
                        display: none;
                    }

                    /* Show the checkmark when checked */
                    .checkbox-wrapper input:checked ~ .checkmark:after {
                        display: block;
                    }

                    /* Style the checkmark/indicator */
                    .checkbox-wrapper .checkmark:after {
                        left: 6px;
                        top: 2px;
                        width: 5px;
                        height: 10px;
                        border: solid white;
                        border-width: 0 3px 3px 0;
                        -webkit-transform: rotate(45deg);
                        -ms-transform: rotate(45deg);
                        transform: rotate(45deg);
                    }
                    // stylish checkbox
                    input {
                        margin-top: 4px;
                    }

                    > div {
                        label {
                            font-size: 14px;
                            font-weight: 500;
                        }
                        p {
                            margin: 0;
                            font-size: 13px;
                            font-weight: 400;
                        }
                    }
                }
            }
        }

        .button-wrapper {
            margin-top: 15px;
            > a {
                display: flex;
                width: fit-content;
                align-items: center;
                background-color: #E03131;
                padding: 10px 15px;
                color: #FFFFFF;
                font-size: 12px;
                font-weight: 600;
                text-decoration: none;
                border-radius: 5px;

                &:hover {
                    background-color: #C92A2A;
                }

                &.disabled {
                    cursor: not-allowed;
                    user-select: none;
                    background-color: #FF8787 !important;

                    &:focus {
                        box-shadow: none;
                    }
                }

                > svg {
                    width: 12px;
                    margin-right: 5px;
                }
            }
        }
    }
}