.toggle-switch {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    line-height: 1em;
    font-size: 1.25rem;
    text-align: center;
    cursor: pointer;
    height: 100%;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: relative;
    cursor: pointer;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px;
    width: 38px;
    height: 20px;
    margin-right: 1em;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: #dd023a;
}

input:focus + .toggle-slider {
    box-shadow: 0 0 1px #dd023a;
}

input:checked + .toggle-slider:before {
    -webkit-transform: translateX(16px);
    -ms-transform: translateX(16px);
    transform: translateX(16px);
}

.compare-rows{
    & table {
        & thead tr:first-child th{
            border-bottom: 0;
        }

        & .compare-rows-tr {
            & .compare-rows-th {
                padding: 20px 15px;
                border-right: none;
                background: #646d74;
                border-bottom: 1px solid #646d74;
            }
        }
    }
}

@media only screen and (max-width: 768px) {
    .compare-rows{
        & .compare-rows-tr {
            & .compare-rows-th {
                width: 100%;
            }
        }
    }
}