.settings-module-wrapper {
    h2 {
        font-size: 14px;
        font-weight: 600;
    }
}

// dunamic text list
.dynamic-text-list-wrapper {
    h2 {
        color: #191919;
        font-weight: 600;
        margin-bottom: 11px;
        font-size: 14px !important;
    }
    & > p {
        color: #858585;
        margin-bottom: 16px;
        font-size: 12px !important;
    }

    ul {
        padding: 0;
    }
    li {
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: #292929;
        padding: 10px 6px;
        border-bottom: 1px solid #d1d1d1;
        p {
            margin-bottom: 0;
        }
    }
    li:first-child {
        position: relative;
        top: 10px;
    }

    svg {
        cursor: pointer;
        color: #ff0000;
    }
}

.input-w-action-wrapper {
    position: relative;

    .ant-btn {
        position: absolute;
        right: 10px;
        top: 50%;

        transform: translateY(-50%);

        background-color: transparent !important;
        color: #089752 !important;
        font-weight: 500 !important;
        font-size: 14px !important;
        border: 0 !important;

        animation: animate-text 0.5s ease-in-out;
    }
}

@keyframes animate-text {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
