﻿

/*#mainsplitter {
    display: flex;
    justify-content: space-between;
    height: 100vh;
    .flex  {
        width: 100%;
        &:nth-child(2)  {
            background: red;
            resize:both;
            overflow:auto;
        }
    }
}*/

/* set cursor in grid rows */
.k-grid-content tr:not(.k-grouping-row) td:not(.k-group-cell) {
    cursor: pointer;
}

/* to position dialog on top of window */
.k-dialog-wrapper {
    z-index: 100000 !important;
}

div.k-window-title.ng-star-inserted {
    height:25px !important;
}

div.k-content.k-window-content.ng-star-inserted {
    /*background-color: yellow;*/
    padding-top:2px;
}

.k-animation-container-fixed>.k-popup {
    height: 50px;
}

.k-grid th {
    padding:8px 2px;
}

.gridsmallfont {
    font-size:12px !important;
}

.td_input_value {
    padding-left: 10px;
}

.td_input_label {
    text-align: left;
    padding-left: 5px;
    height: 30px;
    white-space: nowrap;
}

/*.k-radio-label {
    font-size:14px  !important;
}*/

.k-switch-container, .k-switch-wrapper {
    border-width:2px !important;
}
.k-switch-on:hover .k-switch-handle {
    border-color: gray !important;
    background-color: gray !important;
}

.k-switch-on .k-switch-handle {
    border-color: gray !important;
    background-color: gray !important;
    background-image: linear-gradient(darkgray,gray);
}

.k-switch-label-on {
    color: gray !important;
    
}

/*  flash button*/
.flash-button {
    background: rgb(255,99,88) !important;
    padding: 5px 10px;
    color: #fff;
    border: none;
    border-radius: 5px;
    animation-name: flash;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    //Firefox 1+ -webkit-animation-name: flash;
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    //Safari 3-4 -moz-animation-name: flash;
    -moz-animation-duration: 1s;
    -moz-animation-timing-function: linear;
    -moz-animation-iteration-count: infinite;
}

@keyframes flash {
    0% {
        opacity: 1.0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1.0;
    }
}

//Firefox 1 + @-webkit-keyframes flash {
    0%

{
    opacity: 1.0;
}

50% {
    opacity: 0.5;
}

100% {
    opacity: 1.0;
}

}

//Safari 3-4 @-moz-keyframes flash {
    0%

{
    opacity: 1.0;
}

50% {
    opacity: 0.5;
}

100% {
    opacity: 1.0;
}
}
/* end  flash button*/