.empty-state {
    margin: 40px auto;
    border-radius: 4px;
}

.empty-state__content {
    padding: 48px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.empty-state__icon {

    width: 20rem;
    height: 20rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #f7fafc;
    box-shadow: 0px 2px 1px #e1e3ec;
}

.empty-state__icon img {
    width: 15.5rem;
}

.empty-state__message {
    color: #72bcb8;
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 0.85rem;
}

/* Toggle start */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle-input {
    display: none;
}

.toggle-label {
    position: absolute;
    top: 0;
    left: 0;
    width: 49.8px;
    height: 24px;
    border-radius: 17px;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.4s ease;
}

.toggle-label:before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease;
}

.toggle-input:checked+.toggle-label {
    background-color: #b8ebe8;
}

.toggle-input:checked+.toggle-label:before {
    transform: translateX(26px);
}

/* Toggle end */