html {
    scroll-behavior: auto !important;
}
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    scroll-behavior: smooth;
}

body {
    /*font-family: "Open Sans", sans-serif;*/
    color: #444444;
    background-color: #fdfdfd;
}

a {
    color: #4154f1;
    text-decoration: none;
}

    a:hover {
        color: #717ff5;
        text-decoration: none;
    }

h1, h2, h3, h4, h5, h6 {
    font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/*--------------------------------------------------------------
# custom
--------------------------------------------------------------*/
/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

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

.noleftborder {
    border-left: 0 !important;
}

.darkblue {
    color: darkblue;
}

.RadGrid:focus {
    outline: none;
}

.RadInput:focus,
.RadInput *:focus {
    outline: none;
}

.rgFilter {
    margin-left: 6px !important;
}

.rgFilterBox {
    outline: none !important;
}

.rgFilterRow td {
    padding: 10px !important;
}

.RadGrid input[type="image"] {
    outline: none;
}

.rgHeader {
    height: 50px !important;
}

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

.riTextBox {
    font-size: 1rem !important;
    padding-top: 7px !important;
    border: 1px solid #DEE2E6 !important;
}

.rntDisabled {
    background-color: #e9ecef !important;
    opacity: 1 !important;
    border: 1px solid #DEE2E6 !important;
}

.radDatePickerEmpty {
    color: #6c757d !important;
}


.rwTitleBar {
    height: 40px !important;
}

.RadWindow .rwIcon {
}

.RadWindow .rwTitle {
    width: 98% !important;
    color: darkblue !important;
}

td.gridlink a {
    color: blue !important;
}


.rgCommandCell {
    border-left: 0px solid #dedede !important;
}

.RadGrid .rgPagerCell {
    border-style: none !important;
}

.RadWindow .rwIcon:before {
    content: none !important;
}

.RadXmlHttpPanel {
    margin-bottom: 15px;
}

input[type="checkbox"]:not(#cb_PhotoId) {
    margin-right: 10px !important;
    margin-left: -5px !important;
}
/*.checkbox .btn,
.checkbox-inline .btn {
    padding-left: 2em;
    min-width: 18em;
}

.checkbox label,
.checkbox-inline label {
    text-align: left;
    margin-right: 25px !important;
}*/

.rfdTextInput {
    border-color: #ced4da !important;
}

.requiredRed {
    color: red;
}

.has-error .form-control {
    border-color: red !important;
    color: red !important;
}

.has-error .control-label {
    color: red !important;
}

input[type="radio"] {
    margin: 4px 5px 4px 4px;
}

    input[type="radio"]:checked + label {
        font-weight: bold;
    }

h6 {
    display: inline-block;
}

.btn-rounded {
    border-radius: 4px !important;
}
/* Remove Number arrows Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Remove Number arrows Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

@media (min-width: 1200px) {
    .container-sm {
        max-width: 970px;
    }
}

@keyframes loading {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

#divLoading {
    animation: loading 2s ease-in-out infinite;
}
