body {
  background-color: #EDEDED;
}

.circular-menu {
  position: fixed;
  bottom: 1em;
  right: 1em;
}

.circular-menu .floating-btn {
  display: block;
  width: 3.5em;
  height: 3.5em;
  border-radius: 50%;
  background-color: hsl(4, 98%, 60%);
  box-shadow: 0 2px 5px 0 hsla(0, 0%, 0%, .26);  
  color: hsl(0, 0%, 100%);
  text-align: center;
  line-height: 3.9;
  cursor: pointer;
  outline: 0;
}

.circular-menu.active .floating-btn {
  box-shadow: inset 0 0 3px hsla(0, 0%, 0%, .3);
}

.circular-menu .floating-btn:active {
  box-shadow: 0 4px 8px 0 hsla(0, 0%, 0%, .4);
}

.circular-menu .floating-btn i {
  font-size: 1.3em;
  transition: transform .2s;  
}

.circular-menu.active .floating-btn i {
  transform: rotate(-45deg);
}

.circular-menu:after {
  display: block;
  content: ' ';
  width: 3.5em;
  height: 3.5em;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -2;
  background-color: hsl(4, 98%, 60%);
  transition: all .3s ease;
}

.circular-menu.active:after {
  transform: scale3d(5.5, 5.5, 1);
  transition-timing-function: cubic-bezier(.68, 1.55, .265, 1);
}

.circular-menu .items-wrapper {
  padding: 0;
  margin: 0;
}

.circular-menu .menu-item {
  position: absolute;
  top: .2em;
  right: .2em;
  z-index: -1;
  display: block;
  text-decoration: none;
  color: hsl(0, 0%, 100%);
  font-size: 1em;
  width: 3em;
  height: 3em;
  border-radius: 50%;
  text-align: center;
  line-height: 3;
  background-color: hsla(0,0%,0%,.1);
  transition: transform .3s ease, background .2s ease;
}

.circular-menu .menu-item:hover {
  background-color: hsla(0,0%,0%,.3);
}

.circular-menu.active .menu-item {
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.circular-menu.active .menu-item:nth-child(1) {
  transform: translate3d(1em,-7em,0);
}

.circular-menu.active .menu-item:nth-child(2) {
  transform: translate3d(-3.5em,-6.3em,0);
}

.circular-menu.active .menu-item:nth-child(3) {
  transform: translate3d(-6.5em,-3.2em,0);
}

.circular-menu.active .menu-item:nth-child(4) {
  transform: translate3d(-7em,1em,0);
}

/**
 * The other theme for this menu
 */

.circular-menu.circular-menu-left {
  right: auto; 
  left: 1em;
}

.circular-menu.circular-menu-left .floating-btn {
  background-color: hsl(217, 89%, 61%);
}

.circular-menu.circular-menu-left:after {
  background-color: hsl(217, 89%, 61%);
}

.circular-menu.circular-menu-left.active .floating-btn i {
  transform: rotate(90deg);
}

.circular-menu.circular-menu-left.active .menu-item:nth-child(1) {
  transform: translate3d(-1em,-7em,0);
}

.circular-menu.circular-menu-left.active .menu-item:nth-child(2) {
  transform: translate3d(3.5em,-6.3em,0);
}

.circular-menu.circular-menu-left.active .menu-item:nth-child(3) {
  transform: translate3d(6.5em,-3.2em,0);
}

.circular-menu.circular-menu-left.active .menu-item:nth-child(4) {
  transform: translate3d(7em,1em,0);
}

.profileImages {
  max-width: 100%;
  padding: 12px;
  max-height: 215px;
}

.card {
  display: inline-flex !important;
  background-color: black !important;
  width: 8.6rem;
}

.card-title {
  text-align: center !important;
  min-height: 50px;
      color: white;
}

.card-body {
  flex: 1 1 auto;
  padding: 0.2rem 1rem;
}

@media (min-width: 992px) {
  .card {
    width: 8.8rem;
  }
}


@media (min-width: 1200px) {
    .card {
        width: 10.0rem;
    }
}

.mainContainer {
    /* width: calc(100% - 320px) ! IMPORTANT; */
    display: contents;
}
.menuItems{

      width: calc(100% - 500px) ! IMPORTANT;
          padding: 40px 0px;

}















.call-overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.5);
    backdrop-filter: blur(6px) saturate(1.2);
}

    .call-overlay[data-open="true"] {
        display: flex;
    }


/* Dialog */
.call-popup {
    width: min(92vw, 420px);
    border-radius: var(--radius-xl);
    background: white;
    box-shadow: var(--shadow-1);
    border: 1px solid rgba(255,255,255,.06);
    transform: translateY(12px) scale(.98);
    opacity: 0;
    transition: transform .3s cubic-bezier(.2,.7,.2,1), opacity .25s ease;
}

.call-overlay[data-open="true"] .call-popup {
    transform: translateY(0) scale(1);
    opacity: 1;
}


.call-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 18px 10px 18px;
    
}

.call-title {
    font-weight: 700;
    letter-spacing: .2px;
    font-size: 14px;
    color: var(--muted);
}

.call-spacer {
    flex: 1
}

.call-close {
    background: none;
    border: 0;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    color: var(--muted);
    cursor: pointer
}

    .call-close:focus {
        outline: 2px solid var(--primary);
        outline-offset: 2px
    }


.call-body {
    padding: 4px 18px 18px 18px;
    display: grid;
    gap: 16px;
}


.caller {
    display: grid;
    justify-items: center;
    gap: 14px;
    text-align: center;
}


.avatar2 {
    position: relative;
    width: 104px;
    height: 104px;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(0,0,0,.25);
}

    .avatar2 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .avatar2::before { /* pulsing ring */
        content: "";
        position: absolute;
        inset: -8px;
        border-radius: inherit;
        border: 3px solid var(--ring);
        animation: ring 1.8s ease-out infinite;
    }

@keyframes ring {
    0% {
        transform: scale(.8);
        opacity: .9
    }

    70% {
        transform: scale(1.2);
        opacity: .2
    }

    100% {
        transform: scale(1.25);
        opacity: 0
    }
}


.name {
    font-size: 18px;
    font-weight: 750;
}

.meta {
    font-size: 13px;
    color: var(--muted)
}


.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    border: 1px dashed rgba(255,255,255,.15);
    font-size: 12px;
    color: var(--muted)
}


.actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    padding: 12px 14px;
    border-radius: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: transform .06s ease, box-shadow .2s ease;
    box-shadow: 0 6px 14px rgba(0,0,0,.12);
    white-space: nowrap
}

    .btn:active {
        transform: translateY(1px)
    }

    .btn:focus {
        outline: 2px solid var(--primary);
        outline-offset: 2px
    }

.btn-primary {
    background: rgb(47, 106, 233);
    color: white
}

    .btn-primary:hover {
        background: hsl(221 81% 52%);
    }

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary)
}

.btn-danger {
    /*background: var(--danger);*/
    color: white
}

.actions-2 {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.link-btn {
    background: none;
    border: 0;
    padding: 8px 6px;
    color: var(--muted);
    font-weight: 600;
    cursor: pointer
}

    .link-btn:hover {
        text-decoration: underline
    }


.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0
}


/* Small helper for icon sizing */
.icon {
    width: 25px;
    height: 25px;
    display: inline-block
}


/* Demo bar (remove for prod) */
.demo {
    position: fixed;
    inset: auto 12px 12px auto;
}

    .demo button {
        padding: 10px 14px;
        border-radius: 12px;
        border: 0;
        background: var(--primary);
        color: #fff;
        box-shadow: 0 8px 18px rgba(0,0,0,.15);
        cursor: pointer
    }