#form-section {
    width: 100%;
    height: calc(100vh - 110px);
}

#form-section .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0px;
    position: relative;
}

#form-section .header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0px;
    width: 100%;
    height: 1px;
    background: #D8D8D8;
}

#form-section .header .add-form-button {
    border-radius: 7px;
    border-top: 1px solid #7155EF;
    border-right: 1px solid #7155EF;
    border-bottom: 2px solid #7155EF;
    border-left: 1px solid #7155EF;
    background: #FFF;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    cursor: pointer;
    height: 35px;
    padding: 5px 10px;
    color: #7155EF;
    transition: background 0.3s, color 0.3s;
}

#form-section .header .add-form-button svg path {
    transition: stroke 0.3s;
}

#form-section .header .add-form-button:hover {
    background: #7155ef21;
}

#form-section .header .add-form-button:active {
    background: #7155EF;
    color: #fff;
}

#form-section .header .add-form-button:active svg path {
    stroke: #fff;
}

#form-section .header .add-form-button svg {
    margin: auto 5px auto 8px;
}

#form-section .no-data-placeholder-div {
    width: 100%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#form-section .no-data-placeholder-div .nodata-placeholder {
    width: 300px;
    object-fit: cover;
    aspect-ratio: 4/3;
}

#form-section .no-data-placeholder-div .nodata-placeholder-text {
    font-size: 18px;
    color: #000;
}

#create-form-modal.show .modal-dialog {
    transform: translate(0, 150px) !important;
}

.optin-form-modal .modal-dialog .modal-content {
    border-radius: 12px;
    border-top: 2px solid #8E7BE4;
    border-bottom: 5px solid #8E7BE4;
    background: #FFF;
    box-shadow: none;
}

.optin-form-modal .modal-dialog .modal-content .modal-header {
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(179, 164, 249, 0.50);
}

.optin-form-modal .modal-dialog .modal-content .modal-header .modal-title {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.optin-form-modal .modal-dialog .modal-content .modal-header .modal-header-button-group {
    display: flex;
    align-items: center;
}

/* General button styles */
.optin-form-modal .modal-dialog .modal-content .modal-header .modal-header-button-group .modal-header-button {
    background: #FFF;
    border: none;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    padding: 5px 15px;
    color: #7155EF;
    transition: background 0.3s, color 0.3s, border 0.3s, stroke 0.3s;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.optin-form-modal .modal-dialog .modal-content .modal-header .modal-header-button-group .modal-header-button span {
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto 2px;
}

/* Cancel button default state */
.optin-form-modal .modal-dialog .modal-content .modal-header .modal-header-button-group .modal-header-button.cancel {
    border: 1px solid #7155EF;
    color: #7155EF;
    background: #FFF;
    margin: auto 10px;
}

.optin-form-modal .modal-dialog .modal-content .modal-header .modal-header-button-group .modal-header-button.cancel svg path {
    stroke: #7155EF;
}

/* Create button default state */
.optin-form-modal .modal-dialog .modal-content .modal-header .modal-header-button-group .modal-header-button.create {
    background-color: #7155EF;
    color: #FFF;
}

.optin-form-modal .modal-dialog .modal-content .modal-header .modal-header-button-group .modal-header-button.create svg path {
    stroke: #FFF;
}

/* Hover effect for the Cancel button */
.optin-form-modal .modal-dialog .modal-content .modal-header .modal-header-button-group .modal-header-button.cancel:hover {
    background: #7155EF;
    color: #FFF;
}

/* Change SVG stroke on hover for Cancel button */
.optin-form-modal .modal-dialog .modal-content .modal-header .modal-header-button-group .modal-header-button.cancel:hover svg path {
    stroke: #FFF;
}

/* Hover effect for the Create button */
.optin-form-modal .modal-dialog .modal-content .modal-header .modal-header-button-group .modal-header-button.create:hover {
    background: #5837d9;
    /* Darker purple */
    color: #FFF;
}

/* Change SVG stroke on hover for Create button */
.optin-form-modal .modal-dialog .modal-content .modal-header .modal-header-button-group .modal-header-button.create:hover svg path {
    stroke: #FFF;
}

/* Active effect for the Cancel button */
.optin-form-modal .modal-dialog .modal-content .modal-header .modal-header-button-group .modal-header-button.cancel:active {
    background: #FFF;
    color: #7155EF;
    border: 2px solid #7155EF;
    /* Slightly bolder border */
}

/* Active effect for the Create button */
.optin-form-modal .modal-dialog .modal-content .modal-header .modal-header-button-group .modal-header-button.create:active {
    background-color: #5837d9;
    /* Darker purple when active */
    color: #FFF;
}


.optin-form-modal .modal-dialog .modal-content .modal-body {
    border: none;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    padding: 20px 0px;
    background-color: #fff;
}

.optin-form-modal .modal-dialog .modal-content .modal-body {
    border: none;
    border-radius: 12px;
    padding: 20px 0px;
    background-color: #fff;
}

.optin-form-modal .modal-dialog .modal-content .modal-body .form-group label {
    color: #4D4D4D;
    margin: 5px 0px;
}

/* Override Bootstrap's form-control */
.optin-form-modal .modal-dialog .modal-content .modal-body .form-group input.form-control {
    border-radius: 4px;
    /* Custom border radius */
    border: 1px solid #C8C8C8;
    /* Primary color border */
    background: #FFF;
    /* Background white */
    transition: border-color 0.3s, box-shadow 0.3s;
    /* Smooth transitions */
    margin: 0px auto;
}

/* Focus state (when the input is clicked or active) */
.optin-form-modal .modal-dialog .modal-content .modal-body .form-group input.form-control:focus {
    border-color: #7155EF;
    /* Primary color border on focus */
    box-shadow: 0 0 0 0.2rem rgba(113, 85, 239, 0.25);
    /* Light shadow with primary color */
    outline: none;
    color: #000;
    /* Remove default outline */
}

.optin-form-modal .form-title-input:focus {
    border: 1px solid #7155EF !important;
    /* Primary color border on focus */
    box-shadow: 0 0 0 0.2rem rgba(113, 85, 239, 0.25);
    /* Light shadow with primary color */
    outline: none;
    font-weight: 500;
    color: #000;
    /* Remove default outline */
}

.optin-form-modal .modal-dialog .modal-content .modal-body .form-group .form-control::placeholder {
    color: #C8C8C8;
    /* Primary color placeholder text */
}

.optin-form-modal .modal-dialog .modal-content .modal-body .form-group span {
    color: #4D4D4D;
    margin: 0px;
}

.add-input-button {
    width: 100%;
    border: none;
    border-radius: 4px;
    background-color: #7155EF;
    color: #FFF;
    outline: none;
    cursor: pointer;
    padding: 5px 15px;
    height: 35px;
    transition: background 0.3s, color 0.3s, border 0.3s, stroke 0.3s;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.add-input-button:active,
.add-input-button:focus {
    border: none;
    outline: none;
}

.add-input-button span {
    color: #fff !important;
    display: flex;
    align-items: center;
}

.add-input-button svg path {
    stroke: #FFF;
}

/* Hover effect for the Create button */
.add-input-button:hover {
    background: #5837d9;
    /* Darker purple */
    color: #FFF;
}

/* Change SVG stroke on hover for Create button */
.add-input-button:hover svg path {
    stroke: #FFF;
}

/* Active effect for the Create button */
.add-input-button:active {
    background-color: #5837d9;
    /* Darker purple when active */
    color: #FFF;
    outline: none;
}

/* Override Bootstrap's select */
.optin-form-modal .modal-dialog .modal-content .modal-body .form-group select.form-control {
    border-radius: 4px;
    /* Custom border radius */
    border: 1px solid #C8C8C8;
    /* Default border color */
    background: #FFF;
    /* Background white */
    transition: border-color 0.3s, box-shadow 0.3s;
    /* Smooth transitions */
    margin: 2px auto;
    /* Centering */
    padding: 5px 30px 5px 10px;
    /* Padding for better touch area */
    appearance: none;
    /* Remove default dropdown arrow */
    -webkit-appearance: none;
    /* Safari */
    -moz-appearance: none;
    /* Firefox */
}

/* Focus state for the select */
.optin-form-modal .modal-dialog .modal-content .modal-body .form-group select.form-control:focus {
    border-color: #7155EF;
    /* Primary color border on focus */
    box-shadow: 0 0 0 0.2rem rgba(113, 85, 239, 0.25);
    /* Light shadow with primary color */
    outline: none;
    /* Remove default outline */
}

/* Custom dropdown arrow */
.optin-form-modal .modal-dialog .modal-content .modal-body .form-group {
    position: relative;
    /* Positioning context for the dropdown icon */
}

.optin-form-modal .modal-dialog .modal-content .modal-body .form-group select.form-control::after {
    content: '▼';
    /* Custom arrow */
    position: absolute;
    /* Absolute positioning */
    right: 10px;
    /* Position from the right */
    top: 50%;
    /* Center vertically */
    transform: translateY(-50%);
    /* Adjust positioning */
    color: #7155EF;
    /* Color of the arrow */
    pointer-events: none;
    /* Prevent interaction with the arrow */
}

/* Change arrow color on focus */
.optin-form-modal .modal-dialog .modal-content .modal-body .form-group select.form-control:focus::after {
    color: #5837d9;
    /* Darker color for the arrow when focused */
}

/* Custom switch styles */
.custom-switch {
    display: none;
    /* Hide the default checkbox */
}

.switch {
    position: relative;
    width: 40px;
    height: 20px;
    background-color: #C8C8C8;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.switch::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: white;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: transform 0.3s;
}

/* Checked state */
.custom-switch:checked+.switch {
    background-color: #7155EF;
    /* Primary color when checked */
}

.custom-switch.bg-yellow:checked+.switch {
    background-color: #EDB421;
    /* Primary color when checked */
}

.custom-switch:checked+.switch::before {
    transform: translateX(20px);
    /* Move the switch toggle to the right */
}

.form-group {
    margin-bottom: 0px;
}

/* Override Bootstrap's textarea */
.optin-form-modal .modal-dialog .modal-content .modal-body .form-group textarea.form-control {
    border-radius: 4px;
    /* Custom border radius */
    border: 1px solid #C8C8C8;
    /* Default border color */
    background: #FFF;
    /* Background white */
    transition: border-color 0.3s, box-shadow 0.3s;
    /* Smooth transitions */
    margin: 2px auto;
    /* Margin */
    resize: none;
    /* Disable resizing if needed */
}

/* Focus state for textarea */
.optin-form-modal .modal-dialog .modal-content .modal-body .form-group textarea.form-control:focus {
    border-color: #7155EF;
    /* Primary color border on focus */
    box-shadow: 0 0 0 0.2rem rgba(113, 85, 239, 0.25);
    /* Light shadow with primary color */
    outline: none;
    /* Remove default outline */
    font-weight: 500;
    /* Font weight */
    color: #000;
    /* Text color */
}

/* Placeholder text color */
.optin-form-modal .modal-dialog .modal-content .modal-body .form-group textarea.form-control::placeholder {
    color: #C8C8C8;
    /* Placeholder text color */
}

.input-widget-header {
    padding-bottom: 15px;
    border-radius: 9px;
    background: #FFF;
    box-shadow: -1px 3px 1.9px -1px rgba(179, 149, 253, 0.35);
}

.step-form {
    width: 100%;
    margin: 20px auto;
    position: relative;
}

.step-form-processed-div {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: rgb(223 223 223 / 49%);
    z-index: 5;
    display: none;
    transition: all 0.3s;
}

.step-form-processed-div.show {
    display: flex !important;
    align-items: center;
    justify-content: center;
    /* Add this class to apply the flexbox and show the element */
    animation: background-glow 1s ease-in-out forwards;
    /* Animate background */
}

/* Background color transition */
@keyframes background-glow {
    0% {
        background: rgba(223, 223, 223, 0.49);
        /* Initial background color */
    }

    100% {
        background: rgba(223, 223, 223, 0.7);
        /* Glowing background color */
    }
}

/* Glow effect for the SVG */
.step-form-processed-div svg {
    animation: svg-glow 0.6s ease-in-out forwards;
    /* Animate the SVG */
}

@keyframes svg-glow {
    0% {
        transform: scale(0.8);
        /* Start smaller */
        filter: drop-shadow(0 0 10px rgba(11, 166, 64, 0.5));
        /* Slight glow */
    }

    100% {
        transform: scale(1);
        /* Scale to original size */
        filter: drop-shadow(0 0 20px rgba(11, 166, 64, 1));
        /* Stronger glow */
    }
}


.step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    margin: auto;
}

.step-header .step.current,
.step-header .step.completed {
    color: #7155EF;
    background: #fff;
}

.step {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid #CFCFCF;
    color: #CFCFCF;
    transition: background 0.3s;
}

.step.current,
.step.completed {
    border: 1px solid #7155EF;
}

.step.current .step-number,
.step.completed .step-number {
    display: none;
}

.step.current::before,
.step.completed::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    background: #7155EF;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.step.current::after,
.step.completed::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 7px;
    height: 13px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    transform: translate(-50%, -50%) rotate(50deg);
}


.step-title {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: #626262;
    width: 100px;
    text-align: center;
}

.step-line {
    height: 2px;
    width: calc(100% - 390px);
    background: #DFDFDF;
}

.step-form-body {
    border-radius: 7px;
    background: #FFF;
    box-shadow: 0px 0px 5.9px 0px rgba(0, 0, 0, 0.25);
    width: 100%;
    padding: 10px;
    margin: 40px auto 0px auto;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: none;
}

.step-form-body.active {
    opacity: 1;
    display: flex;
}

.step-form-preview {
    position: relative;
}

.step-form-preview::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    pointer-events: none;
    /* Allow clicks to pass through */
}


.editable-formgroup {
    position: relative;
}

.input-icon {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    color: #C8C8C8;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #C8C8C8;
    height: 20px;
    width: 25px;
}

.input-group-text {
    padding: 5px 10px;
    line-height: 1;
    font-size: 14px;
    height: 100%;
    border-radius: 0px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.editable-input {
    width: 100%;
    height: 35px;
    border: 1px solid #C8C8C8;
    border-radius: 4px;
    padding: 0 10px;
    font-size: 13px;
    font-weight: 400;
}

.editable-input.editable-input-radio {
    height: auto;
        /* display: flex;
        align-items: center; */
    padding: 0px !important;
    border: none !important;
}

.input-group>.editable-input {
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
    margin: 0px !important;
}

textarea.editable-input {
    padding-left: 10px;
    min-height: 35px;
    height: 50px;
}

.editable-control {
    display: flex;
    align-items: center;
    /* This already centers items vertically */
    position: absolute;
    /* top: 50%;
        right: -120px;
        transform: translate(-50%, -50%); */
    bottom: 2px;
    right: -80px;
}


.editable-control button {
    width: 30px;
    height: 30px;
    border-radius: 50px;
    background: #FFF;
    border: none;
    outline: none;
    box-shadow: 0px 0px 3.7px 0px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2px 5px;
    cursor: pointer;
    line-height: .8;
}

textarea {
    border-radius: 4px;
    /* Custom border radius */
    border: 1px solid #C8C8C8;
    /* Primary color border */
    background: #FFF;
    /* Background white */
    transition: border-color 0.3s, box-shadow 0.3s;
    /* Smooth transitions */
    margin: 2px auto;
}

textarea:focus {
    border-color: #7155EF;
    /* Primary color border on focus */
    box-shadow: 0 0 0 0.2rem rgba(113, 85, 239, 0.25);
    /* Light shadow with primary color */
    outline: none;
    font-weight: 500;
    color: #000;
    /* Remove default outline */
}

textarea.editable-input {
    padding: 5px 10px;
}


.cursor-pointer {
    cursor: pointer;
}

.form1-submit-btn {
    border-radius: 4px;
    width: 100%;
    padding: 5px 10px;
    cursor: pointer;
    outline: none;
    outline: none;
    border: 1px solid #7155EF;
    color: #FFF;
    background: #7155EF;
}

.form1-submit-btn:hover {
    background: #5837d9;
    border: 1px solid #5837d9;
    color: #FFF;
    outline: none;
}

.form1-submit-btn:focus {
    outline: none;
}

.form1-submit-btn:active {
    outline: none;
    border: 1px solid #7155EF;
    color: #FFF;
    background: #7155EF;
}

.visibility-none {
    visibility: hidden;
}

.form-title-input {
    border: 1px dashed #DFDFDF !important;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 16px !important;
    font-weight: 700;
}

.add-form-buttons {
    padding: 5px 10px;
    border-radius: 4px;
    border: 1px solid #7155EF;
    outline: none;
    cursor: pointer;
    box-shadow: none !important;
    min-width: 75px;
}

.btn-primary {
    background: #7155EF;
    color: #fff;
}

.btn-primary:hover {
    background: #5837d9;
    color: #fff;
}

.btn-primary:focus {
    outline: none;
    background-color: #7155EF;
}

.btn-primary:active {
    outline: none;
    background-color: #5837d9 !important;
    color: #fff;
}

.btn-primary-outline {
    background: #fff;
    color: #7155EF;
    border: 1px solid #7155EF;
}

.btn-primary-outline:hover {
    background: #7155EF;
    color: #fff;
    border: 1px solid #7155EF;
}

.btn-primary-outline:focus {
    outline: none;
}

.btn-primary-outline:active {
    outline: none;
    background: #5837d9;
    color: #fff;
    border: 1px solid #5837d9;
}

.text-primary-theme {
    color: #7155EF;
}

.step-form-body h4 {
    font-weight: 600;
    font-size: 16px;
}

.modal-close-btn span {
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close-btn button {
    width: 28px;
    height: 28px;
    border-radius: 50px;
    background: #FFF;
    border: none;
    outline: none;
    box-shadow: 0px 0px 3.7px 0px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2px 5px;
    position: absolute;
    top: -13px;
    right: -16px;
    z-index: 6;
    cursor: pointer;
}

.term-text-div {
    border: 1px dashed #DFDFDF !important;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px !important;
    font-weight: normal;
    display: none;
}

.customModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1051;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    /* No transition on display */
}

.customModalDialog {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translate(-50%, 0);
    /* Only horizontally center */
    z-index: 1053 !important;
    width: 100%;
    height: auto;
    max-width: 600px;
    max-height: 500px;
    background: #fff;
    border-radius: 12px;
    border-top: 2px solid #8E7BE4;
    border-bottom: 5px solid #8E7BE4;
    background: #FFF;
    box-shadow: none;
    transition: top 0.5s ease;
    /* Animate the top property */
}

/* Show modal with animation */
.customModal.show .customModalDialog {
    top: 50%;
    transform: translate(-50%, -50%);
    /* Center vertically */
}

.form-card-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 20px;
}

.form-card {
    border-radius: 12px;
    border-top: 1px solid rgba(175, 162, 253, 0.70);
    border-right: 1px solid rgba(175, 162, 253, 0.70);
    border-bottom: 5px solid rgba(175, 162, 253, 0.70);
    border-left: 1px solid rgba(175, 162, 253, 0.70);
    background: #FFF;
    box-shadow: 1px 1px 5.2px 0px #EAE7FF;
    width: 400px;
    /* margin: 10px 0 0 0; */
    width: 350px;
}

.part1 {
    border-bottom: 1px solid #C7BFFE;
    display: flex;
    flex-direction: column;
}

.part1 .form-button {
    border-radius: 15px;
    background: #F6F4FF;
    width: 172px;
    border: none;
    outline: none;
    margin: 10px auto;
    padding: 5px 10px;
    color: #5E5E5E;
}

.part2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px;
}

.part2 label {
    margin: 1px 0px;
    color: #8F8F8F;
    font-size: 13px;
}

.part2 h4 {
    margin: 0px 0px 1px 0px;
    font-size: 14px;
    font-weight: normal;
}

.part2 .dropdown {
    background: #EAE7FF;
    width: 40px;
    height: 20px;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    outline: none;
    border: none;
    cursor: pointer;
    position: relative;
}

.part2 .dropdown::before {
    position: absolute;
    content: '';
    top: 6px;
    left: 13%;
    width: 7px;
    height: 7px;
    background: #000000;
    border-radius: 50%;
    margin: 0px 5px;
}

.part2 .dropdown::after {
    position: absolute;
    content: '';
    top: 6px;
    right: 13%;
    width: 7px;
    height: 7px;
    background: #00000033;
    border-radius: 50%;
    margin: 0px 5px;
}

.dropdown-body {
    position: absolute;
    bottom: -20px;
    left: 50px;
    min-width: 100px;
    min-height: 50px;
    background: #fff;
    display: none;
    border-radius: 10px;
    box-shadow: 0px 0px 3.7px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
}

.dropdown.show .dropdown-body {
    display: block;
}

.dropdown-body ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
    width: 100%;
}

.dropdown-body ul li {
    padding: 5px 10px;
    width: 100%;
    display: flex;
    align-items: center;
}

.dropdown-body ul li:hover {
    background: #EAE7FF;
}

.dropdown-body ul li .dropdown-icon {
    margin-right: 5px;
}

.dropdown-body ul li .dropdown-text {
    font-size: 13px;
    color: #000;
}

.dropdown-body::before {
    content: '';
    position: absolute;
    bottom: 29px;
    transform: rotate(270deg);
    left: -17px;
    border-width: 8px;
    border-style: solid;
    border-color: transparent transparent #fff transparent;
}

.form-card img {
    width: 172px;
    height: 162px;
    margin: auto;
    margin-top: 20px;
}

.form-button .single-optin {
    width: 177px;
    height: 29px;
}

.sortable-input {
    position: absolute;
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 2px;
    left: -80px;
}

.sortable-input-icon[data-type="up"] {
    transform: rotate(180deg);
}

.sortable-input-icon,
.delete-icon-rounded,
.sortable-input-option-field-icon {
    width: 30px;
    height: 30px;
    border-radius: 50px;
    background: #FFF;
    border: none;
    outline: none;
    box-shadow: 0px 0px 3.7px 0px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2px 5px !important;
    cursor: pointer;
    line-height: .8;
    /* Indicate it's clickable */
}

.delete-icon-rounded:focus,
.delete-icon-rounded:active {
    outline: none;
}

.sortable-input-icon svg path {
    stroke: #5B5B5B !important;
}

/* Hide the "up" icon in the first .editable-formgroup */
.editable-formgroup:first-child .sortable-input-icon[data-type="up"] {
    visibility: hidden;
}

/* Hide the "down" icon in the last .editable-formgroup */
.editable-formgroup:last-child .sortable-input-icon[data-type="down"] {
    visibility: hidden;
}

/* Hide the "down" icon in the last .editable-formgroup */
.editable-formgroup:last-child .sortable-input {
    flex-direction: row-reverse;
}

.add-more-option {
    cursor: pointer;
    color: #7155EF;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
    text-align: center;
}

.choose-options-text {
    margin: 0px;
    padding: 0px;
    cursor: pointer;
    color: #7155EF;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
    text-align: center;
}

.not-options {
    display: block;
}

.show-options {
    margin-top: 16px;
}

/* Custom CSS Oct 1 */
#form_name {
    margin: 3px 0px 5px 0px !important;
}

.new-form-create-in-progress-text {
    font-size: 12px;
}

.form-heading{
    width: 100%;
    font-weight: 500;
    font-size: 20px !important;
    text-align: center;
    margin: 0px;
}

.form-subheading{
    width: 100%;
    font-size: 16px;
    text-align: center;
    margin: 4px 0px 0px 0px;
}