@font-face {
     font-family: 'yekan';
     src: url('../font/k1.woff') format('woff');
     font-weight: normal;
     font-style: normal;
     font-display: swap;
}
 @font-face {
     font-family: 'yekan';
     src: url('../font/k2.woff') format('woff');
     font-weight: bold;
     font-style: normal;
     font-display: swap;
}
 @font-face {
     font-family: 'kalame';
     src: url('../font/KalamehWebFaNum-Regular.ttf') format('truetype');
     font-weight: normal;
     font-style: normal;
     font-display: swap;
}
 @font-face {
     font-family: 'kalame';
     src: url('../font/KalamehWebFaNum-SemiBold.ttf') format('truetype');
     font-weight: bold;
     font-style: normal;
     font-display: swap;
}
html{
     scroll-behavior: smooth;
    }
 :root {
     --gutter: 20px;
     --gap: 20px;
     --primary-c: #00acb9;
     --secondary-c: #f9fafb;
     --tertiary-c: #f4f8fa;
     --quarternary-c: #edf2f6;
     --alternate-c: #465fff;
     --alternate-c-2: #ecf3ff;
     --hover-c:#ecf3ff;
}
 * {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
     font-family: yekan;
     font-size: 0.95rem;
     color:#031c3c;
}
 a{
     text-decoration: none;
     color: #33404a;
}
 img {
     width: 100%;
}
 p{
     line-height: 32px;
}
 body {
     font-family: kalame;
     direction: rtl;
     font-weight: normal;
     font-size: 15px;
     z-index: 1;
     color: #0b2f5e;
     overflow-y: hidden;
}
section > div{
         animation: showbody 0.5s ease;
}
@keyframes showbody {
    0%{
        opacity: 0.5;
        transform: translateX(20px);
    }
    100%{
        opacity: 1;
        transform: translateX(0px);
    }
}
 h1,h2,h3,h4,h5,h6{
     font-weight: bold;
}
 .overflow-hidden{
     overflow: hidden;
}
.hidden{
    visibility: hidden;
}
.overflow-x-scroll{
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: thin;
}
.overflow-y-scroll{
    overflow-y: auto;
    overflow-x: visible;
    scrollbar-width: thin;
}
.overflow-x-scroll-no-y{
    overflow-x: auto;
}
 .container {
     max-width: 1320px;
     margin: 0 auto;
     width: 100%;
     padding: 0 var(--gutter);
}
 .container-fluid {
     margin: 0 auto;
     width: 100%;
}
 .row {
     display: flex;
     flex-wrap: wrap;
     gap: var(--gap);
     padding-top: calc(var(--gutter) * 2);
     padding-bottom: calc(var(--gutter) * 2);
}
.dirltr{
    direction: ltr;
}
.bidi {
  unicode-bidi: plaintext;
}
 .nowrap {
     flex-wrap: nowrap !important;
}
.no-pt{
    padding-top: 0px !important;
}
 .p-0{
     padding: 0 !important;
}
 .m-0{
     margin:0 !important;
}
.grow-0 > [class*="col-"]{
    flex-grow: 0 !important;
}
.col-1 {
    width: calc((100% / 12 * 1) - var(--gap));
        flex-grow: 1;
}
 .col-2 {
     width: calc((100% / 12 * 2) - var(--gap)/2);
        flex-grow: 2;
}
 .col-3 {
     width: calc((100% / 12 * 3) - var(--gap)*(3/2));
        flex-grow: 3;
}
 .col-4 {
     width: calc((100% / 12 * 4) - var(--gap) * 2/3);
        flex-grow: 4;
}
 .col-5 {
     width: calc((100% / 12 * 5) - var(--gap)/2);
        flex-grow: 5;
}
 .col-6 {
     width: calc((100% / 12 * 6) - var(--gap)/2);
        flex-grow: 6;
}
 .col-7 {
     width: calc((100% / 12 * 7) - var(--gap)/2);
        flex-grow: 7;
}
 .col-8 {
     width: calc((100% / 12 * 8) - var(--gap)/2);
        flex-grow: 8;
}
 .col-9 {
     width: calc((100% / 12 * 9) - var(--gap)/2);
        flex-grow: 9;
}
 .col-10 {
     width: calc((100% / 12 * 10) - var(--gap)/2);
        flex-grow: 10;
}
 .col-11 {
     width: calc((100% / 12 * 11) - var(--gap)/2);
        flex-grow: 11;
}
 .col-12 {
     width: 100% !important;
        flex-grow: 12;
}

@media (max-width: 1280px) {
         .col-md-12 {
         width: 100%;
         flex-grow: 12;
    }
    .col-md-10 {
        width: calc((100% / 12 * 10) - var(--gap)/2);
        flex-grow: 10;
    }
     .col-md-8 {
     width: calc((100% / 12 * 8) - var(--gap)/2);
        flex-grow: 8;
}
     .col-md-6 {
         width: calc((100% / 12 * 6) - var(--gap)/2);
        flex-grow: 6;
    }
     .col-md-4 {
     width: calc((100% / 12 * 4) - var(--gap) * 2/3);
        flex-grow: 4;
}
     .col-md-3 {
         width: calc((100% / 12 * 3) - var(--gap)*(3/2));
        flex-grow: 3;
     }
}

@media (max-width: 992px) {
         .col-sm-12 {
         width: 100%;
        flex-grow: 12;
    }
     .col-sm-8 {
        width: calc((100% / 12 * 8) - var(--gap)/2);
        flex-grow: 8;
    }
    /* 2/3 */
     .col-sm-6 {
        width: calc((100% / 12 * 6) - var(--gap)/2);
        flex-grow: 6;
    }
     .col-sm-7 {
        width: calc((100% / 12 * 7) - var(--gap)/2);
        flex-grow: 7;
    }
     .col-sm-5 {
        width: calc((100% / 12 * 5) - var(--gap)/2);
        flex-grow: 5;
    }
     .col-sm-4 {
         width: calc((100% / 12 * 4) - var(--gap) * 2/3);
        flex-grow: 4;
    }
    .col-sm-3 {
         width: calc((100% / 12 * 3) - var(--gap)*(3/2));
        flex-grow: 3;
    }
}

@media (max-width: 767px) {
     .col-xs-12 {
        width: 100%;
        flex-grow: 12;
    }
     .col-xs-8 {
        width: calc((100% / 12 * 8) - var(--gap)/2);
        flex-grow: 8;
    }
     .col-xs-6 {
        width: calc((100% / 12 * 6) - var(--gap)/2);
        flex-grow: 6;
    }
     .col-xs-4 {
        width: calc((100% / 12 * 4) - var(--gap) * 2/3);
        flex-grow: 4;
    }
     .col-xs-3 {
        width: calc((100% / 12 * 3) - var(--gap)*(3/2));
        flex-grow: 3;
    }
}
 .mt-1{
     margin-top: 10px !important;
}
 .mt-2{
     margin-top: 20px !important;
}
 .mt-3{
     margin-top: 30px;
}
 .mt-4{
     margin-top: 40px;
}
 .mt-5{
     margin-top: 50px;
}
.m-1{
    margin: 10px;
}
.m-2{
    margin:20px
}
.p-03{
    padding: 3px;
}
 .p-1{
     padding: 10px !important;
}
.p-15{
    padding: 15px !important;
}
 .p-2{
     padding: 20px !important;
}
 .p-3{
     padding: 30px;
}
 .p-4{
     padding: 40px;
}
 .p-5{
     padding: 50px;
}
.p-8-12{
    padding: 8px 12px !important;
}
 .pt-5{
     padding-top: 50px;
}
 .pt-4{
     padding-top: 40px;
}
 .pt-1{
     padding-top: 10px;
}
 .pt-2{
     padding-top: 20px !important;
}
 .pt-3{
     padding-top: 30px;
}
.pl-35{
    padding-left: 35px;
}
 .pb-1{
     padding-bottom: 10px !important;
}
 .pb-2{
     padding-bottom: 20px !important;
}
 .pb-5{
     padding-bottom: 50px;
}
.pr-1{
    padding-right: 10px;
}
.pr-2{
    padding-right: 20px !important;
}
.pl-1{
    padding-left: 10px;
}
.pl-2{
    padding-left: 20px !important;
}
 .mt-10{
     margin-top: 100px;
}
.mb-0{
margin-bottom: 0px !important;
}
 .mb-05{
     margin-bottom: 5px;
}
 .mb-06{
     margin-bottom: 6px;
}
 .mb-1{
     margin-bottom: 10px;
}
 .mb-2{
     margin-bottom: 20px;
}
 .mb-3{
     margin-bottom: 30px;
}
 .mb-4{
     margin-bottom: 40px;
}
 .mb-5{
     margin-bottom: 50px;
}
 .mb-10{
     margin-bottom: 100px;
}
.ml-m10{
    margin-left: -10px;
}
.ml-05{
    margin-left: 5px;
}
.mr-05{
    margin-right: 5px;
}
.mr-4{
    margin-right: 40px;
}
 .w-30{
     width: 30px;
}
 .w-25{
     width: 25px;
}
 .w-24{
     width: 24px;
}
.w-12{
    width: 12px;
}
 .w-15{
     width: 15px;
}
.w-17{
    width: 17px !important;
}
.w-20{
    width: 20px;
}
.w-13{
    width: 13px;
}
 .w-50{
     width: 50px;
}
.w-60{
    width: 60px;
}
.w-66{
    width: 66px;
}
.w-80{
    width: 80px;
}
.w-full{
    width: 100% !important;
}
.w-100px{
    width: 100px;
}
 .w-40{
     width: 40px;
}
.w-150{
    width: 150px;
}
 .w-44{
     width: 44px;
}
 .w-200{
     width: 200px;
}
 .mw-180{
     min-width: 180px;
}
.w-max-content{
    width: max-content !important;
}
.bottom-45px{
    bottom: 45px;
}
.top-unset{
    top: unset !important;  
}
.h-100,.h-full{
    height: 100% !important;
}
.h-100vh{
    height: 100dvh !important;
}
.h-100px{
    height: 100px;
}
.h-100vh{
    height: 100dvh;
}
.h-50{
    height: 50px;
}
.h-40{
    height: 40px;
}
.h-44{
    height: 44px;
}
.h-30{
    height: 30px;
}
.h-20{
    height: 20px;
}
.h-25{
    height: 25px;
}
.h-24{
    height: 24px;
}
.h-17{
    height: 17px !important;
}
.h-05{
    height: 5px;
}
.h-12{
    height: 12px;
}
.h-13{
    height: 13px;
}
.h-80{
    height: 80px;
}
.h-60{
    height: 60px;
}
.h-0{
    height: 0px;
}
.h-max-content{
    height: max-content;
}
.right-0{
    right: 0;
    left: unset !important;
}
.titles-2-fix::after {
  right: -24px !important;
}
.left-0{
    left: 0;
    right: unset !important;
}
.image-center{
    margin-left: auto;
    margin-right: auto;
    display: block;
}
.make-it-white{
    filter:brightness(0) invert();
}
.make-it-black{
    filter:brightness(0);
}
.make-it-gray{
    filter: grayscale(100%);
}
.gap-05{
    gap:5px;
}
 .gap-1{
     gap: 10px;
}
 .gap-2{
     gap: 20px;
}
 .gap-25{
     gap: 25px;
}
 .gap-3{
     gap: 30px;
}
 .bg-white{
     background-color: #fff !important;
}
 .flex {
     display: flex;
}
 .inline-block {
     display: inline-block;
}
 .block{
     display: block;
}
.relative{
    position: relative;
}
.absolute{
    position: absolute;
}
 .flex-wrap {
     flex-wrap: wrap;
}
 .flex-row {
     flex-direction: row;
}
 .flex-row-reverse {
     flex-direction: row-reverse;
}
 .flex-column {
     flex-direction: column;
}
 .flex-column-reverse {
     flex-direction: column-reverse;
}
 .justify-start {
     justify-content: flex-start;
}
 .justify-center {
     justify-content: center;
}
 .justify-end {
     justify-content: flex-end;
}
 .justify-between {
     justify-content: space-between;
}
 .justify-around {
     justify-content: space-around;
}
 .justify-evenly {
     justify-content: space-evenly;
}
 .items-start {
     align-items: flex-start;
}
 .items-center {
     align-items: center;
}
 .items-end {
     align-items: flex-end;
}
 .items-stretch {
     align-items: stretch;
}
 .items-baseline {
     align-items: baseline;
}
 .items-self-baseline {
     align-self: baseline;
}
.pointer,.pointer:hover{
    cursor: pointer;
}
.cursor-default{
    cursor: default;
}
.position-relative{
    position: relative;
}
.text-tahoma{
    font-family: calibri,tahoma,arial !important;
}
 .text-center {
     text-align: center;
}
 .text-justify{
     text-align: justify;
}
 .text-bold{
     font-weight: bold;
}
 .text-normal{
     font-weight: normal;
}
.text-right{
    text-align: right;
}
 .text-white {
     color:#fff !important 
}
 .text-black {
     color:#000 !important 
}
.text-gray-1{
    color:#667085 !important;
}
.text-blue{
    color: var(--alternate-c) !important;
}
.text-red {
  color: #f04438 !important;
}
.text-homa {
  color: var(--primary-c) !important;
}
.text-9px{
    font-size: 9px !important;
    line-height: inherit;
}

 .text-10px{
  font-size: 10px !important;
  line-height: inherit;
}
.text-11px{
    font-size: 11px !important;
    line-height: inherit;
}
.text-12px{
    font-size: 12px !important;
    line-height: inherit;
}
 .text-13px{
     font-size: 13px !important;
}
 .text-14px{
     font-size: 14px !important;
}
 .text-15px{
     font-size: 15px !important;
}
 .text-18px{
     font-size: 18px !important;
}
 .text-22px{
     font-size: 22px !important;
}
 .text-26px{
     font-size: 26px !important;
}
.text-28px{
    font-size:28px !important;
}
.text-30px{
    font-size:30px !important;
}
 .text-32px{
     font-size:32px !important;
}
.text-break{
        word-break: break-all;
}
 .rounded-1 {
     border-radius: 4px;
}
 .rounded-2 {
     border-radius: 8px;
}
 .rounded-3 {
     border-radius: 12px;
}
 .rounded-4 {
     border-radius: 18px;
}
 .rounded-5 {
     border-radius: 24px;
}
 .rounded-6{
     border-radius: 40px;
}
.rounded{
    border-radius: 50% !important;
}
.ws-nowrap{
    white-space: nowrap !important;
}
.border{
    border:1px solid rgb(228, 231, 236);
}
.border-2{
    border: 1px solid #d0d5dd !important;
}
.border-3{
    border: 1px solid rgb(208, 213, 221) !important;
}
.border-right {
  border-right: 1px solid rgb(228, 231, 236);
}
.border-bottom{
    border-bottom: 1px solid rgb(228, 231, 236);
}
.border-top{
    border-top: 1px solid rgb(228, 231, 236);
}
.border-bottom.divider {
  border-bottom: 4px dotted #a9bacd;
}
 .lh-4{
     line-height: 40px;
}
.lh-0{
    line-height: 0px;
}
.lh-20{
    line-height: 20px;
}
 .ltr{
     direction: ltr;
}
 .margin-center{
     margin-left: auto;
     margin-right: auto;
}
 .section-padding{
     padding-top:50px;
     padding-bottom: 50px;
}
 .titles-1::after {
     content: '';
     bottom: 5px;
     right: 50%;
     transform: translateX(50%);
     position: absolute;
     width: 50px;
     height: 2px;
     background-color: #00b0bc;
}
 .titles-1 {
     position: relative;
     padding-bottom: 20px;
}
.right{
    right:0;
}
.left{
    left:0;
}


/*************************************/

#root{
    height: 100dvh;
    overflow: hidden;
    display: flex;
}
#root{
    transition: 0.4s;
}
aside{
    width: 250px;
    flex: 0 0 250px;
    padding-right: 20px;
    padding-left: 20px;
    border-left: 1px solid rgb(228, 231, 236);
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    padding-bottom: 20px;
    scrollbar-width: none;
}
aside li a span {
  transition: 0.3s;
  width: calc(100% - 30px);
  white-space: nowrap;
  font-weight: normal;
  display: block;
  font-size: 13px;
}
aside.shrinked{
    width: 85px;
    flex-basis: 85px;
}
aside.no-transition li a span {
    transition: none !important;
}
aside.no-transition h2 {
    transition: none !important;
}
.office-logo{
    padding-top: 30px;
    padding-bottom: 30px;
    position: sticky;
    top: 0;
    background-color: #fff;
    height: 110px;
    z-index: 1;
}
aside ul{
    list-style: none;
}
aside li{
    transition: all 0.15s;
    border-radius: 0.5rem;
    margin: 2px 0;
    color:rgb(52, 64, 84)
}
.office-logo img{
    max-width: 120px;
  display: block;
  max-height: 60px;
  margin: auto;
  object-fit: contain;
}
aside li.active span {
  color: var(--alternate-c) !important;
}
aside.shrinked ul img, aside.shrinked ul svg {
  margin-left: 0px;
}
aside.shrinked li a span {
  white-space: nowrap;
  transform: translateX(-60px);
  margin-right: -10px;
}

aside h2 {
    transition: 0.3s;
}
aside.shrinked h2 {
    opacity: 0;
}
aside.shrinked .text-9px {
  opacity: 0;
}
aside li.active svg{
    fill: var(--alternate-c);
}
aside li.active{
    background-color: var(--alternate-c-2);
}
aside ul li ul > li:hover{
    background-color: #f2f4f7;
    cursor: pointer;
}
aside ul img, aside ul svg{
    width: 20px;
    height: 20px;
    margin-left: 10px;
}
aside ul li a{
    display: flex;
    flex-direction: row-reverse;
    justify-content: start;
    align-items: center;
    padding:9px 10px;

}
aside h2{
    font-size: 14px;
    color:#939dae;
    font-weight: normal;
    margin-bottom: 10px;
}
main {
    width: calc(100% - 250px);
    min-width: 0;
}

aside.shrinked ~ main {
    width: calc(100%);
}
header{
    padding:15px 24px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgb(228, 231, 236);
    position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 9;
  height: 75px;
}
.profile {
  display: flex;
  align-items: center;
  gap: 10px;
}
.profile > img{
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: contain;
}
.hover-style-1{
    transition: all 0.3s;
}
.hover-style-1:hover{
    background-color: #f2f4f7;
}
.content{
    background-color: var(--secondary-c);
    height: calc(100% - 75px);
    padding: 30px 20px;
    overflow-y: auto;
}
.cover{
    object-fit: cover;
}
.notifs .new{
    width: 8px;
    height: 8px;
    background-color: #fd853a;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    right: 0px;
    animation: blink 1.5s infinite;
}
@keyframes blink {
    0% {opacity: 1;box-shadow:0px 0px 5px #ed540e;}
    30% {opacity: 0;box-shadow:0px 0px 10px #fff;}
    100% {opacity: 1;box-shadow:0px 0px 5px #ed540e;}
}
.box{
    background-color: #fff;
    border-radius: 12px;
    border:1px solid rgb(228, 231, 236);
    padding: 20px;
    position:relative;
}
.box-border::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #4364f0 0%, #4364f0 100%);
  transform-origin: left;
  transition: all 0.3s ease;
}
.bg-gray-1{
    background-color: var(--secondary-c)
}
.bg-gray-2{
  background-color: var(--tertiary-c)
}
.bg-gray-3{
    background-color: #fcfcfd;
}
.bg-homa{
    background-color: var(--primary-c) !important;
}
.clock-container {
    text-align: center;
    color: #fff;
}

.analog-clock {
    width: 120px;
  height: 120px;
  border: 3px solid #ced2d7;
    border-radius: 50%;
    position: relative;
    margin: 0 auto 10px;
    background: #fff;
}

.hand {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform-origin: bottom;
    transform: translateX(-50%) rotate(0deg);
    border-radius: 4px;
}

.hour {
    width: 5px;
    height: 40px;
    background: #b9b9b9;
}

.minute {
  width: 3px;
  height: 54px;
  background: #c6c6c6;
}

.second {
    width: 2px;
    height: 55px;
    background: #f43f5e;
  transition: 0.7s;
}

.center {
    width: 9px;
    height: 9px;
    background: #575757;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.digital-clock {
  font-size: 13px;
}
.opacity-0{
    opacity: 0;
}
.opacity-05{
    opacity: 0.5;
}
.opacity-07{
    opacity: 0.7;
}
.flip-horizontal{
    transform: scaleX(-1);
}
.box-shadow-1{
    box-shadow: rgba(16, 24, 40, 0.05) 0px 1px 2px 0px !important;
}
.box-shadow-2{
    box-shadow: -5px 18px 60px 0px rgba(210, 210, 234, 0.4) !important;
}
.box-shadow-3{
    box-shadow: 0px 1px 2px #e4e5ee !important;
}
.button-1 {
  background-color: var(--alternate-c);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  color: #fff;
  gap: 5px;
  padding: 5px 18px;
  width: max-content;
  cursor: pointer;
  border:none;
  transition: 0.3s;
  box-shadow: rgba(16, 24, 40, 0.05) 0px 1px 2px 0px;
}
.button-1:hover {
    opacity: 0.7;
}
.button-1 svg {
  width: 15px;
}
.button-1 span{
    color:#fff;
}
.button-2 {
  background-color: #fff;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  color: #000;
  gap: 5px;
  padding: 5px 18px;
  width: max-content;
  cursor: pointer;
  border:1px solid rgb(208, 213, 221);
  box-shadow: rgba(16, 24, 40, 0.05) 0px 1px 2px 0px;
}
.button-2 svg {
  width: 15px;
}
.button-2 span{
    color:#344054;
}
.button-3 {
  background-color: #12b76a;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  color: #ecfdf3;
  gap: 5px;
  padding: 5px 18px;
  width: max-content;
  cursor: pointer;
  border: 1px solid #12b76a;
  box-shadow: rgba(16, 24, 40, 0.05) 0px 1px 2px 0px;
  transition: 0.3s;
}
.button-3:hover{
    background-color: #ecfdf3;
}
.button-3:hover span{
    color:#12b76a;
}
.button-3:hover img{
    filter: brightness(0) saturate(100%)
          invert(53%)
          sepia(83%)
          saturate(428%)
          hue-rotate(118deg)
          brightness(95%)
          contrast(92%);
}
.button-3 span{
    color:#fff;
}
.dropdown-icon img{
  width: 13px;
  padding-top: 5px;
  padding-bottom: 6px;
}
.is-dropdown{
    position: relative;
}

.is-dropdown.open{
    z-index: 1000;
}
.is-dropdown.open .dropdown{
    z-index: 1001;
}
.dropdown {
  top: 45px;
  position: absolute;
  width: 150px;
  right: 0px;
  background-color:#ffffff63;
  padding: 4px;
  border-radius: 8px;
  border: 1px solid #e4e7ec;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-30px) scale(1);
  z-index: 1;
  box-shadow: rgba(16, 24, 40, 0.1) 0px 4px 8px -2px,rgba(16, 24, 40, 0.06) 0px 2px 4px -2px;
}
.dropdown.dropdown-fixed-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: auto;
    width: max-content;
    min-width: 180px;
    max-width: min(240px, calc(100vw - 16px));
    transform: scale(0.98);
    transform-origin: top right;
    transition: opacity 0.15s ease, visibility 0.15s ease, transform 0.15s ease;
}
.dropdown .searchbox {
  padding-top: 10px;
  position: sticky;
  top: -4px;
  background-color: #fff;
  margin-top: -4px;
  margin-right: 6px;
  margin-left: 6px;
  border-radius: 8px;
  margin-bottom: 10px;
}
.scrolling-dropdown .dropdown {
  top: 105%;
  width: 100%;
  /* background-color: #ffffffed; */
    max-height: 260px;
    height: auto;
    overflow-y: auto;
  scrollbar-width: none;
}
.scrolling-dropdown .dropdown a {
  padding: 8px 10px;
}
.is-dropdown.open .dropdown{
    opacity: 1;
    transition: 0.15s;
    visibility: visible;
  transform: translateY(0px) scale(1);
    transform-origin: bottom center;
}
.is-dropdown.open .dropdown.dropdown-fixed-menu {
    transform: scale(1);
    transform-origin: top right;
}
.dropdown a {
  margin: 1px 0px;
  padding: 4px 10px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 6px;
}
.dropdown a:hover {
  background-color: #196eff2b;
}
.dropdown a:last-child:hover {
  background-color: #196eff2b;
  border-radius: 6px !important;
}
.dropdown a:last-child {
  border-radius: 0px 0px 10px 10px !important;
}
.dropdown-icon {
  position: absolute;
  bottom: 7px;
  left: 10px;
  border-right: 1px solid #d0d5dd;
  padding-right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.form textarea,.form input[type="password"],.form input[type="textarea"],.form input[type="text"],.form input[type="email"],.form input[type="number"]{
    padding:3px 12px;
    border:1px solid #d0d5dd;
    border-radius:8px;
    background:#fff;
    outline:none;
    transition: 0.3s;
    box-shadow: 0px 1px 2px #e4e5ee;
    line-height: 30px;
}

.form input[type="time"],
.form select{
    padding:4px 12px;
    border:1px solid #d0d5dd;
    border-radius:8px;
    background:#fff;
    outline:none;
    transition: 0.3s;
    box-shadow: 0px 1px 2px #e4e5ee;
    line-height: 30px;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0; 
}
input[type=number] {
    appearance: textfield;
    -moz-appearance:textfield; /* Firefox */
}
.form input[type="password"]:focus{
    box-shadow: 0px 0px 7px rgba(70, 151, 255, 0.39);
}
input:focus{
    outline: none;
}
.form input:focus,input:focus {
  border-color: #4a7aff94;
}
.input-icon {
  position: absolute;
  bottom: 13px;
}
.weather-card h3 {
  margin-bottom: 20px;
  font-size: 16px;
}

.tehranTemp {
  font-size: 28px;
  font-weight: bold;
  white-space: nowrap;
}

.weatherStat {
  font-size: 13px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  margin-top: -10px;
  width: 100%;
}
#jalali {
  width: 100%;
}
.tehranWind {
  font-size: 10px;
}

.loader {
  animation: float 0.3s infinite linear;
  width: 20px;
  height: 20px;
  display: inline-block;
  border-bottom: 2px solid var(--alternate-c);
  border-radius: 50%;
}

@keyframes float {
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}
.titles-2::after {
  position: absolute;
  top: -7px;
  right: -33px;
  background-color: var(--alternate-c);
  content: '';
  width: 3px;
  height: 30px;
  border-radius: 0px 12px 12px 0px;
}
.titles-2 {
  position: relative;
  margin-bottom: 10px;
}
.box-2{
    box-shadow: -5px 18px 60px 0px rgba(210, 210, 234, 0.4);
    border:none;
}
.show-hover > span{
    transition: 0.3s;
    opacity: 0;
}
.show-hover:hover > span{
    opacity: 1;
}
.bg-transparent{
    background-color: transparent !important;
}
.bg-color-3{
    background-color: #eef5ff;
}
.bg-color-2{
    background-color: #fef0fa;
}
.bg-color-1{
    background-color: #ecf9f3;
}
.bg-color-4{
    background-color: #fffaeb;
}
.bg-color-5{
    background-color: #ecf3ff;
}
.bg-color-6{
    background-color: #fef3f2;
}
.bg-color-7{
    background-color: #f0f9ff;
}
.bg-color-8{
    background-color: #ffe2e2;
}
.bg-color-9{
    background-color: #f9fafb;
}
.bg-color-10{
    background-color: #dedddd;
}
.bg-color-11{
    background-color: #01da75;
}
.bg-color-12{
    background-color: #ff355b;
}
.bg-color-14{
    background-color: #35b3ee;
}
.bg-blue{
    background-color: var(--alternate-c) !important;
}
.text-color-1{
color: #12b76a;
}
.border-color-1{
    border-color: #12b76a !important;
}
.border-color-3{
    border-color: #0ba5ec !important;
}
.border-color-7{
    border-color: #bae6fd !important;
}
.text-color-2{
color:#ee4dbe;
}
.text-color-3{
color:#1dabed;
}
.text-color-4{
color:#f79009;
}
.text-color-5{
color:#465fff;
}
.text-color-6{
color:#f04438 !important;
}
.text-color-7{
    color:#0369a1 !important;
}
.text-color-8{
    color: oklch(.505 .213 27.518);
}
.text-color-13 {
  color: #ff355b;
}
.bg-color-13 {
  background-color: #ff355b0d;
}
.border-color-6{
    border-color: #f04438 !important;
}
.text-color-1 > svg{
fill: #12b76a;
}
.text-color-2 > svg{
fill:#ee4dbe;
}
.text-color-3 > svg{
fill:#1dabed;
}
.text-color-4 > svg{
fill:#f79009;
}
.text-color-6 > svg{
    fill:#f04438;
}
.text-color-11{
    color: #01da75 !important;
}
.no-border{
    border:none !important;
}
.no-box-shadow{
    box-shadow: none !important;
}
.text-ellipsis{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  font-size: 14px;
  overflow-x: scroll;
  scrollbar-width: thin;
}
thead {
  background: #f9fafb;
}

th {
  padding: 14px 20px;
  font-size: 12px;
  color: #6b7280;
  font-weight: normal;
  text-align: right;
  border-bottom: 1px solid #e5e7eb;
}
tr {
  transition: background-color .15s ease;
  height: 100%;
}
tr:last-child{
    border-bottom:none;
}
tbody tr:hover {
  background: #f9fafb !important;
}

.table-1 tbody tr:nth-child(even),tbody tr:nth-child(even) {
  background: #fafafa;
}

td {
  padding: 16px 20px;
  color: #374151;
  font-size: 0.9rem;
  height: 100%;
  white-space: nowrap;
}
tr td {
  border-bottom: 1px solid #e5e7eb;
}
tr:last-child td{
    border-bottom: none;
}
.table-2 tbody tr:nth-child(even) {
  background: unset;
}
.userlist-table-wrap {
    overflow-y: visible;
}
.pagination{
    position: relative;
}
.pagination ul {
    list-style-type: none;
  justify-content: center;
  display: flex;
  gap: 10px;
}
.pagination ul li {
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.pagination ul li:hover {
  background-color: var(--alternate-c);
}
.pagination ul li:hover a{
    color: #fff;
}
.pagination ul li.active a{
    color:#fff !important;
}
.pagination ul li.active{
    background-color: var(--alternate-c);
    border-color: var(--alternate-c) !important; 
}
.pagination a {
  height: 29px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination ul li:first-child,.pagination ul li:last-child {
  border: 1px solid rgb(228, 231, 236);
}
.pagination ul li:first-child:hover,.pagination ul li:last-child:hover {
background-color: #f4f4f4;
}
.pagination ul li.other {
  border: none;
}

@keyframes fadeIn1 {
    0% {opacity: 0;height: 0px;}
    100% {opacity: 1; height: 25px;}
}
@keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}
.fadein{
    animation: fadeIn 0.5s ease-in-out;
}

.modal-overlay {
  backdrop-filter: blur(3px);
  position: fixed;
  width: 100%;
  height: 100dvh;
  z-index: 99;
  background: rgba(10,20,40,.48);  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease-in-out;
  transition: 0.2s;
}
.modal {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  width: 480px;
  max-width: 90vw;
  max-height: 90%;
  height: auto;
  box-shadow: rgba(16, 24, 40, 0.1) 0px 1px 2px 0px,
              rgba(16, 24, 40, 0.1) 0px 1px 3px 1px;
  display: flex;
  flex-direction: column;
  animation:modal-pops .18s ease;
}
.modal.wide{
width: 1410px;
}
@keyframes modal-pops {
  from { opacity:0; transform:scale(.94) translateY(12px); }
  to   { opacity:1; transform:scale(1)   translateY(0);    }
}
.modal-body {
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  padding-bottom: 20px;
}
.modal-footer{
    position:relative
}
.modal-footer::after {
  content: '';
  position: absolute;
  right: 0;
  top: -30px;
  width: 100%;
  background: linear-gradient(transparent,white);
  height: 30px;
  z-index: 9;
}
.modal-body::-webkit-scrollbar {
    display: none;
}
.no-scrollbar{
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.close-modal{
    cursor: pointer;
    background-color: #f1f5f9;
    width: 27px;
    height: 27px;
}
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}


.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.sw-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.sw-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}
.small .sw-slider::before {
  height: 11px;
  width: 11px;
  left: 2px;
  bottom: 2px;
}
input:checked + .sw-slider {
  background-color: var(--alternate-c);
}

input:focus + .sw-slider {
  box-shadow: 0 0 1px var(--alternate-c);
}

input:checked + .sw-slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.sw-slider.round {
  border-radius: 34px;
}

.sw-slider.round:before {
  border-radius: 50%;
}
.switch.small {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 15px;
}
.small input:checked + .sw-slider::before {
  -webkit-transform: translateX(13px);
  -ms-transform: translateX(13px);
  transform: translateX(13px);
}
.notif-stat .blue{
    background-color: #0ba5ec;
  border-radius: 50%;
  width: 9px;
  height: 9px;
  border: 2px solid #bde0f0;
}
.notif-stat .green{
    background-color: #12b76a;
  border-radius: 50%;
  width: 9px;
  height: 9px;
  border: 2px solid #beead0;
}
.notif-stat .red{
    background-color: #f9143f;
  border-radius: 50%;
  width: 9px;
  height: 9px;
  border: 2px solid #ffb5c6;
}

.peyk-assigned-anim{
    display: block;
    width: 17px;
    height: 17px;
    object-fit: contain;
    transform-origin: 50% 60%;
    animation: peykRide 1.05s ease-in-out infinite;
}

@keyframes peykRide{
    0%{ transform: translateX(0) translateY(0) rotate(0deg); }
    25%{ transform: translateX(-1px) translateY(-1px) rotate(-2deg); }
    50%{ transform: translateX(-2px) translateY(0) rotate(0deg); }
    75%{ transform: translateX(-1px) translateY(-1px) rotate(2deg); }
    100%{ transform: translateX(0) translateY(0) rotate(0deg); }
}

@media (prefers-reduced-motion: reduce){
    .peyk-assigned-anim{ animation: none; }
}
.{
    position: relative;
    cursor: pointer;
}
.tooltip {
    position: relative;
}
.tooltip .tooltiptext {
    visibility: hidden;
    width: max-content;
    background-color: #000;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 3px 7px;
    position: absolute;
    z-index: 1;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    font-size: 11px;
    transition: all 0.3s;
}
.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}
.gsearch img{
    width: 16px;
    height: 16px;
    opacity: 0.6;
}
.gsearch {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 80px;
  background-color: #f3f4f6;
  border-radius: 16px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 6px;
}
#gsearch{
    position: relative;
}
.gsearch img:last-child {
  background-color: #465fff;
  width: 25px;
  height: 25px;
  cursor: pointer;
  border-radius: 14px;
  opacity: 1;
  padding: 4px;
}
.appslogo a {
  width: 50px;
  border-radius: 12px;
  border: 1px solid #e4e7ec;
  padding: 5px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.calendar {
  background: #ffffff;
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  margin: auto;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.calendar-weekdays span{
    font-size: 11px;
  color: #6b7280;
}
.calendar-header h2 {
  font-size: 15px;
  font-weight: 600;
  color: #1f2933;
}

.calendar .nav-btn, .nav-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #d1d5db;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
  color: #4b5563;
  font-family: initial;
}

.calendar .nav-btn:hover, .nav-btn:hover {
  background: #f3f4f6;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 8px;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.calendar .day {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  cursor: pointer;
  color: #1f2933;
  font-size: 12px;
  height: 26px;
  position: relative;
}

.calendar .day:hover {
  background: #f3f4f6;
}

.calendar .today {
  background: #2563eb;
  color: #ffffff;
  font-weight: 600;
}

.calendar .today:hover {
  background: #1d4ed8;
}
.calendar .empty {
  opacity: 0.2;
}
.calendar .holiday {
  background-color: #fef3f2;
  color: #e8004c;
}
.label{
    box-shadow: 0 2px 3px #1018280d,0 1px 2px #1018280f;
    border-radius: 0.75rem;
    border:1px solid #e4e7ec;
    padding: 13px 10px;
}
.tab .active {
  background-color: #fff;
}
.tab button {
  background: #f2f4f7;
    background-color: rgb(242, 244, 247);
  background-color: rgb(242, 244, 247);
  border: none;
  font-size: 12px;
  cursor: pointer;
  margin: 0px 3px;
  border-radius: 5px;
  padding: 9px 5px;
  color: #667085;
  transition: 0.2s;
}
.tab button:hover {
  background-color: #ffffff9d;
}
.tab {
  background-color: #f2f4f7;
  padding: 3px 0px;
  border-radius: 8px;
}
.login-overlaybg {
  background-color: #0000009e;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 40px;
  align-items: center;
  justify-content: space-between;
  border-radius: 28px;
}
.login-overlaybg img {
  width: 220px;
}
.transition{
    transition:0.3s ease;
}
.no-transition{
    transition:none !important;
}
.toast-container {
  position: fixed;
  top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
  width: 100%;
  align-items: center;
}

.toast {
  width: 100%;
  max-width: 280px;
  padding: 12px 10px;
  border: 1px solid rgb(228, 231, 236);
  border-radius: 8px;
  box-shadow: 0px 1px 2px #e4e5ee;
  background-color: #fff;
  overflow: hidden;
  animation: toastShow 0.3s ease forwards;
  transition: all 0.3s ease;
}

@keyframes toastShow {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes toastClose {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

/* when closing */
.toast.closed {
  animation: toastClose 0.3s ease forwards;
}

.toast-content {
  display: flex;
  gap: 10px;
  align-items: center;
}

.toast-content h3 {
  font-size: 0.9rem;
}

.toast-content p {
  font-size: 0.85rem;
  color: #4a4a4a;
  line-height: 20px;
}

.toast-content img {
  width: 28px;
  height: 28px;
}

.toast-close {
  position: absolute;
  top: 6px;
  left: 6px;
  width: 24px;
  height: 24px;
  padding: 6px;
  cursor: pointer;
}

.toast-progressbar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background-color: var(--alternate-c);
  animation: toastProgress linear forwards;
}

@keyframes toastProgress {
  from { width: 100%; }
  to { width: 0%; }
}
.line-inside::after {
  position: absolute;
  width: 100%;
  right: 0;
  top: 52%;
  height: 1px;
  content: '';
  z-index: 0;
  border-bottom: 1px dashed #cacaca;
}
.z-index-up{
    z-index: 9 !important;
}
.z-index-down{
    z-index: -1 !important;
}

.tree-container {
  overflow-x: scroll;
  padding-bottom: 70px;
  margin-left: -30px;
  margin-right: -30px;
}
.tree{
    width: max-content;
}
.tree ul {
    padding-top: 20px; position: relative;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
}
.tree li {
	float: left; text-align: center;
	list-style-type: none;
	position: relative;
	padding: 20px 5px 0 5px;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
}
.tree li::before, .tree li::after{
	content: '';
	position: absolute; top: 0; right: 50%;
	border-top: 1px solid #ccc;
	width: 50%; height: 20px;
}
.tree li::after{
	right: auto; left: 50%;
	border-left: 1px solid #ccc;
}

.tree li:only-child::after, .tree li:only-child::before {
	display: none;
}
.tree li:only-child{ padding-top: 0;}
.tree li:first-child::before, .tree li:last-child::after{
	border: 0 none;
}
.tree li:last-child::before{
	border-right: 1px solid #ccc;
	border-radius: 0 5px 0 0;
}
.tree li:first-child::after{
	border-radius: 5px 0 0 0;
}

.tree ul ul::before{
	content: '';
	position: absolute; top: 0; left: 50%;
	border-left: 1px solid #ccc;
	width: 0; height: 20px;
}

.tree li span {
  border: 1px solid #ccc;
  padding: 7px 19px;
  text-decoration: none;
  font-size: 11px;
  display: inline-block;
  border-radius: 8px;
  transition: all 0.5s;
  box-shadow: 0 2px 3px #1018280d,0 1px 2px #1018280f;
  border-top: 5px solid #465fff;
  z-index: 1;
  position: relative;
}

.tree li span:hover, .tree li span:hover+ul li span {
	background: #f3f5f7; color: #333333; border: 1px solid #94a0b4;
}
.tree li span:hover+ul li::after,
.tree li span:hover+ul li::before, 
.tree li span:hover+ul::before, 
.tree li span:hover+ul ul::before{
	border-color:  #94a0b4;
}
select option {
  padding: 5px 14px;
  margin-bottom: 4px;
  border-radius: 3px;
  transition: 0.3s;
}
select[multiple] {
  width: 100%;
  scrollbar-width: none;
  border: none;
}
select[multiple] option:hover {
  background-color: #e0e0e0;
}
.timeline > div > div {
  padding: 10px;
  border: 1px solid rgb(228, 231, 236);
  border-radius: 10px;
  width: 100%;
}
.timeline > div {
margin-bottom: 20px;
}
.timeline > div:last-child {
margin-bottom: 0px;
}
/* .timeline::after {
  content: '';
  position: absolute;
  right: 33px;
  width: 3px;
  height: 55%;
  top: 50%;
  background: linear-gradient(transparent,#c1d8ff,transparent);
  transform: translateY(-50%);
  z-index: 0;
} */
.timeline img{
    position: relative;
    z-index: 1;
}
.timeline{
    position: relative;
}
.buttongroup {
  border-radius: 9px;
  overflow: hidden;
  border: 1px solid rgb(228, 231, 236);
  width: 100%;
}
.buttongroup button {
  padding: 10px 12px;
  border: none;
  cursor: pointer;
  font-size: 13px;
  transition: 0.3s;
  background-color: #fff;
  border-left: 1px solid rgb(228, 231, 236);
}
.buttongroup button:hover ,.buttongroup button.active {
  background-color: #f2f4f7;
}
.buttongroup button:last-child {
  border-left: none !important;
}
.buttongroup button img{
    margin-bottom: -4px;
  margin-left: 4px;
}
.dropdown a.selected {
        font-weight: 500;
        position: relative;
    }
    
    .dropdown a.selected::after {
        content: "✓";
        position: absolute;
        left: 8px;
        color: #3b82f6;
    }
.dropdown a.selected {
        background-color: #ecf3ff;
    }
.dropdown-close {
  width: 22px;
  height: 23px;
  position: absolute;
  left: 40px;
  cursor: pointer;
  padding: 4px;
  z-index: 9;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
}
.dropdown-close.show {
    visibility: visible;
    opacity: 1;
}
#bike-times .badge {
  position: absolute;
  height: 6px;
  right: -36%;
  top: 18%;
  background-color: #ff003c;
  transform: rotate(45deg);
  font-size: 9px;
  padding: 2px 4px;
  width: 100%;
  text-align: center;
  color: #fff;
  line-height: 12px;
}
.is-online {
  position: absolute;
  background-color: #12b76a;
  width: 12px;
  height: 12px;
  border: 2px solid #fff;
  border-radius: 50%;
  right: 0;
  bottom: 0;
}
#mail-boxes ul {
  list-style: none;
}
#mail-boxes li {
  transition: all 0.15s;
  border-radius: 0.5rem;
  margin: 2px 0;
  color: rgb(52, 64, 84);
}
#mail-boxes li:hover {
  background-color: #f2f4f7;
  cursor: pointer;
}
#mail-boxes ul li a div{
  display: flex;
  flex-direction: row-reverse;
  justify-content: start;
  align-items: center;
  padding: 9px 10px;
}
#mail-boxes li a > span {
  transition: 0.3s;
  white-space: nowrap;
  font-weight: normal;
  display: inline-block;
  font-size: 12px;
  margin-left: 10px;
}
#mail-boxes ul img, #mail-boxes ul svg {
  width: 20px;
  height: 20px;
  margin-left: 10px;
}
#mail-boxes li.active span {
  color: var(--alternate-c) !important;
}
#mail-boxes li.active img {
  filter: invert(39%) sepia(96%) saturate(2690%) hue-rotate(219deg) brightness(99%) contrast(101%);
}
#mail-boxes li.active {
  background-color: #ecf3ff;
}
#mail-boxes li {
  transition: all 0.15s;
  border-radius: 0.5rem;
  margin: 2px 0;
  color: rgb(52, 64, 84);
}
.jalali-picker {
   position: fixed;
   z-index: 5000;
   width: 280px;
   user-select: none;
}
.jalali-picker .jp-header {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 8px;
}
.jalali-picker .jp-nav {
   width: 30px;
   height: 30px;
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
}
.jalali-picker .jp-grid {
   display: grid;
   grid-template-columns: repeat(7, 1fr);
   gap: 4px;
}
.jalali-picker .jp-cell {
   height: 32px;
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   border-radius: 6px;
   font-size: 13px;
   transition: 0.3s;
}
.jalali-picker .jp-cell.jp-empty {
   cursor: default;
   opacity: 0.3;
}
.jalali-picker .jp-cell.jp-day:hover {
   background: var(--alternate-c);
   color: #fff;
   border-color: var(--alternate-c);
}
.jalali-picker > div{
    background-color: #ffffffe8;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
aside li.active img {
  filter: invert(39%) sepia(96%) saturate(2690%) hue-rotate(219deg) brightness(99%) contrast(101%);
}
.profile .dropdown{
    top: 60px;
    right: unset;
    left: 0;
    background-color: #ffffffba;
}
.transport-type-chip {
    color: #0b2f5e;
    border: 1px solid transparent;
}

.transport-type-chip.type-homabox {
    background: #e6f2ff;
    border-color: #b7d6ff;
    color: #1f4fa3;
}

.transport-type-chip.type-homaride {
    background: #ffe9e9;
    border-color: #ffc2c2;
    color: #a32121;
}

.transport-compact {
    gap: 4px;
    background: #ffffff;
    border-color: #e6edf5;
    box-shadow: 0 2px 10px rgba(9, 30, 66, 0.05);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.transport-compact p {
    line-height: 20px;
}

#transportations-admin .transport-card .transport-type-chip {
    margin-bottom: 6px;
}

#transportations-admin .transport-card .text-13.text-bold {
    line-height: 22px;
}

#transportations-admin .transport-card .text-11.text-gray-1,
#transportations-admin .transport-card .text-12.text-gray-1 {
    line-height: 18px;
}

.transport-compact .mb-05 {
    margin-bottom: 2px;
}

.transport-compact .mb-1 {
    margin-bottom: 6px;
}

.transport-compact .mt-1 {
    margin-top: 6px;
}

.transport-compact .transport-type-chip {
    align-self: stretch;
    justify-content: center;
}

.transport-compact .text-gray-1 {
    color: #5c6f82;
}

.transport-status-started {
    border-color: rgba(246, 195, 67, 0.62);
    background: rgba(246, 195, 67, 0.06);
    box-shadow:
    0 2px 10px rgba(9, 30, 66, 0.06),
        0 0 0 1px rgba(246, 195, 67, 0.18),
        0 0 12px rgba(246, 195, 67, 0.22);
}

.transport-status-done {
    border-color: rgba(64, 178, 108, 0.62);
    background: rgba(64, 178, 108, 0.06);
    box-shadow:
        0 2px 10px rgba(9, 30, 66, 0.06),
        0 0 0 1px rgba(64, 178, 108, 0.18),
        0 0 12px rgba(64, 178, 108, 0.22);
}

.transport-status-started:hover {
    transform: translateY(-2px);
    box-shadow:
        0 10px 24px rgba(9, 30, 66, 0.10),
    0 0 0 1px rgba(246, 195, 67, 0.22),
    0 0 16px rgba(246, 195, 67, 0.32);
}

.transport-status-done:hover {
    transform: translateY(-2px);
    box-shadow:
        0 10px 24px rgba(9, 30, 66, 0.10),
    0 0 0 1px rgba(64, 178, 108, 0.22),
    0 0 16px rgba(64, 178, 108, 0.32);
}

.transport-date-bar .admin-date-input {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 6px 10px;
    width: 140px;
    text-align: center;
}

.driver-requests .driver-request-row {
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.driver-requests .driver-request-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(9, 30, 66, 0.08);
}

.modal-accordion details summary {
    list-style: none;
}

.modal-accordion details summary::-webkit-details-marker {
    display: none;
}

.modal-accordion .accordion-icon {
    transition: transform 0.15s ease;
}

.modal-accordion details[open] .accordion-icon {
    transform: rotate(180deg);
}

.driver-flag-tag {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    border-radius: 8px;
    border: 1px solid rgb(228, 231, 236);
    background: #fff;
    font-size: 11px;
    line-height: inherit;
    box-shadow: 0px 1px 2px #e4e5ee;
}

.driver-modal-container .driver-modal-top {
    display: flex;
    margin-bottom: 6px;
}

.driver-modal-container .driver-modal-code {
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 8px;
    border: 1px solid rgb(228, 231, 236);
    background: #fff;
    box-shadow: 0px 1px 2px #e4e5ee;
}

.driver-modal-container .driver-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.driver-modal-container .driver-modal-type {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 10px;
    border: 1px solid rgb(228, 231, 236);
    background: #fff;
    box-shadow: 0px 1px 2px #e4e5ee;
    white-space: nowrap;
}

.driver-modal-container .driver-modal-datetime {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 140px;
}

.driver-modal-container .driver-modal-status {
    display: flex;
    justify-content: flex-start;
    white-space: nowrap;
}

.driver-modal-container .driver-modal-flags {
    background-color: #fffaeb;
}

.driver-modal-container .driver-phone-btn {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid rgb(228, 231, 236);
    background: #fff;
    box-shadow: 0px 1px 2px #e4e5ee;
}

.driver-modal-container .driver-collapse-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}

.driver-modal-container .driver-collapse-body {
    max-height: 0px;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.25s ease, opacity 0.2s ease;
}

.driver-modal-container .driver-collapse-inner {
    margin-top: 8px;
}

.driver-modal-container .driver-collapse-icon {
    transition: transform 0.2s ease;
}

.driver-modal-container .driver-collapse[data-open="1"] .driver-collapse-icon {
    transform: rotate(180deg);
}

.otp-modal-container .otp-code-grid {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.otp-modal-container .otp-code-digit {
    width: 44px;
    height: 44px;
    text-align: center;
    border-radius: 10px;
    border: 1px solid rgb(228, 231, 236);
    background: #fff;
    box-shadow: 0px 1px 2px #e4e5ee;
    font-size: 18px;
    line-height: 44px;
    outline: none;
}

.otp-modal-container .otp-code-digit:focus {
    box-shadow: 0px 1px 2px #e4e5ee;
}

.otp-modal-container .otp-finish.is-disabled {
    opacity: 0.6;
}

@media (max-width: 420px) {
    .otp-modal-container .otp-code-digit {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 520px) {
    .driver-modal-container {
        width: calc(100vw - 20px);
        max-width: calc(100vw - 20px);
        padding: 14px;
    }

    .driver-modal-container .driver-modal-header {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .driver-modal-container .driver-modal-datetime {
        min-width: 0;
    }

    .driver-modal-container .driver-modal-type {
        justify-content: center;
    }

    .driver-modal-container .driver-modal-status {
        justify-content: center;
    }
}

.reqs {
        cursor: pointer;
        transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
        will-change: transform, box-shadow;
}

.reqs:hover:not(.transport-status-started):not(.transport-status-done) {
        transform: translateY(-4px);
        border-color: #dbe7ff;
        box-shadow: 0 10px 24px rgba(9, 30, 66, 0.12);
}
 .button{
     padding: 3px 10px;
     text-align: center;
     border:1px solid #000;
     width: max-content;
}
/* Hourglass Styles */
.hourglass-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.hourglass-icon {
    width: 24px;
    height: 24px;
    animation: hourglass-rotate 2s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.hourglass-container:hover .hourglass-icon {
    transform: scale(1.1);
}

@keyframes hourglass-rotate {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
}

/* Waiting Tooltip Styles */
.waiting-tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.waiting-tooltip .waiting-tooltiptext {
    visibility: hidden;
    min-width: 120px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
    border-radius: 8px;
    padding: 8px 12px;
    position: absolute;
    z-index: 999;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    font-size: 12px;
    font-weight: normal;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
}

.waiting-tooltip .waiting-tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #764ba2 transparent transparent transparent;
}

.waiting-tooltip:hover .waiting-tooltiptext {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Alternative waiting tooltip with pulse effect */
.waiting-tooltip-pulse {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.waiting-tooltip-pulse::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background-color: rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-waiting 2s ease-in-out infinite;
}

@keyframes pulse-waiting {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
}

.waiting-tooltip-pulse .waiting-tooltiptext {
    visibility: hidden;
    min-width: 140px;
    background: linear-gradient(135deg, #00b0bc 0%, #0096a0 100%);
    color: #fff;
    text-align: center;
    border-radius: 8px;
    padding: 8px 12px;
    position: absolute;
    z-index: 999;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    font-size: 12px;
    font-weight: normal;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 12px rgba(0, 176, 188, 0.3);
    white-space: nowrap;
}

.waiting-tooltip-pulse .waiting-tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #0096a0 transparent transparent transparent;
}

.waiting-tooltip-pulse:hover .waiting-tooltiptext {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Hourglass with waiting tooltip combined */
.hourglass-waiting {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.hourglass-waiting .hourglass-icon {
    width: 24px;
    height: 24px;
    animation: hourglass-spin 3s linear infinite;
    transition: all 0.3s ease;
}

.hourglass-waiting:hover .hourglass-icon {
    animation-play-state: paused;
    transform: scale(1.15);
    filter: brightness(1.2);
}

@keyframes hourglass-spin {
    0%, 45% {
        transform: rotate(0deg);
    }
    50%, 95% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.hourglass-waiting .hourglass-tooltiptext {
    visibility: hidden;
    min-width: 150px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #fff;
    text-align: center;
    border-radius: 10px;
    padding: 10px 14px;
    position: absolute;
    z-index: 999;
    bottom: 130%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    font-size: 12px;
    font-weight: normal;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 6px 20px rgba(245, 87, 108, 0.4);
    white-space: nowrap;
}

.hourglass-waiting .hourglass-tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: #f5576c transparent transparent transparent;
}

.hourglass-waiting:hover .hourglass-tooltiptext {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
  #waiting-box {
      max-height: 0;
      opacity: 0;
      overflow: hidden;
      margin-top: 0;
      transition: max-height 0.28s ease, opacity 0.22s ease, margin-top 0.22s ease;
   }

   #waiting-box.show {
      max-height: 90px;
      opacity: 1;
      margin-top: 6px;
   }

   #waiting-box .waiting-duration-field {
      transform: translateY(-6px);
      transition: transform 0.28s ease;
   }

   #waiting-box.show .waiting-duration-field {
      transform: translateY(0);
   }

   .ab-add-panel {
      max-height: 0;
      opacity: 0;
      overflow: hidden;
      transition: max-height 0.28s ease, opacity 0.22s ease, margin-top 0.22s ease;
      margin-top: 0;
   }

   .ab-add-panel.open {
      max-height: 320px;
      opacity: 1;
      margin-top: 8px;
   }

   .ab-modal {
      width: 680px !important;
      max-width: 94vw !important;
      max-height: 92vh !important;
      border-radius: 14px;
      padding: 18px;
   }

   .ab-modal .modal-body.ab-modal-body {
      overflow: visible;
      padding-bottom: 12px;
      gap: 12px !important;
   }

   .ab-modal .modal-footer::after {
      display: none;
   }

   .ab-list-wrap {
      max-height: none;
      overflow: hidden;
   }

   #ab-pagination {
      min-height: 40px;
   }

   @media (max-width: 992px) {
      .ab-modal {
         width: 94vw !important;
         max-height: 90vh !important;
      }

      .ab-modal .modal-body.ab-modal-body {
         overflow-y: auto;
      }

   }

   #slot-container {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 8px;
   }

   @media (max-width: 992px) {
      #slot-container {
         grid-template-columns: repeat(2, minmax(0, 1fr));
      }
   }

   .slot-card {
      position: relative;
      overflow: hidden;
   }

   .slot-status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 600;
  position: absolute;
  top: 0px;
  right: 50%;
  transform: translate(50%);
  width: 100%;
}

   .slot-status-badge.is-active {
      background: rgba(16, 185, 129, 0.12);
      color: #047857;
   }

   .slot-status-badge.is-inactive {
      background: rgba(148, 163, 184, 0.2);
      color: #64748b;
   }

.slot-date-input {
  border: none;
  background: transparent;
  padding: 0 6px;
  min-width: 90px;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  text-align: right;
  width: 40px;
  white-space: nowrap;
  overflow: visible;
}

   .slot-date-input:focus {
      outline: none;
   }

   .is-hidden {
      display: none !important;
   }

   .cargo-fields {
      max-height: 0;
      opacity: 0;
      overflow: hidden;
      transition: max-height 0.25s ease, opacity 0.2s ease, margin-top 0.2s ease;
      margin-top: 0;
   }

   .cargo-fields.is-open {
      max-height: 180px;
      opacity: 1;
      margin-top: 6px;
   }
.ts-timebar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 30px;
  max-width: 100%;
}
.ts-timebar-ticks {
  position: relative;
  height: 14px;
}
.ts-timebar-ticks span {
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  font-size: 10px;
  color: #98a2b3;
}
.bar-track {
  position: relative;
  height: 42px;
  border-radius: 12px;
  overflow: hidden;
  background: #f2f4f7;
  border: 1px solid #e4e7ec;
  box-shadow: inset 0 1px 2px rgba(16, 24, 40, 0.05);
}
.bar-required {
  position: absolute;
  top: 0;
  bottom: 0;
  background: rgba(104, 147, 189, 0.52);
  border-left: 1.5px dashed #378ADD;
  z-index: 1;
}
.bar-present {
  position: absolute;
  top: 5px;
  bottom: 5px;
  border-radius: 6px;
  background: linear-gradient(180deg, #7fcb6b, #5dae49);
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.1);
  z-index: 2;
}
.bar-overtime {
  position: absolute;
  top: 5px;
  bottom: 5px;
  border-radius: 6px;
  background: linear-gradient(180deg, #ffc069, #f79009);
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.1);
  z-index: 2;
}
.bar-absent {
  position: absolute;
  top: 5px;
  bottom: 5px;
  border-radius: 6px;
  background: repeating-linear-gradient(135deg, #ff6868 0 6px, #ff8a8a 6px 12px);
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.1);
  cursor: help;
  z-index: 3;
}
.bar-leave {
  position: absolute;
  top: 5px;
  bottom: 5px;
  border-radius: 6px;
  background: linear-gradient(180deg, #f3a6e0, #ee4dbe);
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.1);
  cursor: help;
  z-index: 2;
}
.bar-mission {
  position: absolute;
  top: 5px;
  bottom: 5px;
  border-radius: 6px;
  background: linear-gradient(180deg, #6fd3e8, #1dabed);
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.1);
  cursor: help;
  z-index: 2;
}
.bar-correction {
  position: absolute;
  top: 5px;
  bottom: 5px;
  border-radius: 6px;
  background: linear-gradient(180deg, #7aa9d8, #378add);
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.1);
  cursor: help;
  z-index: 2;
}
.bar-entry-marker,
.bar-exit-marker {
  position: absolute;
  top: -3px;
  bottom: -3px;
  width: 2px;
  z-index: 4;
  border-radius: 1px;
}
.bar-entry-marker {
  background: #185fa5;
}
.bar-exit-marker {
  background: #3b6d11;
}
.bar-entry-label,
.bar-exit-label {
  position: absolute;
  top: -22px;
  font-size: 10.5px;
  font-weight: 600;
  white-space: nowrap;
  padding: 1px 6px;
  border-radius: 6px;
  z-index: 5;
  pointer-events: none;
}
.bar-entry-label {
  background: #eaf2fb;
  color: #185fa5;
}
.bar-exit-label {
  background: #eef6e6;
  color: #3b6d11;
}
.ts-timebar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.ts-legend-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #667085;
}
.ts-legend-dot {
  width: 9px;
  height: 9px;
  border-radius: 3px;
  display: inline-block;
}
.ts-legend-required {
  background: rgba(55, 138, 221, 0.25);
  border: 1.5px dashed #378add;
}
.ts-legend-present {
  background: linear-gradient(180deg, #7fcb6b, #5dae49);
}
.ts-legend-overtime {
  background: linear-gradient(180deg, #ffc069, #f79009);
}
.ts-legend-absent {
  background: repeating-linear-gradient(135deg, #ff6868 0 4px, #ff8a8a 4px 8px);
}
.ts-legend-leave {
  background: linear-gradient(180deg, #f3a6e0, #ee4dbe);
}
.ts-legend-mission {
  background: linear-gradient(180deg, #6fd3e8, #1dabed);
}
.ts-legend-correction {
  background: linear-gradient(180deg, #7aa9d8, #378add);
}
























   



















@media (max-width: 1280px) {
    .content{
        padding:24px 20px !important;
    }
    .order-md-1{
        order: 1 !important;
    }
     .order-md-2{
        order: 2 !important;
    }
     .order-md-3{
        order: 3 !important;
    }
}


 @media (min-width: 993px) {

 }


@media (max-width: 992px) {

.no-span > span{
    display: none;
}
.no-span{
    height: 28px;
}
.content{
        padding:24px 10px !important;
    }
aside{
    width: 0px;
    padding: 0;
    transition: 0.3s;
    background-color: #fff;
    position:fixed;
    right: 0;
    top: 0;
    z-index: 9;
    margin-top: 75px;
}
aside .office-logo img {
  max-width: 60px;
  height: 60px;
}
aside h2{
    display: none;
}
.office-logo {
    padding-top: 10px;
    position: sticky;
    top: 0;
    background-color: #fff;
    height: max-content;
    padding-bottom: 10px;
}
aside.mobileshow{
    width: 230px !important;
}
aside.shrinked{
    width: 0px;
}
aside.shrinked li a span {
  transform: translateX(0px);
  display: block;
  margin-right: 0px !important;
}
aside.shrinked ul img, aside.shrinked ul svg {
  margin-left: 10px;
  width: 20px;
}
main{
    width: 100%;
}
.hide-on-sm{
    display: none;
}
.sm-justify-center{
    justify-content: center;
}
#menu{
    margin-bottom: 75px;
}
#menu li > span {
  margin-right: 10px;
}
.profile{
    width: 44px;
    height: 44px;
}
   #mail-boxes li a span{
    display: none;
   }
 #mail-boxes {
    width: 50px;
    max-width: 62px;
    padding: 20px 10px;
  }
#mail-boxes ul li a {
  justify-content: center;
}
#mail-boxes ul img, #mail-boxes ul svg {
  margin-left: 0px;
}
#mail-list .searchbox{
    width: 40px;
}
#mail-boxes span {
  text-align: center;
}
#mail-boxes button{
    padding: 5px 12px;
}
}  


 @media (min-width: 768px) {
    .show-on-xs{
        display: none;
    }
 }

 @media (max-width: 767px) {
    .row{
        margin:0;
    }
    header {
  padding: 15px 10px;
    }
    .sm-no-mb{
        margin-bottom: 0 !important;
    }
    .hide-on-xs{
        display: none;
    }
    .box {
  padding: 20px 10px;
    }
    #items-per-page {
  min-width: 100px;
}
.mt-2-xs{
    margin-top:20px !important;
}
.mt-1-xs{
    margin-top:20px !important;
}
.modal {
  padding: 20px 15px;
}
.modal-body .p-2{
      padding:0px
   }
.titles-2::after {
  right: -23px;
}
.tree-container {
  overflow-x: scroll;
  padding-bottom: 70px;
  margin-left: -10px;
  margin-right: -10px;
}
    .order-xs-1{
        order: 1 !important;
    }
     .order-xs-2{
        order: 2 !important;
    }
     .order-xs-3{
        order: 3 !important;
    }
}

.ts-holiday-badge {
    display: inline-block;
    padding: 2px 10px;
    border: 1.5px solid #ef4444;
    border-radius: 20px;
    color: #ef4444;
    background: #fff;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}
