.wk-select-content {
  position: relative;
  
}

.wk-select {
  border-radius: 16px;
  padding: 0.4rem 1rem;
  gap: 0.6rem;
  cursor: pointer;
}


.wk-select-content .wk-select {
  background-color: #fff !important;
  transition: all 0.3s;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.05);
}

.wk-select-content .wk-select:hover {
  box-shadow: 0px 2px 4px #00000029;
  opacity: 0.9;
}

.wk-select-content.opened .wk-select {
  border-radius: 16px 16px 0px 0px;
  transition: all 0.3s;
  border-bottom: 1px solid;
}

.wk-select-content.opened .icon-seta-baixo {
  transform: rotateZ(180deg);
}

.transition {
  transition: 0.3s all;
}

.wk-select-pannel-options {
  display: flex;
  align-items: start;
  gap: .3rem;
  cursor: pointer;
  padding: 7px 12px;
  
}

.wk-select-pannel-options .wk-select-check {
  margin-top: 3px
}

.wk-select-content.closed .wk-select-pannel {
  min-height: 0;
  display: none;
}

.wk-select-content.opened .wk-select-pannel {
  position: absolute;
  display: flex;
  flex-direction: column;
  z-index: 10;

  background: #FFFFFF;
  box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.05);
  border-radius: 0px 0px 16px 16px;
  width: 100%;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  padding-bottom: 7px;
}

.wk-select-option {
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: #000000;
  margin: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.wk-mt-7px {
  margin-top: 7px;
}