
.period-selector {
  position: relative;
  width: auto;
  cursor: pointer;
}

.period-selector .period-selector-menu {
  display: flex;
  align-items: center;
  border-radius: 8px;
  border: 1px solid #1079c5;
  color: #1079c5;
  padding: 0 5px;
  width:140px;
  min-height: 30px;
  justify-content: space-between;
}

.period-selector .period-selector-menu .icon {
  width: 12px;
  height: 10px;
  background-repeat: no-repeat;
  background-image: url(../../i/newUI/buttons-sprite.svg); /*arrows.svg);*/
  background-position: -148px;
  margin-left: 10px;
  transition: transform 0.2s ease-in-out;
}

.period-selector .period-selector-menu .icon.expanded {
    transform: rotate(180deg);
}

.period-selector .dropdown {
  position: absolute;
  background: white;
  border-radius: 8px;
  border: 1px solid #1079c5;
  color: #1079c5;
  top: 40px;
  left: 0;
  width: 150px;
  z-index: 1000;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3) !important;
}

.period-selector .dropdown:after {
    border-color: #fff transparent;
    border-style: solid;
    border-width: 0 6px 6px 6px;
    bottom: 100%;
    content: "";
    height: 0;
    position: absolute;
    left: 15px;
    width: 0;
}

.period-selector .period-option {
  padding: 8px 15px;
  cursor: pointer;
  border-radius: 8px;
}
.period-selector .period-option.selected {
  background-color: #f0f0f0;
}

.period-selector .period-option:hover {
  background-color: #cbe3f1;
}