.dash-container {
    display: flex;
    height: 100vh;
    overflow: hidden;
    font-family: "Open Sans",sans-serif
}

.dash-sidebar {
    position: relative;
    width: 280px;
    border-right: 1px solid #ccc;
    background: #faf9f3;
    box-sizing: border-box;
    display: flex!important;
    flex-direction: column;
    padding: 1rem;
    transition: width .3s ease
}

.dash-sidebar .sidebar-content {
    transition: opacity .3s ease,visibility .3s ease
}

.dash-sidebar.collapsed {
    width: 40px
}

.dash-sidebar.collapsed .sidebar-content {
    opacity: 0;
    visibility: hidden
}

.toggle-btn {
    position: absolute;
    top: 1rem;
    right: -16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: #faf9f3;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 4px rgba(0,0,0,0.2)
}

.dash-top-text {
    cursor: pointer;
    color: #1d1f21;
    font-family: "Open Sans";
    font-size: .9vw;
    padding: .4vw;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    border-bottom: .01vw solid #595959;
    font-weight: bold;
}

.dashboard-list-wrapper {
    margin-bottom: 2vw;
}

#dashboardList {
    list-style: none;
    margin: 0;
    padding: 0;
    height: 25vh;
    overflow: auto;
}

#dashboardList li {
    padding: 0.4vw;
    cursor: pointer;
    border-bottom: 0.05vw solid #d3c49d;
    font-family: "Open Sans";
    font-size: .9vw;
    color: #1D1F21 !important;
}

#dashboardList li:hover{
    background: #eee
}

#dashboardList li.active {
    background-color: #dcd3be;
}

.rls-wrapper {
    height: 34vh;
    overflow-y: auto;
    padding: 0.4vw;
}

.rls-input {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1rem
}

.rls-input label {
    width: 100%;
    font-weight: 600;
    margin-bottom: 0.4vw;
    font-family: "Open Sans";
    font-size: .9vw;
    color: #1D1F21 !important;
}

.rls-input label.required:after {
    content: " *";
    color: red
}

#submitBtn {
    height: 2vw;
    width: 7vw;
    background-color: #f9c650;
    color: #1d1f21;
    font-family: Open Sans!important;
    font-size: 1vw!important;
    line-height: 1vw!important;
    border: 0;
    font-weight: 600;
    text-align: center;
    position: relative;
    outline: none!important;
    transition: all -0.9s;
    border-radius: .4vw;
    float: right;
    margin-top: 1.4vw;
}

#submitBtn:hover {
    background: #e0a800
}

.dash-content {
    flex: 1;
    padding: 1rem;
    box-sizing: border-box;
    overflow: hidden;
    background: #ecece0
}

#displayFrame {
    width: 100%;
    height: 100%;
    border: 1px solid #ccc;
    box-sizing: border-box
}

#displayFrame iframe {
    width: 100%;
    height: 82vh;
    border: 1px solid #ccc
}

.ui-datepicker {
    font-size: .9rem
}

.rls-input input {
    border: 0 !important;
    border-bottom: 0.05vw solid #d3c49d !important;
    background: transparent !important;
    box-shadow: none !important;
    font-family: "Open Sans";
    font-size: .9vw !important;
    color: #1D1F21 !important;
    height: auto !important;
    padding-left: 0 !important;
    width: 100%;
}

.nav-right {
  font-variation-settings: 'FILL' 1,'wght' 100;
  font-size: 1.38vw !important;
  transform: rotate(90deg);
}

.nav-left {
  font-variation-settings: 'FILL' 1,'wght' 100;
  font-size: 1.38vw !important;
  transform: rotate(-90deg);
}


/* width */
::-webkit-scrollbar {
    width: 0.5vw;
    height: 0.5vw;
}

/* Track */
::-webkit-scrollbar-track {
    background: transparent
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #a8a89c;
    border-radius: 0.15vw;
    height: 4vh;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #a8a89c;
    border-radius: 0.15vw;
}


@media only screen and (min-height: 580px) and (max-height:630px) {
  .rls-wrapper {
    height: 30vh;
  }
}
@media only screen and (min-height: 800px) and (max-height:850px) {
   .rls-wrapper {
    height: 37vh;
  }
}

@media only screen and (min-height: 900px) and (max-height:1020px) {
    .rls-wrapper {
    height: 37vh;
  }
}