
.flex-1{
    display: flex;
    align-items: center;
    gap:8px;
}
.flex-2{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.flex-3{
    display: flex;
    align-items: center;
    justify-content: center;
}
.flex-4{
    display: flex;
    align-items: flex-end;
}
.common-btn button{
    background: var(--btn-primary);
    padding: 16px 24px;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
.green-txt{
    color: #01BC8D;
}
.red-txt{
    color: #F65454;
}
.green-btn{
    background: #27AD75;
}
.red-btn{
    background: #E2464A;
}

::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}

::-webkit-scrollbar
{
	width: 0px;
    height: 0px;
	background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb
{
	background-color: #555;
}
