
.k-grid-header .k-grid-header-wrap th.k-header {
    /*text-align: center !important;*/
    vertical-align: middle !important;
}

.text-align-right {
    text-align: right !important;
}

.text-align-center {
    text-align: center !important;
}

.a-link:hover {
    cursor: pointer !important;
}

.margin-left-20 {
    margin-left: 20px !important;
}

.margin-left-10 {
    margin-left: 10px !important;
}

.margin-top-10 {
    margin-top: 10px !important;
}

.margin-top-20 {
    margin-top: 20px !important;
}

.margin-top-minus20 {
    margin-top: -20px !important;
}

.margin-bottom-0 {
    margin-bottom: 0px !important;
}

.margin-bottom-20 {
    margin-bottom: 20px !important;
}

.padding-bottom-10 {
    padding-bottom: 10px !important;
}

.padding-bottom-20 {
    padding-bottom: 20px !important;
}

.padding-top-10 {
    padding-top: 10px !important;
}

.full-width {
    width: 100% !important;
}

.full-height {
    height: 100% !important;
}

.date-range-divider {
    padding: 0px 20px 0px 20px;
}

.bold-font {
    font-weight: bold !important;
}

.padding-right-20 {
    padding-right: 20px !important;
}

.min-width-250 {
    min-width: 250px !important;
}

.min-width-550 {
    min-width: 550px !important;
}

.space-right {
    margin-right: 20px !important;
}

.min-width-50-percent {
    min-width: 50% !important;
}

.max-width-90-percent {
    max-width: 90% !important;
}

.min-width-45-percent {
    min-width: 45% !important;
}

.margin-left-10-percent {
    margin-left: 10% !important;
}

.error-hint {
    color: #dc3545 !important;
    font-size: small !important;
    font-style: italic !important;
}

.success-hint {
    color: #28a745 !important;
    font-size: small !important;
    font-style: italic !important;
}


.mat-spinner-center {
    margin: 0 auto !important;
}

.max-height-75-percent {
    max-height: 75vh !important;
}
/*For text wrapping input checkbox labels*/
.mat-checkbox-layout {
    white-space: normal !important;
}

.scroll-65-vh {
    height: 65vh !important;
    /*overflow-y: scroll !important;*/
}

/*Word Break*/
.word-break {
    word-break: break-word !important;
}

/*snack bar visibility change*/
.mat-snack-bar-container {
    margin-top: 80px !important;
}

.snack-success {
    background: #28a745 !important;
    color: #fff !important
}

.snack-error {
    background: #dc3545 !important;
    color: #fff !important
}

.mat-simple-snackbar-action {
    color: #fff !important;
}
/*snack bar visibility change*/

/*FUSE Splash Screen CSS*/
#fuse-splash-screen {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #2D323D;
    z-index: 99999;
    pointer-events: none;
}

    #fuse-splash-screen .center {
        display: block;
        width: 100%;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    #fuse-splash-screen .logo {
        width: 128px;
        margin: 0 auto;
    }

        #fuse-splash-screen .logo img {
            filter: drop-shadow(0px 10px 6px rgba(0, 0, 0, 0.2))
        }

    #fuse-splash-screen .spinner-wrapper {
        display: block;
        position: relative;
        width: 100%;
        min-height: 100px;
        height: 100px;
    }

        #fuse-splash-screen .spinner-wrapper .spinner {
            position: absolute;
            overflow: hidden;
            left: 50%;
            margin-left: -50px;
            animation: outer-rotate 2.91667s linear infinite;
        }

            #fuse-splash-screen .spinner-wrapper .spinner .inner {
                width: 100px;
                height: 100px;
                position: relative;
                animation: sporadic-rotate 5.25s cubic-bezier(0.35, 0, 0.25, 1) infinite;
            }

                #fuse-splash-screen .spinner-wrapper .spinner .inner .gap {
                    position: absolute;
                    left: 49px;
                    right: 49px;
                    top: 0;
                    bottom: 0;
                    border-top: 10px solid;
                    box-sizing: border-box;
                }

                #fuse-splash-screen .spinner-wrapper .spinner .inner .left,
                #fuse-splash-screen .spinner-wrapper .spinner .inner .right {
                    position: absolute;
                    top: 0;
                    height: 100px;
                    width: 50px;
                    overflow: hidden;
                }

                    #fuse-splash-screen .spinner-wrapper .spinner .inner .left .half-circle,
                    #fuse-splash-screen .spinner-wrapper .spinner .inner .right .half-circle {
                        position: absolute;
                        top: 0;
                        width: 100px;
                        height: 100px;
                        box-sizing: border-box;
                        border: 10px solid #8E24AA;
                        border-bottom-color: transparent;
                        border-radius: 50%;
                    }

                #fuse-splash-screen .spinner-wrapper .spinner .inner .left {
                    left: 0;
                }

                    #fuse-splash-screen .spinner-wrapper .spinner .inner .left .half-circle {
                        left: 0;
                        border-right-color: transparent;
                        animation: left-wobble 1.3125s cubic-bezier(0.35, 0, 0.25, 1) infinite;
                        -webkit-animation: left-wobble 1.3125s cubic-bezier(0.35, 0, 0.25, 1) infinite;
                    }

                #fuse-splash-screen .spinner-wrapper .spinner .inner .right {
                    right: 0;
                }

                    #fuse-splash-screen .spinner-wrapper .spinner .inner .right .half-circle {
                        right: 0;
                        border-left-color: transparent;
                        animation: right-wobble 1.3125s cubic-bezier(0.35, 0, 0.25, 1) infinite;
                        -webkit-animation: right-wobble 1.3125s cubic-bezier(0.35, 0, 0.25, 1) infinite;
                    }

@keyframes outer-rotate {
    0% {
        transform: rotate(0deg) scale(0.5);
    }

    100% {
        transform: rotate(360deg) scale(0.5);
    }
}

@keyframes left-wobble {
    0%, 100% {
        transform: rotate(130deg);
    }

    50% {
        transform: rotate(-5deg);
    }
}

@keyframes right-wobble {
    0%, 100% {
        transform: rotate(-130deg);
    }

    50% {
        transform: rotate(5deg);
    }
}

@keyframes sporadic-rotate {
    12.5% {
        transform: rotate(135deg);
    }

    25% {
        transform: rotate(270deg);
    }

    37.5% {
        transform: rotate(405deg);
    }

    50% {
        transform: rotate(540deg);
    }

    62.5% {
        transform: rotate(675deg);
    }

    75% {
        transform: rotate(810deg);
    }

    87.5% {
        transform: rotate(945deg);
    }

    100% {
        transform: rotate(1080deg);
    }
}
/*FUSE Splash Screen CSS*/

.k-i-loading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    font-size: 64px;
    background-color: rgba(255,255,255,.3);
    color: #8e24aa;
    z-index: 999;
}

.logo-center {
    width: 128px;
    margin: auto;
}


/*Kendo Grid*/
.actions-alignment {
    margin-left: -12px !important;
}

/*Wrap column headers*/
.k-grid-header .k-header {
    overflow: visible !important;
    white-space: normal !important;
}

/*Kendo Grid*/


/* Styles HTML description lists <dl> to be in a tabular format.
 * Typically used to show a listing of read-only data
 */
dl.table-display {
    float: left;
    width: 520px;
    margin: 1em 0;
    padding: 0;
    border-bottom: 1px solid #DCDCDC;
}

.table-display dt {
    clear: left;
    float: left;
    width: 200px;
    margin: 0;
    padding: 5px;
    border-top: 1px solid #DCDCDC;
    font-weight: bold;
}

.table-display dd {
    float: left;
    width: 300px;
    margin: 0;
    padding: 5px;
    border-top: 1px solid #DCDCDC;
}

@media screen and (max-width: 768px) {
    .smaller-screens-font {
        font-size: 12px !important;
    }

    .smaller-screens-icon {
        font-size: 15px !important;
    }

    .hide-on-smaller-screens {
        display: none !important;
    }
}

@media screen and (max-height: 640px) {
    .x-small-screens-navlink {
        height: 35px !important;
    }
}

@media screen and (min-width: 769px) {
    .hide-on-larger-screens {
        display: none !important;
    }
}
