
    .toggle {
      --width: 100px;
      --height: calc(var(--width) / 3);

      position: relative;
      display: inline-block;
      width: var(--width);
      height: var(--height);
      box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
      cursor: pointer;
    }

    .toggle input {
      display: none;
    }

    .toggle .labels {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      font-size: 12px;
      font-family: sans-serif;
      transition: all 0.4s ease-in-out;
      overflow: hidden;
    }

    .toggle .labels::after {
      content: attr(data-off);
      position: absolute;
      display: flex;
      justify-content: center;
      align-items: center;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      color: white;
      background-color: #BD1D8F;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
      transition: all 0.4s ease-in-out;
    }

    .toggle .labels::before {
      content: attr(data-on);
      position: absolute;
      display: flex;
      justify-content: center;
      align-items: center;
      top: 0;
      left: calc(var(--width) * -1);
      height: 100%;
      width: 100%;
      color: #ffffff;

      background-image: linear-gradient(to right top, #bd1d8f, #a3359c, #8643a4, #674ca6, #4652a3);
      text-align: center;
      text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.4);
      transition: all 0.4s ease-in-out;
    }

    .toggle input:checked~.labels::after {
      transform: translateX(var(--width));
    }

    .toggle input:checked~.labels::before {
      transform: translateX(var(--width));
    }
	.popover-content {
      font-size: 14px;
  }
  .popover{
    width: max-content;
}
.total{
	background-color:gray;
}

.dashboard_err{
	color:#b30000;
}
#fund_table_length label{
	font-size:0px;

}
#fund_table_length select{
	 height:20px;
	  padding-bottom:0px;
	   padding-top:0px;
}

#transaction_table_length label{
	font-size:0px;

}
#transaction_table_length select{
	 height:20px;
	 padding-bottom:0px;
	 padding-top:0px;
}

#dashboard-contain{

    min-height: calc(100vh - 139px);
    padding-top: 50px;

}
#challan_status_table_length label{
			font-size:0px;
}

