.tsm-icon {
    width: 30px;
    height: 30px;
    font-size: 30px;
}

.tsm-footer-actions-container {
    display: flex;
}

.tsm-footer-actions-container div {
    margin-top: 20px;
}

.tsm-footer-actions-container-left {
    width: 75%;
    text-align: left;
}

.tsm-footer-actions-container-right {
    width: 25%;
    text-align: right;
}

#tsm-box-study-site-status {
    line-height: 30px;
    margin-left: 5px;
}

.tsm-btn-submit {
    margin-right: 5px !important;
}

.tsm-btn-study-site {
    display: inline-block;
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
    line-height: 2.15384615;
    min-height: 30px;
    margin: 0;
    padding: 0 10px;
    cursor: pointer;
    //-webkit-appearance: none;
    border-radius: 3px;
    white-space: nowrap;
    box-sizing: border-box;
    border: none;
    color: white;
    background-color: green;
}

.tsm-button-studying {
    animation: blink 2s infinite;
}

@keyframes blink {
    0% {
        background-color: green;
        color: white;
    }

    50% {
        background-color: white;
        color: #0071a1;
    }

    100% {
        background-color: green;
        color: white;
    }
}

#tsm-datatable-container {
    padding: 5px;
    margin: 0px;
    box-shadow: 3px 3px 5px;


    #tsm-datatable {
        tfoot {
            display: table-header-group !important;

            input {
                width: 100% !important;
            }
        }
    }

    .dataTables_wrapper {

        .dataTables_length,
        .dt-buttons {
            padding-top: .25em;

            select {
                height: 32px;
                width: 80px;
                margin: 0px 5px;
                line-height: 18px;
            }
        }

        .dt-buttons {
            padding-left: 10px;
        }

        .dataTables_filter {
            input {
                height: 32px;
            }
        }
    }
}

.tsm-current-columns-to-show-container {
    .tsm-columns-container {
        @media only screen and (min-width: 1280px) {
            label {
                float: left;
                width: 25%;
            }
        }

        @media only screen and (min-width: 980px) and (max-width: 1280px) {
            label {
                float: left;
                width: 33%;
            }
        }

        @media only screen and (min-width: 768px) and (max-width: 980px) {
            label {
                float: left;
                width: 50%;
            }
        }

        @media only screen and (max-width: 768px) {
            label {
                float: left;
                width: 100%;
                padding-bottom: 10px;
            }
        }
    }
}

#tsm-submit-save-current-columns {
    margin-top: 20px;
}

.tsm-progress-bar-border {
    //border: 1px dashed #808080;
    width: 100%;
    height: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 3px 3px 5px;
    margin-top: 3px;
    margin-bottom: 17px;
}

.tsm-progress-queue-content {
    width: 0%;
    transition: width 1s;
    background-color: rgba(0, 189, 0, .7);
    height: 15px;
    text-align: center;
    font-weight: bold;
}

.tsm-progress-queue-text {
    position: absolute;
    width: 98%;
    text-align: center;
    font-weight: bold;
    font-size: 15px;
    line-height: 15px;
    color: #000000;
}