.card.left-right .card-body {
	padding: 16px 30px;
}

.progress-dashboard .progress {
	background-color: #24242400;

	position: relative;
	margin: 35px 0;
	height: 65px;
	width: 100%;
	border: 2px solid #FF6500;
	border-radius: 18px;
	padding: 5px;
}

.progress-dashboard  .progress-done {
	background: linear-gradient(to left, #FF6500, #FF6500);
	
	display: flex; 
	justify-content: center; 
	transition: 1s ease 0.3s;
	border-radius: 14px;
}
.cur-package{

/*    margin-top: 1.5rem;*/
    text-align: center;
    color: #fff;
    font-weight: 1000;
    font-size: 40px;
}
.next-package{
    background-color: #FF6500;
    padding: 4px;
    font-weight: 1000;
    font-size: 40px;
    color: #e9e8e8;
    text-align: center;
    margin-top: 5.0rem !important;
    border-radius: 18px;
}
.tree-right-pack{ 
/*    background-color: #ff641cbd;*/
    border-radius: 6px;
    font-size: 31px;
    font-weight: 1000;
    min-width: 140px;
    text-align: center;
/*    color: #212529;*/
/*    box-shadow: 0 1rem 3rem rgb(20 13 13 / 85%) !important;*/
}


	.toggle {
		position: relative;
		display: inline-block;
	}

	.toggle input {
		position: absolute;
		opacity: 0;
		width: 0;
		height: 0;
	}

	.slider {
		position: relative;
		display: block;
		cursor: pointer;
		background-color: #333;
		transition: 0.4s;
		width: 60px;
		height: 30px;
		border-radius: 30px;
	}

	.slider:before {
		content: "";
		position: absolute;
		height: 24px;
		width: 24px;
		left: 3px;
		top: 3px;
		background-color: #fff;
		transition: 0.4s;
		border-radius: 50%;
		z-index: 2;
	}

	.slider:after {
		content: "OFF";
		color: white;
		font-size: 12px;
		position: absolute;
		top: 7px;
		left: 30px;
		transition: 0.4s;
		z-index: 1;
	}

	input:checked + .slider {
		background-color: #fd5d00;
		box-shadow: 0 0 6px #fd5d00;
	}

	input:checked + .slider:before {
		transform: translateX(30px);
	}

	input:checked + .slider:after {
		content: "ON";
		left: 10px;
	}