
/* view on map css */

.yrViewDetails {
    position: absolute;
    top: 90px;
    left: 0;
    height: calc(100vh - 132px);
    z-index: 10;
    width: 320px;
    overflow: overlay;
    background: #dee8f8;
}
.yr-fixedLayer{
  position: sticky;
  top:0;
  background-color: #eeeef7;
}
.yrViewDetails ul{
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: overlay;
  }

.yrViewDetails li {
    border-bottom: 1px solid #ccc;
    padding: 5px 10px;
    display: flex;
    flex-direction:column;
    font-size: 14px;
}

.yrViewDetails li label {
    font-weight: 700;
    min-width: 150px;
}
.yrViewDetails li.lastupdated {
background: aquamarine;
}
/* .yrViewDetails li:nth-child(odd) {background: seashell;} */

.yrViewDetails input, .yrViewDetails select, .yrViewDetails textarea {
    font-size: 13px;
}

span.layerHig {
    width: 15px;
    height: 15px;
    background: aquamarine;
    margin-left: 6px;
}

/* Timeline */

.yr-timeline .wrapper {
    background: #eaf6ff;
    padding: 2rem;
  }
  
  .yr-timeline .sessions {
    margin-top: 2rem;
    border-radius: 12px;
    position: relative;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  .yr-timeline .sessions p {
    font-size: 13px;
  }
  
  .yr-timeline li {
    padding-bottom: 1.0rem;
    border-left: 1px solid #abaaed;
    position: relative;
    padding-left: 20px;
    margin-left: 10px;
  }
  .yr-timeline li:last-child {
    border: 0px;
    padding-bottom: 0;
  }
  .yr-timeline li:before {
    content: "";
    width: 15px;
    height: 15px;
    background: rgb(55, 236, 0);
    border: 1px solid #26a805;
    box-shadow: 3px 3px 0px #bab5f8;
    box-shadow: 3px 3px 0px #bab5f8;
    border-radius: 50%;
    position: absolute;
    left: -10px;
    top: 0px;
  }
  
  .yr-timeline .time {
    color: #2a2839;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
  }
  @media screen and (min-width: 601px) {
    .yr-timeline .time {
      font-size: 0.9rem;
    }
  }
  @media screen and (max-width: 600px) {
    .yr-timeline .time {
      margin-bottom: 0.3rem;
      font-size: 0.85rem;
    }
  }

  li.lastupdated {
    background: aquamarine;
  }
  

  .status_txt {
      color: #000 !important;
      text-wrap: nowrap;
      padding: 5px 10px;
      width: fit-content;
    }
    
  .yrViewDetails .info-card {
    flex: 1 1 auto;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background: linear-gradient(var(--a, 180deg), var(--c1, #f6d365), var(--c2, #fda085) 51%, var(--c1, #f6d365)) var(--y, 0) var(--y, 0)/200% 200%;
    color: white;
    /* text-shadow: 0px 0px 10px rgba(0,0,0,0.2);*/
    box-shadow: 0 0 20px #eee;
    border-radius: 20px;
}

.yrViewDetails .info-card:hover {
    box-shadow: 0 0 20px #b9b1b1 !important;
    background-position: bottom;
}

.sales-card {
    --c1: #f6d365;
    --c2: #fda085;
}

.shortlist-card {
    --c1: #84fab0;
    --c2: #8fd3f4;
    --a: 90deg;
}

.validate-card {
    --c1: #ffecd2;
    --c2: #fcb69f;
}

.rollback-card {
    --c1: #ea82f4;
    --c2: #e9c2fb;
    --a: 90deg;
}

.completed-card {
    --c1: #fbc2eb;
    --c2: #a6c1ee;
    --a: 90deg;
}

.pending-card {
    --c1: #ff6969;
    --c2: #ffb7b7;
}