.cards {

    /* gap: 30px; */
}

.cards .red {
    background-color: #f43f5e;
}

.cards .blue {
    background-color: #3b82f6;
}

.cards .green {
    background-color: #22c55e;
}

.cards .cardde {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    height: 130px;
    width: 100%;
    border-radius: 10px;
    margin: 20px;
    color: white;
    cursor: pointer;
    transition: 400ms;
    margin-left: 0px;
}

.cards .smallcardde {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    height: 80px;
    width: 100%;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    transition: 400ms;
}

.cards .cardde h6 {
    font-size: 1.5em;
    font-weight: 700;
}

.cards .smallcardde h6 {
    font-size: 1.2em;
    font-weight: 700;
}

h6,
h4 {
    color: white;
}

.cards .cardde h4 {
    font-size: 1.5em;
    font-weight: 700;
}

.cards .smallcardde h4 {
    font-size: 1.1em;
    font-weight: 700;
}

.cards .cardde:hover {
    transform: scale(1.1, 1.1);
}

/* Active/Inactive toggle bar */
.toggle-input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-label {
    position: relative;
    width: 40px;
    height: 20px;
    border-radius: 30px;
    cursor: pointer;
    display: inline-block;
    margin-right: 20px;
    margin-top: 8px;
    vertical-align: middle;
    background: rgb(172, 171, 171);
}

.toggle-label::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 4px;
    width: 13px;
    height: 13px;
    background-color: #5156be;
    border-radius: 50%;
    transition: 0.4s;
}

.toggle-input:checked+.toggle-label::before {
    left: 22px;
    background-color: #5156be;
}