body {
    font-family: 'Arial';
    background: #f7f7f7;
}
.img-body{
    border-radius: 50%;
    height: 95px;
    width: 95px;
    box-shadow: 0px 0px 20px 5px rgba(0,0,0,0.2);
}

.img-wrap{
    padding-top: 50px;
    padding-bottom: 10px;
}

.card-title{
    text-shadow: 1px 1px 1px black;
}
.social-img{
    height: 60px;
    width: 60px;
    padding: 5px;
    border-radius: 50%;
}

.vcard-img{
    height: 225px;
    width: 225px;
    padding: 0px;
}

.wechat-img{
    height: 40px;
    width: 40px;
    padding: 5px;
    vertical-align: top;
}

h5 {
    font-size: 0.9rem;
}

a{
    color: rgba(0,0,0,0.8);
    font-size: 1.25rem;
    text-decoration: none;
}
a:hover{
    color: rgba(0,0,0,1);
    text-decoration: none;
}

a .fab{
    font-size: 66px;
    margin-right: 10px;
}
a .fas{
    font-size: 18px;
}

.card-wrapper{
    box-shadow: 0 -5px 40px 7px rgba(0,0,0,0.08);
    background-color: rgba(0, 0, 0, 0) linear-gradient(45deg, rgb(241, 133, 104) 0%, rgb(241, 133, 104) 1%, rgb(192, 62, 74) 100%) repeat scroll 0% 0% !important;
}
/* @media (min-width: 690px){
    .card-wrapper{
        margin-top: 60px;
    }
} */

.vcard-functions{
    display: block;
    width: 100%;
    text-align: center;
    height: 60px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.vcard-functions-wrapper{
    display: table;
    margin: 0 auto;
    height: 60px;
    text-align: center;
}
/* @media (min-width: 690px){.vcard-functions-wrapper{width:570px}} */
@media (min-width: 690px){
    .template-4 .vcard-functions-wrapper{
        width:418px;
    }
}


.vcard-functions a {
    cursor: pointer;
    display: table-cell;
    color: #fff;
    padding: 10px 0;
    min-width: 100px;
    margin: 0;
    border-right: 1px solid rgba(255,255,255,0.15);
}

.vcard-functions a:hover{
    background-color: rgba(0,0,0,0.1);
    text-decoration: none;
}
@media (min-width: 690px){
    .vcard-functions a{min-width:215px}
}

@media (min-width: 690px){
    .vcard-body-wrapper{
        width: 570px;
        margin: 0 auto;
        margin-bottom: 0px;
        box-shadow: 0 -5px 40px 7px rgba(0,0,0,0.08);
        margin-bottom: 60px;
        overflow: hidden;
        height: 100%;
    }
}

.dynamicText{
    font-size: 12px;
    text-transform: capitalize;
}

.vcard-body{
    height: 100%;
    position: relative;
    float: left;
    width: 100%;
    padding: 20px 45px 40px;
    padding-top: 20px;
    padding-bottom: 40px;
    box-shadow: 0 -5px 40px 7px rgba(0,0,0,0.08);
}
@media (max-width: 480px){.vcard-body{box-shadow:none;height: 100%; padding:20px 0 0}}

.btn-vcard{
    color: #fff;
    background: rgb(192, 62, 74);
    border-radius: 0px !important;
    margin-bottom: 20px;
    box-shadow: 0px 10px 14.1px 0.9px rgba(0,0,0,0.24),0px 4px 19.6px 0.4px rgba(0,0,0,0.16);
}

.btn-vcard:hover{
    box-shadow: 0px 20px 28.2px 0.9px rgba(0,0,0,0.24),0px 8px 40.18px 0.82px rgba(0,0,0,0.16);
}

.btn-vcard-round{
    display: block;
    color: #fff;
    background: #17a2b8;
    width: 135px;
    white-space: normal;
    /* border-radius: 50% !important; */
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    padding: 10px;
    float: right;
    z-index: 998;
    overflow: hidden;
    position: fixed;
    bottom: 12px;
    right: 25px;
    animation: color-me-in 4.5s ease-out;
    animation-iteration-count: 1;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    box-shadow: 0px 10px 14.1px 0.9px rgba(0,0,0,0.24),0px 4px 19.6px 0.4px rgba(0,0,0,0.16);
}

.pulse-ring{
    display: block;
    border-radius: 50%;
    height: 120px;
    width: 120px;
    position: fixed;
    -webkit-animation: animation-pulse 3.5s ease-out;
    animation: animation-pulse 3.5s ease-out;
        animation-iteration-count: 1;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    opacity: 0;
    border-width: 3px;
    border-style: solid;
    border-color: rgba(54,153,255,.75);
    bottom: -15px;
    right: 0px;
}

@keyframes color-me-in {
    /* You could think of as "step 1" */
    0% {
        background: <%= data.bgColor %>;
        opacity: 0.8;
    }
    40% {
        background: <%= data.bgColor %>;
        opacity: 0.7;
    }
    60% {
        background: <%= data.bgColor %>;
        opacity: 0.7;
    }
    80% {
        background: <%= data.bgColor %>;
        opacity: 1;
    }
    /* You could think of as "step 2" */
    100% {
        background: <%= data.bgColor %>;
        opacity: 0.8;
    }
}

@keyframes animation-pulse{
    0% {
        -webkit-transform: scale(.1,.1);
        opacity: 0;
    }
    60% {
        -webkit-transform: scale(.1,.1);
        opacity: 0;
    }
    65% {
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(0.9,0.9);
        opacity: 0;
    }
}
.btn-vcard-round:hover{
    color: #fff;
    box-shadow: 0px 20px 28.2px 0.9px rgba(0,0,0,0.24),0px 8px 40.18px 0.82px rgba(0,0,0,0.16);
}

.btn-red{
    background: #c03e4a !important;
}

.btn-vcard-share{
    color: rgba(0,0,0,0.8);
    background: #fff;
    border-radius: 0px !important;
    box-shadow: 0px 10px 14.1px 0.9px rgba(0,0,0,0.24),0px 4px 19.6px 0.4px rgba(0,0,0,0.16);
}

.btn-vcard-share:hover{
    color: rgba(0,0,0,0.8);
    background: #fff;
    box-shadow: 0px 20px 28.2px 0.9px rgba(0,0,0,0.24),0px 8px 40.18px 0.82px rgba(0,0,0,0.16);
}

.btn-vcard-share-round{
    display: block;
    color: rgba(0,0,0,0.8);
    background: #fff;
    border-radius: 50% !important;
    padding: 16px;
    float: right;
    z-index: 998;
    overflow: hidden;
    position: fixed;
    bottom: 70px;
    right: 25px;
    box-shadow: 0px 10px 14.1px 0.9px rgba(0,0,0,0.24),0px 4px 19.6px 0.4px rgba(0,0,0,0.16);
}

.btn-vcard-share-round:hover{
    color: rgba(0,0,0,0.8);
    background: #fff;
    box-shadow: 0px 20px 28.2px 0.9px rgba(0,0,0,0.24),0px 8px 40.18px 0.82px rgba(0,0,0,0.16);
}

.btn:focus{
    box-shadow: 0px 10px 14.1px 0.9px rgba(0,0,0,0.24),0px 4px 19.6px 0.4px rgba(0,0,0,0.16) !important;
}

.table-row {
    position: relative;
    padding: 20px 0 20px 65px;
    float: left;
    width: 100%;
    text-align: left;
    text-decoration: none;
}

.table-row-content{
    display: flex;
    flex-direction: column;
}
.table-row-content small {
    margin-bottom: 5px;
}

.table-row svg {
    position: absolute;
    top: 25px;
    left: 20px;
    font-size: 20px;
    fill: #b3b4bb;
}

#map {
    height: 400px;  /* The height is 400 pixels */
    width: 100%;  /* The width is the width of the web page */
}

.footer {
    background-color: #f9f9f9;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: #0a1832;
    text-align: center;
    padding: 20px 0;
    position: relative;
    bottom: 0;
    font-size: 13px;
}

.footer a{
    font-size: 13px;
    color: #0056b3;
}

.footer img{
    vertical-align: text-bottom;
}

.footer_logo{
    list-style: none;
    line-height: 1.2;
    margin-bottom: 0px;
}

.icons {
    fill: white;
    vertical-align: middle;
}
iframe{
    width: 100%;
}
.btn-icon {
    width: 60px;
    height: 60px;
    text-align: center;
    font-size: 30px;
    border-radius: 100%;
    padding: 17px;
    margin: 12px;
    display: block;
    gap: 5px;
}
@font-face {
    font-family: 'QrTiger';
    src:  url('../fonts/QrTiger.eot?76u8lk');
    src:  url('../fonts/QrTiger.eot?76u8lk#iefix') format('embedded-opentype'),
        url('../fonts/QrTiger.ttf?76u8lk') format('truetype'),
        url('../fonts/QrTiger.woff?76u8lk') format('woff'),
        url('../fonts/QrTiger.svg?76u8lk#QrTiger') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
    }
    
    [class^="qr-"], [class*=" qr-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'QrTiger' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    }
    .color-reward{
    background-color: #09B83E; color:#fff;
    }
    .qr-reward:before {
    content: "\e978";
    }
    .color-ebay{
    background-color: #E53238; color:#fff; 
    }
    .qr-ebay:before {
    content: "\e945";
    }
    .color-amazon{
    background-color: #FF9900; color:#fff;
    }
    .qr-amazon:before {
    content: "\e970";
    }
    .color-applemusic{
    background-color: #fc3c44; color:#fff; 
    }
    .qr-applemusic:before {
    content: "\e971";
    }
    .qr-qq-music:before {
    content: "\e96b";
    }
    .color-dianping{
    background-color: #F2CD00; color:#000;
    }
    .qr-dianping:before {
    content: "\e96e";
    }
    .color-eleme{
    background-color: #1C95F1; color:#fff;
    }
    .qr-eleme:before {
    content: "\e966";
    }
    .color-foodpanda{
    background-color: #d60265; color:#fff;
    }
    .qr-foodpanda:before {
    content: "\e944";
    }
    .qr-hibixin:before {
    content: "\e96d";
    }
    .qr-xuexi:before {
    content: "\e96a";
    }
    .qr-k-song:before {
    content: "\e96c";
    }
    .qr-soul:before {
    content: "\e963";
    }
    .color-himalaya{
    background-color: #005A5E; color:#fff;
    }
    .qr-himalaya:before {
    content: "\e964";
    }
    .color-meituan{
    background-color: #F2C600; color:#000;
    }
    .qr-meituan:before {
    content: "\e965";
    }
    .color-pingduoduo{
    background-color: #E80009; color:#fff;
    }
    .qr-pingduoduo:before {
    content: "\e967";
    }
    .color-jingdong{
    background-color: #A30F10; color:#fff;
    }
    .qr-jingdong:before {
    content: "\e968";
    }
    .color-taobao{
    background-color: #ff4200; color:#fff;
    }
    .qr-taobao:before {
    content: "\e969";
    }
    .color-bilibili{
    background-color: #00A8EC; color:#fff;
    }
    .qr-bilibili:before {
    content: "\e94d";
    }
    .color-kuaishou{
    background-color: #F24506; color:#fff;
    }
    .qr-kuaishou:before {
    content: "\e953";
    }
    .qr-tik-tok .path1:before {
    content: "\e953";
    color: rgb(240, 0, 68);
    }
    .qr-tik-tok .path2:before {
    content: "\e954";
    margin-left: -1em;
    color: rgb(240, 0, 68);
    }
    .qr-tik-tok .path3:before {
    content: "\e955";
    margin-left: -1em;
    color: rgb(240, 0, 68);
    }
    .qr-tik-tok .path4:before {
    content: "\e956";
    margin-left: -1em;
    color: rgb(8, 255, 249);
    }
    .qr-tik-tok .path5:before {
    content: "\e95b";
    margin-left: -1em;
    color: rgb(8, 255, 249);
    }
    .qr-tik-tok .path6:before {
    content: "\e95c";
    margin-left: -1em;
    color: rgb(8, 255, 249);
    }
    .qr-tik-tok .path7:before {
    content: "\e95d";
    margin-left: -1em;
    color: rgb(0, 0, 0);
    }
    .color-xianyu{
    background-color: #F2CD00; color:#000;
    }
    .qr-xianyu:before {
    content: "\e976";
    }
    .color-zhihu{
    background-color: #0E81DF; color:#fff;
    }
    .qr-zhihu:before {
    content: "\e95f";
    }
    .color-xiao_hongshu{
    background-color: #F14358; color:#fff;
    }
    .qr-xiao_hongshu:before {
    content: "\e960";
    }
    .color-weibo{
    background-color: #DF2029; color:#fff;
    }
    .qr-weibo:before {
    content: "\e961";
    }
    .color-mini_wechat{
    background-color: #09B83E; color:#fff; 
    }
    .qr-mini_wechat:before {
    content: "\e962";
    }
    .qr-email1:before {
    content: "\e942";
    }
    .color-instagram{
    background: linear-gradient(#4f5bd5,#962fbf,#d62976,#fa7e1e,#feda75); color:#fff; 
    }
    .qr-instagram:before {
    content: "\e902";
    }
    .qr-pdf:before {
    content: "\e903";
    }
    .qr-html:before {
    content: "\e903";
    }
    .qr-facebook-thin:before {
    content: "\e905";
    }
    .qr-location:before {
    content: "\e906";
    }
    .qr-app-store:before {
    content: "\e907";
    }
    .qr-facebook-like:before {
    content: "\e908";
    }
    .color-pinterest{
    background-color: #c8232c; color:#fff; 
    }
    .qr-pinterest:before {
    content: "\e909";
    }
    .qr-mp3:before {
    content: "\e90a";
    }
    .qr-vcard:before {
    content: "\e90b";
    }
    .qr-customLink:before, .qr-customLink1:before {
    content: "\e90c";
    }
    .qr-text:before {
    content: "\e90d";
    }
    .qr-event:before {
    content: "\e90e";
    }
    .color-youtube{
    background-color: #ff0000; color:#fff; 
    }
    .qr-youtube:before {
    content: "\e90f";
    }
    .qr-wifi:before {
    content: "\e910";
    }
    .qr-open-menu:before {
    content: "\e911";
    }
    .color-twitter{
    background-color: #000; color:#fff; 
    }
    .qr-twitter:before {
    content: "\e9bd"; /** "\e912" **/
    }
    .qr-caret-up:before {
    content: "\e913";
    }
    .qr-caret-down:before {
    content: "\e914";
    }
    .qr-sns:before {
    content: "\e915";
    }
    .qr-wechat-small:before {
    content: "\e916";
    }
    .qr-multi:before {
    content: "\e917";
    }
    .qr-search:before {
    content: "\e918";
    }
    .qr-alipay:before {
    content: "\e919";
    }
    .qr-social-media:before {
    content: "\e91a";
    }
    .qr-forms:before {
    content: "\e91b";
    }
    .qr-check-circle:before {
    content: "\e91c";
    }
    .qr-more:before {
    content: "\e91d";
    }
    .color-line{
    background-color: #00B900; color:#fff;
    }
    .qr-line:before {
    content: "\e91e";
    }
    .qr-tiktokUsername:before {
    content: "\e91f";
    }
    .color-tiktok{
    background-color: #000000; color:#fff; 
    }
    .qr-tiktok:before {
    content: "\e91f";
    }
    .qr-close:before {
    content: "\e920";
    }
    .qr-question-circle:before {
    content: "\e921";
    }
    .qr-angle-down:before {
    content: "\e922";
    }
    .qr-angle-up:before {
    content: "\e923";
    }
    .qr-plus:before {
    content: "\e924";
    }
    .qr-user:before {
    content: "\e925";
    }
    .qr-qrcode:before {
    content: "\e926";
    }
    .qr-double-arrow-left:before {
    content: "\e927";
    }
    .qr-double-arrow-right:before {
    content: "\e928";
    }
    .qr-frame:before {
    content: "\e929";
    }
    .qr-paint-brush:before {
    content: "\e92a";
    }
    .qr-trash:before {
    content: "\e92b";
    }
    .color-linkedin{
    background-color: #0072b1; color:#fff;
    }
    .qr-linkedin:before {
    content: "\e92c";
    }
    .color-wechat{
    background-color: #09B83E; color:#fff; 
    }
    .qr-wechat:before {
    content: "\e92d";
    }
    .color-personal_wechat{
    background-color: #09B83E; color:#fff; 
    }
    .qr-personal_wechat:before {
    content: "\e92d";
    }
    .color-official_wechat{
    background-color: #09B83E; color:#fff; 
    }
    .qr-official_wechat:before {
    content: "\e92d";
    }
    .color-whatsapp{
    background-color: #128C7E; color:#fff; 
    }
    .qr-whatsapp:before {
    content: "\e92e";
    }
    .color-tumblr{
    background-color: #34526f; color:#fff;
    }
    .qr-tumblr:before {
    content: "\e92f";
    }
    .color-skype{
    background-color: #00aff0; color:#fff; 
    }
    .qr-skype:before {
    content: "\e930";
    }
    .color-reddit {
    background-color: #ff4500; color:#fff; 
    }
    .qr-reddit:before {
    content: "\e931";
    }
    .color-qqNumber{
    background-color: #D66755; color:#fff;
    }
    .qr-qqNumber:before {
    content: "\e932";
    }
    .color-medium{
    background-color: #ffe812; color:#fff;
    }
    .qr-medium:before {
    content: "\e933";
    }
    .color-yelpLink{
    background-color: #c41200; color:#fff;
    }
    .qr-yelpLink:before {
    content: "\e934";
    }
    .color-quora{
    background-color: #B92B27; color:#fff;
    }
    .qr-quora:before {
    content: "\e935";
    }
    .color-meetup{
    background-color: #e51937; color:#fff;
    }
    .qr-meetup:before {
    content: "\e936";
    }
    .color-snapchat{
    background-color: #FFFC00; color:#000; 
    }
    .qr-snapchat:before {
    content: "\e937";
    }
    .qr-check:before {
    content: "\e938";
    }
    .qr-exchange:before {
    content: "\e939";
    }
    .color-facebook{
    background-color: #3b5998; color:#fff; 
    }
    .qr-facebook:before {
    content: "\e93a";
    }
    .qr-play:before {
    content: "\e93b";
    }
    .color-kakaotalk{
    background-color: #ffe812; color:#000; 
    }
    .qr-kakaotalk:before {
    content: "\e93c";
    }
    .color-viber{
    background-color: #59267c; color:#fff; 
    }
    .qr-viber:before {
    content: "\e93d";
    }
    .color-signal{
    background-color: #3770E4; color:#fff;
    }
    .qr-signal:before {
    content: "\e93e";
    }
    .color-telegram{
    background-color: #0088cc; color:#fff; 
    }
    .qr-telegram:before {
    content: "\e93f";
    }
    .color-twitch{
    background-color: #6441a5; color:#fff; 
    }
    .qr-twitch:before {
    content: "\e940";
    }
    .qr-phone:before {
    content: "\e941";
    }
    .qr-email:before {
    content: "\e942";
    }
    .color-postmates{
    background-color: #36454f; color:#fff;
    }
    .qr-postmates:before {
    content: "\e943";
    }
    .color-yogiyo{
    background-color: #EE004C; color:#fff;
    }
    .qr-yogiyo:before {
    content: "\e972";
    }
    .color-rakuten{
    background-color: #BF0000; color:#fff;
    }
    .qr-rakuten:before {
    content: "\e946";
    }
    .color-menulog{
    background-color: #F77C00; color:#fff;
    }
    .qr-menulog:before {
    content: "\e947";
    }
    .color-podcast{
    background-color: #D56DFB; color:#fff;
    }
    .qr-podcast:before {
    content: "\e948";
    }
    .color-zomato{
    background-color: #cb202d; color:#fff;
    }
    .qr-zomato:before {
    content: "\e949";
    }
    .color-shopify{
    background-color: #96bf48; color:#fff; 
    }
    .qr-shopify:before {
    content: "\e94a";
    }
    .color-ubereats{
    background-color: #06C167; color:#fff;
    }
    .qr-ubereats:before {
    content: "\e94b";
    }
    .color-etsy{
    background-color: #eb6d20; color:#fff;
    }
    .qr-etsy:before {
    content: "\e94c";
    }
    .color-streamlabs{
    background-color: #32c3a3; color:#000;
    }
    .qr-streamlabs:before {
    content: "\e94e";
    }
    .color-soundcloud{
    background-color: #ff4137; color:#fff;
    }
    .qr-soundcloud:before {
    content: "\e94f";
    }
    .color-patreon{
    background-color: #f96854; color:#fff;
    }
    .qr-patreon:before {
    content: "\e950";
    }
    .color-grubhub{
    background-color: #a71930; color:#fff;
    }
    .qr-grubhub:before {
    content: "\e951";
    }
    .color-doordash{
    background-color: #ff3008; color:#fff;
    }
    .qr-doordash:before {
    content: "\e952";
    }
    .color-swiggy{
        background-color: #fc8019; color:#fff;
    }
    .qr-swiggy:before {
        content: "\e958";
    }
    .color-justeat{
    background-color: #ff8100; color:#fff;
    }
    .qr-justeat:before {
    content: "\e959";
    }
    .color-deliveroo{
    background-color: #00c1b2; color:#fff;
    }
    .qr-deliveroo:before {
    content: "\e95a";
    }
    .color-glovo{
    background-color: #00a082; color:#fff;
    }
    .qr-glovo:before {
    content: "\e95b";
    }
    .color-wechat_channel{
    background-color: #F28400; color:#fff;
    }
    .qr-wechat_channel:before {
    content: "\e96f";
    }
    .qr-douban:before {
    content: "\e954";
    }
    .qr-k-song:before {
    content: "\e96c";
    }
    .qr-kesong:before {
    content: "\e981";
    }
    .color-spotify{
    background-color: #1fd561; color:#fff;
    }
    .qr-spotify:before {
    content: "\e9be";
    }
    .qr-mywebsite:before {
    content: "\e9bf";
    }
    .qr-companywebsite:before {
    content: "\e90c";
    }

    /** TEMPLATE 1 CSS START**/
    @font-face {
        font-family: 'QrTiger';
        src:  url('../fonts/QrTiger.eot?76u8lk');
        src:  url('../fonts/QrTiger.eot?76u8lk#iefix') format('embedded-opentype'),
          url('../fonts/QrTiger.ttf?76u8lk') format('truetype'),
          url('../fonts/QrTiger.woff?76u8lk') format('woff'),
          url('../fonts/QrTiger.svg?76u8lk#QrTiger') format('svg');
        font-weight: normal;
        font-style: normal;
        font-display: block;
      }
      
      [class^="qr-"], [class*=" qr-"] {
        /* use !important to prevent issues with browser extensions that change fonts */
        font-family: 'QrTiger' !important;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        font-size: 25px;
      
        /* Better Font Rendering =========== */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
      }

    .template-1 {
        max-width: 440px;
    }
    .template-1 .item-header {
        position: relative;
        overflow: hidden;
    }

    .template-1 .item-header .item-background{
        position: absolute;
        height: 120%;
        width: 240%;
        border-radius: 50%;
        left: -120%;
        top: -70%;
        z-index: -1;
        overflow: hidden;
        background-color: #fff;
    }

    .template-1 .item-header .item-background .inner-background{
        position: absolute;
        bottom: 0;
        left: 50%;
        height: 42%;
        width: 42%;
    }

    .template-1 .item-header .card-wrapper {
        margin-top: 0;
    }

    .template-1 .card-wrapper .item-background {
        position: absolute;
        
        z-index: -1;
    }

    @media only screen and (max-width: 768px) {
        .item-background{
            left: 0;
            top: 0;
        }  
    }

    @media only screen and (min-width: 768px) {
        .item-background{
            top: -145px;
            left: 0;
        }   
    }

    .template-1 .card-title {
        margin-bottom: 8px;
        font-weight: 700;
        font-size: 28px;
    }

    .template-1 .card-subtitle {
        font-size: 20px;
        font-weight: 400;
        word-break: break-word;
    }

    .template-1 .img-wrap {
        padding: 0 0 16px 0;
    }

    .template-1 .img-wrap .img-body {
        border-radius: 50%;
        height: 235px;
        width: 235px;
        box-shadow: none;
    }

    .template-1 .personal-desc {
        font-size: 16px;
        padding-bottom: 16px;
        word-break: break-word;
    }

    .template-1 .vcard-functions {
        height: auto;
        padding: 0 10px;
    }

    .template-1 .vcard-functions-wrapper {
        height: auto;
        gap: 6px;
        display: flex;
        margin: 0 auto;
        text-align: center;
    }

    .template-1 .vcard-functions .vcard-functions-wrapper a {
        display: flex;
        border: none;
        padding: 8px 10px;
        flex-direction: column;
        gap: 4px;
        border-radius: 4px;
        font-size: 10px;
    }

    .template-1 .vcard-functions-wrapper a {
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff;
        padding: 10px 0;
        min-width: 50px;
        margin: 0;
        flex: 1 1;
        font-size: 8px;
        border-right: 1px solid rgba(255, 255, 255, 0.15);
        text-decoration: none;
    }

    .template-1 .vcard-functions-wrapper a i {
        flex-shrink: 0;
    }

    .template-1 .vcard-functions-wrapper a .dynamicText {
        font-size: 16px;
    }

    .template-1 .item-body {
        background-color: #f2f8ff;
    }

    .template-1 .item-body .details-row {
        border-top: none;
        padding: 0 10px 10px 10px;
    }

    .template-1 .item-body .details-row a {
        display: flex;
        padding: 10px;
        border-radius: 4px;
        align-items: center;
        color: rgba(0, 0, 0, 0.8);
        background: white;
        text-decoration: none;
        font-size: 18px;
    }

    .template-1 .item-body .details-row a i {
        font-size: 25px;
        -webkit-background-clip: text;
        -webkit-color: transparent;
        background-clip: text;
        color: transparent;
        padding: 10px;
        margin-right: 5px;
    }

    .template-1 .item-body .details-row a small {
        font-size: 16px;
        color: #b3b4bb;
    }

    .template-1 .item-body .details-row.social {
        padding: 10px 10px;
        text-align: center;
    }

    .template-1 .item-body .details-row.social a {
        padding: 0;
        margin: 3px;
        border-radius: 50%;
    }

    .template-1 .item-body .details-row.social a i {
        padding: 5px;
        width: 40px;
        height: 40px;
        border-radius: 50%;
    }

    .btn-add {
        display: flex;
        border-radius: 60px !important;
        right: 16px;
    }
    .template-1 .item-header .card-wrapper {
        margin-top: 0;
    }
    /** TEMPLATE 1 CSS END **/

    /** TEMPLATE 2 CSS START**/
    .template-2 {
        max-width: 440px;
    }
    .template-2 .item-header {
        position: relative;
        overflow: hidden;
    }

    .template-2 .item-header .item-background {
        position: absolute;
        height: 100%;
        width: 100%;
        z-index: 1;
        border-radius: 10px;
        left: 0px;
        top: 125px;
        z-index: -1;
    }

    .template-2 .card-title {
          margin-bottom: 8px;
          font-weight: 700;
          font-size: 28px;
    }

    .template-2 .card-subtitle {
        font-size: 18px;
        font-weight: 400;
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 10px;;
        word-wrap: break-word;
    }

    .template-2 .img-wrap {
        padding: 0 0 8px 0;
    }

    .template-2 .img-wrap .img-body {
        border-radius: 50%;
        height: 235px;
        width: 235px;
        box-shadow: none;
    }

    .template-2 .personal-desc {
        font-size: 16px;
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 16px;
        color: #fff;
        word-break: break-word;
        word-wrap: break-word;
    }

    .template-2 .vcard-functions {
        border: none;
        height: auto;
        padding: 0 20px 10px 20px;
    }

    @media (max-width: 1200px) {
        .template-2 .vcard-functions{
            padding: 0 16px 10px 16px;
        }
    }

    .template-2 .vcard-functions-wrapper {
        height: auto;
        gap: 1px;
        display: flex;
        margin: 0 auto;
        text-align: center;
        border-radius: 4px;
        background: transparent;
        overflow: hidden;
        margin: 10px;
    }

    .template-2 .vcard-functions .vcard-functions-wrapper a {
        display: flex;
        border: none;
        padding: 8px 10px;
        flex-direction: row;
        gap: 4px;
        font-size: 10px;
        border: none;
        padding: 8px 10px;
        font-size: 8px;
        background-color: #fff; 
    }

    .template-2 .vcard-functions-wrapper a {
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px 0;
        min-width: 50px;
        margin: 0px;
        flex: 1 1;
        font-size: 8px;
        border-right: 1px solid rgba(255, 255, 255, 0.15);
        text-decoration: none;
    }

    .template-2 .vcard-functions-wrapper a i {
        flex-shrink: 0;
        font-size: 18px;
        -webkit-background-clip: text;
        -webkit-color: transparent;
        background-clip: text;
        box-sizing: border-box;
        font-weight: 400;
        /* color: transparent; */
    }

    .template-2 .vcard-functions-wrapper a .dynamicText {
        font-size: 18px;
        font-weight: 400;
        box-sizing: border-box;
        padding: 0 10px;
        font-family: Poppins, sans-serif;
    }

    .template-2 .item-body .details-row {
        border-top: none;
        padding: 0 10px 10px 10px;
    }

    .template-2 .item-body .details-row .icon-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 6px;
        border-radius: 50%;
        background: white;
        margin-right: 8px;
    }

    .template-2 .item-body .details-row a {
        display: flex;
        padding: 10px;
        border-radius: 4px;
        align-items: center;
        color: rgba(0, 0, 0, 0.8);
        text-decoration: none;
        font-size: 18px;
    }

    .template-2 .item-body .details-row a i {
        font-size: 25px;
        -webkit-background-clip: text;
        -webkit-color: transparent;
        background-clip: text;
        color: transparent;
        padding: 10px;
    }

    .template-2 .item-body .details-row a small {
        font-size: 16px;
        color: #b3b4bb;
    }

    .template-2 .item-body .details-row.social {
        padding: 10px 10px;
        text-align: center;
    }

    .template-2 .item-body .details-row.social a {
        padding: 0;
        margin: 3px;
        border-radius: 50%;
    }

    .template-2 .item-body .details-row.social a i {
        padding: 5px;
        width: 40px;
        height: 40px;
        border-radius: 50%;
    }

    /** TEMPLATE 2 CSS END **/

     /** TEMPLATE 3 CSS START**/
     .template-3 {
        max-width: 440px;
     }
     .template-3 .item-header {
        position: relative;
        overflow: hidden;
    }

    .template-3 .item-header .card-wrapper {
        margin-top: 0;
    }

    .template-3 .item-header .item-background {
        position: absolute;
          height: 100%;
          width: 100%;
          z-index: 1;
          left: 0;
          top: 0;
          z-index: -1;
          border-radius: 0 0 8px 8px;
    }

    .template-3 .card-title {
          margin-bottom: 8px;
          font-weight: 700;
          font-size: 28px;
    }

    .template-3 .card-subtitle {
        font-size: 18px;
        font-weight: 400;
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 10px;;
        word-wrap: break-word;
    }

    .template-3 .img-wrap {
        padding: 0 0 16px 0;
    }

    .template-3 .img-wrap .img-body {
        border-radius: 50%;
        height: 235px;
        width: 235px;
        box-shadow: none;
    }

    .template-3 .personal-desc {
        font-size: 16px;
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 16px;
        color: #fff;
        word-break: break-word;
        word-wrap: break-word;
    }

    .template-3 .vcard-functions {
        border: none;
        height: auto;
        padding: 0 20px 10px 20px;
    }

    @media (max-width: 1200px) {
        .template-3 .vcard-functions{
            padding: 0 16px 10px 16px;
        }
    }

    .template-3 .vcard-functions-wrapper {
        height: auto;
        gap: 6px;
        display: flex;
        margin: 0 auto;
        text-align: center;
    }

    .template-3 .vcard-functions .vcard-functions-wrapper a {
        display: flex;
        border: none;
        padding: 8px 10px;
        flex-direction: column;
        gap: 4px;
        border-radius: 4px;
        font-size: 10px;
        border: none;
        padding: 8px 10px;
        font-size: 8px;
        background-color: #fff; 
        margin-bottom: 3px;
    }

    .template-3 .vcard-functions-wrapper a {
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px 0;
        min-width: 50px;
        margin: 0;
        flex: 1 1;
        font-size: 8px;
        border-right: 1px solid rgba(255, 255, 255, 0.15);
        text-decoration: none;
    }

    .template-3 .vcard-functions-wrapper a i {
        flex-shrink: 0;
        font-size: 25px;
        -webkit-background-clip: text;
        -webkit-color: transparent;
        background-clip: text;
        /* color: transparent; */
    }

    .template-3 .vcard-functions-wrapper a .dynamicText {
        font-size: 16px;
    }

    .template-3 .item-body .details-row {
        border-top: none;
        padding: 0 10px 10px 10px;
    }

    .template-3 .item-body .details-row a {
        display: flex;
        padding: 10px;
        border-radius: 4px;
        align-items: center;
        color: rgba(0, 0, 0, 0.8);
        background: white;
        text-decoration: none;
        font-size: 18px;
    }

    .template-3 .item-body .details-row a i {
        font-size: 25px;
        -webkit-background-clip: text;
        -webkit-color: transparent;
        background-clip: text;
        color: transparent;
        padding: 10px;
        margin-right: 5px;
    }

    .template-3 .item-body .details-row a small {
        font-size: 16px;
        color: #b3b4bb;
    }

    .template-3 .item-body .details-row.social {
        padding: 10px 10px;
        text-align: center;
    }

    .template-3 .item-body .details-row.social a {
        padding: 0;
        margin: 3px;
        border-radius: 50%;
        background-color: #fff;
    }

    .template-3 .item-body .details-row.social a i {
        padding: 5px;
        width: 40px;
        height: 40px;
        border-radius: 50%;
    }
      /** TEMPLATE 3 CSS END **/

        /** TEMPLATE 4 CSS START **/
        .template-4 .item-header {
        position: relative;
        overflow: hidden;
    }

    .template-4 .item-header .item-background-wrapper-bg{
        position: absolute;
        border-radius: 0 0 280px 280px;
        height: 388px;
        width: 125%;
        z-index: 1;
        left: -69px;
        top: 0px;
        overflow: hidden;
        background: white;
    }
    .template-4 .item-header .item-background-wrapper {
        position: absolute;
        border-radius: 0 0 280px 280px;
        height: 397px;
        width: 125%;
        z-index: 1;
        left: -69px;
        top: 0px;
        z-index: 0;
        overflow: hidden;
    }

    @media (max-width: 1200px) {
        .template-4 .item-header .item-background-wrapper-bg{
            height: 388px;
            width: 150%;
            left: -70px;
            top: 0px;
        }
        .template-4 .item-header .item-background-wrapper{
            height: 397px;
            width: 150%;
            left: -70px;
            top: 0px;
        }
    }

    .template-4 .item-header .card-wrapper {
        margin-top: 0;
    }

    .template-4 .item-header .item-background {
        position: relative;
        border-radius: 0 0 280px 280px;
        height: 388px;
        width: 125%;
        z-index: 1;
        top: 0px;
        left: -69px;
        overflow: hidden;
        background: transparent;
        margin-bottom: 40px;
    }

    @media (max-width: 1200px) {
        .template-4 .item-header .item-background{
            height: 388px;
            width: 150%;
            left: -70px;
            top: 0px;
        }
    }

    .template-4 .item-header .img-background{
        position: relative;
        height: auto;
        width: 400px;
        left: -33px;
        bottom: 0px;
        object-fit: cover;
        display: block;
        margin: auto;
        text-align: center;
    }

    @media (max-width: 430px) {
        .template-4 .item-header .img-background{
            width: 440px;
        }
    }

    @media (max-width: 414px) {
        .template-4 .item-header .img-background{
            width: 415px;
        }
    }

    .template-4 .card-title {
            margin-bottom: 8px;
            font-weight: 700;
            font-size: 28px;
    }

    .template-4 .card-subtitle {
        font-size: 18px;
        font-weight: 400;
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 10px;;
        word-wrap: break-word;
    }

    .template-4 .img-wrap {
        padding: 0 0 10px 0;
        overflow: hidden;
    }

    .template-4 .img-wrap .img-body {
        height: 235px;
        width: 235px;
        box-shadow: none;
    }

    .template-4 .personal-desc {
        font-size: 16px;
        padding: 16px;
    }

    .template-4 .vcard-functions {
        height: auto;
            border-top: unset;
            padding: 0 16px;
    }

    @media (max-width: 1200px) {
        .template-4 .vcard-functions{
            padding: 0 16px 0 16px;
        }
    }

    @media screen and (max-width: 390px) {
        .template-4 .vcard-functions{
            padding: 0 16px 0 16px;
            max-width: 390px;
            margin: auto;
        }
    }

    @media screen and (max-width: 375px) {
        .template-4 .vcard-functions{
            padding: 0 16px 0 16px;
            max-width: 375px;
            margin: auto;
        }
    }

    @media screen and (max-width: 344px) {
        .template-4 .vcard-functions{
            padding: 0 16px 0 16px;
            max-width: 345px;
            margin: auto;
        }
    }

    .template-4 .vcard-functions-wrapper {
        height: auto;
        gap: 8px;
        flex-direction: column;
        display: flex;
        max-width: -webkit-fill-available;
    }

    .template-4 .vcard-functions .vcard-functions-wrapper a {
        display: flex;
        justify-content: center;
        align-items: center;
        border: none;
        padding: 8px 10px;
        gap: 4px;
        border-radius: 4px;
        font-size: 10px;
        border: none;
        padding: 8px 10px;
        font-size: 10px;
        background-color: #4a87e0; 
        color: #fff;
        margin-bottom: 0;
        text-decoration: none;
    }

    .template-4 .vcard-functions-wrapper a {
        border-radius: 40px !important;
                border: none;
                padding: 8px 10px;
                gap: 4px;
                border-radius: 4px;
                font-size: 10px;
    }

    .template-4 .vcard-functions-wrapper a i {
        flex-shrink: 0;
        font-size: 16px;
    }

    .template-4 .vcard-functions-wrapper a .dynamicText {
        font-size: 16px;
        text-decoration: none;
    }

    .template-4 .item-body .details-row:first-child{
        border-top: unset;
    }

    .template-4 .item-body .details-row {
        padding: 0 10px;
    }

    .template-4 .item-body .details-row {
        border-top: 1px solid #dee2e6;
        position: relative;
        padding: 10px 0 10px 10px;
        float: left;
        width: 100%;
        text-align: left;
        font-size: 10px;
        background-color: #f2f8ff;
    }

    .template-4 .item-body .details-row .icon-wrapper {
        display: flex;
            justify-content: center;
            align-items: center;
            padding: 12px;
            border-radius: 50%;
            background: white;
            margin-right: 20px;
    }

    .template-4 .item-body .details-row a {
        display: flex;
        padding: 15px 10px;
        border-radius: 4px;
        align-items: center;
        color: rgba(0, 0, 0, 0.8);
        text-decoration: none;
        font-size: 18px;
    }

    .template-4 .item-body .details-row a i {
        font-size: 25px;
        -webkit-background-clip: text;
        -webkit-color: transparent;
        background-clip: text;
        color: transparent;
    }

    .template-4 .item-body .details-row a small {
        font-size: 16px;
        color: #b3b4bb;
    }

    .template-4 .item-body .details-row.social {
        padding: 10px 10px;
        text-align: center;
    }

    .template-4 .item-body .details-row.social a {
        padding: 0;
        margin: 3px;
        border-radius: 50%;
    }

    .template-4 .item-body .details-row.social a i {
        padding: 5px;
        width: 40px;
        height: 40px;
        border-radius: 50%;
    }
        /** TEMPLATE 4 CSS END **/