/* body,
html {
    overflow-x: hidden;
} */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body,
html {
    width: 100%;
}
body {
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    /* font-family: 'gilroy-mediumuploaded_file';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; */
    width: 100%;
    font-weight: normal;
    font-style: normal;
    color: #000;
    font-size: 17px;
    line-height: 1.5;
    background-color: #fff;
}
.btn:focus {
    outline: none;
    box-shadow: none;
}
b,
strong {
    font-weight: 700;
}

p {
    margin: 0 0 22px 0;
}
.add-part {
    margin: 0px;
    color: blue;
    padding: 10px;
}
p:last-child {
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 25px 0;
    padding: 0;
    color: #000;
    font-weight: 700;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
    margin-bottom: 0;
}

h2 {
    font-weight: 500;
    font-size: 30px;
    line-height: 35px;
    /* font-weight: 700;
  font-size: 80px;
  line-height: 1;
  text-transform: uppercase; */
}

@media (min-width: 1024px) {
    h2 {
        font-size: 20px;
        line-height: 25px;
    }
}

h3 {
}

h4 {
    font-size: 24px;
    line-height: 1.2;
}

a {
    margin: 0;
    padding: 0;
    text-decoration: none !important;
    outline: none !important;
    color: #ecb61e;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a:hover {
    color: red;
}

img {
    max-width: 100%;
}

input[type="text"],
input[type="tel"],
input[type="password"],
input[type="email"],
select {
    background-color: transparent;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    color: #000;
    border: 1px solid rgba(255, 255, 255, 0.7);
    height: 58px;
    padding: 0 16px;
    outline: none !important;
}
.form-select:focus {
    outline: none;
    box-shadow: none;
}
textarea {
    background-color: transparent;
    -webkit-appearance: none;
    appearance: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.7);
    padding: 12px 16px;
    width: 100%;
    color: #000;
    height: 158px;
    outline: none !important;
}

select {
    border: 1px solid #b8bbbc;
    border-radius: 10px;
    width: 100%;
    padding: 0 11px;
    background: url(images/blue-down-tick.svg) no-repeat calc(100% - 16px)
        center transparent;
    background-size: 18px;
    padding-right: 40px;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}

select::-ms-expand {
    display: none;
}

input[type="submit"] {
    background: #eab71e;
    color: #000000;
    height: 58px;
    border: none;
    -webkit-appearance: none;
    appearance: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    padding-left: 30px;
    padding-right: 30px;
    /* text-transform: uppercase; */
    cursor: pointer;
    font-size: 24px;
    font-weight: 700;
    outline: none !important;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

input[type="submit"]:hover {
    background: #000;
    color: #eab71e;
}

::-webkit-input-placeholder {
    opacity: 0.7;
    color: #000;
}

:-ms-input-placeholder {
    opacity: 0.7;
    color: #000;
}

::-moz-placeholder {
    opacity: 0.7;
    color: #000;
}

:-moz-placeholder {
    opacity: 0.7;
    color: #000;
}

/* images alignment for wordpress content pages */
.alignright {
    float: right;
    margin: 0 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 0 20px 20px 0;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    float: none;
    clear: both;
}

/* custom checkbox */

.form_input_check label {
    position: relative;
    margin: 0;
    padding-left: 40px;
    display: inline-block;
}

.form_input_check label span {
    margin: 0;
    padding: 0;
}

.form_input_check label input[type="checkbox"] {
    visibility: hidden;
    display: none;
}

.form_input_check label input[type="checkbox"] + span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0px;
    width: 22px;
    height: 22px;
    border: 1px solid #3e3e42;
    background: transparent;
}

.form_input_check label input[type="checkbox"] + span::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0px;
    width: 22px;
    height: 22px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    background: url(images/tick.svg) no-repeat center center;
    background-size: 15px;
}

.form_input_check label input[type="checkbox"]:not(:checked) + span::after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

/* .form_input_check input[type="checkbox"]:checked + span::before {

  } */

.form_input_check label input[type="checkbox"]:checked + span:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

/* custom radio */

.form_input_radio label {
    position: relative;
    margin: 0;
    padding-left: 30px;
    display: inline-block;
}

.form_input_radio label span {
    margin: 0;
    padding: 0;
}

.form_input_radio label input[type="radio"] {
    visibility: hidden;
    display: none;
}

.form_input_radio label input[type="radio"] + span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1px;
    width: 22px;
    height: 22px;
    border: 2px solid #000000;
    border-radius: 100%;
    background: #fff;
}

.form_input_radio label input[type="radio"] + span::after {
    content: "";
    width: 12px;
    height: 12px;
    background: #4b0049;
    position: absolute;
    top: 6px;
    left: 5px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.form_input_radio label input[type="radio"]:not(:checked) + span::after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

/* .form_input_radio input[type="radio"]:checked + span::before {

  } */

.form_input_radio label input[type="radio"]:checked + span:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

/* custom radio end */

/* back to top */

#scroll {
    position: fixed;
    right: 20px;
    bottom: 20px;
    cursor: pointer;
    width: 55px;
    height: 55px;
    background-color: #bdd653;
    display: none;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    line-height: 68px;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    z-index: 9;
}
#scroll:hover {
    background: #88a725;
}
#scroll i {
    color: #fff;
    font-size: 44px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

#scroll:hover i {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
}

/* navbar*/

.navbar-brand {
    padding: 0;
    margin: 0;
    width: 230px;
    display: inline-block;
}

.navbar {
    background: none;
    margin: 0;
    padding: 0;
    min-height: inherit;
    height: inherit;
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}

.navbar-nav li {
    position: relative;
    list-style: none;
}

.navbar-nav > li {
    margin: 0 15px;
    padding: 20px 0;
    position: relative;
}

.navbar-nav > li:last-child {
    margin-right: 0;
}

.navbar-nav > li:first-child {
    margin-left: 0;
}

.navbar-nav > li > a {
    color: #000;
    font-size: 16px;
    line-height: 1.2;
    position: relative;
    font-weight: normal;
}

.navbar-nav > li > a:after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: #3b61dc;
    /* opacity: 0; */
    position: absolute;
    bottom: -10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.navbar-nav > li.current-menu-item > a,
.navbar-nav > li > a:hover,
.navbar-nav > li.menu-item-has-children:hover > a {
    color: #3b61dc;
}

.navbar-nav > li.current-menu-item > a:after,
.navbar-nav > li > a:hover:after,
.navbar-nav > li.menu-item-has-children:hover > a:after {
    width: 100%;
}

/* navbar submenu*/

.sub-menu {
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    border: 1px solid rgba(0, 0, 0, 0.15);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    width: 140px;
    padding: 0;
}

.sub-menu > li > a {
    color: #000;
    display: block;
    width: 100%;
    padding: 6px 10px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
}

.sub-menu > li {
    width: 100%;
    display: block;
}

.sub-menu > li > a:hover,
.sub-menu > li.menu-item-has-children:hover > a,
.sub-menu > li.current-menu-item > a {
    background: #eab71e;
    color: #fff;
}

.navbar-nav > li:last-child > .sub-menu {
    right: 0;
    left: inherit;
    padding: 0;
}

/* 2nd level submenu */
.navbar-nav > li > .sub-menu .sub-menu {
    position: absolute;
    left: 100%;
    top: 0;
}

/* for push-menu */
.navbar-collapse .navbar-toggler {
    display: none;
}
#navoverlay {
    display: block;
    pointer-events: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    margin: 0;
    padding: 0 !important;
    z-index: 99;
    -webkit-transition: background-color 0.5s linear;
    transition: background-color 0.5s linear;
}
/* for push-menu end*/

/*css18.10.22*/

.btm_gap_none {
    padding-bottom: 0 !important;
}
.btm_top_none {
    padding-top: 0 !important;
}
.gap_cmnn {
    padding: 20px 0;
}

.user_scn_form .form-group input[type="text"],
.user_scn_form .form-group input[type="email"],
.user_scn_form .form-group input[type="search"],
.user_scn_form .form-group input[type="tel"] {
    font-size: 16px;
    line-height: 1.3;
    font-weight: 500;
    letter-spacing: 0.01em;
    border: 1px solid #7b7b7b;
    border-radius: 10px;
    background: #fff;
    color: #000;
    height: 60px;
    padding: 0 16px;
    float: left;
    width: calc(100% - 80px);
}
.user_scn_form .form-group input::-webkit-input-placeholder {
    opacity: 0.3;
}
.user_scn_form .form-group input:-ms-input-placeholder {
    opacity: 0.3;
}
.user_scn_form .form-group input::-moz-placeholder {
    opacity: 0.3;
}
.user_scn_form .form-group input:-moz-placeholder {
    opacity: 0.3;
}
.user_scn_form .form-group input[type="submit"],
.user_scn_form .form-group button[type="submit"],
.user_scn_form .form-group input[type="button"],
.user_scn_form .form-group button[type="button"] {
    background: #8ec64e;
    border-radius: 10px;
    float: right;
    width: 70px;
    border: 1px solid #8ec64e;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user_scn_form .form-group input[type="submit"] img,
.user_scn_form .form-group button[type="submit"] img,
.user_scn_form .form-group input[type="button"] img,
.user_scn_form .form-group button[type="button"] img {
    max-width: 34px;
}
.user_scn_form .form-group {
    display: inline-block;
    width: 100%;
}
.cmn_usr_btn {
    display: inline-block;
    font-size: 16px;
    line-height: 1.3;
    border: 1px solid #208ccb;
    background: #208dcb;
    color: #ffffff;
    padding: 13px 30px;
    letter-spacing: 0.01em;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    /* text-transform: uppercase; */
}
.cmn_usr_btn:hover {
    background: transparent;
    color: #208dcb;
}
.add_usern_sctn_top_wrap {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}
.add_usern_sctn_top_wrap > * {
    padding: 0 10px;
}
.add_usern_sctn_top_wrap_lft {
    flex-basis: 75%;
    max-width: 75%;
}
.add_usern_sctn_top_wrap_rtt {
    flex-basis: 25%;
    max-width: 25%;
}
.add_usern_sctn_top_wrap_rtt .cmn_usr_btn {
    width: 100%;
    text-align: center;
    min-height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cmn_selct_filter select {
    min-width: 142px;
    height: 46px;
    width: auto;
    border: 1px solid #26a7df;
    border-radius: 6px;
}
.table_user_top_sec_row {
    align-items: center;
}
.table_user_top_sec_col_lft h3 {
    font-size: 31px;
    line-height: 1.3;
}
.table_user_top_sec_col_lft h3 span {
    font-weight: 300;
}
.table_user_top_sec_col_rght {
    text-align: right;
}
.table_user_top_sec_col_rght .cmn_selct_filter select {
    margin-left: auto;
}

.cmn_gap_large {
    padding: 40px 0;
}
.table_cmn_part_sgn table {
    width: 100%;
}
.table_cmn_part_sgn table tr th {
    padding: 18px 27px;
    background-color: #f8f8f8;
    color: #208ccb;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 700;
}
.custom_checked_box input[type="checkbox"] {
    outline: none;
    box-shadow: inherit;
}
thead .custom_checked_box input[type="checkbox"] {
    border-color: #208ccb;
    border-width: 2px;
}
.table_cmn_part_sgn table tr td {
    padding: 18px 27px;
    color: #212529;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */
}
.table_cmn_part_sgn table tr:hover td {
    background-color: #f8f8f8;
}
.table_support_cnt_rt {
    background: #f8f8f8;
    padding: 21px 20px;
    height: 100%;
}
.btn_table_s {
    width: 100%;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
    text-align: center;
    letter-spacing: 0.01em;
    /* text-transform: uppercase; */
    border-radius: 6px;
    margin-bottom: 21px;
    padding: 15px;
    display: inline-block;
    min-width: 150px;
}
.btn_table_s.grn {
    background: #8ec64e;
    color: #fff;
    border: 1px solid #8ec64e;
}
.btn_table_s.grn:hover {
    background: transparent;
    color: #8ec64e;
}

.btn_table_s.rdd {
    background: #ff2719;
    color: #fff;
    border: 1px solid #ff2719;
}
.btn_table_s.rdd:hover {
    background: transparent;
    color: #ff2719;
}

.btn_table_s.blu {
    background: #239bd6;
    color: #fff;
    border: 1px solid #239bd6;
}
.btn_table_s.blu:hover {
    background: transparent;
    color: #239bd6;
}

.btn_table_s.ylw {
    background: #f39d1c;
    color: #fff;
    border: 1px solid #f39d1c;
}
.btn_table_s.ylw:hover {
    background: transparent;
    color: #f39d1c;
}

.btn_table_s.purpl {
    background: #6613df;
    color: #fff;
    border: 1px solid #6613df;
}
.btn_table_s.purpl:hover {
    background: transparent;
    color: #6613df;
}
.cmn_modal_designs .modal-dialog {
    max-width: 70%;
}
.cmn_modal_designs .modal-header .modal-title {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 500;
    font-size: 34px;
    line-height: 1.3;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */
    color: #000000;
    text-decoration: none;
    margin-bottom: 0px;
}
.cmn_modal_designs .modal-header .btn-close {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */
    color: #fff !important;
    background: #f04343 !important;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 38px;
    font-family: "Roboto";
    margin: 0;
    width: auto;
    height: auto;
    outline: none;
    box-shadow: inherit;
}
.cmn_modal_designs .modal-header .btn-close:hover {
    background: #208ccb !important;
}
.custom_form_dsgn_pop_col h5 {
    font-size: 15px;
    line-height: 1.2;
    margin-bottom: 12px;
}
.custom_form_dsgn_pop_col input[type="text"],
.custom_form_dsgn_pop_col input[type="email"],
.custom_form_dsgn_pop_col input[type="url"],
.custom_form_dsgn_pop_col input[type="password"],
.custom_form_dsgn_pop_col input[type="search"],
.custom_form_dsgn_pop_col input[type="number"],
.custom_form_dsgn_pop_col input[type="tel"],
.custom_form_dsgn_pop_col input[type="range"],
.custom_form_dsgn_pop_col input[type="date"],
.custom_form_dsgn_pop_col input[type="month"],
.custom_form_dsgn_pop_col input[type="week"],
.custom_form_dsgn_pop_col input[type="time"],
.custom_form_dsgn_pop_col input[type="datetime"],
.custom_form_dsgn_pop_col input[type="datetime-local"],
.custom_form_dsgn_pop_col input[type="color"],
.custom_form_dsgn_pop_col textarea,
.custom_form_dsgn_pop_col .form-control,
.custom_form_dsgn_pop_col select {
    border: 1px solid #b8bbbc;
    border-radius: 10px;
    padding: 5px 25px;
    font-family: "Roboto";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.01em;
    color: #000;
    text-decoration: none;
    height: 58px;
}
.custom_file_uploader {
    position: relative;
    background: #ececec;
    border-radius: 15px;
    min-height: 156px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
}
.custom_file_uploader .file_upload_btn {
    opacity: 0;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
}
.custom_file_uploader_inr {
    text-align: center;
}
.custom_file_uploader_inr img {
    margin-bottom: 12px;
}
.custom_file_uploader_inr h4 {
    /* text-transform: capitalize; */
}
.custom_file_uploader_inr,
.custom_file_uploader_inr h4 {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: 0.01em;
    color: #000000;
    font-style: normal;
}

.btn_foot_end .btn_table_s {
    width: auto;
    display: inline-block;
    margin: 0;
    margin-right: 18px;
}
.btn_foot_end .btn_table_s:last-child {
    margin-right: 0;
}
.btn_foot_end {
    margin: 0;
}
.selctd_table_sec select {
    height: auto;
    width: auto;
    background: url(images/expeort-icon1.svg) no-repeat right 10px center;
    background-size: 8px;
    border: 1px solid #b8bbbc;
    border-radius: 10px;
    font-family: "Roboto";
    padding: 10px 11px;
    padding-right: 24px;
}
.table_cmn_part_sgn table tr td .custom_checked_box input[type="checkbox"] {
    margin-top: 0;
}
.cmn_links_clkd a {
    text-decoration: underline !important;
    color: #208ccb;
}
.cmn_links_clkd a:hover {
    color: #f39d1c;
}
.cmn_links_clkd {
    margin-top: 10px;
}
.modal-footer.not_last {
    display: block;
}
.modal-footer-gap-none {
    margin: 0;
}
.option_avlbl_col_rght {
    text-align: right;
}

.table_user_top_sec_col_lft.new h3 {
    font-size: 23px;
}
.table_user_top_sec_col_lft.new {
    margin-bottom: 20px;
}
.gap_sec_modal1.cmn_modal_designs .modal-dialog {
    max-width: 800px;
}
.cmn_modal_designs .modal-header .modal-title.new {
    font-size: 26px;
}
.selctd_table_sec.large select {
    width: 100%;
}

.btn_table_s.auto_wd {
    width: auto;
}

.cmn_secthd_modals h1 {
    font-size: 50px;
    line-height: 1.3;
    margin-bottom: 30px;
    font-weight: 700;
}
.cmn_secthd_modals h2 {
    font-size: 40px;
    line-height: 1.3;
    margin-bottom: 30px;
    font-weight: 700;
}
.cmn_secthd_modals h3 {
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 30px;
    font-weight: 500;
}
.cmn_secthd_modals h4 {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 30px;
    font-weight: 500;
}
.cmn_secthd_modals h5 {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 10px;
    font-weight: 500;
}
.cmn_secthd_modals h6 {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 10px;
    font-weight: 500;
}
.cmn_secthd_modals h1:last-child,
.cmn_secthd_modals h2:last-child,
.cmn_secthd_modals h3:last-child,
.cmn_secthd_modals h4:last-child,
.cmn_secthd_modals h5:last-child,
.cmn_secthd_modals h6:last-child {
    margin-bottom: 0;
}
.cmn_secthd_modals {
    margin-bottom: 30px;
}
.cmn_secthd_modals:last-child {
    margin-bottom: 0;
}
.wrap_modal_cntntr {
    text-align: center;
}
.cmn_modal_designs.gap_sec_modal2 .modal-dialog {
    max-width: 680px;
}
.cmn_modal_designs.modal_role_wrap_dialog .modal-dialog {
    max-width: 95%;
}
.assign_role_userpt table {
    width: 100%;
}
.assign_role_userpt table tr th {
    padding: 18px 13px;
    background-color: #f8f8f8;
    color: #208ccb;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 700;
    width: 21.75%;
    vertical-align: top;
}
.assign_role_userpt table tr th:first-child {
    width: 13%;
}
.asn_rl_sp {
    font-size: 20px;
}
.custom_radio_btn .form_input_radio label input[type="radio"] + span::before {
    top: 0px;
    border-color: #000;
}
.custom_radio_btn .form_input_radio label input[type="radio"] + span::after {
    top: 5px;
    background: #000;
}
.custom_radio_btn .form_input_radio label span {
    color: #000;
}
.assign_role_userpt table tr th p {
    font-size: 15px;
    color: #000;
}
.custom_radio_btn {
    margin-bottom: 10px;
}
.custom_radio_btn:last-child {
    margin-bottom: 0;
}
.custom_radio_btn
    .form_input_radio
    label
    input[type="radio"]:checked
    + span::before {
    border-color: #208ccb;
}
.custom_radio_btn
    .form_input_radio
    label
    input[type="radio"]:checked
    + span::after {
    background: #208ccb;
}
.custom_radio_btn .form_input_radio label input[type="radio"]:checked + span {
    color: #208ccb;
}
.assign_role_userpt table tr td {
    padding: 18px 13px;
    color: #212529;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */
    width: 21.75%;
}
.assign_role_userpt table tr td:first-child {
    width: 13%;
}
.assign_role_userpt table tr td.multiple_inner_tabl tr td {
    padding: 0 10px;
}

.multipleP_create_tab {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -3px;
}
.multipleP_create_tab_in {
    flex-basis: 25%;
    max-width: 25%;
    padding: 0 3px;
    text-align: center;
}
.table_cmn_part_sgn {
    width: 100%;
    overflow-x: auto;
}
.assign_role_userpt {
    width: 100%;
    overflow-x: auto;
}

/*css18.10.22_end*/

/* settings */

/* .sec_heading_stng{
  text-align: center;
} */
.sec_heading_stng h2 {
    font-style: normal;
    font-weight: 500;
    font-size: 47px;
    line-height: 55px;
    margin-bottom: 0;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */
    color: #24a1db;
}
.sec_heading_stng {
    margin-bottom: 30px;
}
.sec_heading_stng:last-child {
    margin-bottom: 0;
}
.gimmzi_section_bxss {
    background: #ececec;
    height: 100%;
    padding: 35px 25px;
    text-align: center;
}
.custom_grn_radiobxs .form_input_radio label {
    margin-right: 20px;
    margin-top: 17px;
    font-size: 20px;
}
.custom_grn_radiobxs .form_input_radio label:last-child {
    margin-right: 0;
}
.gimmzi_section_bxss h3 {
    font-size: 25px;
    line-height: 1.3;
    margin: 0 0 15px 0;
}
.custom_grn_radiobxs
    .form_input_radio
    label
    input[type="radio"]
    + span::before {
    top: 4px;
    border-color: #93da42;
}
.custom_grn_radiobxs .form_input_radio label input[type="radio"] + span::after {
    top: 8px;
    left: 4px;
    width: 14px;
    height: 14px;
    background: #93da42;
}
.gimmzi_section_bxss h3 .mrchnt_sp {
    display: block;
    font-weight: 300;
}
.btn_table_s.autowdth {
    width: auto;
    margin: 0;
    margin-top: 10px;
}
.space_gap_bt {
    display: inline-block;
    width: 100%;
    height: 1px;
    background: #ededed;
    margin: 20px 0;
}
.mrchnt_sp_gmz {
    position: relative;
    padding: 1px 0;
    padding-right: 31px;
}
.mrchnt_sp_gmz .mrchnt_sp_gmz_tltp {
    position: absolute;
    right: 0;
    top: 0;
    color: #239bd6;
}
.mrchnt_sp_gmz .mrchnt_sp_gmz_tltp:hover {
    color: #000;
}
.database_copy_outersd_top {
    display: flex;
    margin: 0 -15px;
}
.database_copy_outersd_top > * {
    flex: 1;
    padding: 0 15px;
}
.custom_select_style select {
    border: 1px solid #b8bbbc;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    padding: 5px 15px;
    padding-right: 30px;
    font-family: "Roboto";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0.01em;
    color: #000;
    text-decoration: none;
    height: 58px;
    background: url(images/expeort-icon1.svg) no-repeat right 10px center;
    background-size: 13px;
}
.custom_select_btnn .btn_table_s {
    margin-bottom: 0;
    min-height: 58px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.street_dtls_wshntn {
    margin-bottom: 30px;
}
.btn_table_s.ht_sm_inp {
    min-height: 58px;
    min-width: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}
.custom_check_ntt input[type="checkbox"] {
    outline: none;
    box-shadow: inherit;
    border-color: #208ccb;
    border-width: 2px;
    margin: 0;
    position: absolute;
    top: 4px;
    left: 0;
}
.custom_check_ntt {
    position: relative;
    padding-left: 27px;
    font-size: 17px;
}

.database_copy_outersd_mdl {
    margin-top: 40px;
    margin-bottom: 20px;
}
.cmn_Sectn_hdng {
    margin-bottom: 20px;
}
.special_events_week {
    background: #ececec;
    color: #2d2b2b;
    padding: 20px 20px;
}
.special_events_week_top {
    margin-bottom: 17px;
}
.ac_inactv {
    display: table;
    margin-left: auto;
    color: #8ec64e;
    font-size: 16px;
    line-height: 1;
    margin-bottom: 15px;
}
.on_off_spotr {
    min-width: 70px;
    display: table;
    border: 1px solid #ccc;
    height: 30px;
    border-radius: 50px;
    position: relative;
    cursor: pointer;
}
.on_off_spr_inr {
    position: absolute;
    background: #ccc;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    margin: 0 4px;
}
.toggler_specl_evnts h3 {
    align-self: center;
}
.toggler_specl_evnts {
    display: flex;
}
.toggler_specl_evnts h3 {
    font-size: 28px;
    padding-left: 20px;
}
.special_events_week_mdl textarea {
    background: #fff;
    height: 120px;
    font-size: 17px;
    border-radius: 5px;
}
.special_events_week_mdl {
    margin-bottom: 20px;
}
.special_events_week_btmm h5 {
    font-size: 20px;
    margin: 0 0 12px 0;
}
.radio_btn_leabel_custom .form_input_check label {
    padding-left: 30px;
    margin-right: 15px;
    margin-top: 14px;
}
.radio_btn_leabel_custom .form_input_check label:last-child {
    margin-right: 0;
}
.radio_btn_leabel_custom
    .form_input_check
    label
    input[type="checkbox"]
    + span::before {
    width: 20px;
    height: 20px;
    border: 1px solid #3e3e42;
    top: 3px;
}
.radio_btn_leabel_custom
    .form_input_check
    label
    input[type="checkbox"]
    + span::after {
    display: inline-block;
    content: "";
    background: transparent;
    transform: rotate(45deg);
    height: 14px;
    width: 7px;
    border-bottom: 3px solid #239bd6;
    border-right: 3px solid #239bd6;
    left: 7px;
    top: 5px;
}
.radio_btn_leabel_custom
    .form_input_check
    label
    input[type="checkbox"]:checked
    + span:before {
    border-color: #239bd6;
}

.on_off_spotr.active .on_off_spr_inr {
    left: inherit;
    right: 0;
    background: #8ec64e;
}
.on_off_spotr.active {
    border-color: #8ec64e;
}
.ac_inactv.inactive {
    color: #ff2719;
}

.week_dtls_tablss table {
    width: 100%;
}
.week_dtls_tablss table tr td {
    padding: 8px 13px;
}
.week_dtls_tablss table tr td .radio_btn_leabel_custom .form_input_check label {
    margin-top: 0;
}
.open_close_datetm_col input[type="text"],
.open_close_datetm_col input[type="email"],
.open_close_datetm_col input[type="url"],
.open_close_datetm_col input[type="password"],
.open_close_datetm_col input[type="search"],
.open_close_datetm_col input[type="number"],
.open_close_datetm_col input[type="tel"],
.open_close_datetm_col input[type="range"],
.open_close_datetm_col input[type="range"],
.open_close_datetm_col input[type="date"],
.open_close_datetm_col input[type="month"],
.open_close_datetm_col input[type="week"],
.open_close_datetm_col input[type="time"],
.open_close_datetm_col input[type="datetime"],
.open_close_datetm_col input[type="datetime-local"],
.open_close_datetm_col input[type="color"],
.open_close_datetm_col textarea,
.open_close_datetm_col .form-control,
.open_close_datetm_col select {
    border: 1px solid #b8bbbc;
    border-radius: 10px;
    padding: 5px 5px;
    font-family: "Roboto";
    font-weight: 500;
    font-size: 14px;
    line-height: 1.3;
    letter-spacing: 0.01em;
    color: #000000;
    height: 38px;
}
.open_close_datetm_col select {
    background: url(images/expeort-icon1.svg) no-repeat right 10px center;
    background-size: 10px;
    padding-right: 25px;
}
.addtime_part {
    display: table;
    margin-left: auto;
    font-size: 15px;
    margin-top: 10px;
    color: #239bd6;
}
.addtime_part:hover {
    color: #8ec64e;
}
.open_close_datetm_row {
    margin-bottom: 20px;
}
.open_close_datetm_row:last-child {
    margin-bottom: 0;
}
.delete_textd_row0 {
    display: table;
    margin-left: auto;
    font-size: 15px;
    margin-top: 10px;
    color: #f04343;
}
.delete_textd_row1 {
    display: table;
    margin-left: auto;
    font-size: 15px;
    margin-top: 10px;
    color: #f04343;
}
/* .open_close_datetm_row:first-child .delete_textd_row{display: block;} */

.working_timing_routine h5 {
    font-size: 23px;
    line-height: 1.3;
    font-weight: 500;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */
    color: #000000;
    margin-bottom: 13px;
}
.working_timing_routine h5:last-child {
    margin-bottom: 0;
}
.working_timing_routine_inr ul {
    padding: 0;
    margin: 0;
}
.working_timing_routine_inr li {
    list-style: none;
    list-style-type: none;
    margin: 0;
    padding: 0;
    margin-bottom: 5px;
    font-size: 16px;
    color: #239bd6;
}

.working_timing_routine_inr li span {
    color: #000;
}
.open_close_datetm_col label.hdcls {
    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 10px;
}
.open_close_datetm_row:not(:first-child) .open_close_datetm_col label.hdcls {
    display: none;
}
.special_events_week_btmm_schedule.new_d
    .radio_btn_leabel_custom
    .form_input_check
    label {
    display: table;
    margin: 0;
    margin-bottom: 5px;
}
.special_events_week_btmm_schedule.new_d
    .radio_btn_leabel_custom
    .form_input_check
    label:last-child {
    margin-bottom: 0;
}
.special_events_week_btmm_schedule.new_d {
    margin-bottom: 20px;
}
.cmn_modal_designs .modal-header.single .btn-close {
    margin-left: auto;
}
.week_dtls_tablss {
    width: 100%;
    overflow-x: auto;
}

/* settings_end */

/* 19.12.22 */

.preview_modal_faded .modal-dialog {
    max-width: 90%;
}
.preview_modal_faded .modal-header {
    padding: 20px 30px;
}
.preview_modal_faded .modal-header button {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.01em;
    text-transform: capitalize;
    color: #fff;
    background: #f04343;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 38px;
    font-family: "Roboto";
    margin: 0;
    width: auto;
    height: auto;
    outline: none;
    box-shadow: inherit;
    border: 0;
    margin-left: auto;
}
.preview_modal_faded .modal-header button:hover {
    background: #208ccb;
}
.preview_modal_faded .modal-body {
    padding: 40px 30px;
}
.search_popup_outerss_nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    border-bottom: 1px solid #dee2e6;
}
.search_popup_outerss_nav li {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-right: 15px;
}
.search_popup_outerss_nav li:last-child {
    margin-right: 0;
}
.search_popup_outerss_nav li a {
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: 0.01em;
    text-transform: capitalize;
    color: #bcbcbc;
    border: 0px;
    padding: 18px 15px;
    display: inline-block;
    border-bottom: 3px solid transparent;
}
.search_popup_outerss_nav li.active a,
.search_popup_outerss_nav li a:hover {
    border-bottom-color: #8ec64e;
    color: #000;
}
.search_popup_outerss_nav {
    margin-bottom: 50px;
}
.special_mvmnt_wrapper_inr {
    background: #f8f8f8;
    border-radius: 13px;
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
}
.special_mvmnt_wrapper_inr:last-child {
    margin-bottom: 0;
}
.special_mvmnt_wrapper_inr:nth-child(even) .special_mvmnt_wrapper_inr_top {
    background: #208ccb;
}
.special_mvmnt_wrapper_inr_top {
    background: #f6962f;
    text-align: center;
    padding: 14px 18px;
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 26px;
    letter-spacing: 0.01em;
    text-transform: capitalize;
    color: #ffffff;
}
.special_mvmnt_wrapper_inr_btm {
    padding: 20px 18px;
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.3;
    text-transform: capitalize;
    color: #3d3838;
}
.special_mvmnt_wrapper_inr_btm h4 {
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: 0.01em;
    text-transform: capitalize;
    color: #000000;
    margin-bottom: 15px;
}
.special_mvmnt_wrapper_inr_btm h4:last-child {
    margin-bottom: 0;
}
.special_mvmnt_wrapper_inr_btm p {
    margin-bottom: 10px;
}
.special_mvmnt_wrapper_inr_btm p:last-child {
    margin-bottom: 0;
}
.img_clnt_sec {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}
.img_clnt_sec .main_img {
    width: 60px;
    height: 60px;
    margin: 0;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
}
.img_clnt_sec .main_img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
    object-position: top center;
}
.img_clnt_sec_rtt {
    width: calc(100% - 60px);
    padding-left: 20px;
    align-self: center;
    text-align: left;
    font-size: 18px;
    font-weight: 700;
}

/* update start 21/12/2022 */

.wizard_body_enter_pymntinfo h1 {
    font-size: 36px;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-transform: capitalize;
    color: #000000;
    line-height: 1.3;
}
.mid_step_pymntinfo {
    padding: 43px 18px 38px 39px;
    border-radius: 20px;
    background: #f8f8f8;
    overflow: hidden;
}
.mid_step_bill_addrs h4,
.last_step_pymnt_hd h4 {
    letter-spacing: 0.01em;
    text-transform: capitalize;
    font-weight: 500;
    color: #000000;
    max-width: calc(100% - 90px);
    width: 100%;
    margin-bottom: 0;
}
.mid_step_bill_addrs {
    margin-bottom: 30px;
}
.mid_step_bill_addrs {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mid_step_bill_addrs .mid_step_clearfrm {
    display: inline-flex;
    max-width: 75px;
    width: 100%;
    text-align: right;
    margin-left: 15px;
    justify-content: flex-end;
}
.mid_step_bill_addrs .mid_step_clearfrm a {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 0.01em;
    color: #2091ce;
    font-weight: 500;
    line-height: 1.2;
}
.mid_step_bill_addrs .mid_step_clearfrm a:hover {
    color: #8ec64e;
}
.mid_step_pymntinfo_form input[type="text"],
.mid_step_pymntinfo_form input[type="email"],
.mid_step_pymntinfo_form input[type="number"] {
    border: 1px solid #b8bbbc;
    border-radius: 10px;
    width: 100%;
    background: #f8f8f8;
    height: 62px;
    padding: 0 25px;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.01em;
    line-height: 1.2;
    color: #333333;
}
.mid_step_pymntinfo_form input[type="text"]:focus,
.mid_step_pymntinfo_form input[type="email"]:focus,
.mid_step_pymntinfo_form input[type="number"]:focus {
    border: 1px solid #b8bbbc;
    box-shadow: none;
    outline: none;
}
.mid_step_pymntinfo_form input[type="text"]::placeholder,
.mid_step_pymntinfo_form input[type="email"]::placeholder,
.mid_step_pymntinfo_form input[type="number"]::placeholder {
    color: #333 !important;
    font-weight: 500;
}
.mid_step_pymntinfo_form .payment_info_col {
    margin-bottom: 20px;
}
.mid_step_pymntinfo_dtls {
    margin-bottom: 20px;
}
.mid_step_pymntinfo_dtls:last-child {
    margin-bottom: 0;
}
.mid_step_pymntinfo_form .payment_cardno_input {
    padding-right: 100px !important;
}
.last_step_pymntinfo {
    padding: 30px 17px 21px;
    background: #f8f8f8;
    border-radius: 20px;
    overflow: hidden;
}
.last_step_pymnt_hd h4 {
    text-align: center;
    max-width: 100%;
    margin-bottom: 10px;
}
.last_step_pymnt_hd h4 span.hd_clrtxt {
    color: #8ec64e;
}
.last_step_pymnt_hd {
    padding-bottom: 7px;
    border-bottom: 1px solid #eaeaea;
}
.last_step_pymnt_table table {
    width: 100%;
}
.last_step_pymnt_table table tr td {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 0.01em;
    color: #5b5b5b;
    padding: 5px 0;
}
.last_step_pymnt_table table tr td:last-child {
    text-align: right;
    color: #000;
    padding-left: 5px;
}
.last_step_pymnt_table {
    padding-bottom: 30px;
    border-bottom: 1px solid #eaeaea;
}
.last_step_pymnt {
    margin-bottom: 30px;
}
.last_step_pymnt:last-child {
    margin-bottom: 0;
}
.last_step_pymnt_mid .last_step_pymnt_hd {
    text-align: center;
    padding-bottom: 30px;
}
.last_step_pymnt_mid .last_step_pymnt_hd p {
    color: #5b5b5b;
    letter-spacing: 0.01em;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;
}
.last_step_pymnt_mid .last_step_pymnt_hd p span {
    display: block;
    color: #8ec64e;
}
.last_step_pymnt_btm .last_step_pymnt_hd {
    border-bottom: 0;
}
.last_step_pymnt_table tfoot tr td {
    color: #000000;
}
.last_step_pymnt_btm .last_step_pymnt_table {
    border-bottom: 0;
}
.payment_paybtn {
    text-align: center;
    margin-bottom: 19px;
}
.payment_paybtn a,
.billing-management-hdbtn a {
    display: inline-block;
    color: #fff;
    text-transform: uppercase;
    background: #000;
    padding: 18px 42px;
    letter-spacing: 0.01em;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
    text-align: center;
    border-radius: 6px;
}
.payment_paybtn a:hover,
.billing-management-hdbtn a:hover {
    background: #8ec64e;
}
.payment_customer_serv p {
    color: #5b5b5b;
    text-align: center;
    letter-spacing: 0.01em;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 500;
}
.payment_customer_serv p a {
    color: #5b5b5b;
}
.payment_customer_serv p span a {
    color: #26a7df;
    text-decoration: underline !important;
}
.payment_customer_serv p a:hover {
    color: #8ec64e;
}
.payment_cardno {
    position: relative;
}
.paycard_size {
    display: inline-flex;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 55px;
    width: 100%;
}
.paycard_size img {
    width: 100%;
}
.last_step_pymnt_top .last_step_pymnt_hd {
    margin-bottom: 17px;
}
.wizard-body.wizard_body_enter_pymntinfo {
    margin-bottom: 60px;
}

/* billing management page start */
.billing-management-hd {
    padding: 53px 0 14px;
}
.billing-management-hd-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.billing-management-hd h1 {
    margin-bottom: 0;
    max-width: 70%;
    width: 100%;
    font-weight: 500;
    font-size: 36px;
    line-height: 1.3;
    letter-spacing: 0.01em;
    text-transform: capitalize;
    color: #000000;
}
.billing-management-hdbtn a {
    padding: 18px 47px;
}
.billing_management_body_wrap {
    background: #f8f8f8;
    border-radius: 20px;
    padding: 34px 59px 43px;
}
.billing_management_body {
    margin-bottom: 29px;
}
.billing_management_left table {
    width: 100%;
}
.billing_management_left table thead th:nth-child(1),
.billing_management_left table thead th:nth-child(2) {
    width: 35%;
}
.billing_management_left table thead th:nth-child(3) {
    width: 30%;
}
.billing_management_left table thead th {
    color: #2091ce;
    font-weight: 600;
    font-size: 23px;
    letter-spacing: 0.01em;
    line-height: 1;
    padding: 12px 0;
}
.billing_management_left table tbody td {
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.01em;
    padding: 12px 0;
    color: #2d2b2b;
}
.billing_management_left table tbody tr.add_on td {
    color: #929497;
    font-weight: 500;
}
.billing_management_left table tbody tr.merch_introplan td span.upgrade {
    margin-left: 16px;
    display: inline-block;
}
.billing_management_left table tbody tr.merch_introplan td span.upgrade a {
    display: inline-block;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #ffffff;
    background: #8ec64e;
    border-radius: 6px;
    padding: 7px 9px;
}
.billing_management_left
    table
    tbody
    tr.merch_introplan
    td
    span.upgrade
    a:hover {
    background: #2091ce;
}
.billing_management_left table tbody tr.merch_introplan td {
    padding-bottom: 14px;
    color: #000;
    font-weight: 500;
}
.billing_management_left table tfoot tr td {
    padding: 12px 0;
}
.billing_management_left table {
    margin-bottom: 32px;
}
.billing_management_left table:last-child {
    margin-bottom: 0;
}
.billing_management_left .card_info a {
    background: #000000;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #ffffff;
    padding: 7px 14px;
}
.billing_management_left .card_info {
    display: inline-block;
    margin-right: 11px;
}
.billing_management_custserv {
    margin-top: 60px;
}
.billing_management_custserv p {
    letter-spacing: 0.01em;
    font-size: 16px;
    color: #2d2b2b;
    font-weight: 400;
}
.billing_management_custserv p a {
    display: inline-block;
    color: #2d2b2b;
}
.billing_management_custserv p a:hover {
    color: #8ec64e;
}
.billing_management_right {
    padding: 12px 0 0 0;
}
.billing_management_right ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.billing_management_right ul li {
    margin-bottom: 27px;
}
.billing_management_right ul li:last-child {
    margin-bottom: 0;
}
.billing_management_right ul li a {
    display: inline-block;
    text-decoration: underline !important;
    font-size: 23px;
    line-height: 1;
    color: #2091ce;
    font-weight: 400;
    letter-spacing: 0.01em;
}
.billing_management_right ul li a:hover {
    color: #8ec64e;
}
.merch_introplan .form_input_check label {
    padding-left: 30px;
}
.merch_introplan .form_input_check label input[type="checkbox"] + span::before {
    top: 1px;
    width: 20px;
    height: 20px;
    border: 1px solid #000;
    border-radius: 2px;
}
.merch_introplan .form_input_check label input[type="checkbox"] + span::after {
    top: 1px;
    background-size: 11px;
    width: 20px;
    height: 20px;
    background: url(images/wh_tick.svg) no-repeat center center;
}
.merch_introplan
    .form_input_check
    label
    input[type="checkbox"]:checked
    + span:before {
    background: #8ec64e;
    border: 1px solid #8ec64e;
}
.limitSetting-modal .common-modal-body table tbody td > p strong {
    font-size: 16px;
}

.limitSetting_table_wrap.new_table tbody tr td:first-child {
    width: 50%;
}
.limitSetting_table_wrap.new_table tbody tr td:last-child {
    text-align: center;
    width: 50%;
}
.limitSetting_table_wrap.new_table thead tr th:last-child {
    text-align: center;
}
.limitSetting_table_wrap.new_table table {
    width: 100%;
}
.limitSetting_table_wrap.new_table thead tr th {
    padding-bottom: 20px;
}
.inputSelect_main .inner_input_sec {
    width: 65%;
}
.inputSelect_main .inner_input_sec input[type="text"] {
    width: 100%;
}
.inputSelect_main .inner_input_sec input[type="text"] + ul {
    width: 100%;
}

/* billing management page end */

/************/
.mcd_Left {
    background: #f8f8f8;
    border-radius: 20px;
    padding: 35px;
}
.mcd_right {
    background: #f8f8f8;
    border-radius: 20px;
    padding: 40px 47px 65px;
}

.mcd_Left h1 {
    font-weight: 500;
    font-size: 36px;
    text-transform: capitalize;
    color: #000000;
    margin-bottom: 10px;
}
.mcd_status span {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.01em;
    color: #000000;
    display: inline-block;
}
.pending_circle {
    background: #dfbb00;
    width: 14px;
    height: 14px;
    border-radius: 100%;
    margin-right: 8px;
}
.mcd_status span.mcd_pending {
    margin-left: 10px;
    color: #dfbb00;
}

.mcd_status {
    margin-bottom: 40px;
}

.mcd_input input {
    border: 1px solid #b8bbbc;
    border-radius: 10px;
    height: 62px;
    padding: 0 25px;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.01em;
}

.mcd_input ::-webkit-input-placeholder {
    color: #b2b2b2;
}

.mcd_input :-ms-input-placeholder {
    color: #b2b2b2;
}

.mcd_input ::-moz-placeholder {
    color: #b2b2b2;
}

.mcd_input :-moz-placeholder {
    color: #b2b2b2;
}

.mcd_input_with_btn {
    display: flex;
    align-items: center;
}
.mcd_input_with_btn input {
    width: calc(100% - 69px);
    flex-basis: calc(100% - 69px);
    margin-right: 14px;
}
.mcd_edit_btn {
    width: 69px;
    flex-basis: 69px;
    height: 62px;
    background: #8ec64e;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mcd_edit_btn:hover {
    background: #26a7df;
}
.mcd_form_col {
    margin-bottom: 22px;
}
.mcd_form_row {
    margin-bottom: -22px;
}
.mcd_margin_top {
    margin-top: 48px;
}

.mcd_form_col h3 {
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 0.01em;
    color: #2d2b2b;
    margin-bottom: 15px;
}
.mcd_save input[type="submit"] {
    background: #8ec64e;
    border-radius: 6px;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #ffffff;
    height: 55px;
    width: 129px;
}
.mcd_save input[type="submit"]:hover {
    background: #26a7df;
}
.mcd_save {
    margin-top: 22px;
}

.mcd_right h3 {
    font-weight: 500;
    font-size: 23px;
    letter-spacing: 0.01em;
    text-transform: capitalize;
    color: #000000;
}

.mcd_right ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.mcd_right ul li strong {
    display: block;
    color: #000000;
}
.mcd_right ul li {
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0.01em;
    color: #929497;
}
.mcd_right ul li:not(:last-child) {
    margin-bottom: 10px;
}
.browse_btn_file {
    width: 69px;
    flex-basis: 69px;
    margin-left: 14px;
    position: relative;
    height: 62px;
    background: #8ec64e;
    border-radius: 10px;
    cursor: pointer;
    overflow: hidden;
}
.browse_btn {
    width: calc(100% - 83px);
    flex-basis: calc(100% - 83px);
    position: relative;
    border: 1px solid #b8bbbc;
    border-radius: 10px;
    overflow: hidden;
    padding: 22px 25px;
}
.browse_btn_file input[type="file"],
.browse_btn input[type="file"] {
    width: 100%;
    margin-right: 0;
    padding-right: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    height: auto;
    padding: 0;
    cursor: pointer;
}
.browse_btn p {
    line-height: 1;
    font-size: 16px;
    letter-spacing: 0.01em;
    font-weight: 500;
    color: #b2b2b2;
}
.browse_btn_file {
    display: flex;
    justify-content: center;
    align-items: center;
}
.browse_btn_file img {
    max-width: 32px;
}
.mailing_addr_tggl {
    position: relative;
}
.mailing_addr_tggl .toggleSwitch input[type="checkbox"] {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}
.mailing_addr_tggl {
    min-width: 280px;
    display: inline-block;
    background: #d9d9d9;
    border: 1px solid #000000;
    border-radius: 14px;
}
.mailing_addr_tggl .toggleSwitch {
    width: 100%;
}
.mailing_addr_tggl .toggleSwitch .toggleSwitch_main {
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: relative;
    padding: 0 26px;
    cursor: pointer;
}
.mailing_addr_tggl .toggleSwitch .toggleSwitch_main::before {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 132px;
    content: "";
    border-radius: 14px;
    background: #000;
}
.mailing_addr_tggl .toggleSwitch .toggleSwitch_main span:nth-child(2) {
    opacity: 0;
}
.mailing_addr_tggl
    .toggleSwitch
    input[type="checkbox"]:checked
    + .toggleSwitch_main::before {
    right: auto;
    left: 0;
}
.mailing_addr_tggl
    .toggleSwitch
    input[type="checkbox"]:checked
    + .toggleSwitch_main
    span:nth-child(2) {
    opacity: 1;
}
.mailing_addr_tggl
    .toggleSwitch
    input[type="checkbox"]:checked
    + .toggleSwitch_main
    span:nth-child(1) {
    opacity: 0;
}
.mailing_addr_tggl {
    margin-bottom: 14px;
}
.mailing_addr_toggle_wrap {
    display: flex;
    justify-content: flex-end;
}

/* change */
.mailing_tgl {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 14px;
}
.mailing_tgl_inner {
    min-width: 280px;
    background: #d9d9d9;
    border: 1px solid #000000;
    border-radius: 20px;
}
.mailing_tgl_inner input[type="radio"] {
    display: none;
}
.mailing_tgl_inner label {
    padding: 7px 19px;
    border-radius: 20px;
    cursor: pointer;
}
.mailing_tgl_inner input[type="radio"]:checked + label {
    background: #000;
}
/***********/

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}
/* update end 21/12/2022 */

/* update start 23/12/2022 */

.merch_plan_rightsec {
    padding: 40px 0;
}
.merch_hd {
    text-align: center;
}
.merch_hd h1 {
    font-size: 30px;
    line-height: 1;
    text-transform: capitalize;
}
.merch_hd ul {
    padding-left: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #dbe3e7;
    margin: 30px 0 45px;
}
.merch_hd ul li {
    margin-right: 38px;
}
.merch_hd ul li:last-child {
    margin-right: 0;
}
.merch_hd ul li a {
    font-weight: 500;
    font-size: 25px;
    line-height: 1.16;
    letter-spacing: 0.01em;
    text-transform: capitalize;
    color: #9e9e9e;
    padding: 15px 35px 20px;
    display: inline-flex;
    position: relative;
}
.merch_hd ul li a.active {
    color: #8ec64e;
}
.merch_hd ul li a:after {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    height: 3px;
    content: "";
    background: #8ec64e;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}
.merch_hd ul li a.active:after {
    opacity: 1;
}
.merch_hd ul li a:hover:after {
    opacity: 1;
}
.merch_hd ul li a:hover {
    color: #8ec64e;
}
.merch_plan_box_col {
    width: 20%;
    padding: 0 6px;
    height: 100%;
}
.merch_plans_box_main {
    margin: 0 -6px;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}
.merch_plan_box {
    width: 100%;
    padding: 0 16px 26px;
    background: #ffffff;
    border: 1px solid #dbe3e7;
    border-radius: 7px;
    height: calc(100% - 16px);
}
.merch_plan_box h4 {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.15;
    letter-spacing: 0.01em;
    text-transform: capitalize;
    color: #56cb30;
    text-align: center;
}
.merch_plans_sec {
    border-radius: 10px;
    background: #fff;
}
.merch_plans_sec ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.merch_plans_sec ul li {
    margin-bottom: 4px;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.15;
    letter-spacing: 0.01em;
    color: #5d5d5d;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.merch_plans_sec ul li span {
    display: inline-flex;
    width: 12px;
    line-height: 1;
    margin-right: 8px;
    min-width: 12px;
}
.merch_plans_sec ul li span img {
    width: 100%;
}
.merch_plan_box p {
    font-size: 14px;
    letter-spacing: 0.01em;
    font-weight: 400;
    color: #5d5d5d;
    line-height: 1.5;
}
.merch_subscription {
    text-align: center;
    padding: 8px 16px;
    background: #56cb30;
    border-radius: 10px 10px 0px 0px;
}
.merch_subscription h5 {
    font-size: 16px;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 4px;
    font-weight: 500;
}
.merch_subscription_list {
    padding: 11px 10px 22px;
    border-radius: 0 0 10px 10px;
    border: 1px solid #e4e4e4;
    margin-bottom: 23px;
}
.merch_subscription_list h6 {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.15;
    letter-spacing: 0.01em;
    text-transform: capitalize;
    margin-bottom: 10px;
    color: #202736;
}
.merch_plan_btn a {
    display: inline-block;
    padding: 15px 10px;
    background: #56cb30;
    border-radius: 6px;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.15;
    text-align: center;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    width: 100%;
}
.merch_subscription p {
    font-size: 12px;
    letter-spacing: 0.01em;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 0;
}
.merch_plan_btn a.chs_plan_trial {
    margin-bottom: 9px;
    background: #fff;
    border: 1px solid #56cb30;
    color: #56cb30;
}
.merch_plan_box_hd {
    padding: 14px 0;
    min-height: 74px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.merch_plan_popularity {
    max-width: 94%;
    width: 100%;
    background: #00c7cb;
    border-radius: 7px 7px 0 0;
    padding: 2px 8px;
    margin: 0 auto;
}
.merch_plan_popularity p {
    font-size: 10px;
    line-height: 1.2;
    text-align: center;
    letter-spacing: 0.165em;
    text-transform: uppercase;
    color: #ffffff;
}
.merch_plan_box_col:nth-child(2) .merch_plan_box h4 {
    color: #00c7cb;
}
.merch_plan_box_col:nth-child(2) .merch_subscription {
    background: #00c7cb;
}
.merch_plan_box_col:nth-child(2) .merch_plan_btn a.chs_plan {
    background: #00c7cb;
}
.merch_plan_box_col:nth-child(2) .merch_plan_btn a.chs_plan_trial {
    border-color: #00c7cb;
    color: #00c7cb;
}

.merch_plan_box_col:nth-child(3) .merch_plan_box h4 {
    color: #6197ff;
}
.merch_plan_box_col:nth-child(3) .merch_subscription {
    background: #6197ff;
}
.merch_plan_box_col:nth-child(3) .merch_plan_btn a.chs_plan {
    background: #6197ff;
}
.merch_plan_box_col:nth-child(3) .merch_plan_btn a.chs_plan_trial {
    border-color: #6197ff;
    color: #6197ff;
}
.merch_plan_box_col:nth-child(3) .merch_plan_popularity {
    background: #6197ff;
}

.merch_plan_box_col:nth-child(4) .merch_plan_box h4 {
    color: #ff7e03;
}
.merch_plan_box_col:nth-child(4) .merch_subscription {
    background: #ff7e03;
}
.merch_plan_box_col:nth-child(4) .merch_plan_btn a.chs_plan {
    background: #ff7e03;
}
.merch_plan_box_col:nth-child(4) .merch_plan_btn a.chs_plan_trial {
    border-color: #ff7e03;
    color: #ff7e03;
}
.merch_plan_box_col:nth-child(4) .merch_plan_popularity {
    background: #ff7e03;
}

.merch_plan_box_col:nth-child(5) .merch_plan_box h4 {
    color: #e76d5f;
}
.merch_plan_box_col:nth-child(5) .merch_subscription {
    background: #e76d5f;
}
.merch_plan_box_col:nth-child(5) .merch_plan_btn a.chs_plan {
    background: #e76d5f;
}
.merch_plan_box_col:nth-child(5) .merch_plan_btn a.chs_plan_trial {
    border-color: #e76d5f;
    color: #e76d5f;
}
.merch_plan_box_col:nth-child(5) .merch_plan_popularity {
    background: #e76d5f;
}
.merch_plan_btn a:hover {
    background: #000 !important;
    border-color: #000 !important;
    color: #fff !important;
}
.merch_plans_endsec {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 12px 46px;
    background: #ececec;
    border-radius: 9px;
    margin: 25px 0 44px;
}
.merch_plans_endsec h4 {
    margin-bottom: 0;
    letter-spacing: 0.01em;
    color: #202736;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 500;
}
.merch_plans_endsec ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.merch_plans_endsec ul li {
    margin-right: 18px;
}
.merch_plans_endsec ul li:last-child {
    margin-right: 0;
}
.merch_plans_endsec ul li a {
    display: inline-block;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.15;
    letter-spacing: 0.01em;
    text-transform: capitalize;
    color: #202736;
    background: #fff;
    border-radius: 6px;
    padding: 8px 22px;
    min-width: 223px;
    text-align: center;
}
.profile_complition {
    display: flex;
    justify-content: flex-end;
}
.profile_complition p {
    letter-spacing: 0.01em;
    color: #2d2b2b;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.15;
}
.profile_complition p span {
    color: #208fcd;
    display: inline-block;
}
.merch_plans_endsec ul li a:hover {
    background: #000;
    color: #fff;
}
.merch_add_table_sec table {
    width: 100%;
}
.merch_add_uprtable table td {
    color: #208ccb;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.2;
}
.merch_add_uprtable table td p {
    display: inline-block;
}
.merch_add_uprtable table td {
    padding: 19px 26px;
}
.merch_add_uprtable table td:nth-child(1) {
    width: 25%;
}
.merch_add_uprtable table td:nth-child(2) {
    width: 57%;
}
.merch_add_uprtable table tr:nth-child(odd) {
    background: #f8f8f8;
}
.merch_add_uprtable {
    margin-bottom: 8px;
}
.merch_add_lwrtable td {
    padding: 8px 26px;
    text-transform: capitalize;
}
.merch_add_lwrtable thead td {
    font-weight: 700;
    font-size: 15px;
    line-height: 1.2;
    color: #000;
}
.merch_add_lwrtable tbody td,
.merch_add_lwrtable tbody td select,
.merch_add_lwrtable thead th {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.15;
    letter-spacing: 0.01em;
    color: #454545;
    padding: 0px 22px;
}
.merch_add_lwrtable thead th {
    padding: 8px 22px;
    color: #000000;
}
.merch_add_lwrtable tbody tr:nth-child(odd) {
    background: #f8f8f8;
}
.merch_add_lwrtable tbody td:nth-child(3) {
    width: 17%;
}
.merch_add_lwrtable tbody td select {
    padding: 0;
    height: 45px;
    background: transparent url(images/select_drparw.svg) no-repeat right 5px
        center !important;
    background-size: 9px !important;
    border: none;
    cursor: pointer;
}
.merch_add_lwrtable tr td:nth-child(2),
.merch_add_lwrtable tr td:nth-child(4),
.merch_add_lwrtable tr td:nth-child(5),
.merch_add_lwrtable tr td:nth-child(6),
.merch_add_lwrtable tr td:nth-child(7) {
    text-align: center;
}
.merch_add_lwrtable thead tr td:nth-child(1) {
    width: 20%;
}
.merch_add_lwrtable tr td button {
    width: 20px;
    height: 18px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: none;
    background: #fff;
    padding: 0;
    line-height: 1;
    outline: none;
}
.merch_add_lwrtable tr td button img {
    width: 100%;
}
.profile_complition_chkout {
    justify-content: space-between;
    align-items: center;
}
.profile_complition_chkout p {
    margin-bottom: 0;
}
.merch_add_table_sec {
    margin-bottom: 42px;
}
.profile_complition_chkout .chkout_btn {
    display: inline-block;
}
.profile_complition_chkout .chkout_btn a {
    display: inline-block;
    text-transform: uppercase;
    color: #fff;
    background: #8ec64e;
    border-radius: 6px;
    padding: 18px 23px;
    letter-spacing: 0.01em;
    font-size: 16px;
    line-height: 1.15;
    font-weight: 500;
}
.profile_complition_chkout .chkout_btn a:hover {
    background: #000;
}
.step_hd_main {
    margin-bottom: 82px;
    padding: 0 10px;
}
.step_hd_main h4 {
    line-height: 1.12;
    letter-spacing: 0.01em;
    text-transform: capitalize;
    color: #000000;
    font-weight: 500;
    margin-bottom: 10px;
}
.step_hd_main p {
    font-size: 14px;
    line-height: 1.15;
    letter-spacing: 0.01em;
    color: #454545;
    font-weight: 600;
}
.merchant_plan_main_wrap {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.merch_add_uprtable table td:nth-child(3) p {
    font-size: 25px;
    vertical-align: middle;
    margin-top: -3px;
}
/* update end 

/* update start 26/12/2022 */
.merch_add_lwrtable thead th:nth-child(1) {
    width: 25%;
}
.merch_add_lwrtable tbody td:nth-child(1) {
    padding-right: 80px;
}
.wizard-body .left_step .add_btn_margin {
    width: calc(100% - 20px);
    margin-left: auto;
}
.mcd_form_col p {
    font-weight: 400;
    font-size: 14px;
}

/* update start 28/12/2022 */
.browse_btn {
    display: none;
}
.mcd_inp_file_main input[type="file"] {
    width: 100%;
    position: relative;
    height: 62px;
    opacity: 0;
    z-index: 2;
    cursor: pointer;
    margin: 0;
}

.mcd_inp_file_main {
    width: 100%;
    position: relative;
    cursor: pointer;
}
.browse_btn_file_img {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
}
.browse_btn_file_img span {
    border: 1px solid #b8bbbc;
    border-radius: 10px;
    height: 62px;
    width: 872px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 25px;
    color: #b2b2b2;
}
.mcd_inp_file_main:hover .browse_btn_file_img span:after {
    background-color: #26a7df;
    border-color: #26a7df;
}
.browse_btn_file_img span:after {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 69px;
    content: "";
    border: 1px solid #8ec64e;
    border-radius: 10px;
    height: 62px;
    background: #8ec64e url(images/mcd_file_input.svg) no-repeat center center;
    transition: all 0.3s ease-in-out;
    background-size: 33px;
}

/* date 24-11-22 start */

.right_bx_top_row {
    margin-bottom: 30px;
}
.right_box_lft_bx {
    border: 1px solid #ccc;
    padding: 20px;
    /* background: #F8F8F8; */
    border-radius: 20px;
}
.wizard-body-new.wizard-body .right_box_section.step-3 .cmn_box {
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 30px;
}
.wizard-body-new.wizard-body .right_box_section.step-3 .border_none {
    border: 0;
    padding: 0px;
    border-radius: 0px;
}
.wizard-body-new .last-step-inner {
    text-align: center;
}
.wizard-body-new.wizard-body .right_box_section.step-3 .last-step p {
    width: 100%;
    font-size: 15px;
    margin-bottom: 15px;
}
.wizard-body-new.wizard-body .right_box_section.step-3 .last-step h5 {
    text-align: center;
    font-size: 22px;
}
.wizard-body-new.wizard-body .right_box_section.step-3 .last-step {
    border: none;
    padding: 0;
    margin-bottom: 20px;
}
.wizard-body-new.wizard-body .right_box_section.step-3 .last-step .width_15 {
    width: 100%;
}
.last-step-inner-bttm {
    position: relative;
}
.wizard-body-new.wizard-body
    .right_box_section.step-3
    .last-step
    .checkbox_Box
    input[type="checkbox"] {
    height: 17px;
    width: 17px;
}
.wizard-body-new.wizard-body
    .right_box_section.step-3
    .last-step
    .checkbox_Box {
    position: absolute;
    right: 0;
    top: 10px;
    font-size: 12px;
}
.wizard-body-new.wizard-body .right_box_section.step-3 .last-step input {
    max-width: 140px;
    font-size: 14px;
}
.wizard-body-new.wizard-body .right_box_section.step-3 .note_sec {
    border: none;
    padding-top: 0;
}
.wizard-body-new.wizard-body .right_box_section.step-3 .note_sec p {
    font-size: 14px;
    line-height: 1.5;
}
.wizard-body-new .lctn_form_wrap {
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 20px;
}
.wizard-body-new .lctn_form_wrap .input_fld {
    text-align: center;
}
.wizard-body-new .lctn_form_wrap .input_fld label {
    font-size: 14px;
    text-align: center;
    display: block;
    margin-bottom: 5px;
}
.wizard-body-new .lctn_form_wrap .input_fld input[type="text"],
.wizard-body-new .lctn_form_wrap .input_fld input[type="password"],
.wizard-body-new .lctn_form_wrap .input_fld input[type="tel"],
.wizard-body-new .lctn_form_wrap .input_fld input[type="search"],
.wizard-body-new .lctn_form_wrap .input_fld input[type="number"],
.wizard-body-new .lctn_form_wrap .input_fld input[type="email"] {
    border: 1px solid #b8bbbc;
    border-radius: 10px;
    width: 100%;
    text-align: center;
    height: 41px;
    max-width: 150px;
    font-size: 14px;
}

.question_section_inn_checkbx {
    display: flex;
    justify-content: center;
}
.question_table_wrap {
    border: 1px solid #ccc;
    border-radius: 20px;
    overflow: hidden;
}
.question_section_inn {
    margin-bottom: 30px;
}
.wizard-body-new .question_table {
    min-height: 150px;
    border-radius: 20px;
    margin-bottom: 0;
}
.wizard-body-new .question_table tr {
    border: 0 !important;
}
.wizard-body-new .question_table tr th,
.wizard-body-new .question_table tr td {
    border: 1px solid #ccc !important;
    padding: 10px;
    text-align: center;
}
.wizard-body-new .question_table tr th {
    border-top: 0 !important;
    line-height: 1.2;
    vertical-align: middle;
}
.wizard-body-new .question_table tr th:first-child,
.wizard-body-new .question_table tr td:first-child {
    border-left: 0 !important;
}
.wizard-body-new .question_table tr th:last-child,
.wizard-body-new .question_table tr td:last-child {
    border-right: 0 !important;
}
.wizard-body-new .question_table tr td {
    font-size: 14px;
    border-bottom: 0 !important;
}
.wizard-body-new .question_table tr td a {
    color: #208dcb;
}
.wizard-body-new .question_table tr td a:hover {
    color: #93da42;
}
.question_section_nw_btn {
    text-align: center;
    margin-bottom: 30px;
}
.lc_btn {
    background: #208dcb;
    border-radius: 6px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #ffffff;
    padding: 18px 77px;
}
.lc_btn:hover {
    background: #93da42;
    color: #fff;
}
.btn_section_inn {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: -30px;
}
.btn_section_inn_full {
    width: 100%;
    flex: 0 0 auto;
}

.plan-button {
    background: #93da42;
    border-radius: 6px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #ffffff;
    padding: 18px 77px;
}
.plan-button:hover {
    background: #208dcb;
    color: #ffffff;
}
.btn_section_inn .next_btn {
    margin-right: 10px;
    margin-bottom: 10px;
}
.btn_section_inn .preview-deal1 {
    margin-bottom: 10px;
}
.btn_section_inn .back-button12 {
    margin-bottom: 10px;
}
.wizard-body-new.wizard-body
    .right_box_section.step-3
    .question_section
    .addrs {
    font-size: 17px;
    max-width: 180px;
    margin: 0 auto;
    margin-bottom: 30px;
}
.btn_section_btns_wr {
    margin-right: 20px;
    margin-bottom: 30px;
}
.btn_section_btns_p_compl {
    margin-bottom: 30px;
}
.btn_section_btn_rght {
    text-align: right;
    margin-bottom: 30px;
}
.wizard-body-new.wizard-body .right_box_section.step-3 .cmn_box h5 {
    text-align: center;
}
.wizard-body-new .check-box11 .form-check-input {
    flex-shrink: 0;
}
.right_bx_btm_row {
    margin-bottom: -30px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.right_bx_btm_col {
    margin-bottom: 30px;
}
.input_fld_row {
    margin-bottom: -15px;
}
.input_fld_col {
    margin-bottom: 15px;
}
/* date 24-11-22 end */

/* date 7/12/22 start */
.wizard-body .right_box_section.create_user_box_sec .heading_sec {
    text-align: center;
    padding-bottom: 30px;
}
.wizard-body .right_box_section.create_user_box_sec h1 {
    margin-bottom: 5px;
}
.wizard-body .right_box_section.create_user_box_sec .heading_sec h4 {
    font-weight: 300;
}
.wizard-body .right_box_section.create_user_box_sech4 strong {
    font-weight: 400;
}
.create_user_box_sec .form_top_crt_acc {
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.wizard-body .right_box_section .form-section select {
    background: url(./images/select-arrow-one.svg) no-repeat center right 10px;
    appearance: none;
    border: 1px solid #b8bbbc;
    border-radius: 10px;
    width: 100%;
    height: 62px;
    padding: 0 22px;
}
.create_user_box_sec .form_mid_crt_acc {
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 25px;
    margin-bottom: 10px;
}
.wizard-body .right_box_section .form-section input[type="file"] {
    padding: 13px;
}
.create_user_box_sec .form_end_crt_acc {
    padding-top: 15px;
}
.create_user_box_sec .form_end_crt_acc h5 {
    margin-bottom: 10px;
}
.create_user_box_sec .form_end_crt_acc p {
    margin-bottom: 15px !important;
}
.wizard-body .right_box_section .btn_section h6 {
    margin: 15px 0px;
}

.upld_img_sec .file_upload {
    max-width: 100% !important;
}
.uploaded_file_grp {
    text-align: center;
}
.uploaded_file_grp .upld_file_img img {
    width: 100%;
}
.uploaded_file_grp .upld_file_img {
    width: 70%;
    margin: 0 auto 20px;
    object-fit: cover;
    border: 2px solid #000;
    padding: 20px;
}
.uploaded_file_grp h6 {
    margin-bottom: 10px !important;
}
.uploaded_file_grp .up_pht_btn #form-upload-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px 35px;
    background: #000;
    border-radius: 50px;
    color: #fff;
}
.uploaded_file_grp .pht_dlt_btn {
    margin-bottom: 5px;
}
.uploaded_file_grp .up_pht_btn a:hover {
    background: #000;
    opacity: 0.7;
}
.upld_file_list_sec {
    margin-top: 30px;
}
.upld_file_list_sec .lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -10px;
}
.upld_file_list_sec .item {
    width: 16.66666666%;
    padding: 10px;
}
.upld_file_list_sec .inner img {
    width: 100%;
    margin-bottom: 10px;
}
.upld_file_list_sec .btn_grp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.upld_file_list_sec .btn_grp a {
    font-size: 12px;
}
.upld_file_list_sec .dlt_btn {
    color: red;
}
.upld_file_list_sec .dlt_btn:hover {
    opacity: 0.7;
}
.upld_file_list_sec .mkm_pht_btn {
    color: #8ec64e;
}
.upld_file_list_sec .mkm_pht_btn:hover {
    color: #000;
}

.prvw_dl_col_inner .logo_wth_img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
}
.prvw_dl_col_inner .logo_wth_img figure {
    margin: 0px;
}
.prvw_dl_col_inner .logo_wth_img .logo_img {
    margin-right: 10px;
}
.prvw_dl_offer_head {
    text-align: center;
    margin-bottom: 25px;
}
.prvw_dl_offer_head h2 {
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #ecb61e;
}
.prvw_dl_col_inner .terms_link {
    margin-top: 20px;
}
.prvw_dl_col_inner .terms_link a {
    text-decoration: underline !important;
    color: #208dcb;
}
.prvw_dl_col_inner .terms_link a:hover {
    color: #000;
}
.use-deal-now1.rmv_frm_wlt_btn {
    background: red;
}
.use-deal-now1.rmv_frm_wlt_btn:hover {
    opacity: 0.7;
}
.prvw_dl_offer_head p {
    font-size: 22px;
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: 700;
}

/* date 7/12/22 end */

/* 11/1/23 work start */
.participating-location-main-respnsv-table .two-hours-text {
    width: 100% !important;
    padding-right: 50px;
}

.merch_subscription .nav-pills {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0px !important;
}

.merch_subscription .nav-pills .nav-link {
    padding: 0px;
    font-size: 14px;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 4px;
    font-weight: 500;
    background: none !important;
    margin-bottom: 0px;
}

.merch_subscription .nav-pills .nav-link:after {
    content: ".";
    margin: 0px 4px;
}

.merch_subscription .nav-pills .nav-item:last-child .nav-link:after {
    display: none;
}

.merch_subscription .nav-pills .nav-item .nav-link.active {
    font-size: 16px !important;
    font-weight: 600 !important;
}

.merch_plan_box {
    position: relative;
    padding-bottom: 140px;
}

.merch_plan_btn {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    padding: 0px 15px 15px;
}

.merch_plan_btn a {
    width: 100% !important;
}

.merch_plans_end_btn_grp {
    margin-top: 30px;
    text-align: right;
}

.merch_plans_end_btn_grp a {
    display: inline-block;
    text-transform: uppercase;
    color: #fff;
    background: #8ec64e;
    border-radius: 6px;
    padding: 18px 23px;
    letter-spacing: 0.01em;
    font-size: 16px;
    line-height: 1.15;
    font-weight: 500;
}

.merch_plans_end_btn_grp .save_prog_btn {
    margin-right: 20px;
    background: #208fcd !important;
}

.merch_plans_end_btn_grp a:hover {
    background: #000 !important;
}

.merch_plan_box.active {
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 40%);
}
/* 11/1/23 work end */

/* ====21.2.23=============== */
.feature-list p {
    margin: 0;
    font-size: 20px;
}
.feature-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
a.edit-btn {
    display: inline-block;
    margin-right: 0px;
    color: blue;
    padding-right: 7px;
}
.rmve-btn {
    display: inline-block;
    margin-right: 0px;
    color: red;
    padding-left: 7px;
}
.feature-tab-wrapper .nav-link {
    padding: 0;
    font-size: 25px;
}
.feature-tab-wrapper .nav-link.active {
    color: black;
}

.feature-tab-wrapper .nav-item {
    padding: 0 25px;
    border-right: 2px solid black;
}
.feature-tab-wrapper .nav-item:last-child {
    border-right: 0;
    padding-right: 0;
}
.feature-tab-wrapper .nav-item:first-child {
    padding-left: 0;
}
.feature-tab-wrapper .nav {
    margin-bottom: 15px;
}
.feature-modal-btm button {
    max-width: 130px;
    margin-bottom: 0;
}
.f-btm-outr {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.feature-form {
    margin: 15px 0;
}
.btn-wrap {
    margin: 15px 0;
}
.feature-form .form-group input {
    border: 1px solid black;
}
.foor-wrap p {
    color: #545353;
    font-size: 14px;
    margin-bottom: 5px;
}
.floor-fig {
    height: 178px;
    width: 100%;
    margin: 0 auto 16px;
}
.floor-fig img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}
.foor-wrap {
    background-color: white;
    box-shadow: 0 20px 30px #00000024;
    padding: 15px;
}
.foor-txt-outr {
    padding: 0 15px;
}
.cus-row {
    margin: -10px;
}
.cus-col {
    padding: 10px;
}
.manage-modal-inr h3 {
    font-size: 18px !important;
    margin-bottom: 5px;
}
.manage-modal-inr input {
    border: 1px solid black;
    height: 40px;
}
.manage-modal-outr .m-row {
    align-items: center;
}
.manage-btn {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.manage-btn a {
    color: red;
}
.manage-modal-outr .uploard-logo-one h4 {
    font-size: 14px !important;
}
.manage-modal-lft .edit-btn {
    color: #8ec64e;
}
.manage-modal-inn {
    margin-bottom: 14px;
    border-bottom: 1px solid #c5c2c2;
    padding-bottom: 10px;
}
.manage-modal-outr h4 {
    text-align: left;
}
.manage-modal-lft .uploard-logo-one {
    height: 110px;
}
.manage-modal-lft .uploard-file-one {
    width: 100%;
    height: 100%;
}

/* 23/3/23 work start */
.vw_item_img img {
    width: 100%;
    height: 200px;
    -o-object-fit: cover;
    object-fit: cover;
}

.vw_item_img {
    margin-bottom: 15px;
}

.vw_item_img a {
    display: block;
}

.vw_item_rows {
    margin-bottom: -24px;
}

.vw_item {
    text-align: center;
    margin-bottom: 24px;
}

.vw_item_text a {
    font-size: 14px;
    line-height: 1;
    color: #26a7df;
    border-right: 1px solid #000;
    padding: 0px 10px;
    width: auto;
}

.vw_item_text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.vw_item_text a:last-child {
    border: 0px;
}

.vw_item_text a:hover {
    color: #000;
}

.hm_tab_img_grps {
    margin-bottom: -24px;
}

.hm_tab_img_grps_items {
    margin-bottom: 24px;
}

.hm_tab_img_grps_items img {
    height: 120px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.rwrd_deals_hm_tab th {
    font-size: 16px !important;
}

.rwrd_deals_hm_tab .ltr_p_toggler {
    background-color: transparent;
    border: 0px;
    color: #fff;
}

.rwrd_deals_hm_tab .ltr_p_toggler img {
    width: 18px;
    margin-left: 5px;
}

.rwrd_deals_hm_tab tr:first-child th:first-child {
    width: 230px;
}

.lb-closeContainer {
    position: absolute;
    top: -35px;
    right: 15px;
}

.rt_mid_park_sec {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.rt_mid_park_sec .view_loc_btn {
    margin-left: auto;
    padding: 5px 25px;
    background: #daa52b;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 6px;
    height: 40px;
    font-size: 14px;
    margin-right: 10px;
}

.rt_mid_park_sec .view_loc_btn:hover {
    background-color: #000;
    color: #fff;
}

.rt_mid_park_sec .link_btn {
    font-size: 14px;
    color: #8ec64e;
    text-decoration: underline !important;
    margin: 5px 0px;
}

.rt_mid_park_sec .link_btn:hover {
    color: #000;
}

.rt_mid_park_sec h2 {
    margin-bottom: 0px !important;
}

.day_appo_chart li {
    font-size: 16px !important;
    display: block;
    margin-right: 0px !important;
}

.day_appo_chart ul {
    display: block !important;
}

.day_appo_chart li + li {
    margin-top: 10px;
}

.day_appo_chart li strong {
    color: #26a7df;
    margin-right: 7px;
    min-width: 70px;
    display: inline-block;
}

.websitebutton a {
    background: #26a7df;
    border-radius: 6px;
    color: #fff;
    font-family: "Roboto";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.01em;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 20px;
    border: 0px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.websitebutton a:hover {
    background: #8ec64e;
}
/* 23/3/23 work end */

.scroll_table {
    max-height: 410px;
    overflow: auto;
}

.scroll_area_panel {
    max-height: 370px;
    overflow: auto;
}

.allen-img-first {
    width: 100%;
}

.modal-body .foor-wrap {
    box-shadow: unset;
    padding: 0;
    cursor: unset;
}

.modal-body .floor-fig {
    height: 270px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.modal_floor .modal-content {
    border: none;
    border-radius: 0;
}

.modal_floor .close {
    width: 32px;
    height: 32px;
    border: none;
    outline: none;
    border-radius: 50%;
    background: red;
    color: #ffffff;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    cursor: pointer;
    position: absolute;
    top: -16px;
    right: -16px;
    z-index: 999;
    transition: all 0.4s ease-in-out;
}

.modal_floor .close:hover {
    background: #4c4b4b;
}
/* CSS modification 22.08.23 */
.property-manager .nav.nav-tabs .nav-link {
    position: relative;
    padding-right: 40px;
    text-align: center;
}
.property-manager .nav.nav-tabs .nav-link .tab_ttle {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
}
.caret_dwn {
    background: url(images/down-arrow.svg) no-repeat center center;
    position: absolute;
    background-size: 16px;
    right: 16px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: inline-block;
    width: 16px;
    height: 16px;
}
.provider_type_lstng {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    color: #000;
    font-size: 14px;
    padding: 20px 15px;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.15);
    margin-top: 5px;
    z-index: 10;
    text-align: left;
}
.provider_type_lstng > li:not(:last-child) {
    margin-bottom: 5px;
}
/* CSS modification 22.08.23 */

.add_listing_button {
    text-align: right;
    padding-bottom: 20px;
    background: #208dcb;
}

.add_listing_button .page-btn {
    min-width: 173px;
}

.page-btn-blue {
    background-color: #26a7df;
}

.page-btn-blue:hover {
    background-color: #1f8ebd;
}

/* added by parna 31/08/2023 */
.listing_preview {
    text-align: center;
    padding: 16px 0 0;
}
.listing_preview h3 {
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 3px;
}
.listing_preview span {
    color: #a9a9a9;
    display: inline-block;
    margin-bottom: 5px;
}
.listing_preview ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
}
.listing_preview ul li {
    position: relative;
    padding-left: 10px;
    padding-right: 7px;
}
.listing_preview ul li::before {
    content: "|";
    position: absolute;
    left: 0;
    top: 0;
}
.request_info_content {
    border: 2px solid #000;
    border-radius: 10px;
    padding: 20px;
}
.request_info_header {
    border: none;
    align-items: flex-start;
    padding: 0px !important;
}
.request_info_header a.request_info_close {
    position: absolute;
    top: 0;
    right: -55px;
    padding: 0;
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ed2405 !important;
    opacity: 1;
    color: #ffffff;
    font-weight: bold;
    font-size: 30px;
    border-radius: 50%;
    text-transform: uppercase;
    outline: none !important;
    box-shadow: unset !important;
    transition: all 0.4s ease-in-out;
}
.request-info-topper {
    text-align: center;
    margin-bottom: 15px;
}
.itrip-logo-img {
    width: 168px;
    display: block;
    margin: 0 auto 10px;
}
.cmn-sub-ttile {
    display: block;
    font-size: 26px;
    color: #000;
    line-height: 1.2;
    font-weight: 600;
}
.request-info-form {
    max-width: 900px;
    margin: 0 auto;
}
.request_info_para {
    font-size: 17px;
    color: #707070;
    line-height: 1.6em;
}
.fieldset-col {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.input-date input[type="text"],
.input-date input[type="date"] {
    background: url(images/calendar.png) no-repeat right 16px center;
    background-size: 20px;
    padding-right: 40px;
}

.date-filed-para {
    font-size: 17px;
    color: #707070;
    line-height: 1.6em;
}

/* end */

/* 11.9.23 */
.settings_title {
    display: flex;
    align-items: center;
}

.edit_provider_btn {
    margin-left: 15px;
    color: #26a7df;
    text-decoration: underline !important;
    text-transform: capitalize;
}
.edit_provider_btn.hover {
    color: #f3a816;
}
.listingWebsite-modal .modal-header {
    padding: 0;
}
.listing_page_setting_innr {
    padding: 20px 0;
    border-bottom: 1px solid #e1e5e8;
}
.listing_page_setting_rw {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.listing_page_setting_txt {
    width: calc(100% - 185px);
    flex-basis: calc(100% - 185px);
}
.listing_page_setting_radio_wrap {
    width: 185px;
    flex-basis: 185px;
}
.listing_page_setting_radio_wrap .form_input_radio label:not(:last-child) {
    margin-right: 10px;
}
.form_input_radio label input[type="radio"] + span::after {
    background: #000000;
}
.listingWebsite-modal .btn-close {
    position: absolute;
    left: 101%;
    top: 10px;
    z-index: 1;
    padding: 0;
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ed2405 !important;
    opacity: 1;
    color: #ffffff;
    font-weight: bold;
    font-size: 30px;
    border-radius: 50%;
    text-transform: uppercase;
    outline: none !important;
    box-shadow: unset !important;
    transition: all 0.4s ease-in-out;
}
.hotel-portal-wrapper {
    padding-bottom: 20px;
    border-bottom: 1px solid #ededed;
}
.hotel-portal-left-panel {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.listingWebsite-modal .hotel-portal-logo {
    width: 90px;
}
.hotel-portal-logo img {
    width: 100%;
}
.listingWebsite-modal .hotel-portal-info {
    width: calc(100% - 90px);
    padding-left: 20px;
}
.listingWebsite-modal .hotel-portal-info h3 {
    font-size: 22px;
    line-height: 1.23em;
    letter-spacing: 0.01em;
    color: #000000;
    margin: 0 0 2px;
}
.hotel-portal-info ul.info-list {
    padding-bottom: 4px;
}
.hotel-portal-info ul.info-list li {
    color: #747474;
}
.hotel-portal-info ul.info-list li {
    margin-right: 20px;
    padding-bottom: 4px;
}
.hotel-portal-info ul.info-list li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.hotel-portal-info ul.media-list {
    padding-top: 8px;
}
.hotel-portal-info ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}
.hotel-portal-info ul.media-list li {
    margin-right: 45px;
    font-weight: 500;
    font-size: 15px;
}
.media-save-lbl {
    position: relative;
    cursor: pointer;
}
.media-save-lbl [type="checkbox"] {
    display: none;
}
.media-save-lbl span {
    position: relative;
}
.media-save-lbl span svg {
    width: 20px;
    height: auto;
    margin-right: 5px;
}
.hotel-portal-info ul.media-list li:last-child {
    margin-right: 0;
}
.hotel-portal-info ul.media-list li a {
    display: flex;
    align-items: center;
    color: #000;
}
.hotel-portal-info ul.media-list li a svg {
    width: 16px;
    height: auto;
    margin-right: 8px;
    position: relative;
    top: -2px;
}
.hotel-portal-right-panel {
    text-align: right;
}
.page-btn:last-child {
    margin-right: 0;
}
.page-btn-bright-cerulean {
    background: #26a7df;
}
.page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 142px;
    font-weight: 600;
    font-size: 16px;
    padding: 12px 10px;
    border-radius: 6px;
    color: #ffffff;
    border: 0;
    margin-right: 18px;
    text-align: center;
    text-transform: capitalize;
    cursor: pointer;
}
.page-btn .page-btn-icon {
    margin-right: 12px;
}
.modal_main_part_innr {
    padding-top: 40px;
}
.hotel-portal-navigate-nav {
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    border-bottom: 1px solid #ededed;
}
.hotel-portal-navigate-nav li.active a {
    background: transparent;
    border-color: #8ec64e;
    color: #000000;
}
.hotel-portal-navigate-nav a {
    font-weight: 500;
    display: block;
    font-size: 20px;
    letter-spacing: 0.01em;
    text-transform: capitalize;
    color: #bcbcbc;
    border: 0px;
    padding: 0 15px 22px;
    border-radius: 0;
    border-bottom: 3px solid transparent;
}
.listingWebsite-modal .navigate-panel {
    padding-top: 35px;
}
.qs h4 {
    position: relative;
    padding-left: 17px;
    margin: 0 0 10px;
}
.qs h4::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 10px;
    height: 10px;
    background: #000;
    border-radius: 50%;
}
.qs-form {
    padding: 5px 0 0 18px;
}
.listingWebsite-modal .qs-form .row {
    margin: 0 -10px;
}
.listingWebsite-modal .qs-form [class*="col-"] {
    padding: 0 10px;
}
.qs-form [class*="col-"] {
    margin-bottom: 15px;
}
.qs-form select {
    padding: 0 32px 0 10px;
    height: 38px;
    border: 1px solid #000;
    border-radius: 4px;
    font-weight: 500;
    font-size: 15px;
    color: #8ec64e;
    background: url(images/green-down-tick.svg) no-repeat calc(100% - 10px)
        center transparent;
    background-size: 16px;
    cursor: pointer;
}
.qs-form [type="submit"],
.qs-form [type="button"],
.qs-form .qs-btn {
    background: #26a7df;
    height: 38px;
    color: #ffffff;
    font-size: 17px;
    width: 100%;
    border-radius: 8px;
    padding: 8px;
}
.m-filter {
    padding-bottom: 15px;
}
.m-filter-bx {
    position: relative;
    padding: 0 0 0 18px;
}
.m-filter-bx::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 0;
    width: 10px;
    height: 10px;
    border: 2px solid #000;
    border-radius: 50%;
}
.m-filter select {
    width: auto;
    min-width: unset;
    padding: 0 20px 0 0;
    height: 38px;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    font-size: 16px;
    color: #000000;
    background: url(images/green-down-tick.svg) no-repeat calc(100% - 0px)
        center transparent;
    background-size: 16px;
    cursor: pointer;
}
.listingWebsite-modal .qs-result-scroll {
    padding-right: 30px;
}
.qs-result-scroll {
    width: 100%;
    max-height: 310px;
    overflow: auto;
    overflow-x: hidden;
    padding-right: 110px;
}
.qs-result [class*="col-"] {
    margin-bottom: 22px;
}
.listingWebsite-modal .qs-result-image {
    height: 190px;
}
.qs-result-image {
    width: 100%;
    height: 220px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}
.qs-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.qs-result-image-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    padding: 12px;
}
.qs-wishlist .media-save-lbl {
    color: #fff;
    font-weight: 600;
}
.qs-wishlist .media-save-lbl span {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
}
.qs-wishlist .media-save-lbl span svg {
    width: 40px;
    margin: 0 0 4px;
}
.qs-share a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 600;
}
.qs-share svg {
    width: 26px;
    height: auto;
    margin: 0 0 6px;
}
.qs-result-info {
    text-align: center;
    padding: 16px 0 0;
}
.qs-result-info a {
    display: block;
}
.listingWebsite-modal .qs-result-info h3 {
    font-size: 22px;
}
.qs-result-info h3 {
    font-weight: 500;
    line-height: 1.2em;
    margin: 0 0 4px;
    color: #26a7df;
}
.qs-result-info ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    margin: 0;
    list-style: none;
}
.qs-result-info ul li:first-child {
    padding-left: 0;
}
.qs-result-info ul li {
    position: relative;
    padding-left: 10px;
    padding-right: 7px;
    font-weight: 500;
    font-size: 16px;
    color: #000;
}
.qs-result-info ul li:last-child {
    padding-right: 0;
}
.move-in-special {
    background: #f8f8f8;
    border-radius: 13px;
    margin-bottom: 10px;
}
.bg-color-special-one {
    background: #8ec64e;
}
.move-in-special-heading {
    font-weight: 600;
    font-size: 22px;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */
    color: #fff;
    text-align: center;
    border-radius: 13px 13px 0px 0px;
    padding: 14px 0;
}
.move-spa-con {
    padding: 15px;
}
.move-spa-con p {
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 25px;
    /* text-transform: capitalize; */
    color: #3d3838;
    margin-bottom: 0px;
}
.bg-color-special-ten {
    background: #26a7df;
}
.setting_search_wrap {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.setting_search_field {
    width: 80%;
    padding-right: 20px;
}
.setting_select_wrap {
    width: 20%;
}
.setting_select_wrap select {
    border: 1px solid #26a7df;
}
.manage_listing_table table {
    width: 100%;
}
.manage_listing_table table th {
    font-size: 28px;
    background-color: #f8f8f8;
    padding: 15px 10px;
    line-height: 1.2;
}
.manage_listing_table table tbody td:first-child {
    width: 80%;
}
.manage_listing_table table tbody td {
    padding: 10px 5px;
    border-top: 1px solid #f8f8f8;
}
.manage_details_wpr {
    display: flex;
    flex-wrap: wrap;
}
.manage_details_wpr p {
    font-size: 15px;
    color: #707070;
}
.manage_listing_table table tbody td:last-child {
    width: 20%;
}
.manage_listing_table table tbody td:not(:first-child) {
    text-align: center;
}
.manage_listing_table table tbody td {
    padding: 10px 5px;
    border-top: 1px solid #f8f8f8;
}
.mange_check_box.form_input_check label {
    padding-left: 21px;
}
.mange_check_box.form_input_check label span {
    display: inline-block;
}
.checkbox_popup {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}
.mange_check_box.form_input_check
    label
    input[type="checkbox"]:checked
    + span::before {
    background-color: #3b61dc;
    border-color: #3b61dc;
}
.mange_check_box.form_input_check label input[type="checkbox"] + span::before {
    border-color: #707070;
}
.mange_check_box.form_input_check label input[type="checkbox"] + span::after {
    filter: brightness(0) invert(1);
}
.form_input_check label input[type="checkbox"]:checked + span:after {
    opacity: 1;
    /* -webkit-transform: scale(1); */
    transform: scale(1);
}
.provider_setting_popUp .modal-dialog-centered {
    flex-direction: column;
}
.manage_listing_popup .modal-dialog {
    max-width: 850px;
}
.provider_setting_popUp .modal-content {
    padding: 0;
    border-radius: 8px;
}
.provider_setting_popUp .modal-header {
    z-index: 9;
    padding: 0;
    display: block;
    width: 100%;
    height: auto;
    max-width: inherit;
    max-height: inherit;
    bottom: auto;
    border: 0;
    border-radius: 0;
    margin: 0;
    padding: 0;
    pointer-events: all;
}
.provider_setting_popUp .modal-header .btn-close {
    width: 35px;
    height: 35px;
    font-size: 20px;
    position: absolute;
    z-index: 9;
    top: 16px;
    right: 18px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ed2405 !important;
    opacity: 1;
    color: #ffffff;
    font-weight: bold;
    border-radius: 50%;
    text-transform: uppercase;
    outline: none !important;
    box-shadow: unset !important;
    transition: all 0.4s ease-in-out;
}
.manage_listing_popup .modal-content {
    border: 2px solid #000;
}
.provider_setting_popUp .modal-body {
    padding: 50px 16px 20px;
}
.provider_setting_cmn_wpr {
    padding: 25px 20px;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.provider_setting_cmn_wpr {
    padding: 15px 25px;
    border-radius: 10px;
    background-color: #f8f8f8;
}
.provider_setting_frm_head {
    margin-bottom: 20px;
}
.provider_setting_frm_field_wrap {
    display: flex;
    flex-wrap: wrap;
}
.provider_name_wrap input[type="text"] {
    font-size: 24px;
    font-weight: bold;
}
.provider_setting_frm_field_wrap input[type="text"] {
    width: calc(100% - 72px);
    flex-basis: calc(100% - 72px);
}
.provider_setting_edit_wrap {
    padding-left: 20px;
}
.inputEdit_btn {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background-color: #8ec64e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.inputEdit_btn img {
    width: 20px;
}

.provider_setting_frm_gruop {
    margin-bottom: 15px;
}
.provider_setting_frm_head h2 {
    font-size: 30px;
}
.provider_submitBtn_wrap {
    padding-top: 15px;
}
.save_provider {
    background: #8ec64e;
    color: #ffffff;
    height: 44px;
    border: none;
    -webkit-appearance: none;
    appearance: none;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 700;
    padding-left: 30px;
    padding-right: 30px;
    min-width: 125px;
    outline: none !important;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.provider_setting_large_img {
    height: 100px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.provider_setting_large_img img {
    height: 100%;
    object-fit: contain;
}
.provider_setting_upload_wrap {
    width: 100%;
    position: relative;
}
.provider_setting_popUp .provider_setting_upload_wrap label {
    width: 100%;
}
.provider_setting_upload_wrap label {
    margin-bottom: 0;
    position: relative;
}
.provider_setting_popUp .provider_setting_upload_wrap input[type="file"] {
    width: 100%;
}
.provider_setting_upload_wrap input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0;
    cursor: pointer;
}
.provider_setting_popUp
    .provider_setting_upload_wrap
    input[type="file"]
    + span {
    width: 100%;
}
.provider_setting_upload_wrap span {
    display: flex;
    background: #ececec;
    flex-direction: column;
    align-items: center;
    border: 3px solid #fff;
    border-radius: 10px;
    padding: 20px 15px 14px;
    width: 188px;
}
.provider_setting_upload_wrap span img {
    width: 35px;
    filter: brightness(0);
}
.common-border-modal .modal-content {
    padding: 0;
    border: 2px solid #000;
    border-radius: 10px;
}
.limitSetting-modal .modal-header {
    border-bottom: 1px solid #e1e5e8;
}
.modal-title {
    font-size: 35px;
    line-height: 1.23em;
    letter-spacing: 0.01em;
    color: #000;
    margin: 0 0 8px;
}
.page-btn-red {
    background-color: #f16f67;
}
.page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 142px;
    font-weight: 600;
    font-size: 16px;
    padding: 12px 10px;
    border-radius: 6px;
    color: #ffffff;
    border: 0;
    margin-right: 18px;
    text-align: center;
    text-transform: capitalize;
    cursor: pointer;
}
.limitSetting-modal .common-modal-body {
    padding: 20px;
}
.limitTime_innr:not(:last-child) {
    margin-bottom: 20px;
}
.limitTime_innr {
    display: flex;
    align-items: center;
}
.limitTime_innr > label {
    margin-right: 15px;
}
.limitTime_field_wrap {
    display: flex;
    align-items: center;
}
.limitTime_field_wrap input[type="text"] {
    border-radius: 0;
    width: 44px;
    padding: 0;
    height: 40px;
    padding: 10px;
}
.limitTime_field_wrap > *:not(:last-child) {
    margin-right: 7px;
}

.limitTime_field_wrap > p {
    margin-bottom: 0;
    font-size: 30px;
    font-weight: bold;
}
.limitTime_field_wrap select {
    border: 1px solid #000;
    border-radius: 0;
    height: 40px;
    background-size: 12px;
    padding-right: 40px;
}
.cmnLimit_setting_inner {
    padding: 15px 0;
    border-bottom: 1px solid #e1e5e8;
}
.cmnLimit_setting_inner > p {
    margin-bottom: 10px;
}
.cmnLimit_setting_field_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cmnLimit_setting_field_wrap input[type="text"] {
    width: 30%;
    height: 35px;
}
.cmnLimit_setting_field_wrap p {
    margin-bottom: 0;
    padding: 0 15px;
    font-size: 14px;
}
.cmnLimit_setting_field_wrap .blue_btn {
    min-width: 150px;
    text-align: center;
    color: #fff;
    font-weight: 500;
    background-color: #26a7df;
    border-radius: 5px;
    padding: 7px 30px;
}
.inputSelect_main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 25px;
}
.inputSelect_main input[type="text"] {
    width: 65%;
    height: 40px;
}
.inputSelect_main select {
    width: 30%;
    border: 1px solid #000;
    height: 40px;
    padding-right: 40px;
}
.limitSetting-modal .common-modal-body table thead th {
    color: #000;
    font-weight: 600;
}
.limitSetting-modal .common-modal-body table tbody td > p {
    margin-bottom: 5px;
    font-weight: normal;
    font-size: 14px;
}
.limitSetting_table_wrap table tbody tr td:last-child {
    text-align: center;
}
.mange_check_box.form_input_check label {
    padding-left: 21px;
}
.qrscanModal_popUp .modal-content {
    border: 2px solid #000;
}
.closeBtn_wrap {
    text-align: right;
    margin-bottom: 25px;
}
.qrscanModal_body_innr h2 {
    font-size: 32px;
    color: #26a7df;
    text-align: center;
    margin-bottom: 20px;
}
.qrscanModal_body_innr .subtitle {
    font-size: 24px;
    font-weight: 600;
}
.qrscanModal_body_innr > p {
    text-align: center;
    font-weight: 500;
}
.qrscanModal_body_innr > p a {
    color: #26a7df;
}
.qrCode_rw {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.qrTxt_col {
    width: 70%;
    padding: 0 15px;
}
.qrTxt_col p:not(:last-child) {
    font-weight: 500;
    margin-bottom: 0px;
}
.qrTxt_col p {
    margin-bottom: 25px;
}
.partner_logo_wrap {
    display: block;
    width: 60%;
    margin: 0 auto;
}
.partner_logo_wrap img {
    width: 100%;
}
.qaCode_col {
    width: 30%;
    padding: 0 15px;
}
.qrCode_wrap {
    background: linear-gradient(
        90deg,
        rgba(38, 167, 223, 1) 9%,
        rgba(142, 198, 78, 1) 100%
    );
    border-radius: 10px;
    padding: 3px;
    width: 100%;
    overflow: hidden;
}
.qrCode_wrap span {
    display: block;
    line-height: 1;
    border-radius: 10px;
    width: 100%;
    overflow: hidden;
    background-color: #fff;
    padding: 10px;
}
.print_dwnlad_wrap {
    padding-top: 15px;
}
.print_dwnlad_wrap a:not(:last-child) {
    margin-right: 25px;
}
.print_dwnlad_wrap a {
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: #000;
}
.print_dwnlad_wrap a span {
    width: 25px;
    margin-left: 10px;
    transition: 0.3s all;
}
.setting_timing {
    text-align: center;
    color: #fff;
    font-weight: 500;
    background-color: #26a7df;
    border-radius: 5px;
    padding: 7px 15px;
    margin-left: auto;
}
.setting_timing:hover {
    color: white;
}

/* end */

/* start 29-07 by parna */
.search_portal {
    padding: 20px 0;
}
.seacrh_head {
    margin-bottom: 40px;
}

.seacrh_head h1 {
    font-size: 30px;
    line-height: 1.23em;
    letter-spacing: 0.01em;
    color: var(--black-color);
}
.search_frm_wrap {
    margin-bottom: 20px;
}
.search_frm_wrap form {
    display: flex;
    flex-wrap: wrap;
}
.search_field_wrap {
    width: calc(100% - 72px);
    flex-basis: calc(100% - 72px);
}
.searchtype {
    background-color: transparent;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
    color: #000;
    border: 1px solid rgba(0, 0, 0, 1);
    height: 52px;
    padding: 0 16px;
    outline: none !important;
}
.searchBtn_wrap {
    padding-left: 20px;
}
.search_submit input[type="submit"] {
    background: url(images/search-icon.svg) center no-repeat #8ec64e;
    background-size: 25px;
    font-size: 0;
    line-height: 0;
    height: 52px;
    width: 52px;
    flex-basis: 52px;
    min-width: inherit;
    padding: 0;
    margin: 0;
    transition: 0.5s all;
}
.destination_property_wrap {
    margin-bottom: 30px;
}
.destination_wrap {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.cmn_subHead p {
    font-size: 20px;
    line-height: 1.23em;
    letter-spacing: 0.01em;
    color: #000;
    font-weight: 700;
    margin-bottom: 0;
    padding-right: 20px;
}
.destination_wrap select {
    border-radius: 10px;
    border: 1px solid #000;
    width: auto;
    min-width: 250px;
    font-size: 18px;
    font-weight: 700;
    background-size: 15px;
}
.property_wrap {
    display: flex;
    align-items: center;
}
.property_option {
    display: flex;
}
.property_option label:first-child {
    padding-left: 0;
}
.property_option label input[type="checkbox"] {
    display: none;
}
.property_option label input[type="checkbox"] + span {
    font-weight: 500;
    color: #000;
    position: relative;
    padding-top: 40px;
    cursor: pointer;
}

.property_option label input[type="checkbox"] + span::before {
    position: absolute;
    content: "";
    border: 2px solid #000;
    border-radius: 5px;
    width: 25px;
    height: 25px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.property_option label input[type="checkbox"]:checked + span::after {
    transform: translateX(-50%) scale(1);
}
.property_option label input[type="checkbox"] + span::after {
    position: absolute;
    content: "";
    background: url(images/black-check.svg) center no-repeat;
    background-size: 15px;
    width: 15px;
    height: 15px;
    top: 4px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    transition: 0.3s all;
}
.property_option label:last-child {
    padding-right: 0;
}
.property_option label {
    padding: 0 15px;
    display: flex;
    flex-direction: column;
}
.qs-result-scroll.lg {
    max-height: 540px;
    padding-right: 30px;
}
.search_portal .qs-result-box {
    margin-bottom: 30px;
}
.qs-result-image {
    width: 100%;
    height: 220px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}
.qs-result-image-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    padding: 12px;
}
.extra_img_wrap .qs-share {
    margin-top: auto;
}
.qs-share a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 600;
}
.qs-share svg {
    width: 26px;
    height: auto;
    margin: 0 0 6px;
}
.qs-result-image .prev_arrw {
    left: 10px;
}
.cmn_arrw img {
    width: 8px;
    height: inherit;
    object-fit: contain;
    transition: 0.3s all;
}
.qs-result-image .next_arrw {
    right: 10px;
}
.qs-result-info {
    text-align: center;
    padding: 16px 0 0;
}
.qs-result-info a {
    display: block;
}
.qs-result-info h3 {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.2em;
    margin: 0 0 4px;
    color: #26a7df;
}
.qs-result-info a > span {
    color: #a9a9a9;
    display: inline-block;
    margin-bottom: 5px;
}
.qs-result-info ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    margin: 0;
    list-style: none;
}
.qs-result-info ul li:first-child {
    padding-left: 0;
}
.qs-result-info ul li::before {
    content: "|";
    position: absolute;
    left: 0;
    top: 0;
}
.cmn_arrw {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #fff;
    cursor: pointer;
    transition: 0.5s all;
}
.property_option label input[type="checkbox"]:checked + span::after {
    transform: translateX(-50%) scale(1);
}
.property_option label input[type="checkbox"] + span::after {
    position: absolute;
    content: "";
    background: url(images/black-check.svg) center no-repeat;
    background-size: 15px;
    width: 15px;
    height: 15px;
    top: 4px;
    left: 50%;
    /* transform: translateX(-50%) scale(0); */
    transition: 0.3s all;
}
.notification-area {
    background: #f8f8f8;
    padding: 20px 0 15px;
}
.nti-btn {
    letter-spacing: 0.01em;
    color: #000;
    font-weight: 500;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
}
.nti-btn svg {
    margin-right: 10px;
}
.hotel-portal {
    padding: 20px 0;
}
.hotel-portal-logo {
    width: 130px;
}
.wrap-link {
    color: #26a7df;
    display: inline-block;
    font-weight: 500;
    font-size: 14px;
}
.hotel-portal-info {
    width: calc(100% - 130px);
    padding-left: 28px;
}
.main-cate {
    font-weight: 500;
    font-size: 18px;
    margin: 0 0 4px;
}
.hotel-portal-info h1,
.hotel-portal-info .hOne {
    font-size: 30px;
    line-height: 1.23em;
    letter-spacing: 0.01em;
    color: var(--black-color);
    margin: 0 0 2px;
}
.hotel-portal-info p {
    /* font-family: 'segoe_uiregular'; */
    font-size: 17px;
    color: #707070;
    line-height: 1.6em;
}
.del-info {
    display: flex;
    flex-wrap: wrap;
    padding: 10px 0;
    margin: 0;
    list-style: none;
}
.del-info li {
    font-size: 18px;
    color: #010101;
    margin-right: 16px;
    display: flex;
    align-items: center;
    /* font-family: 'segoe_uibold'; */
}
.del-info li:first-child .del-info-icon {
    width: 15px;
}
.del-info li .del-info-icon {
    width: 8px;
    height: auto;
    margin-right: 8px;
}
.hotel-portal-navigate {
    padding: 40px 0 60px;
}
.navigate-panel {
    padding-top: 50px;
}
.small-media-divide-col .small-media-box {
    width: 100%;
    height: 310px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}
.small-media-box a {
    display: block;
    width: 100%;
    height: 100%;
}
.small-media-divide-col .small-media-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.qs-media-share-wrap {
    padding: 35px 0 0;
    margin: 0;
    display: flex;
    justify-content: center;
}
.qs-media-share-wrap .media-list {
    padding: 0;
    margin: 0;
    list-style: none;
}
.qs-media-share-wrap .media-list li {
    margin-bottom: 30px;
}
.cmn-share-btn {
    display: flex;
    align-items: center;
    color: #000;
    font-weight: 500;
    font-size: 18px;
}
.cmn-share-btn svg {
    width: 16px;
    height: auto;
    margin-right: 8px;
    position: relative;
    top: -2px;
}
.small_media_list {
    display: flex;
    flex-wrap: wrap;
}
.small_media_list .small-media-divide {
    padding: 0 12px;
}
.small-media .small-media-divide {
    width: 20%;
    margin-bottom: 26px;
}
.small-media-divide .small-media-box {
    cursor: pointer;
}
.small-media-box {
    width: 100%;
    height: 148px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}
.small-media-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.location-title {
    display: block;
    color: var(--black-color);
    line-height: 1.1;
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 15px;
}
.location-map iframe {
    width: 100% !important;
    height: 350px !important;
}
.derication-btn {
    text-align: center;
    margin-top: 15px;
}
.derication-btn .blue-btn {
    font-size: 22px;
    padding-left: 30px;
    padding-right: 30px;
}
.page-btn.blue-btn {
    background-color: #26a7df;
}

.vacation_page_next_prev_btn nav {
    width: 100%;
}

.vacation_page_next_prev_btn nav .pagination {
    justify-content: space-between;
}

.vacation_page_next_prev_btn nav .page-link {
    border: 0;
    padding: 0;
    display: inline-block;
    position: relative;
    color: #26a7df;
    text-transform: capitalize;
    cursor: pointer;
}

.vacation_page_next_prev_btn nav .page-link:hover {
    background: transparent;
    color: #000;
}

.vacation_page_next_prev_btn nav .page-link:hover i {
    filter: brightness(0) invert(0);
}

.vacation_page_next_prev_btn nav .page-link i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    line-height: 0;
}

.vacation_page_next_prev_btn nav .page-link[rel="prev"] {
    padding-left: 25px;
}

.vacation_page_next_prev_btn nav .page-link[rel="prev"] i {
    left: 0;
}

.vacation_page_next_prev_btn nav .page-link[rel="next"] i {
    right: 0;
}

.vacation_page_next_prev_btn nav .page-link[rel="next"] {
    padding-right: 25px;
}
.vacation_page_next_prev_btn nav .disabled.page-item .page-link i {
    filter: brightness(0) invert(0);
    opacity: 0.4;
}
.request-col {
    margin-bottom: 20px;
}
.multiSelect_wrap .select2-container {
    width: 100%;
}
.multiSelect_wrap .select2-container--bootstrap-5 .select2-selection {
    border: 1px solid #000;
    border-radius: 10px !important;
    padding: 5px 11px;
    min-height: 52px;
}
.multiSelect_wrap
    .select2-container
    .select2-selection--multiple
    .select2-selection__rendered {
    margin-bottom: 0;
    white-space: inherit;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 5px 0 0;
}
.multiSelect_wrap
    .select2-container--bootstrap-5
    .select2-selection
    .select2-selection__choice {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    background-color: #ddd;
    border: 1px solid #000;
    font-size: 17px;
    color: #000;
    line-height: 1;
    font-weight: 500;
    border-radius: 8px;
    margin-right: 5px;
    margin-bottom: 5px;
}
.multiSelect_wrap
    .select2-container--bootstrap-5
    .select2-selection
    .select2-selection__choice__remove {
    font-size: 30px;
    line-height: 15px;
    font-weight: 500;
    color: #000;
    border: none;
    background-color: #ddd;
}
.multiSelect_wrap
    .select2-container--bootstrap-5
    .select2-selection--multiple
    .select2-search {
    width: auto !important;
}
.select2-results__option.select2-results__option--highlighted {
    background-color: #d69414;
}
.submit-btn-wrp {
    text-align: right;
}
.media-save-lbl [type="checkbox"]:checked + span svg .heart-fill {
    fill: #ed240b;
}
.date_error_message {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.share-property {
    padding: 4px 0 0 14px;
    display: flex;
    flex-wrap: wrap;
}
.share-property-image {
    width: 156px;
    height: 126px;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}
.share-property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.share-property-intro {
    width: calc(100% - 156px);
    padding: 0 0 0 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.share-property-title {
    font-size: 30px;
    line-height: 1.23em;
    letter-spacing: 0.01em;
    color: #000;
    margin: 0 0 8px;
}
.share-property-location {
    margin: 0 0 5px;
    line-height: 1.1;
    font-weight: 500;
    font-size: 16px;
}
.share-property-facility {
    padding: 2px 0 0;
    margin: 0;
    list-style: none;
    display: flex;
}
.share-property-facility li:first-child {
    padding-left: 0;
}
.share-property-facility li {
    position: relative;
    padding-left: 15px;
    padding-right: 7px;
    font-weight: 500;
    font-size: 16px;
}
.share-property-facility li::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #000;
}
.extra-listingWebsite-modal .share-property-option {
    padding: 24px 24px 0;
}
.share-property-option [class*="col-"] {
    margin-bottom: 24px;
}
.share-property-option-box a,
.share-property-option-box .share_link_wrap {
    height: 100%;
    min-height: 115px;
    display: flex;
    align-items: center;
    border: 2px solid #f2f2f2;
    border-radius: 15px;
    padding: 14px 36px;
    color: #000000;
    font-size: 18px;
    font-weight: 500;
}
.share-property-option-box a svg,
.share-property-option-box .share_link_wrap svg {
    width: 48px;
    height: auto;
    margin-right: 36px;
}
.modal-header .shareClose {
    padding: 0;
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ed2405 !important;
    opacity: 1;
    color: #ffffff;
    font-weight: bold;
    font-size: 30px;
    border-radius: 50%;
    text-transform: uppercase;
    outline: none !important;
    box-shadow: unset !important;
    transition: all 0.4s ease-in-out;
}

/* end */

/* 09.10.23 start */

.share_link_wrap ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.share_link_wrap {
    position: relative;
    height: 100%;
    min-height: 115px;
    display: flex;
    align-items: center;
    border: 2px solid #f2f2f2;
    border-radius: 15px;
    padding: 14px 36px;
    color: #000000;
    font-size: 18px;
    font-weight: 500;
}
.share_link_wrap ul > li a {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

/* 09.10.23 end */

/* 10/10/2023 dm */

.search_portal .qs-result-box {
    height: 100%;
}

.qs-result-image {
    height: auto;
    overflow: inherit;
}

.slick-slide {
    height: 220px;
    overflow: hidden;
    border-radius: 20px;
}
.share-property-facility li:first-child:before,
.qs-result-info ul li:first-child:before {
    display: none;
}

.modal-header .shareClose {
    width: 30px;
    height: 30px;
    font-size: 19px;
}

.modal-title {
    font-size: 30px;
}

/* .m-filter .m-filter-bx{ 
  padding-left: 0;
} */

.m-filter .m-filter-bx::before {
    display: none;
}

.m-filter .m-filter-bx select {
    border: 1px solid #000;
    padding-left: 10px;
    background: url(images/green-down-tick.svg) no-repeat calc(100% - 10px)
        center transparent;
    padding-right: 28px;
}

/* 10/10/2023 dm */
/*support paulomi 11/10/2023*/
.smart-badge-table thead tr th:not(:first-child),
.smart-badge-table tbody tr td:not(:first-child) {
    min-width: 150px;
}
.smart-badges .smart-badge-table tbody tr td {
    padding: 18px 6px;
}
.smart-badge-table tbody tr td.badge-cancel-td {
    min-width: auto;
    text-align: center;
}
.badge-cancel {
    padding: 5px;
}
.smart-badge-table tbody tr th.smart-address-th,
.smart-badge-table tbody tr td.smart-address-th {
    min-width: 250px;
}
/*support paulomi 11/10/2023*/
/* start on 12-10-2023 */
.dolphing_cove_modal .modal-content {
    border-radius: 10px;
    border: 2px solid #000;
    padding: 25px 30px;
}
.dolphing_cove_modal .modal-header {
    padding: 0;
    position: relative;
    display: block;
}
.dolphincove_modal_title {
    display: flex;
    font-size: 22px;
    justify-content: center;
}
.dolphing_cove_modal .refresh-btn {
    display: inline-block;
    font-weight: 600;
    color: #8ec64e;
    position: absolute;
    top: 0;
    right: 0;
}
.refresh-btn img {
    display: block;
    width: 26px;
    margin: 0 auto 6px;
}
.dolphing_cove_modal .modal-body {
    padding: 0;
    padding-bottom: 30px;
}
.dolphin_row {
    margin-bottom: -20px;
}
.dolphin_column {
    margin-bottom: 20px;
}
.dolphin_column label {
    font-weight: 600;
    margin-bottom: 5px;
}
.dolphin-cus-row {
    display: flex;
    flex-wrap: wrap;
    margin: 15px -15px 0;
    align-items: center;
}
.dolphin_column_left {
    width: 60%;
    padding: 0 15px;
}
.dolphin_column_right {
    width: 40%;
    padding: 0 15px;
}
.dolphin_sub_title {
    font-size: 20px;
    margin-bottom: 10px;
}
.dolphing_cove_modal .modal-footer {
    border: 0;
    padding: 0;
    flex-wrap: nowrap;
}
.dolphing_cove_modal .modal-footer .page-btn:not(:last-child) {
    margin-right: 10px;
}
.dolphing_cove_modal .modal-footer .page-btn {
    margin-bottom: 0;
}
.memberfound-modal .modal-content {
    padding: 30px 20px 20px;
}
.memberfound-modal .close-small {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    color: #000;
    line-height: 1;
    position: absolute;
}
.memberfound-modal .common-modal-body {
    text-align: center;
}
.memberfound-modal .manage-title {
    font-size: 26px;
    margin-bottom: 15px;
}
.check-img {
    display: block;
    margin: 0 auto;
    width: 60px;
}
.memberfound-modal .modal-dialog {
    width: 320px;
}
.dolphin_input .sky-text {
    font-weight: 500;
}
.sky-text {
    color: #26a7df;
}
.text-green {
    color: #8ec64e;
    font-weight: 500;
}
.common-border-modal .modal-content {
    padding: 20px;
    border: 2px solid #000;
    border-radius: 10px;
}
.Clears-Dates-Modal .common-modal-body,
.Clears-Dates-Modal .common-modal-close {
    text-align: center;
}
.Clears-Dates-Modal .common-modal-body > strong {
    margin-bottom: 15px;
    display: block;
}
.Clears-Dates-Modal .common-modal-close {
    padding-top: 20px;
}
.scheduled_badges_modal .modal-dialog {
    max-width: 500px;
}
.scheduled_badges_modal .modal-content {
    padding: 20px;
    border-radius: 10px;
}
.scheduled_badges_inner_wpr {
    padding: 0;
}
.scheduled_badges_header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 20px;
}
.scheduled_badges_header .scheduled_badges_btn {
    font-size: 24px;
}
.scheduled_badges_btn {
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    line-height: 1;
    color: #26a7df;
}
.scheduled_badges_btn img {
    width: 20px;
    display: inline-block;
    margin-right: 8px;
}
.scheduled_badges_date {
    display: flex;
    align-items: center;
}
.date_prev {
    margin-right: 8px;
}
.scheduled_badges_date p {
    margin-bottom: 0;
    font-size: 24px;
    color: var(--black-color);
    font-weight: 500;
    text-decoration: underline;
}
.date_next {
    margin-left: 8px;
}
.date_arow img {
    width: 12px;
    display: inline-block;
    filter: brightness(0) invert(0);
}
.scheduled_badges_modal_searchbar {
    text-align: right;
    padding-bottom: 30px;
    position: relative;
}
.scheduled_badges_modal_searchbar input[type="search"] {
    border-color: #26a7df;
    height: 40px;
    width: 60%;
}
.scheduled_badges_table table {
    width: 100%;
}
.scheduled_badges_table table thead th:first-child {
    width: 50%;
}
.scheduled_badges_table table thead th {
    font-size: 18px;
    padding: 5px 0;
}
.scheduled_badges_table table thead th:last-child {
    width: 40%;
}
.scheduled_badges_table table tbody td {
    padding: 5px 0;
    font-size: 17px;
    font-weight: 500;
}
.scheduled_badges_modal_button {
    padding-top: 15px;
    text-align: right;
    display: flex;
    justify-content: flex-end;
}
.scheduled_badges_modal_button .page-btn:not(:last-child) {
    margin-right: 10px;
}
.deactivate-badge-modal .common-modal-body,
.deactivate-badge-modal .common-modal-close {
    text-align: center;
}
.selectedbadgelisting ul {
    list-style: none;
    padding: 0px;
    width: 250px;
    position: absolute;
    top: 40px;
    right: 0;
    margin: 0;
    background: white;
}
.selectedbadgelisting ul li {
    background: lavender;
    padding: 4px;
    margin-bottom: 1px;
    text-align: left;
    padding-inline: 10px;
}

.selectedbadgelisting ul li:nth-child(even) {
    background: cadetblue;
    color: white;
}

.selectedbadgelisting ul li:hover {
    cursor: pointer;
}
/* end on 12-10-2023 */
/*support 13/11/2023*/
.dolphin_colm_radiobox {
    width: 5%;
}
.dolphin_colm_radiobox .form-check-input {
    width: 15px;
    height: 15px;
}
.dolphin-cus-row-new .dolphin_column_right {
    width: 35%;
}
.dolphin-cus-row-new .dolphin_sub_title {
    font-size: 18px;
}
/* 28.11.23 css start */
.dolphin-outer-wraper {
    height: 300px;
    overflow-y: auto;
}
/* 28.11.23 css end */

/* css update start RN 21-12-2023 */
.popup-form-submit button[type="submit"] {
    float: none;
}
.form-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 05-01-2024 start */
.new_registration_badge_modal .modal-dialog {
    max-width: 550px;
}

.new_registration_badge_modal .by-continue-text {
    font-weight: 600;
    font-size: 22px;
    text-align: left;
    color: #000000;
    line-height: 1.4em;
    width: 100%;
    max-width: 450px;
}

.new_registration_badge_modal label > span {
    color: red;
}

.new_registration_badge_modal label {
    color: #232323;
    font-weight: 400;
    line-height: 1;
    font-size: 15px;
}

.new_registration_badge_modal .main-form [type="text"],
.new_registration_badge_modal .main-form [type="password"] {
    margin-bottom: 15px;
    margin-top: 4px !important;
}

.new_registration_badge_modal .reg_btn {
    width: 100%;
    background: #26a7df;
    letter-spacing: inherit;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 800;
}

.new_registration_badge_modal .reg_btn:hover {
    background: #93da42;
}

.new_registration_badge_modal .trm_info {
    margin-top: 20px;
}

.new_registration_badge_modal .trm_info p {
    width: 100%;
    max-width: 420px;
    color: #474747;
    font-weight: 400;
    font-size: 16px;
}

.new_registration_badge_modal .trm_info p a {
    color: #26a7df;
}

.new_registration_badge_modal .trm_info p a:hover {
    color: #93da42;
}

.new_registration_badge_modal .p_text {
    margin-top: 16px;
    font-size: 16px;
    margin-bottom: 12px;
}

.new_registration_badge_modal label.error {
    color: red;
    display: block;
    position: relative;
    top: -7px;
    margin-bottom: 8px;
    font-size: 14px;
}
/* 05-01-2024 end */

/* 08.01.24 start */

.new-checkbx .dolphin_colm_radiobox {
    width: 10%;
    padding-left: 15px;
    display: flex;
    align-items: center;
}
.new-checkbx .dolphin_column_left {
    width: 55%;
}
.new-checkbx .dolphin_colm_radiobox .form-check-input {
    margin: 0;
    width: 20px;
    height: 20px;
}

/* 08.01.24 end */

/* 06-03-2024 start */
.edit-textarea {
    text-align: right;
    padding-top: 4px;
}

.edit-textarea-btn {
    background: transparent;
    border: none;
    color: #2091CE;
    display: inline-flex;
    font-size: 18px;
    align-items: center;
    transition: all .4s ease-in-out;
}

.edit-textarea-btn img {
    margin-left: 6px;
    width: 18px;
}

.edit-textarea-btn:hover {
    opacity: 0.6;
}

.rd-text p {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.30em;
    color: #000000;
}


.rd-text p a {
    color: #24A1DB;
}

.rd-text p a:hover {
    color: #99C64E;
}

.md-modal-property-site-setting .modal-body {
    padding-left: 0;
    padding-right: 0;
}

.md-modal-property-site-setting .table_cmn_part_sgn table tr th,
.md-modal-property-site-setting .table_cmn_part_sgn table tr td {
    padding-left: 0;
}

.md-modal-property-site-setting .modal-footer {
    padding-left: 0;
    padding-right: 0;
}

.new-gm-btn-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn-blue-outline {
    background: transparent;
    border-radius: 6px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
    text-align: center;
    letter-spacing: 0.01em;
    padding: 15px;
    display: inline-block;
    border: 1px solid #24A1DB;
    color: #24A1DB;
}

.btn-blue-outline:hover {
    background: #24A1DB;
    color: #ffffff;
}

.featured-mid-con.bd-none {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
}
/* 06-03-2024 end */

/* css update start 08-03-2024 */
.universe-btm-con label input[type="radio"]{
    display: none;
}
.universe-btm-con .universe-con-radio{
    padding-left: 25px;
    position: relative;
}
.universe-btm-con .universe-con-radio::before{
    position: absolute;
    left: 0;
    top: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid #0d6efd;
    background: #fff;
    content: "";
    transition: all 0.3s ease-in-out;
}
.universe-btm-con .universe-con-radio::after{
    position: absolute;
    left: 3px;
    top: 3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    content: "";
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}
.universe-btm-con label input[type="radio"]:checked + .universe-con-radio::before{
    background: #0d6efd;
}
.universe-btm-con label input[type="radio"]:checked + .universe-con-radio::after{
    opacity: 1;
    visibility: visible;
}
.universe-mdl-con .universe-con-radio p, .universe-mdl-con .universe-con-radio span{
    color: #85c24a;
}
/* css update end 08-03-2024 */

/* 18/3/24 work start */
.page-settings-modal h2 {
    font-size: 30px;
}
.page-settings-modal .field-blk{
    margin-bottom: 20px;
}
.cmn-txtarea-reset-btn{
    text-align: right;
    margin-top: 5px;
}
.pst-stng-btns {
    display: flex;
    justify-content: space-between;
}
.pst-stng-btns .btn-flex {
    display: flex;
}
.field-blk label{
    margin-bottom: 5px;
}
.label-blue {
    color: #2297D3;
    text-transform: capitalize;
    margin-bottom: 5px;
}
.uploard-photo-main .btn_grp {
    text-align: center;
}
.uploard-photo-main .dlt_btn {
    color: red;
}
/* 18/3/24 work end */

/* .hours-table */
.hours-table table{
    width: 100%;
}

.hours-table table th{
    width: 25%;
    font-size: 14px;
    font-weight: 500;
    padding-bottom: 20px;
    /* text-align: center; */

}
.hours-table table th:last-child{
    text-align: center;
}
.hours-table table th:nth-child(2),.hours-table table th:nth-child(3){
    width: 30%;
}
.hours-table table th:last-child{
    width: 15%;
}
.hours-table table td {
    font-size: 14px;
    color: #aaa;
    font-weight: 500;
    text-align: center;
    padding-right: 5px;
    padding-bottom: 10px;
}

.hours-table table td select {
    height: 30px;
    background-size: 12px;
    padding: 0 5px;
    font-size: 11px;
    background: url(images/blue-down-tick.svg) no-repeat calc(100% - 6px)
    center transparent;
    background-size: 10px;
}
/* end 26.3.24 */

/* 23.04.24 css */
.md-footer-top {
    text-align: center;
}
.md-footer-top p{
    font-size: 16px;
    margin-bottom: 5px;
}
.md-footer-link {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 15px;
}
.md-footer-link a {
    font-size: 16px;
    line-height: 1;
    color: #1f8ebd !important;
    border-right: 1px solid #1f8ebd;
    padding-right: 10px;
    margin-right: 10px;
}
.md-footer-link a small {
    text-decoration: underline;
    cursor: pointer;
}
.md-footer-link a:last-child{
    border-right: 0;
    padding-right: 0;
    margin-right: 0;
}

/* 10-05-2024 start */
.new_col_wrp {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.new_col {
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.new_col label {
    flex-shrink: 0;
    margin-right: 10px;
    font-size: 13px;
}

.new_col select {
    width: 184px;
    height: 44px;
    border-color: #239bd6;
    border-radius: 5px;
    font-size: 13px;
    background-size: 12px;
}

.new_col [type="text"],
.new_col [type="search"] {
    width: 220px;
    height: 44px;
    border-color: #239bd6;
    border-radius: 5px;
    font-size: 13px;
}

.tip_link {
    text-align: right;
    padding: 6px 0 0;
}

.tip_link a {
    color: #26a7df;
    text-decoration: underline!important;
    font-weight: 600;
    font-size: 13px;
}

.tip_link a:hover {
    color: #8ec64e;
}
/* 10-05-2024 end */


/* 14/5/24 work start */
.enterunit_dropdown_parent {
    position: relative;
}

.enterunit ul {
    list-style: none;
    padding: 0px;
    width: 250px;
    position: relative;
    margin: 0;
    background: white;
    position: absolute;
    top: 100%;
    left: 0;
}

.enterunit ul li {
    background: rgba(35, 155, 214, 0.2);
    padding: 4px;
    margin-bottom: 1px;
}

.enterunit ul li:nth-child(even) {
    background: #239bd6;
    color: white;
}

.enterunit ul li:hover {
    cursor: pointer;
}

.show-filled-units-only.guest-rntl .table_section td, 
.show-filled-units-only.guest-rntl .table_section th{
    padding: 10px; 
}
/* 14/5/24 work end */
 .form_section_area .note-editable p {
    margin: 0 !important;
    text-align: left !important;
    color: #000 !important;
    text-transform: none !important
}

.modal-heading-property-site-setting {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.modal-heading-property-site-setting .cancel-button {
    flex-shrink: 0;
    margin-left: 15px;
}

.modal-qrcode .modal-dialog  {
    max-width: 800px;
}

.wrap-pop-info {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.left-col-form {
    width: 100%;
    max-width: 650px;
}

.right-col-btn {
    width: calc(100% - 650px);
    text-align: right;
}

.right-col-btn .setting_timing {
    padding: 12px 15px;
}

.left-col-form .new_col_wrp {
    flex-wrap: unset;
}

.modal-qrcode .new_col {
    position: relative;
}

.modal-qrcode .selectedlisting ul {
    position: absolute;
    top: 44px;
    left: 0;
    width: 100%;
    height: 200px;
    overflow-y: auto;
    box-shadow: 0px 17px 10px #00000030;
}

.modal-qrcode .selectedlisting ul li {
    text-align: left;
    font-size: 16px;
    font-weight: 400;
}


.rpt-top-head {
    padding: 30px 0px;
    background: #F8F8F8;
}
.rpt-top-head p {
    font-size: 14px;
    font-weight: 400;
    color: #2D2B2B;
}

.rpt-top-head h2 {
    margin-bottom: 15px;
}

.rpt-form-area {
    padding: 40px 0px;
}

.choose-rpt-bar select {
    border-color: #26A7DF;
    color: #000;
    font-size: 16px;
    text-transform: capitalize;
    background-image: url('images/document-icon-n.svg');
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center right 16px;
    max-width: 364px;
}

.choose-rpt-bar ::placeholder {
    opacity: 1;
    color: #000;
}

.choose-rpt-bar {
    margin-bottom: 40px;
}

.rpt-rq-opt label input {
    display: none;
}

.rpt-rq-opt label> input + span {
    width: 20px;
    height: 20px;
    border: 2px solid #26A7DF;
    display: inline-block;
    border-radius: 100%;
    margin-right: 12px;
    position: relative;
}

.rpt-rq-opt label {
    font-size: 20px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.rpt-rq-opt label> input + span:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 12px;
    height: 12px;
    background: #26A7DF;
    border-radius: 100%;
    opacity: 0;
}

.rpt-rq-opt label> input:checked + span:after {
    opacity: 1;
}
.rq-date-pick-wrap {
    display: flex;
    align-items: center;
    max-width: 912px;
    margin-top: 20px;
}

.rq-date-pick-wrap > span {
    margin: 10px;
    font-size: 16px;
}

.rq-date-pick-wrap input {
    font-size: 16px;
    color: #B2B2B2;
    border-color: #B2B2B2;
    background-image: url('images/cald-icon-n.svg');
    background-repeat: no-repeat;
    background-size: 18px;
    background-position: center right 16px;
}

.rpt-rq-opt:not(:last-child) {
    margin-bottom: 30px;
}

.rq-radio-opt {
    padding-left: 32px;
}

.rq-radio-opt > span {
    color: #2D2B2B;
}

.rq-radio-wrap {
    margin: 5px -15px -15px;
}

.rq-radio-wrap label {
    font-size: 16px;
    font-weight: 500;
    margin: 15px;
}

.rpt-rq-opt .rq-radio-wrap label> input + span {
    border-color: #93DA42;
}
.rpt-rq-opt .rq-radio-wrap label> input:checked + span:after{
    background:#93DA42;
}

.rpt-form-btm {
    margin-top: 40px;
    display: flex;
}

.rpt-form-btm>* {
    min-width: 200px;
}

.rpt-form-btm .closeUnitBadge {
    margin-left: auto;
}

.rpt-form-btm .page-btn.page-btn-blue:hover {
    background: #1d81ac;
}
button{
    transition: all .3s ease-in-out;
}


/* ========== responsive css =========== */

@media (min-width: 1025px) {
    /* navbar*/
    .navbar-nav .clickD {
        display: none;
    }
    .navbar-nav li.menu-item-has-children:hover > .sub-menu {
        display: block;
    }
}
/* 1025 end */

@media (max-width: 1600px) {
}
/* 1600 end */

@media (max-width: 1399px) {
    /* date 24-11-22 start  */
    .wizard-body-new.wizard-body .right_box_section.step-3 .last-step input {
        max-width: 100px;
    }
    /* date 24-11-22 end  */
}
/* 1399 end */

@media (max-width: 1199px) {
    /*css19.10.22*/
    .assign_role_userpt table tr th,
    .assign_role_userpt table tr td {
        min-width: 220px;
    }
    .assign_role_userpt table tr th:not(:first-child),
    .assign_role_userpt table tr td:not(:first-child) {
        min-width: 350px;
    }
    /*css19.10.22_end*/

    /* settings */
    .database_copy_outersd_top > * {
        padding: 0 10px;
    }
    .database_copy_outersd_top {
        margin: 0 -10px;
    }
    .toggler_specl_evnts h3 {
        font-size: 25px;
    }
    /* settings_end */
    /*19.12.22*/
    .special_mvmnt_wrapper_inr_top {
        padding: 11px 16px;
    }
    .special_mvmnt_wrapper_inr_btm {
        padding: 16px 16px;
    }
    .special_mvmnt_wrapper_inr_btm h4 {
        font-size: 20px;
    }
    .special_mvmnt_wrapper_inr_btm {
        font-size: 16px;
    }
    .search_popup_outerss_nav li a {
        font-size: 16px;
        padding: 13px 10px;
    }
    /*19.12.22_end*/

    /* update start 26/12/2022 */

    .merch_hd h1 {
        font-size: 28px;
    }
    .merch_hd ul li a {
        font-size: 22px;
        padding: 12px 25px 18px;
    }
    .merch_hd ul {
        margin: 25px 0 35px;
    }
    .merch_add_uprtable table td {
        padding: 10px 14px;
    }
    .merch_add_uprtable table td:nth-child(1) {
        width: 23%;
    }
    .merch_add_lwrtable thead tr td:nth-child(1) {
        width: 23%;
    }
    .merch_add_lwrtable thead td {
        font-size: 14px;
    }
    .merch_add_lwrtable tbody td,
    .merch_add_lwrtable tbody td select,
    .merch_add_lwrtable td {
        padding: 0 14px;
    }
    .merch_add_lwrtable tbody td:nth-child(3) {
        width: 24%;
    }
    .profile_complition_chkout .chkout_btn a {
        padding: 14px 20px;
        font-size: 14px;
    }
    .profile_complition p {
        font-size: 16px;
    }
    .merch_add_uprtable table td {
        font-size: 14px;
    }

    .mcd_Left h1 {
        font-size: 32px;
    }
    .mcd_status {
        margin-bottom: 30px;
    }
    .mcd_Left {
        padding: 25px;
    }
    .mcd_right {
        padding: 30px 16px 40px;
    }
    .mailing_tgl_inner label {
        font-size: 15px;
    }
    .mailing_tgl_inner label {
        padding: 5px 14px;
    }
    .mcd_edit_btn img,
    .browse_btn_file img {
        max-width: 24px;
    }
    .mcd_right h3 {
        font-size: 20px;
    }
    .mcd_right ul li {
        font-size: 16px;
    }
    .mcd_col {
        margin-bottom: 30px;
    }
    .mcd_col:last-child {
        margin-bottom: 0;
    }
    .mcd_input {
        margin-bottom: 22px;
    }
    .mcd_input_with_btn {
        margin-bottom: 0;
    }
    .mcd_form_row .mcd_form_col:nth-child(3) {
        margin-bottom: 0px;
    }
    .mcd_margin_top {
        margin-top: 30px;
    }
    .mid_step_pymntinfo {
        padding: 30px 15px 28px 25px;
    }
    .wizard_body_enter_pymntinfo h1 {
        font-size: 32px;
    }
    .mid_step_bill_addrs {
        margin-bottom: 24px;
    }
    .last_step_pymnt {
        margin-bottom: 20px;
    }
    .last_step_pymnt_table,
    .last_step_pymnt_mid .last_step_pymnt_hd {
        padding-bottom: 20px;
    }
    .billing-management-hd {
        padding: 35px 0 14px;
    }
    .billing-management-hd h1 {
        font-size: 32px;
    }
    .billing_management_body_wrap {
        padding: 30px 40px 30px;
    }
    .billing_management_left {
        font-size: 20px;
    }
    .billing_management_left table thead th:nth-child(1) {
        width: 42%;
    }
    .billing_management_left table thead th:nth-child(2) {
        width: 30%;
    }
    .billing_management_right ul li a {
        font-size: 18px;
    }
    .billing_management_left table thead th {
        font-size: 18px;
    }
    .billing_management_right ul li {
        margin-bottom: 20px;
    }
    .billing_management_left table {
        margin-bottom: 25px;
    }
    .billing_management_left table tbody td {
        font-size: 14px;
    }
    .merch_plan_box_col {
        width: 50%;
        margin-bottom: 20px;
    }
    .merch_plan_box_hd {
        min-height: 1px;
    }
    .merch_plans_endsec {
        padding: 12px 25px;
    }
    .merch_add_table_sec td,
    .merch_add_table_sec th {
        white-space: nowrap;
    }
    .merch_add_uprtable,
    .merch_add_lwrtable {
        overflow-x: auto;
    }
    .merch_add_table_sec {
        width: 950px;
    }
    .merch_add_table_sec_main_wrap {
        overflow-x: auto;
    }
    .merch_add_uprtable table td:nth-child(2) {
        width: 62%;
    }
    .merch_add_lwrtable thead th {
        padding: 8px 14px;
    }
    /* update start 26/12/2022 */
    .browse_btn_file_img span {
        width: 552px;
    }
    .mailing_tgl_inner {
        min-width: 276px;
    }

    /* date 24-11-22 start  */

    .wizard-body-new.wizard-body
        .right_box_section.step-3
        .last-step
        .checkbox_Box {
        position: relative;
        width: 100%;
        justify-content: center;
    }
    /* date 24-11-22 end  */

    /* date 7/12/22 start */
    .upld_file_list_sec .item {
        width: 25%;
    }
    /* date 7/12/22 end */
}
/* 1199 end */

@media (max-width: 1024px) {
    /* navbar*/
    .navbar-nav .clickD {
        position: absolute;
        right: 0;
        top: 17px;
        width: 20px;
        height: 20px;
        background: url(images/sort-down.svg) center center no-repeat;
        display: block;
        background-size: 10px;
        cursor: pointer;
    }
    .navbar-nav .clickD.toggled {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    .sub-menu > li.menu-item-has-children .clickD {
        top: 8px;
        right: 5px;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }
    .sub-menu > li.menu-item-has-children .clickD.toggled {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .navbar-nav > li.menu-item-has-children {
        padding-right: 20px;
    }
    .sub-menu > li.menu-item-has-children > a {
        padding-right: 20px;
    }

    .sub-menu.show {
        display: block;
    }

    .navbar-nav > li {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .navbar-nav > li.current-menu-item > a:after,
    .navbar-nav > li > a:after,
    .navbar-nav > li.menu-item-has-children > a:after {
        width: 100%;
        opacity: 0;
    }

    .navbar-nav > li.current-menu-item > a:after,
    .navbar-nav > li > a:hover:after,
    .navbar-nav > li.menu-item-has-children:hover > a:after {
        width: 100%;
        opacity: 1;
    }

    /* navbar end*/
}
/* 1024 end */

@media (max-width: 991px) {
    /* navbar*/
    .navbar-toggler {
        position: relative;
        width: 33px;
        margin-left: auto;
        height: 28px;
        padding: 0;
        outline: none !important;
        border: none !important;
        box-shadow: none !important;
    }
    .stick,
    .stick:after,
    .stick:before {
        width: 30px;
        height: 2px;
        background: #000;
        position: absolute;
        left: 0;
        top: auto;
        transition: all 0.6s;
        border-radius: 5px;
    }
    .stick:before {
        content: "";
        top: -10px;
        left: 0;
    }
    .stick:after {
        content: "";
        top: 10px;
        left: 0;
    }
    .stick.open {
        transform: translateX(-50px);
        background: transparent;
    }
    .stick.open:before {
        transform: rotate(45deg) translate(42px, -28px);
        left: 2px;
    }
    .stick.open:after {
        transform: rotate(-45deg) translate(42px, 28px);
        left: 2px;
    }

    .navbar-nav .clickD {
        top: 8px;
        right: 10px !important;
        -webkit-transform: rotate(0) !important;
        transform: rotate(0) !important;
    }
    .navbar-nav .clickD.toggled {
        -webkit-transform: rotate(180deg) !important;
        transform: rotate(180deg) !important;
    }
    .sub-menu,
    .navbar-nav > li > .sub-menu .sub-menu {
        position: relative;
        width: 100%;
        left: inherit;
        top: inherit;
        border: none;
        right: inherit;
    }
    .navbar-nav > li.menu-item-has-children {
        padding-right: 0;
    }
    .navbar-nav > li {
        margin: 0;
        padding: 0;
    }
    .navbar-nav li.menu-item-has-children > a {
        padding-right: 30px !important;
    }
    .navbar-nav > li > a {
        padding: 8px 20px;
        display: inline-block;
        width: 100%;
    }
    .sub-menu > li > a {
        padding-left: 40px;
    }
    .sub-menu .sub-menu > li > a {
        padding-left: 60px;
    }
    .sub-menu .sub-menu .sub-menu > li > a {
        padding-left: 80px;
    }

    .navbar-nav > li > a:after {
        bottom: 0;
    }
    /* navbar end*/

    /* push nav */

    .navbar-collapse {
        background: #fff;
        position: fixed;
        top: 0;
        height: 100% !important;
        width: 290px;
        overflow-y: auto;
        transition: inherit !important;
        right: 0;
        margin: 0;
        display: block !important;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        -webkit-transition: transform 0.2s ease-in-out !important;
        transition: transform 0.2s ease-in-out !important;
        z-index: 100;
    }
    .navbar-collapse.show,
    .navbar-collapse.collapsing {
        display: block !important;
        -webkit-transform: translateX(0);
        transform: translateX(0);
        -webkit-transition: transform 0.2s ease-in-out !important;
        transition: transform 0.2s ease-in-out !important;
    }
    .navbar-collapse .navbar-nav {
        margin: 80px 0 0 !important;
        padding: 0 0 40px 0;
    }
    .navbar-collapse .navbar-toggler {
        display: block;
        right: 20px;
        top: 20px;
        position: absolute;
    }
    #navoverlay.open {
        background-color: rgba(0, 0, 0, 0.4);
        pointer-events: all;
        -webkit-transition: background-color 0.5s linear;
        transition: background-color 0.5s linear;
    }
    body.open-nav,
    html.open-nav {
        height: 100%;
        overflow: hidden !important;
    }
    /* push nav end */

    /*css19.10.22*/
    .add_usern_sctn_top_wrap {
        margin: 0;
    }
    .add_usern_sctn_top_wrap > * {
        padding: 0;
    }
    .add_usern_sctn_top_wrap_lft {
        flex-basis: 100%;
        max-width: 100%;
    }
    .add_usern_sctn_top_wrap_rtt {
        flex-basis: 100%;
        max-width: 100%;
        margin-top: 10px;
    }
    .cmn_modal_designs .modal-dialog {
        max-width: 80%;
    }
    .gap_sec_modal1.cmn_modal_designs .modal-dialog {
        max-width: 80%;
    }
    .cmn_modal_designs.gap_sec_modal2 .modal-dialog {
        max-width: 80%;
    }
    .cmn_secthd_modals h1 {
        font-size: 40px;
    }
    .cmn_secthd_modals h2 {
        font-size: 34px;
    }
    .cmn_secthd_modals h3 {
        font-size: 27px;
    }
    .cmn_secthd_modals h4 {
        font-size: 22px;
    }
    .cmn_secthd_modals h5 {
        font-size: 18px;
    }

    /*css19.10.22_end*/

    /* settings */
    .gimmzi_section_bxss h3 {
        height: auto !important;
    }
    .database_copy_outersd_top {
        display: block;
        margin: 0;
    }
    .database_copy_outersd_top > * {
        padding: 0;
        margin-bottom: 10px;
    }
    .database_copy_outersd_top > *:last-child {
        margin-bottom: 0;
    }

    /* settings_end */
    /*19.12.22*/
    .search_popup_outerss_phts_col_lft .featured-amenties-button {
        padding-top: 20px;
    }
    .search_popup_outerss_nav li a {
        min-width: 190px;
    }

    /*19.12.22_end*/

    /* update start 26/12/2022 */
    .mid_step_pymntinfo {
        margin: 30px 0;
    }
    .mid_step_pymntinfo {
        padding: 25px 15px 28px 15px;
    }
    .billing_management_left .card_info {
        margin-right: 8px;
    }
    .billing_management_left .card_info a,
    .billing_management_left table tbody tr.merch_introplan td span.upgrade a {
        padding: 5px 8px;
    }
    .billing_management_right {
        margin-top: 25px;
    }
    .wizard-body .left_step {
        max-width: 100% !important;
        padding: 25px 15px !important;
    }
    .wizard-body .left_step .deal_btn {
        margin-bottom: 20px !important;
    }
    /* update end 26/12/2022 */
    .browse_btn_file_img span {
        width: 574px;
    }

    /* date 24-11-22 start  */

    .wizard-body-new.wizard-body .left_step {
        max-width: 100%;
    }
    .btn_section_btns_wr {
        text-align: center;
        margin-right: 0;
    }
    .btn_section_btn_rght {
        margin-bottom: 10px;
        text-align: center;
    }
    .btn_section_btns_p_compl {
        width: 100%;
        text-align: center;
    }
    .wizard-body-new.wizard-body .right_box_section .btn_section_two-button {
        padding-top: 10px !important;
    }
    .wizard-body-new.wizard-body .right_box_section h1 {
        text-align: center;
    }
    .wizard-body-new.wizard-body .right_box_section .btn_section h6 {
        font-size: 16px;
        line-height: 1;
    }
    /* date 24-11-22 end  */

    /* date 7/12/22 start */
    .uploaded_file_grp {
        margin-top: 20px;
    }
    .uploaded_file_grp .upld_file_img {
        width: 100%;
    }
    .upld_file_list_sec .item {
        width: 33.333333333%;
    }
    .uploaded_file_grp .up_pht_btn a {
        font-size: 14px;
        padding: 9px 25px;
    }
    .prvw_dl_col + .prvw_dl_col {
        margin-top: 30px;
    }
    .rt_mid_park_sec {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .rt_mid_park_sec .view_loc_btn {
        margin-left: 0px;
        margin-top: 10px;
    }

    #main_location {
        width: 100% !important;
    }
    /* date 7/12/22 end */
    /* 10-05-2024 start */
    .new_col {
        align-items: flex-start;
        flex-direction: column;
    }

    .new_col label {
        margin-right: 0;
        font-size: 13px;
        margin-bottom: 6px;
    }
    /* 10-05-2024 end */

    .modal-qrcode .modal-dialog {
        max-width: 700px;
    }

    .left-col-form {
        width: 85%;
    }

    .right-col-btn {
        width: 15%;
    }

    .wrap-pop-info {
        align-items: end;
    }

    .right-col-btn .setting_timing {
        padding: 9px 15px;
        margin: 20px 0 0;
        display: inline-block;
    }

    .modal-qrcode .new_col {
        width: 50%;
    }

    .left-col-form .new_col select {
        width: 100%
    }

    .left-col-form .enterunit_dropdown_parent,
    .left-col-form .new_col [type="text"] {
        width: 100%
    }

    .rpt-form-btm>* {
        min-width: 160px;
    }
    .rpt-form-btm {
        flex-wrap: wrap;
    }

    .rq-radio-wrap label {
        margin: 10px;
    }

    .rq-radio-wrap {
        margin: 5px -10px -10px;
    }
}
/* 991 end */

@media (max-width: 767px) {
    /* images alignment for wordpress content pages */
    .alignright,
    .alignleft,
    .aligncenter {
        float: none;
        clear: both;
        display: block;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        clear: both;
        margin-bottom: 24px;
    }

    /*css19.10.22*/
    .user_scn_form .form-group input[type="text"],
    .user_scn_form .form-group input[type="email"],
    .user_scn_form .form-group input[type="search"],
    .user_scn_form .form-group input[type="tel"] {
        font-size: 15px;
        padding: 0 11px;
        height: 50px;
        width: calc(100% - 70px);
    }
    .user_scn_form .form-group input[type="submit"],
    .user_scn_form .form-group button[type="submit"],
    .user_scn_form .form-group input[type="button"],
    .user_scn_form .form-group button[type="button"] {
        height: 50px;
        width: 60px;
    }
    .add_usern_sctn_top_wrap_rtt .cmn_usr_btn {
        min-height: inherit;
    }
    .add_usern_sctn_top_wrap_rtt {
        margin-top: 4px;
    }
    .table_user_top_sec_col_lft h3 {
        font-size: 28px;
    }
    .table_cmn_part_sgn table tr td,
    .table_cmn_part_sgn table tr th {
        padding: 15px 17px;
    }
    .table_cmn_part_sgn table tr td:not(:first-child) {
        min-width: 140px;
    }
    .cmn_modal_designs .modal-dialog .modal-content {
        width: 100%;
    }
    .btn_foot_end .btn_table_s {
        display: block;
        width: 100%;
        margin: 0;
        margin-bottom: 10px;
    }
    .btn_foot_end .btn_table_s:last-child {
        margin-bottom: 0;
    }
    .btn_foot_end {
        width: 100%;
    }
    .cmn_modal_designs .modal-header .modal-title {
        font-size: 28px;
    }
    .modal-footer-gap-none {
        width: 100%;
    }
    .gap_sec_modal1.cmn_modal_designs .modal-dialog {
        max-width: 90%;
    }
    .cmn_modal_designs.gap_sec_modal2 .modal-dialog {
        max-width: 90%;
    }
    .cmn_secthd_modals h1 {
        font-size: 35px;
    }
    .cmn_secthd_modals h2 {
        font-size: 30px;
    }
    .cmn_secthd_modals h3 {
        font-size: 25px;
    }
    .cmn_secthd_modals h4 {
        font-size: 20px;
    }
    .cmn_secthd_modals h5 {
        font-size: 17px;
    }
    .cmn_secthd_modals h6 {
        font-size: 15px;
    }
    /*css19.10.22_end*/

    /* settings */
    .sec_heading_stng h2 {
        font-size: 37px;
    }
    .sec_heading_stng {
        margin-bottom: 20px;
    }
    .week_dtls_tablss table tr td {
        min-width: 200px;
    }
    /* settings_end */

    /*19.12.22*/
    .preview_modal_faded .modal-content {
        width: 100%;
    }

    /*19.12.22_end*/

    /* update start 26/12/2022 */

    .merch_hd ul li a {
        font-size: 18px;
        padding: 10px 20px 15px;
    }
    .merch_add_lwrtable {
        overflow-x: auto;
    }
    .billing_management_body_wrap {
        padding: 20px;
    }
    .billing_management_left table thead th {
        font-size: 16px;
    }
    .billing_management_left table thead th {
        padding: 10px 0;
    }
    .merch_plan_box_col {
        width: 100%;
    }
    .merch_plans_endsec ul,
    .merch_plans_endsec {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        width: 100%;
    }
    .merch_plans_endsec ul li {
        margin-right: 0;
        margin-bottom: 12px;
        width: 100%;
    }
    .merch_plans_endsec ul li:last-child {
        margin-bottom: 0;
    }
    .merch_hd ul {
        margin: 25px 0 10px;
    }
    .merch_plans_endsec ul li a {
        width: 100%;
    }
    .billing_management_left table tbody td,
    .billing_management_left table thead th {
        padding-left: 5px;
        padding-right: 5px;
        white-space: nowrap;
    }
    .billing_management_left {
        overflow-x: auto;
    }
    /* update end 26/12/2022 */
    .browse_btn_file_img span {
        width: 392px;
    }

    /* date 24-11-22 start  */

    .wizard-body.wizard-body-new .right_box_section h1 {
        font-size: 26px;
        line-height: 1.3;
    }
    .wizard-body.wizard-body-new .right_box_section.step-3 {
        padding: 30px 0;
    }
    .wizard-body.wizard-body-new .left_step ul li h6 {
        font-size: 18px;
    }
    .wizard-body.wizard-body-new .left_step ul li p {
        font-size: 13px;
    }
    .wizard-body.wizard-body-new .left_step {
        padding: 20px 15px;
    }
    .right_box_lft_bx {
        padding: 20px 15px;
    }
    .wizard-body-new .lctn_form_wrap {
        padding: 20px 15px;
    }
    .wizard-body-new.wizard-body .right_box_section.step-3 .cmn_box {
        padding: 20px 15px;
    }
    .wizard-body-new .question_section_inn_checkbx {
        flex-wrap: wrap;
        justify-content: flex-start !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .wizard-body-new.wizard-body .right_box_section.step-3 .cmn_box h5 {
        margin-bottom: 10px;
    }
    .wizard-body-new.wizard-body
        .right_box_section.step-3
        .question_section
        .addrs {
        font-size: 15px;
        margin-bottom: 20px;
    }
    .wizard-body-new.wizard-body .form-check2 {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .lc_btn {
        padding: 12px 10px;
        font-size: 14px;
    }
    .plan-button {
        padding: 12px 40px;
        font-size: 14px;
    }
    .btn_section_btns_wr .back-button12 {
        font-size: 14px;
        line-height: 1;
        padding: 15px 16px;
        width: 150px;
        margin-right: 0px;
    }
    .wizard-body.wizard-body-new .right_box_section .btn_section .next_btn {
        font-size: 14px;
        line-height: 1;
        padding: 15px 16px;
        width: 150px;
        margin-right: 0px;
        padding: 15px 40px;
    }
    .btn_section_btns_wr .preview-deal1 {
        font-size: 14px;
        line-height: 1;
        width: 150px;
        padding: 15px 18px;
    }
    .container {
        max-width: 100% !important;
    }
    .wizard-body-new.wizard-body
        .right_box_section.step-3
        .question_section.cmn_box {
        margin-bottom: 0;
    }
    .wizard-body-new.wizard-body .right_box_section.step-3 .cmn_box h5 {
        font-size: 18px;
    }
    .wizard-body-new.wizard-body
        .right_box_section.step-3
        .cmn_box.question_section_wth_table {
        padding-left: 0;
        padding-right: 0;
    }
    .wizard-body-new .question_table tr th,
    .wizard-body-new .question_table tr td {
        padding: 6px;
    }
    .wizard-body-new .question_table tr th {
        font-size: 14px;
    }
    .wizard-body-new .question_table tr td {
        font-size: 12px;
    }
    .wizard-body-new .question_table {
        min-height: 120px;
    }

    /* date 24-11-22 end  */

    /* date 7/11/22 start */
    .wizard-body .right_box_section {
        padding: 30px 15px !important;
    }
    .custom-checkbox {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .wizard-body .right_box_section .form-section input {
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }
    /* date 7/11/22 end */

    /* date 7/12/22 start */
    #exampleModal .modal-content {
        margin-top: 35px !important;
    }
    /* date 7/12/22 end */

    .scroll_area_panel {
        margin-top: 25px;
    }

    .hm_tab_img_grps_items img {
        height: 300px;
    }

    /* 08.01.24 start */

    .dolphing_cove_modal .modal-footer {
        flex-wrap: wrap;
        justify-content: center;
    }
    .new-checkbx .dolphin_colm_radiobox .form-check-input {
        margin: 0;
        width: 15px;
        height: 15px;
    }

    /* 08.01.24 end */

    .left-col-form .new_col_wrp {
        flex-wrap: wrap;
    }

    .modal-qrcode .new_col {
        width: 100%;
        margin-top: 10px;
    }

    .right-col-btn {
        text-align: left;
    }

    .left-col-form {
        width: 100%;
    }

    .right-col-btn {
        width: 100%;
    }

}
/* 767 end */

@media (max-width: 575px) {
    /*css19.10.22*/
    .user_scn_form .form-group input[type="text"],
    .user_scn_form .form-group input[type="email"],
    .user_scn_form .form-group input[type="search"],
    .user_scn_form .form-group input[type="tel"] {
        width: 100%;
        font-size: 14px;
    }
    .user_scn_form .form-group input[type="submit"],
    .user_scn_form .form-group button[type="submit"],
    .user_scn_form .form-group input[type="button"],
    .user_scn_form .form-group button[type="button"] {
        width: 100%;
        margin-top: 10px;
    }
    .cmn_modal_designs .modal-header {
        display: block;
        text-align: center;
    }
    .cmn_modal_designs .modal-header .modal-title {
        margin-bottom: 10px;
    }
    .cmn_modal_designs .modal-header .btn-close {
        margin: 0 auto;
    }
    .cmn_modal_designs .modal-dialog {
        margin-left: auto;
        margin-right: auto;
    }
    .cmn_modal_designs .modal-dialog {
        max-width: 90%;
    }
    .table_user_top_sec_col_lft.new h3 {
        font-size: 20px;
    }
    .cmn_modal_designs .modal-header .modal-title.new {
        font-size: 22px;
    }
    .cmn_secthd_modals h1 {
        font-size: 32px;
        margin-bottom: 20px;
    }
    .cmn_secthd_modals h2 {
        font-size: 27px;
        margin-bottom: 20px;
    }
    .cmn_secthd_modals h3 {
        font-size: 23px;
        margin-bottom: 20px;
    }
    .cmn_secthd_modals h4 {
        font-size: 18px;
        margin-bottom: 20px;
    }
    .cmn_secthd_modals h5 {
        font-size: 16px;
    }
    .cmn_secthd_modals h6 {
        font-size: 15px;
    }

    /*css19.10.22_end*/

    /*19.12.22*/
    .search_popup_outerss_phts_col_lft .allen-img-first {
        width: 100%;
    }
    .search_popup_outerss_phts_col_lft
        .allen-container-mid-one
        [class*="col-"].allen-small-img {
        margin-top: 30px;
    }
    .search_popup_outerss_phts_col_lft
        .allen-container-mid-one
        [class*="col-"].allen-small-img
        > .row {
        display: flex;
        flex-wrap: wrap;
    }
    .search_popup_outerss_phts_col_lft
        .allen-container-mid-one
        [class*="col-"].allen-small-img
        > .row
        > [class*="col-"] {
        width: 50%;
    }
    .search_popup_outerss_phts_col_lft
        .allen-container-mid-one
        [class*="col-"].allen-small-img
        > .row
        > [class*="col-"]
        img {
        width: 100%;
    }
    .preview_modal_faded .modal-dialog {
        margin-left: auto;
        margin-right: auto;
    }

    /*19.12.22_end*/

    /* update start 26/12/2022 */
    .merch_add_uprtable table td:nth-child(1) {
        width: 17%;
    }
    .merch_add_uprtable table td {
        padding: 10px 10px;
    }
    .merch_add_uprtable table td:nth-child(3) p {
        font-size: 20px;
    }
    .merch_hd ul li a {
        font-size: 16px;
    }
    .mcd_edit_btn,
    .browse_btn_file {
        width: 60px;
        flex-basis: 60px;
        height: 58px;
    }
    .mcd_edit_btn img,
    .browse_btn_file img {
        max-width: 20px;
    }
    .mcd_input_with_btn input,
    .browse_btn {
        max-width: calc(100% - 60px);
        flex-basis: calc(100% - 60px);
    }
    .mcd_input input {
        height: 58px;
    }
    .browse_btn {
        padding: 20px 25px;
    }
    .billing-management-hdbtn a {
        padding: 14px 35px;
    }
    .payment_paybtn a,
    .billing-management-hdbtn a {
        font-size: 14px;
    }
    .billing_management_body_wrap {
        padding: 15px;
    }
    .billing_management_left table thead th:nth-child(1) {
        width: 38%;
    }
    .billing_management_left table thead th {
        padding: 6px 5px;
    }
    .merch_introplan .form_input_check label {
        padding-left: 26px;
    }
    .merch_introplan
        .form_input_check
        label
        input[type="checkbox"]
        + span::before {
        width: 16px;
        height: 16px;
        top: 3px;
    }
    .merch_introplan
        .form_input_check
        label
        input[type="checkbox"]
        + span::after {
        width: 16px;
        height: 16px;
        background-size: 10px;
        top: 3px;
    }
    .billing_management_left table tbody td {
        vertical-align: top;
        padding: 12px 5px;
    }
    .billing_management_left {
        font-size: 16px;
    }
    .billing_management_custserv {
        margin-top: 40px;
    }
    .billing_management_right {
        padding: 0;
    }
    .billing_management_left table tbody tr.merch_introplan td span.upgrade {
        margin-left: 0;
        display: block;
    }
    .browse_btn_file_img span {
        width: 310px;
    }
    /* update start 26/12/2022 */
    .browse_btn_file_img span:after {
        width: 60px;
        height: 58px;
        background-size: 20px;
    }

    /* date 7/12/22 start */
    .upld_file_list_sec .item {
        width: 50%;
    }
    /* date 7/12/22 end */

    /* 11/1/23 work start */
    .merch_plans_end_btn_grp a {
        font-size: 14px;
        width: 100%;
        text-align: center;
    }

    .merch_plans_end_btn_grp {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .merch_plans_end_btn_grp .save_prog_btn {
        margin: 0px 0px 15px;
    }
    /* 11/1/23 work end */

    /* 23/3/23 work start */
    .allen-container-mid-one .col-sm-5 img {
        width: 100%;
    }

    .hm_tab_img_grps {
        margin-top: 24px;
        margin-bottom: 4px;
    }

    .hm_tab_img_grps_items {
        width: 33.3333333%;
    }

    .vw_item_rows {
        margin-bottom: 0px;
    }
    .smart-rewards-deal-right-tab-sec {
        margin-top: 30px;
    }
    /* 23/3/23 work end */

    .hm_tab_img_grps_items img {
        height: 150px;
    }

    /* 05-01-2024 start */
    .new_registration_badge_modal .form-select1 select {
        margin-bottom: 15px;
    }

    .new_registration_badge_modal .by-continue-text {
        font-size: 18px;
    }

    .new_registration_badge_modal .p_text {
        margin-top: 5px;
        font-size: 15px;
        margin-bottom: 8px;
    }

    .new_registration_badge_modal .trm_info {
        padding-bottom: 20px;
    }

    .new_registration_badge_modal .trm_info p {
        font-size: 15px;
    }
    /* 05-01-2024 end */

    /* 23.04.24 css */
    .md-footer-top p {
        font-size: 14px;
    }
    .md-footer-link a {
        font-size: 14px;
        padding-right: 5px;
        margin-right: 5px;
    }
    /* 23.04.24 css */

    .choose-rpt-bar select {
        max-width: 100%;
    }
    
    .rpt-form-btm>* {
        min-width: auto;
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .rq-date-pick-wrap {
        flex-wrap: wrap;
    }
    
    .rq-date-pick-wrap > span {
        text-align: center;
    }
    
    .rq-date-pick-wrap > * {
        width: 100%;
    }

    .rpt-form-btm>* {
        min-width: auto !important;
        padding: 12px 25px !important;
        font-size: 14px !important;
    }
}
/* 575 end */

@media (max-width: 479px) {
    /*css19.10.22*/
    .table_user_top_sec_col_lft h3 {
        font-size: 22px;
    }
    .cmn_selct_filter select {
        height: 42px;
        min-width: 132px;
    }
    .btn_table_s {
        font-size: 15px;
        padding: 12px;
    }
    .table_user_top_sec_col_lft.new h3 {
        font-size: 16px;
    }
    /*css19.10.22_end*/
    /* settings */
    .gimmzi_section_bxss h3 {
        font-size: 20px;
    }
    .gimmzi_section_bxss {
        padding: 25px 15px;
    }
    .on_off_spotr {
        min-width: 60px;
    }
    .toggler_specl_evnts h3 {
        font-size: 23px;
        padding-left: 0;
        margin-top: 10px;
    }
    .special_events_week {
        padding: 10px 10px;
    }
    .special_events_week_mdl textarea {
        font-size: 15px;
    }
    .special_events_week_btmm h5 {
        margin: 0 0 6px 0;
    }
    .toggler_specl_evnts {
        display: block;
    }
    /* settings_end */
    /* update start 26/12/2022 */
    .merch_add_lwrtable tbody td,
    .merch_add_lwrtable tbody td select,
    .merch_add_lwrtable td {
        padding: 4px 12px;
    }
    .profile_complition_chkout {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .profile_complition_chkout .chkout_btn {
        order: 2;
        margin-top: 12px;
    }
    .merch_hd h1 {
        font-size: 24px;
    }
    .mcd_Left {
        padding: 15px;
    }
    .mailing_tgl_inner label {
        font-size: 14px;
    }
    .mailing_tgl_inner {
        min-width: 245px;
    }
    .mailing_tgl_inner label {
        padding: 3px 10px;
    }
    .mcd_Left h1 {
        font-size: 26px;
    }
    .wizard_body_enter_pymntinfo h1 {
        font-size: 26px;
    }
    .mid_step_bill_addrs h4,
    .last_step_pymnt_hd h4 {
        font-size: 20px;
    }
    .mid_step_bill_addrs {
        margin-bottom: 18px;
    }
    .last_step_pymntinfo {
        padding: 20px 14px 21px;
    }
    .billing-management-hd h1 {
        font-size: 26px;
    }
    .billing-management-hdbtn {
        margin-top: 15px;
    }
    .billing_management_body_wrap {
        overflow-x: auto;
    }
    .merch_hd ul {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .merch_hd ul li {
        margin-right: 0;
        margin-bottom: 5px;
    }
    .merch_hd ul li:last-child {
        margin-bottom: 0;
    }
    .billing_management_right ul li a {
        font-size: 16px;
    }
    .billing_management_right ul li {
        margin-bottom: 12px;
    }
    .browse_btn_file_img span {
        width: 231px;
    }
    /* update end 26/12/2022 */

    /* 23/3/23 work start */
    .hm_tab_img_grps_items {
        width: 50%;
    }
    .dolphing_cove_modal .modal-footer .page-btn:last-child {
        margin-right: 10px;
    }
    /* 23/3/23 work end */

    /* 10-05-2024 start */
    .new_col_wrp {
        flex-direction: column;
        width: 100%;
    }

    .new_col {
        width: 100%;
    }

    .new_col select {
        width: 100%;
        margin-bottom: 10px;
    }

    .new_col [type="text"], 
    .new_col [type="search"] {
        width: 100%;
    }
    /* 10-05-2024 end */
}
/* 479 end */

@media(max-width:320px){

    .choose-rpt-bar input {
        max-width:100%;
    }
    
    .choose-rpt-bar input {
        max-width: 100%;
    }
    
    .rq-date-pick-wrap input {
        width: 100%;
    }
    
    .rpt-form-btm>* {
        width: 100%;
        margin: 5px 0px;
    }
    
}
  /* 320 end */

/* ====================================================== */
/* ============ business profile started CSS ============ */
/* ====================================================== */

.search-business .form-group-rental-input {
    display: flex;
    align-items: center;
}

.search-business .form-group-rental-input input {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.01em;
    border: 1px solid #26a7df;
    border-radius: 10px;
    padding-left: 15px;
}

.search-business .form-group-rental-input input::placeholder {
    color: #b2b2b2;
}

.search-business .form-group-rental-input button {
    background: #8ec64e;
    border-radius: 10px;
    margin-left: 10px;
    width: 69px;
    border: 1px solid #8ec64e;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-business .form-group-rental-input button:hover {
    background: #26a7df;
    border: 1px solid #26a7df;
}

.goback-to-home-page-btn-smart-rental1 a {
    background: #26a7df !important;
    border-radius: 6px !important;
}
.goback-to-home-page-btn-smart-rental1 a:hover {
    background: #8ec64e !important;
    color: #fff !important;
    border-radius: 6px !important;
}

.goback-to-home-page-btn-smart-rental a {
    background: #8ec64e !important;
    border-radius: 6px !important;
}
.goback-to-home-page-btn-smart-rental a:hover {
    background: #26a7df !important;
    color: #fff !important;
    border-radius: 6px !important;
}
.goback-to-home-page-btn-smart-rental button {
    background: #8ec64e !important;
    border-radius: 6px !important;
    font-family: "Roboto";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */
    color: #ffffff;
    padding: 16px 57px;
    border: 0px;
}
.goback-to-home-page-btn-smart-rental button:hover {
    background: #26a7df !important;
    border-radius: 6px !important;
    font-family: "Roboto";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */
    color: #ffffff;
    padding: 16px 57px;
    border: 0px;
}
.goback-to-home-page-btn-smart-rental span {
    margin-right: 8px;
}

.all-smart-rental-database-main-sec {
    margin-bottom: 0;
}
.all-smart-rental-database-main-sec .first-smart-rental-sec {
    background: #ffff;
    padding: 25px;
}
.all-smart-rental-database-main-sec .first-smart-rental-sec h2 {
    font-style: normal;
    font-weight: 500;
    font-size: 30px;
    line-height: 35px;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */
    color: #000;
    margin-bottom: 22px;
}

.all-smart-rental-database-main-sec
    .first-smart-rental-sec
    .form-group-rental-input
    input {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.01em;
    border: 1px solid #26a7df;
    border-radius: 10px;
    padding-left: 15px;
    text-overflow: ellipsis;
}

.all-smart-rental-database-main-sec
    .first-smart-rental-sec
    .form-group-rental-input {
    display: flex;
    align-items: center;
}
.all-smart-rental-database-main-sec
    .first-smart-rental-sec
    .form-group-rental-input
    input::placeholder {
    color: #b2b2b2;
}
.all-smart-rental-database-main-sec
    .first-smart-rental-sec
    .form-group-rental-input
    button.search {
    background: #8ec64e;
    border-radius: 10px;
    margin-left: 10px;
    width: 69px;
    border: 1px solid #8ec64e;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.all-smart-rental-database-main-sec
    .first-smart-rental-sec
    .form-group-rental-input
    button:hover {
    background: #26a7df;
    border: 1px solid #26a7df;
}
.all-smart-rental-database-main-sec .middle-smart-rental-sec {
    padding: 15px 0 20px;
}
.all-smart-rental-database-main-sec
    .middle-smart-rental-sec
    .left-sec-home
    figure {
    background: #fbfff5;
    border: 1px solid #99c64e;
    border-radius: 20px;
    width: 123px;
    height: 130.24px;
    display: flex;
    align-items: center;
    margin-bottom: 0;
    justify-content: center;
}

.middle-smart-rental-sec-all {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ededed;
    padding-bottom: 30px;
}

.all-smart-rental-database-main-sec
    .middle-smart-rental-sec
    .left-sec-home
    figure
    img {
    /* width: 100%; */
}
.all-smart-rental-database-main-sec .middle-smart-rental-sec .right-sec-rental {
    padding-left: 20px;
}
.all-smart-rental-database-main-sec
    .middle-smart-rental-sec
    .right-sec-rental
    h3 {
    font-style: normal;
    font-weight: 500;
    font-size: 30px;
    margin-bottom: 18px;
    line-height: 35px;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */
    color: #000;
}
.all-smart-rental-database-main-sec
    .middle-smart-rental-sec
    .right-sec-rental
    .apartments-sec
    ul {
    margin-bottom: 0;
    padding-left: 0;
}

.all-smart-rental-database-main-sec
    .middle-smart-rental-sec
    .right-sec-rental
    .apartments-sec
    ul
    li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.all-smart-rental-database-main-sec
    .middle-smart-rental-sec
    .right-sec-rental
    .apartments-sec
    ul
    li:last-child {
    margin-bottom: 0;
}
.all-smart-rental-database-main-sec
    .middle-smart-rental-sec
    .right-sec-rental
    .apartments-sec
    ul
    li
    h6 {
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 0;
    line-height: 23px;
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    /* text-transform: capitalize; */
    color: #202736;
}
.all-smart-rental-database-main-sec
    .middle-smart-rental-sec
    .right-sec-rental
    .apartments-sec
    ul
    li
    h6
    .icon-img-sec-rental {
    margin-right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
}
.all-smart-rental-database-main-sec
    .middle-smart-rental-sec
    .right-sec-rental
    .apartments-sec
    ul
    li
    h6
    .points-distributed-txt {
    margin-left: 8px;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 23px;
    letter-spacing: 0.01em;
    color: #5d5d5d;
}

.apartment-right-data {
    margin-left: 15px;
}

.all-smart-rental-database-main-sec
    .middle-smart-rental-sec
    .right-sec-rental
    .apartments-sec
    ul
    li
    h6
    .points-distributed-txt-new {
    margin-left: 8px;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 23px;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */
    color: #629a23;
}

.show-filled-units-only .filter-section .form-select {
    max-width: 280px;
    height: 46px;
    width: 100%;
    border: 1px solid #26a7df;
    border-radius: 6px;
}
.show-filled-units-only .filter-section11 {
    background: url(images/green-down-tick.svg) no-repeat calc(100% - 16px)
        center transparent;
}
.show-filled-units-only .filter-section11 {
    background: url(images/green-down-tick.svg) no-repeat calc(100% - 16px)
        center transparent;
}
.show-filled-units-only .filter-section .form-check {
    margin: 0 30px;
}
.show-filled-units-only .filter-section .form-check:first-child {
    margin: 0 30px 0 27px;
}
.show-filled-units-only .filter-section .form-check label {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 23px;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */
    color: #000000;
    margin-left: 12px;
}
/* .show-filled-units-only .filter-section .form-check-input:checked[type=radio] {
    background-image: url(images/radioCircle.svg);
    background-size: cover;
    background-position:center;

} */
/* .show-filled-units-only .filter-section .form-check-input {
    width: 1em;
    height: 1em;
    margin-top: 0.25em;
    vertical-align: top;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid #26A7DF;
} */
.show-filled-units-only .table_section {
    margin: 19px 0px 44px 0;
}
.show-filled-units-only
    .table_section
    .table-striped
    > tbody
    > tr:nth-child(2) {
    --bs-table-accent-bg: #f8f8f8;
    color: var(--bs-table-striped-color);
}
/* .show-filled-units-only .table_section .table-striped>tbody>tr:nth-child(6) {
    --bs-table-accent-bg: var(--bs-table-striped-bg);
    color: var(--bs-table-striped-color);
} */
.show-filled-units-only
    .table_section
    .table-striped
    > tbody
    > tr:nth-of-type(odd) {
    --bs-table-accent-bg: #fff;
    color: var(--bs-table-striped-color);
}
.show-filled-units-only .table_section tbody,
td,
tfoot,
th,
thead,
tr {
    border: none;
}
.show-filled-units-only .table_section td,
.show-filled-units-only .table_section th {
    padding: 18px 26px;
}
.show-filled-units-only .table_section thead {
    background: #f8f8f8;
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 18px;
    /* identical to box height */

    color: #208ccb;
}
.show-filled-units-only .table_section thead .form-check-input {
    border: 2px solid #208ccb;
}
.show-filled-units-only .table_section tbody {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */

    color: #454545;
}
.show-filled-units-only .table_section .table-hover > tbody > tr:hover {
    --bs-table-accent-bg: #f8f8f8 !important;
    color: var(--bs-table-hover-color);
}
.show-filled-units-only .table_section tbody a {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.01em;
    text-decoration-line: underline !important;
    /* text-transform: capitalize; */

    color: #26a7df;
}
.show-filled-units-only .table_section .red_text {
    color: #ff0000;
}
.show-filled-units-only .table_section .btn_area_section {
    background: #f8f8f8;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 21px 20px;
    height: 100%;
    min-height: 391px;
}
.show-filled-units-only .table_section .btn_area_section span {
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 18px;

    /* text-transform: capitalize; */

    color: #208ccb;
    margin-bottom: 30px;
}
.show-filled-units-only .table_section .btn_area_section .btn {
    width: 100%;
    background: #bcbcbc;
    border-radius: 6px;
    margin-bottom: 21px;
    padding: 15px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    letter-spacing: 0.01em;
    /* text-transform: uppercase; */
    color: #8a8a8a;
}
.show-filled-units-only .table_section .btn_area_section .btn,
.add_point_member {
    width: 100%;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    /* identical to box height */

    text-align: center;
    letter-spacing: 0.01em;
    /* text-transform: uppercase; */

    color: #ffffff;
    border-radius: 6px;
    margin-bottom: 21px;
    padding: 15px;
}
.show-filled-units-only .table_section .btn_area_section .green_btn,
.add_point_member {
    background: #8ec64e;
}

.show-filled-units-only .table_section .btn_area_section .green_btn:hover {
    background: transparent;
    border: 1px solid #8ec64e;
    color: #8ec64e;
}
.show-filled-units-only .table_section .btn_area_section .red_btn {
    background: #ff2719;
}
.show-filled-units-only .table_section .btn_area_section .red_btn:hover {
    background: transparent;
    border: 1px solid #ff2719;
    color: #ff2719;
}
.show-filled-units-only .table_section .btn_area_section .sky_btn {
    background: #239bd6;
}
.show-filled-units-only .table_section .btn_area_section .sky_btn:hover {
    background: transparent;
    border: 1px solid #239bd6;
    color: #239bd6;
}
.show-filled-units-only .table_section .btn_area_section .yellow_btn {
    background: #f39d1c;
}

.show-filled-units-only .table_section .btn_area_section .purple_btn {
    background: #271db3;
}

.show-filled-units-only .table_section .btn_area_section .yellow_btn:hover {
    background: transparent;
    border: 1px solid #f39d1c;
    color: #f39d1c;
}
.show-filled-units-only .table_section .btn_area_section .purple_btn:hover {
    background: transparent;
    border: 1px solid #271db3;
    color: #271db3;
}

.show-filled-units-only .table_section .btn_area_section .grey_btn {
    background: #bcbcbc;
    border-radius: 6px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    /* identical to box height */

    text-align: center;
    letter-spacing: 0.01em;
    /* text-transform: uppercase; */

    color: #8a8a8a;
}
.show-filled-units-only .table_section .btn_area_section .grey_btn:hover {
    background: transparent;
    border: 1px solid #bcbcbc;
    color: #bcbcbc;
}
/* header */
.main-head select {
    background: url(images/green-down-tick.svg) no-repeat calc(100% - 16px)
        center transparent;
    height: auto;
    border: none;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 23px;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */

    color: #1e1e1e;
}
.main-head .form-select {
    display: block;
    width: 100%;
    padding: 0.375rem 2.75rem 0.375rem 0.75rem;
}
.main-head ul {
    display: flex;
    align-items: center;
}
/* header end*/
/*************** modal*************** */
.points_add_modal .modal-dialog {
    max-width: 705px;
}
.points_add_modal .modal-content {
    background: linear-gradient(180deg, #1f8ac9 0%, #26a7df 100%);
    border: 4px solid #ffffff;
    border-radius: 20px;
    padding: 70px;
    text-align: center;
}
.points_add_modal .modal-content .border_bottom {
    border-bottom: 1px solid #91d1ef;
}
.points_add_modal .modal-content h6 {
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 26px;

    /* identical to box height */

    text-align: center;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */

    color: #ffffff;
    margin-bottom: 11px;
}
.points_add_modal .modal-content p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    /* identical to box height, or 144% */

    text-align: center;
    letter-spacing: 0.01em;

    color: #ffffff;
    margin-bottom: 26px;
}
.points_add_modal .modal-content .close_btn {
    max-width: 170px;
    width: 100%;

    background: #8ec64e;
    border-radius: 10px;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 23px;
    text-align: center;
    /* text-transform: capitalize; */

    color: #ffffff;
    padding: 20px;
    margin-top: 32px;
}

.deactivate_modal_1 .modal-dialog {
    max-width: 960px;
}
.deactivate_modal_1 .modal-content {
    background: linear-gradient(180deg, #1f8ac9 0%, #26a7df 100%);
    border: 4px solid #ffffff;
    border-radius: 20px;
    padding: 70px 33px 51px 33px;
}
.deactivate_modal_1 .modal-content h6 {
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 26px;
    text-align: center;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */

    color: #ffffff;
    margin-bottom: 15px;
}
.deactivate_modal_1 .modal-content p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    /* identical to box height, or 144% */

    text-align: center;
    letter-spacing: 0.01em;

    color: #ffffff;
    margin-bottom: 13px;
}
.deactivate_modal_1 .modal-content .border_bottom {
    border-bottom: 1px solid #91d1ef;
}
.deactivate_modal_1 .modal-content .next_btn {
    max-width: 248px;

    background: #93da42;
    border-radius: 10px;
    font-style: normal;
    font-weight: 300;
    font-size: 20px;
    line-height: 29px;
    text-align: center;
    /* text-transform: capitalize; */

    color: #ffffff;
    padding: 12px;
}
.deactivate_modal_1 .modal-content .next_btn:hover {
    background: #ff2719;
}
.deactivate_modal_1 .modal-content .next_btn.next_btn_2 {
    max-width: 414px;
}
.deactivate_modal_1 .modal-content .close_btn {
    max-width: 170px;
    width: 100%;

    border: 1px solid #f9fcfd;
    border-radius: 10px;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 23px;
    text-align: center;
    /* text-transform: capitalize; */

    color: #ffffff;
}
.deactivate_modal_1 .modal-content .close_btn:hover {
    border: 1px solid #ff2719;
    background: #ff2719;
}
/*************** modal 2*************** */
/*************** modal 3*************** */
.deactivate_modal_2 .modal-dialog {
    max-width: 686px;
}
.deactivate_modal_2 .modal-content {
    background: linear-gradient(180deg, #1f8ac9 0%, #26a7df 100%);
    border: 4px solid #ffffff;
    border-radius: 20px;
    padding: 39px 33px 59px 33px;
}
.deactivate_modal_2 .modal-content .container_check {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 26px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;

    /* text-transform: capitalize; */

    color: #ffffff;
}

/* Hide the browser's default checkbox */
.deactivate_modal_2 .modal-content .container_check input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.deactivate_modal_2 .modal-content .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 19px;
    width: 19px;
    background-color: #eee;
    border-radius: 5px;
}

/* On mouse-over, add a grey background color */
.deactivate_modal_2 .modal-content .container_check:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.deactivate_modal_2 .modal-content .container_check input:checked ~ .checkmark {
    background-color: #fff;
}

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

/* Show the checkmark when checked */
.deactivate_modal_2
    .modal-content
    .container_check
    input:checked
    ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.deactivate_modal_2 .modal-content .container_check .checkmark:after {
    left: 7px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid #1f8ac9;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.deactivate_modal_2 .modal-content .margin_cls {
    margin: 33px 0;
}
/*************** modal 3*************** */
/*************** modal 4*************** */
.deactivate_modal_3 .margin_for {
    margin: 9px 0 17px 0;
}
/*************** modal 4*************** */
/*************** modal 5*************** */
.add_term_modal .modal-dialog {
    max-width: 581px;
}
.add_term_modal .modal-content {
    background: linear-gradient(180deg, #1f8ac9 0%, #26a7df 100%);
    border: 4px solid #ffffff;
    border-radius: 20px;
    padding: 77px 83px;
}
.add_term_modal .modal-content h6 {
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 28px;
    /* or 127% */

    text-align: center;
    letter-spacing: 0.01em;

    color: #ffffff;
    max-width: 224px;
    margin: 0 auto 32px auto;
}
.add_term_modal .modal-content .border_bottom {
    border-bottom: 1px solid #91d1ef;
}
.add_term_modal .modal-content .btn_sec {
    max-width: 230px;
    margin: 30px auto 0 auto;
}
.add_term_modal .modal-content .btn_sec .yes_btn {
    width: 100%;
    max-width: 100px;
    background: #93da42;
    border-radius: 10px;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 23px;
    text-align: center;
    /* text-transform: capitalize; */
    color: #ffffff;
    padding: 20px;
    /* margin-top: 32px; */
    color: #ffffff;
    padding: 0;
    /* margin-top: 32px; */
}

.add_term_modal .modal-content .btn_sec .yes_btn:hover {
    background: #ff2719;
    color: #fff;
}

.all-smart-rental-database-main-sec {
    margin-bottom: 0;
}
.all-smart-rental-database-main-sec .first-smart-rental-sec {
    background: #fff;
    padding: 25px;
}
.all-smart-rental-database-main-sec .first-smart-rental-sec h2 {
    font-style: normal;
    font-weight: 500;
    font-size: 30px;
    line-height: 35px;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */
    color: #000;
    margin-bottom: 22px;
}

.all-smart-rental-database-main-sec
    .first-smart-rental-sec
    .form-group-rental-input
    input {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.01em;
    border: 1px solid #7b7b7b;
    border-radius: 10px;
    padding-left: 15px;
    background: #fff;
}

.all-smart-rental-database-main-sec
    .first-smart-rental-sec
    .form-group-rental-input {
    display: flex;
    align-items: center;
}
.all-smart-rental-database-main-sec
    .first-smart-rental-sec
    .form-group-rental-input
    input::placeholder {
    color: #b2b2b2;
}
.all-smart-rental-database-main-sec
    .first-smart-rental-sec
    .form-group-rental-input
    button
    .search {
    background: #8ec64e;
    border-radius: 10px;
    margin-left: 10px;
    width: 69px;
    border: 1px solid #8ec64e;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.all-smart-rental-database-main-sec
    .first-smart-rental-sec
    .form-group-rental-input
    button:hover {
    background: #24a1db;
    border: 1px solid #24a1db;
}
.all-smart-rental-database-main-sec .middle-smart-rental-sec {
    padding: 27px 0 20px;
}
.all-smart-rental-database-main-sec
    .middle-smart-rental-sec
    .left-sec-home
    figure {
    background: #fbfff5;
    border: 1px solid #99c64e;
    border-radius: 20px;
    width: 123px;
    height: 130.24px;
    display: flex;
    align-items: center;
    margin-bottom: 0;
    justify-content: center;
}

.middle-smart-rental-sec-all {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ededed;
    padding-bottom: 30px;
}

.all-smart-rental-database-main-sec
    .middle-smart-rental-sec
    .left-sec-home
    figure
    img {
    /* width: 100%; */
}
.all-smart-rental-database-main-sec .middle-smart-rental-sec .right-sec-rental {
    padding-left: 20px;
}
.all-smart-rental-database-main-sec
    .middle-smart-rental-sec
    .right-sec-rental
    h3 {
    font-style: normal;
    font-weight: 500;
    font-size: 30px;
    margin-bottom: 18px;
    line-height: 35px;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */
    color: #000;
}
.all-smart-rental-database-main-sec
    .middle-smart-rental-sec
    .right-sec-rental
    .apartments-sec
    ul {
    margin-bottom: 0;
    padding-left: 0;
}

.all-smart-rental-database-main-sec
    .middle-smart-rental-sec
    .right-sec-rental
    .apartments-sec
    ul
    li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.all-smart-rental-database-main-sec
    .middle-smart-rental-sec
    .right-sec-rental
    .apartments-sec
    ul
    li:last-child {
    margin-bottom: 0;
}
.all-smart-rental-database-main-sec
    .middle-smart-rental-sec
    .right-sec-rental
    .apartments-sec
    ul
    li
    h6 {
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 0;
    line-height: 23px;
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    /* text-transform: capitalize; */
    color: #202736;
}
.all-smart-rental-database-main-sec
    .middle-smart-rental-sec
    .right-sec-rental
    .apartments-sec
    ul
    li
    h6
    .icon-img-sec-rental {
    margin-right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.all-smart-rental-database-main-sec
    .middle-smart-rental-sec
    .right-sec-rental
    .apartments-sec
    ul
    li
    h6
    .points-distributed-txt {
    margin-left: 8px;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 23px;
    letter-spacing: 0.01em;
    color: #5d5d5d;
}

.apartment-right-data {
    margin-left: 15px;
}

.all-smart-rental-database-main-sec
    .middle-smart-rental-sec
    .right-sec-rental
    .apartments-sec
    ul
    li
    h6
    .points-distributed-txt-new {
    margin-left: 8px;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 23px;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */
    color: #629a23;
    color: #ffffff;
    padding: 18px;
}

.all-smart-rental-database-main-sec
    .middle-smart-rental-sec
    .right-sec-rental
    .apartments-sec
    ul
    li
    h6
    .points-distributed-txt-new {
    margin-left: 8px;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 23px;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */
    color: #629a23;
    /* color: #ffffff; */
    padding: 18px;
}

.add_term_modal .modal-content .btn_sec .no_btn {
    width: 100%;
    max-width: 100px;
    border: 1px solid #ffffff;
    border-radius: 10px;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 23px;
    text-align: center;
    /* text-transform: capitalize; */
    color: #ffffff;
    padding: 10px;
}
.add_term_modal .modal-content .btn_sec .no_btn:hover {
    background: #ff2719;
    color: #fff;
    border-color: #ff2719;
}

/* allen park apartments */

.allen-park-apartments-main-sec
    .allen-part-apartments-sec
    .first-goback-search-sec {
    background: #f8f8f8;
    padding: 15px 10px;
}
.allen-park-apartments-main-sec
    .allen-part-apartments-sec
    .first-goback-search-sec
    button {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 23px;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */
    background: transparent;
    border: none;
    color: #000;
}

.middle-park-main-middle-sec {
    padding: 15px 10px;
}

.allen-park-apartments-main-sec .left-middle-park-main-sec {
    display: flex;
    align-items: center;
}

.allen-park-apartments-main-sec
    .allen-part-apartments-sec
    .first-goback-search-sec
    button
    img {
    margin-right: 10px;
}
.allen-park-apartments-main-sec
    .allen-part-apartments-sec
    .middle-park-apartments-sec-main {
    border-bottom: 1px solid #ededed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.allen-park-apartments-main-sec
    .allen-part-apartments-sec
    .middle-park-apartments-sec-main
    .left-middle-park-sec
    figure {
    margin-bottom: 0;
}
.allen-park-apartments-main-sec
    .allen-part-apartments-sec
    .middle-park-apartments-sec-main
    .right-middle-park-sec {
    padding-left: 12px;
}
.allen-park-apartments-main-sec
    .allen-part-apartments-sec
    .middle-park-apartments-sec-main
    .right-middle-park-sec
    h2 {
    font-style: normal;
    font-weight: 500;
    font-size: 30px;
    line-height: 35px;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */
    margin-bottom: 15px;
    color: #000;
}
.allen-park-apartments-main-sec
    .allen-part-apartments-sec
    .middle-park-apartments-sec-main
    .right-middle-park-sec
    .apartments-sec
    ul {
    display: flex;
    align-items: center;
    padding-left: 0;
}
.allen-park-apartments-main-sec
    .allen-part-apartments-sec
    .middle-park-apartments-sec-main
    .right-middle-park-sec
    .apartments-sec
    ul
    li {
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 23px;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */
    color: #5d5d5d;
    margin-right: 30px;
    list-style: none;
}
.allen-park-apartments-main-sec
    .allen-part-apartments-sec
    .middle-park-apartments-sec-main
    .right-middle-park-sec
    .apartments-sec
    ul
    li
    span {
    margin-right: 10px;
}
.allen-park-apartments-main-sec
    .allen-part-apartments-sec
    .middle-park-apartments-sec-main
    .right-middle-park-sec
    .apartments-sec
    ul
    li:last-child {
    margin-right: 0;
}
.allen-park-apartments-main-sec
    .allen-part-apartments-sec
    .middle-park-apartments-sec-main
    .right-middle-park-sec
    .apartments-sec
    button {
    background: #26a7df;
    border-radius: 6px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.allen-park-apartments-main-sec
    .allen-part-apartments-sec
    .middle-park-apartments-sec-main
    .right-middle-park-sec
    .apartments-sec
    button
    img {
    margin-right: 10px;
}
.allen-park-apartments-main-sec
    .allen-part-apartments-sec
    .middle-park-apartments-sec-main
    .right-middle-park-sec
    h3 {
    font-style: normal;
    font-weight: 500;
    font-size: 30px;
    margin-bottom: 18px;
    line-height: 35px;
    letter-spacing: 0.01em;
    text-transform: capitalize;
    color: #000;
}

/* allen park apartments end*/

/* property site setting modal */

.new-fade-modal-property-site-setting .modal-body {
    border: none;
}

.new-fade-modal-property-site-setting .modal-dialog {
    max-width: 90vw;
}

.new-fade-modal-property-site-setting .modal-heading-property-site-setting {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.new-fade-modal-property-site-setting .modal-heading-property-site-setting h5 {
    font-style: normal;
    font-weight: 500;
    font-size: 36px;
    line-height: 47px;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */
    color: #000;
}

.new-fade-modal-property-site-setting
    .modal-heading-property-site-setting
    button {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */
    color: #fff;
    background: #f04343;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.new-fade-modal-property-site-setting
    .modal-heading-property-site-setting
    button:hover {
    color: #fff;
    background: #208ccb;
}

.property-site-setting-website
    .left-property-site-website
    .first-left-property {
    display: flex;
    align-items: center;
}

.left-property-site-website .first-left-property .all-label-custom-radio {
    display: flex;
    align-items: center;
}

/* property site setting modal end*/

/* corporate lead setting 1 (right side setting) */

.new-corporate-lead-setting-1-header-main .id-gimiz {
    border: 1px solid #26a7df;
    border-radius: 6px;
    height: 51px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    background: transparent;
}

.new-corporate-lead-setting-1-header-main .header-logo-flex {
    border-left: 1px solid #000000;
    margin-left: 30px;
    padding-left: 30px;
}

.corporate-lead-setting-1-main-sec {
}

.corporate-lead-setting-1-main-sec .middle-smart-rental-sec {
    /* border-top: 1px solid #ededed; */
    padding: 25px 0 40px;
}

.corporate-lead-setting-1-main-sec .merchant-page-lead-setting-1-sec h4 {
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */
    color: #000000;
    margin-bottom: 10px;
}

.corporate-lead-setting-1-main-sec .merchant-page-lead-setting-1-sec {
    border-bottom: 1px solid #ededed;
    margin-bottom: 20px;
    padding-top: 10px;
    padding-bottom: 35px;
}

.corporate-lead-setting-1-main-sec
    .merchant-page-lead-setting-1-sec:last-child {
    margin-bottom: 0;
}

.corporate-lead-setting-1-main-sec .merchant-page-lead-setting-1-sec p {
    padding-bottom: 22px;
    font-style: normal;
    margin-bottom: 0;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.01em;
    color: #5d5d5d;
}

.corporate-lead-setting-1-main-sec .merchant-page-lead-setting-1-sec button {
    background: #8ec64e;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    height: 47px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    border: 1px solid #8ec64e;
    letter-spacing: 0.01em;
    /* text-transform: uppercase; */
    color: #ffffff;
    transition: 0.6s all ease-in-out;
}

.corporate-lead-setting-1-main-sec
    .merchant-page-lead-setting-1-sec
    button:hover {
    background: #fff;
    color: #8ec64e;
}

.corporate-lead-setting-1-main-sec .middle-smart-rental-sec-all {
    border-bottom: none;
}

.corporate-lead-setting-1-main-sec .last-sec-merchant-lead h4 {
    display: flex;
    align-items: center;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */
    color: #000000;
}

.corporate-lead-setting-1-main-sec .last-sec-merchant-lead h4 a {
    margin-left: 15px;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 23px;
    letter-spacing: 0.01em;
    text-decoration: underline !important;
    color: #24a1db;
}

.corporate-lead-setting-1-main-sec .right-sec-account-status-lead-setting-1 {
    background: #ffffff;
    box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.07);
    border-radius: 7px;
    padding: 30px;
    height: 100%;
}

.corporate-lead-setting-1-main-sec
    .right-sec-account-status-lead-setting-1
    figure {
    background: #f8f8f8;
    border-radius: 7px;
    width: 97px;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.corporate-lead-setting-1-main-sec .right-sec-account-status-lead-setting-1 h3 {
    font-style: normal;
    font-weight: 500;
    font-size: 23px;
    line-height: 28px;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */
    color: #000000;
    margin-bottom: 10px;
}

.corporate-lead-setting-1-main-sec .right-sec-account-status-lead-setting-1 p {
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 28px;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */
    color: #eea832;
    display: flex;
    align-items: center;
}

.corporate-lead-setting-1-main-sec
    .right-sec-account-status-lead-setting-1
    p
    i {
    background: #eea832;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 10px;
}

.corporate-lead-setting-1-main-sec .apartments-sec .number-txt {
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 23px;
    letter-spacing: 0.01em;
    margin-left: 10px;
    color: #5d5d5d;
}

.corporate-lead-setting-1-main-sec .view-active-status-btn {
    background: #208dcb;
    border: 1px solid #208ccb;
    border-radius: 6px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    text-align: center;
    letter-spacing: 0.01em;
    /* text-transform: uppercase; */
    color: #ffffff;
    transition: 0.6s all ease-in-out;
    margin-top: 12px;
}

.corporate-lead-setting-1-main-sec .view-active-status-btn:hover {
    background: #fff;
    color: #208ccb;
}

.corporate-lead-setting-1-main-sec .all-corporate-lead-seting-1-flex {
    display: flex;
    align-items: flex-start;
    background: #ffffff;
    box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.07);
    border-radius: 7px;
    padding: 25px 18px;
    height: 100%;
}

.corporate-lead-setting-1-main-sec .middle-smart-rental-sec-all {
    display: inherit;
}

/* corporate lead setting 1 end(right side setting) */

/* view your merchant website (right side setting) */

.view-your-merchant-website-main-sec {
}

.view-your-merchant-website-main-sec .smart-rewards-deal-right-tab-sec table {
    width: 100%;
    border-radius: 13px;
    background: #f8f8f8;
    border-radius: 13px;
    overflow: hidden;
}

.view-your-merchant-website-main-sec .smart-rewards-deal-right-tab-sec {
    margin-bottom: 20px;
}

.view-your-merchant-website-main-sec
    .smart-rewards-deal-right-tab-sec
    table
    tr:first-child {
    background: #1272f9;
}

.view-your-merchant-website-main-sec
    .smart-rewards-deal-right-tab-sec
    table
    tr:first-child
    th {
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 26px;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */
    color: #ffffff;
    padding: 14px 12px;
}

.view-your-merchant-website-main-sec
    .smart-rewards-deal-right-tab-sec
    table
    tr:nth-child(2)
    td {
    border-bottom: 1px solid #dddddd;
}

.view-your-merchant-website-main-sec
    .smart-rewards-deal-right-tab-sec
    table
    td
    p {
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 25px;
    /* text-transform: capitalize; */
    color: #3d3838;
}

.view-your-merchant-website-main-sec
    .smart-rewards-deal-right-tab-sec
    table
    td {
    padding: 15px 12px;
}

.view-your-merchant-website-main-sec
    .smart-rewards-deal-right-tab-sec
    table
    td
    h6 {
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 23px;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */
    color: #202736;
}

.view-your-merchant-website-main-sec .weekly-specials-right-tab-sec table {
    width: 100%;
    background: #f8f8f8;
    border-radius: 13px;
    overflow: hidden;
}

.view-your-merchant-website-main-sec
    .weekly-specials-right-tab-sec
    table
    tr:first-child {
    background: #f6962f;
}

.view-your-merchant-website-main-sec
    .weekly-specials-right-tab-sec
    table
    tr:first-child
    th {
    text-align: center;
    padding: 14px 18px;
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 26px;
    letter-spacing: 0.01em;
    /* text-transform: capitalize;   */
    color: #ffffff;
}

.view-your-merchant-website-main-sec .weekly-specials-right-tab-sec table td p {
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 25px;
    /* text-transform: capitalize; */
    color: #3d3838;
}

.view-your-merchant-website-main-sec .weekly-specials-right-tab-sec table td {
    padding: 12px 12px 20px;
}

.view-your-merchant-website-main-sec .weekly-specials-right-tab-sec table {
    width: 100%;
}

.view-your-merchant-website-main-sec .right-all-tab p {
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 23px;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */
    color: #202736;
}

.view-your-merchant-website-main-sec .right-all-tab p a {
    font-style: normal;
    font-weight: 500;
    font-size: 23px;
    line-height: 47px;
    letter-spacing: 0.01em;
    text-decoration: underline !important;
    /* text-transform: capitalize; */
    margin-right: 12px;
    color: #26a7df;
}

.view-your-merchant-website-main-sec .nav-cutom-tabs {
    position: relative;
}

.view-your-merchant-website-main-sec .nav-cutom-tabs .right-all-tab {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
}

.view-your-merchant-website-main-sec .left-all-tab {
    display: flex;
    align-items: center;
}

.view-your-merchant-website-main-sec .left-middle-park-main-sec ul li {
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 23px;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */
    color: #202736;
}

.view-your-merchant-website-main-sec
    .left-middle-park-main-sec
    ul
    li
    .phone-time {
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 23px;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */
    margin-left: 5px;
    color: #5d5d5d;
}

.view-your-merchant-website-main-sec .right-middle-park-sec {
    padding-left: 25px !important;
}

.view-your-merchant-website-main-sec .allen-part-tab-one-main {
    margin-top: 0;
}

.view-your-merchant-website-main-sec .middle-park-main-middle-sec {
    border-top: 1px solid #ededed;
}

.view-your-merchant-website-main-sec
    .middle-park-main-middle-sec
    .middle-park-apartments-sec-main {
    margin-bottom: 0;
}

/* view your merchant website (right side setting end) */

/* loyality rewards program  */

.loyality-rewards-program-sec-main .middle-smart-rental-sec-all {
    border-bottom: 1px solid #ededed;
    padding-bottom: 20px;
}

.loyality-rewards-program-sec-main
    .middle-smart-rental-sec-all
    .to-add-aditional-loyality-txt {
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 23px;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */
    color: #000000;
    margin-top: 20px;
}

.loyality-rewards-last-sec {
    /* background: #F8F8F8; */
    border-radius: 20px;
    margin-top: 30px;
}

.loyality-rewards-last-sec ul {
    padding-left: 0;
}

.loyality-rewards-last-sec ul li {
    list-style: none;
    padding: 30px 20px;
    border-bottom: 1px solid #ededed;
}

.loyality-rewards-last-sec ul li:first-child p {
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 33px;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */
    color: #000000;
}
.loyality-rewards-last-sec ul li:first-child p span {
    font-weight: 700;
    font-size: 20px;
}

.loyality-rewards-last-sec ul li:first-child p a {
    color: #208dcb;
}

.loyality-rewards-last-sec ul li:last-child {
    border-bottom: none;
}

/* custom radio */

.form-group-custom-radio {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 38px;
    cursor: pointer;
    font-size: 20px;
}

/* Hide the browser's default radio button */
.form-group-custom-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 25px;
    width: 25px;
    top: 3px;
    left: 0;
    z-index: 5;
}

/* Create a custom radio button */
.form-group-custom-radio .checkmark {
    position: absolute;
    top: 3px;
    left: 0;
    height: 25px;
    width: 25px;
    border: 2px solid #93da42;
    border-radius: 50%;
}

/* When the radio button is checked, add a blue background */
.form-group-custom-radio input:checked ~ .checkmark {
    border: 2px solid #93da42;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.form-group-custom-radio .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.form-group-custom-radio input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.form-group-custom-radio .checkmark:after {
    top: 3px;
    left: 3px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #93da42;
}

/* custom radio */

.loyality-rewards-last-sec .purchase-goal-sec-new p {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 23px;
    margin-bottom: 22px;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */
    color: #595454;
}

.loyality-rewards-last-sec .purchase-goal-sec-new label {
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 31px;
    letter-spacing: 0.01em;
    color: #000000;
    max-width: 570px;
}

.loyality-rewards-program-sec-main
    .middle-smart-rental-sec-all
    .to-add-aditional-loyality-txt
    a {
    color: #208dcb;
    text-decoration: underline !important;
    margin-left: 5px;
}

.build-your-loyality-first-tab-sec .form-group {
    position: relative;
}

.build-your-loyality-first-tab-sec .form-group input {
    border: 1px solid #26a7df;
    border-radius: 6px;
    height: 51px;
    padding-left: 12px;
    padding-right: 10px;
}

.build-your-loyality-first-tab-sec .first-tab-build-sec h6 {
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 23px;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */
    margin-bottom: 20px;
    color: #000000;
}
.build-your-loyality-first-tab-sec .first-tab-build-sec h6 span {
    font-weight: 700;
    font-size: 20px;
}

.loyality-rewards-program-tab-sec {
    margin-top: 5px;
}

.build-your-loyality-first-tab-sec .form-group input ::-webkit-datetime-edit {
    padding: 0;
}
::-webkit-calendar-picker-indicator {
    background: url(images/calender-icon-4.svg) no-repeat;
    background-position: right center;
}

/*
.build-your-loyality-first-tab-sec .form-group input[type=date]::-webkit-datetime-edit-text {
-webkit-appearance: none;
display: none;
}

.build-your-loyality-first-tab-sec .form-group input[type=date]::-webkit-datetime-edit-month-field{
-webkit-appearance: none;
display: none;
}
.build-your-loyality-first-tab-sec .form-group input[type=date]::-webkit-datetime-edit-day-field {
-webkit-appearance: none;
display: none;
}
.build-your-loyality-first-tab-sec .form-group input[type=date]::-webkit-datetime-edit-year-field {
-webkit-appearance: none;
display: none;
} */

.last-cancel-save-btn-sec-purchase-goal-loyality {
    padding: 40px 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.cancel-btn {
    background: #000;
    border-radius: 6px;
    border: 1px solid #000;
    transition: 0.4s all ease-in-out;
    padding: 10px 20px;
    color: #fff;
}

.cancel-btn:hover {
    background: #cb2020;
    border: 1px solid #cb2020;
}
.publish-btn {
    background: #208dcb;
    border-radius: 6px;
    border: 1px solid #208dcb;
    transition: 0.4s all ease-in-out;
    padding: 10px 20px;
    color: #fff;
}

.publish-btn:hover {
    background: #8ec64e;
    border: 1px solid #8ec64e;
}

.last-cancel-save-btn-sec-purchase-goal-loyality .cancel-btn {
    background: #000;
    border-radius: 6px;
    border: 1px solid #000;
    transition: 0.4s all ease-in-out;
}

.last-cancel-save-btn-sec-purchase-goal-loyality .cancel-btn:hover {
    background: #cb2020;
    border: 1px solid #cb2020;
}
.bluetext {
    color: #208dcb;
    font-weight: 700;
}
.last-cancel-save-btn-sec-purchase-goal-loyality .publish-btn {
    background: #208dcb;
    border-radius: 6px;
    border: 1px solid #208dcb;
    transition: 0.4s all ease-in-out;
}

.last-cancel-save-btn-sec-purchase-goal-loyality .publish-btn:hover {
    background: #8ec64e;
    border: 1px solid #8ec64e;
}

.last-cancel-save-btn-sec-purchase-goal-loyality button {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    padding: 0 30px;
    line-height: 19px;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    letter-spacing: 0.01em;
    /* text-transform: uppercase; */
    color: #ffffff;
}

.last-technical-issue-txt-loyality-purchase-goal {
    text-align: right;
    text-decoration: underline !important;
}

.last-technical-issue-txt-loyality-purchase-goal a {
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.01em;
    text-decoration-line: underline;
    /* text-transform: capitalize; */
    color: #208ecc;
}

/* loyality rewards program  end*/

/* purchase goal */

.purchase-goal-sec-main-new-page {
}

.purchase-goal-sec-main-new-page .loyality-rewards-last-sec {
    background: transparent;
}

.purchase-goal-sec-main-new-page .loyality-rewards-last-sec .left-tab__sec {
    /* background: #F8F8F8; */
    border-radius: 20px;
    position: relative;
    height: 95%;
}

.purchase-goal-sec-main-new-page
    .loyality-rewards-last-sec
    .left-tab__sec::before {
    position: absolute;
    right: -36px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 34px;
    content: "";
    background: url(images/polygon-icon-purchase-goal.svg) no-repeat;
}

.purchase-goal-sec-main-new-page .customer-last-sec-purchase-goal {
}

.purchase-goal-sec-main-new-page .customer-last-sec-purchase-goal p span {
    position: relative;
    padding-left: 170px;
}

.purchase-goal-sec-main-new-page
    .customer-last-sec-purchase-goal
    p
    span::before {
    position: absolute;
    left: 5px;
    border: 1px solid #000000;
    width: 160px;
    height: 0px;
    top: 12px;
    content: "";
}

.purchase-goal-sec-main-new-page .right-tab-sec-purchase-goal {
    /* background: #F8F8F8; */
    border-radius: 20px;
    height: 95%;
    padding: 25px;
}

.purchase-goal-sec-main-new-page
    .right-tab-sec-purchase-goal
    .all-field-txt-purchase-goal {
}

.purchase-goal-sec-main-new-page
    .right-tab-sec-purchase-goal
    .all-field-txt-purchase-goal
    .form-group {
    margin-bottom: 25px;
}

.purchase-goal-sec-main-new-page
    .right-tab-sec-purchase-goal
    .all-field-txt-purchase-goal
    .form-group
    label {
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 29px;
    margin-bottom: 18px;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */
    color: #000000;
}

.purchase-goal-sec-main-new-page
    .right-tab-sec-purchase-goal
    .all-field-txt-purchase-goal
    .form-group
    input {
    border: 1px solid #b1c0c7;
    border-radius: 6px;
}

/* purchase goal end */

/* congratulation page  */

.congratulation-page-main-sec-new-one {
    padding: 25px 0 20px !important;
}

.congratulation-page-main-sec {
    background: #f8f8f8;
    border-radius: 20px;
    margin-top: 30px;
}

.congratulation-page-main-sec .first-sec-congrats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eaeaea;
    padding: 40px 15px;
}

.congratulation-page-main-sec .first-sec-congrats h2 {
    font-style: normal;
    font-weight: 500;
    font-size: 47px;
    line-height: 55px;
    margin-bottom: 0;
    letter-spacing: 0.01em;
    /* text-transform: capitalize;  */
    color: #24a1db;
}

.congratulation-page-main-sec .first-sec-congrats .manage-active-btn {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    display: flex;
    align-items: center;
    height: 51px;
    padding: 0 30px;
    background: #208dcb;
    border-radius: 6px;
    border: 1px solid #208ccb;
    justify-content: center;
    text-align: center;
    letter-spacing: 0.01em;
    /* text-transform: uppercase; */
    color: #ffffff;
    transition: 0.4s all ease-in-out;
}

.congratulation-page-main-sec .first-sec-congrats .manage-active-btn:hover {
    background: #fff;
    color: #208ccb;
}

.congratulation-page-main-sec .middle-sec-congrats {
    border-bottom: 1px solid #eaeaea;
    padding: 40px 15px;
}

.congratulation-page-main-sec .middle-sec-congrats h3 {
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 35px;
    letter-spacing: 0.01em;
    margin-bottom: 0;
    padding-bottom: 25px;
    color: #000000;
}

.congratulation-page-main-sec .middle-sec-congrats h6 {
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 35px;
    letter-spacing: 0.01em;
    margin-bottom: 0;
    color: #208dcb;
}

.congratulation-page-main-sec .last-sec-congrats {
    padding: 40px 15px;
}

.congratulation-page-main-sec .last-sec-congrats h3 {
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 35px;
    letter-spacing: 0.01em;
    margin-bottom: 0;
    padding-bottom: 20px;
    color: #000000;
}

.congratulation-page-main-sec .last-sec-congrats p {
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    margin-bottom: 0;
    padding-bottom: 18px;
    line-height: 35px;
    letter-spacing: 0.01em;
    color: #000000;
}

.congratulation-page-main-sec .last-sec-congrats p:nth-child(3) {
    max-width: 50%;
    margin: auto;
}

.congratulation-page-main-sec .last-sec-congrats p:last-child {
    padding-bottom: 0;
}

/* congratulation page  end*/

/* manage program tabs content */

.manage-program-tab-content-main-sec .table-manage-program-sec {
}

.manage-program-tab-content-main-sec .table-manage-program-sec table {
    width: 100%;
    background: #fff;
}

.manage-program-tab-content-main-sec
    .table-manage-program-sec
    table
    tr:nth-child(odd) {
    background: #f8f8f8;
}

.manage-program-tab-content-main-sec .table-manage-program-sec table td {
    padding: 25px 12px;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    /* text-transform: capitalize; */
    color: #454545;
}

.manage-program-tab-content-main-sec
    .table-manage-program-sec
    table
    td
    .end-program-btn-sec {
    background: #daa52b;
    border: 1px solid #daa52b;
    border-radius: 6px;
    height: 48px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    letter-spacing: 0.01em;
    color: #ffffff;
    transition: 0.4s all ease-in-out;
}

.manage-program-tab-content-main-sec
    .table-manage-program-sec
    table
    td
    .schedule-program-btn-sec {
    background: #c80b0b;
    border: 1px solid #c80b0b;
    border-radius: 6px;
    height: 48px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    letter-spacing: 0.01em;
    color: #ffffff;
    transition: 0.4s all ease-in-out;
}

.manage-program-tab-content-main-sec
    .table-manage-program-sec
    table
    td
    .extend-program-btn-sec {
    background: #2bacda;
    border: 1px solid #2bacda;
    border-radius: 6px;
    height: 48px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    letter-spacing: 0.01em;
    color: #ffffff;
    transition: 0.4s all ease-in-out;
}

.manage-program-tab-content-main-sec
    .table-manage-program-sec
    table
    td
    .extend-program-btn-sec:hover {
    background: #2b80da;
    border: 1px solid #2b80da;
}
.manage-program-tab-content-main-sec
    .table-manage-program-sec
    table
    td
    .schedule-program-btn-sec:hover {
    background: #ff2719;
    border: 1px solid #ff2719;
}
.manage-program-tab-content-main-sec
    .table-manage-program-sec
    table
    td
    .end-program-btn-sec:hover {
    background: #1cad2b;
    border: 1px solid #1cad2b;
}

.manage-program-tab-content-main-sec
    .table-manage-program-sec
    table
    td
    .restart-program-btn-sec {
    background: #1cad2b;
    border: 1px solid #1cad2b;
    border-radius: 6px;
    height: 48px;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    letter-spacing: 0.01em;
    color: #ffffff;
}

.manage-program-tab-content-main-sec
    .table-manage-program-sec
    table
    td
    .restart-program-btn-sec:hover {
    background: #daa52b;
    border: 1px solid #daa52b;
}

.manage-program-tab-content-main-sec .table-manage-program-sec table th {
    padding: 25px 12px;
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 18px;
    color: #208ccb;
}

.manage-program-tab-content-main-sec .filter-sec-manage-programs {
    text-align: right;
    padding: 0 0 12px;
}

.manage-program-tab-content-main-sec .filter-sec-manage-programs select {
    border: 1px solid #26a7df;
    border-radius: 6px;
    height: 46px;
    padding: 0 10px;
    background: url(images/select-icon-bg-img.svg) no-repeat;
    background-position: 95%;
    width: 200px;
}

.new-tab-manage-program-technical-issue-txt {
    padding-top: 55px;
}

/* manage program tabs */

/* program database sec tab content*/

.programe-database-main-sec-tab-content .filter-sec-manage-programs {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.programe-database-main-sec-tab-content .add-manage-gifts-btn-sec {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #208dcb;
    border-radius: 6px;
    font-style: normal;
    font-weight: 500;
    padding: 0 20px;
    font-size: 20px;
    border: 1px solid #208ccb;
    height: 46px;
    line-height: 23px;
    letter-spacing: 0.01em;
    color: #ffffff;
    transition: 0.4s all ease-in-out;
}

.programe-database-main-sec-tab-content .add-manage-gifts-btn-sec:hover {
    color: #208ccb;
    background: #fff;
}

.gift-setting-sec {
    padding-top: 45px;
}

.gift-setting-sec h4 {
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 23px;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */
    margin-bottom: 12px;
    color: #000000;
    margin-bottom: 25px;
}

.custom-checkbox-send-edit-setting {
    display: flex;
    align-items: center;
    padding-bottom: 25px;
}

.custom-checkbox-send-edit-setting:last-child {
    padding-bottom: 0;
}

/* custom checkbox */

.custom-checkbox-send-edit-setting label {
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */
    color: #454545;
}

.custom-checkbox-send-edit-setting label {
    font-style: normal;
    font-weight: 600;
    margin-left: 15px;
    font-size: 18px;
    line-height: 21px;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */
    color: #454545;
}

.custom-checkbox-send-edit-setting label span {
    color: #b39428;
    padding: 0 3px;
}

.custom-checkbox-send-edit-setting label a {
    color: #208dcb;
    padding-left: 3px;
}

.custom-checkbox-send-edit-setting input {
    border: 2px solid #454545;
    width: 20px;
    height: 20px;
}

.custom-checkbox-send-edit-setting .form-check-input:checked {
    background-color: #26a7df;
    border-color: #26a7df;
}

/* custom checkbox end*/

.table-manage-program-sec .custom-select-box-gift-program-database select {
    border: 1px solid #26a7df;
    border-radius: 6px;
    height: 46px;
    background: url(images/select-icon-bg-img.svg) no-repeat;
    background-position: 95%;
}

.table-manage-program-sec .send-program-btn-sec {
    background: #1cad2b;
    border: 1px solid #1cad2b;
    border-radius: 6px;
    height: 48px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    width: 100%;
    line-height: 19px;
    display: flex;
    padding: 0 30px;
    align-items: center;
    justify-content: center;
    text-align: center;
    letter-spacing: 0.01em;
    color: #ffffff;
    transition: 0.4s all ease-in-out;
}

.table-manage-program-sec .send-program-btn-sec:hover {
    background: #fff;
    color: #1cad2b;
}

.table-manage-program-sec
    .custom-checkbox-all-product-database
    .form-check-input:checked {
    background-color: #26a7df;
    border-color: #26a7df;
}

.table-manage-program-sec .custom-checkbox-all-product-database input {
    width: 20px;
    height: 20px;
    border: 2px solid #454545;
}

.table-manage-program-sec .bg-color-blue input {
    border: 2px solid #208ccb !important;
}

/* program database sec end */

/* select all popup*/

.select-all-modal-popup-sec .modal-content {
    background: linear-gradient(180deg, #1f8ac9 0%, #26a7df 100%);
    border: 4px solid #ffffff;
    border-radius: 20px;
    width: 864px;
    /* height: 455px; */
    padding: 60px 120px;
}
/* .select-all-modal-popup-sec.modal-data-sec{

height: 455px;
} */
.select-all-modal-popup-sec .modal-title {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 300;
    font-size: 31px;
    line-height: 47px;
    /* or 152% */
    text-align: center;
    letter-spacing: 0.01em;
    color: #ffffff;
    /* max-width: 430px;
  margin: 0 auto; */
}
.select-all-modal-popup-sec .select-sec select {
    border: 1px solid #ffffff;
    border-radius: 6px;
    font-family: "Roboto";
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */
    color: #ffffff;
    background: url(images/arrow-select.png);
    background-repeat: no-repeat;
    background-position: right 13px top 24px;
    width: 393px;
}
.select-all-modal-popup-sec .select-sec {
    text-align: center;
}
.select-all-modal-popup-sec .modal-header {
    border: none;
}
.select-all-modal-popup-sec .modal-footer {
    border: none;
}
.select-all-modal-popup-sec .modal-footer .send-gift {
    background: #93da42;
    border: 1px solid #93da42;
    border-radius: 10px;
    padding: 19px 27px;
    font-family: "Roboto";
    font-style: normal;
    font-weight: 200;
    font-size: 20px;
    line-height: 23px;
    text-align: center;
    /* text-transform: capitalize; */
    color: #ffffff;
}
.select-all-modal-popup-sec .modal-footer .cancel-button-gift {
    border: 1px solid #ffffff;
    border-radius: 10px;
    background: transparent;
    padding: 19px 55px;
    font-family: "Roboto";
    font-style: normal;
    font-weight: 200;
    font-size: 20px;
    line-height: 23px;
    text-align: center;
    /* text-transform: capitalize; */
    color: #ffffff;
}
.select-all-modal-popup-sec .modal-footer {
    justify-content: center;
}
.select-all-modal-popup-sec .modal-footer .send-gift:hover {
    background: #5c6157;
    border: 1px solid #93da42;
}
.select-all-modal-popup-sec .modal-footer .cancel-button-gift:hover {
    background: #00000091;
    border: 1px solid #ffffff;
}
.select-all-modal-popup-sec .modal-dialog {
    margin: 0 auto !important;
    top: 71px;
    transform: translateX(-45%) !important;
}

/* select all end */

.marchant-body-cont {
    background-color: #f8f8f8;
}
/* .marchant-body-cont::after{
  content: "";
  position: absolute;
  left: -135px;
  top: 180px;
  background: url(images/banner-bg.svg) no-repeat;
  width: 500px;
  height: 500px;
  opacity: 0.5;
} */
.marchant-body-cont h2 {
    font-style: normal;
    font-weight: 500;
    font-size: 30px;
    line-height: 40px;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */
    color: #000000;
}
.marchant-body-cont p {
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.01em;
    color: #2d2b2b;
    margin: 0 0 50px 0;
}
.marchant-body-cont a {
    background: #8ec64e;
    color: #fff;
    text-decoration: none;
    padding: 16px 20px;
    border-radius: 6px;
}
.marchant-body-cont a:hover {
    background: #3b61dc;
    color: #fff;
}
.content-area {
    padding: 100px 0;
}
.marchant-img {
    position: relative;
}
.content-sec {
    position: absolute;
    top: 290px;
    left: 180px;
}
.content-sec h2 {
    font-style: normal;
    font-weight: 300;
    font-size: 30px;
    line-height: 30px;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */
    color: #ffffff;
    margin: 0 0 5px 0;
}
.content-sec h3 {
    font-style: normal;
    font-weight: 700;
    font-size: 29px;
    line-height: 40px;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */
    color: #ffffff;
    position: relative;
}
.content-sec h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    background-color: #239dd7;
    width: 100px;
    height: 2px;
}
.margin-top {
    margin: 20px 0;
}
.headline-sec h6 {
    margin-bottom: 0 !important;
}
.headline-sec p {
    margin: 10px 0 0 0 !important;
}
.custom-checkbox input {
    width: 20px !important;
    max-width: 100px;
    height: 20px !important;
    float: left;
    margin: 0 10px 0 0 !important;
    border: 1px solid #26a6de !important;
}
.custom-checkbox p {
    margin: 0 !important;
    float: left;
}
.btn-box {
    margin: 0;
    padding: 0 !important;
}
.main-head {
    border-bottom: 1px solid #eee;
}
.solution-sec {
    background: #ececec;
    border: 4px solid #ffffff;
    border-radius: 15px;
    text-align: center;
    padding: 20px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    cursor: pointer;
}
.solution-sec:hover {
    background-color: #2091ce;
    color: #fff;
}
.solution-sec:hover h2 {
    color: #fff;
}
.solution-sec:hover img {
    filter: brightness(0) invert(1);
}
.solution-sec img {
    float: left;
    margin: 0 20px 0 0;
}

/* header */
.header_close_btn a {
    background: #f04343 !important;
    border-radius: 6px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    /* identical to box height */

    letter-spacing: 0.01em;
    /* text-transform: capitalize; */

    color: #ffffff;
    padding: 16px 51px !important;
}
.header_close_btn a:hover {
    background: #3b61dc !important;
}
/* header */
.message_board .display_sec h6 {
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.6;
    /* identical to box height, or 26px */

    letter-spacing: 0.01em;
    /* text-transform: capitalize; */

    color: #000000;
    margin-bottom: 0;
}
.message_board .display_sec p {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 29px;
    /* or 145% */

    letter-spacing: 0.01em;

    color: #5d5d5d;
    margin-top: 25px;
    margin-bottom: 22px;
}
.message_board .display_sec .margin_cls {
    margin-top: 40px;
}
.message_board .display_sec .max_cls {
    max-width: 445px;
    justify-content: space-between;
}
.message_board .display_sec .container_radio {
    display: block;
    position: relative;
    padding-left: 28px;
    margin-bottom: 0 !important;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 23px;
    /* identical to box height */

    text-align: center;
    letter-spacing: 0.01em;

    color: #000000;
}

/* Hide the browser's default radio button */
.message_board .display_sec .container_radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
}

/* Create a custom radio button */
.message_board .display_sec .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border-radius: 50%;
    border: 2px solid #93da42;
}

/* On mouse-over, add a grey background color */
.message_board .display_sec .container_radio:hover input ~ .checkmark {
    background-color: #fff;
}

/* When the radio button is checked, add a blue background */
.message_board .display_sec .container_radio input:checked ~ .checkmark {
    background-color: #fff;
}

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

/* Show the indicator (dot/circle) when checked */
.message_board .display_sec .container_radio input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.message_board .display_sec .container_radio .checkmark:after {
    top: 2px;
    left: 2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #93da42;
}
.message_board .form_section_area input,
.message_board .form_section_area select {
    width: 100%;
    height: 62px;

    border: 1px solid #b8bbbc;
    border-radius: 10px;
    padding: 0 22px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    /* identical to box height */

    letter-spacing: 0.01em;

    color: #000000;
}
.message_board .form_section_area select {
    background: url(images/blue-down-tick.svg) no-repeat calc(100% - 16px)
        center transparent;
    text-overflow: ellipsis;
}
.message_board .form_section_area input::placeholder,
.message_board .form_section_area textarea::placeholder {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    /* identical to box height */

    letter-spacing: 0.01em;

    color: #000000;
}
.message_board .form_section_area .form_margin {
    margin-top: 17px;
    margin-bottom: 40px;
}
.message_board .form_section_area textarea {
    border: 1px solid #b8bbbc;
    border-radius: 10px;
    height: 169px;
}
.message_board .form_section_area p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    /* identical to box height */

    letter-spacing: 0.01em;
    /* text-transform: capitalize; */

    color: #ff3030;
    text-align: end;
    margin-bottom: 19px;
    margin-top: -21px;
}
.message_board .form_section_area .btn-flex {
    display: flex;
    justify-content: end;
    flex-wrap: wrap;
    margin: 30px 0 81px 0;
}
.preview_btn {
    padding: 14px 33px;
    background: #9aca3d;
    border-radius: 6px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    letter-spacing: 0.01em;
    color: #ffffff !important;
    margin-right: 10px;
}
.preview_btn:hover {
    background: #208dcb;
}
.publish_btn {
    padding: 14px 33px;
    background: #208dcb;
    border-radius: 6px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    letter-spacing: 0.01em;
    color: #ffffff !important;
}
.publish_btn:hover {
    background: #9aca3d;
}

/* tenant recognation */
.tenant.message_board .display_sec p {
    max-width: 1257px;
}
.tenant.message_board .form_section_area .form_margin {
    margin-top: 36px;
}
.tenant.message_board .form_section_area label {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    /* identical to box height */

    text-align: center;
    letter-spacing: 0.01em;

    color: #000000;
    margin-bottom: 24px;
}
.tenant.message_board .form_section_area p {
    margin-top: 0;
    margin-bottom: 0;
}

.modal-sec {
    /* width: 701px;
 height: 480px; */
    background: #fff;
    border: 4px solid #ffffff;
    border-radius: 20px;
    margin: 0 auto;form_section_areaadient(180deg, #1F8AC9 0%, #26A7DF 100%); */
    border-radius: 20px;
    position: relative;
    border: 4px solid #ffff;
}
.modal-heading p {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 300;
    font-size: 20px;
    line-height: 23px;
    text-align: center;
    letter-spacing: 0.01em;
    /* text-transform: uppercase; */
    color: #ffffff;
    margin-bottom: 10px;
}
.modal-heading {
    border-bottom: 1px solid #f9fcfd;
    padding-bottom: 28px;
}
.modal-inner-heading h2 {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 400;
    font-size: 36px;
    line-height: 42px;
    text-align: center;
    letter-spacing: 0.01em;
    color: #000;
    text-transform: none;
}
.modal-heading span {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 200;
    font-size: 14px;
    line-height: 16px;
    text-align: right;
    letter-spacing: 0.01em;

    color: #000;
}

/* .modal-select-sec select{
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0.01em;
  text-transform: capitalize;
  color: #000000;
  text-align: center;
  background: #FFFFFF;
  border-radius: 10px;
}  */

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 0;
}

.modal-inner-heading {
    padding-top: 12px;
}
.modal-button-sec {
    padding-top: 33px;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.brows-btn {
    border: none;
    background: #26a7df;
    border-radius: 10px;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 21px;
    font-family: "Roboto";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */
    border: 1px solid #dedede;
    border-radius: 10px;
    color: #fff;
    margin-bottom: 23px;
}
.brows-btn:hover {
    background: #8ec64e;
    color: #fff;
}
.reward-btn {
    border: 1px solid #dedede;
    border-radius: 10px;
    background: #26a7df;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 21px;
    margin-bottom: 23px;
    font-family: "Roboto";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */
    color: #fff;
}
.reward-btn:hover {
    background: #8ec64e;
    color: #fff;
}
.modal-cancel {
    text-align: right;
    position: absolute;
    top: 10px;
    right: 14px;
    z-index: 1;
}
.modal-cancel button {
    background: #ffffff;
    border: none;
    border-radius: 50%;
    width: 31px;
    height: 31px;
}
.modal-cancel button img {
    width: 12px;
    height: 12px;
}

.btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    /* padding: .25em .25em; */
    /* color: #000; */
    background: #ffff !important;
    opacity: inherit;
}
.modal-content {
    /* position: relative;
  display: flex;
  flex-direction: column;
  width: 0 !important;
  pointer-events: auto; */
    /* background-color: #fff; */
    /* background-clip: padding-box;
  border: none;
  border-radius: 0;
  outline: 0; */
}

/* @media (max-width: 576px){
.modal-dialog {
  max-width: 707px;
  margin: 1.75rem auto;
}
} */

.property-setting .modal-dialog {
    height: 718px;
    background: #f8f8f8;
    width: 100%;
    /* padding: 25px 44px; */
}
.property-setting .modal-content {
    padding: 25px 44px;
}
.property-setting .modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 36px;
}
.property-setting .modal-header h5 {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 500;
    font-size: 36px;
    line-height: 47px;
    text-align: center;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */
    color: #000000;
    margin: 0;
    /* background: #F8F8F8; */
}

.property-setting .btn-close {
    border: none;
    background: #f04343;
    border-radius: 6px;
    font-family: "Roboto";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */
    color: #ffffff;
    padding: 16px 48px;
}
.property-setting .property-sec {
    background: #fcfcfc;
    padding: 16px 45px;
}
.property-setting .property-inner {
    display: flex;
    align-items: center;
}
.property-setting .radio-button {
    padding-left: 84px;
}

.property-setting .property-inner p {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 500;
    font-size: 23px;
    line-height: 47px;
    text-align: center;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */
    color: #000000;
}

/* input[type="radio"] ~ :checked::before{
  background-color: green;
  color: green;
} */

.property-setting .property-last-text {
    display: flex;
    align-items: center;
}
.property-setting .property-last-text button {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.01em;
    text-decoration-line: underline;
    /* text-transform: capitalize; */
    color: #26a7df;
    background: transparent;
    border: none;
    cursor: pointer;
    padding-left: 18px;
}

.property-setting .property-last-text p {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.01em;
    color: #2d2b2b;
}
/* header */
.header_close_btn a {
    background: #f04343 !important;
    border-radius: 6px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    /* identical to box height */

    letter-spacing: 0.01em;
    /* text-transform: capitalize; */

    color: #ffffff;
    padding: 16px 51px !important;
}
.header_close_btn a:hover {
    background: #3b61dc !important;
}
/* header */
.wizard-body {
    margin: 21px 0;
    /* height: 714px; */
}
.wizard-body .left_step {
    max-width: 336px;
    /* height: 714px; */
    width: 100%;
    background: #f8f8f8;
    border-radius: 20px;
    padding: 10px 33px 0px 33px;
}
.wizard-body .left_step ul {
    padding: 0;
}
.wizard-body .left_step ul li {
    list-style: none;
    margin-top: 50px;
}
.wizard-body .left_step ul li:first-child {
    margin-top: 55px;
}
.wizard-body .left_step ul li h6 {
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 23px;
    /* identical to box height, or 115% */

    letter-spacing: 0.01em;

    color: #2d2b2b;
    margin-bottom: 7px;
}
.wizard-body .left_step ul li p {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    /* or 143% */

    letter-spacing: 0.01em;

    color: #2d2b2b;
    max-width: 199px;
    height: 55px;
    margin-bottom: 0;
}
.wizard-body .left_step ul li .grey_circle {
    width: 24px;
    height: 24px;
    background: #d7d7d7;
    border-radius: 50%;
    position: relative;
}
.wizard-body .left_step ul li .margin-right {
    margin-right: 13px;
}
.wizard-body .left_step ul li .grey_circle::after {
    content: "";
    position: absolute;
    width: 5px;
    height: 101px;
    background-color: #d7d7d7;
    top: 21px;
    left: 9px;
    border-radius: 3px;
}
.wizard-body .left_step ul li .grey_circle.green_line::after {
    background: #8ec64e;
}
.wizard-body .left_step ul li:last-child .grey_circle::after {
    height: 64px;
}
.wizard-body .left_step .deal_btn {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    /* identical to box height, or 143% */
    letter-spacing: 0.01em;
    color: #fff;
    width: 100%;
    margin: 42px auto 42px auto;
    border: 1px solid #fff;
    border-radius: 23.5px;
    padding: 14px;
}
.wizard-body .left_step .deal_btn:hover {
    background: #8ec64e;
    color: #fff;
}
.wizard-body .left_step ul li .grey_circle.green_tick {
    background: #8ec64e;
    text-align: center;
}
.wizard-body .left_step ul li .grey_circle.green_tick img {
    margin-top: -5px;
}
.wizard-body .left_step ul li:first-child .green_tick::before {
    /* content: "";
position: absolute;
width: 5px;
height: 40px;
background-color:  #8EC64E;
top: 21px;
left: 9px;
border-radius: 3px; */
    content: "";
    position: absolute;
    width: 5px;
    height: 81px;
    background-color: #8ec64e;
    top: 21px;
    left: 9px;
    border-radius: 3px;
    z-index: 8;
}
/* right side */
.wizard-body .right_box_section {
    background: #fff;
    border-radius: 20px;
    padding: 0px 34px;
    min-height: 714px;
}
.wizard-body .right_box_section h1 {
    font-style: normal;
    font-weight: 500;
    font-size: 36px;
    line-height: 56px;
    /* identical to box height, or 156% */

    letter-spacing: 0.01em;
    /* text-transform: capitalize; */

    color: #000000;
    margin-bottom: 54px;
}

#section2 .btn-close {
    background: #26a7df !important;
    border-radius: 50%;
}
#section2 .btn-close img {
    filter: brightness(0) invert(1);
}
.homemodal .btn-close {
    background: #26a7df !important;
    border-radius: 50%;
    width: 31px;
    height: 30px;
    position: absolute;
    top: 10px;
    right: 14px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.homemodal .cancell-one11 {
    vertical-align: top;
}
.homemodal .btn-close img {
    filter: brightness(0) invert(1);
}
.property-manager-tab {
    background: #ffffff;
    border-radius: 50px;
    border: 1px solid #26a7df;
}
.property-manager-tab .nav-link {
    margin: 0px !important;
    border: 0px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 50px;
}
.property-manager-tab .nav-link:hover {
    border: 0px;
    border-radius: 50px;
    background: #26a7df;
    color: #fff;
}
.property-manager-tab .nav-link {
    width: 50%;
}
.property-manager-tab .nav-link.active {
    border: 0px;
    border-radius: 50px;
    background: #26a7df;
    color: #fff;
}
.email-text-one input[type="text"] {
    border: 1px solid #dedfe0 !important;
    border-radius: 10px !important;
    height: 52px;
    font-family: "Roboto";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */
    color: #dedfe0;
    text-decoration: none;
    margin-top: 20px !important;
}
.email-text-one input[type="password"] {
    border: 1px solid #dedfe0 !important;
    border-radius: 10px !important;
    height: 52px;
    font-family: "Roboto";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */
    color: rgb(8, 8, 8);
    text-decoration: none;
    margin-top: 10px !important;
}
.email-text-one::-webkit-input-placeholder {
    /* Edge */
    color: #dedfe0;
}

.email-text-one:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #dedfe0;
}

.email-text-one::placeholder {
    color: #dedfe0;
}
.email-text-one input[type="email"] {
    border: 1px solid #dedfe0 !important;
    border-radius: 10px !important;
    height: 52px;
    font-family: "Roboto";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */
    color: rgb(8, 8, 8);
    text-decoration: none;
    margin-top: 10px !important;
}
.email-text-one::-webkit-input-placeholder {
    /* Edge */
    color: #dedfe0;
}

.email-text-one:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #dedfe0;
}

.email-text-one::placeholder {
    color: #dedfe0;
}
.forgot-password-text1 {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */
    color: #dedfe0;
    text-decoration: none;
    text-align: right;
    padding-top: 10px;
}
.forgot-password-text1 a {
    color: #626262;
    text-decoration: none;
}
.forgot-password-text1 a:hover {
    color: #05386c;
    text-decoration: none;
}
.login-button-one {
    width: 100%;
    height: 50px;
    text-align: center;
    font-family: "Roboto";
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 26px;
    letter-spacing: 0.15em;
    /* text-transform: capitalize; */
    color: #ffffff;
    background: #93da42;
    border-radius: 6px;
    border: 0px;
    margin-top: 10px;
}
.login-button-one:hover {
    background: #05386c;
    color: #fff;
}
.smart-reward-text button {
    background: #93da42;
    border: 0px;
    border-radius: 10px;
    padding: 20px;
    font-family: "Roboto";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */
    color: #ffffff;
    text-decoration: none;
}
.smart-reward-text button:hover {
    background: #1f8ac9;
    color: #fff;
}
.smart-reward-text {
    padding: 10px 0 0 0;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    letter-spacing: 0.01em;
}
.smart-reward-text a {
    text-decoration-line: underline;
    color: #626262;
}
.smart-reward-text a:hover {
    color: #26a7df;
    text-decoration: none;
}
.main-form input[type="text"],
.main-form input[type="password"] {
    border: 1px solid #dedfe0 !important;
    border-radius: 10px !important;
    height: 52px;
    font-family: "Roboto";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */
    /* color: #dedfe0; */
    color: #000;
    text-decoration: none;
    margin-top: 10px !important;
}

@media (max-width: 1400px) {
    .wizard-body .right_box_section h1 {
        font-size: 32px;
        line-height: 35px;
    }
}

.wizard-body .right_box_section .upload_haed h1 {
    margin-bottom: 31px;
}
.wizard-body .right_box_section h1 span {
    color: #8ec64e;
}
.wizard-body .right_box_section .heading_sec {
    padding: 0 32px;
}
.wizard-body .right_box_section .form-section {
    padding: 44px 32px 0 32px;
    border-top: 1px solid #eaeaea;
}
.wizard-body .right_box_section .form-section h6 {
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 23px;
    letter-spacing: 0.01em;

    color: #000000;
    margin-bottom: 51px;
}
.wizard-body .right_box_section .form-section input {
    border: 1px solid #b8bbbc;
    border-radius: 10px;
    width: 100%;
    /* max-width: 431px; */
    height: 62px;
    padding: 0 22px;
    background: transparent;
}
.wizard-body .right_box_section .form-section .width_90 {
    width: 90%;
}
.wizard-body .right_box_section .form-section .width_10 {
    width: 10%;
    text-align: center;
    padding: 18px 0;
}
.wizard-body .right_box_section .form-section p {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    /* or 171% */

    letter-spacing: 0.01em;

    color: #2d2b2b;
    margin-top: 55px;
}
.wizard-body .right_box_section .form-section small {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    /* identical to box height */

    letter-spacing: 0.01em;

    color: #000000;
}
.wizard-body .right_box_section .btn_section {
    padding: 141px 32px 0 32px;
}
.wizard-body .right_box_section .btn_section.btn_section_two {
    padding: 109px 32px 0 32px;
}
.wizard-body .right_box_section .btn_section .profile_btn {
    background: #000000;
    border-radius: 6px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    /* identical to box height */

    text-align: center;
    letter-spacing: 0.01em;
    /* text-transform: uppercase; */

    color: #ffffff;
    padding: 18px;
    margin-right: 27px;
}
.wizard-body .right_box_section .btn_section .profile_btn:hover {
    background: #93da42;
}
.wizard-body .right_box_section .btn_section.btn_section_two .profile_btn {
    padding: 18px 60px;
}
.wizard-body .right_box_section .btn_section .next_btn {
    background: #208dcb;
    border-radius: 6px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    letter-spacing: 0.01em;
    /* text-transform: uppercase; */
    color: #ffffff;
    padding: 18px 77px;
}
.wizard-body .right_box_section .btn_section .next_btn:hover {
    background: #93da42;
}
.wizard-body .right_box_section .btn_section h6 {
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 23px;
    /* identical to box height, or 115% */

    letter-spacing: 0.01em;

    color: #2d2b2b;
}
.wizard-body .right_box_section .btn_section h6 span {
    color: #208fcd;
}
.wizard-body .right_box_section .file_upload {
    max-width: 285px;
    width: 100%;

    background: #ececec;
    border: 4px solid #ffffff;
    border-radius: 15px;
    position: relative;
    padding: 40px 30px;
    text-align: center;
}
.wizard-body .right_box_section .file_upload h6 {
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 40px;
    /* identical to box height, or 200% */

    letter-spacing: 0.01em;
    /* text-transform: capitalize; */

    color: #000000;
    margin-bottom: 0;
}
.wizard-body .right_box_section .file_upload small {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    /* identical to box height, or 143% */

    letter-spacing: 0.01em;

    color: #2d2b2b;
}
.wizard-body .right_box_section .file_upload input {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}
.wizard-body .right_box_section .skip_sec {
    border-top: 1px solid #eaeaea;
    padding: 29px 32px 0 32px;
    margin-top: 59px;
}
.wizard-body .right_box_section .skip_sec a {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    /* identical to box height, or 143% */

    letter-spacing: 0.01em;
    text-decoration-line: underline;

    color: #2091ce;
}
/* step-2 */
.wizard-body .right_box_section.step-2 {
    padding: 28px 28px;
}
.wizard-body .right_box_section.step-2 h1 {
    margin-bottom: 29px;
}
.wizard-body .right_box_section.step-2 select {
    width: 100%;
    height: 62px;
    max-width: 100%;

    border: 1px solid #b8bbbc;
    border-radius: 10px;
    background-color: transparent;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    /* identical to box height */

    letter-spacing: 0.01em;

    color: #000000;
    margin-bottom: 21px;
    background: url(images/blue-down-tick.svg) no-repeat calc(100% - 16px)
        center transparent;
}
.wizard-body .right_box_section.step-2 .form-section input {
    width: 15%;
    height: 62px;
    max-width: 100%;

    border: 1px solid #b8bbbc;
    border-radius: 10px;
    background-color: transparent;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    /* identical to box height */

    letter-spacing: 0.01em;

    color: #000000;
}
.wizard-body .right_box_section.step-2 .form-section span {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    /* identical to box height */

    letter-spacing: 0.01em;
    /* text-transform: capitalize; */

    color: #ff3030;
    text-align: end;
    display: block;
    margin-bottom: 12px;
    margin-top: -30px;
}
.wizard-body .right_box_section.step-2 .form-section small {
    font-style: italic;
    font-weight: 400;
    font-size: 13px;
    line-height: 24px;
    /* identical to box height, or 185% */

    letter-spacing: 0.01em;

    color: #2d2b2b;
}
.wizard-body .right_box_section.step-2 .form-section small.character {
    display: block;
    text-align: end;
}
.wizard-body .right_box_section.step-2 .form-section p {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.01em;
    color: #2d2b2b;
    margin-top: 40px;
    margin-bottom: 10px;
}
.wizard-body .right_box_section.step-2 .form-section .down_part {
    border-top: 1px solid #eaeaea;
    padding-top: 21px;
}
.wizard-body .right_box_section.step-2 .form-section .down_part h6 {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    letter-spacing: 0.01em;

    color: #000000;
    margin-bottom: 0;
}
.wizard-body .right_box_section.step-2 .form-section .down_part .price_box {
    border: 1px solid #b8bbbc;
    border-radius: 10px;
    padding: 11px 22px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    /* identical to box height */

    letter-spacing: 0.01em;

    color: #000000;
}
.wizard-body
    .right_box_section.step-2
    .form-section
    .down_part
    .container_radio {
    display: block;
    position: relative;
    padding-left: 28px;
    margin-bottom: 0 !important;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 23px;
    /* identical to box height */

    text-align: center;
    letter-spacing: 0.01em;

    color: #000000;
}

/* Hide the browser's default radio button */
.wizard-body
    .right_box_section.step-2
    .form-section
    .down_part
    .container_radio
    input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
}

/* Create a custom radio button */
.wizard-body .right_box_section.step-2 .form-section .down_part .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border-radius: 50%;
    border: 2px solid #93da42;
    margin-top: 0;
}

/* On mouse-over, add a grey background color */
.wizard-body
    .right_box_section.step-2
    .form-section
    .down_part
    .container_radio:hover
    input
    ~ .checkmark {
    background-color: #fff;
}

/* When the radio button is checked, add a blue background */
.wizard-body
    .right_box_section.step-2
    .form-section
    .down_part
    .container_radio
    input:checked
    ~ .checkmark {
    background-color: #fff;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.wizard-body
    .right_box_section.step-2
    .form-section
    .down_part
    .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.wizard-body
    .right_box_section.step-2
    .form-section
    .down_part
    .container_radio
    input:checked
    ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.wizard-body
    .right_box_section.step-2
    .form-section
    .down_part
    .container_radio
    .checkmark:after {
    top: 2px;
    left: 2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #93da42;
}
.wizard-body .right_box_section.step-2 .btn_section {
    padding-top: 21px;
}
.wizard-body .right_box_section.step-2 .btn_section .coin_sec {
    max-width: 213px;
}
.wizard-body .right_box_section.step-2 .btn_section .coin_sec h5 {
    margin-bottom: 0;
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 26px;
    /* identical to box height */

    letter-spacing: 0.01em;

    color: #239ed8;
}
.wizard-body .right_box_section.step-2 .btn_section .coin_sec span {
    font-style: italic;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    /* or 136% */

    letter-spacing: 0.01em;

    color: #2d2b2b;
}
.wizard-body .right_box_section.step-2 .btn_section .coin_sec p {
    font-style: italic;
    font-weight: 500;
    font-size: 14px;
    line-height: 19px;
    /* identical to box height, or 136% */

    letter-spacing: 0.01em;

    color: #000000;
}

/* step-2 end */
/* step-3 */
.wizard-body .right_box_section.step-3 {
    padding: 28px 35px;
}
.wizard-body .right_box_section.step-3 .heading_sec {
    padding: 0;
}
.wizard-body .right_box_section.step-3 h1 {
    margin-bottom: 25px;
}
.wizard-body .right_box_section.step-3 .last-step {
    border-top: 1px solid #eaeaea;
    padding: 25px 0;
    border-bottom: 1px solid #eaeaea;
}
.wizard-body .right_box_section.step-3 .last-step p {
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    /* identical to box height */

    letter-spacing: 0.01em;

    color: #000000;
    width: 72%;
    margin-bottom: 0;
    align-self: center;
}
.wizard-body .right_box_section.step-3 .last-step h5 {
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 23px;
    letter-spacing: 0.01em;

    color: #000000;
    margin-bottom: 22px;
}
.wizard-body .right_box_section.step-3 .last-step .width_15 {
    width: 15%;
}
.wizard-body .right_box_section.step-3 .last-step input {
    border: 1px solid #b8bbbc;
    border-radius: 10px;
    width: 100%;
    height: 41px;
    text-align: center;
}
.wizard-body .right_box_section.step-3 .last-step span {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    /* identical to box height, or 125% */

    letter-spacing: 0.01em;

    color: #929497;
    display: block;
    margin-top: 7px;
}
.wizard-body .right_box_section.step-3 .last-step .checkbox_Box {
    display: flex;

    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    /* identical to box height, or 143% */

    letter-spacing: 0.01em;

    color: #2d2b2b;
}
.wizard-body .right_box_section.step-3 .last-step .checkbox_Box input {
    border: 1.5px solid #26a6de !important;
    border-radius: 5px;
    width: 28px;
    height: 26px;
    margin: 0 5px;
}
.wizard-body .right_box_section.step-3 .note_sec {
    border-top: 1px solid #eaeaea;
    padding: 15px 0;
    border-bottom: 1px solid #eaeaea;
}
.wizard-body .right_box_section.step-3 .note_sec p {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
    /* or 186% */

    letter-spacing: 0.01em;

    color: #2d2b2b;
    max-width: 833px;
}
.wizard-body .right_box_section.step-3 .note_sec span {
    font-weight: 900;
}
.wizard-body .right_box_section.step-3 .question_section {
    border-top: 1px solid #eaeaea;
    padding: 31px 0;
    border-bottom: 1px solid #eaeaea;
}
.wizard-body .right_box_section.step-3 .question_section h5 {
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 23px;

    letter-spacing: 0.01em;

    color: #000000;
}
.wizard-body .right_box_section.step-3 .question_section p {
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 18px;
    /* identical to box height */

    text-align: center;
    letter-spacing: 0.01em;

    color: #000000;
}

/*********************122_128.Upload Business Logo and Photos*************/
.image_box_wrapper h4 {
    font-style: normal;
    font-weight: 500;
    font-size: 25px;
    line-height: 47px;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */
    color: #2297d3;
}
.image_box_wrapper ul {
    display: flex;
    padding: 0;
}
.image_box_wrapper li {
    list-style: none;
    text-align: center;
    margin: 0 20px 0 0;
    background: #ececec;
    border: 4px solid #ffffff;
    border-radius: 15px;
    padding: 40px 35px;
    position: relative;
    width: 285px;
}
.img_txt_sec {
    position: relative;
    z-index: 9;
}
.img_upload {
    position: absolute;
    z-index: 99;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
}
.img_upload input[type="file"] {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    opacity: 0;
    cursor: pointer;
}
.img_txt_sec h5 {
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 40px;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */
    color: #000000;
    margin: 0;
}
.img_txt_sec p {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.01em;
    color: #2d2b2b;
}
.image_box_wrapper {
    padding: 13px 0 30px;
    border-top: 1px solid #eaeaea;
}
li.last_img_upload {
    background: no-repeat;
    padding: 0;
    border: none;
}
li.last_img_upload li {
    margin: 0px 4px;
}
.image_box_wrapper_top-space {
    padding: 20px 30px !important;
}
.mt-44 {
    margin-top: 20px;
}
.pading-bottom-space {
    padding-bottom: 0px;
}
.uploard-business-logo-text {
    margin-bottom: 20px !important;
}
.skip-this-text {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.01em;
    text-decoration-line: underline;
    color: #2091ce;
    text-decoration: none;
    padding-bottom: 15px;
}

.skip-this-text a {
    color: #2091ce;
    text-decoration: underline !important;
}
.skip-this-text a:hover {
    color: #000;
    text-decoration: none;
}
.back-button-one {
    background: #000000;
    border-radius: 6px;
    padding: 18px 60px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    letter-spacing: 0.01em;
    /* text-transform: uppercase; */
    color: #ffffff;
    text-decoration: none;
    border: 0px;
}
.back-button-one:hover {
    background: #d3d4d2;
    color: #fff;
}
.complete-step-two {
    font-style: normal;
    border-radius: 6px;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    letter-spacing: 0.01em;
    /* text-transform: uppercase; */
    background: #d3d4d2;
    color: #fff;
    /* text-transform: uppercase; */
    border: 0px;
    padding: 18px 12px;
    margin-left: 15px;
}
.complete-step-two:hover {
    background: #000000;
    color: #fff;
}
.padding-b-space {
    padding-bottom: 25px !important;
}
.last-step-one1 {
    min-height: 854px;
}
.p-complete-text {
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 23px;
    letter-spacing: 0.01em;
    color: #2d2b2b;
    text-decoration: none;
    padding-right: 60px;
}
.p-complete-text span {
    color: #208fcd;
    text-decoration: none;
}
.browse-student {
    text-align: right;
    margin-right: 15px;
}
.browse-student .housing-link {
    text-decoration: underline !important;
}

.view-sec {
    display: flex;
    align-items: center;
    padding-bottom: 30px;
}
.view-sec input {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.01em;
    border: 1px solid #c7c7c7;
    border-radius: 10px;
    padding-left: 15px;
}
.view-sec button {
    background: #8ec64e;
    border-radius: 10px;
    margin-left: 10px;
    width: 69px;
    border: 1px solid #8ec64e;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-img {
    width: 45% !important;
    height: auto !important;
}
.text-left {
    text-align: left !important;
}
.browse-market-universe {
    text-align: right;
    font-style: normal;
    font-weight: 500;
    font-size: 27px;
    line-height: 34px;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */
    color: #ffffff;
}
.browse-market-universe a {
    color: #fff;
}
.browse-market-universe-text {
    text-align: right;
    margin: 0 0 20px 0;
}
.browse-market-universe-text a {
    color: #000;
}
.browse-market-universe-text a:hover {
    color: #8ec64e;
}
.accordion-item {
    margin: 10px 0;
    background-color: #f2f2f2;
}
.accordion-button {
    background-color: #f2f2f2;
}
.accordion-button:focus {
    box-shadow: none;
    border: 0;
}
.accordion-button:not(.collapsed) {
    color: #0c63e4;
    background-color: #f2f2f2;
    box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
}
.accordion-button:not(.collapsed) {
    color: #33a8df;
    background-color: #f2f2f2;
    box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
}
.family-friends-modal .modal-dialog {
    max-width: 1300px;
}
.by-continue-text {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    text-align: center;
    color: #626262;
    text-decoration: none;
}
.birthday-optional-text1 {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    text-align: left;
    color: #626262;
    text-decoration: none;
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
    text-align: left;
    padding-right: 20px;
}
.birthday-optional-text2 {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    text-align: left;
    color: #626262;
    text-decoration: none;
    padding-bottom: 10px;
    display: inline-block;
    text-align: left;
}
.birthday-optional-text2 input[type="radio"] {
    margin-left: 20px;
}

@media (max-width: 1367px) {
    h2 {
        font-size: 25px;
        line-height: 28px;
    }
    .corporate-lead-setting-1-main-sec .all-corporate-lead-seting-1-flex {
        padding: 10px;
    }
    .all-smart-rental-database-main-sec
        .middle-smart-rental-sec
        .right-sec-rental
        .apartments-sec
        ul
        li
        h6 {
        font-size: 16px;
        line-height: 19px;
    }
    .all-smart-rental-database-main-sec
        .middle-smart-rental-sec
        .right-sec-rental
        .apartments-sec
        ul
        li
        h6
        .points-distributed-txt {
        font-size: 16px;
        line-height: 19px;
    }
    .browse-market-universe {
        font-size: 19px;
        line-height: 21px;
    }

    .wizard-body .left_step {
        height: 100%;
    }
    .wizard-body .left_step ul li p {
        height: auto;
    }
    .wizard-body .left_step ul li .d-flex div:nth-child(2) {
        width: calc(100% - 45px);
    }
    .wizard-body .right_box_section .heading_sec {
        padding: 0 10px;
    }
    .wizard-body .right_box_section .form-section {
        padding: 15px 15px 0 15px;
    }
    .deactivate_modal_1 .modal-content {
        padding: 15px;
    }
    .deactivate_modal_1 .modal-dialog {
        max-width: 80%;
    }
    .allen-part-tab-one-main .nav-link {
        font-size: 16px;
        line-height: 18px;
        color: #bcbcbc;
        border: 0px;
        padding: 10px;
    }

    .description-text1 {
        font-style: normal;
        font-weight: 500;
        font-size: 11px;
        line-height: 15px;
    }
    .all-smart-rental-database-main-sec
        .middle-smart-rental-sec
        .right-sec-rental
        .apartments-sec
        ul
        li
        h6
        .points-distributed-txt-new {
        font-size: 16px;
        line-height: 20px;
        padding: 5px 0;
    }
}
@media (max-width: 1200px) {
    .message_board .form_section_area input,
    .message_board .form_section_area select {
    }
    .all-smart-rental-database-main-sec
        .middle-smart-rental-sec
        .right-sec-rental
        .apartments-sec
        ul
        li
        h6
        .points-distributed-txt {
        font-size: 14px;
        line-height: 16px;
    }
    .browse-market-universe {
        font-size: 16px;
        line-height: 19px;
    }
    .wizard-body .left_step {
        padding-left: 10px;
        padding-right: 10px;
    }
    .add_term_modal .modal-content {
        padding: 15px 15px;
    }
    .points_add_modal .modal-content {
        padding: 12px;
    }

    .deactivate_modal_1 .modal-content .close_btn {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .show-filled-units-only .table_section td,
    .show-filled-units-only .table_section th {
        padding: 12px;
    }
    .allen-park-apartments-button {
        margin-top: 10px !important;
        flex-wrap: wrap;
        justify-content: center !important;
    }
    .show-filled-units-only .filter-section .form-check:first-child {
        margin-left: 10px;
        margin-right: 10px;
    }
    .show-filled-units-only .filter-section .form-check {
        margin-left: 10px;
        margin-right: 10px;
    }
    .all-smart-rental-database-main-sec
        .middle-smart-rental-sec
        .right-sec-rental
        h3 {
        font-size: 25px;
        margin-bottom: 0px;
        line-height: 30px;
    }
    .error {
        font-size: 12px;
        line-height: 15px;
    }
}

@media (max-width: 1199px) {
    /*css19.10.22*/

    .corporate-lead-setting-1-main-sec
        .right-sec-account-status-lead-setting-1
        h3 {
        font-size: 20px;
    }
    .all-smart-rental-database-main-sec
        .middle-smart-rental-sec
        .right-sec-rental
        .apartments-sec
        ul
        li
        .apartment-right-data {
        margin-top: 12px;
    }
    .all-smart-rental-database-main-sec
        .middle-smart-rental-sec
        .right-sec-rental
        .apartments-sec
        ul
        li
        .apartment-right-data:first-child {
        margin-top: 0;
    }
    /*css19.10.22_end*/
}

@media (max-width: 991px) {
    .all-smart-rental-database-main-sec
        .middle-smart-rental-sec
        .right-sec-rental
        .apartments-sec
        ul
        li {
        margin-bottom: 0px;
    }
    .corporate-lead-setting-1-main-sec .view-active-status-btn {
        margin-bottom: 0px;
    }
    .apartment-right-data {
        margin-bottom: 5px;
    }
    .all-smart-rental-database-main-sec
        .middle-smart-rental-sec
        .right-sec-rental
        .apartments-sec
        ul
        li {
        flex-wrap: wrap;
    }
    .apartment-right-data {
        margin-left: 0px;
    }
    .choose-point {
        font-size: 15px;
        line-height: 20px;
    }
    .middle-smart-rental-sec-all .to-add-aditional-loyality-txt {
        font-size: 18px;
        line-height: 20px;
    }
    .all-smart-rental-database-main-sec .first-smart-rental-sec h2 {
        font-size: 20px;
        line-height: 25px;
    }
    .deactivate_modal_1 .modal-content .next_btn.next_btn_2 {
        margin-top: 15px;
        margin-bottom: 15px;
    }
    .message_board .form_section_area textarea {
        height: auto;
    }
    .show-filled-units-only .table_section td,
    .show-filled-units-only .table_section th {
        padding: 5px;
        font-size: 11px;
        line-height: 14px;
    }
    .smart-rentel-db {
        width: 100%;
        overflow-x: scroll;
    }
    .smart-rentel-db table {
        width: 700px;
    }
    .show-filled-units-only .table_section .btn_area_section {
        max-width: 280px;
        min-height: auto;
    }
}
@media (max-width: 767px) {
    .manage-modal-inr h3 {
        margin-top: 15px;
    }
    .btn-wrap {
        margin-top: 0;
    }
    .all-smart-rental-database-main-sec
        .middle-smart-rental-sec
        .right-sec-rental
        .apartments-sec
        ul
        li
        h6 {
        font-size: 14px;
        line-height: 17px;
    }
    .show-filled-units-only .filter-section .form-check:first-child {
        margin-left: 10px;
        margin-right: 10px;
    }
    .show-filled-units-only .filter-section .form-check {
        margin-left: 10px;
        margin-right: 10px;
    }
    /* .corporate-lead-setting-1-main-sec .all-corporate-lead-seting-1-flex{
    padding: 0px;
  } */
    .all-smart-rental-database-main-sec
        .middle-smart-rental-sec
        .right-sec-rental {
        padding-left: 10px;
    }

    .all-smart-rental-database-main-sec
        .middle-smart-rental-sec
        .right-sec-rental
        .apartments-sec
        ul
        li
        h6
        .icon-img-sec-rental {
        display: inherit;
        align-items: inherit;
    }
    #section2 .modal-cancel {
        right: 0px;
    }

    .modal-inner-heading h2 {
        font-size: 22px;
        line-height: 25px;
    }
    .reward-btn {
        font-size: 15px;
        line-height: 19px;
        padding: 10px;
    }
    .brows-btn {
        padding-top: 10px;
        padding-bottom: 10px;
        font-size: 15px;
        line-height: 19px;
    }
    .all-smart-rental-database-main-sec .first-smart-rental-sec {
        padding-left: 0px;
        padding-right: 0px;
    }
    /*css19.10.22*/

    .corporate-lead-setting-1-main-sec .all-corporate-lead-seting-1-flex.neww {
        padding: 15px;
    }
    /*css19.10.22_end*/
}
@media (max-width: 640px) {
    .middle-smart-rental-sec-all {
        flex-wrap: wrap;
    }
    .corporate-lead-setting-1-main-sec .all-corporate-lead-seting-1-flex {
        flex-wrap: wrap;
    }
    .left-sec-home {
        width: 100%;
        text-align: center;
        padding-bottom: 20px;
    }
    .new-corporate-lead-setting-1-header-main .header-logo-flex {
        border-left: 0px solid #000000;
        margin-left: 0px;
        padding-left: 0px;
        margin-top: 15px;
    }
    .navbar-toggler {
        position: absolute;
        right: 15px;
        top: 15px;
    }
    .header-logo-flex {
        justify-content: center;
        width: 100%;
    }
    .new-corporate-lead-setting-1-header-main .id-gimiz {
        margin: 0px auto;
    }

    .cat-left-ico1 {
        display: none;
    }
    .cat-left-ico2 {
        display: none;
    }
    .categroies-text img {
        display: none;
    }

    .all-smart-rental-database-main-sec
        .middle-smart-rental-sec
        .right-sec-rental
        h3 {
        font-size: 20px;
        margin-bottom: 10px;
        line-height: 25px;
    }
}
@media (max-width: 540px) {
    h2 {
        font-size: 16px;
        line-height: 20px;
    }
    /*css19.10.22*/
    .corporate-lead-setting-1-main-sec .apartments-sec .number-txt {
        font-size: 16px;
    }
    /*css19.10.22_end*/
    /* settings */
    .corporate-lead-setting-1-main-sec .last-sec-merchant-lead h4 {
        display: block;
    }
    .corporate-lead-setting-1-main-sec .last-sec-merchant-lead h4 a {
        display: table;
        margin: 0;
        margin-top: 10px;
    }
    .corporate-lead-setting-1-main-sec .merchant-page-lead-setting-1-sec p {
        font-size: 18px;
    }
    /* settings_end */
}

@media (max-width: 479px) {
    /*css19.10.22*/

    .corporate-lead-setting-1-main-sec .apartments-sec .view-active-status-btn {
        width: 100%;
    }
    .all-smart-rental-database-main-sec
        .middle-smart-rental-sec
        .all-corporate-lead-seting-1-flex.neww
        .right-sec-rental {
        padding-left: 0;
    }
    /*css19.10.22_end*/
    /* date 7/12/22 start */
    .upld_file_list_sec .btn_grp a {
        font-size: 9px;
    }
    /* date 7/12/22 end */
    .feature-list {
        flex-wrap: wrap;
    }
    .feaure-btn {
        width: 100%;
    }
    form.feature-form {
        width: 100%;
    }
    .feature-modal-btm button {
        max-width: 100%;
        margin-bottom: 8px;
    }
    .feature-list p {
        margin: 0;
        font-size: 20px;
        margin-bottom: 10px;
    }
    .f-btm-outr {
        display: block;
    }
}

@media (max-width: 360px) {
    h2 {
        font-size: 20px;
        line-height: 25px;
    }
    .modal-inner-heading h2 {
        font-size: 16px;
        line-height: 18px;
    }
    .reward-btn {
        font-size: 12px;
        line-height: 15px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

.input-box-one {
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    text-align: center;
    letter-spacing: 0.01em;
    /* text-transform: capitalize; */
    color: #ffffff;
    text-decoration: none;
}
.send-button-one4 {
    background: #93da42;
    border-radius: 10px;
    padding: 20px 36px;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 23px;
    text-align: center;
    /* text-transform: capitalize; */
    color: #ffffff;
    text-decoration: none;
    border: 1px solid transparent;
}
.send-button-one4:hover {
    border: 1px solid #05386c;
    color: #fff;
    background: #05386c;
}
.cancel-button44 {
    background: #93da42;
    border-radius: 10px;
    padding: 20px 36px;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 23px;
    text-align: center;
    /* text-transform: capitalize; */
    color: #ffffff;
    text-decoration: none;
    border: 1px solid #93da42;
}
.cancel-button44:hover {
    border: 1px solid #ff2719;
    color: #fff;
    background: #ff2719;
}
.redom-and-show1 {
    text-align: center;
}
.redom-and-show1 button {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 23px;
    text-align: center;
    color: #7d7878;
    background: #c3c9bd;
    border-radius: 10px;
    border: 1px solid transparent;
    padding: 20px 36px;
    margin-bottom: 20px;
}
.redom-and-show1 button:hover {
    color: #7d7878;
    text-decoration: none;
    background: transparent;
    border: 1px solid #7d7878;
}
.what-item-one {
    display: inline-block !important;
}

.new-select1 select {
    border: 1px solid #b1c0c7;
    border-radius: 6px;
    padding: 0 10px;
    background: url(images/select-icon-bg-img.svg) no-repeat;
    background-position: 95%;
    width: 120px;
}
.a-width {
    width: 100px;
}
.customer-get-the {
    display: flex;
    width: 100%;
    justify-content: space-around;
    align-items: center;
}
.navbar-toggler {
    right: 0px;
}

.wrap_modal_cntntr.text-left {
    text-align: left;
}

.wrap_modal_cntntr.text-left .feature-list {
    padding-right: 120px;
    position: relative;
}
.wrap_modal_cntntr.text-left .feature-list .feaure-btn {
    position: absolute;
    top: 0;
    right: 0;
}
.cst_chk {
    display: inline-flex;
    align-items: center;
}
