html {
    scroll-behavior: smooth;
}

@media (min-width: 576px) {
    .jumbotron {
        padding: 2rem 2rem;
    }
}
#execIframe {
    border:none;
    width:100%;
    height:100%;
    background: #F0F0F0;
    border-radius: .3rem;
}
.embed-responsive {
   height:100%;
}
.modal-dialog {
      overflow-y: initial !important
}
@media (min-width: 992px) {
    .modal-lg {
        max-width: 90%;
    }
}
@media (min-width: 576px) {
    .modal-dialog {
        max-width: 90%;
    }
}
.modal-body {
  height: 600px;
  overflow-y: auto;
  scroll-behavior: auto;
}
.rotate {
  animation: rotation 2s infinite linear;
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
select option:disabled {
  color: #D0D0D0;
}
#execModalUrl a.badge {
    font-weight: 400;
}
.oi.oi-circle-check.text-success {
    top: 4px;
}
.version {
    width: 400px;
    margin-bottom: 20px;
}

#execModal .modal-header {
    max-height: 5rem;
}

#execDisplayBlock {
    display: inline-block;
    width: 90px;
}

div#shortcut .list-group-item {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    line-height: 0.6;
}
div#shortcut .list-group-item.active {
    color: #fff;
}

#scrollToTop {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: 1px solid transparent; /* Remove borders */
  outline: none; /* Remove outline */
  /*background-color: red; /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 10px; /* Some padding */
  border-radius: 50px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
  transform: rotate(180deg);
}

#scrollToTop:hover {
  /*background-color: #28a745; /* Add background on hover */
  background-color: #0062cc;
  border-color: #005cbf;
}
#scrollToTop svg {
    fill: currentColor;
}

