/* Copy button - START */

.ace-copy-btn {
  -webkit-appearance: button;
    cursor: pointer;
  float:right;
  z-index: 1000000;
  /*right: 63px;*/
  margin-left:auto;
  margin-right:10px;
  margin-top: 10px;
  height: 28px;
  width: 93px;
  position: relative !important;
  border: none;
  border-radius: 4px;
  font-family: "Oracle Sans", -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: center;
  color: #ffffff;
  box-shadow: 16px 1px 14px -1px #ffffff, -16px 1px 14px -1px #ffffff;
  background: url(https://docs.oracle.com/en/cloud/saas/marketing/infinity-quickstart/images/ace-editor/copy-btn-icon.svg) no-repeat; /* FIX!!! */
  background-position-x: 8px;
  background-position-y: 6px;  
  user-select: none;   
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.ace-copy-btn-enabled {
  background-color: #4c825c;
}

.ace-copy-btn-text {
    position: absolute;
    top: 6px;
    right: 23px;
    color: white;
}

.ace-copied-btn-text {
    position: absolute;
    top: 6px;
    right: 18px;
    color: white;
}

.ace-copied-btn {
    background-color: #312d2a;
    outline: none;
}

.ace-copied-btn:focus {
    outline: dotted 2px #161513;
    outline-offset: 1px;
}

.ace-copy-btn-enabled {
    background-color: #4c825c;
}

.ace-copy-btn-color-change {
    background-color: #4c825c;
    -webkit-transition: background-color 1000ms linear;
    -ms-transition: background-color 1000ms linear;
    transition: background-color 1000ms linear;
}

.ace-copy-btn-color-change:focus {
    outline: dotted 2px #161513;
    outline-offset: 1px;
}

/* Copy button - END */

.ace_hidden-cursors {
    opacity: 0
}
.ace-code-editor {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.ace_editor,
.ace_editor * {
    
    font-size: 12px !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
}
.ace-code-editor-wrapper {
    position: relative;
    width: 100%;
    /*min-height: 200px;*/
    border-width: 1px;
    border-color: #D3D3D3;
    border-style: solid;
    visibility: hidden;
    /* optional - hide until script runs for cleaner user experience */
}
.ace_tooltip {
    font-weight: 300 !important;
    
    -webkit-font-smoothing: auto;
    background-color: #000000;
    border: 1px solid gray;
    border-radius: 1px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    color: white;
    max-width: 100%;
    padding: 3px 4px;
    position: fixed;
    z-index: 999999;
    box-sizing: border-box;
    cursor: default;
    white-space: pre;
    word-wrap: break-word;
    line-height: normal;
    font-style: normal;
    font-size: 16px !important;
    letter-spacing: normal;
    pointer-events: none;
    border-width: 0px;
    border-radius: 0.25rem;
    padding: 0.25rem 0.5rem;
}
