body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.logo-container {
    position: fixed;
    top: 2%;
    /* Position 2% from the top of the screen */
    left: 50%;
    /* Start positioning from the center */
    transform: translateX(-50%);
    z-index: 1000;
    /* Ensure the logo stays on top of other content */
}

.logo-container img {
    height: 5vw;
    /* The height will be 5% of the viewport width */
    width: auto;
    /* Maintain aspect ratio */
}


code {
    font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace;
}

html,
body {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.container {
    text-align: center;
    width: 100%;
    max-width: 500px;
}

form {
    width: 100%;
}

.App {
    text-align: center;
}

.App-logo {
    height: 40vmin;
    pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
    .App-logo {
        animation: App-logo-spin infinite 20s linear;
    }
}

.App-header {
    background-color: #282c34;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: calc(10px + 2vmin);
    color: white;
}

.App-link {
    color: #61dafb;
}

@keyframes App-logo-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.form-group .control-label {
    padding-top: 6px;
    overflow-wrap: break-word;
}

.react-grid-Cell {
    cursor: pointer;
}

.Page-title {
    width: 100%;
    display: block;
    font-size: 16px;
}

/* ul.Breadcrumb {  list-style: none;  width: 100%;  display: block;  border-bottom: 1px solid #ddd;  margin-top: 10px;  padding: 0;}ul.Breadcrumb li{  display: inline;  font-size: 16px;}ul.Breadcrumb span {  font-size: 16px;}ul.Breadcrumb li+li:before {  padding: 8px;  color: black;  content: \"/\\00a0\";}ul.Breadcrumb li a {  color: #0275d8;  text-decoration: none;}ul.Breadcrumb li a:hover {  color: #01447e;} */
.react-grid-HeaderCell-sortable {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

/* .backLink a,.backLink a:hover{  color: #666;  text-decoration: inherit;} */
.FooterContainer {
    margin: 16px 0px;
}

.SatisfiPagination {
    float: right;
    margin: 0px 0px 8px;
}

.ActivePage>a {
    color: #FF3222 !important;
}

.Paging {
    background-color: #F0F0F0 !important;
    border: 1px solid #ccc !important;
    color: #606060 !important;
    cursor: pointer;
}

.SatisfiPagination>li>a {
    text-align: center;
    min-width: 33px;
    padding: 6px !important;
    font-size: 13px;
    line-height: 1.5;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.SatisfiPagination>li:first-child>a,
.SatisfiPagination>li:last-child>a {
    padding: 6px 16px !important;
}

.RowSelection {
    max-width: 186px;
}

.GridFooter {
    float: right;
    margin: 0px 0px 10px;
}

.FooterRow {
    padding-right: 0px;
    padding-left: 0px;
}


/* .Loader,.Loader:before,.Loader:after {  border-radius: 50%;}.Loader {  color: #0d0d0d;  font-size: 11px;  text-indent: -99999em;  margin: 55px auto;  position: relative;  width: 10em;  height: 10em;  box-shadow: inset 0 0 0 1em;  -webkit-transform: translateZ(0);  -ms-transform: translateZ(0);  transform: translateZ(0);}.Loader:before,.Loader:after {  position: absolute;  content: '';}.Loader:before {  width: 5.2em;  height: 10.2em;  background: #fff;  border-radius: 10.2em 0 0 10.2em;  top: -0.1em;  left: -0.1em;  -webkit-transform-origin: 5.1em 5.1em;  transform-origin: 5.1em 5.1em;  -webkit-animation: load2 2s infinite ease 1.5s;  animation: load2 2s infinite ease 1.5s;}.Loader:after {  width: 5.2em;  height: 10.2em;  background: #fff;  border-radius: 0 10.2em 10.2em 0;  top: -0.1em;  left: 4.9em;  -webkit-transform-origin: 0.1em 5.1em;  transform-origin: 0.1em 5.1em;  -webkit-animation: load2 2s infinite ease;  animation: load2 2s infinite ease;}@-webkit-keyframes load2 {  0% {    -webkit-transform: rotate(0deg);    transform: rotate(0deg);  }  100% {    -webkit-transform: rotate(360deg);    transform: rotate(360deg);  }}@keyframes load2 {  0% {    -webkit-transform: rotate(0deg);    transform: rotate(0deg);  }  100% {    -webkit-transform: rotate(360deg);    transform: rotate(360deg);  }} */
/* .Spinner {  position: absolute;    top: 44%;  left: 50%;  margin-left: -50px;  margin-top: -50px;    background-size: 100%;  z-index: 999;  width: 40px;  height: 40px;    background-color: red;  border-radius: 100%;    -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;  animation: sk-scaleout 1.0s infinite ease-in-out;}@-webkit-keyframes sk-scaleout {  0% { -webkit-transform: scale(0) }  100% {    -webkit-transform: scale(1.0);    opacity: 0;  }}@keyframes sk-scaleout {  0% {     -webkit-transform: scale(0);    transform: scale(0);  } 100% {    -webkit-transform: scale(1.0);    transform: scale(1.0);    opacity: 0;  }} */
/* .Spinner {  left: 50%;  margin-left: -50px;  margin-top: -50px;    background-size: 100%;  z-index: 999;  width: 40px;  height: 40px;  position: absolute;  margin: 100px auto;}.Bounce1, .Bounce2 {  width: 100%;  height: 100%;  border-radius: 50%;  background-color: #333;  opacity: 0.6;  position: absolute;  top: 0;  left: 0;    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;  animation: sk-bounce 2.0s infinite ease-in-out;}.Bounce2 {  -webkit-animation-delay: -1.0s;  animation-delay: -1.0s;}@-webkit-keyframes sk-bounce {  0%, 100% { -webkit-transform: scale(0.0) }  50% { -webkit-transform: scale(1.0) }}@keyframes sk-bounce {  0%, 100% {     transform: scale(0.0);    -webkit-transform: scale(0.0);  } 50% {     transform: scale(1.0);    -webkit-transform: scale(1.0);  }} */
.LoaderContainer {
    /* left: 33%;  top: 19%;  margin-left: -50px;  margin-top: -50px;  background-size: 100%;  z-index: 999;  position: absolute;  margin: 100px auto; */
    position: absolute;
    z-index: 999;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Loading {
    display: block;
    width: 200px;
    overflow: hidden;
    position: relative;
    height: 2px;
    background-color: #ddd;
    box-shadow: #bbb 0 1px 2px;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0, 1);
    transform-origin: left center;
    animation: fade-in .3s ease-in;
}

.Loading:before {
    content: \"\";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #666;
    transform: scale3d(0, 1, 1) translate3d(0, 0, 0);
    animation: movetoright 1s cubic-bezier(0.4, 0, 0, 1) infinite;
    transform-origin: left center;
}

@keyframes movetoright {
    0% {
        transform: scale3d(0, 1, 1) translate3d(0, 0, 0);
    }

    50% {
        transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    }

    100% {
        transform: scale3d(1, 1, 1) translate3d(100%, 0, 0);
    }
}

@keyframes fade-in {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

.Backdrop {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.NoPaddingLeft {
    padding-left: 7px !important;
}

.hasError .checkbox,
.hasError .checkbox-inline,
.hasError .control-label,
.hasError .help-block,
.hasError .radio,
.hasError .radio-inline,
.hasError.checkbox label,
.hasError.checkbox-inline label,
.hasError.radio label,
.hasError.radio-inline label {
    color: red !important;
}

#tableGenericForm .hasError .form-control {
    border-color: red !important;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.readonlyControl {
    /* cursor: text !important; */
    background-color: #f5f5f5 !important;
}

.radio-inline+.radio-inline {
    margin-left: 16px;
}

.Modal {
    position: fixed;
    z-index: 500;
    /* background-color: white;    width: 70%;    border: 1px solid #ccc;    box-shadow: 1px 1px 1px black;    padding: 16px;    left: 15%;    top: 30%; */
    box-sizing: border-box;
    transition: all 0.3s ease-out;
}

@media (min-width: 600px) {
    .Modal {
        width: 500px;
        left: calc(50% - 250px);
    }
}

.spnErrorMsg {
    color: red;
    font-weight: bold;
    padding-left: 15px;
}

.GridActionContainer {
    display: flex;
    justify-content: center;
}

.pageHeader {
    font-weight: bold;
    font-size: 16px;
    padding-left: 16px;
    padding-top: 4px;
}

.GridActionIcons {
    color: #808080 !important;
    text-decoration: none !important;
    cursor: pointer;
    min-width: 33px;
    height: 33px;
    margin: 0 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.GridActionIcons:active {
    transform: scale(0.98);
}

.TableContainer {
    border: 1px solid #dddddd;
    position: relative;
}

.TitleContainer {
    height: 29px;
    padding-top: 6px;
}

.SearchContainer {
    margin-top: 16px;
    margin-bottom: 16px;
    margin-left: -16px !important;
}

.SearchClear {
    cursor: pointer;
    top: 10px;
    position: absolute;
    right: 60px;
    z-index: 10;
}

.SearchClearTableList {
    cursor: pointer;
    top: 11px;
    position: absolute;
    right: 47px;
    z-index: 10;
}

.searchControlDiv {
    width: 467px;
    max-width: 467px !important;
    margin-left: 16px;
}

@media (max-width: 500px) {
    .firefox .searchControlDiv {
        width: 421px;
    }
}

@media (max-width: 600px) {
    .safari.mac .searchControlDiv {
        width: 530px;
        max-width: 530px !important;
    }
}

.SearchButton {
    cursor: pointer;
}

/* .SearchButton:active {    transform: scale(0.98);    box-shadow: 3px 2px 5px 1px rgba(0, 0, 0, 0.24);} */
.SearchButton:hover {
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 2px 2px rgba(200, 200, 200, 0.6);
}

ul.listControl {
    position: realtive;
    top: 20px;
    bottom: 20px;
    left: 20px;
    right: 20px;
    overflow-y: scroll;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    font-size: 13px;
    -webkit-overflow-scrolling: touch;
}

ul.listControl li {
    padding: 8px;
    border-bottom: 1px solid rgb(221, 221, 221)
}

/* ul.listControl li:nth-child(even) {    background: #ededed;  } */
ul.listControl li:hover,
ul.listControl li:nth-child(even):hover {
    background: #eee;
}

.listHeader {
    background: #e5e5e5;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    padding: 8px;
    font-weight: 700;
}

ul.listControl li a {
    text-decoration: none;
    color: inherit;
}

ul.listControl li>a>div {
    line-height: 1.23;
}

.listControlDiv {
    width: 468px;
}

.systemTableListItem {
    width: 230px;
}

.list-title {
    font-weight: bold;
    /* Make the title bold */
    margin-bottom: 10px;
    /* Space between title and list */
}

.list-container ul {
    display: inline-block;
    /* Make the list behave like an inline element for centering */
    text-align: left;
    /* Align text within the list to the left */
    list-style-position: inside;
    /* Keep the bullets close to the text */
    padding-left: 0;
    /* Remove any default padding */
    margin: 0;
    /* Remove default margins */
}

@media (max-width: 500px) {
    .firefox .systemTableListItem {
        width: 200px;
        word-break: break-all;
    }

    .firefox .listControlDiv {
        width: 421px;
    }
}

@media (max-width: 600px) {
    .safari.mac .systemTableListItem {
        width: 300px;
        word-break: break-all;
    }

    .safari.mac .listControlDiv {
        width: 530px;
    }
}

button {
    background-color: #0B5ECA;
    color: white;
    font-weight: bold;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 8px;
    /* Adjust the value to make the corners more or less rounded */
}

button:hover {
    background-color: #094a9a;
}