.es-code-snippet {
  display: none;
  flex: 0 0 0;
  overflow: hidden;
  padding: 64px 26px 26px;
  position: relative;
  visibility: hidden; }
  .es-code-toggle--visible .es-code-snippet {
    display: block;
    visibility: visible; }

.es-code-snippet__hide-button {
  align-items: center;
  border: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  display: flex;
  left: 8px;
  margin: 0;
  position: fixed;
  top: 8px; }

.es-code-snippet__hide-button-icon {
  fill: #FFFFFF;
  height: 14px;
  margin-right: 8px;
  position: relative;
  top: 2px;
  width: 14px; }

.es-code-snippet__persistent-url {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  margin-bottom: 64px;
  padding: 8px;
  width: 100%; }

.es-code-snippet__label {
  display: inline-block;
  margin-bottom: 8px;
  margin-right: 15px; }

.es-code-snippet__copy-button-icon {
  fill: #1E62AB;
  height: 16px;
  margin-right: 4px;
  width: 16px; }

.es-code-snippet__copy-header {
  align-items: center;
  display: flex;
  justify-content: space-between; }

.es-code-snippet__header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px; }

.es-code-snippet__hide-snippet-text {
  position: relative;
  top: -2px; }

.es-code-snippet__hide-snippet-icon {
  fill: #1E62AB;
  height: 16px;
  width: 16px; }

.es-code-snippet__code-wrap {
  background: #FFFFFF;
  border: solid 1px #888888;
  max-height: 60vh;
  overflow-y: scroll;
  position: relative; }

.es-code-snippet__code-loading-wrap {
  align-items: center;
  background: rgba(0, 0, 0, 0.8);
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0.4s, visibility 0s 0.4s;
  visibility: hidden; }
  .es-code-snippet--loading .es-code-snippet__code-loading-wrap {
    opacity: 1;
    transition: opacity 0.4s, visibility 0s;
    visibility: visible; }

.es-code-snippet__code-loading-icon {
  animation: spin 1s linear infinite;
  display: block;
  fill: #FFFFFF;
  height: 40px;
  margin: 0 auto 8px;
  width: 40px; }

.es-code-snippet__code-loading-text {
  color: #FFFFFF; }

#es-code-snippet__code {
  background: #FFFFFF;
  font-size: 12px; }

.es-code-snippet__copy-button {
  align-items: center;
  display: inline-flex;
  position: relative; }

.es-code-snippet__code-loading-message {
  text-align: center; }

.es-code-snippet__copy-response {
  background: #1E1E1E;
  border-radius: 8px;
  color: #FFFFFF;
  font-size: 14px;
  left: 50%;
  margin-left: -75px;
  opacity: 0;
  padding: 8px;
  position: absolute;
  text-align: center;
  top: 20px;
  width: 150px;
  z-index: 100; }
  .es-code-snippet__copy-response:before {
    background: #1E1E1E;
    content: '';
    display: block;
    height: 10px;
    left: 50%;
    margin-left: -5px;
    position: absolute;
    top: -5px;
    transform: rotate(45deg);
    width: 10px; }
  .es-code-snippet__copy-button--clicked .es-code-snippet__copy-response {
    animation: fade-in-out 3s; }

@keyframes spin {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }

@keyframes fade-in-out {
  0% {
    opacity: 0;
    top: 32px; }
  10% {
    opacity: 1;
    top: 48px; }
  90% {
    opacity: 1;
    top: 48px; }
  100% {
    opacity: 0;
    top: 32px; } }

.es-color-form {
  padding: 26px 26px 0; }

.es-color-form__title {
  margin: 0; }

.es-color-form__textarea {
  border-radius: 4px;
  border: solid 1px #888888;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  height: 200px;
  padding: 8px;
  margin-bottom: 15px;
  width: 100%; }
  .es-color-form__textarea[disabled] {
    color: #888888;
    cursor: not-allowed;
    font-style: italic; }

.es-color-form__label {
  display: block;
  font-weight: bold;
  margin-bottom: 15px; }

.es-color-form__field-wrapper {
  margin-bottom: 26px; }

.es-color-form__copy {
  font-size: 16px;
  margin: 0 0 16px; }

.es-color-form__radio-button {
  display: block;
  font-weight: 400;
  margin-bottom: 15px;
  text-align: center;
  width: 33.3333333%; }
  .es-color-form__radio-button input[disabled],
  .es-color-form__radio-button input[disabled] + .es-color-form__radio-button-text {
    color: #888888;
    cursor: not-allowed;
    font-style: italic; }

.es-color-form__radio-button-text {
  background-color: #dbd6d6;
  border-right: solid 1px #888888;
  color: #000000;
  cursor: pointer;
  display: block;
  font-size: 12px;
  padding: 8px;
  width: 100%; }
  .es-color-form__radio-button-input:checked + .es-color-form__radio-button-text {
    background-color: #4D4D4D;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
    color: #FFFFFF; }
  .es-color-form__radio-button:last-child .es-color-form__radio-button-text {
    border-radius: 0 4px 4px 0;
    border-right: 0; }
  .es-color-form__radio-button:first-child .es-color-form__radio-button-text {
    border-radius: 4px 0 0 4px; }

.es-color-form__content {
  margin-bottom: 32px; }

.es-color-form__field-wrapper--background-colors {
  display: none; }
  .es-color-form--show-background-colors-input .es-color-form__field-wrapper--background-colors {
    display: block; }

.es-color-form--show-background-colors-input .es-color-form__show-background-colors {
  display: none; }

.es-color-form__hide-background-colors {
  display: none; }
  .es-color-form--show-background-colors-input .es-color-form__hide-background-colors {
    display: block; }

.es-color-form__radio-button-group {
  align-items: center;
  display: flex;
  width: 100%; }

.es-color-form__radio-button-subtext {
  display: block;
  font-size: 12px; }

.es-color-form__radio-button-input {
  position: absolute;
  visibility: hidden; }

/* 
 * dragtable
 *
 * @Version 2.0.15
 *
 * default css
 *
 */
/*##### the dragtable stuff #####*/
.dragtable-sortable {
  list-style-type: none;
  margin: 0;
  padding: 0;
  -moz-user-select: none; }

.dragtable-sortable li {
  margin: 0;
  padding: 0;
  float: left;
  font-size: 1em;
  background: white; }

.dragtable-sortable .ui-sortable-placeholder th {
  visibility: hidden; }

.ui-sortable-helper {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transform: scale(1.02); }

.ui-sortable-placeholder {
  box-shadow: 4px 5px 4px #C6C6C6 inset;
  visibility: visible !important;
  background: #EFEFEF !important;
  visibility: visible !important; }

.es-contrast-grid__row-placeholder {
  height: 100px;
  padding: 1px;
  position: relative;
  visibility: visible !important; }
  .es-contrast-grid__row-placeholder td {
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.3);
    visibility: visible !important; }

.es-contrast-grid__row-placeholder-cell {
  box-shadow: 4px #C6C6C6 inset; }

.dragtable-sortable + .es-contrast-grid__table .es-contrast-grid__foreground-key-cell {
  visibility: hidden; }

.es-tabs__global-panel--copy-code .es-contrast-grid {
  display: none; }

.es-contrast-grid__key-swatch--foreground {
  position: relative; }
  .es-contrast-grid__key-swatch--foreground .es-contrast-grid__key-swatch-label {
    order: 2;
    margin-bottom: auto;
    margin-top: auto; }
  .es-contrast-grid__key-swatch--foreground .es-contrast-grid__key-swatch-controls {
    align-items: center;
    display: flex;
    order: 1;
    justify-content: space-between;
    left: 0;
    padding: 8px;
    padding-bottom: 0;
    padding-top: 4px;
    position: absolute;
    top: 0;
    width: 100%;
    visibility: hidden; }
  .es-contrast-grid__key-swatch--foreground .es-contrast-grid__key-swatch-remove {
    margin-left: auto;
    margin-right: 0;
    order: 2; }
    .es-contrast-grid__key-swatch--foreground .es-contrast-grid__key-swatch-remove .es-contrast-grid__key-swatch-remove-icon {
      height: 14px;
      width: 14px; }
  .es-contrast-grid__key-swatch--foreground:hover .es-contrast-grid__key-swatch-controls {
    visibility: visible; }

.es-contrast-grid__key-swatch--background .es-contrast-grid__key-swatch-controls {
  align-items: center;
  display: none;
  margin-left: auto; }

.es-contrast-grid__key-swatch--background:hover .es-contrast-grid__key-swatch-controls {
  display: flex; }

.es-contrast-grid__key-swatch-drag-handle--row {
  cursor: ns-resize; }

.es-contrast-grid__key-swatch-drag-handle--column {
  cursor: ew-resize; }

.es-contrast-grid__key-swatch-remove {
  margin-right: 8px; }

.es-contrast-grid__key-swatch-remove-icon {
  fill: #FFFFFF;
  height: 20px;
  width: 20px; }
  .es-contrast-grid--dark-label .es-contrast-grid__key-swatch-remove-icon {
    fill: #000000; }

.es-contrast-grid__key-swatch-drag-handle-icon {
  fill: #FFFFFF;
  height: 20px;
  width: 20px; }
  .es-contrast-grid--dark-label .es-contrast-grid__key-swatch-drag-handle-icon {
    fill: #000000; }

.es-contrast-grid--row-and-column-removal-disabled *:hover .es-contrast-grid__key-swatch-controls {
  display: none; }

html,
body {
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  margin: 0;
  min-height: 100vh;
  padding: 0; }

*,
*:before,
*:after {
  box-sizing: inherit; }

a {
  color: #1E62AB;
  text-decoration: none; }
  a:hover {
    color: #0f3054; }

.es-web-tool__flex-container {
  display: flex;
  flex-direction: column; }

.es-web-tool__outer-wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100vh; }

.es-web-tool__header {
  align-items: center;
  background: #1E1E1E;
  color: #FFFFFF;
  display: flex;
  flex: none;
  height: 92px;
  justify-content: space-between;
  padding: 26px; }

.es-web-tool__configurator {
  align-items: stretch;
  display: flex;
  max-width: 100vw;
  min-height: 100vh; }
  .es-code-toggle--visible .es-web-tool__configurator {
    display: none; }

.es-web-tool__sidebar {
  background: #F3F1F1;
  flex: 0 0 320px; }

.es-web-tool__title {
  align-items: center;
  display: flex;
  font-size: 26px;
  font-weight: 300;
  margin: 0;
  padding: 26px;
  padding-bottom: 0; }

.es-web-tool__title-logo {
  fill: #000000;
  height: 30px;
  margin-right: 13px;
  width: 30px; }

.es-web-tool__title-text {
  border-left: solid 1px #000000;
  display: block;
  padding-left: 12px;
  position: relative;
  top: -1px; }

.es-web-tool__external-link--twitter {
  margin-left: auto; }

.es-web-tool__external-link {
  align-items: center;
  border-radius: 4px;
  color: #1E62AB;
  display: inline-flex;
  font-weight: 300;
  line-height: 1;
  text-decoration: none; }
  .es-web-tool__external-link:hover {
    text-decoration: underline; }

.es-web-tool__external-link-logo {
  fill: #1E62AB;
  height: 20px;
  margin-right: 4px;
  width: 20px; }

.es-button {
  align-items: center;
  background: #1E62AB;
  border: 0;
  border-radius: 4px;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-flex;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 400;
  justify-content: center;
  max-height: 35px;
  padding: 8px 15px;
  text-align: center;
  text-decoration: none; }
  .es-button:hover {
    background: #0f3054;
    color: #FFFFFF;
    text-decoration: none; }

.es-code-toggle {
  display: inline-block; }

.es-button__icon {
  fill: #FFFFFF; }

.es-web-tool__results {
  box-shadow: -3px 0 3px rgba(0, 0, 0, 0.15);
  flex: 1;
  max-width: calc(100vw - 310px);
  padding: 32px 0 32px 32px; }

.es-web-tool__sidebar-actions {
  padding: 0 26px 26px; }

.es-web-tool__sidebar-ctas {
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px; }
  .es-web-tool__sidebar-ctas .es-button {
    margin-bottom: 15px;
    width: 100%; }

.es-web-tool__external-links-wrap {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-bottom: 32px; }

.es-web-tool__external-link-separator {
  background: #4D4D4D;
  border-radius: 50%;
  display: inline-flex;
  height: 6px;
  margin: 0 8px;
  width: 6px; }

.es-web-tool__legal {
  font-size: 14px;
  margin: 0;
  text-align: center; }
