@import"https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap";
/* @import url(theme/light.css); */
/* @import url(theme/dark.css); */
/* @import url(theme/dim.css); */
body {
    font-family: "Inter", sans-serif;
    background: var(--body-gradient);
    --main-wrapper-width:  460px;
}
a {
    text-decoration: none;
}
.error{
    color: red;
}
.modal-backdrop{
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color:hsl(0deg 0.9% 21.76% / 80%) !important;
}
.modal-backdrop.show {
    opacity: 1;
}
.site-menu-padding{
    padding: 18px !important;
}
.ex-padding{
    padding: 15px;
}
.site-card{
    box-shadow: 0px 4px 16px 0px #00000014;
    padding: 15px;
    margin: 0 0 25px;
    border-radius: 7px;
    background: var(--card-bg-color);
}
.cropsavebutton  {
    background: var(--nfc-btn-primary);
    padding: 15px 10px;
    border-radius: 4px;
    border: 1px solid var(--nfc-btn-primary);
    font-size: 16px;
    font-weight: 600;
    line-height: 19.36px;
    color: var(--white);
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 300ms ease-in-out;
}
.nfc_wrapper {
    width: 100%;
    max-width: var(--main-wrapper-width);
    margin-inline: auto;
    min-height: 100vh;
/*    box-shadow: 0px 4px 94px rgba(0, 0, 0, .04);*/
    box-shadow: 0px 4px 100px 0px #00000014;
    position: relative;
    background: var(--bg-white-color);
}
.nfc_container {
    padding: 0 24px;
    width: 100%}
.page_heading {
    position: sticky;
    top: 0;
    padding: 40px 20px;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-white-color);
    z-index: 9;
}
.page_heading a.back_btn {
    position: absolute;
    top: 50%;
    left: 24px;
    transform: translateY(-50%);
    display: flex;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0);
    justify-content: center;
    align-items: center;
    border: 1px solid var(--text-primary);
    transition: .3s all;
}
.page_heading a.back_btn img {
    transition: .3s all;
}
.page_heading a.back_btn:hover {
    background: var(--nfc-btn-primary);
}
.page_heading a.back_btn:hover img {
    filter: invert(1);
}
.page_heading h1 {
    text-align: center;
    color: var(--text-primary);
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 21px;
    text-transform: uppercase;
}
.page_fixed_block {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--main-wrapper-width);
    background: var(--footer-bg);
    box-shadow: 0px 4px 100px 0px #00000014;
    z-index: 22;
}
.page_fixed_block .btn_block {
    padding: 24px;
}
.page_fixed_block .btn_block a, .page_fixed_block .btn_block button {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--nfc-btn-primary);
    transition: .3s all;
    border-radius: 5px;
    border: 1px solid var(--nfc-btn-primary);
}
.page_fixed_block .btn_block a span, .page_fixed_block .btn_block button span {
    color: var(--white);
    font-size: 18px;
    line-height: 21px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
}
.page_fixed_block .btn_block a img, .page_fixed_block .btn_block button img {
    transition: .3s all;
}
.page_fixed_block .btn_block a:hover, .page_fixed_block .btn_block button:hover {
    opacity: 0.8;
}
/* .page_fixed_block .btn_block a:hover span, .page_fixed_block .btn_block button:hover span {
    color: var(--text-primary);
} */
.page_fixed_block .btn_block a:hover img, .page_fixed_block .btn_block button:hover img {
    filter: invert(1);
}
.page_fixed_block .nfc_page_tab {
    padding: 14px 0 1px;
    border-radius: 20px 20px 0 0;
    box-shadow: 0px 4px 34px rgba(0, 0, 0, .05);
}
.page_fixed_block .nfc_page_tab ul {
    display: flex;
    list-style-type: none;
}
.page_fixed_block .nfc_page_tab ul li {
    width: 33.3333333333%}
.page_fixed_block .nfc_page_tab ul li a {
    display: block;
}
.page_fixed_block .nfc_page_tab ul li a .icon_block {
    width: 62px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s all;
    margin: 0 auto 10px;
    transition: .3s all;
    border-radius: 50px;
    /* background-color: #FAF0BE; */
}
.page_fixed_block .nfc_page_tab ul li a .icon_block svg {
    transition: .3s all;
    stroke: var(--text-primary) !important;
}
.page_fixed_block .nfc_page_tab ul li a span.tab_title {
    display: block;
    text-align: center;
    color: var(--text-primary);
    font-size: 12px;
    line-height: 14px;
}
.page_fixed_block .nfc_page_tab ul li:hover a .icon_block {
    background: var(--nfc-primary-light);
}
.page_fixed_block .nfc_page_tab ul li:hover a .icon_block svg {
    stroke: var(--text-primary) !important;
}
.page_fixed_block .nfc_page_tab ul li.active_tab a .icon_block {
    background: #FCEDC4;
}
.page_fixed_block .nfc_page_tab ul li.active_tab a .icon_block svg {
    stroke: var(--text-primary) !important;
}
.nfc_main_body {
    padding: 24px 0 120px;
    background: var(--secondary);
    min-height: calc(100vh - 110px);
}
.nfc_main_body form .form_field_row,
.share-profile-form .form_field_row{
    width: 100%;
    margin-bottom: 24px;
}
.nfc_main_body form .form_field_row label,
.share-profile-form .form_field_row label {
    display: block;
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 8px;
    color: var(--text-primary);
}
.nfc_main_body form .form_field_row input,
.share-profile-form .form_field_row input{
    width: 100%;
    background: rgba(0, 0, 0, 0);
    border: 1px solid var(--text-primary);
    border-radius: 5px;
    padding: 16px;
    transition: .3s all;
    outline: none;
    color: var(--text-primary);
    height: 58px;
}
.nfc_main_body form .form_field_row textarea,
.share-profile-form .form_field_row textarea{
    width: 100%;
    background: rgba(0, 0, 0, 0);
    border: 1px solid var(--text-primary);
    border-radius: 5px;
    padding: 16px;
    transition: .3s all;
    outline: none;
    height: 89px;
    resize: none;
    color: var(--text-primary);
}

.nfc_main_body form .form_field_row input:focus,
.nfc_main_body form .form_field_row textarea:focus,
.share-profile-form .form_field_row input:focus,
.share-profile-form .form_field_row textarea:focus {
    border: 1px solid var(--text-primary);
}
.nfc_main_body form .form_field_row select,
.share-profile-form .form_field_row select{
    width: 100%;
    /* background:url(../img/chevron-down.svg) no-repeat 99% 50%, #fff; */
    /* background-image: url(../img/chevron-down.svg); */
    background-repeat: no-repeat;
    background-position: 99% 50%;
    background-color: var(--card-bg-color);
    border: 1px solid var(--text-primary);
    border-radius: 5px;
    padding: 16px;
    transition: .3s all;
    outline: none;
    color: var(--text-primary);
    height: 58px;
    /* -webkit-appearance: none; */
}

.nfc_main_body form .form_field_row select option,
.share-profile-form .form_field_row select option{
    /* color:var(--text-primary); */
    background-color: var(--card-bg-color);
}

.nfc_main_body form .form_field_row select:focus,
.share-profile-form .form_field_row select:focus {
    border: 1px solid var(--text-primary);
}
.nfc_main_body form .form_field_row .skills-fild{
    position: relative;
}
.share-profile-form .form_btn_row .btn{
    width: 100%;
    height: 49px;
    background: #B28100;
    transition: .3s ease-in-out;
    border-radius: 4px;
    border: 1px solid #B28100;
    color: #000;
    font-size: 16px;
    line-height: 19.36px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white);
    padding: 15px;
    outline: none;
    box-shadow: none;
}
.share-profile-form .form_btn_row .btn:hover{
    background: transparent;
    color: var(--text-primary);
}


.nfc_main_body form .form_field_row .skills-fild .add-btn{
    position: absolute;
    right: 16px;
    border: 1px solid var(--border-black-color);
    border-radius: 4px;
    padding: 6px 10px;
    font-size: 13px;
    font-weight: 400;
    line-height: 15.6px;
    top: 50%;
    transform: translate(0,-50%);
    color: var(--nfc-btn-primary);
}
.plusadd-btn{
    border: 1px solid var(--border-black-color);
    border-radius: 4px;
    padding: 6px 10px;
    font-size: 13px;
    font-weight: 400;
    line-height: 15.6px;
    color: var(--nfc-btn-primary);
}
.nfc_main_body form .form_field_row .skills-fild input{
    padding-right: 80px;
}

.chip-list{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 0;
}
.chip-list li{
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 12px;
    font-weight: 400;
    line-height: 14.52px;
    color: #000;
    padding: 8px 12px;
    background: #FAF0BE;
    border-radius: 24px;
}
.chip-list li.active{
    background: #B8860B;
    color: var(--white);
}
.chip-list li .chip-cross{
    background: none;
    border: none;
    outline: none;
    box-shadow: none;
}

.save-cancel-btn-wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.save-cancel-btn-wrap .btn{
    width: calc(50% - 5px);
    padding: 18px 16px;
    border-radius: 5px;
    border: 1px solid;
    outline: none;
    box-shadow: none;
    font-size: 18px;
    font-weight: 700;
    line-height: 21.6px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: all 300ms ease-in-out;
    background: transparent;
    border-color: var(--text-primary);
    color: var(--text-primary);
}
.save-cancel-btn-wrap .btn.save-btn{
    border-color: var(--nfc-btn-primary);
    color: var(--white);
    background: var(--nfc-btn-primary);
}
.save-cancel-btn-wrap .btn:hover{
    opacity: 0.8;
}
.save-cancel-btn-wrap .btn.save-btn:hover{
    opacity: 0.8;
}

.dashboard_banner {
/*    background: var(--nfc-primary);*/
    /* background-image: url(/assets/img/dashboard-banner-img.png); */
    background-color: transparent;
    background-size: cover;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    padding: 100px 0 40px;
}
.dashboard_banner > img{
    width: 100%;
    min-height: 350px;
}
.dashboard_banner .banner_inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0%;
    transform: translate(0px, -16%);
}
.dashboard_banner .banner_inner .avatar_block {
    display: flex;
    gap: 10px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.dashboard_banner .banner_inner .avatar_block .avatar_img {
    width: 100px;
    height: 100px;
    display: block;
    border-radius: 50%;
    border: 2px solid var(--nfc-btn-primary);
    overflow: hidden;
    margin: 0 auto;
}
.dashboard_banner .banner_inner .avatar_block .avatar_img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.dashboard_banner .banner_inner .avatar_block span.avatar_name {
    display: block;
    color: var(--white);
    text-align: center;
    font-size: 16px;
    line-height: 19px;
    font-weight: 600;
    text-transform: capitalize;
}
.dashboard_page .page_heading {
    background: transparent;
    border-bottom: 0;
    padding: 30px 20px;
}
.page_heading.stickyhead{
    background: var(--cprimary);
}
.dashboard_page .page_heading h1 {
    color: var(--white);
}
.dashboard_page .page_heading a.back_btn {
    border: 1px solid var(--white);
}
.dashboard_page .page_heading a.back_btn img {
    filter: invert(1);
}
.dashboard_page .dashboard_banner {
    margin-top: -140px;
    /* padding: 110px 0 50px; */
    padding: 0;
}
.dashboard_page .dashboard_banner .pageh-logo{
    position: absolute;
    top: 53px;
    width: 100%;
    left: 0;
}
.dashboard_page .dashboard_banner .pageh-logo > img{
    max-width: 70px;
    width: 100%;
}
.dashboard_page .dashboard_body .activity_bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    /* gap: 16px; */
    align-items: center;
    flex-direction: column;
}
.dashboard_page .dashboard_body .title_block{
    padding-bottom: 10px;
}
.dashboard_page .dashboard_body .activity_bar .title_block .title {
    display: block;
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    color: var(--text-black-color);
    text-transform: uppercase;
}
.dashboard_page .dashboard_body .activity_bar .act_block {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-end;
    /* width: calc(100% - 130px); */
    width: 100%;
}
.dashboard_page .dashboard_body .activity_bar .act_block .date_block {
    display: flex;
    align-items: center;
    gap: 5px;
}
.dashboard_page .dashboard_body .activity_bar .act_block .date_block input {
    width: 107px;
    border: 1px solid #000;
    border-radius: 3px;
    background: rgba(0, 0, 0, 0);
    font-size: 12px;
    padding: 6px 8px;
    color: #000;
}
.dashboard_page .dashboard_body .activity_bar .act_block select {
    border: 0;
    background: rgba(0, 0, 0, 0);
    color: #000;
    width: calc(100% - 232px);
    -webkit-appearance: menulist;
}
.nfc_card {
    background: var(--card-bg-color);
    border-radius: 7px;
    padding: 20px;
    box-shadow: 0px 4px 13px rgba(0, 0, 0, .04);
    margin-bottom: 10px;
}
.dashboard_main_board .nfc_row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.dashboard_main_board .nfc_row .left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.dashboard_main_board span.date_span {
    color: #B8860B;
    font-size: 12px;
    line-height: 14px;
    display: block;
}
.dashboard_main_board span.no {
    display: block;
    font-size: 32px;
    line-height: 38px;
    color: #B8860B;
}
.dashboard_main_board span.txt {
    font-size: 15px;
    line-height: 18px;
    color: var(--text-gray);
}
.dashboard_main_board .circle_progress_bar {
    position: relative;
}
.dashboard_main_board .circle_progress_bar span.progress_no {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,  -50%);
    font-size: 19px;
    line-height: 22px;
    color: var(--text-black-color);
}
ul.item_list_with_icon {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
ul.item_list_with_icon li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}
ul.item_list_with_icon li:last-child {
    margin-bottom: 0;
    border-bottom: 0;
    padding-bottom: 0;
}
ul.item_list_with_icon li .left {
    display: flex;
    gap: 8px;
    align-items: center;
}
ul.item_list_with_icon li .left .icon_block {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FAF0BE;
}
ul.item_list_with_icon li .left .txt_block span.txt {
    color: var(--text-black-color);
    font-size: 14px;
    line-height: 16px;
    display: block;
}
ul.item_list_with_icon li .left .txt_block .url{
    font-size: 14px;
    line-height: 16px;
    display: block;
    color: var(--text-black-color);
    padding: 0;
    margin: 0;
}
ul.item_list_with_icon li .left .txt_block .url span{
    color: var(--inactive-text-gray);
}
ul.item_list_with_icon li .right .count{
    color: var(--text-black-color);
}

.nfc-desc{
    padding: 0px 0 24px;
}
.nfc-desc p{
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    text-align: center;
    color: var(--text-black-color);
    padding: 0;
    margin: 0;
}

.custom-switch-box input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
    color: var(--white);
    width: 33px;
    height: 18px;
    border-radius: 100px;
    cursor: pointer;
    transition: all 100ms;
    position: relative;
    box-sizing: border-box;
    background-color:var(--light-grey);
    transition: background-color 200ms;
    vertical-align: middle;
}
.custom-switch-box input[type="checkbox"]:checked{
    background-color:var(--nfc-radio-primary);
}
.custom-switch-box input[type="checkbox"]::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 1px;
    bottom: 0px;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background-color: currentColor;
    will-change: transform;
    transition: transform 200ms cubic-bezier(.01,.65,.23,1);
    /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3); */
}

.custom-switch-box input[type="checkbox"]:checked::before {
    transform: translateX(calc(100% - 2px));
}
.custom-switch-box input[type="checkbox"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.live-link-status{
    display: flex;
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
    align-items: flex-start;
    background: #FFF8F8;
}
.live-link-status .text-box{
    width: calc(100% - 22px);
    padding: 0 0 0 10px;
    margin: 0;
}
.live-link-status .text-box p{
    font-size: 14px;
    font-weight: 400;
    line-height: 22.4px;
    color: var(--text-black-color);
    padding: 3px 0 0;
    margin: 0;
}
.live-link-status .text-box p strong{
    font-weight: 600;
}
.live-link-status.active{
    background: var(--contact-card-bg);
}

.site-menu-list{
    padding: 0 0 20px;
    margin: 0 0 20px;
    border-bottom: 1px solid #F2ECE6;
}
.site-menu-list:last-child{
    border-bottom: none;
    margin-bottom: 0;
}

.site-menu-list li{
    padding: 0;
    margin: 0 0 15px;
    list-style: none;
    box-shadow: 0px 4px 16px -15px #0000000F;
    background: var(--card-bg-color);
    border-radius: 7px;
}
.site-menu-list li:last-child {
    margin-bottom: 0;
}
.site-menu-list li a{
    /* background: var(--card-bg-color); */
    padding: 18px;
    display: flex;
    align-items: center;
    /* border-radius: 7px; */
}
.site-menu-list li .menu-icon{
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #FAF0BE;
    padding: 0;
    margin: 0 15px 0 0;
}
.site-menu-list li .menu-ttl{
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-primary);
    padding: 0;
    margin: 0;
}

.rt-an-arrow svg{
    stroke:var(--text-primary)
}


.profile-card{
    box-shadow: 0px 4px 16px 0px #0000000F;
    background: var(--card-bg-color);
    border-radius: 7px;
    overflow: hidden;
    margin-bottom: 15px;
}
.profile-banner{
    position: relative;
    padding: 0;
    margin: 0;
}
.profile-banner:after{
    content: '';
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    width: 100%;
    height: 50%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}
.profile-banner .pr-banner-img{
    width: 100%;
    height: auto;
    min-height: 250px;
    object-fit: cover;
}

.profile-banner .profile-desc{
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    transform: translate(0,-50%);
    padding: 0 30px 0 30px;
    z-index: 2;
}
.profile-banner .profile-desc .proimg-panel{
    display: flex;
    justify-content: space-between;
}
.profile-banner .profile-desc .proimg-panel .profile-tham{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px solid var(--border-black-color);
    overflow: hidden;
    margin-bottom: 20px;
}
.profile-banner .profile-desc .proimg-panel .profile-tham img{
    width: 100%;
    height: 100%;
}
.pro-status{
    padding: 0;
    margin: 0;
    text-align: center;
}
.pro-status ul{
    padding: 0;
    margin: 0 0 15px;
    display: flex;
    align-items: center;
}
.pro-status ul li{
    list-style: none;
    margin: 0 10px 0 0;
}
.pro-status ul li:last-child{
    margin-right: 0;
}
.pro-status ul li a{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FAF0BE;
}

.status-btn{
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 6px;
    display: inline-block;
    font-size: 12px;
    font-weight: 400;
    line-height: 14.52px;
}
.status-btn.active{
    color:#7AE992;
    border: 1px solid #70FF3EB2;
}
.status-btn.disabled{
    color: #FF6A6A;
    border: 1px solid rgba(255, 114, 114, 0.7)
}

.profile-banner .profile-desc .profile-name{
    padding: 0;
    margin: 0;
}
.profile-banner .profile-desc .profile-name ul{
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}
.profile-banner .profile-desc .profile-name ul li{
    list-style: none;
    padding: 0 10px 0 0;
    border-right: 1px solid var(--white);
    margin: 0 10px 0 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 16.94px;
    color: var(--white);
}
.profile-banner .profile-desc .profile-name ul li:last-child{
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
.profile-banner .profile-desc .profile-name ul li strong{
    font-size: 16px;
    font-weight: 600;
}






.profile-check-status input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}
  
.profile-check-status label {
    position: relative;
    cursor: pointer;
    line-height: 0;
    font-size: 0;
}
  
.profile-check-status label:before {
    content:'';
    -webkit-appearance: none;
    background-color: #fff;
    border: 2px solid var(--nfc-btn-primary);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 8px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 0;
    border-radius: 50%;
}
  
.profile-check-status input:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #b8860b;
    margin: auto;
    bottom: 0;
    right: 0;
}

.profile-check-status {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
}

.profile-text-box{
    padding: 0;
    margin: 0;
}
.profile-text-box .info{
    padding: 20px 15px;
    margin: 0;
    border-bottom: 1px solid #F2ECE6;
}
.profile-text-box .info p{
    font-size: 16px;
    font-weight: 400;
    line-height: 19.36px;
    color: var(--text-secondary);
    padding: 0;
    margin: 0 0 10px;
}
.profile-text-box .info p.text_primary{
    color: var(--text-primary);
}
.profile-text-box .info ul{
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.profile-text-box .info ul li{
    list-style: none;
    padding: 8px 12px;
    margin:0;
    border-radius: 24px;
    font-size: 12px;
    font-weight: 400;
    line-height: 14.52px;
    color: #000;
    background: #FAF0BE;
}
.profile-text-box .info ul li:last-child{
    margin-right: 0 ;
}
.profile-text-box .edit-card-panel{
    text-align: center;
    padding: 10px;
}
.profile-text-box .edit-card-panel a{
    font-size: 16px;
    font-weight: 400;
    line-height: 19.36px;
    color: var(--nfc-btn-color);
}

.profile-card.disabled-card{
    opacity: .5;
}

.after-registerted-page .profile-text-box .info{
    padding-top: 50px;
}
.profile-text-box .top-text{
    margin-bottom: 30px;
}
.profile-text-box .top-text h3{
    font-size: 24px;
    font-weight: 600;
    line-height: 28.8px;
    color: var(--text-primary);
    padding: 0;
    margin: 0 0 15px;
}
.profile-text-box .top-text .top-text-list{
    border-left: 2px solid var(--active-switch-bg);
    padding: 0 0 0 15px;
}
.profile-text-box .top-text .top-text-list p{
    font-size: 18px;
    font-weight: 400;
    line-height: 21.78px;
    color: var(--text-primary);
    padding: 0;
    margin: 0 0 10px;
}
.profile-text-box .top-text .top-text-list p:last-child{
    margin-bottom: 0;
}

.my-profile-body{
    padding: 0 24px;
    width: 100%;
    margin-top: -240px;
}

.profile-delete-btn{
    padding: 0;
    margin: 0;
    position: absolute;
    z-index: 2;
    right: 20px;
    top: 20px;
}
.profile-delete-btn a{
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FAF0BE;
}

.site-alert {
    position: fixed;
    bottom: 92px;
    width: 100%;
    max-width: var(--main-wrapper-width);
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 0 24px;
    z-index: 21;
}
.site-alert .site-alert-body{
    background: #000;
    display: flex;
    align-items: center;
    padding: 17px 20px;
    border-radius: 5px;
}
.site-alert .icon{
    margin: 0;
}
.site-alert .text{
    padding: 0 0 0 10px;
}
.site-alert .text p{
    font-size: 14px;
    font-weight: 400;
    line-height: 22.4px;
    color: var(--white);
    padding: 0;
    margin: 0;
}

.get-your-card-btn a{
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
    line-height: 21.6px;
    letter-spacing: 0.03em;
    color: var(--white);
    border: 1px solid var(--white);
    /* display: inline-block; */
    display: flex;
    align-items: center;
    gap: 6px;
}

.after-registerted-page .profile-banner .profile-desc{
    position: absolute;
    top: inherit;
    width: auto;
    left: 0;
    transform: inherit;
    padding: 0 10px 0 30px;
    z-index: 2;
    bottom: -27px;
}
.after-registerted-page .profile-banner .profile-desc .proimg-panel .profile-tham{
    width: 140px;
    height: 140px;
    margin: 0;
}
.profile-text-box .info .profile-about{
    max-width: calc(100% - 220px);
}
.profile-text-box .info .profile-about h4{
    font-size: 16px;
    font-weight: 500;
    line-height: 19.2px;
    padding: 0;
    margin: 0 0 15px;
    text-transform: uppercase;
}
.profile-text-box .info .profile-about p{
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--text-davy-grey-color);
    padding: 0;
    margin: 0;
}
.profile-text-box .info .download-contact-btn a{
    padding: 12px 16px 12px 16px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
    line-height: 14.4px;
    color: var(--white);
    background: var(--active-switch-bg);
    display: inline-block;
    text-transform: uppercase;
}   

.prinfo-card{
    box-shadow: 0px 4px 16px 0px #00000014;
    padding:22px 24px;
    border-radius: 7px;
    background: var(--card-bg-color);
    margin-bottom: 15px;
}
.prinfo-card h3{
    font-size: 14px;
    font-weight: 500;
    line-height: 16.8px;
    color: var(--text-primary);
    text-transform: uppercase;
    padding: 0;
    margin: 0 0 15px;
}
.prinfo-card ul{
    padding: 0;
    margin: 0;
}
.prinfo-card ul li{
    list-style: none;
}
.edu-list li{
    display: flex;
    align-items: center;
    padding: 10px 0;
    margin: 0;
}
.edu-list li .icon{
    height: 32px;
    width: 32px;
    border-radius: 50%;
    background: var(--menu-list-icon-bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
}
.edu-list li .ttl{
    font-size: 16px;
    font-weight: 400;
    line-height: 19.2px;
    color: var(--text-davy-grey-color);
    padding: 0 0 0 10px;
    margin: 0 0 0;
}

.social-list{
    display: flex;
    align-items: center;
}
.social-list li{
    padding: 0;
    margin: 0 10px 0 0;
}
.social-list li:last-child{
    margin-right: 0;
}
.social-list li a{
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--menu-list-icon-bg-color);
    color: var(--active-switch-bg);
    font-size: 20px;
}

.custom-link-list li{
    display: flex;
    align-items: center;
    padding: 10px 0;
    margin: 0;
    border-top: 1px solid var(--border-color);
}

.custom-link-list li .icon{
    height: 32px;
    width: 32px;
    border-radius: 50%;
    background: #FAF0BE;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-link-list li .ttl{
    font-size: 14px;
    font-weight: 400;
    line-height: 19.2px;
    color: var(--text-primary);
    padding: 0 0 0 10px;
    margin: 0 0 0;
    word-break: break-all;
    width: calc(100% - 32px);
}

.prvideo-box{
    border-radius: 7px;
    overflow: hidden;
    height: 375px;
}

.prvideo-box iframe{
	width: 100%;
    height: 100%;
    
}

.prvideo-box img{
    width: 100%;
}

.prcontact-info-box{
    border: 1px solid #DAD3CC;
    padding: 16px;
    display: flex;
    border-radius: 5px;
    align-items: center;
    margin: 0 0 15px;
}
.prcontact-info-box .icon{
    height: 32px;
    width: 32px;
    border-radius: 50%;
    background: var(--menu-list-icon-bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
}
.prcontact-info-box .text{
    padding: 0 0 0 15px;
    margin: 0;
}
.prcontact-info-box .text span{
    font-size: 16px;
    font-weight: 400;
    line-height: 19.2px;
    color: var(--text-black-color);
    padding: 0;
    margin: 0;
    display: block;
}
.prcontact-info-box .text p{
    font-size: 14px;
    font-weight: 400;
    line-height: 16.8px;
    color: var(--text-davy-grey-color);
    padding: 0;
    margin: 0;
}

.profile-info-status{
    padding: 0 15px;
    margin: 0;
}
.profile-info-status ul{
    padding: 0;
    margin: 0;
}

.profile-info-status ul li{
    list-style: none;
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--list-border-bottom);
}

.profile-info-status ul li:last-child{
    border-bottom: none;
}

.profile-info-status ul li .icon{
    height: 32px;
    width: 32px;
    border-radius: 50%;
    background: #FAF0BE;
    display: flex;
    align-items: center;
    justify-content: center;
}
.profile-info-status ul li .ttl{
    font-size: 14px;
    font-weight: 400;
    line-height: 16.8px;
    color: var(--text-primary);
    padding: 0 0 0 10px;
    margin: 0;
}

.direct-box-wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    margin: 0;
}

.direct-box-wrap .icon-desc{
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin: 0;
}

.direct-box-wrap .icon-desc .icon{
    height: 32px;
    width: 32px;
    border-radius: 50%;
    background: #FAF0BE;
    display: flex;
    align-items: center;
    justify-content: center;
}

.direct-box-wrap .icon-desc .text{
    padding: 0;
    margin: 0 15px;
    width: calc(100% - 63px);
}

.direct-box-wrap .icon-desc .text h3{
    font-size: 14px;
    font-weight: 400;
    line-height:1.2;
    color: var(--text-primary);
    padding: 0;
    margin:0;
}

.direct-box-wrap .icon-desc .text p{
    font-size: 12px;
    font-weight: 400;
    line-height: 16.56px;
    color: var(--text-light);
    padding: 0;
    margin: 0;
}

.profile-content-wrap h3{
    font-size: 14px;
    font-weight: 500;
    line-height: 16.8px;
    color: var(--text-primary);
    padding: 0;
    margin: 0 0 15px;
}

.profile-content-panel{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}
.profile-content-panel:last-child{
    border: none;
}
.profile-content-panel .drag{
    padding: 0;
    margin: 0 10px 0 0;
    cursor: move;
}
.profile-content-panel .drag svg{
    stroke: var(--text-black-color);
}
.profile-content-panel .lt-side{
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}
.profile-content-panel .edit-box span{
    font-size: 13px;
    color: var(--nfc-btn-primary);
    cursor: pointer;
}
.profile-content-panel .edit-box span .fa-trash{
    color: red;
}
.profile-content-panel .edit-box svg{
    stroke: var(--text-black-color);
    fill: var(--text-black-color);
}
.edit-contact-btn-panle{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px;
}
.edit-contact-btn-panle .btn{
    width: calc(50% - 5px);
    padding: 14px 16px;
    border-radius: 5px;
    border: 1px solid;
    outline: none;
    box-shadow: none;
    font-size: 16px;
    font-weight: 700;
    line-height: 21.6px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: all 300ms ease-in-out;
}
.edit-contact-panle .share-profile-form .form_field_row{
    margin-bottom: 15px;
}
.edit-contact-btn-panle .btn.svae-bnt{
    background: var(--nfc-btn-primary);
    border: 1px solid var(--nfc-btn-primary);
    color: #fff;
}

.profile-content-panel .lt-side .icon{
    height: 32px;
    width: 32px;
    border-radius: 50%;
    background: #FAF0BE;
    display: flex;
    align-items: center;
    justify-content: center;
}
.profile-content-panel .lt-side .icon i{
    font-size: 14px;
    color: var(--theme-text-color);
}
.profile-content-panel .lt-side .avtar-tham{
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
}
.profile-content-panel .lt-side .avtar-tham img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.profile-content-panel .lt-side .text{
    padding: 0 0 0 10px;
}
.profile-content-panel .lt-side .text h4{
    font-size: 14px;
    font-weight: 400;
    line-height: 16.8px;
    color: var(--text-primary);
    padding: 0;
    margin:0;
}
.profile-content-panel .lt-side .text p{
    font-size: 12px;
    font-weight: 400;
    line-height: 14.4px;
    padding: 0;
    margin:3px 0 0;
    color: var(--text-light);
}
.profile-content-panel .lt-side .text a{
    font-size: 12px;
    font-weight: 400;
    line-height: 14.4px;
    padding: 0;
    margin:3px 0 0;
    color: var(--text-light) !important;
}
.list-ttl{
    font-size: 14px;
    font-weight: 500;
    line-height: 16.8px;
    text-align: left;
    color: var(--text-primary);
    padding: 0;
    margin: 0 0 10px;
}

.switch-list-wrap .switch-list-panel{
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--list-border-bottom);
}
.switch-list-wrap .switch-list-panel:last-child{
    border-bottom: none;
}
.switch-list-wrap .switch-list-panel .text h4{
    font-size: 14px;
    font-weight: 400;
    line-height: 16.8px;
    color: var(--text-primary);
    padding: 0;
    margin: 0 0 6px;
}
.switch-list-wrap .switch-list-panel .text p{
    font-size: 12px;
    font-weight: 400;
    line-height: 14.4px;
    color: var(--text-light);

}

.site-botto-btn_block{
    padding: 24px;
}
.site-botto-btn_block a{
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--nfc-btn-primary);
    transition: .3s all;
    border-radius: 5px;
    border: 1px solid var(--nfc-btn-primary);
    font-size: 18px;
    line-height: 21px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
}
.site-botto-btn_block a:hover{
    opacity: 0.8;
}

.upload-btn-box{
    position: absolute;
    top: 20px;
    right: 20px;
}

.upload-btn-box input{
    display: none;
}

.upload-btn-box .upload-modal-open-btn{
    display: flex;
    align-items: center;
    padding:8px 10px 8px 10px;
    border-radius: 3px;
    background: #fff;
    margin: 0;
    cursor: pointer;
    border: none;
    outline: none;
    box-shadow: none;
    color: var(--text-black-color);
}
.upload-btn-box .upload-modal-open-btn svg{
    stroke:var(--text-black-color)
}
.upload-btn-box .upload-modal-open-btn span{
    font-size: 14px;
    font-weight: 600;
    line-height:1.2;
    display: inline-block;
    padding: 0;
    margin: 0 0 0 6px;
}

.profile-content-wrap.type-list .profile-content-panel{
    border-bottom: none;
    margin-bottom: 15px;
    box-shadow: 0px 4px 16px -15px #00000014;
    padding: 15px;
    border-radius: 7px;
    background: var(--card-bg-color);
}
.profile-content-wrap.type-list .profile-content-panel:last-child{
    margin-bottom: 0;
    
}

.profile-bottom-btn{
    padding: 30px 0 20px;
    border-top: 1px solid var(--list-border-bottom);
    margin-top: 30px;
}
.profile-bottom-btn .profile-bottom-box a{
    border: 1px solid var(--inactive-switch-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    padding: 16px;
}
.profile-bottom-btn .profile-bottom-box a strong{
    font-size: 14px;
    font-weight: 700;
    line-height: 16.8px;
    color: var(--text-black-color);
    display: inline-block;
    padding: 0;
    margin: 0 0 0 6px;
}

.word-count-ttl{
    font-size: 12px;
    font-weight: 400;
    line-height:1.2;
    color: #BABABA;
    padding: 0;
    margin: 0;
}

.view-card-modal .modal-dialog{
    max-width:515px;
}
.view-card-modal .modal-dialog .modal-body{
    padding: 36px;
}
.view-card-modal .view-card-modal-wrap{
    display: flex;
    padding: 0;
    margin: 0;
}

.view-card-modal .view-card-modal-wrap .text{
    padding: 0 0 0 20px;
    margin: 0;
}
.view-card-modal .view-card-modal-wrap .text p{
    font-size: 18px;
    font-weight: 400;
    line-height: 28.8px;
    color: #000;
    margin: 0 0 30px;
    padding:0;
}
.view-card-modal .view-card-modal-wrap .text p strong{
    font-weight: 500;
}
.view-card-modal .view-card-modal-wrap .text .text-btn-wrap{
    padding: 0;
    margin: 0;
}
.view-card-modal .view-card-modal-wrap .text .text-btn-wrap .btn{
    border: none;
    outline: none;
    background: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 19.36px;
    margin: 0 60px 0 0;
    text-transform: uppercase;
}
.view-card-modal .view-card-modal-wrap .text .text-btn-wrap .btn:last-child{
    margin-right: 0;
}
.view-card-modal .view-card-modal-wrap .text .text-btn-wrap .btn.btn-dis{
    color: #A5A5A5;
}
.view-card-modal .view-card-modal-wrap .text .text-btn-wrap .btn.btn-set{
    color: var(--active-switch-bg);
}

.edit-card-details-page .profile-content-wrap{
    padding: 15px;
}

.add-new-panel{
    border-top: 1px solid #F2ECE6;
    padding: 15px 0;
    text-align: center;
}

.add-new-panel a{
    font-size: 16px;
    font-weight: 400;
    line-height: 19.36px;
    color: var(--nfc-btn-color);
    display: inline-block;
    transition: all 300ms ease-in-out;
}

.add-new-panel a:hover{
    color: var(--text-primary);
}

.add-new-panel a span{
    color: var(--text-primary);
}

.enabled-alert {
    width: 100%;
    max-width: var(--main-wrapper-width);
    position: fixed;
    bottom: 100px;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 0 24px;
    z-index: 21;
}
.enabled-alert .alert-body {
    box-shadow: 1px 3px 34px 0px #2C2C2C38;
    background: #fff;
    border-radius: 5px;
    padding: 18px;
    position: relative;
    display: flex;
}
.enabled-alert .alert-body .text{
    padding: 0 0 0 15px;
    margin: 0;
}
.enabled-alert .alert-body .text h4{
    font-size: 18px;
    font-weight: 500;
    line-height: 28.8px;
    color: var(--active-switch-bg);
    text-transform: capitalize;
    padding: 0;
    margin: 0 0 0px;
}
.enabled-alert .alert-body .text p{
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: var(--text-black-color);
    padding: 0;
    margin: 0;
}
.enabled-alert .alert-body .text p strong{
    font-weight: 600;
}
.enabled-alert .alert-body .text .close-btn{
    background: none;
    position: absolute;
    right: 18px;
    top: 18px;
    padding: 0;
    margin: 0;
    border: none;
    box-shadow: none;
    outline: none;
    line-height: 0;
}
.enabled-alert.success .alert-body .text h4{
    color: var(--success-color);
}


.open-bottom-modal.modal.fade .modal-dialog {
    transition: transform .3s ease-out;
    transform: translate(0,50px);
    min-height: inherit;
}
.open-bottom-modal .modal-dialog {
    position: fixed !important;
    bottom: 0 !important;
    left: 0% !important;
    right: 0% !important;
    margin-bottom: 0 !important;
    max-width: var(--main-wrapper-width);
} 

.open-bottom-modal.modal.show .modal-dialog {
    transform: none;
}

.open-bottom-modal .modal-content {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  
}

.open-bottom-modal .modal-content {
    padding: 30px;
    border-radius: 10px 10px 0 0;
    background: var(--card-bg-color);
}
.open-bottom-modal .modal-content .modal-header{
    padding: 0 0 15px;
    margin: 0;
    border-bottom: 1px solid var(--inactive-switch-bg);
}

.open-bottom-modal .modal-content .modal-header h5{
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    color: var(--text-primary);
    text-transform: uppercase;
    padding: 0;
    margin: 0;
}
.open-bottom-modal .modal-content .modal-header .btn-close {
    border: 1px solid var(--text-primary);
    border-radius: 50%;
    height: 28px;
    width: 28px;
    padding: 0;
    font-size: 10px;
    opacity: 1;
    outline: none;
    box-shadow: none;
    background-color: #FFFFFF;
}
.open-bottom-modal .modal-content .modal-body{
    padding: 0;
    margin: 0;
    overflow-y: auto;
    max-height: 629px;
}

.open-bottom-modal .modal-content .modal-body::-webkit-scrollbar { 
    width: 0 !important 
}
.open-bottom-modal .modal-content .modal-body{ 
    overflow: -moz-scrollbars-none; -ms-overflow-style: none;
}

.images-upload-wrap{
    padding: 30px 0 0;
    margin: 0;
}

.images-upload-wrap .images-upload-panel{
    padding: 0;
    margin: 0 0 20px;
}
.images-upload-wrap .images-upload-panel:last-child{
    margin-bottom: 0;
}

.images-upload-wrap .images-upload-panel p{
    font-size: 16px;
    font-weight: 500;
    line-height: 19.2px;
    color: var(--text-primary);
    text-align: left;
    padding: 0;
    margin: 0 0 10px;
}

.images-upload-wrap .images-upload-panel .images-upload-field-btn input{
    display: none;
}
.images-upload-wrap .images-upload-panel .images-upload-field-btn label{
    background: var(--nfc-btn-primary);
    padding: 15px 10px;
    border-radius: 4px;
    border: 1px solid var(--nfc-btn-primary);
    font-size: 16px;
    font-weight: 600;
    line-height: 19.36px;
    color: #FFFFFF;
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 300ms ease-in-out;
}
.images-upload-wrap .images-upload-panel .images-upload-field-btn label span{
    display: inline-block;
    padding: 0;
    margin: 0 0 0 6px;
}

.label-with-icon{
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0 0 10px;
}

.label-with-icon .icon{
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #FAF0BE;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.label-with-icon label{
    margin: 0 0 0 8px !important;
    padding: 0;
}

.remove-btn-panel{
    padding: 0;
    margin: 0;
}

.remove-btn-panel .remove-btn{
    box-shadow: 0px 2px 10px 0px #0000001C;
    padding: 12px;
    border-radius: 4px;
    background: var(--bg-white-color);
    color: var(--text-black-color);
    width: 100%;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 19.36px;
    border: none;
    outline: none;
    transition: all 300ms ease-in-out;
}
/* .remove-btn-panel .remove-btn:hover{
    background: var(--active-switch-bg);
    color: var(--white);
} */
.remove-btn-panel .test-btn{
    box-shadow: 0px 2px 10px 0px #0000001C;
    padding: 12px;
    border-radius: 4px;
    background: var(--nfc-btn-primary);
    color: var(--white);
    width: 100%;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 19.36px;
    border: none;
    outline: none;
    transition: all 300ms ease-in-out;
}

.remove-btn-panel .test-btn:disabled{
    background: var(--disabled-color);
    color: var(--disabled-text-color);
    cursor: not-allowed;
    box-shadow: none;
}

.custom-hr{
    background-color: #F2ECE6;
    margin: 20px 0;
    opacity: 1;
}
.add-title-btn-panel{
    padding: 0 0;
    margin: 0;
}
.add-title-btn-panel .add-ttl-btn{
    background: var(--add-ttl-button);
    padding: 18px 10px;
    text-align: center;
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    line-height: 19.36px;
    color: var(--text-black-color);
    border: 1px solid var(--add-ttl-button);
    outline: none;
    box-shadow: none;
    border-radius: 4px;
    transition: all 300ms ease-in-out;
}
.add-title-btn-panel .add-ttl-btn:hover{
    background: transparent;
}

.switches-container {
    position: relative;
    display: flex;
    padding: 0;
    position: relative;
    background: var(--switches-bg-color);
    line-height: 3rem;
    border-radius: 3rem;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid var(--switches-border-color);
    border-radius: 30px;
}

/* input (radio) for toggling. hidden - use labels for clicking on */
.switches-container input {
    visibility: hidden;
    position: absolute;
    top: 0;
}

/* labels for the input (radio) boxes - something to click on */
.switches-container label {
    width: 50%;
    padding: 0;
    margin: 0;
    text-align: center;
    cursor: pointer;
    color: var(--switches-label-color);
}

/* switch highlighters wrapper (sliding left / right) 
    - need wrapper to enable the even margins around the highlight box
*/
.switch-wrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    padding: 0.15rem;
    z-index: 3;
    transition: transform .5s cubic-bezier(.77, 0, .175, 1);
    /* transition: transform 1s; */
}

/* switch box highlighter */
.switch {
    border-radius: 3rem;
    background: #B8860B;
    height: 100%;
}

/* switch box labels
    - default setup
    - toggle afterwards based on radio:checked status 
*/
.switch div {
    width: 100%;
    text-align: center;
    opacity: 0;
    display: block;
    color: #fff ;
    transition: opacity .2s cubic-bezier(.77, 0, .175, 1) .125s;
    will-change: opacity;
    position: absolute;
    top: 0;
    left: 0;
}

/* slide the switch box from right to left */
.switches-container input:nth-of-type(1):checked~.switch-wrapper {
    transform: translateX(0%);
}

/* slide the switch box from left to right */
.switches-container input:nth-of-type(2):checked~.switch-wrapper {
    transform: translateX(100%);
}

/* toggle the switch box labels - first checkbox:checked - show first switch div */
.switches-container input:nth-of-type(1):checked~.switch-wrapper .switch div:nth-of-type(1) {
    opacity: 1;
}

/* toggle the switch box labels - second checkbox:checked - show second switch div */
.switches-container input:nth-of-type(2):checked~.switch-wrapper .switch div:nth-of-type(2) {
    opacity: 1;
}

.pro-download-contact {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 2;
}
.pro-download-contact button{
    font-size: 14px;
    font-weight: 600;
    line-height: 16.94px;
    background: var(--bg-white-color);
    padding: 8px 15px;
    border-radius: 4px;
    outline: none;
    box-shadow: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.delete-modal .modal-dialog{
    max-width: 463px;
}
.delete-modal .modal-body{
    padding: 30px;
}
.delete-modal .delete-modal-body .icon{
    text-align: center;
    padding: 0;
    margin: 0 0 15px;
}
.delete-modal .delete-modal-body .icon img{
    width: 40px;
    margin: 0 auto;
}
.delete-modal .delete-modal-body .text{
    padding: 0;
    margin: 0;
}

.delete-modal .delete-modal-body .text p{
    font-size: 26px;
    font-weight: 400;
    line-height: 41.6px;
    padding: 0;
    margin: 0;
    text-align: center;
}
.delete-modal .delete-modal-body .text .text-btn-wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:20px 0 0;
    margin: 0;
}
.delete-modal .delete-modal-body .text .text-btn-wrap .btn{
    width: calc(50% - 5px);
    font-size: 18px;
    font-weight: 700;
    line-height: 21.6px;
    letter-spacing: 0.03em;
    text-align: center;
    text-transform: uppercase;
    border: 1px solid #000;
    color: #000;
    box-shadow: none;
    outline: none;
    padding: 15px;
}
.delete-modal .delete-modal-body .text .text-btn-wrap .btn.btn-yes{
    background: #B8860B;
    color: var(--white);
    border-color: #B8860B;
}

.current-email-desc{
    padding: 0 0 20px;
    margin: 0 0 20px;
    border-bottom: 1px solid var(--list-border-bottom);
}

.current-email-desc h4{
    font-size: 16px;
    font-weight: 400;
    line-height: 19.2px;
    color: var(--text-primary);
    padding: 0;
    margin: 0 0 10px;
}

.current-email-desc p{
    font-size: 16px;
    font-weight: 400;
    line-height: 19.2px;
    color: var(--text-light);
    padding: 0;
    margin: 0;
}

.about-desc{
    padding: 0;
    margin: 0;
    text-align: justify;
}

.about-desc p{
    font-size: 16px;
    font-weight: 400;
    line-height: 25.6px;
    padding: 0;
    margin: 0 0 15px;
    color: #000;
}

.about-desc p strong{
    font-weight: 600;
}

.share-profile-wrap {
    display: flex;
    justify-content: space-between;
    margin: 0;
    padding: 30px 0 0;
}

.share-profile-wrap .share-profile-box {
    width: calc(50% - 10px);
    text-align: center;
    height: 187px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFDF0;
    border:1px solid #000000F1;
    border-radius: 10px;
}
/* .share-profile-wrap .share-profile-box:last-child{
    cursor: pointer;
} */

.share-profile-wrap .share-profile-box .img-tll-box .ttl{
    padding: 0;
    margin: 0;
}

.share-profile-wrap .share-profile-box .img-tll-box .ttl p{
    font-size: 12px;
    font-weight: 700;
    line-height: 14.4px;
    color: #000;
    text-transform: uppercase;
    padding: 0;
    margin:10px 0 0;
}

.share-profile-mail-wrap .share-profile-desc{
    padding: 30px 0;
    margin: 0;
}

.share-profile-mail-wrap .share-profile-desc p{
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--text-primary);
    padding: 0;
    margin: 0;
}

.modalqr-wrap .modalqr-box {
    box-shadow: 2px 4px 24px 0px #0000001A;
    padding: 15px;
    border-radius: 10px;
}

.modalqr-wrap{
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
}
.modalqr-wrap .modalqr-box{
    box-shadow: 2px 4px 24px 0px #0000001A;
    padding: 20px;
    border-radius: 10px;
}

.modalqr-btn-wrap{
    display: flex;
    justify-content: space-between;
    padding: 30px 0 0;
}

.modalqr-btn-wrap .btn{
    box-shadow: 0px 2px 10px 0px #0000001C;
    border-radius: 4px;
    background: #fff;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    line-height: 19.36px;
    color: #000;
    width: calc(50% - 5px);
    transition: all 300ms ease-in-out;
}

.modalqr-btn-wrap .btn:hover{
    background: #000000;
    color: var(--white);
}

.modalqr-btn-wrap .btn.share-btn{
    background: #000000;
    color: var(--white);
}
.modalqr-btn-wrap .btn.share-btn:hover{
    background: #fff;
    color: #000;
}

.contact-day-ttl{
    padding: 0;
    margin: 0 0 10px;
}
.contact-day-ttl strong{
    font-size: 14px;
    font-weight: 500;
    line-height: 16.8px;
    color: var(--text-black-color);
    padding: 0;
    margin: 0;
    text-transform: uppercase;
}

.contact-card{
    background: #fcf6d9;
    padding: 15px;
    border-radius: 4px;
    margin: 0 0 20px;
}
.contact-card:last-child{
    margin-bottom: 0;
}

.contact-card .top-panel{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    margin: 0 0 20px;
}

.contact-card .top-panel .lt-side h5{
    font-size: 14px;
    font-weight: 600;
    line-height: 16.8px;
    padding: 0 60px 0 0;
    color: var(--text-black-color);
    margin: 0 0 10px;
    position: relative;
    display: inline-block;
}
.contact-card .top-panel .lt-side h5 span.new-chip {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    background: #5FA76E;
    padding: 6px 11px 5px;
    text-transform: uppercase;
    color: #fff;
    border-radius: 27px;
    display: inline-block;
    position: absolute;
    right: 0;
    top: -4px;
}

.contact-card .top-panel .lt-side ul{
    display: flex;
    align-items: center;
    padding: 0;
    margin:0;
}

.contact-card .top-panel .lt-side ul li{
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-card .top-panel .lt-side ul li{
    color: #9D9791;
    font-size: 12px;
    font-weight: 400;
    line-height: 14.4px;
    padding: 0 10px 0 0;
    margin: 0 10px 0 0;
    border-right: 1px solid #CECECE;
}

.contact-card .top-panel .lt-side ul li:last-child{
    border-right: none;
    padding-right: 0;
    margin-right: 0;
}

.contact-card .top-panel .rt-side .btn{
    border: none;
    padding: 0;
    margin: 0;
    border: none;
    box-shadow: none;
    outline: none;
}
.contact-card .desc{
    border-radius: 4px;
    padding: 12px 13px 12px 13px;
    margin: 0;
    background: var(--card-bg-color);
}
.contact-card .desc p{
    font-size: 14px;
    font-weight: 400;
    line-height: 19.6px;
    color: var(--text-black-color);
    padding: 0;
    margin: 0;
}

.pro-share-icon-wrap {
    position: absolute;
    z-index: 5;
    top: 30px;
    right: 30px;
}

.pro-share-icon-wrap ul{
    display: flex;
    padding: 0;
    margin: 0;
}

.pro-share-icon-wrap ul li{
    list-style: none;
    padding: 0;
    margin: 0 10px 0 0;
}

.pro-share-icon-wrap ul li:last-child{
    margin-right: 0;
}

.pro-share-icon-wrap ul li a{
    height: 32px;
    width: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #FAF0BE;
    background: #FAF0BE;
}

.spinner-2 {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: hsl(0deg 0% 0% / 70%);
    z-index: 9991;
}
.spinner-2 span {
    width: 50px;
    display: block;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 8px solid lightblue;
    border-right-color: orange;
    animation: s2 1s infinite linear;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -30px 0 0 -30px;
}
@keyframes s2 {
    to {
      transform: rotate(1turn)
    }
}

.style-settings-wrap{
    padding: 30px 0;
}

.style-settings-wrap .style-settings-panel{
    border-bottom: 1px solid var(--list-border-bottom);
    padding: 0 0 30px 0;
    margin:  0 0 30px;
}

.style-settings-wrap .style-settings-panel:last-child{
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}
.style-settings-wrap .style-settings-panel .ttl-panel{
    padding: 0;
    margin: 0 0 15px;
    display: flex;
    justify-content: space-between;
}

.style-settings-wrap .style-settings-panel .ttl-panel .ttl{
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}
.style-settings-wrap .style-settings-panel .ttl-panel .ttl p{
    font-size: 16px;
    font-weight: 500;
    line-height: 19.2px;
    color: var(--text-primary);
    padding: 0;
    margin: 0;
}
.style-settings-wrap .style-settings-panel .ttl-panel .ttl span.color-chip{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px 12px 6px 8px;
    border-radius: 27px;
    font-size: 12px;
    font-weight: 500;
    line-height: 14.4px;
    margin: 0 0 0 10px;
}

.style-settings-wrap .style-settings-panel .ttl-panel .ttl span.color-chip .color-dot{
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    margin: 0 5px;
}
.style-settings-wrap .style-settings-panel .ttl-panel .more-color{
    padding: 0;
    margin: 0;
}

.style-settings-wrap .style-settings-panel .ttl-panel .more-color a{
    font-size: 14px;
    font-weight: 500;
    line-height: 16.8px;
    color: var(--text-black-color);
    display: inline-block;
    padding: 0;
    margin: 0;
}

.color-settings .colo-boxs{
    padding: 0;
    margin: 0;
}
.color-settings .colo-boxs ul{
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    gap: 14px;
    cursor: pointer;
}
.color-settings .colo-boxs ul li{
    list-style: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-block;
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.theme-setting-panel{
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 0;
    margin: 0;
}
.theme-setting-panel .theme-setting-box{
    width: calc(33.333333% - 10px);
    border:1px solid var(--border-black-color);
    padding: 12px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
/* .theme-setting-panel .theme-setting-box p{
    font-size: 16px;
    font-weight: 500;
    line-height: 19.2px;
    padding: 0;
    margin: 0 0 0 6px;
}
.theme-setting-panel .theme-setting-box span{
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid var(--border-black-color);
    display: inline-block;
    position: relative;
}
.theme-setting-panel .theme-setting-box span:after{
    content: '';
    display: block;
    position: absolute;
    top: 2px;
    left: 4px;
    width: 4px;
    height: 7px;
    border: solid var(--heading-color);
    border-width: 0 0px 0px 0;
    transform: rotate(38deg);
} */
.theme-setting-panel .theme-setting-box.dim{
    background: #393939;
    border-color: #393939;
}
.theme-setting-panel .theme-setting-box.dim p,
.theme-setting-panel .theme-setting-box.dim span{
    color: #fff;
}
/* .theme-setting-panel .theme-setting-box.dim span{
    border-color: #fff;
} */
/* .theme-setting-panel .theme-setting-box.dim span::after{
    border-color: #fff;
} */

.theme-setting-panel .theme-setting-box.dark{
    background: #000;
    border-color: #000;
}
.theme-setting-panel .theme-setting-box.dark p,
.theme-setting-panel .theme-setting-box.dark label span{
    color: #fff;
}
    /* .theme-setting-panel .theme-setting-box.dark label{
        border-color: #fff;
    } */
/* .theme-setting-panel .theme-setting-box.dark span::after{
    border-color: #fff;
}
.theme-setting-panel .theme-setting-box.active span:after{
    border-width: 0 1px 1px 0;
} */



.theme-setting-panel .theme-setting-box label{
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
}

.theme-setting-box [type="radio"]:checked,
.theme-setting-box [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
.theme-setting-box [type="radio"]:checked + label,
.theme-setting-box [type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 0px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: var(--text-black-color);
}
/* .theme-setting-box [type="radio"]:checked + label:before,
.theme-setting-box [type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}
.theme-setting-box [type="radio"]:checked + label:after,
.theme-setting-box [type="radio"]:not(:checked) + label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #F87DA9;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.theme-setting-box [type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
.theme-setting-box [type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
} */

.icon-settings-panel ul{
    display: flex;
    align-items: center;
    justify-content: center;
    /* gap: 10px; */
    padding: 0;
    margin: 0;
}

.icon-settings-panel ul li{
    /* width: 32px;
    height:32px; */ 
    /* border-radius: 50%; */
    /* display: flex;
    align-items: center;
    justify-content: center; */
    /* color: var(--white);
    font-size: 20px;
    outline: 1px solid;
    outline-color: transparent; */
    /* outline-offset: -2px; */
    list-style: none;
    position: relative;
    /* padding: 2px; */
    padding: 0 6px;
}
.icon-settings-panel ul li a{
    /* height: 30px;
    width: 30px;
    border-radius: 50%; */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2px;
    /* position: relative;
    top: 0; */
}
.icon-settings-panel ul li:nth-child(4),
.icon-settings-panel ul li:nth-child(6){
    border-right: 2px solid #777676;
    /* content: '';
    width: 2px;
    height: 100%;
    background: #777676;
    position: absolute;
    top: 0;
    right: -8px;
    padding: 0;
    margin: 0; */
}
/* .icon-settings-panel ul li:nth-child(4):after{
    right: -10px;
} */


.icon-settings-panel ul li img{
    width: 32px;
    height: 32px;
    object-fit: cover;
    object-position: center;
}
.icon-settings-panel ul li:last-child{
    border-radius: 4px;
}
/* .icon-settings-panel ul li:nth-child(5){
    font-size: 16px;
} */
.contact-details-body{
    padding: 0;
    margin: -225px 0 0;
    position: relative;
    z-index: 1;
}
.contact-details-box{
    text-align: center;
    padding: 20px;
    margin: 0 0 20px;
    box-shadow: 0px 4px 16px 0px #00000014;
    background: var(--card-bg-color);
    border-radius: 7px;
    position: relative;
}

.contact-details-box .contact-detals-option-wrap {
    position: absolute;
    top: 15px;
    right: 10px;
}
.contact-details-box .contact-detals-option-wrap .btn {
    padding: 0;
    margin: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: none;
    outline: none;
    background: #faf0be;
    font-size: 14px;
}
.contact-details-box .contact-detals-option-wrap .inner-wrap{
    position: relative;
    padding: 0;
    margin: 0;
}
.contact-details-box .contact-detals-option-wrap .inner-wrap .list-wrap {
    border: 1px solid #e9e9e9;
    padding: 0px 0;
    box-shadow: 0px 4px 16px 0px #00000014;
    border-radius: 3px;
    background: var(--card-bg-color);
    position: absolute;
    width: 120px;
    right: 0;
    top: 28px;
}
.contact-details-box .contact-detals-option-wrap .inner-wrap .list-wrap ul{
    display: block;
    padding: 0;
    margin: 0;
}
.contact-details-box .contact-detals-option-wrap .inner-wrap .list-wrap ul li{
    display: block;
    padding: 0;
    margin: 0;
    border-right: none;
    border-bottom: 1px solid #dedede;
}
.contact-details-box .contact-detals-option-wrap .inner-wrap .list-wrap ul li:last-child{
    border-bottom: none;
}
.contact-details-box .contact-detals-option-wrap .inner-wrap .list-wrap ul li a{
    display: flex;
    align-items: center;
    gap:10px;
    padding: 6px 10px;
    margin: 0;
    color: #a4a4a4;
}
.contact-details-box .contact-detals-option-wrap .inner-wrap .list-wrap ul li a:hover{
    color: var(--nfc-btn-primary);
}


.contact-details-box .user-icon{
    width: 57px;
    height: 57px;
    border-radius: 50%;
    background: #65A888;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #000;
    margin: 0 auto 20px;
    position: relative;
}
.contact-details-box .user-icon{

}

.contact-details-box .user-icon img {
    width: 57px;
    height: 57px;
    border-radius: 50%;
}

.contact-details-box .user-icon span{
    font-size: 24px;
    font-weight: 600;
    line-height: 28.8px;
    color: #fff;
    padding: 0;
    margin: 0;
}
.contact-details-box .user-icon span.edit-user-btn {
    position: absolute;
    font-size: 10px !important;
    color: #b8860b !important;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #faf0be;
    line-height: 1 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 0;
    bottom: 0;
}

.contact-details-box h3{
    font-size: 16px;
    font-weight: 600;
    line-height: 19.2px;
    color: var(--text-black-color);
    padding: 0;
    margin: 0 0 10px;
}
.contact-details-box ul{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0 0 20px;
}
.contact-details-box ul li{
    list-style: none;
    font-size: 12px;
    font-weight: 400;
    line-height: 14.4px;
    color: #A4A4A4;
    border-right: 1px solid #A4A4A4;
    padding: 0 10px 0 0;
    margin: 0 10px 0 0;
}

.contact-details-box ul li:last-child{
    padding-left: 0;
    margin-right: 0;
    border-right: none;
}

.contact-details-box .text-box{
    background: var(--contact-card-bg);
    padding: 20px;
    border-radius: 4px;
}

.contact-details-box .text-box p{
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: var(--text-black-color);
    padding: 0;
    margin: 0;
}
.contact-details-box .dw-btn{
    padding: 0;
    margin: 30px 0 0;
    text-align: center;
}
.contact-details-box .dw-btn .btn{
    padding: 8px 15px;
    border-radius: 4px;
    border: 1px solid #000;
    font-size: 14px;
    font-weight: 600;
    line-height: 16.94px;
    color: var(--text-black-color);
    outline: none;
    box-shadow: none;
    background: var(--card-bg-color);
}

.fapen,
.faright,
.fagv {
    color: var(--text-secondary) !important;
}

select option {
    background: var(--card-bg-colo);
    color: var(--text-primary);
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
}

#bodyid {
    padding-right: 0px !important;
}

.roundcc a{
    /* outline-color: #7842b6 !important; */
    border: 2px solid #7842b6 !important;
    /* outline-offset: 2px  !important; */
    border-radius: 50% !important;
}

.round-other a{
    /* outline-color: #7842b6 !important; */
    border: 2px solid #7842b6 !important;
    /* outline-offset: 2px  !important; */
    border-radius: 50% !important;
}

.squarecc a{
    /* outline-color: #7842b6 !important; */
    border: 2px solid #7842b6 !important;
    /* outline-offset: 2px !important; */
    border-radius: 0% !important;
}

.square-other a{
    /* outline-color: #7842b6 !important; */
    border: 2px solid #7842b6 !important;
    /* outline-offset: 2px !important; */
    border-radius: 0% !important;
}
.square-other a,
.round-other a,
.roundcc a,
.squarecc {
    position: relative;
    top: -1px;
}

.marginlr0{
    margin-left: 0px !important;
    margin-right: 0px !important;
}
.tappdetails .nfc_main_body{
    padding-bottom: 20px;
}
.tappdetails .my-profile-body {
    margin-top: -155px;
}

.tappdetails .dashboard_banner > img {

    min-height: 310px;
}
.tappdetails .profile-banner .pr-banner-img {

    min-height: 175px;

}

.about-tapp {
    text-align: left !important;
}

.about-tapp p{
    font-size: 14px !important;
}

/*================ Black css ===============*/
/* .page_heading a.back_btn img,
.contact-details-box .dw-btn .btn img,
.enabled-alert .alert-body .text .close-btn img{
    filter: invert(1);
} */

