.menucard-shadow{
    box-shadow: 0 1px 3px 0 rgba(95, 95, 95, 0.2), 0 1px 3px 0 rgba(95, 95, 95, 0.2);
}
.readmore {
    position: relative;
    display: inline-block;
    border-bottom: 1px solid green;
  }

  .readmore .readmore-text {
    visibility: hidden;
    width: 430px;
    background-color: white;
    color: #000;
    text-align: left;
    border-radius: 10px;
    font-size: 2px;
    /* Position the tooltip */
    position: absolute;
    z-index: 1;
    font-weight: 300;
    bottom: 100%;
    margin-left: -120px;
    box-shadow: 0 2px 5px 0 rgba(95, 95, 95, 0.2), 0 2px 5px 0 rgba(95, 95, 95, 0.2);

  }

  .readmore:hover .readmore-text {
    visibility: visible;
  }
  .menu-detail span{
    font-size: 16px !important;
  }

#profiletable th{
    color: #585858;
}
#profiletable td{
    color: #7c7b7b;
}

/* loader */

.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #00000059;
    z-index: 9999999;
    display: flex;
}

.site-loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    border: 3px solid;
    margin: auto;
    border-color: var(--white) var(--white) transparent transparent;
    -webkit-animation: rotation 1s linear infinite;
    animation: rotation 1s linear infinite;
}

.site-loader:after,
.site-loader:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 3px solid;
    border-color: transparent transparent var(--bs-primary) var(--bs-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    -webkit-animation: rotationBack 0.5s linear infinite;
    animation: rotationBack 0.5s linear infinite;
    transform-origin: center center;
}
.custom-color .site-loader:after {
    border-color: transparent transparent blue green;
}

.site-loader:before {
    width: 32px;
    height: 32px;
    border-color: var(--white) var(--white) transparent transparent;
    -webkit-animation: rotation 1.5s linear infinite;
    animation: rotation 1.5s linear infinite;
}

@-webkit-keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes rotationBack {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}
@keyframes rotationBack {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}