.loader-active {
  display: flex;
  align-items: center;
  justify-content: center;
}

th, td{
	text-align: center;
}

.link-icon{
	display: flex;
	align-items: center;
	justify-content: center;
}

/* switch only css */
.switch {
    margin-bottom: 0px !important;
}

.switch * {
    cursor: pointer;
}

.switch input {
    opacity: 0;
    position: absolute;
    z-index: -1;
}

.switch span {
    position: relative;
    display: inline-block;
    width: 58px;
    height: 30px;
    background-color: white;
    border: 1px solid rgb(223, 223, 223);
    border-radius: 100px;
    transition: all .5s;
    box-shadow: 1px 2px 3px rgba(0,0,0,0.1) inset;
}

.switch span:after {
    content: "";
    position: absolute;
    background-color: white;
    top: 0;
    left: 0;
    height: 28px;
    width: 28px;
    border: 1px solid #ddd;
    border-radius: 400px;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.1);
    -webkit-transition: all .2s;
    transition:  all .2s;
}

.switch input:checked + span {
    background-color: rgb(129, 200, 104);
    border-color: rgb(129, 200, 104);
    transition: all .5s;
}

.switch input:checked + span:after {
    left: 50%;
    transition: all .2s;
}

.jq-toast-single {
    word-break: break-all;
}