.onoffswitch {
    position: relative; width: 35px; left: 15px; 
    -webkit-user-select:none; -moz-user-select:none; -ms-user-select: none;
}
.onoffswitch-checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.onoffswitch-label {
    display: block; overflow: hidden; cursor: pointer;
    height: 14px; padding: 0; line-height: 20px;
    border: 2px solid #a1a1a1; border-radius: 14px;
    background-color: #636161;
    transition: background-color 0.3s ease-in;
}
.onoffswitch-label:before {
    content: "";
    display: block; width: 14px; margin: 0px;
    background: #FFFFFF;
    position: absolute; top: 0; bottom: 0;
    right: 24px;
    border: 2px solid #E3E3E3; border-radius: 14px;
    transition: all 0.3s ease-in 0s; 
}
.onoffswitch-checkbox:checked + .onoffswitch-label {
    background-color: #29e010d5;
}
.onoffswitch-checkbox:checked + .onoffswitch-label, .onoffswitch-checkbox:checked + .onoffswitch-label:before {
   border-color: #29e010d5;
}
.onoffswitch-checkbox:checked + .onoffswitch-label:before {
    right: 0px; 
}

.table-responsive {
    display: table;
}

.table-responsive thead {
    border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 5px;
    background: linear-gradient(to bottom, #0000ff 0%, #0066ff 100%);
    text-align: center;
}

.table-responsive td
{
    text-align: center;
    vertical-align: middle;
}

.table-responsive th
{
    text-align: center;
    vertical-align: middle;
}

.table-responsive tbody
{
    text-align: center;
    vertical-align: middle;
}


.form-control
{
    width: 100px;

}
.card {
    position: relative;
    display: flex;
    width: 510px;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #0198f7;
    background-clip: border-box;
    border: 1px solid #0198f7;
    border-radius: 7px
}

.dot {
    height: 8px;
    width: 8px;
    margin-left: 7px;
    margin-right: 0px;
    margin-top: 2px;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block
}

.c-number span {
    margin-right: 3px;
    color: #fff;
    font-weight: 700
}

.common {
    font-size: 10px;
    color: #dacece
}

body {
    background: #eee
}

.button {
    border-top: 1px solid #96d1f8;
    background: #5374ed;
    background: -webkit-gradient(linear, left top, left bottom, from(#0324fc), to(#5374ed));
    background: -webkit-linear-gradient(top, #0324fc, #5374ed);
    background: -moz-linear-gradient(top, #0324fc, #5374ed);
    background: -ms-linear-gradient(top, #0324fc, #5374ed);
    background: -o-linear-gradient(top, #0324fc, #5374ed);
    padding: 10px 20px;
    -webkit-border-radius: 11px;
    -moz-border-radius: 11px;
    border-radius: 11px;
    -webkit-box-shadow: rgba(0,0,0,1) 0 1px 0;
    -moz-box-shadow: rgba(0,0,0,1) 0 1px 0;
    box-shadow: rgba(0,0,0,1) 0 1px 0;
    text-shadow: rgba(0,0,0,.4) 0 1px 0;
    color: #ffffff;
    font-size: 16px;
    font-family: Georgia, serif;
    text-decoration: none;
    vertical-align: middle;
    }
 .button:hover {
    border-top-color: #0004f7;
    background: #0004f7;
    color: #ccc;
    }
 .button:active {
    border-top-color: #1b435e;
    background: #1b435e;
    }