:root {
    --White: #FFFFFF;
    --Isabelline: #F9F2ED;
    --Alabaster: #F3E7E6;
    --Dark-beige: #E8DBD0;
    --Table-button: #F1DFDA;
    --Textbox-border-color: #EAD1C3;
    --Textbox-background-color: #F3E3DE;
    --Navy-blue: #002134;
    --Secondary-navy-blue: #001E2D;
    --Navy-blue-low-opacity: rgb(0 33 52 / 70%);
    --Light-black: rgb(0 0 0 / 70%);
    --Purple: #9795E0;
    --Orange: #FF9581;
    --Table-header: rgb(244 231 219 / 60%);
    --In-progress: rgb(186 159 100 / 25%);
    --Returned: rgb(245 145 116 / 20%);
    --Completed: rgb(208 252 216 / 70%);
    --Alinma-plain: "AlinmaTheSans-Plain";
    --Alinma-bold: "AlinmaTheSans-Bold";
}

@font-face {
    font-family: "AlinmaTheSans-Plain";
    src: url("/Runtime/Styles/Style%20profile/fonts/AlinmaTheSans-Plain.ttf");
    font-display: swap;
}

@font-face {
    font-family: "AlinmaTheSans-Bold";
    src: url("/Runtime/Styles/Style%20profile/fonts/AlinmaTheSans-Bold.ttf");
    font-display: swap;
}
@keyframes fadeLeft{
    0%{
        opacity:0;
        transform:translateX(-100%);
    }
    100%{
        opacity:1;
        transform:translateX(0%);
    }
}
@keyframes fadeDown{
    0%{
        opacity:0;
        transform:translateY(-100%);
    }
    100%{
        opacity:1;
        transform:translateY(0%);
    }
}
@keyframes fadeUp{
    0%{
        opacity:0;
        transform:translateY(100%);
    }
    100%{
        opacity:1;
        transform:translateY(0%);
    }
}
html body {
    background-color: var(--Isabelline)!important;
    width: 100%;
    margin: 0;
    padding: 0;
}
.loadMoreBtn{
    border: 1px solid rgb(0 0 0 / 15%);
    border-radius: 1rem;
    text-align: center;
    padding: .6rem;
    margin-top: 0;
}
.resquestText {
    display: flex;
    align-items: baseline;
}
.userProfile,
.userProfile .userInformations{
    width:100%;
}
.spinner-container{
    display: flex;
    justify-content: center;
}
div#requests-label {
    margin-left: .4rem;
    font-size: 1rem;
    color: grey;
    font-family: var(--Alinma-plain);
    margin-bottom: unset;
    font-weight: 400;
}
html body ul {
    list-style-type: none;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}
html body .overlayShadow{
    position:fixed;
    top:0;
    left:0;
    height:100vh;
    width:100vw;
    background-color:rgb(0 0 0 / 70%);
    z-index: 1;
    display:none;
    transition: all 1s ease-in-out;
}
html body ul.links > li {
    display: flex;
    align-items: center;
    padding: .5rem 1rem;
    cursor: pointer;
    margin-bottom: .5rem;
    border-radius: .5rem;
}
.sidebar ul > li.active{
    background-color: #f3e7e7;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    color: var(--Navy-blue);
    font-family: var(--Alinma-bold);
}
html body .sideBarLinksGroup .sidebarCategory:last-child .categoryName{
    margin: 1.5rem 1rem 1rem;
}
.sideBarLinksGroup a{
    font-size: 1.05rem;
    color: var(--Navy-blue);
}
.sideBarLinksGroup li:has(a.disabled){
    color:var(--Navy-blue-low-opacity)!important;
    pointer-events:none!important;
    opacity: .4;
}
li.noSubChildren::after{
    display:none
}
.sideBarLinksGroup .links{
    margin-bottom: unset;
}
.sideBarLinksGroup .icon{
    width: 1.5rem;
    height: auto;
    display: flex;
    justify-content: center;
}
.sideBarLinksGroup .icon img{
 width: 100%;
 height: auto;
}
.sidebar ul > li:hover{
    background-color: #f3e7e7;
}

html body ul.links li .icon{
    margin-right:1rem;
}
li.isSubMenu {
    position: relative;
}
li.isSubMenu::after{
    content:"";
    position:absolute;
    top:50%;
    right:1rem;
    transform:translateY(-50%) rotate(-90deg);
    background-image:url("/Runtime/Styles/Style%20profile/images/net/Chevron\ Down.svg");
    height:.8rem;
    width:.8rem;
    background-repeat:no-repeat;
    background-size:contain;
    background-position:right center;
}
.container {
    max-width: 100% !important;
    margin: 0;
    /* padding-left: 2rem; */
    /* padding-right: 2rem; */
    padding: 0;
}
header{
    opacity:0;
    transform:translateY(-100%);
    animation:1s fadeDown forwards;
}
.subPanel {
    z-index: 0;
    position: fixed;
    background-color: white;
    height: 100vh;
    width: 29rem;
    left: 22rem;
    top: 0;
    bottom: 0;
    transform: translateX(-200%);
    z-index: 1;
    transition: all 1s ease-in-out;
    padding:3rem 2rem;
    border-top-right-radius: 1.5rem;
}
.subPanel.active{
    transform: translateX(0%);
}
.subPanel .subSectionTitle{
    margin-bottom:2.8rem;
    font-family: var(--Alinma-bold);
    font-size: 1.5rem;
    color: var(--Navy-blue);
}
.subPanel ul li{
    background-color:#f1dfda;
    margin-bottom:1rem;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    border-radius: 0.6rem;
    cursor: pointer;
    transition: all .3s ease-in-out;
}
.subPanel ul li:hover{
    background-color: #dac6c0;
}
.subPanel ul li .icon{
    margin-right:1rem;
    background-color: white;
    padding: .5rem;
    width: 2.5rem;
    display: flex;
    height: auto;
    border-radius: .5rem;
}
.subPanel ul li .icon img{
    height: auto;
    width: 100%;
}
.subPanel ul li a{
    font-size: 1.05rem;
    color: var(--Navy-blue);
}
html body header {
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.profilePhoto{
    width: 100%;
    height: auto;
}
html body header .dashboardIntro h3 {
    font-family: var(--Alinma-bold);
}

html body header a.logo {
    width: 11rem;
    display: block;
}

html body header a.logo img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

html body aside.sidebar {
    width: 19.5rem;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    padding: 2rem 1.5rem;
    border-right: 1.5px solid rgb(0 33 52 / 10%);
    z-index: 2;
    background-color: var(--Isabelline);
    opacity: 0;
    transition: all .3s ease-in-out;
    transform: translateX(-100%);
}
html body aside.sidebar .userSettings{
    justify-content:space-between;
}
html body .sidebar .notifications{
    border:none;
    background-color:transparent;
    min-width:unset;
    width: 3.3rem;
    padding-right: unset;
    height: auto;
    display: none;
}
html body .sidebar .notifications img{
    height: auto;
    width: 100%;
}
html body .sidebar .userProfilePhoto{
    margin-right:1rem;
    border-radius: 0.8rem;
    overflow:hidden;
    width: 3rem;
}
html body .sideBarLinksGroup .categoryName{
    margin:2rem 1rem 1rem;
    color:rgb(0 33 52 / 70%)
}
html body .userSettings .userInformations .username{
    font-size:1.14rem;
    font-family:var(--Alinma-bold);
    position:relative;
    color: var(--Navy-blue);
    width: 100%;
}
html body .userSettings .userInformations .username::after{
    content:"";
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    right:0;
    background-image:url("/Runtime/Styles/Style%20profile/images/net/Chevron%20Down.svg");
    background-size:contain;
    height:.8rem;
    width:.8rem;
    background-repeat:no-repeat;
    background-position:center;
    display: none;
}
html body .userSettings .userInformations .userPosition{
    font-size:.9rem;
    color:rgb(0 33 52 / 70%)
}
html body .kpiCards {
    gap: 1rem 0.8rem;
}

html body .kpiCards .card {
    width: 13rem;
    height: 8.5rem;
    border: 1px solid #E5E4DE;
    border: none;
    border-radius: 1rem;
    opacity: 0;
    transform: translateY(100%);
    animation: 1s fadeUp forwards;
    flex-grow: 1;
    font-family: var(--Alinma-plain);
}
html body .kpiCards .card:nth-child(1){
    animation-delay:.3s;
}
html body .kpiCards .card:nth-child(2){
    animation-delay:.6s;
}
html body .kpiCards .card:nth-child(3){
    animation-delay:.9s;
}
html body .kpiCards .card:nth-child(4){
    animation-delay:1.2s;
}
html body .kpiCards .card .card-body,
html body .marketingKPIs .card .card-body {
    padding:0 .5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

html body .kpiCards .card .card-body .kpiIcon,
html body .marketingKPIs .card .card-body .kpiIcon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    height: 2.6rem;
    width: 2.6rem;
}

html body .kpiCards .card .card-body .kpiIcon img,
html body .marketingKPIs .card .card-body .kpiIcon img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

html body .kpiCards .card .card-body .kpiValue,
html body .marketingKPIs .card .card-body .kpiValue {
    font-size: 2.1rem;
    color: #092342;
    font-family: var(--Alinma-bold);
    margin-bottom: 0rem;
}

html body .kpiCards .card .card-body .kpiName,
html body .marketingKPIs .card .card-body .kpiName {
    margin-bottom: 0.6rem;
    font-size: .9rem;
    color: var(--Secondary-navy-blue);
}

html body .requestsTile {
    opacity: 0;
    transform: translateY(100%);
    animation: 1s fadeUp forwards;
    width: 100%;
}

html body .requestsTile .card {
    height: 100%;
    border-radius: 1.2rem;
    border: 1px solid #E5E4DE;
    border: none;
}
html body .requestsTile .card .card-header,
.card .card-header{
    background-color:transparent;
    border: 0;
    padding: 0.9rem 1rem 0;
}
html body .requestsTile .card .card-body{
    padding: 0rem 1rem 1rem;
    border:none!important;
}
h2 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-top: 0;
    margin-bottom: 8px;
}

.requests-total {
    font-size: 1.9rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.7rem;
    font-family: var(--Alinma-bold);
    color: var(--Navy-blue);
}

.progress-bar-container {
    display: flex;
    height: 0.8rem;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background-color: rgb(0 0 0 / 10%);
}

.request-progress-zone {
    height: 100%;
}

.marketing-request {
    background-color: #9993c9;
}

.request-a-study {
    background-color: #f09689;
}

.branch-visit-notes {
    background-color: #2a313b;
}

.other {
    background-color: #e5e3d7;
}

/* --- Legend Styling --- */
.request-cards {
    display: flex;
    font-family: var(--Alinma-plain)!important;
    /* Two columns */
    font-size: 1rem;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgb(0 0 0 /10%);
    flex-direction: column;
    width: 100%;
}

.request-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0;
    border: 1px solid rgb(0 0 0 / 10%);
    border-top: 0;
    padding: .8rem 1.2rem;
    border-right: none;
}
.request-card:nth-child(2n+1){
    border-left:none;
}
.request-card:nth-child(3),
.request-card:nth-child(4){
    border-bottom:none;
}
.request-name {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 1.5rem;
}

.request-name::before {
    content:"";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    border-radius: 100%;
    margin-right: .5rem;
    height: .8rem;
    width: .8rem;
}
.request-card:nth-child(1) .request-name::before{
    background-color: var(--Purple);
}
.request-card:nth-child(3) .request-name::before{
    background-color: var(--Navy-blue);
}
.request-card:nth-child(2) .request-name::before{
    background-color: var(--Orange);
}
.request-card:nth-child(4) .request-name::before{
    background-color: #e8dbd0;
}
.percentage {
    font-weight: bold;
    color: #333;
}
.subPanel .closeSubpanel{
    background-color: var(--Navy-blue);
    height: 3rem;
    width: 3.5rem;
    transition: all .3s ease-in-out;
    padding: 1rem;
    position: absolute;
    top: 2rem;
    right: -3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-right-radius: .5rem;
    border-bottom-right-radius: .5rem;
    cursor: pointer;
}
[name="headerLogo"]{
   width: 11rem;
   height: 4rem!important;
   position: absolute;
   right: 1rem;
   top: 1rem;
}
[name="headerLogo"] img{
    height:100%;
    width:100%;
}
.subPanel .closeSubpanel:hover{
    background-color:var(--Navy-blue-low-opacity);
}
.subPanel .closeSubpanel svg{
    height:100%;
    width:100%;
    object-fit:cover;
}
.myRequestsTable,.pendingRequestsTable{
    background-color: white;
    border-radius: 1rem;
    border: 1px solid #E5E4DE;
    border: none;
    padding: 2rem 1.5rem;
    font-size: 1rem;
    opacity: 0;
    transform: translateY(100%);
    font-family: var(--Alinma-plain);
    animation: 1s fadeUp 1.5s forwards;
    margin-bottom: 2rem;
    margin-top: .6rem;
    min-height: 30rem;
}
.myRequestsTable th{
    font-weight: 400 !important;
}
 
.myRequestsTable tbody tr:first-child td{
    padding-top: 2rem !important;
}
 
.myRequestsTable tbody tr td:first-child{
    font-family: var(--Alinma-bold);
}
 
.myRequestsTable tbody tr{
    border-bottom: 1px solid rgba(0,0,0,.1);
}
 
.myRequestsTable tbody td{
    padding: 1.2rem 1rem !important;
}
 
.myRequestsTable .sort svg{
    width: 1.3rem;
    height: auto;
}
/* svg.active path:nth-child(1) {
    stroke: var(--Navy-blue);
    opacity:1;
} */
.sort svg path{
    opacity:1!important;
     stroke: rgb(0 33 52 / 50%)!important;
}
.sort svg.inactive path{
    stroke: rgb(0 33 52 / 50%)!important;
    opacity:1!important;
}
.sort svg.ascending path:nth-child(1){
    stroke: rgb(0 33 52 / 100%)!important;
}
.sort svg.descending path:nth-child(2){
    stroke: rgb(0 33 52 / 100%)!important;
}
.tableHeader,
html body .requestsTile .card .card-header h2,
html body .col-lg-3 .card .card-header h2{
    color: #002035;
    font-family: var(--Alinma-bold);
    font-size: 1.3rem;
    margin-bottom:unset;
}
.pendingRequestsTable table{
    margin-top: 1.5rem!important;
}
.pendingRequestsTable td,
td[data-title="Actions"] .dropdown-custom button{
    font-size: .9rem;
}
td[data-title="Actions"] .dropdown-custom button{
    background-color: #f1dfda;
    border-radius: .8rem;
    display: flex;
    justify-content: center;
    margin: auto;
}
td[data-title="Request Number"]{
    font-family: var(--Alinma-bold);
}
 .search-box {
    position: relative;
    max-width: 20rem !important;
    cursor: pointer;
}
 .search-box::before{content:"";position:absolute;left: 0.8rem;top:50%;transform:translateY(-50%);background-image:url("/Runtime/Styles/Style%20profile/images/net/search.svg");background-size:contain;height: 1.3rem;width: 1.3rem;background-repeat:no-repeat;}
 .search-box input {
    padding-left: 2.5rem;
    border: 1px solid #ddd;
    border-radius: 0.6rem;
    background-color: rgb(217 217 217 / 5%);
    padding-top: .5rem;
    padding-bottom: .5rem;
}
 .search-box svg {
    position: absolute;
    left: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    height: 1.2rem;
    width: 1.2rem;
    
}
.status{
    border-radius: .5rem;
    padding: .4rem 1rem;
}
.status.in-progress span{
    background-color: #EEE7D7;
    color: #AE9866;
}
 .badge-returned {
    background-color: #FCE8E1;
    color: #DE6D4D;
}
 .badge-draft {
    background-color: #dbeafe;
    color: #0D567F;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.732) 10px,
        rgba(255, 255, 255, 0.692) 15px
    );
}
.status.completed span {
    background-color: var(--Completed);
    color: #2B7635;
}
 .editRow a {
    background-color: #F1DFDB;
    border: 1px solid #e5e5e5;
    color: var(--text-color);
    padding: 0.2rem 0.5rem;
    border-radius: 0.3rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.2s;
}
 .editRow a.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
 .sort-icon {
    color: #999;
    font-size: 12px;
    margin-left: 4px;
}
.request-number{
    display: flex;
    align-items: center;
    gap:.5rem;
    position: relative;
    padding-left: 2rem;
    padding-left: 1.6rem;
}
th, td, thead, tbody{
border:none;
}
.table tbody{overflow-x:auto;scroll-behavior: smooth;-webkit-user-drag: auto;}
table td .request-number::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-image: url("/Runtime/Styles/Style%20profile/images/net/External_Link.svg");
    background-size: contain;
    height: 1rem;
    width: 1rem;
    background-repeat: no-repeat;
    background-position: center;
}
table td .editRow a{
    position: relative;
}
table td .editRow a::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-image: url("/Runtime/Styles/Style%20profile/images/net/edit.svg");
    background-size: contain;
    height: 1rem;
    width: 1rem;
    background-repeat: no-repeat;
    background-position: center;
}
 .table thead th:first-child,
 .table tbody td:first-child {
    position: sticky;
    left: 0;
    z-index: 1;
    background-color: #fff;
    background-color: #fff; /* adjust to your background */
    border-radius-top-left: 8px; /* rounded corners like your box */
    border-radius-bottom-left: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04); /* subtle soft shadow */
    padding: 16px; /* optional padding */
    height: 100%;
    width: 19%;
}
 .table thead th:first-child {
    z-index: 1;
    background-color: #F8EFE8;
}
.pendingRequestsTable .table thead th{
    padding:1rem 0!important;
    width: fit-content;
    white-space: nowrap;
}
.pendingRequestsTable .table thead th.sort svg{
    height:1rem;
    width:1rem;
}
 thead tr {
     background-color: var(--Table-header);
     padding:.4rem 0!important;
       }
       
       thead tr th:last-child span{
      border-right: unset;
}
 .table thead th {
    border: none;
    padding: 1rem 0!important;
    background-color: rgb(244 231 219) !important;
    color: #002134!important;
    position: relative;
}
 .table thead th.statusColumn span{
     text-align:center;
     /* justify-content: center; */
 }
 .table thead th.statusColumn svg{
     /* position:absolute; */
     /* right:1rem; */
 }
 thead th span{
      border-right: 1px solid rgb(0 0 0 / 10%);
      padding:0 1rem;
      width: 100%;
      display: block;
 }
 thead th:first-child {border-radius: 0.8rem 0 0 0.8rem;}
 thead th:last-child {
    border-radius: 0 0.8rem 0.8rem 0;
    border-right: none;
}
.table tbody td {
    padding: .5rem !important;
    vertical-align: middle;
    color: var(--Navy-blue)!important;;
    width: auto;
    min-width: fit-content;
    white-space: nowrap;
    font-size:1rem;
}

.table tbody tr:last-child {border-color: transparent !important;}
 .request-number {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-left: 0.5rem;
}
.myRequestsTable tbody td:last-child{
    display: flex;
    justify-content: center;
}
.myRequestsTable div:first-child{
    margin-bottom: .5rem;
}
 .request-number:hover {
    text-decoration: underline;
}
.status span{
    padding: 0.4rem .1rem!important;
    border-radius: 0.5rem;
    font-weight: 500;
    width: 6rem;
    border: 1px solid hwb(0deg 0% 100% / 6%);
    width: 100%;
    font-family: var(--Alinma-bold);
    display: block;
    text-align: center;
}
 .status.in-progress span{
    background-color: #EEE7D7;
    color: #AE9866;
}
 .status.returned span {
    background-color: #FCE8E1;
    color: #DE6D4D;
}
 .status.draft span {
    background-color: #dbeafe;
    color: #0D567F;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.732) 10px,
        rgba(255, 255, 255, 0.692) 15px
    );
}
  .status.submit span,
.status.completed span{
    background-color: #DEFCE2;
    color: #2B7635;
}
 .btn-edit {
    background-color: #F1DFDB;
    border: 1px solid #e5e5e5;
    color: var(--Navy-blue);
    padding: 0.3rem 0.9rem;
    border-radius: .5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.2s;
}
.btn-edit img{
    height:100%;
    width:100%;
    object-fit:contain;
}
 .btn-edit.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
 .sort-icon {
    color: #999;
    font-size: 12px;
    margin-left: 4px;
}
 .services-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
 .status-header,
 .actions-header,
 .actions-body,
 .status-body {
    text-align: center;
}
.satisfaction-card{
    padding: 2rem;
    margin-top: 2rem;
    width: 100%;
}
.rating-bars {
  display: flex;
  gap: 5px;
  margin-top: 10px;
}
.rating-bar {
  flex: 1;
  height: 15px;
  border-radius: 5px;
  background: #FEE6E2;
  position: relative;
  overflow: hidden;
}
.rating-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background: #FF9581;
  width: 0%;
}
.averageTime-card{
    margin-top: 1rem;
    width: 100%;
}
.averageTime-card .card-header,
html body .col-lg-3 .card .card-header,
.popularRequests .card-header,.marketingoverview .card-header{
    border-bottom: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: transparent;
}
.averageTime-card .card-body{
    display: flex;
    align-items: center;
    gap: 1rem;
    
}
.averageTime-card .card-body p{
    margin-bottom: 0;
    color: var(--paragraph-color);
}
.averageTime-card .card-body h5{
    margin-bottom: 0;
    color: var(--text-color);
}
.statusColumn, .myRequestsTable th:last-child{
    text-align: center;
}
th.sort span {
    display: flex;
    align-items: center;
    justify-content: space-between;
   
}
.pendingRequestsTable th span {
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: space-between; */
    font-size: .9rem;
}
table.table{
    margin-top: .5rem;
}
.light-dark-mode {
    width: 90%;
    position: absolute;
    bottom: 1rem;
    /* border: 1px solid #D4D3D1; */
    display: none;
}
#mode-label{
    font-size: 1.05rem;
}
.toggle-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8f5f2;
    padding: 0.5rem 1rem;
    border-radius: 0.8rem;
    border: 1px solid hsl(0deg 0% 0% / 10%);
    position: relative;
}
.sun-img {
    position: absolute;
    right: 1.6rem;
    bottom: 0.9rem;
    z-index: 999;
    height: 1.2rem;
    width: 1.2rem;
}
.form-check-input {
    width: 4rem !important;
    height: 2rem !important;
    cursor: pointer;
    border: none;
    background-color: #002134;
    position: relative;
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid var(--text-color);
}
.form-check-input::before {
    content: "";
    position: absolute;
    top: 0.25rem;
    left: 0.3rem;
    width: 1.5rem;
    height: 1.5rem;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.notification-item:last-child {
      border-bottom: none;
    }
    .notification-status.rejected {
      color: #E97A7B;
      font-weight: 600;
    }
    .notification-status.completed {
      color: #4A8951;
      font-weight: 600;
    }
     .notification-modal ,.user-modal{
        width: 24%;
        margin-left: 1rem;
    }
   .notification-modal.show ,.user-modal.show{
       animation:1s fadeDown forwards;
   }
    .notification-modal .modal-body,
    .user-modal .modal-body{
        background-color: #F2F1F1;
    }
    .notification-modal .modal-dialog,
    .user-modal .modal-dialog {
  margin-bottom: 1rem; 
}

.notification-modal .modal-content,
.user-modal .modal-content {
  border-radius: 1.5rem;
  overflow: hidden; 
}
.user-modal-header{
    display: flex;
    align-items: center;
    gap: 1rem;
}
.user-modal-header .userNAME{
    font-weight: 600;
}
.user-modal-header p{
    margin-bottom: 0;
}
.user-modal-header .name-email{
    display: flex;
    flex-direction: column;
}
.user-modal .user-settings{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.user-modal .viewProfile,
.user-modal .account-settings,
.user-modal .sign-out{
    display: flex;
    align-items: center;
    gap: 1rem;
}
.user-modal .viewProfile img,
.user-modal .account-settings img,
.user-modal .sign-out img{
    height: 1.5rem;
    width: 1.5rem;
}
.user-modal p{
    margin-bottom: 0;
}
 .progress-segment {
    height: 2rem;
    display: inline-block;
    transition: width 1.5s ease-in-out;
    margin-right: .2rem;
  }
  .form-check-input {
    cursor: pointer;
    background-color: rgb(0, 33, 52);
    position: relative;
    appearance: none;
    width: 4rem !important;
    height: 2rem !important;
    border: 1px solid var(--text-color);
}
.form-check-input:checked::before {
    transform: translateX(30px);
    background: rgb(0, 33, 52);
}

.form-check-input::before {
    content: "";
    position: absolute;
    top: 0.25rem;
    left: 0.3rem;
    width: 1.5rem;
    height: 1.5rem;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 4px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s;
}
.form-check-input:checked {
    background-color: rgb(241, 241, 241);
}
html:not(.designer) body.theme-entry a.toolbar-button{
    display: flex;
    align-items: center!important;
    height: 3rem;
    transition:all .3s ease-in-out;
    border:none!important;
    background-color:transparent!important;
    padding-right: .7rem;
}
html:not(.designer) body.theme-entry a.toolbar-button:hover{
    opacity:1;
}
html:not(.designer) .theme-entry a.toolbar-button span.button-c span.button-text{
    color:var(--Navy-blue)!important;
    font-family:var(--Alinma-plain);
    font-size: .95rem;
}
/* status right panel */
.status-container {
    padding: 0 0.5rem;
    position: fixed;
    right: 3rem;
    top: 8rem;
    background-color: var(--Isabelline);
    height: 100%;
    width: 26rem;
    overflow-y: auto;
    height: calc(100% - 9rem);
}

.status-title {
    color: #002134!important;
    margin-bottom: 2.5rem!important;
    font-size: 2rem!important;
    font-family: var(--Alinma-bold)!important;
}

.status-item {
    position: relative;
    padding-left: 2.75rem;
    margin-bottom: 1.875rem;
}

.status-item::before {
 content: '';
    position: absolute;
    left: .5rem;
    top: 3.125rem;
    bottom: -1.875rem;
    width: 2px;
    background-color: #d0d0d0;

}

.status-item:nth-last-of-type(1)::before {
    content: none;
}
.status-icon {
    position: absolute;
    left: -.8rem;
    top: 0.2rem;
    width: 2.8rem;
    height: 2.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.status-icon.completed  img{
  height: 2rem;
  width: 2rem;
}
.status-icon.in-progress img{
  height: 2rem;
  width: 2rem;
}
.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.3rem;
}
.status-name {
    font-size: 1.1rem!important;
    color: #1a3a52!important;
    margin: 0!important;
    font-family: var(--Alinma-bold);
    text-align: left;
}
.status-date {
    font-size: 1rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--Alinma-plain);
}
.status-state {
    color: #666;
    font-size: 1rem;
    font-family: var(--Alinma-plain);
}
.status-message {
    background-color: #FDFAF8;
    border: 1px solid #e5e5e5;
    border-radius: 0.75rem;
    padding: 0.75rem;
    margin-top: 1rem!important;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    transition: .3s all ease;
    overflow: hidden;
    font-family: var(--Alinma-plain);
}

@keyframes fadeDownStat {
    0% {
        opacity: 0;
        transform: translateY(-10px);
        height: 0;
        padding-top: 0;
        padding-bottom: 0;
        margin-top: 0;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        height: auto;
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
        margin-top: 1rem;
    }
}

 @keyframes fadeUpStat {
    0% {
        opacity: 1;
        transform: translateY(0);
        height: auto;
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
        margin-top: 1rem;
    }
    100% {
        opacity: 0;
        transform: translateY(-10px);
        height: 0;
        padding-top: 0;
        padding-bottom: 0;
        margin-top: 0;
    }
} 

.status-message.show {
    animation: fadeDownStat 0.4s forwards;
}

.status-message.hide {
    animation: fadeUpStat 0.4s forwards;
}


.status-message.collapsed {
    display: none;
}

.view-attachments-btn {
    background-color: transparent;
    border: 1px solid #d0d0d0;
    border-radius: 0.75rem;
    padding: 1.25rem;
    width: 100%;
    color: #002134;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.collapse-icon {
    font-size: 0.9rem;
    cursor: pointer;
    transition: .3s all ease;
}

.collapse-icon.rotated {
    transform: rotate(180deg);
    
}
.theme-entry .SourceCodeFormsControlsWorklist .headerTxt{
    color:var(--Navy-blue)!important;
    font-size:1.5rem!important;
    font-family:var(--Alinma-bold);
}
.theme-entry .SourceCode-Forms-Controls-Web-ControlPack-Worklist{
    border-radius:1rem;
    /* border: 2px solid rgb(215 214 213) !important; */
    overflow:hidden!important;
    background-color: white;
}
.theme-entry .SourceCodeFormsControlsWorklist .nav{
    padding:1rem;
    background-color:transparent!important;
}
.theme-entry .SourceCode-Forms-Controls-Web-ControlPack-Worklist .SourceCodeFormsControlsWorklist{
    background:transparent;
    border: none;
}
/**/

.innerpanel div[name="MarketingAttachments Area Item"]{

    padding: 2rem 0;

}
 
.innerpanel div[name="MarketingAttachments Area Item"] .grid-column-header-table td{

    background-color: #F8EFE8 !important;

    padding-top : .5rem !important;

    padding-bottom : .5rem  !important;

    border-right: unset;

}
 
.innerpanel div[name="MarketingAttachments Area Item"] .grid-column-headers, .innerpanel div[name="MarketingAttachments Area Item"] .grid-column-headers td{

    border-radius: 1rem;

}
 
.innerpanel div[name="MarketingAttachments Area Item"] .grid-body-content-wrapper tr:first-child td .grid-content-cell{

    margin-top: .5rem;

}
 
.innerpanel div[name="MarketingAttachments Area Item"] .grid-body-content-wrapper tr:not(:last-child) td{

    border-bottom: 1px solid rgba(0,0,0,.1);

}
 
 
.innerpanel div[name="MarketingAttachments Area Item"] .grid-body-content-wrapper tr, .innerpanel div[name="MarketingAttachments Area Item"] .grid-column-header-table .grid-column-header-text{

    background-color: unset !important;

}
 
.innerpanel div[name="MarketingAttachments Area Item"] .grid-footer{

    display: none !important;

}
 html:not(.designer) [name="Admin Requests Dashboard Control"]
 {
    width:100%!important;
 }
 .pendingRequestsTable .table-responsive{
    overflow-y: hidden;
 }
.innerpanel div[name="MarketingAttachments Area Item"] .grid-body-content-wrapper tr.selected td, .innerpanel div[name="MarketingAttachments Area Item"] .grid-body-content-wrapper tr:hover td{

    background-color: unset !important;

}
 .innerpanel div[name="MarketingAttachments Area Item"] .grid-column-headers .grid-column-header-text{
    opacity: 1;
}

html:not(.designer) .commentsAttachments {
    width:calc(100% - 28rem)!important;
    background-color:white!important;
    padding: 2rem 2rem;
    margin-top:2rem;
        border-radius: 1rem;
    overflow: hidden;
    border: 1.6px solid #e5e4de;
}
html:not(.designer) .commentsAttachments [name*="viewTitle"]{
    margin-bottom:1.5rem;
}
.pageOf span{
    color: var(--Navy-blue);
    font-size: .9rem;
    font-family: var(--Alinma-plain);
    margin: 0 0.15rem;
}
.pageOf span.totalOf,
.showingItems p{
    color:#686868;
}
.totalPagesNumber,
.showingItems span:nth-child(2),
.showingItems span:last-child,
.showingItems .pageTo,
.showingItems .totalOf,
.showingItems .currentPage{
    font-family:var(--Alinma-bold)!important
}
[name="NR_MarketingRequest_Form_Stage Area Item  view_move_left"]{
     width:calc(100% - 28rem)!important;
    margin-top:1rem;

}
html:not(.designer) .theme-entry .input-control.radio.style-aware svg {
    height: 1.4rem!important;
   
}
html:not(.designer) .theme-entry .commentsAttachments [name*="commentsView"]{
    margin-bottom: 1rem;
}
html:not(.designer) .theme-entry .commentsAttachments [name*="attachmentSection"]{
    /* border:none!important; */
    background:transparent!important;
   
}
.theme-entry .SourceCode-Forms-Controls-Web-ControlPack-Worklist tbody{
width: 100%;
}
 
 
.theme-entry .SourceCode-Forms-Controls-Web-ControlPack-Worklist .WorkListGridTableBody{
border-top: unset !important;
}
 
 
.theme-entry .SourceCodeFormsControlsWorklist .worklist-grid-even {
    background-color: unset;
}
 
.theme-entry .SourceCode-Forms-Controls-Web-ControlPack-Worklist .WorkListItemTable{
    margin-top: .5rem;
}
 
.theme-entry .SourceCode-Forms-Controls-Web-ControlPack-Worklist .WorkListGridHeader tr th:nth-child(2) span{
border-right: unset!important;
}
 
.theme-entry .SourceCodeFormsControlsWorklist span.worklist-grid-column-header-cell-text{
    padding: 0 !important;
    font-size: 1rem;
    text-transform: unset !important;
    color: black;
}
 
.theme-entry .SourceCodeFormsControlsWorklist .WorkListItemTableHeader th{
    border-radius: unset;
}
 
.theme-entry .SourceCodeFormsControlsWorklist .WorkListItemTable .WorklistItemGridRow td:last-child{
    padding-right: 1rem;
}
 .theme-entry .SourceCodeFormsControlsWorklist .WorkListItemTable .WorklistItemGridRow > td{
    height: 4rem;
    border-bottom: 1px solid rgba(0 0 0 / 20%);
    border-right: unset;
    border-left: unset;
 }
.theme-entry .SourceCodeFormsControlsWorklist .WorkListItemTable tr:hover td:last-child .SelectArrowImageDiv{background-size: auto 22px !important;width: 22px !important;height: 22px !important; background-position: -22px 0 !important;}
 .read-only  .input-control-buttons{
display:none!important;
}
/**/
/*  MARKETING DASHBOARD START */
.marketingDashboard{
    /* gap: 1rem; */
    width: 100%;
    display: flex;
    align-items: stretch;
    margin-bottom: 1rem;
}
.marketingDashboard > .col-lg-9,
.marketingDashboard > .col-lg-3{
    padding: 0 1rem;
    padding-left: 0;
    height: 100%;
}
.marketingKPIs{
    gap:1rem;
    margin-bottom: 1rem;
    justify-content: space-between;
}
.marketingKPIs .col-lg-4 .card {
    width: 100%;
    height: 8.5rem;
    border: 1px solid #E5E4DE;
    border: none;
    border-radius: 1rem;
    opacity: 0;
    transform: translateY(100%);
    animation: 1s fadeUp forwards;
    flex-grow: 1;
    font-family: var(--Alinma-plain);
    padding: 1rem;
    box-shadow: unset;
}
.overviewCard{
    border-radius: 1.2rem;
    border: 1px solid #E5E4DE;
    border: none;
    width: 100%;
    margin-bottom: 1rem;
    height: 22rem;
    padding: 1rem!important;
}
.marketingoverview{
    border-radius: 1.2rem;
    border: 1px solid #E5E4DE;
    border: none;
    width: 100%;
    margin-bottom: 1rem;
    height: 25rem;
    padding: 1rem!important;
}
.popularRequests{
    border-radius: 1.2rem;
    border: 1px solid #E5E4DE;
    border: none;
    width: 100%;
    margin-bottom: 1rem;
    height: 25rem;
    padding: 1rem!important;
}
.overviewCard .card-header,
.totalRequests .card-header,
.card .card-header{
    padding:.5rem .5rem 0;
}
.overviewCard .card-body{transform:translateY(-2.5rem);}
.overviewCard .card-body span.label{
    font-size:1rem;
    font-family:var(--Alinma-plain);
}
.totalRequests{
    height: 22rem;
    border-radius: 1.2rem;
    border: 1px solid #E5E4DE;
    border: none;
    width: 100%;
    padding: 1rem!important;
}
#semiCircleChart{
    height:100%!important;
    width: 100%!important;
}
.pendingRequestsTable .actionsColumn span{
    text-align: center;
}
/* FEEDBACK SECTION START */
.rating-screen.screen div:first-child{
    padding: 0 !important; 
}
div#\31 17b3d33-1b3e-4ae1-9173-a68fb38d779a {
    background-color: transparent!important;
    border: none!important;
    display: flex;
    align-items: center;
    justify-content: center;
}
.RequestFeedbackControl-RequestFeedbackControl{
     opacity: 0;
    transform: translateY(100%);
    animation: 1s fadeUp 3s forwards;
}
.RequestFeedbackControl-RequestFeedbackControl .card {
    max-width: 46.5rem;
    width: 100%;
    border: none;
    border-radius: 1.25rem;
    box-shadow: none;
    padding: 2rem 2.5rem;
    overflow: hidden;
   
}

.RequestFeedbackControl-RequestFeedbackControl .screens {
    display: flex;
    width: 200%;
    transition: transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
}

.RequestFeedbackControl-RequestFeedbackControl .screen {
    width: 50%;
}

.RequestFeedbackControl-RequestFeedbackControl .screens.slide-left {
    transform: translateX(-50%);
}

@media (prefers-reduced-motion: reduce) {
   .RequestFeedbackControl-RequestFeedbackControl .screens {
        transition: none;
    }
}

.RequestFeedbackControl-RequestFeedbackControl .card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    font-family: var(--Alinma-bold);
    margin-bottom: 0.625rem;
}

.RequestFeedbackControl-RequestFeedbackControl .d-flex.justify-content-between.align-items-center.mb-4 {
    margin: 0 !important;
    padding: 0rem;
}

.RequestFeedbackControl-RequestFeedbackControl .request-id {
    color: #999;
    font-size: 1.125rem;
    font-weight: 600;
    font-family: var(--Alinma-plain);
}

.RequestFeedbackControl-RequestFeedbackControl .feedback-text {
    color: #4a4a4aeb;
    margin: 2.5rem 0rem;
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 1.8;
}
.RequestFeedbackControl-RequestFeedbackControl hr{
    margin: 2rem 0 0;
    color: rgba(0, 0, 0, .4);
}
.RequestFeedbackControl-RequestFeedbackControl .rating-container {
    display: flex;
    justify-content: space-evenly;
    margin: 1.5rem 0;
    flex-wrap: nowrap;
    width: auto;
    font-family: var(--Alinma-bold);
}

.RequestFeedbackControl-RequestFeedbackControl .rating-btn {
    width: 3.5rem;
    height: 3.5rem;
    border: 0.125rem solid transparent;
    border-radius: 0.8rem;
    font-size: 1.375rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: transform 0.45s ease, box-shadow 0.45s ease, background-color 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.RequestFeedbackControl-RequestFeedbackControl .rating-btn:hover {
    transform: translateY(-0.3125rem) scale(1.08);
    box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.139);
}

.RequestFeedbackControl-RequestFeedbackControl .rating-btn:active {
    transform: translateY(-0.125rem) scale(1.02);
}

.RequestFeedbackControl-RequestFeedbackControl .rating-btn.selected,
.RequestFeedbackControl-RequestFeedbackControl .rating-btn.selected:hover {
    transform: translateY(-5px) scale(1.08);
}

.RequestFeedbackControl-RequestFeedbackControl .rating-btn:disabled {
    cursor: not-allowed;
    opacity: 0.5;
    transform: none;
}

.RequestFeedbackControl-RequestFeedbackControl .rating-btn.selected:disabled {
    opacity: 1;
    transform: translateY(-5px) scale(1.08);
    cursor: default;
}

.RequestFeedbackControl-RequestFeedbackControl .rating-btn-1 {
    background-color: #df6857;
    border-color: #f2a59a;
}

.RequestFeedbackControl-RequestFeedbackControl .rating-btn-1.selected {
    background-color: #f2a59a;
}

.RequestFeedbackControl-RequestFeedbackControl .rating-btn-2 {
    background-color: #e5825d;
    border-color: #f2b096;
}

.RequestFeedbackControl-RequestFeedbackControl .rating-btn-2.selected {
    background-color: #f2b096;
}

.RequestFeedbackControl-RequestFeedbackControl .rating-btn-3 {
    background-color: #f2a56a;
    border-color: #f6b47f;
}

.RequestFeedbackControl-RequestFeedbackControl .rating-btn-3.selected {
    background-color: #f6b47f;
}

.RequestFeedbackControl-RequestFeedbackControl .rating-btn-4 {
    background-color: #f5c172;
    color: #1a1a1a;
    border-color: #f9daa1;
}

.RequestFeedbackControl-RequestFeedbackControl .rating-btn-4.selected {
    background-color: #f9daa1;
}

.RequestFeedbackControl-RequestFeedbackControl .rating-btn-5 {
    background-color: #f8d462;
    color: #1a1a1a;
    border-color: #fdf3a8;
}

.RequestFeedbackControl-RequestFeedbackControl .rating-btn-5.selected {
    background-color: #fdf3a8;
}

.RequestFeedbackControl-RequestFeedbackControl .rating-btn-6 {
    background-color: #f9e784;
    color: #1a1a1a;
    border-color: #fffec0;
}

.RequestFeedbackControl-RequestFeedbackControl .rating-btn-6.selected {
    background-color: #fffec0;
}

.RequestFeedbackControl-RequestFeedbackControl .rating-btn-7 {
    background-color: #f1e37f;
    color: #1a1a1a;
    border-color: #fef8b4;
}

.RequestFeedbackControl-RequestFeedbackControl .rating-btn-7.selected {
    background-color: #fef8b4;
}

.RequestFeedbackControl-RequestFeedbackControl .rating-btn-8 {
    background-color: #e8e07e;
    color: #1a1a1a;
    border-color: #f5efaa;
}

.RequestFeedbackControl-RequestFeedbackControl .rating-btn-8.selected {
    background-color: #f5efaa;
}

.RequestFeedbackControl-RequestFeedbackControl .rating-btn-9 {
    background-color: #98d16f;
    color: #1a1a1a;
    border-color: #c4e4ad;
}

.RequestFeedbackControl-RequestFeedbackControl .rating-btn-9.selected {
    background-color: #c4e4ad;
}

.RequestFeedbackControl-RequestFeedbackControl .rating-btn-10 {
    background-color: #7fc757;
    color: #1a1a1a;
    border-color: #ceeebc;
}

.RequestFeedbackControl-RequestFeedbackControl .rating-btn-10.selected {
    background-color: #ceeebc;
}

.RequestFeedbackControl-RequestFeedbackControl .rating-btn-1,
.RequestFeedbackControl-RequestFeedbackControl .rating-btn-2,
.RequestFeedbackControl-RequestFeedbackControl .rating-btn-3,
.RequestFeedbackControl-RequestFeedbackControl .rating-btn-4,
.RequestFeedbackControl-RequestFeedbackControl .rating-btn-5,
.RequestFeedbackControl-RequestFeedbackControl .rating-btn-6,
.RequestFeedbackControl-RequestFeedbackControl .rating-btn-7,
.RequestFeedbackControl-RequestFeedbackControl .rating-btn-8,
.RequestFeedbackControl-RequestFeedbackControl .rating-btn-9,
.RequestFeedbackControl-RequestFeedbackControl .rating-btn-10 {
    background-image: linear-gradient(to top left, rgba(255, 255, 255, 0.146), rgba(255, 255, 255, 0));
    background-blend-mode: overlay;
    font-size: 1.6rem;
    border: 2px solid rgba(255 255 255,.4)
}


.RequestFeedbackControl-RequestFeedbackControl .rating-labels {
    display: flex;
    justify-content: space-between;
    color: #999;
    font-size: 1rem;
    margin-bottom: 1.25rem !important;
    margin:0 1rem!important;
    font-family: var(--Alinma-bold);
}

.RequestFeedbackControl-RequestFeedbackControl .label-not-satisfied {
    color: #e57373;
    font-weight: 500;
}

.RequestFeedbackControl-RequestFeedbackControl .label-extremely-satisfied {
    color: #81c784;
    font-weight: 500;
}

.RequestFeedbackControl-RequestFeedbackControl #ratingScreen,
.RequestFeedbackControl-RequestFeedbackControl #successScreen {
    transition: none;
    /* Disable automatic transitions */
}

.RequestFeedbackControl-RequestFeedbackControl #ratingScreen {
    opacity: 1;
    transform: translateX(0);
}

.RequestFeedbackControl-RequestFeedbackControl #successScreen {
    opacity: 0;
    transform: translateX(50px);
}

/* Fade out to the left */
#ratingScreen.fade-out-right-to-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Fade in from the right */
#successScreen.fade-in-right-to-left {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

#ratingScreen.processing {
    animation: processing-pulse 1s ease-in-out infinite;
}

@keyframes processing-pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        opacity: 1;
    }
}


.success-screen {
    display: block;
    text-align: center;
}

.screens:not(.slide-left) .success-screen {
    visibility: hidden;
}

.screens.slide-left .success-screen {
    visibility: visible;
}


.screens.slide-left .rating-screen {
    visibility: hidden;
}

.checkmark-circle {
    width: 7.5rem;
    height: 7.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem auto;
    background: linear-gradient(311deg, #8ed08a, #87c984, #00000000);
    animation: scaleIn 0.5s ease;
}


.success-header {
    padding: 1.75rem 1.5rem;
    width: 100%;
}

.checkmark {
    width: 4.75rem;
    height: 4.75rem;
    stroke: white;
    stroke-width: 8;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    animation: checkmark 0.5s ease 0.3s forwards;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes checkmark {
    to {
        stroke-dashoffset: 0;
    }
}

.success-title {
    font-size: 1.75rem;
    font-weight: 500;
    font-family: sans-serif;
    color: #1a1a1a;
}

.success-message {
    font-weight: 500;
    color: #4a4a4a;
    line-height: 1.6;
}
div#a1785b7c-5537-44bf-a510-6f3e6760d6b1 {
    opacity: 0;
    transform: translateY(100%);
    animation: 1s fadeUp 3s forwards;
    min-height: calc(100vh - 17rem);
}
@media (max-width: 48rem) {
    .rating-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
        width: auto;
    }

    .rating-btn {
        width: 3rem;
        height: 3rem;
        font-size: 1.125rem;
    }

    .card {
        padding: 1.875rem 1.25rem;
    }

    .card-title {
        font-size: 1.5rem;
    }

    .rating-labels {
        margin: 0 !important;
        gap: 7rem;
    }
}
.success-screen .success-title{
    font-family: var(--Alinma-bold);
    font-size: 1.3rem;
}
 
.success-screen .success-message{
    font-family: var(--Alinma-plain);
    font-size: 1.1rem;
    margin: .8rem 0 1rem
}
 
.success-screen .checkmark{
    width: 5.5rem;
    height: 5.5rem;
    transform: translateX(-.25rem);
}
 
.success-screen .checkmark-circle{
  margin-top: 3rem;
}
/* FEEDBACK SECTION END */
.label {
  font-size: 0.9rem;
  padding-left: 5px;
  font-family: 'AlinmaTheSans';
  font-weight: normal;

}

.sentence-container {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ccc;
  padding: 6px 0;
  gap: 15px;
  padding-bottom: 1rem;
}

.sentence-container:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.left-logo img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

.sentence-text {
  margin: 0;
  font-size: 0.8rem;
  font-family: 'AlinmaTheSans';
}


.custom-dropdown {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 6px 8px;
  min-width: 90px;
  font-size: 0.9rem;
  background: #f3e5e5;
  border-radius: 10px;
  border: none;
  font-family: 'AlinmaTheSans';
  font-size:1rem;
}

.dropdown-item {
  padding: 0.5rem 1rem;
  font-family: 'AlinmaTheSans';
}

/* dashboard page */
.Select-btn .small-logo-chevron {
  width: 8px;
  height: 8px;
  padding-top: 3px;
}

.Select-btn {
  display: flex!important;
  align-items: center;
  gap: 6px;
  background-color: #F0DFDB;
  border-radius: 8px;
  padding: 4px 6px;
  font-size: 0.8rem;
}

.dropdown-menu-custom {
  display: none;
  position: absolute;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 10;
  padding: 0;
}

.dropdown-item-custom {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 6px 33px 6px 8px;
  cursor: pointer;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  width: 95%;
  margin: 0 auto;
}

.dropdown-item-custom:last-child {
  border-bottom: none;
}

.dropdown-item-custom:hover {
  background-color: #f5f5f5;
}
.option-icon {
  width: 0.7rem;
  height: 1rem;
  padding-top: 5px;
  display: none;
}
.dropdown-custom.active .dropdown-menu-custom {
  display: block;
}
.dropdown-custom.active .small-logo-chevron {
  transform: rotate(180deg);
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 150px;
  border-radius: 8px;
  display: none;
  flex-direction: column;
  z-index: 10;
  padding: 5px 0;
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  cursor: pointer;
}
.overviewCard .card-body .sentences{
  position: relative;
  padding-left: 1rem;
}
.overviewCard .card-body .sentences::before {
  content:"";
  position:absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 13px;
  height: 13px;
  border-radius: 50%;
  display: inline-block;
}
.overviewCard .card-body .sentences:nth-child(1)::before {
  background-color: #9795E0;
}
.overviewCard .card-body .sentences:nth-child(2)::before  {
  background-color: #FF9480;
}
.overviewCard .card-body .sentences:nth-child(3)::before  {
  background-color: #E9DBD0;
 
}
.percentage {
  font-size: 1rem;
  font-weight: bold;
  font-family: 'AlinmaTheSans-Bold';
}
.sentences {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 5px;
}
.label {
  font-size: 0.9rem;
  padding-left: 5px;
  font-family: 'AlinmaTheSans';
  font-weight: normal;
}
.custom-dropdown {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: .4rem 1rem;
  font-size: 1REM;
  background: #f3e5e5;
  border-radius: 8px;
  border: none;
  font-family: var(--Alinma-plain);
  gap: 3px;
}
.dropdown-item {
  padding: 0.5rem 1rem;
  font-family: 'AlinmaTheSans';
}
.chart-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  width: 100%;
  height: 14rem;
}
.barChart {
  height: 18rem;
  display: flex;
  justify-content: center;
  padding-top: 15px;
}
.semi-circle-text {
  position: absolute;
  bottom: 50px;
  text-align: center;
}
.number-text {
  margin-bottom: -8px;
  font-size: 1.7rem;
  font-family: 'AlinmaTheSans-Bold';

}
.value {
  display: block;
}
.label-text {
  font-size: 0.9rem;
  font-family: 'AlinmaTheSans';
  display: block;
  color: rgba(0, 0, 0, 0.495);
  font-family: 'AlinmaTheSans-Bold';
}
.right-content.dropdown {
    display: none;
}
/*  MARKETING DASHBOARD END */
/* PAGINATION START */
button.previousPage,
button.firstPage,
button.nextPage,
button.lastPage{
    background-color: transparent;
    border: none;
}
.pageNumber{
    margin:0 .5rem;
    height: 2rem;
    width: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: .5rem;
}
.pageNumber.active{
    border: 1px solid var(--Navy-blue);
    background-color: rgb(0 33 52 / 16%);
}
/* PAGINATION END */
.commentsAttachments .toolbar-wrapper{
    border-bottom: unset !important;
}
 
.commentsAttachments .grid-column-header-table td{
    background-color: unset !important;
}
 #skeletonOverlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    z-index: 99;
    background-color: white;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.sk-sidebar .sk-card { 
  height: 64px;
  border-radius: 12px; 
  margin: 25px 0 35px 0; 
}

.sk-sidebar .sk-line { 
  height: 16px;  
  width: 60%; 
  margin: 12px 0; 
}

.sk-sidebar .sk-item { 
  height: 35px;  
  border-radius: 12px; 
  margin: 8px 0; 
}
.sk-sidebar .sk-toggle { 
   height: 50px;  
   width: 85%;
  border-radius: 12px; 
  margin: 70px 0 8px 0;
}

.sk-main { 
  display: grid; 
  grid-template-rows: auto 1fr; 
  gap: 20px; 
}

.sk-header {
  display: grid;
  grid-template-columns: 1fr 200px; 
  align-items: center;
  gap: 16px;
}

.sk-header .sk-title { 
  height: 35px; 
  width: 37%;
  margin-top: 1.3rem;
}

.sk-header .sk-sub { 
  height: 16px; 
  width: 23%; 
  margin-top: 2rem; 
}

.sk-header .sk-logo {
   height: 5rem; 
}

.sk-content {
  display: grid;
  grid-template-columns: 1fr 270px; 
  gap: 24px;
}

.sk-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
  margin-bottom: 24px;
}

.sk-card-sm { 
  height: 100px; 
  border-radius: 15px; 
}

.sk-title {
  width: 140px;         
  height: 20px;        
  border-radius: 6px;
  background: linear-gradient(90deg, #eee 25%, #f6f6f6 50%, #eee 75%);
}

.sk-right { 
  display: grid; 
  grid-auto-rows: min-content; 
  gap: 16px; 
}

.sk-right .sk-card-tall {
  height: 297px; 
  border-radius: 15px; 
}

.sk-table-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 16px;
  padding: 23px 14px 23px 14px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.sk-table-headbar {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 14px;
}

.sk-pill {
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(90deg,#eee 25%,#f6f6f6 50%,#eee 75%);
  background-size: 400% 100%;
  animation: sk-shimmer 1.15s linear infinite;
}

.sk-search {
  width: 220px;
  height: 36px;
  border-radius: 10px;
}

.sk-requests {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  overflow: hidden;
  border-radius: 12px;
}

.sk-requests thead th {
  
  font-size: 0;
  padding: 12px 16px;
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.sk-requests tbody tr:last-child td {
  border-bottom: none;
}
.sk-thline {
  height: 16px;
  border-radius: 8px;
  background: linear-gradient(90deg, #eee 25%, #f6f6f6 50%, #eee 75%);
 width: 95%;
}

.sk-requests thead th:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 15%;
  bottom: 15%;
  right: 0;
  width: 1px;
  background: #dcdcdc;
}

.sk-requests thead th:first-child {
  border-top-left-radius: 10px;
}
.sk-requests thead th:last-child {
  border-top-right-radius: 10px;
}

.sk-requests tbody td {
  background: #fff;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.10);
  vertical-align: middle;
}

.sk-line {
  height: 14px;
  border-radius: 8px;
  width: 100%;
  background: linear-gradient(90deg,#eee 25%,#f6f6f6 50%,#eee 75%);
  background-size: 400% 100%;
  animation: sk-shimmer 1.15s linear infinite;
}

.sk-thline {
  height: 16px;
  width: 60%;
  margin-left: 0;
}

.sk-sort {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: linear-gradient(90deg,#e9e9e9 25%,#f5f5f5 50%,#e9e9e9 75%);
  background-size: 400% 100%;
  animation: sk-shimmer 1.15s linear infinite;
}

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

.sk-ext .sk-icon {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: linear-gradient(90deg,#eee 25%,#f6f6f6 50%,#eee 75%);
  background-size: 400% 100%;
  animation: sk-shimmer 1.15s linear infinite;
  flex: 0 0 14px;
}

.sk-ext .sk-line {
  width: 110px;
}

.sk-action {
  width: 100px;
  height: 28px;
  border-radius: 10px;
  margin: 0 auto;
  background: linear-gradient(90deg,#eee 25%,#f6f6f6 50%,#eee 75%);
  background-size: 400% 100%;
  animation: sk-shimmer 1.15s linear infinite;
}

.sk-table-scroll {
  overflow-x: auto;
}
  body #skeletonOverlay {
        display: grid;
        z-index: 2147483647;
        background: white;
        grid-template-columns: 323px 1fr;
        gap: 24px;
        display: none;
  }

  .sk-block {
    height: 16px; border-radius: 8px;
    background: linear-gradient(90deg,#eee 25%,#f5f5f5 50%,#eee 75%);
    background-size: 400% 100%;
    animation: sk-shimmer 1.2s infinite linear;
    margin-bottom: 12px;
  }
  
#skeletonOverlay.hidden {
  opacity: 0;
  visibility: hidden;
}
.chart-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  width: 100%;
  height: 14rem;
}
.card.userSatisfaction,.card.averageTime {
    border-radius: 1.2rem;
    border: 1px solid #E5E4DE;
    border: none;
    width: 100%;
    margin-bottom: 1rem;
    height: 12rem;
    padding: 1rem !important;
}
/* MARKETING DASHBOARD START */
.marketingDashboard{
    gap:.6rem;
    align-items: flex-start;
}
#myCircularChart {
    width: 17rem !important;
    height: 17rem !important;
    /* margin-top: 3rem; */
    transform: rotate(21deg);
}
.circleChart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.segment-label1 {
    position: absolute;
    pointer-events: none;
    top: 56%;
    right: 0;
}
.segment-label2 {
    position: absolute;
    pointer-events: none;
    top: -11%;
    left: 39%;
}
.segment-label3 {
    position: absolute;
    pointer-events: none;
    top: 58%;
    left: 0;
}
.chart-center-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    pointer-events: none;
    margin-top: 1.2rem;
}
.chart-center-text .number {
    display: block;
    font-family: 'AlinmaTheSans-Bold';
    font-size: 1.9rem;
}
.number {
    font-size: 1.8rem;
    font-weight: bold;
    padding-left: 0.3rem;
    font-family: 'AlinmaTheSans-Bold';
}
.chart-center-text .label {
    display: block;
    font-family: 'AlinmaTheSans';
    font-size: 0.8rem;
    margin-top: -4px;
}
.label-box1 {
    background-color: #ffffff;
    min-width: 80px;
    border-radius: 5px 5px 5px 0;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    font-family: 'AlinmaTheSans-Bold';
    font-size: 12px;
    padding: -1px 22px 2px 10px;
}

.label-box2 {
    background-color: #ffffff;
    min-width: 80px;
    border-radius: 5px 5px 5px 0;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    font-family: 'AlinmaTheSans-Bold';
    font-size: 12px;
    padding: 2px 22px 2px 10px;
}
.label-box3 {
    background-color: #ffffff;
    min-width: 80px;
    border-radius: 5px 5px 0 5px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    font-family: 'AlinmaTheSans-Bold';
    font-size: 12px;
    padding: 2px 22px 2px 10px;
}
.value {
    display: block;
}
.label-text {
    display: block;
    font-size: 10px;
    color: rgba(0, 0, 0, 0.495);
    font-family: 'AlinmaTheSans-Bold';
}
#popularRequestsChartBox {
    height: 210px;
}

.chart {
    position: relative;
    width: 330px;
    height: 200px;
    margin: 2rem auto 0;
    z-index: 0;
}
/* MARKETING DASHBOARD END */
@media(min-width:992px){
        .pendingRequestsTable {
        height: 35.5rem;
    }
    .myRequestsTable, .pendingRequestsTable{
        margin-bottom:0;
    }
       .marketingDashboard > .col-lg-9 {
        flex: 0 0 auto;
        width: 72%;
        padding-right: 0;
    }
    [name="headerLogo"]{
   position: unset;
   margin-top: 0.5rem!important;
}
    html body .requestsTile .card .card-header{
    padding: 1.5rem 2rem 1rem;
}
    html body .requestsTile .card .card-body{
    padding: 0rem 2rem 1.7rem;
}
     thead th {
   
    background-color: var(--Table-header) !important;
    
}
    html:not(.designer) body {
    font-size: 16px;
    font-family: var(--Alinma-plain);
    background-color: var(--Isabelline);
    margin-left: 19.5rem;
    width: calc(100% - 19.5rem);
}
    .request-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Two columns */
    gap: 0;
    border-radius: .8rem;
    overflow: hidden;
    border: 1px solid rgb(0 0 0 /10%);
}
    html:not(.designer) body aside.sidebar {
    transition: all .3s ease-in-out;
    transform: translateX(-100%);
    animation:1s fadeLeft forwards;
}
    html:not(.designer) body .kpiCards .card {
    width: 15rem;
}
    .marketingDashboard > .col-lg-3 {
        flex: 0 0 auto;
        width: 28%;
        padding-right: 0;
        padding-left: 1.5rem;
    }
    .marketingKPIs .col-lg-4{
        width:32%;
    }
}
@media(min-width:1200px){
     html:not(.designer) body .kpiCards .card {
    width: 48%;
}
}
@media(min-width:1600px){
    .Select-btn .small-logo-chevron {
  width: .6vw;
  height: .6vw;
  padding-top:0;
}
    .Select-btn {
    gap: .3vw;
    border-radius: .5vw;
    padding: .5vw;
    font-size: 0.8vw;
}
    .barChart {
    height: 18vw;
    padding-top: .9vw;
}
    .overviewCard .card-body .sentences{
  position: relative;
  padding-left: 1vw;
  padding-bottom: 0.4vw;
}
.overviewCard .card-body .sentences::before {
  width: .8vw;
  height: .8vw;
}
    .overviewCard .card-body{transform: translateY(-1vw);}
    .status span {
    padding: 0.4vw .1vw !important;
    border-radius: 0.5vw;
    width: 100%;
}
     .table thead th.statusColumn svg{
     /* right:1vw; */
 }
    .table thead th,
    .table tbody td{
    /* padding: 1vw 1vw !important; */
    }

    div#requests-label {
    margin-left: .4vw;
}
    html body ul.links > li {
        padding: .5vw 1vw;
        margin-bottom: .5vw;
        border-radius: .5vw;
    }
    .pendingRequestsTable .table thead th.sort svg {
    height: .8vw;
    width: .8vw;
}
    .loadMoreBtn {
    border-radius: 1vwinherit;
    padding: .6vw;
}
    .percentage {
    font-size: 1vw;
}
    .label-text {
    font-size: 0.9vw;
}
    .number-text{
    margin-bottom: -.10vw;
    font-size: 1.7vw;
}
    .overviewCard .card-body span.label{
    font-size: 1vw;
}
    .progress-segment{
    height: 2vw;
    margin-right: .2vw;
}
    thead th span {
    padding: 0.5vw 1vw;
    font-size: .85vw;
}
    .pendingRequestsTable th span{
        font-size: .85vw;
    }
    .myRequestsTable .sort svg {
    width: 1.1vw;
}
    .search-box::before {
    left: 0.8vw;
    height: 1.3vw;
    width: 1.3vw;

}
    .search-box {
    max-width: 20vw !important;
}
    .search-box input {
    padding-left: 2.5vw;
    border-radius: 0.6vw;
    padding-top: .5vw;
    padding-bottom: .5vw;
}
    .request-name {
    padding-left: 1.5vw;
}
    .request-name::before {
    margin-right: .5vw;
    height: .8vw;
    width: .8vw;
}
    .progress-bar-container {
        height: 0.8vw;
        border-radius: 1vw;
        margin-bottom: 1.5vw;
}
    html body .kpiCards .card .card-body .kpiIcon, html body .marketingKPIs .card .card-body .kpiIcon {
    position: absolute;
    top: 1vw;
    right: 1vw;
    height: 2.6vw;
    width: 2.6vw;
}
     .btn-edit {
    padding: 0.6vw 0.6vw;
    border-radius: .5vw;
    gap: 0.3vw;
    height: 2.2vw;
    width: 2.2vw;
}
    table td .request-number::before {
    height: 1vw;
    width: 1vw;

}
    .sideBarLinksGroup .icon {
    width: 1.5vw;
    margin-right: 1vw!important;
}
    .myRequestsTable, .pendingRequestsTable {
    border-radius: 1vw;
    padding: 2vw 1.5vw;
    font-size: 1vw;
    margin-bottom: 2vw;
    margin-top: .6vw;
    min-height: 29vw;
}
    .pendingRequestsTable{
        height: 38vw;
    }
    .totalRequests {
    height: 23vw;
    border-radius: 1.2vw;
    padding: 1vw!important;
}
    .overviewCard{
    border-radius: 1.2vw;
    margin-bottom: 0.6vw;
    height: 23vw;
    padding: 1vw !important;
}
    .table tbody td {
    padding: 1vw !important;
    border-radius: .5vw;
    font-size: .85vw;
}
    .myRequestsTable tbody tr:first-child td {
    padding-top: 2vw !important;
}
    .request-number{
    gap:.5vw;
    padding-left: 2vw;
    padding-left: 1.6vw;
    font-size: .85vw;
}
    html body .userSettings .userInformations .username {
    font-size: 1vw;
}
    html body .userSettings .userInformations .userPosition {
    font-size: .9vw;
}
    html body .sidebar .userProfilePhoto {
    margin-right: 1vw;
    border-radius: 0.8vw;
    width: 3vw;
}
    html body .sideBarLinksGroup .sidebarCategory:last-child .categoryName {
    margin: 1.5vw 1vw 1vw;
        font-size:1vw;
}
    .sideBarLinksGroup a {
    font-size: 1vw;
}
    .RequestFeedbackControl-RequestFeedbackControl .card {
    max-width: 46.5vw;
    border-radius: 1.25vw;
    padding: 2vw 2.5vw;
}
    .request-cards, .request-card .percentage, div#requests-label{
        font-size:1vw;
    }
    html body .kpiCards .card .card-body .kpiValue,
    html body .marketingKPIs .card .card-body .kpiValue{
     font-size:2vw;
    }
    .requests-total{
    font-size:1.9vw;
    margin-bottom: .7vw;
    }
    .tableHeader, html body .requestsTile .card .card-header h2, 
    html body .col-lg-3 .card .card-header h2, 
    .card .card-header h2{
        font-size: 1.3vw;
    }
    div#a1785b7c-5537-44bf-a510-6f3e6760d6b1 {
    min-height: calc(100vh - 12vw);
}
    html:not(.designer) body {
        margin-left: 16vw;
        width: calc(100% - 16vw);
    }
   
    html body aside.sidebar {
    width: 16vw;
    padding: 2vw 1.5vw;
}
    html body .kpiCards .card .card-body, html body .marketingKPIs .card .card-body{
        padding:0 .5vw;
    }
    html:not(.designer), html:not(.designer) body{
        font-size:1vw;
    }
    .chart-container{
        width: 80%!important;
        margin: auto;
        height: 12vw;
    }
    .sentencesContainer{
        width: 90%;
        margin: auto;
    }
    .pendingRequestsTable td,
    td[data-title="Actions"] .dropdown-custom button{
        font-size: 0.75vw;
    }
    html:not(.designer) body .kpiCards .card .card-body .kpiName, 
    html:not(.designer) body .marketingKPIs .card .card-body .kpiName{
        font-size: .75vw;
        margin-bottom: .4vw;
    }
    html body .kpiCards {
    gap: 0.6vw 0.6vw;
}
 
html body .requestsTile{
    height: 16vw;
}
html:not(.designer) body .kpiCards .card {
    width: 12vw;
    height: 7.7vw;
    padding: 0.7vw;
}
    .marketingKPIs .col-lg-4 .card{
        height: 7.7vw;
        padding: 0.8vw;
    }
.myRequestsTable{
  margin-top:1.5vw
}
}