.hs-button {
    border: none;
    color: #fff;
    height: 96px;
    text-align: center;
    background-color: #2a48df;
    border-radius: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 64px;
    font-family: Poppins, sans-serif;
    font-size: 20px;
    font-weight: 500;
    transition: box-shadow .2s;
    box-shadow: inset 0 0 20px 20px transparent;
    cursor: pointer;
}

.hs-button:hover {
    box-shadow: inset 0 0 20px 20px rgba(0, 0, 0, .1);
}

.hs-input {
    width: 100%;
    height: 48px;
    color: #232326;
    background-color: #fff;
    border: 1px solid rgba(105, 113, 128, .3);
    border-radius: 6px;
    margin-bottom: 0;
    padding: 0 20px 0 1rem;
    font-size: 16px;
    line-height: 24px;
    transition: background-color .2s;
}

.hs-form-field {
    margin-bottom: 4px;
}

.hs-form-checkbox-display {
    display: flex;
    align-items: center;
}

.hs-form-field > label {
    box-sizing: border-box;
    max-width: 500px;
    color: #212d3a;
    margin: 1rem 0 0.5rem;
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
}

.inputs-list.multi-container {
    padding-left: 0;
}

.inputs-list.multi-container .hs-form-checkbox {
    list-style: none;
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.inputs-list.multi-container .hs-form-checkbox input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
}

.inputs-list.multi-container .hs-form-checkbox label {
    font-weight: normal;
}

textarea.hs-fieldtype-textarea {
    height: 124px;
    padding-top: 10px;
    /* margin-bottom: 2rem; */
}

.hs-form-booleancheckbox {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.hs-form-booleancheckbox input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
}

.hs-form-booleancheckbox label {
    font-weight: normal;
    margin-left: 1rem;
}

.inputs-list {
    padding-left: 0;
}

.hs-form-booleancheckbox-display {
    padding-left: 0;
    margin-left: 0 !important;
}

.no-list {
    list-style: none;
}

.hs-error-msgs {
    color: red;
}



.hs-form-checkbox {
    padding-left: 0;
}



.hs-error-msgs label,
.hs-error-msg {
    font-weight: normal;
    margin-left: -16px;
    margin-top: 0rem;
}

.hs-error-msg {
    margin-top: 0.5rem;
    font-size: 0.825rem;
}

/* GRID EDITOR */
.hs-form-private {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 1.5rem;
    grid-row-gap: 0;
}

.hs-form-private > div {
    grid-column: span 1;
}

.hs-form-private > div:nth-child(n+5):nth-child(-n+7) {
    grid-column: span 2;
   
}

.hs-form-private > div:nth-child(n+8) {
    grid-column: span 2;
    margin-top: 2rem;
}

.hs_submit .actions {
    display: flex;
    justify-content: flex-start;
}

@media screen and (max-width: 768px) {
    .hs-form-private {
        display: flex;
        flex-direction: column;
    }
}

/* END GRID EDITOR */

.hs-form-booleancheckbox {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    align-items:normal;
}