body {
  margin: unset;
  cursor: default;
  font-family: "KP CheonRiMa Regular";
}

div::-webkit-scrollbar {
  width: 3px;
}

div::-webkit-scrollbar:horizontal {
  height: 5px;
}

div::-webkit-scrollbar::-webkit-scrollbar-track {
  background-color: transparent;
}

div::-webkit-scrollbar::-webkit-scrollbar-thumb {
  background-color: #999;
  border-radius: 10px;
  visibility: hidden;
}

div::-webkit-scrollbar:hover::-webkit-scrollbar-thumb {
  visibility: visible;
}

.btn {
  margin-bottom: 5px !important;
  border-width: 0;
  padding: 7px 14px;
  font-size: 14px;
  outline: none !important;
  cursor: pointer;
  background-image: none !important;
  filter: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  text-shadow: none;
}

.btn + .btn {
  margin-left: 5px;
}

.btn-success {
  color: #fff;
  background-color: #45b6af;
  border-color: #3ea49d;
}

.btn-danger {
  color: #fff;
  background-color: #f3565d;
  border-color: #f13e46;
}

.btn-info {
  color: #fff;
  background-color: #89c4f4;
  border-color: #72b8f2;
}

.btn-disable {
  color: #fff;
  background-color: #95a5a6;
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active {
  color: #fff;
  background-color: #3b9c96;
  border-color: #307f7a;
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active {
  color: #fff;
  background-color: #f1353d;
  border-color: #ec111b;
}

.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active {
  color: #fff;
  background-color: #68b4f1;
  border-color: #43a1ed;
}

.fa.fa-spinner.fa-pulse {
  margin: 0 !important;
}

.container-node-monitor {
  width: 100%;
  height: 100vh;
  position: fixed;
  background-color: #282828;
  color: white;
}

.container-node-monitor .node-monitor-header {
  padding-top: 50px;
  text-align: center;
  font-size: 40px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container-node-monitor .node-service-container {
  height: 80%;
}

.container-node-monitor .node-service-container .node-services {
  height: 100%;
  display: block;
}

.container-node-monitor
  .node-service-container
  .node-services
  #node-services-items {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 360px;
  justify-content: center;
  align-items: center;
  /* justify-content: center; */
}

.container-node-monitor
  .node-service-container
  .node-services
  #node-services-items
  .separator {
  margin: 5px 0px;
  /* justify-content: center; */
}

.container-node-monitor
  .node-service-container
  .node-services
  #node-services-items
  .node-service-item {
  justify-content: center;
  display: flex;
  width: 50%;
}

.container-node-monitor
  .node-service-container
  .node-services
  #node-services-items
  .node-service-item
  * {
  margin: 10px 10px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.container-node-monitor
  .node-service-container
  .node-services
  #node-services-items
  .node-service-item
  button {
  width: 60px;
}

.container-node-monitor
  .node-service-container
  .node-services
  #node-services-items
  .node-service-item
  .service-item-name {
  width: 130px;
  text-align: left;
  justify-content: flex-start;
}

.container-node-monitor
  .node-service-container
  .node-services
  #node-services-items
  .node-service-item
  .service-item-status {
  width: 100px;
  text-align: left;
  justify-content: flex-start;
}

.container-node-monitor
  .node-service-container
  .node-services
  #node-services-status {
  /* width: calc(100% - 450px); */
  width: 100%;
  display: flex;
  justify-content: center;
  /*height: calc( 100% - 60px );*/
  /* margin-top: 10px; */
  /*border: 1px solid white;*/
  /* overflow: auto; */
}

#node-services-status .widget .tabs {
  margin-top: 50px;
  width: 85vw;
}

#node-service-item-frontend {
  margin-bottom: 5px;
}
#node-service-item-main {
  margin: 5px 0;
}
#node-service-item-socket {
  margin: 5px 0;
}
#node-service-item-file {
  margin: 5px 0;
}
#node-service-item-external {
  margin: 5px 0;
}
#node-service-item-build {
  margin: 5px 0;
}
#node-service-item-backend_update {
  margin: 5px 0;
}
#node-service-item-backup {
  margin: 5px 0;
}
#node-service-item-mongodb {
  margin: 5px 0 0 0;
}

.container-node-monitor .node-service-container #node-services-status pre {
  width: 100%;
  white-space: pre-wrap;
}

/* page loading */
.page-spinner-bar-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  text-align: center;
  align-items: center;
  background-color: #232323;
  opacity: 0.8;
  z-index: 100;
}

.page-spinner-bar-wrapper .page-spinner-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.page-spinner-bar-wrapper .page-spinner-bar > div {
  /* background: #41d0bc; */
  margin: 0 5px;
  width: 18px;
  height: 18px;
  background: #eee;
  border-radius: 100% !important;
  display: inline-block;
  -webkit-animation: bounceDelay 1.4s infinite ease-in-out;
  animation: bounceDelay 1.4s infinite ease-in-out;
  /* Prevent first frame from flickering when animation starts */
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.page-spinner-bar-wrapper .page-spinner-bar .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.page-spinner-bar-wrapper .page-spinner-bar .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

/* toast */
#toast-container {
  position: fixed;
  top: 80px;
  right: 20px;
  z-index: 999999;
}

#toast-container * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#toast-container > div {
  margin: 0 0 6px;
  padding: 15px 50px 15px 15px;
  width: 300px;
  -moz-border-radius: 3px 3px 3px 3px;
  -webkit-border-radius: 3px 3px 3px 3px;
  border-radius: 3px 3px 3px 3px;
  background-position: right center;
  background-repeat: no-repeat;
  -moz-box-shadow: 0 0 12px #404040;
  -webkit-box-shadow: 0 0 12px #404040;
  box-shadow: 0 0 12px #404040;
  color: #ffffff;
  opacity: 0.8;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  filter: alpha(opacity=80);
}

#toast-container > :hover {
  -moz-box-shadow: 0 0 12px #000000;
  -webkit-box-shadow: 0 0 12px #000000;
  box-shadow: 0 0 12px #000000;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  filter: alpha(opacity=100);
  cursor: pointer;
}

.toast-success {
  background-color: #51a351;
}

.modal-setting-wrapper {
  display: none;
  position: absolute;
  top: 70px;
  right: 70px;
  width: 250px;
  height: 150px;
  background-color: #282828;
  border: 1px solid #a5a5a5;
}

.modal-setting-wrapper .modal-setting {
  width: 100%;
  height: 100%;
}

.modal-setting-wrapper .modal-setting .modal-title {
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-setting-wrapper .modal-setting .modal-body {
  height: 100px;
  display: flex;
  flex-direction: column;
  padding: 0px 30px;
}

.modal-setting-wrapper .modal-setting .modal-body .resolution-label {
  display: flex;
  align-items: center;
  height: 27px;
}

.modal-setting-wrapper .modal-setting .modal-body .resolution-label input {
  margin: unset;
  margin-right: 10px;
}

/* Tabs
=================================*/
ul,
li,
ol {
  line-height: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
#horizontal-tabs ul.tabs li.current {
  border-top: 2px solid #0488cd;
}

/* #horizontal-tabs {
  margin-bottom: 30px;
} */

#horizontal-tabs ul.tabs li {
  background: none;
  border-right: 1px solid #ddd;
  border-top: 2px solid #666;
  cursor: pointer;
  float: left;
  font-size: 14px;
  padding: 5px 10px;
}

#horizontal-tabs ul.tabs li.current {
  /*border-bottom: 1px solid #555;*/
  background: #555;
  cursor: default;
}

#horizontal-tabs ul.tabs {
  border-left: 1px solid #ddd;
  overflow: hidden;
  border-radius: 2px;
}

#horizontal-tabs .contents {
  border: 1px solid #ddd;
  margin-top: -1px;
  border-radius: 2px;
  background: #555;
  overflow: auto;
  height: 350px;
  width: 80vw;
}

#horizontal-tabs .tabscontent.no-padding {
  padding-left: 0;
  padding-right: 0;
}

#horizontal-tabs .tabscontent {
  display: none;
  overflow: hidden;
  padding: 20px 20px 0;
  position: relative;
  min-height: 100px;
}

#horizontal-tabs .tabscontent .exportButton {
  position: absolute;
  right: 10px;
  top: 10px;
}
