* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
    --tw-shadow-colored: 0 1px 2px 0;
    --tw-shadow-colored: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --inter-font: "Inter", sans-serif;
    --primary-color: #115480;
    --bg-color: #eff4fa;
}

html {
    overflow-x: hidden !important;
}

body {
    font-family: var(--inter-font);
    font-weight: 400;
    font-size: 16px;
    line-height: normal;
    background-color: #ffffff;
    color: #172636;
}

/* Header Css Start */

.nav-brand img {
    height: 75px;
}

.custom-btn {
    background-color: hsl(200 20% 98%);
    height: 41px;
    border: 1px solid hsl(200 20% 90%);
    padding: 0px 10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0px 8px;
    font-size: 15px;
}

.custom-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.custom-btn:hover svg {
    color: #fff !important;
    stroke: #fff !important;
}

.custom-btn svg {
    width: 16px;
    height: 16px;
    color: var(--primary-color) !important;
    stroke: var(--primary-color) !important;
}

.custom-header-cta {
    display: inline-flex;
    gap: 0px 10px;
    align-items: center;
}

header {
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 99;
    background-color: #fff;
}

/* Header Css End */

/* main-area-wrapper Css Start */
.main-wrapper {
    display: flex;
    flex-wrap: wrap;
    padding-top: 91px;
}

.main-left {
    width: 250px;
    flex: 0 0 auto;
    background-color: hsl(210 60% 15%);
    height: calc(100vh - 91px);
    /* Adjusted height */
    padding: 8px;
    border: 1px solid hsl(200 20% 90%);
    position: sticky;
    /* Make it sticky */
    top: 91px;
    /* Position it below the header */
}

.main-right {
    width: calc(100% - 250px);
    flex: 0 0 auto;
    padding-left: 15px;
    background-color: hsl(200 20% 98%);
}

.nav-link {
    color: hsl(200 20% 85%);
    padding: 8px;
    font-size: 15px;
    display: inline-flex;
    width: 100%;
    align-items: center;
    gap: 0px 5px;
    font-weight: 400;
    border-radius: 5px;
}

.nav-link svg {
    width: 16px;
    height: 16px;
    color: var(--primary-color) !important;
    stroke: var(--primary-color) !important;
}

.nav-link:hover,
.nav-link.active {
    color: hsl(174 72% 50%);
    background-color: hsl(210 50% 22%);
}

.nav-bar-list li+li {
    margin-top: 6px;
}

.main-left-group h2 {
    font-weight: 500;
    font-size: 15px;
    color: hsl(200 20% 85%);
    text-transform: capitalize;
    margin-bottom: 15px;
}

.main-left-group {
    padding-top: 10px;
}

.main-heading h1 {
    font-weight: 600;
    font-size: 30px;
    margin-bottom: 10px;
}

.main-heading p {
    font-weight: 400;
    font-size: 15px;
    color: hsl(210 20% 45%);
}

.overview-cover {
    border: 1px solid hsl(200 20% 90%);
    border-radius: 10px;
    background-color: #f7fcfc;
    box-shadow: 0 2px 8px 0 rgb(0 0 0 / .06);
}

/* Custom Select Dropdown CSS */
.custom-select-wrapper {
    position: relative;
    user-select: none;
    width: 100%;
}

.custom-select {
    position: relative;
}

.custom-select-trigger {
    border: 1px solid hsl(200 20% 90%);
    background: hsl(200 20% 98%);
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    transition: background-color 0.2s ease;
    position: relative;
}

.custom-select-trigger:hover {
    background-color: hsl(200 20% 98%);
}

.custom-select.open .custom-select-trigger {
    background-color: hsl(200 20% 98%);
    border-color: hsl(200 20% 80%);
}

.custom-select-trigger .arrow {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
}

.custom-select-trigger>span {
    font-size: 14px;
}


.custom-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid hsl(200 20% 90%);
    border-top: 0;
    border-radius: 0 0 5px 5px;
    z-index: 10;
    max-height: 200px;
    overflow-y: auto;
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-select.open .custom-options {
    display: block;
}

/* Custom Scrollbar for dropdowns */
.filter-dropdown-menu::-webkit-scrollbar,
.search-suggestions::-webkit-scrollbar,
.custom-options::-webkit-scrollbar {
    width: 6px;
}

.filter-dropdown-menu::-webkit-scrollbar-thumb,
.search-suggestions::-webkit-scrollbar-thumb,
.custom-options::-webkit-scrollbar-thumb {
    background-color: #e2e8f0;
    border-radius: 10px;
}

.options-list li {
    padding: 10px 15px;
    cursor: pointer;
    font-size: 15px;
}

.after-slect-box {
    display: none;
}

.options-list li:hover {
    background-color: hsl(200 20% 98%);
}

.select-box .form-group label {
    color: hsl(210 20% 45%);
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 5px;
}

.select-box .form-group .select-group {
    display: flex;
    align-items: center;
    gap: 0px 13px;
}

.select-box .form-group .select-group .select-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 5px;
    background-color: hsl(174deg 72% 40% / 10%);
}

.select-box .form-group .select-group .select-icon svg {
    width: 20px;
    height: 20px;
    color: var(--primary-color) !important;
    stroke: var(--primary-color) !important;
}

.employee-cover,
.activity-cover,
.attendance-cover,
.communication-cover,
.excel-hire-cover {
    box-shadow: 0 2px 8px 0 rgb(0 0 0 / .06);
    border-radius: 10px;
    background-color: hsl(0 0% 100%);
    border: 1px solid #e5e7eb;
}

span.employee-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: hsl(200 20% 96%);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    margin-bottom: 16px;
}

h2 {
    font-weight: 500;
    font-size: 18px;
    line-height: normal;
    margin-bottom: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0px 8px;
}

h2 svg {
    width: 20px;
    height: 20px;
    color: var(--primary-color) !important;
    stroke: var(--primary-color) !important;
}

span.time-zone,
span.week-wise {
    color: hsl(210 40% 25%);
    font-weight: 600;
    font-size: 12px;
    background-color: hsl(210 50% 95%);
    display: inline-block;
    padding: 2px 10px;
    border-radius: 10px;
    margin-left: 8px;
}

.custom-cover {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.employee-flex p {
    font-weight: 400;
    font-size: 14px;
    line-height: normal;
    color: hsl(210 20% 45%);
    margin-bottom: 0px;
}

.custom-activity-cover .custom-select-trigger {
    min-width: 150px;
}

.attendance-cover-box ul {
    display: flex;
    flex-wrap: wrap;
    margin-inline: -5px;
    gap: 10px 0px;
}

.attendance-cover-box ul li {
    width: 33.333%;
    flex: 0 0 auto;
    padding-inline: 5px;
}

svg {
    color: var(--primary-color);
    stroke: var(--primary-color);
}

.attendance-box,
.activity-box,
.communication-box,
.excel-hire-box {
    background-color: var(--bg-color);
    border-radius: 10px;
    border: 1px solid hsl(174deg 72% 40% / 20%);
}

.attendance-box p,
.activity-box p,
.communication-box p,
.excel-hire-box p {
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    color: #5C738A;
    display: inline-flex;
    align-items: center;
    gap: 0px 8px;
    margin-bottom: 10px;
}

.attendance-box p svg,
.activity-box p svg,
.communication-box p svg,
.excel-hire-box p svg {
    width: 16px;
    height: 16px;
}

.attendance-box h3,
.activity-box h3,
.communication-box h3,
.excel-hire-box h3 {
    font-weight: 600;
    font-size: 24px;
    line-height: normal;
    color: #172636;
    margin-bottom: 0px;
}

.activity-cover-box ul,
.communication-cover-box ul,
.excel-hire-cover-box ul {
    display: flex;
    flex-wrap: wrap;
    margin-inline: -5px;
    gap: 8px 0px;
    align-items: center;
}

.activity-cover-box ul li,
.communication-cover-box ul li,
.excel-hire-cover-box ul li {
    width: 25%;
    flex: 0 0 auto;
    padding-inline: 5px;
}

/* Footer Css */
.top-footer {
    padding-block: 40px;
}

footer h2 {
    font-weight: 600;
    font-size: 18px;
    line-height: normal;
    color: #172636;
    margin-bottom: 25px;
}

footer p {
    font-weight: 400;
    font-size: 14px;
    line-height: normal;
    color: #5C738A;
    margin-bottom: 0px;
}

.top-footer p {
    margin-bottom: 16px;
}

.top-footer a,
.footer-contact-link {
    font-weight: 400;
    font-size: 14px;
    color: #5C738A;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0px 8px;
}

.top-footer svg {
    width: 16px;
    height: 16px;
    color: #5C738A;
    stroke: #5C738A;
}

footer {
    background-color: #f7f9fa;
}

.footer-contact-list ul li+li,
.resources-link-list ul li+li {
    margin-top: 10px;
}

.quick-link-box ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 0px;
}

.quick-link-box ul li {
    width: 50%;
    flex: 0 0 auto;
}

.bottom-footer {
    padding-top: 40px;
    border-top: 1px solid #5C738A;
}

/* Custom Date Input Styling */
.custom-date-input {
    border: 1px solid hsl(200 20% 90%);
    background: hsl(200 20% 98%);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    color: #172636;
    outline: none;
    transition: all 0.2s ease;
    width: 100%;
}

.custom-date-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(17, 84, 128, 0.1);
    background: #fff;
}

.team-form-row {
    max-width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-calender-col {
    flex: 0 0 200px;
}

.department-filter-col,
.role-filter-col {
    flex: 0 0 220px;
}

/* Department Filter Styling */
.department-filter {
    position: relative;
    width: 100%;
}

.filter-toggle {
    width: 100%;
    padding: 8px 15px;
    background-color: #fff;
    border: 1px solid hsl(200 20% 90%);
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #172636;
    transition: all 0.2s ease;
}

.filter-toggle:hover {
    background-color: hsl(200 20% 98%);
    border-color: hsl(200 20% 80%);
}

.arrow-icon {
    font-size: 10px;
    color: hsl(210 20% 45%);
}

.filter-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    border: 1px solid hsl(200 20% 90%);
    border-radius: 5px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    margin-top: 5px;
    padding: 5px 0;
    list-style: none;
    z-index: 50;
    display: none; /* Hidden by default */
    max-height: 250px; /* Limit height */
    overflow-y: auto;  /* Enable scroll */
}

.filter-dropdown-menu.show {
    display: block;
}

.filter-dropdown-menu li {
    padding: 8px 15px;
    font-size: 14px;
    color: #172636;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background-color 0.2s ease;
}

.filter-dropdown-menu li:hover {
    background-color: hsl(200 20% 98%);
}

.filter-dropdown-menu li.active {
    background-color: hsl(200 50% 95%);
    color: var(--primary-color);
    font-weight: 500;
}

.check-icon {
    margin-right: 8px;
    color: var(--primary-color);
    font-weight: bold;
    display: none; /* Hidden by default */
}

.filter-dropdown-menu li.active .check-icon {
    display: inline-block;
}

/* Day Filter Styling */
.day-filter-list ul {
    display: flex;
    gap: 8px;
}

.day-btn {
    padding: 6px 12px;
    border: 1px solid transparent;
    border-radius: 20px;
    background-color: transparent;
    color: hsl(210 20% 45%);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.day-btn:hover {
    color: var(--primary-color);
    background-color: hsl(200 20% 98%);
}

.day-btn.active {
    background-color: var(--primary-color);
    color: #fff;
}

/* Employee Search Styling */
.employee-search-col {
    flex: 1; /* Take remaining space */
    min-width: 200px;
}

.employee-filter {
    position: relative;
    width: 100%;
}

.form-search {
    width: 100%;
    padding: 8px 15px;
    border: 1px solid hsl(200 20% 90%);
    border-radius: 5px;
    font-size: 14px;
    color: #172636;
    outline: none;
    transition: all 0.2s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'%3E%3C/line%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 10px center;
    padding-left: 35px;
}

.form-search:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(17, 84, 128, 0.1);
    background-color: #fff;
}

/* Employee Search Suggestions Styling */
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid hsl(200 20% 90%);
    border-radius: 5px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    margin-top: 5px;
    padding: 0;
    list-style: none;
    z-index: 100;
    max-height: 250px;
    overflow-y: auto;
    display: none;
}

.search-suggestions.show {
    display: block;
}

.search-suggestions li {
    padding: 10px 15px;
    cursor: pointer;
    font-size: 14px;
    border-bottom: 1px solid hsl(200 20% 95%);
    display: flex;
    flex-direction: column;
}

.search-suggestions li:last-child {
    border-bottom: none;
}

.search-suggestions li:hover {
    background-color: hsl(200 20% 98%);
}

.search-suggestions li .suggestion-name {
    font-weight: 500;
    color: #172636;
}

.search-suggestions li .suggestion-meta {
    font-size: 12px;
    color: hsl(210 20% 45%);
}

.suggestion-role {
    font-size: 12px;
    color: #64748b;
    margin-left: 8px;
}

/* Team Grid Styling */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.employee-card {
    background-color: #fff;
    border: 1px solid hsl(200 20% 90%);
    border-radius: 10px;
    padding: 20px;
    transition: all 0.2s ease;
}

.employee-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-color);
}

.emp-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.emp-info h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.emp-info p {
    font-size: 13px;
    color: hsl(210 20% 45%);
    margin-bottom: 0;
}

.emp-status {
    font-size: 12px;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 12px;
    background-color: #e0f2fe;
    color: var(--primary-color);
}

.emp-status.active {
    background-color: #dcfce7;
    color: #166534;
}

.emp-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.stat-item {
    background-color: #f8fafc;
    padding: 8px 12px;
    border-radius: 6px;
}

.stat-label {
    font-size: 11px;
    color: #64748b;
    display: block;
    margin-bottom: 4px;
}

.stat-value {
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
}

/* AI Assistant Chat Styles */
.chat-container {
    background-color: #fff;
    border: 1px solid hsl(200 20% 90%);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    height: 600px;
    max-height: calc(100vh - 250px);
}

.chat-box {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 15px;
    line-height: 1.5;
    position: relative;
    word-wrap: break-word;
}

.ai-message {
    align-self: flex-start;
    background-color: #f1f5f9;
    color: #1e293b;
    border-bottom-left-radius: 2px;
}

.user-message {
    align-self: flex-end;
    background-color: var(--primary-color);
    color: #fff;
    border-bottom-right-radius: 2px;
}

.chat-input-area {
    padding: 20px;
    border-top: 1px solid hsl(200 20% 90%);
    display: flex;
    gap: 10px;
    background-color: #fff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.chat-input-area input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid hsl(200 20% 90%);
    border-radius: 5px;
    outline: none;
    font-size: 15px;
}

.chat-input-area input:focus {
    border-color: var(--primary-color);
}

/* Typing Indicator */
.typing-indicator {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    width: fit-content;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: #94a3b8;
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out both;
}

.dot:nth-child(1) { animation-delay: -0.32s; }
.dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes typing {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}
/* Global Loader Styles */
#global-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.loader-content {
    text-align: center;
}
.loader-text {
    margin-top: 15px;
    font-weight: 600;
    color: #2D8CFF;
}

. e m p l o y e e - s u m m a r y - c a r d   {   c u r s o r :   p o i n t e r ;   t r a n s i t i o n :   a l l   0 . 2 s   e a s e ;   b o r d e r :   1 p x   s o l i d   # e 2 e 8 f 0 ;   b o r d e r - r a d i u s :   1 2 p x ;   b a c k g r o u n d :   # f f f ;   p a d d i n g :   2 0 p x ;   b o x - s h a d o w :   0   2 p x   4 p x   r g b a ( 0 , 0 , 0 , 0 . 0 2 ) ;   h e i g h t :   1 0 0 % ;   d i s p l a y :   f l e x ;   f l e x - d i r e c t i o n :   c o l u m n ;   }   . e m p l o y e e - s u m m a r y - c a r d : h o v e r   {   t r a n s f o r m :   t r a n s l a t e Y ( - 3 p x ) ;   b o x - s h a d o w :   0   8 p x   1 6 p x   r g b a ( 0 , 0 , 0 , 0 . 0 6 ) ;   b o r d e r - c o l o r :   # c b d 5 e 1 ;   }   . e s c - h e a d e r   {   d i s p l a y :   f l e x ;   j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ;   a l i g n - i t e m s :   f l e x - s t a r t ;   m a r g i n - b o t t o m :   1 6 p x ;   p a d d i n g - b o t t o m :   1 2 p x ;   b o r d e r - b o t t o m :   1 p x   s o l i d   # f 1 f 5 f 9 ;   }   . e s c - i n f o   h 3   {   f o n t - s i z e :   1 . 1 r e m ;   f o n t - w e i g h t :   6 0 0 ;   m a r g i n :   0   0   4 p x   0 ;   c o l o r :   # 0 f 1 7 2 a ;   }   . e s c - i n f o   p   {   f o n t - s i z e :   0 . 8 5 r e m ;   m a r g i n :   0 ;   c o l o r :   # 6 4 7 4 8 b ;   }   . e s c - k p i s   {   d i s p l a y :   g r i d ;   g r i d - t e m p l a t e - c o l u m n s :   1 f r   1 f r ;   g a p :   1 2 p x ;   f l e x - g r o w :   1 ;   }   . e s c - k p i - i t e m   {   b a c k g r o u n d :   # f 8 f a f c ;   p a d d i n g :   1 0 p x ;   b o r d e r - r a d i u s :   8 p x ;   d i s p l a y :   f l e x ;   f l e x - d i r e c t i o n :   c o l u m n ;   }   . e s c - k p i - l a b e l   {   f o n t - s i z e :   0 . 7 5 r e m ;   c o l o r :   # 6 4 7 4 8 b ;   f o n t - w e i g h t :   5 0 0 ;   m a r g i n - b o t t o m :   4 p x ;   t e x t - t r a n s f o r m :   u p p e r c a s e ;   l e t t e r - s p a c i n g :   0 . 5 p x ;   }   . e s c - k p i - v a l u e   {   f o n t - s i z e :   1 r e m ;   f o n t - w e i g h t :   6 0 0 ;   c o l o r :   # 3 3 4 1 5 5 ;   }  
 / *   - - -   M o d e r n   E m p l o y e e   S u m m a r y   C a r d s   - - -   * /   . e m p l o y e e - s u m m a r y - c a r d   {   c u r s o r :   p o i n t e r ;   t r a n s i t i o n :   a l l   0 . 3 s   c u b i c - b e z i e r ( 0 . 4 ,   0 ,   0 . 2 ,   1 ) ;   b o r d e r :   1 p x   s o l i d   # f 1 f 5 f 9 ;   b o r d e r - r a d i u s :   1 6 p x ;   b a c k g r o u n d :   # f f f f f f ;   p a d d i n g :   2 4 p x ;   b o x - s h a d o w :   0   4 p x   6 p x   - 1 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 0 5 ) ,   0   2 p x   4 p x   - 1 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 0 3 ) ;   h e i g h t :   1 0 0 % ;   d i s p l a y :   f l e x ;   f l e x - d i r e c t i o n :   c o l u m n ;   p o s i t i o n :   r e l a t i v e ;   o v e r f l o w :   h i d d e n ;   }   . e m p l o y e e - s u m m a r y - c a r d : : b e f o r e   {   c o n t e n t :   ' ' ;   p o s i t i o n :   a b s o l u t e ;   t o p :   0 ;   l e f t :   0 ;   w i d t h :   4 p x ;   h e i g h t :   1 0 0 % ;   b a c k g r o u n d :   # 3 b 8 2 f 6 ;   o p a c i t y :   0 ;   t r a n s i t i o n :   o p a c i t y   0 . 3 s   e a s e ;   }   . e m p l o y e e - s u m m a r y - c a r d : h o v e r   {   t r a n s f o r m :   t r a n s l a t e Y ( - 5 p x ) ;   b o x - s h a d o w :   0   2 0 p x   2 5 p x   - 5 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 ) ,   0   1 0 p x   1 0 p x   - 5 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 0 4 ) ;   b o r d e r - c o l o r :   # e 2 e 8 f 0 ;   }   . e m p l o y e e - s u m m a r y - c a r d : h o v e r : : b e f o r e   {   o p a c i t y :   1 ;   }   . e s c - h e a d e r   {   d i s p l a y :   f l e x ;   a l i g n - i t e m s :   c e n t e r ;   g a p :   1 6 p x ;   m a r g i n - b o t t o m :   2 0 p x ;   }   . e s c - a v a t a r - w r a p p e r   {   p o s i t i o n :   r e l a t i v e ;   }   . e s c - s t a t u s - d o t   {   p o s i t i o n :   a b s o l u t e ;   b o t t o m :   2 p x ;   r i g h t :   2 p x ;   w i d t h :   1 2 p x ;   h e i g h t :   1 2 p x ;   b o r d e r - r a d i u s :   5 0 % ;   b o r d e r :   2 p x   s o l i d   # f f f ;   b a c k g r o u n d :   # c b d 5 e 1 ;   }   . e s c - s t a t u s - d o t . a c t i v e   {   b a c k g r o u n d :   # 2 2 c 5 5 e ;   }   . e s c - s t a t u s - d o t . l e a v e   {   b a c k g r o u n d :   # f 5 9 e 0 b ;   }   . e s c - i n f o   h 3   {   f o n t - s i z e :   1 . 1 5 r e m ;   f o n t - w e i g h t :   7 0 0 ;   m a r g i n :   0   0   4 p x   0 ;   c o l o r :   # 1 e 2 9 3 b ;   l e t t e r - s p a c i n g :   - 0 . 0 2 5 e m ;   }   . e s c - r o l e - b a d g e   {   d i s p l a y :   i n l i n e - b l o c k ;   p a d d i n g :   2 p x   1 0 p x ;   b a c k g r o u n d :   # f 1 f 5 f 9 ;   c o l o r :   # 6 4 7 4 8 b ;   b o r d e r - r a d i u s :   6 p x ;   f o n t - s i z e :   0 . 7 5 r e m ;   f o n t - w e i g h t :   6 0 0 ;   t e x t - t r a n s f o r m :   u p p e r c a s e ;   }   . e s c - k p i s   {   d i s p l a y :   g r i d ;   g r i d - t e m p l a t e - c o l u m n s :   1 f r   1 f r ;   g a p :   1 2 p x ;   }   . e s c - k p i - i t e m   {   b a c k g r o u n d :   # f 8 f a f c ;   p a d d i n g :   1 2 p x ;   b o r d e r - r a d i u s :   1 2 p x ;   d i s p l a y :   f l e x ;   f l e x - d i r e c t i o n :   c o l u m n ;   g a p :   4 p x ;   b o r d e r :   1 p x   s o l i d   t r a n s p a r e n t ;   t r a n s i t i o n :   b o r d e r - c o l o r   0 . 2 s   e a s e ;   }   . e m p l o y e e - s u m m a r y - c a r d : h o v e r   . e s c - k p i - i t e m   {   b o r d e r - c o l o r :   # f 1 f 5 f 9 ;   }   . e s c - k p i - l a b e l   {   f o n t - s i z e :   0 . 7 r e m ;   c o l o r :   # 9 4 a 3 b 8 ;   f o n t - w e i g h t :   6 0 0 ;   t e x t - t r a n s f o r m :   u p p e r c a s e ;   d i s p l a y :   f l e x ;   a l i g n - i t e m s :   c e n t e r ;   g a p :   4 p x ;   }   . e s c - k p i - v a l u e   {   f o n t - s i z e :   0 . 9 5 r e m ;   f o n t - w e i g h t :   7 0 0 ;   c o l o r :   # 3 3 4 1 5 5 ;   }   . t e x t - s u c c e s s - s o f t   {   c o l o r :   # 1 0 b 9 8 1 ;   }   . t e x t - w a r n i n g - s o f t   {   c o l o r :   # f 5 9 e 0 b ;   }   . t e x t - p r i m a r y - s o f t   {   c o l o r :   # 3 b 8 2 f 6 ;   }  
 