﻿:root {
/*    --background-color: rgba(216,229,241,1);
    --background-color2: rgba(135,181,222,1);
    --SocialIcon-background-color: black;
    --SocialIcon-color: white;
    --SocialIcon-text-color: black;
    --info-color: red;
    --ImageIcon-background-color: rgba(207, 207, 221, 1);
    --TopBackgroundImage: none;
    --TopBackgroundColor: rgba(0, 0, 0, 0.1);
    --GradientBackground: linear-gradient(to right, #ff4b5c, #FFBE28);*/

    --TopClassHeight: 160px;
    --SearchBorder: 1px solid #ccc;
    --SearchIcon: lightgray;
    --IconCircleRadius: 66px;
    --circleImgSize: 120px;
    --circleImgRadius: 50%;
    --LogoCircleImgRadius: 50%;
    --LogoCircleImgSize: 76px;
    --LogoBigRectangleInTheMiddleHeight: 180px;
    --LogoRectangleHeight: 50px;
    --LogoRectangleWidth: 140px;
    --LogoBoxSize: 76px;
    height: 100%;
    position: relative;
    /*background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(255,255,255,0.3) 0%, rgba(216,229,241,1) 35%, rgba(135,181,222,1) 100%);*/
    /*background-image: var(--BackgroundImage, radial-gradient(ellipse 70% 80% at 50% 50%, rgba(255,255,255,0.3) 0%, var(--background-color) 35%, var(--background-color2) 100%));
*/
    background-image: var(--BackgroundImage, radial-gradient(ellipse 70% 80% at 50% 50%, var(--background-color) 35%, var(--background-color2) 100%));
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /*font-family: 'Gotham Rounded',Arial, Helvetica, sans-serif;*/
    /*font-family: 'Assistant', sans-serif;*/
    color: var(--info-color);
    /*background-color: #808080;*/ /* Dark gray background */
}
html, body {
    /*height: 100%;*/ /* Make html and body take up full viewport height */
    margin: 0; /* Remove default body margin */
    padding: 0; /* Remove default body padding */
    /*overflow: hidden;*/ /* Prevent body from showing its own scrollbar */
}
/*body {
    transform: scale(0.5);
    width: 100%;
    height: 100%;
}*/
/*html, body {

    font-family: 'Gotham', Arial, Helvetica, sans-serif;
}*/
.card-container {
    font-family: "Assistant";
    /*font-family: "Assistant", sans-serif;*/
}
*:active {
}

*:focus {
}

.isLoadingPleaseWait, .isLoadingCardNotFound {
    max-width: 800px;
    margin: 50px auto;
    padding: 30px;
    background-color: antiquewhite;
    border-radius: 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    text-align: center;
    font-family: 'Gotham Rounded';
    /*    font-size: 2em;
    font-weight: bold;
    margin-bottom: 0.67em;
    color: orange;  
    user-select: none;  */
}

    .isLoadingPleaseWait, .isLoadingCardNotFound span {
        font-size: 2em;
        font-weight: bold;
        margin-bottom: 0.67em;
        text-align: center;
        color: #f7941e;
        user-select: none; /* Prevent text selection */
    }
.OneContact-logo-container {
    display: flex;
    justify-content: center;
    cursor: pointer;
    margin-bottom: 20px; /* Add some space below the logo */
}

    .OneContact-logo-container img {
        max-width: 60%; /* Make the logo responsive to the container's width */
        height: auto;
    }

/*.save-button-Icon {
    font-family: "Font Awesome 6 Free";*/ /* Make sure you're using Font Awesome 6 Free */
    /*font-weight: 400;*/ /* This corresponds to the "regular" style in Font Awesome */
    /*content: "\f057";*/ /* This is the Unicode for the "circle-xmark" icon */
    /* Use the Font Awesome class names instead of Unicode */
    /*@extend .fa-regular;
    @extend .fa-circle-xmark;
    transform: rotate(45deg);
}*/
.topClass {
    height: var(--TopClassHeight);
    background-color: transparent;
    position: relative;
    background-repeat: no-repeat;
    background-clip: border-box;
    background-image: var(--TopBackgroundImage);
    background-position: center; /* Optional: center the image */
    background-size: auto;
    background-position: center;
    background-repeat: no-repeat;
    background-clip: border-box;
}

/* Styles for mobile devices */
@media (max-width: 767px) { /* You can adjust this breakpoint as needed */
    .topClass {
        background-size: cover;
    }
}
/*    .topClass::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--TopBackgroundColor);
    }*/

    .card-container .topClass .noBackground {
        position: unset;
        background-image: unset;
    }

/*    .topClass::before .noBackground {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: unset;
    }*/
.BigRectangleInTheMiddle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);  
    /*width: auto;*/
    width: fit-content;
    margin: 10px 10px 10px 10px;
    height: var(--LogoBigRectangleInTheMiddleHeight);
}

    .BigRectangleInTheMiddle img {
        width: 90%;
/*        height: 90%;*/
        height: calc(var(--LogoBigRectangleInTheMiddleHeight) - 20px);
/*        height: 160px;*/
        object-fit: contain; /* Adjust how the image fits within the container */
    }

.flag-icon {
    /* Adjust the size of the flag icon as needed */
    width: 24px;
    height: 24px;
}


.bodyClass {
    height: calc(100vh - var(--TopClassHeight));
    overflow-y: auto; /* Add this to enable vertical scrolling */
}

.circleImg {
    position: absolute;
    /*left: 20px;*/
    top: calc(var(--TopClassHeight) - var(--circleImgSize) /2); /* Centered at the border (150px - 100px/2) */
    width: var(--circleImgSize);
    height: var(--circleImgSize);
    border-radius: var(--circleImgRadius);
    overflow: hidden;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    background-color: var(--ImageIcon-background-color);
    z-index: 1; /* Ensure it's above both sections */
    margin-inline-start: 7%
}

/**[dir="rtl"] .circleImg {
    left:unset;
    right:20px;
}*/
    .circleImg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.placeholders {
    position: absolute;
    top: 16px;
    /*right: 16px;*/
    inset-inline-end: 4vw;
    display: flex;
    /*cursor: pointer;*/
}

/**[dir="rtl"] .placeholders {
    left: 16px;
    right: unset;
}*/

.share-top-table {
    width: 100%;
}

    .share-top-table  .left {
        text-align: left;
    }
*[dir="rtl"] .share-top-table .left {
    text-align: right;
}
    .share-top-table  .right {
        text-align: right;
    }

*[dir="rtl"] .share-top-table .right {
    text-align: left;
}

.save-top-table {
    width: 100%;
}

    .save-top-table .left {
        text-align: left;
    }

*[dir="rtl"] .save-top-table .left {
    text-align: right;
}

.save-top-table .right {
    text-align: right;
}

*[dir="rtl"] .save-top-table .right {
    text-align: left;
}


    .placeholder {
        width: 30px;
        height: 30px;
    }

.rectangle {
    width: var(--LogoRectangleWidth);
    height: var(--LogoRectangleHeight);
}

    .rectangle img {
        width: 100%;
        height: 100%;
        /*object-fit: contain; */
        object-fit:scale-down; /* Adjust how the image fits within the container */
        /*cursor:pointer;*/
    }

.box {
    /* Default square shape */
    width: var(--LogoBoxSize);
    height: var(--LogoBoxSize);
    overflow: hidden;
}

    .box img {
        width: 100%;
        height: 100%;
        /*object-fit: cover; */
        object-fit: scale-down; /* Adjust how the image fits within the container */
    }

.circle {
    width: var( --LogoCircleImgSize);
    height: var( --LogoCircleImgSize);
    border-radius: var(--LogoCircleImgRadius);
    /* border: 3px solid #ffffff; */
    overflow: hidden;
}

    .circle img {
        width: 100%;
        height: 100%;
        /*object-fit: cover; */
        object-fit: scale-down; /* Adjust how the image fits within the container */
    }

.nameCard {
    /*margin-left: 140px;*/
    margin-top:10px;
    margin-bottom: 20px;
    margin-inline-start: calc(7vw + var(--circleImgSize) + 10px*2);
}

    .noImg {
        margin-inline-start: 7vw;
    }

    .centerText {
        text-align: center;
    }

.noImgCenterText {
    margin-inline-start:unset;
    text-align:center;
}
/**[dir="rtl"] .nameCard {
    margin-left:unset;
    margin-right: 140px;
}*/
h1 {
    /* Match H2 font size */
    font-size: 1.5em; /* This is a common browser default for H2.
                       Adjust if your H2 has a different specific size. */
    /* Match H2 margins */
    /* Common browser default margins for H2 are around 0.83em top and bottom. */
    margin-top: 0.83em; /* Adjust if your H2 has different specific margins. */
    margin-bottom: 0.83em; /* Adjust if your H2 has different specific margins. */
    /* Ensure font-weight matches if it differs (often 'bold' for both by default) */
    /* font-weight: bold; */ /* Uncomment and adjust if needed. */
    /* If your H2 elements have other specific styles, copy them here too, for example: */
    /* color: #yourH2color; */
    /* line-height: yourH2lineHeight; */
    /* font-family: yourH2fontFamily; */
}
.nameCard h2, .nameCard h1, .nameCard p {
    margin: 5px 0;
}

.disabled-button {
    pointer-events: none; /* Prevent clicks and other interactions */
    opacity: 0.5; /* Optional: Make it visually appear disabled */
}

.contact-button-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    /*height: 120px;*/ /* Adjust based on your needs */
    overflow: hidden;
    margin-left: 7%;
    margin-right: 7%;
    display: flex; /* Add this to enable flexbox for easy alignment */
    align-items: flex-end; /* Align items (including the logo) to the bottom of the container */
    justify-content: center; /* Center the logo horizontally */
    padding-bottom: 20px; /* Add some padding at the bottom to give the logo space */
    /*margin:0 auto;*/
}

.contact-button-container-pdfprint {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    /*height: 120px;*/ /* Adjust based on your needs */
    overflow: hidden;
    /*margin-left: 7%;
    margin-right: 7%;
    display: flex;*/ /* Add this to enable flexbox for easy alignment */
    align-items: flex-end; /* Align items (including the logo) to the bottom of the container */
    justify-content: center; /* Center the logo horizontally */
    padding-bottom: 20px; /* Add some padding at the bottom to give the logo space */
    margin:0 auto;
}

.oval-shadow {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 98%;
    height: 32px;
    background: radial-gradient(ellipse, rgba(0,0,0,0.4) 2%, rgba(0,0,0,0) 66%);
    border-radius: 50%;
    z-index: 0;
    top: 0;
}

.gradient-rectangle {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: calc(100% - 10px);
    background: var(--GradientBackground); /* linear-gradient(to right, #ff4b5c, #FFBE28);*/
    border-radius: 40px 40px 0 0;
    border-top-left-radius: 38px;
    border-top-right-radius: 38px;
    z-index: 1; /* Set a lower z-index for the gradient rectangle */
}

.gradient-rectangle-inner-content {
    position: absolute;
    top: 14px;
    left: 14px; /* 10px space from the left */
    right: 14px; /* 10px space from the right */
    bottom: 10px;
}

.logo-container {
    /*width: 50%;*/ /* Adjust as needed based on your logo size */
    z-index: 2; /* Set a higher z-index for the logo container */
    display: flex; /* Use flexbox for easy alignment */
    align-items: center; /* Vertically center the text and logo */
    bottom: 2px;
    position: absolute;
    cursor: pointer;
    white-space: nowrap;
    direction: ltr;
}

    .logo-container img {
        /* width: 100%; */
        height: 30px;
        position: relative;
        bottom: -4px;
        left: 3px;
    }

.powered-by {
    font-size: 8px; /* Adjust font size as needed */
    color: white; /* Or any color that contrasts well with your background */
    font-family: 'Gotham Rounded';
    font-style: normal;
    letter-spacing: 0.5px;
}

.save-button {
    background-color: white; /* Example orange color, adjust as needed */
    color: black;
    /* padding: 10px 20px; Adjust padding as needed */
    border: none;
    border-radius: 38px; /* Rounded corners */
    font-size: 24px; /* Adjust font size as needed */
    cursor: pointer; /* Indicate it's clickable */
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Vertically center text and plus sign */
    z-index: 80;
    width: 100%;
    position: absolute;
    text-align: center;
    justify-content: center;
    height: 48px;
    box-shadow: 0 7px 8px rgba(0,0,0,0.2);
    font-weight: bold;
    font-family: 'Gotham','Assistant';
    /*font-family: 'Gotham';*/
    gap: 5px;
}

    .save-button:active {
        outline: none;
    }
/*    .save-button:focus {
        outline: none;
        background: linear-gradient(to right, #ff4b5c, #FFBE28);
    }*/
.focus-styled:focus {
    outline: none;
    /*background: var(--GradientBackground);*/
}

.focus-styled:active {
    outline: none;
    background: var(--GradientBackground);
}

.plus-sign {
    margin-left: 5px; /* Add some space between text and plus sign */
/*    font-size: 42px !important;*/
    width: 42px;
    height: 42px;
}

.no-select {
    user-select: none; /* Standard syntax */
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
}

.share-button {
    /* bottom: 5px; */
    color: black;
    border: none;
    font-size: 16px; /* Adjust font size as needed */
    cursor: pointer; /* Indicate it's clickable */
    display: flex; /* Use flexbox for alignment */
    align-items: end; /* Vertically center text and plus sign */
    z-index: 80;
    position: inherit;
    text-align: center;
    justify-content: center;
    right: -9px;
    font-weight: bold;
    background: none;
    bottom: 8px;
    font-family: 'Gotham Rounded','Assistant';
}

*[dir="rtl"] .share-button {
    right: unset;
    left: -9px;
    font-family: 'Assistant';
}
    .share-button-header {
    /* bottom: 5px; */
    color: black;
    border: none;
    font-size: 16px; /* Adjust font size as needed */
    display: flex; /* Use flexbox for alignment */
    align-items: end; /* Vertically center text and plus sign */
    z-index: 80;
    /*position: absolute;*/
    text-align: left;
    justify-content: left;
    right: 0px;
    font-weight: bold;
    background: none;
    /*top: 8px;*/
}

.share-button-close {
    /* bottom: 5px; */
    color: black;
    cursor: pointer;
    /*top: 8px;*/
}

.share-sign {
/*    font-size: 32px !important;*/
    width: 32px;
    height: 32px;
    /*margin-right: -10px;*/
}

.share-sign-header {
    font-size: 32px !important;
    vertical-align: bottom;
}

.share-text-header {
    font-size: 20px !important;
    font-weight: bold;
    /*font-family: 'Gotham';*/
}

.scan-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 10px;
}

    .scan-image img {
        width: 140px;
        display: block;
        border-radius: 20px;
        margin-top: 10px;
    }

.social-icons.with-title-and-search {
    grid-template-rows: 30px 40px minmax(0, 1fr);
}

.social-icons-search {
    grid-row: 2;
    grid-column: 1 / -1; /* Spans all columns */
    display: inline-grid;
    align-items: center;
    /*margin-bottom: 20px;*/ /* Adds space between search and icons */
}

    .social-icons-search input {
        flex-grow: 1;
        height: 40px;
        border: var(--SearchBorder);
        border-radius: 20px;
        padding: 0 40px 0 15px; /* Add padding on the right for the icon */
        font-size: 16px;
        outline: none;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        position: relative;
    }

*[dir="rtl"] .social-icons-search input {
    padding: 0 15px 0 40px; /* Add padding on the right for the icon */
}

.social-icons-search .search-icon {
    position: relative;
    right: 16px; /* Adjust as needed to fine-tune positioning */
    pointer-events: none;
    font-size: large;
    color: var(--SearchIcon);
    text-align-last: end;
    top:-29px;
}
*[dir="rtl"] .social-icons-search .search-icon {
    left: 16px; /* Adjust as needed to fine-tune positioning */
    right:unset;
}


.social-icons-title {
    grid-row: 1;
    grid-column: 1 / -1; /* Spans all columns */
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 10px 15px;
    /*margin-bottom: 15px;*/
}

    .social-icons-title .left-content {
        display: flex;
        align-items: baseline;
        font-size: 24px;
        gap: 4px;
    }

    .social-icons-title .icon {
        margin-right: 0px;
        font-size: 24px;
        color: var(--SocialIcon-text-color);
        /* Add any specific styles for your icon */
    }

    .social-icons-title .label {
        font-weight: bold;
        font-size: 18px;
        /*margin-left: 10px;*/
        color: var(--SocialIcon-text-color);
        /* Adjust font size as needed */
    }

    .social-icons-title .back-button {
        font-weight: bold;
        cursor: pointer;
        color: var(--SocialIcon-text-color);
    }

.social-icons {
    display: grid;
    /*gap: 10px;*/
    justify-content: center;
    margin-top: auto;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 140px;
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */
    /*font-family: 'Gotham';*/
    font-size: 12px;
    row-gap: 14px;
    font-weight: bold;
    align-items: baseline;
}
    /*    .social-icons a {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
    }   
*/ .social-icons .iconContainer {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
    }

    .social-icons .icon-circle {
        background-color: var(--SocialIcon-background-color);
        width: var(--IconCircleRadius);
        height: var(--IconCircleRadius);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        border: 4px solid white;
        box-shadow: 0 8px 5px rgba(0, 0, 0, 0.3);
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
        .social-icons .icon-circle .icon-locked {
            font-size: 16px;
            color: red;
            position: absolute;
            margin-inline-start: 51px;
            box-shadow: 0 8px 5px rgba(0,0,0,0.3);
        }
/*.icon-circle .icon-circle .icon-locked {
    font-size: 16px;
    color: red;
    position: static;
    inset-inline-start: 2px;
    box-shadow: 0 8px 5px rgba(0,0,0,0.3);
}*/

    .social-icons .iconContainer .icon-circle .withBackgroundImg {
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        background-color: var(--ImageIcon-background-color);
    }
    /*    .social-icons a i {
        color: var(--SocialIcon-color);
        font-size: 20px;
    }   
*/


    .social-icons i {
        color: var(--SocialIcon-color);
        font-size: 26px;
    }

    .social-icons .icon-label {
        /* font-size: 12px; */
        color: var(--SocialIcon-text-color);
        margin-top: 5px;
        text-align: center;
        cursor: default;
    }

.share-icons {
    display: grid;
    /*gap: 10px;*/
    justify-content: center;
    margin-top: auto;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 100px;
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */
    /*font-family: 'Gotham';*/
    font-size: 12px;
    row-gap: 14px;
    transform: scale(0.9);
    gap: 1px;
    align-items: baseline;
    
    
}

.share-icons .iconContainer .icon-label {
    color: black;
}

.circle-image {
    border: 5px solid white; /* Adjust width (5px) and color (white) */
    width: 100px; /* Adjust the diameter of the circle */
    height: 100px;
    border-radius: 50%; /* Creates the circular shape */
    overflow: hidden; /* Ensures the image is clipped to the circle */
}

    .circle-image img {
        width: 100%;
        height: 100%;
        object-fit: scale-down; /* Fills the circle, maintaining aspect ratio */
        /* background-color: rebeccapurple; */
    }

.circle-image-container { /* Add a wrapper div */
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */

    flex-direction: column; /* Stack image and info vertically */
    text-align: center; /* Center text within info div */
}

.info { /* Styles for the info container */
    margin-top: 10px; /* Add some space above the info */
    line-height: 1; /* Adjust this value as needed */
    text-align: center; /* Add this line to center the text */
    margin-bottom: 10px;
    color: var(--info-color);
}

    .info h1, .info h2, .info h3, .info p { /* Add this block to remove margins */
        margin: 0;
    }

.name { /* Styles for your name */
    font-size: 1.2em;
    font-weight: bold;
}

.title { /* Styles for your title */
    font-size: 1em;
    color: #555; /* Example - adjust as needed */
}

.company { /* Styles for your company name */
    font-size: 0.9em;
    color: #777; /* Example - adjust as needed */
}


.logo-image {
    /* border: 5px solid white;  */
    /* Adjust width (5px) and color (white) */
    width: 100%; /* Adjust the diameter of the circle */
    height: 115px;
    border-radius: 12%; /* Creates the circular shape */
    overflow: hidden; /* Ensures the image is clipped to the circle */
    align-items: center;
    margin-bottom: 10px;
    margin-top: 10px;
}

    .logo-image img {
        display: block;
        width: 100%;
        height: 100%;
        max-width: 100%;
        object-fit: scale-down;
    }

.main-content {
    width: 100%;
    height: 100%;
    /* bottom: 60px; */
    /*background-color: var(--background-color);*/
    color: var(--info-color);
    /* #ff9900;*/
    /* margin-bottom: 60px; */
    min-height: 100vh;
    /*direction: var(--direction);*/
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dim the background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Ensure it's on top */
}

.popup-header {
    display: flex;
    justify-content: space-between; /* Pushes items to opposite sides */
    align-items: center;
    margin-bottom: 10px;
}

.popup-label {
    margin: 0; /* Remove default margin on h3 */
}

.close-icon {
    margin: 0; /* Remove default margin on close icon */
    cursor: pointer;
}

.send-icon {
    margin: 0; /* Remove default margin on close icon */
    cursor: pointer;
}

.popup-content {
    /*background-color: var(--background-color);*/
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.8); /* Add a subtle shadow */
    max-width: 80%; /* Limit popup width on large screens */
    max-height: 80%; /* Limit popup height on large screens */
    overflow-y: auto; /* Enable scrolling if content is too long */
    /* New styles for dynamic sizing */
    width: fit-content; /* Allow width to shrink/grow based on content */
    height: auto; /* Allow height to grow based on content */
}

    .popup-content ul {
        list-style: none;
        padding: 0;
    }

.popup-body {
    /* Existing styles */
    width: auto;
    height: auto;
    max-height: 80%; /* Limit popup height on large screens */
    overflow-y: auto; /* Enable scrolling if content is too long */

    height: auto; /* Allow height to grow based on content */
    /* Styles for search container */
    margin-top: 10px; /* Add some space above the search container */
}

    .popup-body .search-container {
        display: flex; /* Arrange icon, input, and close button horizontally */
        align-items: center; /* Vertically center items */
        margin-bottom: 10px; /* Add space below the search container */
    }

    .popup-body .search-icon, .popup-body .close-icon {
        margin-left: 5px;
        cursor: pointer; /* Indicate it's clickable */
    }

    .popup-body .search-icon {
        margin-right: 5px;
    }

    /* Styles for list items */
    .popup-body ul {
        list-style: none;
        padding: 0;
        margin: 0; /* Remove default margin on list */
    }

    .popup-body li {
        margin-bottom: 5px; /* Add space between list items */
    }


@font-face {
    font-family: 'Gotham Rounded'; /* The name you'll use to reference the font */
    src: url('/fonts/GothamRounded-Book.woff2') format('woff2'); /* Adjust the path as needed */
    font-weight: normal; /* Adjust if the OTF file is for a specific weight */
    font-style: normal; /* Adjust if the OTF file is for a specific style */
    font-display: swap;
}

/*@font-face {
    font-family: 'Gotham';*/ /* The name you'll use to reference the font */
    /*src: url('/fonts/Gotham-Book.woff2') format('woff2');*/ /* Adjust the path as needed */
    /*font-weight: normal;*/ /* Adjust if the OTF file is for a specific weight */
    /*font-style: normal;*/ /* Adjust if the OTF file is for a specific style */
    /*font-display: swap;
}*/

.share-icons .iconContainer .icon-circle {
    background-color: black;
}       
.share-icons .iconContainer .icon-circle i {
    color: white;
}

/* Media Queries for Responsive Layout */
@media (max-width: 576px) { /* Mobile */
    .social-icons {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        /*grid-template-rows: 30px 40px auto;*/
        max-width: 90vw; /* 90% of viewport width */
    }

    .share-icons {
        grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
        transform: scale(0.9);
    }

}

@media (min-width: 577px) and (max-width: 992px) { /* Tablet */
    .social-icons {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        max-width: 80vw; /* 80% of viewport width */
    }

    .share-icons {
        grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
        transform: scale(0.9);
    }
}

@media (min-width: 993px) { /* Desktop */
    .social-icons {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        max-width: 60vw; /* 60% of viewport width */
    }

    .share-icons {
        grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
        transform: scale(0.9);
    }
}
