select {
  padding:5px;
  content: '\f078';
  border-radius: 10px;
  border: 2px solid #525252;
  background: #181818;
  color: #818181;
  width:100%;
  -webkit-appearance: none;
  height:47px;
}

.box {
  background: none !important;
  background-color: none !important; 
  white-space: nowrap;
  position: flex;
  margin-top: 0px !important;
  margin-right: 5px;
}

.box::before {
  content: "\f078";
  font-family: FontAwesome;
  position: absolute;
  top: 7px;
  right: 6px;
  width: 35px;
  height: 73%;
  text-align: center;
  font-size: 22px;
  line-height: 35px;
  color: #FFFFFF;
  background-color: #7BB957;
  border-radius: 5px;
  pointer-events: none;
  margin-top: 0px;
}

.boxCurva {
  background: none !important;
  background-color: none !important; 
  white-space: nowrap;
  position: relative;
  margin-top: 0px !important;
  margin-right: 5px;
  height: 3rem;
}

.boxCurva::after {
  content: "\f078";
  font-family: FontAwesome;
  position: absolute;
  top: 8px;
  right: 44px;
  width: 13%;
  height: 77%;
  text-align: center;
  font-size: 22px;
  line-height: 35px;
  color: #FFFFFF;
  background-color: #7BB957;
  border-radius: 5px;
  pointer-events: none;
  margin-top: 0px;
}



.box2 {
  margin-top: 40px;
  background: none !important;
  background-color: none !important; 
  white-space: nowrap;
}

.controladoria-select md-select-value{
  color: #ffffff;
  border-color: #ffffff;
}

.md-select-value span{
  color: #ffffff;
  border-color: #ffffff;
}

.container-controladoria{
  /*width: 30%;*/
  margin-left: 50px;
  margin-top: 30px;
  font-size: 20px;
  white-space: nowrap;
}

.container-controladoria md-input-container{
  width: 100%;
}

.selectControl{
  /*background-color: #0b1e22;
  color: #ffffff;
  border: 0px;
  border-bottom: 1px solid;
  width: 100%;
  height: auto;*/
}

.table_button{
  background-color: transparent; 
  border-color: transparent; 
  color: white; 
  font-weight: bolder;
  position: relative;
}

.text-cbot {
  font-weight: bold;
  background-color: #ea6f24;
  padding: 2px;
  color: #fff;
  border-radius: 4px;
  min-width: 60px;
}

.text-basis {
  font-weight: bold;
  background-color: #0072bc;
  padding: 2px;
  color: #fff;
  border-radius: 4px;
  min-width: 60px;
}

.text-dolar {
  font-weight: bold;
  background-color: #66bc46;
  padding: 2px;
  color: #fff;
  border-radius: 4px;
  min-width: 60px;
}

.button-top-frame{
  background-color: #7BB957;
  border: 1px grey solid;
  height: 30px;
  width: 100px;
  color: white;
}

.button-top-frame-disabled{
  background-color: #181818 !important;
  color: white !important;
}

#progress {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  width:200px;
}


@keyframes tonext {
  75% {
    left: 0;
  }
  95% {
    left: 100%;
  }
  98% {
    left: 100%;
  }
  99% {
    left: 0;
  }
}

@keyframes tostart {
  75% {
    left: 0;
  }
  95% {
    left: -300%;
  }
  98% {
    left: -300%;
  }
  99% {
    left: 0;
  }
}

@keyframes snap {
  96% {
    scroll-snap-align: center;
  }
  97% {
    scroll-snap-align: none;
  }
  99% {
    scroll-snap-align: none;
  }
  100% {
    scroll-snap-align: center;
  }
}


ol, li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.carousel {
  position: relative;
  
  filter: drop-shadow(0 0 10px #0003);
  perspective: 100px;
  z-index: 99;
  width: 120px;
  top:22px;
  left:25px;
}

.carousel__viewport {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  overflow-x: scroll;
  counter-reset: item;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.carousel__slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  background-color: #f99;
  counter-increment: item;
}

.carousel__slide:nth-child(even) {
  background-color: #99f;
}

.carousel__slide:before {
  content: counter(item);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%,-40%,70px);
  color: #fff;
  font-size: 2em;
}

.carousel__snapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  scroll-snap-align: center;
}

@media (hover: hover) {
  .carousel__snapper {
    animation-name: tonext, snap;
    animation-timing-function: ease;
    animation-duration: 4s;
    animation-iteration-count: infinite;
  }

  .carousel__slide:last-child .carousel__snapper {
    animation-name: tostart, snap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .carousel__snapper {
    animation-name: none;
  }
}

.carousel:hover .carousel__snapper,
.carousel:focus-within .carousel__snapper {
  animation-name: none;
}

.carousel__navigation {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
}

.carousel__navigation-list,
.carousel__navigation-item {
  display: inline-block;
}

.carousel__navigation-button {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  background-color: #333;
  background-clip: content-box;
  border: 0.25rem solid transparent;
  border-radius: 50%;
  font-size: 0;
  transition: transform 0.1s;
}

.carousel::before,
.carousel::after,
.carousel__prev,
.carousel__next {
  position: absolute;
  top: 0;
  margin-top: 37.5%;
  width: 4rem;
  height: 4rem;
  transform: translateY(-50%);
  border-radius: 50%;
  font-size: 0;
  outline: 0;
}

.carousel::before,
.carousel__prev {
  left: -1rem;
}

.carousel::after,
.carousel__next {
  right: -1rem;
}

.carousel::before,
.carousel::after {
  content: '';
  z-index: 1;
  background-color: #333;
  background-size: 1.5rem 1.5rem;
  background-repeat: no-repeat;
  background-position: center center;
  color: #fff;
  font-size: 2.5rem;
  line-height: 4rem;
  text-align: center;
  pointer-events: none;
}
/*
.carousel::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='0,50 80,100 80,0' fill='%23fff'/%3E%3C/svg%3E");
}

.carousel::after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='100,50 20,100 20,0' fill='%23fff'/%3E%3C/svg%3E");
}*/


md-progress-circular .md-spinner-wrapper .md-inner .md-left .md-half-circle {
  left: 0;
  border-right-color: rgba(0,0,0,.85);
}

md-progress-circular.md-default-theme path, md-progress-circular path {
  stroke:rgb(150,90,102);
  }

.my-circular-progress svg path { stroke: green; }

.my-circular-progress {
  color: white;
  border-color: rgba(0,0,0,.85);

  stroke: green; 
}


.player {
  width: 120px;
  height: 120px;
  background: #07191d;
  position: relative;
  border-radius: 50%;
  overflow: visible;
  margin: 80px auto;
}

.player:hover {
  opacity: .8;
}

.progress {
  background-color: transparent !important;
}
.left-side {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 50%;    
  border: 8px solid #061417;
  border-left-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(45deg);
}

.left-side.fill {
  border-color: transparent;
  border-left-color: #ea6f24;
  border-bottom-color: #ea6f24;
}

.right-side {
  transform: rotate(45deg);
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 50%;    
  border: 8px solid #ea6f24;
  border-left-color: #061417;

  border-bottom-color: #061417;
}

.player-text {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
color: #ea6f24;
font-weight: 700;
font-size: 20px;
}

.player-title {
  position: absolute;
  left: 0; right: 0;
  top: calc(50% + 55px);
  text-align: center;
  color: #999;
}

.progress-bar-level{
  display: flex;
  justify-content: center;
  align-self: center;
}

.md-progress-linear.md-default-theme.md-dollar .md-container, md-progress-linear.md-dollar .md-container{
  background-color: rgba(0,0,0,.2);
  height: 18px;
  border-radius: 10px;
}

.md-progress-linear.md-default-theme.md-dollar .md-bar, md-progress-linear.md-dollar .md-bar{
  background-color: rgb(102, 188, 70);
  height: 18px;
  border-radius: 10px;
}

.mddollar.md-progress-linear.md-default-theme.md-cbot .md-container, md-progress-linear.md-cbot .md-container{
  background-color: rgba(0,0,0,.2);
  height: 18px;
  border-radius: 10px;
}
.mddollar.md-progress-linear.md-default-theme.md-cbot .md-bar, md-progress-linear.md-cbot .md-bar{
  background-color: rgb(234, 111, 36);
  height: 18px;
  border-radius: 10px;
}

.mddollar.md-progress-linear.md-default-theme.md-basis .md-container, md-progress-linear.md-basis .md-container{
  background-color: rgba(0,0,0,.2);
  height: 18px;
  border-radius: 10px;
}
.mddollar.md-progress-linear.md-default-theme.md-basis .md-bar, md-progress-linear.md-basis .md-bar{
  background-color: rgb(0, 114, 188);
  height: 18px;
  border-radius: 10px;
}



.tooltipTeste {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted white; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltipTeste .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
 
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltipTeste:hover .tooltiptext {
  visibility: visible;
}