body {
    display: flex;
    -webkit-align-items: stretch;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    height: 100%;
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
}

header {
    background-color: var(--color-accent);
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    /* flex-grow: 1; */
    -webkit-align-items: flex-end;
    -webkit-box-align: flex-end;
    -ms-flex-align: flex-end;
    align-items: flex-end;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

main {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    background: var(--white);
    position: relative;
    min-width: 0;
    overflow-x: scroll;
}


h1 {
    font-weight: bold;
    font-size: 18px;
}

h2 {
    font-weight: bold;
    font-size: 17px;
}

.description {
    font-family: 'Inter', sans-serif;
    line-height: 18px;
    font-size: 10px;
    color: #999;
}

.button {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    padding: 12px 20px;
    background-color: #606060;
    border-radius: 5px;
    border: 0;
    color: white;
    cursor: pointer;
    transition: 0.25s ease;
    text-align: center;
    text-align: -webkit-center;
}


.button:hover {
    box-shadow: 0 5px 10px #cccccc;
}


.nbutton {
    cursor: pointer;
    display: flex;
    color: var(--color-primary);
    font-weight: bold;
    font-size: 16px;
    align-items: center;
}


.nav__body {
    padding: 2.5rem 3rem;
    width: 12rem;
    position: relative;
}

.main-body {
    width: 53rem;
    max-width: 100%;
    padding: 2.5rem 3rem;
}

.home-body {
    min-height: 100vh;
    min-width: 100%;
    overflow: auto;
    background: var(--color-accent);
    display: flex;
    justify-content: center;
}

.home-body-container {
    width: 900px;
    margin: 30px 50px;
    display: inline-table;
}

.pay-body-container {
    width: 100%;
    max-width: 420px;
    margin: 30px 50px;
    display: inline-table;
}

.authentication-body {
    width: 27rem;
    max-width: 100%;
    min-height: 100vh;
    padding: 0rem 4rem;
    display: flex;
    align-items: center;
}

.vcenter {}

.nav__title {
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    line-height: 26px;
    font-size: 18px;
}

.nav__profile {
    display: flex;
    align-items: center;
    position: fixed;
    bottom: 0;
    margin: 35px 0;
    font-weight: bold;
    font-size: 14px;
    color: #333333;
    cursor: pointer;
}

.nav__profile img.nav__profilepic {
    height: 32px;
    opacity: 0.5;
    margin-right: 12px;
}

.mav__menu {
    margin: 35px 0;
}

.mav__menu li {
    cursor: pointer;
    display: flex;
    filter: grayscale(90%);
    align-items: center;
    padding: 14px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mav__menu li.sub-menu {
    /*padding: 10px 0 !important;*/
}

.mav__menu li img {
    height: 20px;
    width: 20px;
    margin-right: 14px;
}

.mav__menu li img.dropmore {
    height: 12px;
    width: 12px;
    margin-right: 0px;
    margin-left: 14px;
}

.mav__menu li p {
    color: #F08057;
    font-weight: 500;
    font-size: 14px;
}

.mav__menu li.sub-menu p {
    font-weight: normal;
}

.mav__menu li.selected,
.mav__menu li:hover {
    filter: grayscale(0%);
}


.sub-nav {
    font-weight: 500;
    font-size: 14px;
    margin: 25px 0 32px 0;
    display: flex;
    justify-content: space-between;
    box-shadow: inset 0 -1px rgb(235, 238, 241);
}

.sub-nav .sub-nav__primary {
    display: flex;
}

.sub-nav .sub-nav__actions {
    display: flex;
}

.sub-nav .sub-nav__primary div {
    color: #B1B1B1;
    margin-right: 32px;
}

.sub-nav div.selected {
    color: #F08057;
    box-shadow: inset 0 -2px #F08057;
}

.sub-nav div p {
    cursor: pointer;
    margin: 15px 0;
}

.sub-nav input {
    border: 0;
    width: 165px;
    font-family: 'Inter', sans-serif;
    font-weight: normal;
    padding: 13px 18px;
    margin-bottom: 2px;
    color: #333333;
}

table {
    font-family: 'Inter', sans-serif;
    font-weight: normal;
    font-size: 12px;
    color: rgb(64, 68, 82);
    border-collapse: collapse;
    -webkit-user-select: none;
    /* Safari */
    -ms-user-select: none;
    /* IE 10+ and Edge */
    user-select: none;
    /* Standard syntax */
    transition: 0.25s ease;
}

td,
tr,
th {
    border-collapse: collapse;
    cursor: all-scroll;
}

table tr th {
    font-size: 11px;
    font-weight: bold;
    color: #B1B1B1;
}

table tr th,
table tr td {
    padding: 12px 0;
    box-shadow: inset 0 -1px rgb(235, 238, 241);
}

table tr:hover td {
    cursor: pointer;
    background-color: rgb(246, 248, 250);
}

table tr.nohover:hover td {
    cursor: pointer;
    background-color: unset !important;
}


table.table-normal {
    user-select: unset !important;
}

table.table-normal tr:hover td {
    cursor: default;
    background-color: unset !important;
}

table.table-normal tr th,
table.table-normal tr td {
    cursor: default;
    box-shadow: inset 0 0px rgb(235, 238, 241);
}

.drag {
    height: 15px;
    width: 30px;
    background-image: url('/static/assets/drag.svg');
    background-repeat: no-repeat;
    background-size: 34px 13px;
}

.issue_button {
    cursor: pointer;
    display: flex;
    color: var(--color-primary);
    font-weight: bold;
    font-size: 13px;
    align-items: center;
}
.send_mail_icon {
   color: var(--color-primary);
}


/* FORM */

.form-container {
    padding: 2.5rem 0;
    width: 100%;
}

.form-holder {
    width: 100%;
}

.form-view {
    /*width: 100%;*/
    display: flex;
    flex-direction: row;
    margin-bottom: 30px;
    align-items: center;
}

.form-view--top {
    align-items: flex-start;
}

.form-view--vertical {
    flex-direction: column;
    align-items: start;
}

.form-view__label {
    width: 40%;
    padding: 0 20px 0 0;
}

.form-view__input {
    display: inherit;
    width: 60%;
}

.form-view__head {
    width: 35%;
    padding: 0 20px 0 0;
}

.form-view__body {
    width: 65%;
    background: var(--color-accent);
    /*background: var(--white);*/
    border-radius: 9px;
    box-shadow: 0 1px 3px #00000029;
    /*box-shadow: 0 2px 4px #00000029;*/
}

.sub-form {
    box-shadow: inset 0 -0.5px #00000029;
}

.sub-form__head {
    display: flex;
    cursor: pointer;
    justify-content: space-between;
    padding: 16px 20px;
    align-items: center;
}

.sub-form__body {
    display: none;
    padding: 10px 20px 20px 20px;
}

.sub-form__head img {
    height: 7px;
}

.form-view__input--vertical {
    margin-top: 20px;
}

.form--label {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: #7B7B7B;
}

.form--description {
    font-family: 'Inter', sans-serif;
    font-weight: normal;
    font-size: 12px;
    margin-top: 7px;
    color: #979A9D;
    opacity: 0.7;
}

.form--input {
    width: 100%;
    padding: 9px 16px;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-weight: normal;
    font-size: 12px;
    border: 4px SOLID #eae7e1;
    background: transparent;
}

.form--drag_drop {
    /*width: 100%;*/
    padding: 30px 26px;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: normal;
    font-size: 12px;
    text-align: center;
    border: 4px DASHED #eae7e1;
    background: transparent;
}

.form--input__bg {
    background: #FFFFFF;
    border: 4px SOLID #FFFFFF !important;
}

.form--select {
    width: auto;
    padding: 9px 9px;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-weight: normal;
    font-size: 12px;
    border: 4px SOLID #eae7e1;
}

.form-tile-container {
    /*display: flex;*/
    /*flex-direction: row;*/
}

.form-tile {
    width: 96px;
    display: inline-block;
    height: 96px;
    padding: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: normal;
    font-size: 12px;
    border: 4px SOLID #eae7e1;
    border-radius: 10px;
    margin-right: 9px;
    margin-bottom: 12px;
}

.form-tile:hover,
.form-tile--selected {
    border: 4px SOLID var(--color-primary);
    cursor: pointer;
    transition: 0.25s ease;
}

.form-tile__image {
    width: 100%;
    height: 85%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-tile img {
    height: 40px;
}

.button-social {
    background: #E0E0E0;
    color: #555555;
    font-weight: 600;
    display: flex;
    align-items: center;
    /*padding: 12px 40px;*/
}

.button-social:hover {
    background: #D0D0D0;
    box-shadow: 0 0 0 #555555;
}

/* FORM */


.page {
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    color: #B1B1B1;
    font-size: 12px;
}

.action-button {
    padding: 7px 12px 7px 15px;
    background: var(--color-primary);
    /*color: #333333;*/
    /*box-shadow: 0 1px 3px #00000029;*/
}

.divider {
    height: 0.5px;
    margin: 15px 0 15px 0;
    background-color: #eeeeee;
}

.view_title {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #B1B1B1;
    font-size: 12px;
}

.view_value {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #555555;
    font-size: 12px;
}


/* WELCOME PAGE */

.welcome-head {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0 30px 30px 30px;
}

.community-tile {
    background: #ffffff;
    box-shadow: 0px 2px 4px #00000029;
    border-radius: 20px;
    padding: 20px 30px;
    display: flex;
    flex-direction: row;
    margin-bottom: 15px;
    align-items: center;
}

.community-tile div {
    width: 100%;
}

.community-tile img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 20px;
}

.community-tile button,
.community-button {
    background: #F08057;
    box-shadow: 0px 2px 4px #00000029;
    border-radius: 84px;
    padding: 10px 26px;
    border: 0;
    cursor: pointer;
    color: #FFF;
    
    font-size: 12px;
    font-family: 'Inter', sans-serif !important;
    font-weight: 600;
    box-sizing: border-box;
    text-align: center;
}

button:disabled,
button[disabled] {
    background-color: #cccccc;
    color: #666666;
}

.button-negative {
    background: #FCF6EC;
    border: 2px SOLID #F08057;
    color: #F08057;
    box-shadow: 0 0 0 !important;
    padding: 9px 26px;
}

.comunity-buttonmanage {
    background: #EEEEEE !important;
    color: #7E7E7E !important;
    padding: 10px 20px !important;
}

.comunity-addGoogleWallet {}

.comunity-addGoogleWallet img {
    width: auto;
    height: 37px;
    border-radius: 0;
    margin: 0;
}

.community-buttongrey {
    background: #666666 !important;
}

.comunity-buttonmanage {
    padding: 10px 20px !important;
}

/* WELCOME PAGE */


/* COMMUNITY HOME */

.community-head {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0 30px 20px 30px;
    align-items: center;
}


.level-tile {
    background: #ffffff;
    box-shadow: 0px 2px 4px #00000029;
    border-radius: 20px;
    padding: 20px 20px;
    display: flex;
    flex-direction: row;
    margin-bottom: 15px;
    align-items: center;
}

.subscription-tile {
    background: #ffffff;
    box-shadow: 0px 2px 4px #00000029;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: row;
    margin-top: 15px;
    margin-bottom: 15px;
    align-items: center;
}

.subscription-tilev {
    flex-direction: column;
    align-items: flex-start;
}

.cover_image {
    border-radius: 20px;
    box-shadow: 0px 2px 4px #00000029;
    width: 100%;
}

.level_slab_container {
    cursor: pointer;
    padding: 10px 25px;
    border-radius: 30px;
    border: 2px SOLID #BBBBBB;
    display: flex;
    flex-direction: row;
    margin-bottom: 15px;
    align-items: center;
    color: #BBBBBB;
}

.level_slab_container p {
    margin-right: 15px;
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.slab_selected {
    border: 2px SOLID #F08057 !important;
    color: #F08057 !important;
    background: #FCF6EC;
}

.pay_container {
    display: flex;
    flex-direction: row;
    color: #F08057;
    padding: 14px 18px;
    border-radius: 15px;
    background: #F9EFDE;
    font-size: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    align-items: center;
    margin: 20px 0;
}

.pay_container p {
    font-size: 28px;
}

.pay_container input,
.pay_amount {
    color: #F08057;
    font-size: 40px;
    border: 0;
    outline: 0;
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    width: 100%;
}

.pay_container input::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #F08057;
    opacity: 0.5;
}

.pay_container input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #F08057;
    opacity: 0.5;
}

.pay_container input::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #F08057;
    opacity: 0.5;
}

.create-body {
    min-height: 100vh;
    min-width: 100%;
    overflow: auto;
    background: var(--color-accent);
    display: flex;
    flex-direction: column;
}

.create-container {
    display: flex;
    justify-content: center;
    /*min-height: 80vh;*/
    padding-top: 100px;
    align-items: center;
}

.create-subcontainer {
    width: 500px;
}

.create-subcontainer p {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    line-height: 1.7;
    color: #7E7E7E;
    font-size: 14px;
}

.c_url {
    width: 450px;
    border-radius: 5px;
    /*background: transparent;*/
    font-family: 'Inter', sans-serif;
    font-weight: normal;
    font-size: 12px;
    border: 4px SOLID #E0DDD7;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 20px;
}

.c_url input {
    outline: 0;
    width: 100%;
    padding: 10px 0 10px 16px;
    background: transparent;
    border: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #7E7E7E;
    font-size: 14px;
}

.c_url p {
    margin: 0;
    padding: 9px 16px 9px 0px;
}

.create-subcontainer button {
    padding: 12px 100px !important;
}

.community_dp_container {
    width: 100px;
    height: 80px;
}

#community_dp_source {
    cursor: pointer;
    position: absolute;
}

.community_dp_hover {
    position: absolute;
    cursor: pointer;
    /*visibility: hidden;*/
}

/* COMMUNITY HOME */

/* DASHBOARD HOME */

.dashboard {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dashboard-row {
    width: 100%;
    display: flex;
    gap: 20px;
}

.dashboard-tile {
    border-radius: 20px;
    padding: 25px;
    min-height: 100px;
}

.dashboard-graph {
    border-radius: 20px;
    padding: 10px 10px 0 10px;
    min-height: 100px;
}

.dashboard-tile .dvalue {
    font-family: 'Inter', sans-serif !important;
    font-size: 32px;
    font-weight: 300;
    margin: 10px 0 20px 0;
    color: #121212;
}

.dashboard-tile .dtitle,
.dashboard-graph .dtitle {
    font-family: 'Inter', sans-serif !important;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 12px;
    color: #00000080;
}

/* DASHBOARD HOME */

/* RECEIPT */

.receipt-home {
    min-height: 100vh;
    min-width: 100%;
    overflow: auto;
    background: var(--color-primary);
    display: flex;
    justify-content: center;
}

.receipt-body-container {
    width: 100%;
    max-width: 500px;
    margin: 30px 50px;
    display: inline-table;
}

.receipt-main {
    width: 100%;
    background: #FFFFFF;
    border-radius: 15px;
    padding: 26px 30px;
    margin: 25px 0 0 0;
    box-shadow: 0 3px 6px #00000029;
}

/* RECEIPT */

.des__only {
    display: unset;
}

.mob__only {
    display: none;
}

.create-form header .mav__menu {
    display: none;
}

.form-container {
    max-width: 980px;
    margin: auto;
}

.app_row {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.app_title {
    position: relative;
    text-align: center;
}

.view_form,
.edit_form {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-size: 15px;
    cursor: pointer;
}

.start_onboarding_btn {
    background-color: var(--color-primary);
    color: #fff
}

.start_onboarding_btn_connected {
    pointer-events: none;
}

.edit_form {
    display: none;
}

.form_preview {
    display: none
}

.preview_form .form_preview,
.preview_form .edit_form {
    display: block;
}

.document_action>a {
    cursor: pointer;
}

#drop-area {
    padding: 20px;
    text-align: center;
    margin-top: 50px;
    border: 4px dashed #F08057;
    border-radius: 15px;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: relative;
}

#drop-area.hover {
    border-color: #333;
}

#drop-area p {
    font-size: 14px;
    font-weight: 600;
}

#drop-area button {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.preview_form #form_builder_submit,
.preview_form .view_form {
    display: none;
}

.app__col_1 {
    width: 40%;
}

.app__col_2 {
    width: 60%;
}

.app_field_button {
    background-color: #ececec;
    padding: 5px 15px;
}

.dynamic_form_elements {
    display: none;
}

.menu-list .app_field_button.form-tile {
    background-color: #ffffff;
    margin: 0;
    width: 100%;
    border: none;
    box-shadow: 0px 9px 12px -4px #9D9D9D33;
    padding: 5px 15px 15px;
    transition: all .3s ease;
}

.menu-list .app_field_button.form-tile:hover {
    transform: scale(1.1);
}

.flexible-li {
    background-color: #FFFFFF;
    padding: 0 0 30px;
    box-shadow: 0px 9px 12px -4px #9D9D9D33;
    border-left: 5px solid #F08057;
    border-radius: 0 10px 10px 0;
    font-size: 14px;
    max-width: 500px;
    margin-top: 20px;
}

.form-group {
    margin-top: 15px;
    padding: 0 30px;
}

.form-group label {
    display: block;
    font-size: 14px;
}

.form-group input {
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 10px;
}

.form-group input[type="checkbox"] {
    width: auto;
    display: inline-block;
    margin: 0;
    padding: 0;
}

header .form_block,
.create-form header .nav__title,
.create-form header .nav__profile {
    display: none;
}

.create-form header .form_block,
.create-form header .form_block .mav__menu,
.create-form header .form_block .nav__profile {
    display: block;
}

.create-form header .form_block .mav__menu li img {
    height: 35px;
    width: auto;
    margin-right: 0;
}

.create-form header .form_block .mav__menu li p {
    font-size: 12px;
    color: #000000;
    text-align: center;
}

.flexible-li .flexible-item-title span {
    vertical-align: top;
    padding: 3px 10px;
    border-radius: 50%;
    background-color: #F08057;
    margin-right: 10px;
    color: #FFFFFF;
}

.flexible-item-title {
    padding: 15px 20px;
    background-color: #FCF6EC;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form_del,
.form_add {
    display: inline-block;
}

.form_del img {
    height: 17px;
    cursor: pointer;
}

.form_add img {
    padding-right: 10px;
    height: 17px;
    cursor: grab;
}

.create-form header .form_block .mav__menu {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: -14px 0;
}

.form_block .mav__menu li {
    padding: 10px;
    width: 45%;
}

.create-form .nav__body {
    padding: 2.5rem 30px;
    width: auto;
    max-width: 400px;
}

.form_builder {
    border: 4px dashed #F08057;
    margin-top: 30px;
    position: relative;
    border-radius: 15px;
    min-height: 450px;
}

.dg_dp_txt {
    font-size: 30px;
    color: #7B7B7B;
    font-weight: 700;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.form_builder.hide_border {
    border: none;
}

.form_builder.hide_border .dg_dp_txt {
    display: none;
}

.form-group .ccontainer {
    font-size: 14px;
}

.create-form .app_title {
    font-size: 30px;
}

.form_option_field_group {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.form_option_field_group input {
    width: 90%;
}

.option_delete {
    display: inline-block;
    cursor: pointer;
}

.option_delete img {
    height: 20px;
}

.form_builder_button {
    margin-top: 20px
}

.loading {
    position: relative;
    pointer-events: none;
}

.form_tit {
    text-transform: capitalize;
}

.form_builder .drag {
    cursor: -webkit-grabbing
}

.loading:after {
    content: '';
    position: absolute;
    border: 3px solid #fff;
    border-top: 3px solid #000;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    animation: spin 2s linear infinite;
    top: 50%;
    left: 50%;
    margin-top: -11px;
    margin-left: -10px;
}

.button_group {
    position: relative;
}

.admin_approve {
    text-align: center;
}

.error_input {
    border: 2px solid #ff0000;
}

input[type=checkbox].error_input+span,
input[type=radio].error_input+span {
    border: 1px solid red;
}

.subscription_form_builder_submit .text--macro {
    text-align: center;
}

.form_submittion_result {
    width: 410px
}

.form_submittion_result .view_title {
    text-transform: capitalize;
}

.button_group .thank {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #f08057;
    color: #fff;
    text-align: center;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-content .thank {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #f08057;
    color: #fff;
    text-align: center;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
}

.popup-content .thank.error {
    background-color: #ff0000;
    font-size: 16px;
}

.loading:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #606060;
    top: 0;
    left: 0;
}

.form-group select {
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 10px;
}

.mrt10 {
    margin-top: 10px;
}

.mrt5 {
    margin-top: 5px;
}

.form-group input[type="radio"] {
    display: inline-block;
    width: auto;
    margin: 0;
    padding: 0;
}

.radio_checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: #eee;
    border-radius: 50%;
}

.ccontainer input:checked~.radio_checkmark {
    background-color: var(--color-primary);
}

.ccontainer input:checked~.radio_checkmark:after {
    display: block;
}

.radio_checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.ccontainer .radio_checkmark:after {
    left: 50%;
    top: 50%;
    width: 10px;
    height: 10px;
    background-color: #FFFFFF;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.subscription-tile .form-group {
    margin-top: 20px;
}

.subscription-tile .form-group label {
    color: #7B7B7B;
}

.form_preview {
    margin: 0 -30px
}

.update_profile_card {
    background-color: #FFFFFF;
    box-shadow: 0 1px 3px #00000029;
    border-radius: 10px;
    padding: 25px;
    margin-top: 25px;
}

.update_profile .form_control label {
    display: block;
    font-size: 14px;
}

.update_profile .form_control .form_input,
.update_profile .form_control .success_input {
    width: 100%;
    padding: 9px 16px;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-weight: normal;
    font-size: 12px;
    border: 2px SOLID #eae7e1;
    background: transparent;
    margin-top: 10px;
}

.form_groups {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0 -10px;
    row-gap: 20px;
}

.form_group {
    width: 50%;
    display: inline-block;
}

.update_profile .form_control {
    padding: 0 10px;
}

.social_media_input {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.social_media_example {
    padding: 9px;
    border-radius: 5px 0 0 5px;
    font-family: 'Inter', sans-serif;
    font-weight: normal;
    font-size: 12px;
    border: 2px SOLID #eae7e1;
    background: #eae7e1;
    display: inline-block;
    margin-top: 10px;
}

.update_profile .form_control .social_media_input .form_input {
    border-radius: 0 5px 5px 0;
}

.form_input_button {
    text-align: right;
    margin-top: 20px;
}

.update_profile .error_input {
    width: 100%;
    padding: 9px 16px;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-weight: normal;
    font-size: 12px;
    background: transparent;
    margin-top: 10px;
}

.update_profile .error_hold.error_msg {
    font-family: 'Inter', sans-serif;
    font-weight: normal;
    font-size: 12px;
    margin-top: 7px;
    color: #ff0000;
    opacity: 0.7;
}

.update_profile .error_hold.success_msg {
    font-family: 'Inter', sans-serif;
    font-weight: normal;
    font-size: 12px;
    margin-top: 7px;
    color: #979A9D;
    opacity: 0.7;
}

.strip_card {
    background-color: #FFFFFF;
    box-shadow: 0 1px 3px #00000029;
    border-radius: 10px;
    padding: 25px;
    display: flex;
    flex-direction: row;
    margin-top: 25px;
}

.strip_card_S {
    font-family: 'Inter', sans-serif;
    font-size: 150px;
    font-weight: bold;
    color: #979A9D;
    background-color: #FCF6EC;
    padding: 20px 60px;
    display: inline-block;
    line-height: 1;
}

.strip_card_cont {
    padding-left: 30px;
}

.strip_card_cont .title {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    margin-top: 10px;
}

.strip_card_cont .desc {
    font-size: 14px;
    font-weight: 400;
    margin-top: 10px;
    color: #000000;
}

.strip_box {
    background-color: #FFFFFF;
    box-shadow: 0 1px 3px #00000029;
    border-radius: 10px;
    margin-top: 50px;
}

.strip_box .title {
    background-color: #eae7e1;
    padding: 20px;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1.2px;
    border-radius: 10px 10px 0 0;
    line-height: 1.4;
    color: #000000;
}

.strip_box_cont {
    padding: 20px;
}

.strip_box_cont .desc {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #000000;
}

.strip_box_cont .button {
    display: block;
    margin-top: 15px;
}

.strip_box_cont .button:hover {
    color: #FFFFFF;
}

.box_card {
    padding: 50px 20px;
    background: #ffffff;
    box-shadow: 0px 2px 4px #00000029;
    border-radius: 20px;
}

.txt_center {
    text-align: center;
}

.page_title {
    background-color: #eae7e1;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    border-radius: 10px;
    line-height: 1.4;
    color: #000000;
    margin-bottom: 20px;
}

.drop_box {
    border: 4px dashed #F08057;
    border-radius: 15px;
}

.update_profile_card .drop_box img {
    padding: 20px;
}

.update_profile_card .drop_box_cont {
    margin: 0 0 30px 0;
}

.update_profile_card .drop_box_cont .text--nano {
    font-size: 14px !important;
    font-weight: 600;
}

.update_profile_card .drop_box_cont .text--nano.desc {
    font-size: 12px !important;
    font-weight: 400;
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding-top: 0;
}
.popup-content form{
    text-align: left;
}
.popup-content label{
   display: block;
   margin-bottom: 10px;
}
.export_members, .event_qr_print {
    cursor: pointer;
}
.display_event_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popup-content {
    background: #F6F8FC;
    padding: 30px 20px;
    border-radius: 10px;
    width: 100%;
    max-width: 600px;
    text-align: center;
    box-shadow: 0px 4px 10px 2px #0003;
    margin: 0 30px;
    position: relative;
}

.popup.active {
    display: flex;
}

.title_20 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    color: #000000;
}

.btn-grp {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    justify-content: center;
    position: relative;
}

.btn {
    font-size: 16px;
    padding: 10px 35px;
    color: #ffffff;
    display: inline-block;
    background-color: #ff9801;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all .4s;
}

.btn:hover {
    color: #ff9801;
    background-color: transparent;
    border: 1px solid #ff9801;
}

.btn-grp .btn+.btn {
    background-color: transparent;
    border: 1px solid #e0e0e0;
    color: #323232;
}

.btn-grp .btn+.btn:hover {
    background-color: #e0e0e0;
}

.field_input {
    display: block;
    background-color: #ffffff;
    width: 100%;
    padding: 10px 20px 10px 45px;
    font-size: 16px;
    line-height: 1.2;
    color: #000000;
    border: 1px solid transparent;
    box-shadow: 0 2px 5px #0003;
}

.label {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    color: #000000;
    text-align: left;
}

.label+.field_input {
    margin-top: 10px;
}

.field_input.error_input {
    border: 1px solid #ff0000;
}

.field_grp {
    margin-top: 20px;
    position: relative;
}

.fa-map-marker-alt.field_icon {
    top: 21px;
}

.field_icon {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    font-size: 19px;
}
.popup_open .common_popup {
    opacity: 1;
    visibility: visible;
}

.common_popup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 70%);
    z-index: 9999;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
}

.popup_wrap {
    display: table;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    position: relative;
}

.popup_inner {
    display: table-cell;
    vertical-align: middle;
    padding: 90px 30px;
}

.popup_box {
    position: relative;
    max-width: 590px;
    margin: auto;
}

.popup_grid {
    display: block;
    position: relative;
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
}

.popup_grid .close {
    padding: 12px;
    position: absolute;
    top: 7px;
    right: 5px;
    border-radius: 50%;
}

.popup_grid .close_menu {
    display: block;
    width: 15px;
    margin: auto;
    height: 15px;
}

.close_line {
    position: relative;
    right: 0;
    top: -4px;
    width: 15px;
    height: 2px;
    background-color: transparent;
    display: inline-block;
}

.close_line:before {
    transform: rotate(-45deg);
}

.close_line::after {
    transform: rotate(45deg);
}

.close_line:before, .close_line:after {
    content: '';
    position: absolute;
    right: 0;
    width: 15px;
    height: 100%;
    background-color: #000;
    display: block;
}

.popup_show_hide {
    cursor: pointer;
}

.popup_grid .row {
    display: flex;
    flex-direction: row;
}

.coupon_form {
    padding: 30px;
}
.coupon_info_form input[type="number"] {
    width: 100%;
    padding:7px 10px
}
.generate_coupons {
    margin-top: 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media only screen and (max-width: 800px) {
    .mob__only {
        display: unset;
    }

    .des__only {
        display: none;
    }

    .home-body-container {
        max-width: 900px;
        margin: 20px;
    }

    .pay-body-container {
        margin: 25px;
    }

    .community-head {
        margin: 0 10px 20px 10px;
    }

    .subscription-tile {
        border-radius: 10px;
        padding: 25px;
    }

    main {
        overflow-x: unset;
    }

    header {
        display: none;
    }

    .authentication-body {
        width: unset;
        padding: 0 2.5rem;
    }

    .community-tile {
        padding: 10px 15px;
    }

    .community-tile button {
        padding: 11px;
    }

    .welcome-head {
        margin: 10px 15px 25px 15px;
    }

    h1 {
        font-size: 15px;
    }

    .receipt-body-container {
        margin: 15px 20px;
    }
}