.cm-container {
  position: absolute;
  width: 550px;
  height: 550px;
  border: solid 1px #fff;
  /* left: -440px;*/
  -khtml-border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  box-sizing: border-box;
  z-index: 2;
  top: 50%;
  right: 0%; /* Change left: 0% to right: 0% */
  transform: translate(70%, -50%); /* Change -85% to 85% */
}
.cm-container .cm-items {
  padding: 0;
  margin: 0;
  position: absolute;
  width: 100%;
  height: auto;
  left: 264px;
  top: 264px;
  box-sizing: border-box;
}
.cm-container .cm-items .cm-item {
  position: absolute;
  list-style: none;
  width: 150px;
  box-sizing: border-box;
}
.cm-container .cm-items .cm-item.selected {
  display: none;
}
.cm-container .cm-items .cm-item a {
  position: relative;
  color: #fff;
  padding-left: 30px;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  box-sizing: border-box;
}
.cm-container .cm-items .cm-item a:hover {
  color: #bda68c;
  padding-left: 32px;
}
.cm-container .cm-items .cm-item a:before {
display:none;
  content: '';
  width: 15px;
  height: 15px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #4bd187;
  -khtml-border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}
.cm-container .cm-selected-container {
  position: absolute;
  width: 100px;
  height: 100px;
  /* border: solid 3px #bda68c;
  -khtml-border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%; */
  background-color: transparent;
  left: -10px; /* Change right to left */
  right: auto;
  top: 230px;
  text-align: center;
  padding: 10px;
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
  box-sizing: border-box;
}
.cm-container .cm-selected-container .cm-selected-label {
  height: 74px;
  width: 100px;
  overflow: hidden;
  font-weight: 700;
  color: #bda68c;
  font-size: 85%;
  box-sizing: border-box;
  padding-left: 10px;
}
.cm-container .cm-selected-container .cm-selected-label span {
  display: table-cell;
  vertical-align: middle;
  height: inherit;
  width: inherit;
}
.cm-container .cm-selected-container .cm-selected-label span:before {
  content: '';
  width: 15px;
  height: 15px;
  position: absolute;
  left: 0;
  background-color: #bda68c;
  -khtml-border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}
.cm-container .cm-selected-container .cm-selected-label span a{
  color: #bda68c;
}
.cm-container .cm-selected-container .cm-button {
  display: none;
  position: absolute;
  width: 28px;
  height: 28px;
  font-size: 20px;
  cursor: pointer;
  top: 36px;
  color: #4bd187;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.cm-container .cm-selected-container .cm-button:hover {
  color: #74dba2;
}
.cm-container .cm-selected-container .cm-button.cm-button-prev {
  left: -32px;
}
.cm-container .cm-selected-container .cm-button.cm-button-prev:hover {
  left: -34px;
}
.cm-container .cm-selected-container .cm-button.cm-button-next {
  right: -32px;
}
.cm-container .cm-selected-container .cm-button.cm-button-next:hover {
  right: -34px;
}