/**
 * All of the CSS for your admin-specific functionality should be
 * included in this file.
 */
/* Modern sleek tab container */

/* Tabs list */
.aitoce-tabs ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

/* Each tab item */
.aitoce-tabs ul li {
  margin-right: 1rem;
  margin-bottom: 0;
}

/* Tab link */
.aitoce-tabs ul li a {
  display: block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: #fff;
  text-shadow: 1px 1px 3px #000;
  font-weight: 600;
  border-radius: 6px;
  background: #E98C00;
  box-shadow: inset 0 -8px 10px #d58103, 1px 3px 5px #555;
  transition: background 0.3s, color 0.3s;
}

/* Active tab */
.aitoce-tabs ul li.ui-tabs-active a,
.aitoce-tabs ul li.aitoce_active a {
  background: #00955e;
  color: #333;
  text-shadow: none;
  font-weight: bold;
  box-shadow: inset 0 -10px 15px #008252, -1px -3px 1px #008856, 1px 2px 1px #00dd8c;
}

/* Hover state */
.aitoce-tabs ul li a:hover {
  background: #d58103;
  box-shadow: inset  #a46301;
}

.aitoce-tabs ul li.ui-tabs-active a:hover {
  background: #00955e;
  box-shadow: inset 0 -10px 15px #008252, -1px -3px 1px #008856, 1px 3px 1px #00dd8c;
}

/* Tab content area */
.aitoce-tabs>div {
  padding: 0;
}

/***************Tooltip styling ******************/
.ui-tooltip,
.arrow:after {
  background: black;
  border: 2px solid white;
}

.ui-tooltip {
  width: fit-content;
  max-width: 18%;
  padding: 10px 20px;
  color: white;
  border-radius: 8px;
  font: bold 12px "Audiowide", "Helvetica Neue", Sans-Serif;
  text-transform: uppercase;
  box-shadow: 0 0 7px black;
}

.arrow {
  width: 70px;
  height: 16px;
  overflow: hidden;
  position: absolute;
  left: 50%;
  margin-left: -30px;
  bottom: -16px;
}

.arrow.top {
  top: -16px;
  bottom: auto;
}

.arrow.left {
  left: 20%;
}

.arrow:after {
  content: "";
  position: absolute;
  left: 20px;
  top: -20px;
  width: 25px;
  height: 25px;
  box-shadow: 6px 5px 9px -9px black;
  transform: rotate(45deg);
}

.arrow.top:after {
  bottom: -20px;
  top: auto;
}