/* @import url('https://fonts.googleapis.com/css?family=Open+Sans&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

/* --------------------------------------------
       1. Base & Body
    -------------------------------------------- */
body {
    font-family: "Manrope", sans-serif;
    background-color: #fff;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

i {
    line-height: 0;
}

button:active {
    border-color: transparent !important;
}

/* --------------------------------------------
       2. Sidebar
    -------------------------------------------- */
.sidebar {
    /* width: 60px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.sidemenucontainer {
    padding: 15px 10px;
    background: #fff;
    position: fixed;
    height: calc(100% - 64px);
    width: 180px;
    left: 0;
    z-index: 7;
    box-shadow: 0px 4px 15px 0px rgba(22, 28, 35, 0.10);
}

.sidemenu a {
    border-radius: 6px;
    border: 1px solid #4F4F4F;
    padding: 8px;
    display: flex;
    gap: 8px;
    align-items: center;
    line-height: 0;
}

.sidemenu a:hover svg path {
    fill: #fff;
}

.sidemenu a span {
    color: #161C23;
    text-align: center;
     /* font-family: Geologica; */ 
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.25px;
    border: 1px solid transparent;
    /* display: none; */
}

.sidemenu {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
}

.sidemenu i,
.sidemenu svg {
    color: #000;
    width: 15px;
    height: 15px;
    font-size: 15px;
    transition: color 0.3s;
    cursor: pointer;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;

}

.sidemenu a:hover,
.sidemenu a.active,
.sidemenu a:hover span,
.sidemenu a.active span {
    background: #000;
    border: 1px solid #000;
    color: #fff;
    /* line-height: 0; */
}

.sidemenu a:hover i,
.sidemenu a.active i {
    color: #fff;
}

.sidemenu a:hover svg path,
.sidemenu a.active svg path {
    fill: #fff;
}

.upgradebtn a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 4px;
    padding-top: 25px;
    border-top: 1px solid #161C23;
}

.upgradebtn p {
    color: #161C23;
    text-align: center;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    font-family: "Geologica", serif;
    word-break: break-word;
}

.cusmenu {
    flex-direction: column;
    min-height: 80%;
    gap: 20px;
    height: 100%;
}

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

.nodatafound h5 {
    font-size: 25px;
    margin-bottom: 0 !important;
}

.nodatafound img {
    width: 100px;
    margin: 20px auto;
    filter: brightness(0) saturate(100%) invert(66%) sepia(68%) saturate(502%) hue-rotate(353deg) brightness(105%) contrast(88%);
}
.upgrade-btn{
    display: flex;
    width: 175px;
    height: 40px;
    padding: 5px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 6px;
    background: var(--Main-G, linear-gradient(110deg, #F2A400 0%, #FAC52E 37.07%, #FAC52E 71.75%, #F2A400 100%));
    box-shadow: 0px 4px 15px 0px rgba(33, 37, 41, 0.05);
}
.upgrade-btn-icon{
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.upgrade-btn-text{
    color: #161C23;
    font-family: Manrope;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 16.8px */
}

@media (max-width:567px) {
    .nodatafound h5 {
        font-size: 18px;
    }
}

@media (max-width:1200px) {
    .sidebar {
        position: fixed;
        top: 0;
        right: -250px;
        width: 250px;
        height: 100%;
        background: #fff;
        transition: right 0.3s ease-in-out;
        z-index: 1000;
    }

    .sidemenucontainer {
        width: 100% !important;
        background: #fff !important;
        padding: 24px 14px !important;
        position: relative !important;
        height: 100%;
    }

    .sidebar.open {
        right: 0;
    }

    .sidemenu {
        width: 100%;
    }

    .sidebarOpen::before {
        content: '';
        background: #0000007d;
        width: 100%;
        height: 100%;
        display: block;
        position: fixed;
        z-index: 999;
    }

    .sidemenu a span {
        display: block !important;
    }

}

@media (max-width:400px) {
    .sidebar {
        right: -200px;
        width: 200px;
    }

    .btnCancel {
        width: 150px !important;
    }
}

@media (min-width:1200px) {
    .toggleBtn {
        display: none;
    }
}


/* --------------------------------------------
       3. Top Bar
    -------------------------------------------- */

.main-container {
    position: relative;
    top: 64px;
}

.top-bar {
    background: #fff;
    border-bottom: 1px solid transparent;
    padding: 0.75rem 1rem;
    position: fixed;
    top: 0;
    z-index: 99;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.05);
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ebe9e9;
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.user-avatar:hover {
    opacity: 0.8;
}

.headerprofile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-icon img {
    width: 25px;
    height: auto;
    cursor: pointer;
}

.mainLogo img {
    width: 120px;
    height: auto;
}

.centerContent {
    position: relative;
    top: 64px;
    z-index: 6;
}

@media(max-width:400px) {
    .Maincolor {
        min-width: 100px;
        text-align: left !important;
    }
}

/* --------------------------------------------
       4. Sub Nav
    -------------------------------------------- */
.sub-nav {
    background: #fff;
    border-bottom: 1px solid #E2E4E9;
    gap: 15px;
    padding: 0 !important;
}

.maintabdiv {
    position: fixed;
    z-index: 9;
    left: 180px;
    top: 64px;
    display: flex;
    justify-content: space-between;
    width: calc(100% - 200px);
    background: #fff;
    padding-top: 20px;
}


.maintabdiv.sub-nav.owl-carousel {
    position: fixed;
    z-index: 9;
}

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


.sub-nav.owl-carousel .owl-nav button.owl-next,
.sub-nav.owl-carousel .owl-nav button.owl-prev {
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0px;
}

.sub-nav.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    left: 0px;
    top: 45%;
    margin: 2px;
    width: 35px;
    height: 35px;
    border-radius: 20px;
}

.sub-nav.owl-carousel .owl-nav button.owl-prev,
.sub-nav.owl-carousel .owl-nav button.owl-next {
    background-color: #FEC230 !important;
    color: #000 !important;
    font-size: 30px !important;
}

.sub-nav.owl-carousel .owl-nav button.owl-prev span {
    bottom: 0;
    position: absolute;
    top: -3px;
    left: 0;
    line-height: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sub-nav.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    right: 0px;
    top: 45%;
    width: 35px;
    height: 35px;
    margin: 2px;
    border-radius: 50px;
}

.sub-nav.owl-carousel .owl-nav button.owl-next span {
    bottom: 0;
    position: absolute;
    top: -3px;
    left: 0;
    line-height: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.owl-prev.disabled,
.owl-next.disabled {
    opacity: 0;
    pointer-events: none;
}

.personalNav.sub-nav a {
    padding: 10px 0px;
    color: #667085;
    border-bottom: 2px solid transparent;
    font-weight: 500;
    transition: color 0.3s, border-color 0.3s;
    min-width: 70px !important;
    text-align: center;
}

.sub-nav a {
    padding: 10px 0px;
    color: #667085;
    border-bottom: 2px solid transparent;
    font-weight: 500;
    transition: color 0.3s, border-color 0.3s;
    min-width: 70px !important;
    text-align: center;
}

.sub-nav a.active {
    color: #212529;
    border-color: #212529;
}

.sub-nav a:hover {
    color: #212529;
}

@media(max-width:567px) {
    .chooseImgremove span {
        display: none;
    }
}

@media screen and (max-width:767px) {

    .browseImg,
    .chooseImgremove {
        font-size: 12px !important;
    }


    .sub-nav {
        overflow: auto;
        scrollbar-width: thin;
        scrollbar-color: transparent transparent;
        left: 0 !important;
    }

    .colorsSec {
        flex-wrap: wrap;
    }

    .sub-nav::-webkit-scrollbar {
        width: 8px;
    }

    .sub-nav::-webkit-scrollbar-track {
        background: transparent;
    }

    .sub-nav::-webkit-scrollbar-thumb {
        background: transparent;
        border-radius: 4px;
    }

    .sub-nav::-webkit-scrollbar-thumb:hover {
        background: transparent;
    }

}

/* --------------------------------------------
       5. Left Content (Tab Panels)
    -------------------------------------------- */
.left-content {
    overflow-y: auto;
    padding: 32px 20px;
    z-index: 8;
    position: relative;
    left: 0px;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.addBtn {
    width: auto;
    height: 100%;
}

.addBtn:hover,
.addBtn:active {
    background: transparent !important;
    color: #212529 !important;
    border-color: #212529 !important;
}

@media screen and (min-width:768px) and (max-width:992px) {
    .left-content {
        left: 0px;
        max-width: calc(100% - 30px);
    }

    .right-preview {
        left: 0px;
        max-width: calc(100% - 30px);
    }

    .maintabdiv {
        left: 0;
        width: calc(100% - 30px);
    }
}

@media (min-width:992px) and (max-width:1200px) {
    .maintabdiv {
        left: 0;
        width: calc(100% - 30px);
    }
}


/* --------------------------------------------
       6. Right Preview
    -------------------------------------------- */
.PreviewHeader {
    color: #161C23;
    /* font-family: Geologica; */
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.right-preview {
    position: fixed !important;
    right: 0;
    overflow-x: hidden;
    padding: 14px 20px;
}

.preview-header {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #666;
}

/* Phone frame for preview */
.phone-frame {
    background: #2f2880;
    border-radius: 40px;
    color: #fff;
    padding: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    overflow: hidden;
    background-position: center;
}

.phone-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.preinputsec {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 10px;
}



.actionBtn button {
    padding: 5px 10px !important;
}

.actionBtn {
    display: flex;
    gap: 10px;
}

.preinputsec>* {
    width: 100%;
}

.preinputsec .form-control {
    display: flex;
    padding: 10px 12px;
    align-items: center;
    gap: 8px;
    flex: 1 0 0;
    align-self: stretch;
    border-radius: 6px;
    border: 1px solid #D0D5DD;
    background: #FFF;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}

.preinputsec .form-control::placeholder {
    color: #667085;
    /* font-family: Geologica; */
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}


.preinputtitle {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.phone-profile img {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.3s;
    border: 1px solid #edeaea;
}

.phone-profile img:hover {
    transform: scale(1.05);
}

.preview-title {
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: center;
    word-break: break-all;
    /*text-transform: capitalize;*/
}

.preview-description {
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    word-wrap: break-word;
    /*text-transform: capitalize;*/
}

.preview-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.preview-links a:hover {
    cursor: default;
}

.preview-links a>p {
    width: 100%;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
}

.socialIconPreview {
    width: 100%;
    gap: 6px;
}

.preview-link {
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    padding: 12px;
    background-color: #4E3CB2;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    height: auto;
}

.preview-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.prev-main-div {
    max-width: none;
    width: 100%;
    height: 100%;
}

.prev-maincontant {
    width: 100%;
    overflow: auto;
}

.cuspreinput {
    max-width: 100%;
    min-width: 250px !important;
    border: none;
    padding: 0;
    text-align: left;
    /* font-family: Geologica; */
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: #161C23;
}

.cuspreinput:focus {
    outline: none !important;
}

.preinputtitle2 span {
    color: #667085;
    /* font-family: Geologica; */
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 93px;
    white-space: nowrap;
}

.preinputtitle2 {
    border: 1px solid #e2e4e9;
    border-radius: 10px;
    padding: 8px 10px;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.inputmaindiv {
    display: flex;
    align-items: center;
}

.inputmaindiv span {
    max-width: 150px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.linksvBtn {
    height: auto !important;
    padding: 5px 16px !important;
    border-radius: 4px !important;
    background: #212529 !important;
    box-shadow: 0px 4px 15px 0px rgba(33, 37, 41, 0.05) !important;
}

/* .sub-nav.owl-carousel .owl-stage{
    width: auto !important;
} */

.sub-nav.owl-carousel .owl-item {
    width: auto !important;
}

@media screen and (max-width:991px) {
    .right-preview {
        position: relative !important;
    }

    .prev-main-div {
        max-height: 100% !important;
        transform: none;
        aspect-ratio: 0 !important;

    }
}

@media (min-width:1100px) and (max-width:1200px) {

    /* div.left-content.col-lg-9 {
        width: calc(55% - 180px) !important;
        left: 180px;
    } */
    .link-card {
        flex-wrap: wrap;
        row-gap: 15px;
    }

    .colorsSec {
        gap: 15px !important;
        flex-wrap: wrap;
        row-gap: 15px !important;
    }

    .colorsSec>* {
        width: 45% !important;
    }
}

@media (min-width:1024px) and (max-width:1200px) {
    .right-preview.col-lg-3 {
        width: 33.333333% !important;
    }

    .left-content.col-lg-9 {
        width: 66.666667% !important;
    }
}

@media screen and (min-width:992px) and (max-width:1200px) {

    div.saveBtndiv.col-lg-3 {
        width: 45% !important;
    }





    div.sub-nav.col-lg-9 {
        width: 55% !important;
    }

    .btn-style-card {
        width: 50% !important;
    }

    .cussocialdelBtn {
        right: -30px !important;
        left: unset !important;
    }
}


/* --------------------------------------------
       7. Link Cards
    -------------------------------------------- */
.link-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0px 4px 15px 0px rgba(22, 28, 35, 0.05) !important;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: grab;
    /* transition: transform 0.2s, box-shadow 0.3s; */
}

.link-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.drag-handle {
    color: #667085;
    cursor: grab;
    transition: color 0.2s;
    user-select: none;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
    touch-action: none;
}

.drag-handle:hover {
    color: #444;
}

.link-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.link-title {
    color: #161C23;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    word-break: break-word;
    text-transform: capitalize;
}
.link-title-preview {
    /*color: #161C23;*/
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    word-break: break-word;
    text-transform: capitalize;
}
.link-url {
    color: #667085;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    word-break: break-word;
}

.LinkeditBtn {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #161C23;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.LinkeditBtn:hover {
    color: #667085;
}

.LinkeditBtn:hover svg path {
    stroke: #667085;
}

.LinkeditBtn svg {
    width: 15px;
}

.LinkdelBtn {
    line-height: normal;
}

.LinkdelBtn:hover svg path {
    stroke: red;
}

.linkDrag {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mainCard {
    padding: 15px;
    border-radius: 16px;
    border: 1px solid #E2E4E9;
    background: #FFF;
    box-shadow: 0px 1px 2px 0px rgba(226, 228, 233, 0.24);
    min-width: 100%;
    max-width: 700px;
}

@media screen and (max-width:400px) {
    .preinputsec {
        flex-wrap: nowrap;
    }

    /* .preinputtitle2 {
        width: 50%;
    } */
}

@media screen and (max-width:767px) {
    .mainCard {
        padding: 25px;
    }

    .link-card {
        padding: 15px 18px;
    }

    .editlinkmodal .modal-header h2 {
        font-size: 12px !important;
    }

    .cuspreinput {
        width: 50% !important;
        min-width: 45px !important;
    }

    .actionBtn button {
        font-size: 12px;
    }

    div.editlinkmodal .modal-dialog {
        min-width: auto !important;
    }

}

@media screen and (max-width:567px) {
    .link-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    div.editlinkmodal .modal-header h2 {
        font-size: 12px !important;
    }

    .mainCard {
        padding: 18px;
    }

    .social-media-item {
        padding: 0;
        flex-wrap: nowrap;
    }

    .drag-input {
        gap: 12px !important;
        align-items: flex-start;
    }

    .social-media-item {
        align-items: flex-start !important;
        /* padding: 0 !important; */
        flex-wrap: wrap !important;
    }

    .socialName {
        align-items: start !important;
    }

    .socialName img {
        width: 19px !important;
    }

    .toggleswithdel {
        gap: 10px !important;
        flex-direction: column !important;
    }

    .cussocialdelBtn {
        position: relative !important;
        left: 0 !important;
    }

    .social-media-item:hover {
        box-shadow: none !important;
    }

    .card-left {
        gap: 8px !important;
    }
}

/* Toggle Switch (regular + small) */
.toggle-switch {
    position: relative;
    width: 40px;
    height: 20px;
    background: #D2D5DA;
    border-radius: 20px;
    transition: background-color 0.3s;
    cursor: pointer;
}

.toggle-switch::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.3s;
}

.toggle-switch.active {
    background: #161C23;
}

.toggle-switch.active::after {
    transform: translateX(20px);
}

.toggle-switch-sm {
    width: 40px;
    height: 20px;
    background-color: #D2D5DA;
    border-radius: 20px;
    position: relative;
    transition: background-color 0.3s;
    cursor: pointer;
}

.toggle-switch-sm::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.3s;
}

.toggle-switch-sm.active {
    background: #161C23;
}

.toggle-switch-sm.active::after {
    transform: translateX(20px);
}

/* --------------------------------------------
       8. Social Media Items
    -------------------------------------------- */
.social-media-item {
    width: 100%;
    border-radius: 6px;
    padding: 0.75rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: background 0.3s;
    /* justify-content: space-between; */
    margin: 0 !important;
}

.social-media-item .sm-drag {
    display: flex;
    align-items: center;
}

.social-media-item:hover {
    box-shadow: 0 4px 10px rgb(0 0 0 / 15%) !important;
}

/* .social-media-item .socialURL{
    width: 45%;
} */

.sm-drag i,
.sm-drag svg {
    color: #667085;
}

.socialTitle {
    color: #161C23;
    /* font-family: Geologica; */
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    word-break: break-word;
}

.socialsubTitle {
    color: #667085;
    /* font-family: Geologica; */
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.addsocialbtn {
    display: flex;
    width: auto;
    height: 40px;
    padding: 5px 16px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border-radius: 4px;
    background: #212529;
    box-shadow: 0px 4px 15px 0px rgba(33, 37, 41, 0.05);
    color: #FFF;
    /* font-family: Geologica; */
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    border-color: #212529;
}

.addsocialbtn:hover,
.addsocialbtn:active {
    background: transparent !important;
    color: #212529 !important;
    border-color: #212529 !important;
}

.addsocialbtn i {
    width: 18px;
    height: 18px;
}

.useravatarmain {
    width: 40px;
    height: 40px;
}

.cropper-hidden {
    width: 100;
}


.socialclpicker label {
    color: #161C23;
    /* font-family: Geologica; */
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.iconsec {
    display: flex;
    justify-content: space-between;
}

.cusColorsec {
    border-top: 1px solid #E2E4E9;
    padding-top: 25px;
}

.cusradio {
    gap: 10px;
}

.form-check-input[type="radio"] {
    display: none !important;
}

.form-check {
    padding: 0 !important;
}

.form-check-label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    color: #161C23;
    /* font-family: Geologica; */
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.form-check-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 1px solid #D2D5DA;
    border-radius: 50%;
    background-color: #fff;
    transition: all 0.1s ease;
}

.form-check-input:checked+.form-check-label::before {
    border-color: #161C23;
    border: 6px solid;
    transition: all 0.1s ease;
}

.socialIcosec {
    gap: 18px !important;
}

.socialIcosec input {
    width: 60%;
    display: flex;
    padding: 10px 12px;
    align-items: center;
    gap: 8px;
    line-height: normal;
    align-self: stretch;
    border-radius: 4px;
    border: 1px solid #D0D5DD;
    background: #FFF;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}

.socialIcosec input::placeholder {
    color: #667085;
    /* font-family: Geologica; */
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.socialIcosec input:focus {
    border-color: #D0D5DD !important;
    box-shadow: none;
}

.socialName {
    width: 15%;
    color: #161C23;
    /* font-family: Geologica; */
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: flex;
    gap: 12px;
    min-width: 150px;
    align-items: center;
}

.addSocialbottombtn {
    background: transparent;
    color: #161C23;
    /* font-family: Geologica; */
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    border: none;
}

.addSocialbottombtn:hover,
.addSocialbottombtn:active {
    background: transparent !important;
    border: none !important;
    color: #667085 !important;
}

.addSocialbottombtn:hover svg path,
.addSocialbottombtn:active svg path {
    stroke: #667085;
}

.cussocialdelBtn {
    line-height: 0;
    /* position: absolute;
    left: -35px; */
}

.cussocialdelBtn:hover svg path {
    stroke: #dc3545;
}

.socialcontentsec {
    flex-wrap: wrap;
    gap: 20px;
}

.toggleswithdel {
    display: flex;
    gap: 15px;
    flex-direction: row;
    position: relative;
}

.drag-input {
    display: flex;
    gap: 18px;
    width: 100%;
}


.socialName img {
    width: 24px;
    height: auto;
}

.imagepickerglobe {
    width: 70px;
    height: 65px;
    align-items: center;
    display: flex;
    justify-content: center;
    background: rgba(244, 244, 244, 0.90);
    border-radius: 100px;
}

.imagepickerglobe img {
    cursor: default;
    width: 30px;
    height: auto;
}

.modalCloseIco {
    color: #212529 !important;
    filter: brightness(0) saturate(100%) invert(10%) sepia(22%) saturate(398%) hue-rotate(169deg) brightness(92%) contrast(89%);
    opacity: 1 !important;
}

.modalCloseIco:focus {
    box-shadow: none !important;
}

.btn-close:focus {
    box-shadow: none !important;
}

.modalCloseIco:hover {
    color: #dc3545 !important;
    filter: brightness(0) saturate(100%) invert(18%) sepia(94%) saturate(2059%) hue-rotate(335deg) brightness(117%) contrast(90%);
    opacity: 1 !important;
}

@media screen and (max-width:360px) {
    .cussocialdelBtn {
        position: relative !important;
        left: 0 !important;
    }
}

@media (max-width:400px) {
    .social-media-item {
        flex-wrap: wrap;
    }
}


@media screen and (max-width:567px) {
    .socialIcosec {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .maintabdiv {
        padding-top: 5px !important;
    }

}

@media screen and (max-width:767px) {
    .cussocialdelBtn {
        position: absolute;
        left: 45px;
    }

    .socialIcosec input {
        width: 100%;
    }
}



/* --------------------------------------------
       9. Profile Info
    -------------------------------------------- */
#profileImagePreview {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    text-transform: uppercase;
}

.userProfileLogo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-section-box {
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}


.ProfileMaincontent label {
    color: #212529;
    /* font-family: Geologica; */
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}

.ProfileMaincontent label span {
    color: #E71721 !important;
    /* font-family: Geologica; */
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}

.ProfileMaincontent .form-control {
    display: flex;
    padding: 10px 12px;
    align-items: center;
    gap: 8px;
    flex: 1 0 0;
    align-self: stretch;
    border-radius: 6px;
    border: 1px solid #D0D5DD;
    background: #fff;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    color: #161C23;
    /* font-family: Geologica; */
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.ProfileMaincontent .form-control::placeholder {
    color: #667085;
    /* font-family: Geologica; */
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

#profEmail:read-only {
    background-color: #F9FAFB !important;
    color: var(--Grey-400, #98A2B3);
    /* font-family: Geologica; */
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    height: 46px;
}

/* Theme Settings */
.buttons-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-style-card {
    width: 33.3333%;
    height: 65px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s;
    position: relative;
    padding: 0 8px;
}

.buttonsSec {
    margin-left: -8px;
    margin-right: -8px;
    row-gap: 24px;
}

.btn-style-sample {
    display: flex !important;
    border-radius: 4px;
    background: #333;
    color: #fff;
    padding: 0.3rem 0.6rem;
    font-size: 0.8rem;
    font-weight: 500;
    border: none;
    display: inline-block;
    transition: background 0.3s, color 0.3s;
    width: 100%;
    padding: 5px 16px;
    text-align: center;
    /* font-family: Geologica; */
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    height: 50px;
    justify-content: center;
    align-items: center;
}

.ProfileTitle {
    color: #161C23;
    /* font-family: Geologica; */
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.profileInfo h5 {
    color: #161C23;
    /* font-family: Geologica; */
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.profileInfo p {
    color: #667085;
    /* font-family: Geologica; */
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.userDetails {
    display: flex;
    align-items: center;
    gap: 20px;
}

.profileactionBtn {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.profile-section-boxs .form-control {
    display: flex;
    padding: 10px 12px;
    align-items: center;
    gap: 8px;
    flex: 1 0 0;
    align-self: stretch;
    border-radius: 6px;
    border: 1px solid #D0D5DD;
    background: #FFF;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}

@media screen and (max-width:767px) {
    .flex-sm-wrap {
        flex-wrap: wrap;
    }

    .profileinfosm {
        gap: 30px !important;
    }

    .btn-style-card {
        width: 100% !important;
    }

    .buttonsSec {
        row-gap: 15px;
    }
}


/* --------------------------------------------
       10. Modals
    -------------------------------------------- */

.AddLinkmodal .modal-dialog {
    min-width: 800px !important;
}


.AddLinkmodal .modal-content {
    border: 1px solid #161C23 !important;
    border-radius: 12px;
}

.AddLinkmodal .modal-header {
    border-bottom: 1px solid #161C23 !important;
    padding: 28px 28px 16px 28px;
}

.AddLinkmodal .modal-title {
    color: #212529;
    /* font-family: Geologica; */
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.AddLinkmodal .modal-body {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 24px 28px 24px 28px;
}

.AddLinkmodal .modal-body label {
    color: #212529;
    /* font-family: Geologica; */
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}

.AddLinkmodal .modal-body .form-control {
    display: flex;
    padding: 10px 12px;
    align-items: center;
    gap: 8px;
    flex: 1 0 0;
    align-self: stretch;
    border-radius: 6px;
    border: 1px solid var(--Grey-300, #D0D5DD);
    background: var(--White, #FFF);
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}

.AddLinkmodal .modal-body .form-control::placeholder {
    color: #667085;
    /* font-family: Geologica; */
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.AddLinkmodal .modal-footer {
    padding: 0px 28px 24px 28px;
    border-top: none;
}


.imgTitle {
    display: flex;
    gap: 15px;
    align-items: center;
}

.imagepicker {
    border-radius: 100% !important;
    width: 80px;
    height: 80px;
    cursor: pointer;
}

.imagepicker img {
    border-radius: 100% !important;
    width: 80px;
    height: 80px;
    display: inline-block;
    object-fit: cover;
}

.titleInput {
    width: 100%;
}

.qr-modal-body {
    display: flex;
    align-items: center;
    justify-content: center;
}

.shareqrModal .modal-dialog {
    max-width: 400px !important;
    margin: auto;
}

.shareQrcode img {
    width: 200px;
    height: auto;
    object-fit: cover;
}

.custom-btn-primary {
    display: flex;
    width: auto;
    height: 40px;
    padding: 5px 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 6px;
    background: #212529;
    box-shadow: 0px 4px 15px 0px rgba(33, 37, 41, 0.05);
    color: #FFF;
    /* font-family: Geologica; */
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}


.custom-btn-primary:hover,
.custom-btn-primary:active {
    background: transparent !important;
    color: #212529 !important;
    border-color: #212529 !important;
}

.shareqrModal .modal-title {
    color: #212529;
    /* font-family: Geologica; */
    font-size: 20px;
    font-style: normal;
    font-weight: 500 !important;
    line-height: normal;
}

@media screen and (max-width:767px) {
    .qr-modal-body {
        flex-direction: column;
        gap: 20px;
    }
}

@media screen and (max-width:850px) {
    .AddLinkmodal .modal-dialog {
        min-width: auto !important;
    }

    div.changepassmodal .modal-dialog {
        min-width: auto !important;
    }

    .imagepicker img {
        width: 70px;
        height: 70px;
    }

    .imagepicker {
        width: 70px;
        height: 70px;
    }

    .AddeditBtn,
    .btnCancel {
        font-size: 14px;
        width: auto;
    }

    .AddeditBtnsvg,
    .btnCancel svg {
        width: 16px;
    }
}

.changepassmodal .modal-dialog {
    min-width: 600px !important;
}


.changepassmodal .modal-content {
    border: 1px solid #161C23 !important;
    border-radius: 12px;
}

.changepassmodal .modal-header {
    border-bottom: 1px solid #161C23 !important;
    padding: 28px 28px 16px 28px;
}

.changepassmodal .modal-title {
    color: #212529;
    /* font-family: Geologica; */
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.changepassmodal .modal-body {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 24px 28px 24px 28px;
}

.changepassmodal .modal-body label {
    color: #212529;
    /* font-family: Geologica; */
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}

.changepassmodal .modal-body .form-control {
    display: flex;
    padding: 10px 12px;
    align-items: center;
    gap: 8px;
    flex: 1 0 0;
    align-self: stretch;
    border-radius: 6px;
    border: 1px solid var(--Grey-300, #D0D5DD);
    background: var(--White, #FFF);
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}

.changepassmodal .modal-body .form-control::placeholder {
    color: #667085;
    /* font-family: Geologica; */
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.changepassmodal .modal-footer {
    padding: 0px 28px 24px 28px;
    border-top: none;
}

.passmodaldiv {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-direction: column;
}



/* --------------------------------------------
       11. Common button css
    -------------------------------------------- */


.btnCancel {
    display: flex;
    width: auto;
    height: 40px;
    padding: 5px 22px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: #212529;
     /* font-family: Geologica; */ 
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    border-radius: 4px;
    border: 1px solid #E9E9E9;
    background: #F7F7F9;
    box-shadow: 0px 4px 15px 0px rgba(33, 37, 41, 0.03);
}

.btnCancel:hover,
.btnCancel:active {
    background: #dc3545 !important;
    border-color: #dc3545 !important;
    color: #fff !important;
}

.btnCancel:hover svg path {
    stroke: #FFF;
}

.AddeditBtn {
    display: flex;
    width: auto;
    height: 40px;
    padding: 5px 16px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border-radius: 4px;
    background: #212529;
    box-shadow: 0px 4px 15px 0px rgba(33, 37, 41, 0.05);
    color: #FFF;
     /* font-family: Geologica; */ 
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    border-color: #212529;
}

.AddeditBtn:disabled {
    display: flex;
    width: auto;
    padding: 5px 16px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border-radius: 4px;
    background: #212529;
    box-shadow: 0px 4px 15px 0px rgba(33, 37, 41, 0.05);
    color: #FFF;
     /* font-family: Geologica; */ 
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    border-color: #212529;
}

.AddeditBtn:focus-visible {
    background: transparent !important;
    color: #212529 !important;
    border-color: #212529 !important;
    box-shadow: none !important;
}


.PreviewmainBtn {
    display: flex;
    width: auto;
    height: 40px;
    padding: 5px 22px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: #212529;
    /* font-family: Geologica; */
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    border-radius: 4px;
    border: 1px solid #E9E9E9;
    background: #F7F7F9;
    box-shadow: 0px 4px 15px 0px rgba(33, 37, 41, 0.03);
}

.PreviewmainBtn:hover svg path,
.PreviewmainBtn:hover svg circle {
    stroke: #28a745;
}

.PreviewmainBtn:hover,
.PreviewmainBtn:active {
    background: transparent !important;
    color: #28a745 !important;
    border-color: #28a745 !important;
}

.AddeditBtn:hover,
.AddeditBtn:active {
    background: transparent !important;
    color: #212529 !important;
    border-color: #212529 !important;
}


.AddeditBtn:hover svg path {
    stroke: #212529;
}

.AddeditBtn.profile:hover svg path,
.AddeditBtn.profile:active svg path {
    fill: #212529;
}

/* --------------------------------------------
       12. Custom select2 css
    -------------------------------------------- */

.cusSelect2 .select2-container .select2-selection--single {
    height: 46px !important;
}

.cusSelect2 .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #161C23 !important;
    /* font-family: Geologica; */
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal !important;
}

.cusSelect2 .select2-container .select2-selection--single:focus,
.cusSelect2 .select2-container .select2-selection--single:focus {
    border-color: #D0D5DD !important;
    box-shadow: none !important;
}

.cusSelect2 .select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 15px !important;
}

.cusSelect2 .select2-container--default .select2-selection--single .select2-selection__arrow b {
    background-image: url(/assets/images/droparrow.svg);
    display: block;
    background-size: cover;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    border: none !important;
}

.cusSelect2 .select2-container--default .select2-selection--single .select2-selection__arrow b {
    margin-top: -5px !important;
}

.cusSelect2 .select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #bd3b3b !important;
}

.select2-container.select2-container--open.customselect .select2-search__field {
    border: 1px solid #D0D5DD;
    border-radius: 6px;
}

.select2-container.select2-container--open.customselect .select2-search__field:focus-visible {
    outline: none !important;
}

.select2-container.select2-container--open.customselect .select2-results__option {
    color: #161C23;
    /* font-family: Geologica; */
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.select2-container.select2-container--open.customselect .select2-results__option--selected {
    background-color: #000000;
    color: #fff !important;
}

.select2-container.select2-container--open.customselect .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #000000;
    color: #fff !important;
}

.select2-container.select2-container--open.customselect .select2-results>.select2-results__options::-webkit-scrollbar {
    width: 8px;
}

.select2-container.select2-container--open.customselect .select2-results>.select2-results__options::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

.select2-container.select2-container--open.customselect .select2-results>.select2-results__options::-webkit-scrollbar-thumb {
    background-color: #212529;
    border-radius: 4px;
    border: 2px solid #f0f0f0;
}

.select2-container.select2-container--open.customselect .select2-results>.select2-results__options::-webkit-scrollbar-thumb:hover {
    background-color: rgb(99, 101, 101);
    /* Darker shade on hover */
    cursor: pointer;
}

.select2-container .select2-dropdown {
    z-index: 8 !important;
}


/*custom css*/
@media (min-width: 1200px) {
    .col-xl-8 {
        flex: 0 0 auto;
        width: 66.66666667% !important;
    }

    div.left-content {
        width: calc(73.66666667% - 180px) !important;
        left: 180px;
    }

    aside.right-preview.col-xl-4 {
        flex: 0 0 auto;
        width: 27.333333% !important;
    }

}

@media (min-width:1800px) {
    div.left-content {
        width: calc(75% - 180px) !important;
        left: 180px;
    }

    .col-lg-9 {
        flex: 0 0 auto !important;
        width: 75% !important;
    }

    div.AddeditBtn {
        width: auto !important;
    }

    .col-lg-3 {
        flex: 0 0 auto !important;
        width: 25% !important;
    }


}


/* --------------------------------------------
       13. Theme setting css
    -------------------------------------------- */

.titledissec {
    gap: 24px;
}

.titledissec>* {
    width: 100% !important;
}

.titledissec .form-control {
    display: flex;
    padding: 10px 12px;
    align-items: center;
    gap: 8px;
    flex: 1 0 0;
    align-self: stretch;
    border-radius: 6px;
    border: 1px solid #D0D5DD;
    background: #FFF;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    height: 46px;
}


.template-button.buildOwn {
    border: 2px dashed #161C23 !important;
    background: #FFF !important;
    padding: 0px 20px !important;
    box-shadow: 0px 1px 2px 0px rgba(226, 228, 233, 0.24);
    color: #161C23;
    text-align: center;
    /* font-family: Geologica; */
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    min-height: 150px;
}

.lay-theme-main:first-child {
    padding: 0 !important;
    background: transparent !important;
    border: 0px dashed transparent !important;
    overflow: hidden;

}

.template-button {
    padding: 0 !important;
    background: transparent !important;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    border: 1px solid rgba(16, 24, 40, 0.05) !important;
    overflow: hidden;

}

.template-button img {
    transition: .8s;
}

.template-button img:hover {
    transform: scale(1.1);
}

.layoutBtn {
    color: #161C23;
    /* font-family: Geologica; */
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    padding: 0 !important;
}

.layoutBtn:hover {
    color: #4F4F4F;
}

.colorsSec>* {
    width: 180px
}

.colorsSec {
    gap: 35px;
}

.InnerColname.active {
    border: 1px dashed #161C23 !important;
    padding: 8px;
    background: #fff !important;
    border-radius: 0 !important;
}

.flatColor {
    height: 355px;
    padding: 15px;
    background: #1570ef !important;
    box-shadow: 0px 1px 2px 0px rgba(226, 228, 233, 0.24) !important;
    border: none !important;
    border-radius: 0px !important;
    display: flex;
    align-items: end;
    justify-content: center;
}

.gradientColor {
    height: 355px;
    padding: 15px;
    background: linear-gradient(180deg, #1570ef 0%, #0247a7 100%) !important;
    box-shadow: 0px 1px 2px 0px rgba(226, 228, 233, 0.24) !important;
    border: none !important;
    border-radius: 0px !important;
    display: flex;
    align-items: end;
    justify-content: center;
}

.bgImage {
    display: flex;
    height: 355px;
    padding: 15px;
    position: relative;
    background-color: #FEC230 !important;
    border-radius: 0 !important;
    border: none !important;
}

.bgImage::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    height: 50px;
    width: 50px;
    background-position: center;
    background-size: cover;
    z-index: 2;
    cursor: pointer;
    transform: translate(-50%, -50%);
    background-image: url(/assets/images/imageico.svg);
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7468%) hue-rotate(98deg) brightness(114%) contrast(100%);
}

.more-theme {
    opacity: 0;
    display: none;
}

.more-theme.show {
    opacity: 1;
    display: block;
}

.layoutsec {
    border-top: 1px solid #E2E4E9;
}

.lay-theme-main {
    row-gap: 24px;
}

.InnerColname {
    color: #fff !important;
    text-align: center;
    /* font-family: Geologica; */
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    background: #fff !important;
    border-radius: 0 !important;
    border: none !important;
    padding: 0;
}

.Maincolor {
    color: #161C23;
    text-align: center;
    /* font-family: Geologica; */
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 0 !important;
}

.colormainsec {
    display: flex;
    align-items: center;
    gap: 10px;
}

.colormainsec .asColorPicker-trigger {
    width: 35px !important;
    height: 35px !important;
    border-radius: 4px !important;
    border: 1px solid #D0D5DD !important;
}

.colormainsec .asColorPicker-trigger span {
    border-radius: 3px !important;
}

.colormainsec .asColorPicker-clear {
    right: -4px !important;
    left: auto !important;
}

.cusfontselect {
    display: flex;
    padding: 10px 12px;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-radius: 4px;
    border: 1px solid #D0D5DD;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}

.cusfontselect option {
    color: #161C23;
    /* font-family: Geologica; */
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.cusfontselect::placeholder {
    color: #161C23;
    /* font-family: Geologica; */
    font-size: 14px !important;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.cusfontselect:focus {
    border-color: #D0D5DD !important;
    box-shadow: none !important;
}


@media screen and (max-width:567px) {
    .titledissec {
        flex-wrap: wrap;
        gap: 15px;
    }

    .colorsSec {
        gap: 15px;
    }

    .colorsSec>* {
        width: 100% !important;
    }

    div.themes {
        width: 100% !important;
    }
}

.innerdiv {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: calc(100vh - 240px);
    padding: 55px 30px;
    gap: 24px;


}

.firstSec {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
}


/* --------------------------------------------
       14. Preview page css
    -------------------------------------------- */
.previewMaincontainer {
    height: 100vh;
}

.previewMaincontainer .phone-frame {
    height: 100% !important;
    border-radius: 0;
    overflow: auto;
    display: block;
}

.previewMaincontainer .prev-maincontant {
    margin: auto;
    padding: 40px 55px !important;
    height: 100%;
}

.previewMaincontainer .firstSec {
    width: 50% !important;
}

.previewMaincontainer .preview-description {
    width: 100%;
    font-weight: 500 !important;
}

.previewMaincontainer .preview-link {
    cursor: pointer !important;
}


/* header blade inline starts css */

.asColorPicker-wrap .asColorPicker-clear,
.asColorPicker-wrap:hover .asColorPicker-clear {
    color: #000;
}

.asColorPicker-wrap .asColorPicker-clear {
    display: inherit;
}

.asColorPicker-clear {
    display: none;
    position: absolute;
    top: -3px;
    left: 15px;
    border-radius: 10px;
    z-index: 1;
    color: #fff;
    text-decoration: none;
    font-size: 10px;
}

a.asColorPicker-clear::after {
    content: "X";
    font-family: 'themify';
    width: 15px;
    height: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #cd0000;
    color: #fff;
    font-size: 8px;
    border-radius: 10px;
}

.asColorPicker-trigger {
    width: 25px !important;
    height: 25px !important;
    border: 1px solid #687278;
}

.theme-bg-mode-gradient a.asColorPicker-clear {
    display: none;
}

button.theme-bg-btn.active {
    background-color: #000;
}

.btn-style-card.selected {
    border: 2px dashed #100101;
}

input.socialURL.is-invalid {
    border: 2px solid red;
}

.loader-mask {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 99999;
}

.loader {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 50px;
    height: 50px;
    font-size: 0;
    color: #00c9d0;
    display: inline-block;
    margin: -25px 0 0 -25px;
    text-indent: -9999em;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

.lead {
    font-size: 13px;
}

.loader div {
    background-color: #d9b06a;
    display: inline-block;
    float: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    opacity: .5;
    border-radius: 50%;
    -webkit-animation: ballPulseDouble 2s ease-in-out infinite;
    animation: ballPulseDouble 2s ease-in-out infinite;
}

.loader div:last-child {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}


@-webkit-keyframes ballPulseDouble {

    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes ballPulseDouble {

    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.switch-toggle {
    display: inline-flex;
    background-color: #625e5e;
    border-radius: 16px;
    padding: 8px 12px;
    gap: 10px;
}

.switch-toggle .nav-link {
    padding: 6px 10px;
    border-radius: 8px;
    background: #fff;
    color: #000;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.switch-toggle .nav-link.active {
    background-color: #000;
}

.themes {
    width: 25% !important;
}

.themes img {
    width: 100% !important;
    height: 100%;
    margin: 0 auto;
    display: block;
}

.own-template {
    font-size: 20px;
    font-weight: 600;
    width: 100%;
    height: 100%;
}

.template-button {
    width: 100%;
    /* height: 100%; */
}

.btn-view-more {
    line-height: 1.8;
    font-weight: 600 !important;
    display: flex !important;
    justify-content: flex-start;
    width: fit-content !important;
}


.theme-bg-btn {
    color: #333;
    background: #f0f0f0;
}

button.theme-bg-btn.active {
    background-color: #000;
    color: #ffffff;
}


.link-card {
    cursor: default;
    box-shadow: 0px 4px 15px 0px rgba(22, 28, 35, 0.05);
    transition: transform none, box-shadow none !important;
    transition: all linear 0.3s;
}

.link-card:hover {
    box-shadow: 0 4px 10px rgb(0 0 0 / 15%) !important;
    transition: transform none, box-shadow none !important;
}

#profEmail:read-only {
    background-color: lightgray;
}

.social-media-item .sm-drag {
    cursor: grab;
}

#profEmail:focus {
    outline: none;

}

.country-label,
.state-label {
    display: block !important;
}

#select2-profCountry-container,
#select2-profState-container {
    padding-left: 12px !important;
}

.select2-dropdown {
    border: 1px solid #dee2e6 !important;
}

.profCountry .select2-container .select2-selection--single:focus,
.profState .select2-container .select2-selection--single:focus {
    color: #495057;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.profState .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 5px;
}

.profState .select2-container--default .select2-selection--single {
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    align-items: center;
    display: flex;
}

.profState .select2-container .select2-selection--single {
    height: 38px;
}

.profState .select2-container {
    width: 100% !important;
}


.profCountry .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 5px;
}

.profCountry .select2-container--default .select2-selection--single {
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    align-items: center;
    display: flex;
}

.profCountry .select2-container .select2-selection--single {
    height: 38px;
}

.profCountry .select2-container {
    width: 100% !important;
}

.template-button {
    padding: 20px;
    background: transparent;
    border: 2px dashed #ccc;
}

.active-template {
    border: 2px dashed #100101;
}

.headerprofile .user-avatar {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.headerprofile .dropdown-menu-end {
    transform: translate3d(0px, 50px, 0px);
    transition: transform 0.5s ease;
}

.headerprofile .dropdown-menu-end.show {
    transform: translate3d(0px, 50px, 0px);
    transition: transform 0.5s ease;
}

.headerprofile .dropdown-toggle.show {
    border: 0px;
}

.headerprofile .dropdown-toggle {
    border: 0px;
}

.headerprofile .dropdown-toggle::after {
    display: none;
}

.headerprofile .dropdown-item.user-name {
    margin-bottom: 0px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    white-space: nowrap;
    max-width: 200px;
}


.headerprofile .dropdown-item.user-name::before {
    font-family: "Font Awesome 5 Free";
    content: "\f007";
    font-weight: 900;
    margin-right: 8px;
    display: inline-block;
}

.headerprofile .dropdown-item.logout-button::before {
    font-family: "Font Awesome 5 Free";
    content: "\f2f5";
    font-weight: 900;
    margin-right: 8px;
    display: inline-block;
}

@media (max-width:1200px) {
    .themes {
        width: 33.33% !important;
    }
}

@media (max-width:768px) {
    .themes {
        width: 33.33% !important;
    }
}

@media (max-width:576px) {
    .themes {
        width: 50% !important;
    }
}

.topBaruser {
    display: flex;
    gap: 10px;
    align-items: center;
}

.usernameSec {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    max-width: 100px;
    text-transform: capitalize;
}

.profilswitch .modal-content {
    border-radius: 16px;
    border: 1px solid #E2E4E9;
}

.profilswitch .modal-title {
    color: #161C23;
    /* font-family: Geologica; */
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal
}

.profilswitch .Modalclose {
    font-size: 5px;
    border: 1px solid;
    border-radius: 50px;
    padding: 5px;
    opacity: 1;
    color: #1C274C;
    right: 8px;
    position: relative;
}

.profilswitch .modal-body {
    padding: 16px 12px 12px;
}

.profilswitch .modal-header {
    padding: 12px;
}

.personalSwitchBtn,
.perofessSwitchBtn {
    display: flex;
    height: 100%;
    width: 100%;
    padding: 6px 12px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-radius: 8px;
    border: 1px solid #E2E4E9;

    background: #F7F7F7;

    box-shadow: 0px 2px 8px 0px rgba(226, 228, 233, 0.25);
    text-align: left;
}

.personalSwitchBtn:hover,
.perofessSwitchBtn:hover,
.personalSwitchBtn:active,
.perofessSwitchBtn:active {
    border: 1px solid #000;
    border-color: #000 !important;
}

.drag-handle svg {
    width: 10px;
    height: 15px;
}

.mainBtnDiv,
.mainBtndiv2 {
    display: flex;
    gap: 18px;
}

.maincontent1 {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.firstpara,
.firstpropara {
    color: #161C23;
    /* font-family: Geologica; */
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.secondpara,
.secondpropara {
    color: #667085;
    /* font-family: Geologica; */
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.mainBtnDiv span,
.mainBtndiv2 span {
    display: flex;
    gap: 5px;
    flex-direction: column;
}

@media (min-width: 576px) {
    .profilswitch .modal-dialog {
        max-width: 400px;
        margin-right: auto;
        margin-left: auto;
    }
}

@media (max-width:650px) {
    .usernameSec {
        display: none;
    }
}

/* Modal Container */
.custom-modal-content {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border: 1px solid #e5e5e5;
}


.custom-modal-header h1 {
    font-size: 1.25rem;
    margin: 0;
}

.custom-btn-secondary {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    color: #4e54c8;
    font-weight: 600;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.custom-btn-secondary:hover {
    background: #f8f9fc;
    color: #3b3f9d;
}

/* Modal Body */
.share-modal-body {
    padding: 2rem;
    font-size: 1rem;
}

/* Icons inside Buttons */
.custom-btn-primary i,
.custom-btn-secondary i {
    vertical-align: middle;
}

.qr-description {
    text-align: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.qr-description p {
    margin: 0;
}

.qr-description .text-primary {
    font-size: 1.2rem;
}

.qr-description .text-muted {
    font-size: 0.9rem;
    color: #6c757d;
}

#qrCodeContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#qrCodeDisplay {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    margin: 0 auto;
}


/* header blade inline ends css */

/*demo blade inline starts*/
.imagepicker2 {
    border-radius: 100% !important;
    width: 80px;
    height: 80px;
    cursor: pointer;
}

.imagepicker2 img {
    border-radius: 100% !important;
    width: 80px;
    height: 80px;
    display: inline-block;
    object-fit: cover;
    border: 1px solid #edeaea;
}

button.AddeditBtn.disabled {
    background-color: #232426;
    border-color: #232426;
}

/*demo blade inline ends*/


@media screen and (max-width:767px) {
    .previewMaincontainer .prev-maincontant {
        padding: 30px 35px !important;
    }

    .previewMaincontainer .innerdiv {
        padding: 0px !important;
    }

    .previewMaincontainer .preview-description {
        width: 100% !important;
    }

}

@media screen and (max-width:800px) {
    .previewMaincontainer .firstSec {
        width: 100% !important;
    }
}

/* Theme setting new css */
.txtformatmain {
    display: flex;
    gap: 10px;
}

.Txtforoption img {
    filter: brightness(0) saturate(100%) invert(70%) sepia(26%) saturate(27%) hue-rotate(328deg) brightness(96%) contrast(96%);
    width: 20px;
    height: auto;
    cursor: pointer;
}

.textFormat .txtformatmain input[type="checkbox"] {
    display: none;
}

.textFormat .txtformatmain input[type="checkbox"]:checked+label img {
    filter: none !important;
}

.colformat {
    display: flex;
    gap: 25px;
}

.copyrightpart img {
    width: 100px;
    height: auto;
}

.copyrightpart {
    background: white;
    padding: 6px;
    border-radius: 4px;
}

.headerprofile .dropdown-item.passwordC {
    margin-bottom: 0;
}

.headerprofile .dropdown-item.passwordC::before {
    font-family: "Font Awesome 5 Free";
    content: "\f13e" !important;
    font-weight: 900;
    margin-right: 8px;
    display: inline-block;
}

.headerprofile .dropdown-item.cusDropdown {
    cursor: pointer;
}

.headerprofile .dropdown-item.cusDropdown:hover {
    background-color: #212529;
    color: #fff;
}


/* iphone css */
.iphone {
    border: 4px solid #3b444b;
    border-radius: 50px;
    width: 320px;
    background-color: #000;
    overflow: hidden;
}

.iphone-14 {
    width: 100%;
    height: 600px;
    border: 5px solid black;
    background: white;
    border-radius: 47px;
    position: relative;
}

.dynamic-island {
    width: 100px;
    height: 25px;
    background: black;
    border-radius: 50px;
    margin: 0 auto;
    margin-top: 10px;
    position: absolute;
    left: 90px;
    z-index: 8;
    transition: all .5s;
}

.dynamic-island-camera {
    color: white;
    position: absolute;
    top: 18px;
    right: 120px;
    background: #121212;
    box-shadow: 0 0 1px grey;
    width: 10px;
    height: 10px;
    border-radius: 50px;
    z-index: 8;
    transition: all .5s;
}

.operator-icons {
    position: absolute;
    top: 14px;
    right: 55px;
    font-size: 12px;
    transition: all .2s;
    color: white;
    filter: invert(1);
    z-index: 1;
}

.operator-icons i {
    filter: invert(1);
    transition: all .2s;
}

.operator-icons span {
    filter: invert(1);
    /* Invert the 5G text */
}

.battery {
    width: 20px;
    height: 10px;
    border: 2px solid #ffffff;
    border-radius: 3px;
    font-size: 5px;
    text-align: center;
    color: #000;
    background: #ffffff;
    font-weight: bold;
    position: absolute;
    top: 4px;
    right: -28px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 0;
    filter: invert(1);
}

.date-area {
    width: 100%;
    text-align: center;
    color: rgb(126, 42, 42);
}

.bi-reception-4::before {
    content: "\f514";
}

.bell-animation-area {
    width: 100px;
    height: 25px;
    background: black;
    border-radius: 47px;
    position: absolute;
    left: 100px;
    top: 10px;
    z-index: 99999;
    display: none;
    color: #fff;
    animation: dynamicIslandAnm 7s;
}

@keyframes dynamicIslandAnm {

    0%,
    100% {
        width: 100px;
        height: 25px;
        left: 100px;
        opacity: 0 !important;
    }

    20%,
    80% {
        width: 270px;
        height: 40px;
        left: 15px;
        display: block;
    }
}

.phonemaindiv {
    display: flex;
    justify-content: center;
}

.prev-maincontant::-webkit-scrollbar {
    width: 0px;
}

.prev-maincontant::-webkit-scrollbar-track {
    background: transparent;
}

.prev-maincontant::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 4px;
}

.prev-maincontant::-webkit-scrollbar-thumb:hover {
    background: transparent;
}


@media(max-width:340px) {
    .iphone-14 {
        width: auto !important;
    }

    .dynamic-island {
        left: 65px;
    }
}

/* color palatte css */

.asColorPicker-dropdown {
    border: 1px solid #D0D5DD !important;
    border-radius: 6px !important;
}

.asColorPicker-preview {
    margin-right: 25px !important;
    margin-bottom: 15px !important;
}

.asColorPicker-preview li {
    width: 40px !important;
    height: 40px !important;
}

.asColorPicker-palettes li {
    width: 18px !important;
    height: 18px !important;
}

.asColorPicker-hex {
    border: 1px solid #D0D5DD !important;
    border-radius: 6px !important;
}

.asColorPicker-preview:after {
    height: 40px !important;
}

.asColorPicker-mask {
    z-index: 7 !important;
}

.asColorPicker-dropdown {
    z-index: 8 !important;
}

.imagepicker2 img {
    cursor: default;
}

@media screen and (min-width:993px) and (max-width:1100px) {
    .right-preview.col-lg-3 {
        position: relative !important;
    }
}

@media screen and (min-width:1100px) and (max-width:1700px) {
    .phonemaindiv .iphone {
        border-width: 0.208vw;
        border-radius: 2.604vw;
        width: 18.667vw;
    }

    .phonemaindiv .iphone-14 {
        width: 100%;
        height: calc(100vh - 35.25vh);
        border-width: 0.26vw;
        border-radius: 2.448vw;
    }

    .phonemaindiv .dynamic-island {
        width: 5.208vw;
        height: 1.302vw;
        border-radius: 2.604vw;
        margin-top: 0.521vw;
        left: 6.688vw;
    }

    .phonemaindiv .dynamic-island-camera {
        top: 0.938vw;
        right: 6.729vw;
        width: 0.521vw;
        height: 0.521vw;
        border-radius: 2.604vw;
    }

    .phonemaindiv .operator-icons {
        top: 0.729vw;
        right: 2.865vw;
        font-size: 0.625vw;
    }

    .phonemaindiv .battery {
        width: 1.042vw;
        height: 0.521vw;
        border-width: 0.104vw;
        border-radius: 0.156vw;
        font-size: 0.26vw;
        top: 0.208vw;
        right: -1.458vw;
    }

    .phonemaindiv .phone-frame {
        border-radius: 2.083vw;
        gap: 1.302vw;
    }

    .previewMaincontainer .phone-frame {
        border-radius: 0px;
    }

    .phonemaindiv .innerdiv {
        min-height: calc(100vh - 12.5vw);
        padding: 2.865vw 1.563vw;
        gap: 1.25vw;
    }

    .phonemaindiv .firstSec {
        gap: 1.042vw;
    }

    .phonemaindiv .phone-profile {
        gap: 1.042vw;
    }

    .phonemaindiv .preview-link {
        padding: 0.625vw;
        gap: 0.521vw;
        border-radius: 0.417vw;
    }

    .phonemaindiv .preview-links a>p {
        font-size: 0.833vw;
    }

    .phonemaindiv .preview-link svg {
        width: 1.25vw;
        height: 1.25vw;
    }

    .phonemaindiv .phone-profile img {
        width: 3.906vw;
        height: 3.906vw;
    }

    .phonemaindiv .preview-title {
        font-size: 1.25vw;
    }

    .phonemaindiv .preview-description {
        font-size: 0.625vw;
    }

    .phonemaindiv .preview-links {
        gap: 0.729vw;
    }

    .phonemaindiv .socialIconPreview {
        gap: 0.313vw;
    }

    .phonemaindiv .socialIconPreview a svg {
        width: 1.25vw;
        height: 1.25vw;
    }

    .phonemaindiv .copyrightpart {
        padding: 0.313vw;
        border-radius: 0.208vw;
    }

    .phonemaindiv .copyrightpart img {
        width: 5.208vw;
    }
}


/* floating icon */
.fl-fl {
    background: #000000;
    letter-spacing: 3px;
    padding: 15px 10px;
    width: 190px;
    font-size: 14px;
    position: fixed;
    right: -152px;
    z-index: 9;
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

.fl-fl span {
    color: #fff !important;
    text-decoration: none;
    text-align: center;
    vertical-align: top !important;
}

.float-copy {
    top: 160px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 6px;
}

.float-share {
    top: 215px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 6px;
}

.float-qr {
    top: 270px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 6px;
}

.float-sm i {
    color: #fff;
    font-size: 18px;
}

.croppingImg .modal-content {
    border-radius: 20px !important;
}

.croppingImg .modal-header {
    border: 0 !important;
}

.croppingImg .modal-dialog {
    max-width: 500px;
}

.croppingImg .modal-dialog {
    border-radius: 20px !important;
}

.croppingImg .cropper-container {
    width: 100% !important;
    overflow: hidden;
}

.modal-title.ProfileTitle {
    font-size: 16px !important;
}

.croppingImg .modal-footer>* {
    width: 50%;
    margin: 0 !important;
}

.croppingImg .modal-body {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}


.croppingImg .modal-footer {
    border: 0 !important;
    flex-wrap: nowrap !important;
    gap: 8px;
}



#cropperImage {
    max-width: 100%;
    max-height: 300px;
    display: block;
    object-fit: contain;
}

#ProfImgCropper {
    max-width: 100%;
    max-height: 300px;
    display: block;
    object-fit: contain;
}

#croppedCanvasContainer canvas {
    max-width: 100%;
    max-height: 250px;
    display: block;
}

.croppingImg .modal-header .btn-close {
    font-size: 12px !important;
    opacity: 1 !important;
}

.previewQr {
    position: relative;
}


.qrpopup {
    position: absolute;
    right: 0;
    bottom: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background-color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.qrpopup svg {
    width: 8px;
    height: 8px;
}

.cusimgselect .form-control {
    display: flex;
    padding: 6px 12px;
    align-items: center;
    gap: 8px;
    flex: 1 0 0;
    align-self: stretch;
    border-radius: 6px !important;
    border: 1px solid #D0D5DD;
    background: #FFF;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}

.cusimgselect .form-control.has-image {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.shareBtnqr {
    display: flex;
    width: auto;
    height: 40px;
    padding: 5px 22px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 4px;
    border: 1px solid #E9E9E9;
    background: #F7F7F9;
    box-shadow: 0px 4px 15px 0px rgba(33, 37, 41, 0.03);
    color: #212529;
    /* font-family: Geologica; */
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}

.sub-nav .owl-item {
    display: flex;
    justify-content: center;
}

.share-modal-body,
.custom-modal-header {
    background: #fff;
}

.shareBtnqr:hover,
.shareBtnqr:active {
    background: #FEC230;
    border-color: #FEC230;
}


.cuscontrol {
    display: flex;
    padding: 10px 12px;
    align-items: center;
    gap: 8px;
    flex: 1 0 0;
    align-self: stretch;
    border-radius: 6px !important;
    border: 1px solid #D0D5DD;
    background: #FFF;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    height: 44px !important;
}

.browseImg {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e9ecef;
    color: #000000;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-color: transparent;
    padding: 6px 15px;
}

.browseImg:hover {
    background-color: #e9ecef;
    border-color: transparent;
    color: #000;
}

.chooseImgremove {
    height: 100%;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0;
}



@media(min-width:1800px) {
    .croppingImg .modal-content {
        height: 100% !important;
    }
}
/*.moving-glow-border {
  position: relative;
  padding: 20px;
  border-radius: 10px;
  background: #111;
  color: #fff;
  z-index: 1;
  overflow: hidden;
}
 
.moving-glow-border::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #fff200, #ffcc00, #ffd700, #fff200);
  background-size: 400% 400%;
  z-index: -1;
  border-radius: 12px;
  animation: borderGlowYellow 5s linear infinite;
}
 
@keyframes borderGlowYellow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}*/
/* Upgrade Button Container */

/* Glowing Button Style */
.moving-glow-border {
  position: relative;
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 2px solid var(--white-color);
  color: var(--white-color);
  font-weight: var(--font-medium);
  border-radius: 0.75rem;
  cursor: pointer;
  overflow: hidden;
  transition: background 0.3s, color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.moving-glow-border svg {
  fill: var(--white-color);
  transition: fill 0.3s;
}

.moving-glow-border:hover {
  background: var(--white-color);
  color: var(--black-color);
}

.moving-glow-border:hover svg {
  fill: var(--black-color);
}

/* Optional: Add animated glowing border effect */
/*.moving-glow-border::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    #ff00cc,
    #3333ff,
    #00ffcc,
    #ffcc00,
    #ff00cc
  );
  background-size: 400%;
  z-index: 0;
  filter: blur(10px);
  animation: animate-glow 5s linear infinite;
  opacity: 0.6;
}

.moving-glow-border::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--black-color);
  z-index: 1;
  border-radius: 0.75rem;
}

.moving-glow-border > * {
  position: relative;
  z-index: 2;
}

@keyframes animate-glow {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 400% 0;
  }
}*/
.moving-glow-border {
  position: relative;
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 2px solid transparent;
  font-weight: var(--font-medium);
  font-family: var(--body-font);
  color: var(--white-color);
  cursor: pointer;
  z-index: 1;
  overflow: hidden;
  border-radius: 8px;
}

.moving-glow-border::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg,
    #e0c706,
    #d89210,
    #e9e462,
    #f9ed04,
    #d7690f
  );
  background-size: 400%;
  border-radius: inherit;
  z-index: -1;
  animation: glowing-border 6s linear infinite;
  filter: blur(4px);
}

.moving-glow-border::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: var(--black-color); /* or transparent, or your button background */
  border-radius: inherit;
  z-index: -1;
}

@keyframes glowing-border {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}

.maindivtopbar {
    background-color: #fff;
    border: 1px solid #e3e3e3;
    /*border-radius: 8px;*/
    width: 50%;
}

.linktopbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 17px;
    border-radius: 14px;
    background: #FEFDFE;
    gap: 16px;
    border: 1px solid rgba(255, 255, 255);
}

.linkdiv p {
    margin-bottom: 0 !important;
    display: flex;
    gap: 6px;
    color: #161C23;
 /* font-family: Geologica; */
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    align-items: center;
    width: fit-content;
    white-space: nowrap;
}

.topbarinputtitle {
    max-width: 100%;
    overflow: hidden;
}

.linkdiv {
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: start;
    width: 65%;
}

.linkdiv p a {
    color: #667085 !important;

    /* font-family: Geologica; */
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: underline !important;
}

.linkdiv p a:hover {
    color: #FEC230 !important;
}

.topbareditbtn {
    display: flex;
    width: 65px;
    height: 22px;
    padding: 5px 12px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 4px;
    border: 1px solid #212529;
    background: #FEFDFE;
    box-shadow: 0px 4px 15px 0px rgba(33, 37, 41, 0.05);
    color: #212529;
     /* font-family: Geologica; */ 
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;

}

.topbarcopybtn {
    display: flex;
    width: 65px;
    height: 22px;
    padding: 5px 12px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 4px;
    background: #212529;
    box-shadow: 0px 4px 15px 0px rgba(33, 37, 41, 0.05);
    color: #FFF;
 /* font-family: Geologica; */ 
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    border: 1px solid #212529;
}

.topbareditbtn:hover {
    background-color: #212529;
    color: #fff;
}

.topbareditbtn svg,
.topbarcopybtn svg {
    min-width: 14px;
    height: auto;
}

.topbareditbtn:hover svg path {
    fill: white !important;
}

.topbarcopybtn:hover svg path {
    fill: #000 !important;
}

.topbarcopybtn:hover {
    border: 1px solid #212529;
    background: transparent;
    color: #212529;
}

.btndiv {
    display: flex;
    gap: 8px;
}

.saveBtndiv {
    display: flex;
    justify-content: end;
    border-bottom: 1px solid #e2e4e9;
}

.topbarinputtitleold span {
    color: #667085;
     /* font-family: Geologica; */ 
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    /* min-width: 93px; */
    white-space: nowrap;
    display: block;
}
.topbarinputtitle span {
    color: #667085;
     /* font-family: Geologica; */ 
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
   
  
}
#editcontent {
    display: inline-block;
    transition: box-shadow 0.2s ease;
}

#editcontent[contenteditable="true"] {
outline: none;
/*box-shadow: 0 0 0 2px #ccc;*/ /* Optional border effect */
background-color: #f9f9f9;
}
.cuspreinput2 {
    max-width: 100%;
    min-width: 45px !important;
    border: none;
    padding: 0;
    text-align: left;
    /* font-family: Geologica; */
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #161C23;
    background: transparent;
}

.cuspreinput2:focus {
    outline: none !important;
    border-bottom: 1px solid #667085;
}

.editlinkmodal .modal-content {
    border: 1px solid #E2E4E9 !important;
    padding: 16px;
}

.editlinkmodal .modal-header {
    border-bottom: 0 !important;
    padding: 0 !important;
    margin-bottom: 10px !important;
}

.editlinkmodal .modal-body {
    padding: 0 !important;
}

.editlinkmodal .modal-header h2 {
    color: #161C23;
    /* font-family: Geologica; */
    font-size: 18px !important;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.editlinkmodal .modalCloseIco {
    font-size: 12px;
    position: absolute;
    right: 27px;
    top: 18px;
    padding: 5px;
}

.topbarcopybtn:active {
    border-color: #212529 !important;
}

.editlinkmodal .modal-dialog {
    min-width: 550px !important;
    margin-top: 64px !important;
}

.buttondisable {
    pointer-events: none !important;
    background: #7f7f7f !important;
    cursor: not-allowed !important;
    border: none !important;
}
.bizSharebtnDisable {
    pointer-events: none !important;
    cursor: not-allowed !important;
    border: none !important;
}
.modal-backdrop.show{
    opacity: 0.7 !important;
}

@media (max-width:1024px) {

    .link-card{
        transition: none;
    }

    .topbareditbtn span,
    .topbarcopybtn span {
        display: none;
    }

    .topbareditbtn,
    .topbarcopybtn {
        width: auto !important;
    }
}

@media (min-width:993px) {
    .mobilecon {
        display: none;
    }

    .mobilesvg {
        display: none;
    }

}

@media (max-width:992px) {
    .saveBtndiv {
        border-bottom: none !important;
    }

    .desktopcon {
        display: none;
    }

    .desktopsvg {
        display: none;
    }

    .topbareditbtn,
    .topbarcopybtn {
        padding: 4px !important;
        border: 1px solid #E2E4E9;
    }

    .topbareditbtn svg path {
        fill: #667085;
    }

    .topbarcopybtn {
        background: transparent;
    }

    .topbarcopybtn svg path {
        fill: #1C274C;
    }
}

@media (max-width:800px) {
    .topbarinputtitle {
        display: none !important;
    }

    .linkdiv {
        width: unset;
    }

    .maindivtopbar {
        width: 100%;
        border: none;
    }

    .linktopbar {
        justify-content: end;
    }
}

@media (min-width:768px) and (max-width:992px) {
    .saveBtndiv {
        position: absolute;
        z-index: 9;
        top: 20px;
        width: auto;
        right: 0px;
    }

}

@media (min-width:768px) and (max-width:992px) {
    .linkdiv p {
        font-size: 12px;
    }

    .topbareditbtn,
    .topbarcopybtn {
        font-size: 14px;
        width: 100px;
    }
}



@media (max-width:767px) {
    .maintabdiv {
        left: 0px !important;
        width: 100% !important;
        flex-direction: column;
        gap: 10px;
    }

    .centerContent {
        top: 100px;
    }

    .saveBtndiv {
        display: flex;
        justify-content: center;
    }

    .linktopbar {
        justify-content: end;
        border: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .maindivtopbar {
        width: 100%;
        border: none !important;
    }

    .top-bar {
        gap: 15px;
    }
}

@media (max-width:567px) {

    .topbareditbtn,
    .topbarcopybtn {
        font-size: 16px;
        width: 100%;
    }

    .linkdiv {
        font-size: 12px !important;
        flex-wrap: wrap;
        justify-content: center;
    }

    .saveShareBtn.AddeditBtn {
        width: 100%;
    }

    .saveBtndiv {
        width: calc(100% - 40px);
        left: 22px;
        position: relative;
    }

    .maintabdiv {
        gap: 15px;
    }

    .float-qr {
        top: 310px;
    }

    .float-share {
        top: 255px;
    }

    .float-copy {
        top: 200px;
    }

    .asColorPicker-dropdown {
        left: 20px !important;
    }
}

@media (max-width:450px) {
    .mainLogo img {
        width: 100px !important;
        height: auto;
    }

    .mainLogo {
        gap: 10px !important;
    }

    .mobilecon {
        display: none;
    }

    .cuspreinput {
        width: 30% !important;
    }
}

/* .social-media-item {
    width: 100%;
    border-radius: 6px;
    padding: 0.75rem;
    margin-bottom: 1rem;
    gap: 1rem;
    background: #f8f9fa;
    border: 1px solid #ddd;
    align-items: center;
} */

.sm-drag {
    cursor: grab;
    display: flex;
    align-items: center;
}

.socialName {
    color: #161C23;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    gap: 12px;
    align-items: center;
    width: fit-content;
}

.socialIcosec {
    display: flex;
    gap: 10px;
}

.socialURL {
    display: flex;
    padding: 10px 12px;
    align-items: center;
    gap: 8px;
    flex: 1 0 0;
    align-self: stretch;
    border-radius: 4px !important;
    border: 1px solid #D0D5DD;
    background: #FFF;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    flex: 1 !important;
}

.socialURL::placeholder {
    color: #667085;
    /* font-family: Geologica; */
    /* font-size: 12px; */
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.socialURL:focus {
    box-shadow: none !important;
    outline: none !important;
    border-color: #D0D5DD;
}

.socialURL {
    order: 1;
    flex: 1;
}

.toggleswithdel {
    order: 2;
}

@media (max-width: 576px) {
    .social-media-item {
        padding: 15px 0 !important;
    }

    .socialURL {
        order: 2;
        max-width: 100%;
        flex: 0 0 100% !important;
    }

    .toggleswithdel {
        order: 1;
        padding: 0;
        max-width: 40%;
        flex: 0 0 40%;
        position: absolute;
        right: 20px;
    }

    .socialName {
        padding: 0;
    }

    .sm-drag {
        padding: 0;
    }

    .toggle-switch-sm::after {
        top: 2px;
        left: 3px;
        width: 14px;
        height: 14px;
    }

    .toggle-switch-sm {
        width: 30px;
        height: 18px;
    }

    .toggle-switch-sm.active::after {
        transform: translateX(11px);
    }

    .social-media-item:hover {
        box-shadow: none !important;
    }

    .toggleswithdel {
        flex-direction: row !important;
    }
}

.ctl-drp-ape-cod ul.iti__country-list{
    width: 252px;
}

.ctl-drp-con-cod ul.iti__country-list{
    width: 290px;
}


@media only screen and (min-width: 1422px){
    .ctl-drp-con-cod ul.iti__country-list{
        width: 340px;
    }
    .ctl-drp-ape-cod ul.iti__country-list{
        width: 303px;
    }
}

@media only screen and (min-width: 1600px){
    .ctl-drp-con-cod ul.iti__country-list{
        width: 405px;
    }
    .ctl-drp-ape-cod ul.iti__country-list{
        width: 368px;
    }
}
@media only screen and (min-width: 1706px){
    .ctl-drp-con-cod ul.iti__country-list{
        width: 443px;
    }
    .ctl-drp-ape-cod ul.iti__country-list{
        width: 407px;
    }
}
@media only screen and (min-width: 1920px){
    .ctl-drp-con-cod ul.iti__country-list{
        width: 533px;
    }
    .ctl-drp-ape-cod ul.iti__country-list{
        width: 495px;
    }  
}
@media only screen and (min-width: 2560px){
    .ctl-drp-con-cod ul.iti__country-list{
        width: 768px;
    }
    .ctl-drp-ape-cod ul.iti__country-list{
        width: 732px;
    } 
}
@media only screen and (min-width: 3840px){
    .ctl-drp-con-cod ul.iti__country-list{
        width: 1236px;
    }
    .ctl-drp-ape-cod ul.iti__country-list{
        width: 1204px;
    } 
}
@media only screen and (min-width: 5120px){
    .ctl-drp-con-cod ul.iti__country-list{
        width: 1730px;
    }
    .ctl-drp-ape-cod ul.iti__country-list{
        width: 1698px;
    } 
}
.qrcodpoptext span{
    color: #161C23;
    font-family: Geologica;
    font-size: 16px;
}
.qrCloseIcon{
    font-size: 10px;
    opacity: 1;
}
.minHeightText{
    min-height: 46px !important;
    height:46px;
}
.minHeightTaDesc{
    min-height: 92px !important;
}
.removedPointerIcon a{
    cursor: default;
}
.cmp-upg-rel-blo{
    position: relative;

    height: 100%; /* for safari mac */
}
.ctl-upg-ovr-blo{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #161c23bf;
    height: 100%;
    display: table;
    cursor: pointer;
}
.ctl-upg-cen-blo{
    display: table-cell;
    vertical-align: middle;
}
.ctl-upg-txt-cen{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap:4px;
}
.ctl-upg-txt-cen span{
    font-size: 11px;
    font-weight: 400;
    color:#ffffff;
    line-height: normal;
    text-align: left;
}
.cmp-pla-pad-lar{
    padding-left: 10px;
    padding-right: 10px;
}
.ctl-currentPlan{
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid #212529;
    background: #fefdfe;
    color: #212529;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    text-align: center;
    width: 100%;
    margin: auto auto 8px auto;
    border-color: #fac52e;
    transition: all 0.3s ease-in-out;
    background: var(--MainG, linear-gradient(110deg, #f2a400 0%, #fac52e 37.07%, #fac52e 71.75%, #f2a400 100%));
}
.ctl-currentPlan svg{
    height: 20px;
    width: 20px;
}
.ctl-currentPlan svg path{
    fill: #161C23;
}
.ctl-currentPlan:active{
    color: #212529;
}
.ctl-nav-lnk-dis.disabled{
    background-color: #ededed;
    border: none;
    opacity: 1;
}
/*  overlapping links */
.cmp-lnk-pos-rel{
    position: relative;

    height: 100%; /* for safari mac */
}
.ctl-lnk-ove-abo{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #161c23b0;
    height: 100%;
    /* display: table; */
    border-radius: 4px;
    cursor: pointer;
}
.ctl-lnk-cen-blo{
    /* display: table-cell; */
    display: flex;
    vertical-align: middle;
    justify-content: center;
    height: 100%;
}
.ctl-lnk-txt-cen{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap:8px;
    height: 100%;
}
.ctl-lnk-txt-cen svg path{
    /* fill: #000000; */
    fill: #ffffff;
}
.ctl-lnk-txt-cen span{
    font-size: 14px;
    font-weight: 400;
    color:#ffffff;
    /* color:#000000; */
    line-height: normal;
    text-align: left;
    letter-spacing:0.4px;
}
/*  overlapping links */

.cmp-seo-pos-rel{
    position: relative;

    height: 100%; /* for safari mac */
}
.ctl-seo-ove-abo{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* background-color: #161c23b0; */
    background-color: #161c2396;
    /* background-color: #fac52e8f; */
    height: 100%;
    /* display: table; */

    cursor: pointer;
}
.ctl-seo-cen-blo{
    /* display: table-cell; */
    /* vertical-align: middle; */
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: center;
}
.ctl-seo-txt-cen{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap:8px;
}
.ctl-seo-txt-cen svg path{
    /* fill: #000000; */
    fill: #ffffff;
}
.ctl-seo-txt-cen span{
    font-size: 14px;
    font-weight: 400;
    color:#ffffff;
    /* color:#000000; */
    line-height: normal;
    text-align: left;
    letter-spacing:0.4px;
}

@media only screen and (max-width: 575px){
    .ctl-seo-txt-cen,.ctl-lnk-txt-cen{
        flex-direction: column;
        padding: 25px;
    }
    .ctl-seo-txt-cen span,.ctl-lnk-txt-cen span{
        text-align: center;
    }
}
.cmp-hea-upg-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #121211;
    padding: 5px 5px 5px 5px;
    /* border-radius: 22px; */
}

.ctl-btn-upgrade{
    border-radius: 24px;
    overflow: hidden;
}
.ctl-btn-upgrade button{
    display: flex;
    align-items: center;
    gap: 2px;
    border: 1px solid #161C23;
    box-shadow: 0px 4px 15px 0px rgba(33, 37, 41, 0.05);
    padding: 2px 8px 2px 8px;
    border-radius: 24px;
    background-color: #FCCA0B;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.ctl-btn-upgrade button:hover{
    background-color: #FCCA0B;
     transition: all 0.3s ease-in-out;
}
.ctl-btn-upgrade button:hover span{
    /* color: #ffffff; */
      transition: all 0.3s ease-in-out;
}
.ctl-btn-upgrade button:hover svg path{
    /* fill: #ffffff; */
    transition: all 0.3s ease-in-out;
}
.ctl-btn-upgrade button:focus,.ctl-btn-upgrade button:active{
    border: 1px solid #161C23 !important;
}
.ctl-btn-upgrade button span{
    color: #161c23;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    text-align: left;
      transition: all 0.3s ease-in-out;
}
.ctl-btn-upgrade svg{
    transition: all 0.3s ease-in-out;
}
.ctl-hea-try-txt p span{
    font-weight: 400;
}
.ctl-hea-try-txt p{
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    text-align: left;
    margin-bottom:0;
    line-height: normal;
}
.bio-text{
    white-space: pre-line !important; 
    word-break: normal !important; 
    overflow-wrap: anywhere !important;
}
@media only screen and (max-width :575px){
    .cmp-com-set-res-blo .ctl-hea-try-txt p span{
        display: none;
    }
    /* .cmp-com-set-res-blo .ctl-btn-upgrade button{
        padding: 3px;
    }
    .cmp-com-set-res-blo .cmp-hea-upg-btn{
        padding: 5px;
    } */
}
@media only screen and (min-width :576px) and (max-width :767px){
    /* .cmp-com-set-res-blo .ctl-hea-try-txt p span{
        display: none;
    } */
}
@media only screen and (min-width :992px) {
    /* .cmp-com-set-res-blo{           
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    } */
}
/* personal and business responsive start */
@media only screen and (max-width :575px){
    .cmp-per-bus-res-blo .ctl-btn-upgrade button span{
        /* display: none; */
    }
    .cmp-per-bus-res-blo .ctl-hea-try-txt p span{
        display: none;
    }
    /* .cmp-per-bus-res-blo .ctl-btn-upgrade button{
        padding: 3px;
    } */
    /* .cmp-per-bus-res-blo .cmp-hea-upg-btn{
        padding: 5px;
    } */
}
/* @media only screen and (min-width :576px) and (max-width :767px){
    .cmp-per-bus-res-blo .ctl-hea-try-txt{
        display: none;
    }
    .cmp-per-bus-res-blo .cmp-hea-upg-btn{
        padding: 5px;
    }

} */
/* @media only screen and (min-width :768px) and (max-width :991px){
    .cmp-per-bus-res-blo .ctl-hea-try-txt{
        display: none;
    }
    .cmp-per-bus-res-blo .cmp-hea-upg-btn{
        padding: 5px;
        margin-right: 10px;
    }
} */
/* @media only screen and (min-width :992px) and (max-width :1130px){
    .cmp-per-bus-res-blo .ctl-hea-try-txt p span{
        display: none;
    }  
}
@media only screen and (min-width :1131px) and (max-width :1300px){
    .cmp-per-bus-res-blo .ctl-hea-try-txt{
        width: 175px;
    }
    .cmp-per-bus-res-blo .cmp-hea-upg-btn{
        padding-right: 13px;
    }
} */
@media only screen and (min-width: 1500px){
    .ctl-hea-try-txt p{
        font-size: 14px;
    }
}

/* personal and business responsive end */
.prev_font_scan span{
        font-family: var(--bs-body-font-family);
}
@media only screen and (min-width: 1200px){
    .cmp-img-lay-hei-des button.template-button{
        height: 100%;
    }
}

.ctl-rem-the-bus-btn{
    height: 44px;
}
.ctl-top-rit-rad-zer{
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

@media only screen and (min-width: 768px){
    .shareqrModal .modal-dialog{
            max-width: 300px !important;
    }
}
.ctl-sha-clos-ico{
    font-size: 13px;
    opacity: 1;
}
.cmp-use-lnk-top .topbarinputtitle{
    display: flex;
    align-items: center;
}
.cmp-use-lnk-top .topbarinputtitle span{
    white-space: nowrap;
}
@media only screen and (min-width: 1200px){
   
    .cmp-use-lnk-top .linkdiv{
        width: 70%;
    }
    .cmp-use-lnk-top .ctl-use-edi-txt{
        width: 70px;
        white-space: nowrap;
        background-color: transparent !important;
        overflow: hidden;
    }
    
}
/* header top css modification start */
.wrapper-block .top-bar{
    top: 34px;
}
.wrapper-block .main-container{
    top: 99px;
}
.wrapper-block .maintabdiv{
    top: 99px;
}

.cmp-per-bus-res-blo,.cmp-com-set-res-blo{
    position: fixed;
    top: 0;
    z-index: 99;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.05);
    width: 100%;
}
.wrapper-block .float-share {
    top: 255px;
}
.wrapper-block .float-copy {
    top: 200px;
}
.wrapper-block .float-qr {
    top: 310px;
}
@media only screen and (min-width: 1201px){
    .wrapper-block .sidemenucontainer{
        height: calc(100% - 99px);
    }
}

/* header top css modification end */
@media only screen and (min-width: 1366px){
    .maindivtopbar {
        width: 560px;
    }
}
@media only screen and (min-width: 1517px){
    .maindivtopbar {
        width: 580px;
    }
}