﻿.bold, .bold > label{
    font-weight:bold;
}

.tw-picker-wrapper {
}

    .tw-picker-wrapper > .tw-picker-checkbox {
        padding: 2px;
        margin: auto;
    }
    .tw-picker-wrapper > .tw-picker-label {
        padding:2px;
        margin:auto;
        margin-left:10px;
    }

.tw-mscrm-datasource{
}

.mb-1{
    margin-bottom:0.5rem;
}
.mb-2 {
    margin-bottom: 1rem;
}
.mb-3 {
    margin-bottom: 1.5rem;
}
.mb-4 {
    margin-bottom: 2rem;
}
.mb-5 {
    margin-bottom: 2.5rem;
}



.loading-bar {
    width: 100%;
    height: 6px;
    background-color: #f3f3f3;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.loading-progress {
    width: 0;
    height: 100%;
    background-color: #007cba;
    animation: loading-animation 1.5s infinite linear;
}

@keyframes loading-animation {
    0% {
        width: 0;
    }

    50% {
        width: 50%;
    }

    100% {
        width: 100%;
    }
}

.toggle-button {
    background-color: #007cba;
    color: white;
    padding: 8px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

    .toggle-button:hover {
        background-color: #005b8e;
    }
