.odd {
    background-color: #f9f9f9;
}

/*  */

.switchery {
    background-color: #fff;
    border: 1px solid #dfdfdf;
    border-radius: 20px;
    cursor: pointer;
    display: inline-block;
    height: 30px;
    position: relative;
    vertical-align: middle;
    width: 50px;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.switchery > small {
    background: #fff;
    border-radius: 100%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    height: 30px;
    position: absolute;
    top: 0;
    width: 30px;
}
.switchery-default {
    /* transform: rotate(180deg); */
    /* background-color: rgb(170, 174, 173); */
    /* border-color: rgb(244 244 244); */
    box-shadow: rgb(245, 244, 244) 0px 0px 0px 16px inset;
    transition: border 0.4s, box-shadow 0.4s, background-color 1.2s;
}
.switchery-primary {
    background-color: rgb(26, 179, 148);
    border-color: rgb(26, 179, 148);
    box-shadow: rgb(26, 179, 148) 0px 0px 0px 16px inset;
    transition: border 0.4s, box-shadow 0.4s, background-color 1.2s;
}
.switchery-danger {
    background-color: rgb(237, 85, 101);
    border-color: rgb(237, 85, 101);
    box-shadow: rgb(237, 85, 101) 0px 0px 0px 16px inset;
    transition: border 0.4s, box-shadow 0.4s, background-color 1.2s;
}
.switchery-middle {
    background-color: rgb(209, 209, 209);
    border-color: rgb(182, 179, 180);
    box-shadow: rgb(183, 183, 183) 0px 0px 0px 16px inset;
    transition: border 0.4s, box-shadow 0.4s, background-color 1.2s;
}
.switchery-default > small,
.switchery-danger > small,
.switchery-white > small {
    left: 0px;
}
.switchery-primary > small,
.switchery-danger > small,
.switchery-primary > small {
    left: 20px;
}
.switchery-middle > small {
    left: 10px;
}
/*  */

/*  */
.loading-container {
    background-color: black;
    /* -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)"; */
    background-color: rgba(0, 0, 0, 0.4);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: block;
    z-index: 10000;
}

.loading-body {
    background-color: white;
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    width: 478px;
    padding: 17px;
    border-radius: 5px;
    text-align: center;
    position: fixed;
    left: 50%;
    top: 50%;
    margin-left: -256px;
    margin-top: -200px;
    overflow: hidden;
    display: block;
    z-index: 99999;
}

.loading {
    position: fixed;
    top: 50%;
    z-index: 10;
    min-width: 300px;
    min-height: 300px;
    /* width:auto; */
    /* min-height:150px; */
    /* border: 1px solid #ccc; */
    border-radius: 5px;
    background-color: #fff;
    /* overflow: auto; */
    font-size: 10px;
    padding: 5px;
    left: 50%;
    margin-left: -150px;
    padding: 5% 0;
    /*text-align:center;*/
}
/*  */

/*  */
/* tooltip */
.tooltip2 {
    position: relative;
    /* display: inline-block; */
    /* border-bottom: 1px dotted black; */
}

.tooltip2 .tooltip2text {
    visibility: hidden;
    min-width: 100px;
    width: auto;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 3000;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip2 .tooltip2text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}
.radius-xs {
    border-radius: 5px;
}
.radius-sm {
    border-radius: 10px;
}
.radius-md {
    border-radius: 15px;
}
.tooltip2:hover .tooltip2text {
    visibility: visible;
    opacity: 1;
}

.tooltip2text-lg,
.tt-lg {
    min-width: 600px !important;
}

.tooltip2text-md,
.tt-md {
    min-width: 400px !important;
}

.tooltip2text-sm,
.tt-sm {
    min-width: 200px !important;
}

.tooltip2text-xs,
.tt-xs {
    min-width: 150px !important;
}
/*  */
