﻿/* Scroll関連 */
::-webkit-scrollbar {
    width: 6px !important;
    height: 6px !important;
}

::-webkit-scrollbar-track {
    border-radius: 6px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
}

::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 50, .5);
    border-radius: 6px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .3);
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 50, .8);
}
/* Scroll関連 */

/* Radzen関連 */
@media (min-width: 641px) {
    ul.rz-profile-menu .rz-navigation-item-icon-children {
        color: #212529;
    }
}

a.rz-navigation-item-link {
    text-decoration: none !important;
    margin-left: auto !important;
}

input:disabled {
    background-color: #e9ecef !important;
}

.rz-dropdown.rz-state-disabled {
    background-color: #e9ecef !important;
}
.rz-dropdown-label.rz-inputtext {
    background: inherit !important;
}

.rz-form-field.rz-state-disabled > .rz-form-field-content {
    background: #e9ecef !important;
}

/* フォームタイトル */
.form-margin-top {
    margin-top: 0.5rem !important;
}

/* DataGrid関連 */
.rz-cell-data {
    width: inherit !important;
}

.rz-tabview-panel {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
/* Radzen関連 */

/* Spinner */
.loader {
    width: 100vw; 
    height: 100vh; 
    position: fixed; 
    z-index:10; 
    top: 0; 
    left: 0; 
    background:rgba(100,100,100,.8); 
    display: flex; 
    justify-content: center; 
    align-items: center;
}

.spinner,
.spinner:after {
    border-radius: 50%;
    width: 10em;
    height: 10em;
}

.spinner {
    margin: 60px auto;
    font-size: 10px;
    position: relative;
    text-indent: -9999em;
    border-top: 1.1em solid rgba(255, 255, 255, 0.2);
    border-right: 1.1em solid rgba(255, 255, 255, 0.2);
    border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
    border-left: 1.1em solid #ffffff;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load8 1.1s infinite linear;
    animation: load8 1.1s infinite linear;
}

@-webkit-keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
/* Spinner */




