.cm-container {
  position: sticky;
    /* width: 25%; */
    /* height: 100vh; */
    /* border: solid 2px #4bd187; */
    -khtml-border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    box-sizing: border-box;
    height: 100vh;
    /* float: left; */
    margin-left: -8%;
    margin-top: -40px;

}
.cm-container .cm-items {
  padding: 0;
  margin: 0;
  position: absolute;
  width: 100%;
  height: auto;
  top: calc(100vh / 2);
  box-sizing: border-box;
}
.cm-container .cm-items .cm-item {
  position: absolute;
  list-style: none;
  width: 130px;
  box-sizing: border-box;
  color: #fff;
  -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;
  line-height: 16px;
  font-size: 14px;
}
.cm-container .cm-items .cm-item.selected {
  display: block !important;
}
.cm-container .cm-items .cm-item span{
  font-size: 26px;
  -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;display: block;
  line-height: 16px;
  margin-bottom: 5px;
}.cm-container .cm-items .cm-item span img, .cm-container .cm-items .cm-item.selected span img{
  width: 24px;
  display: inline-block;
}
.cm-container .cm-items .cm-item a {
  position: relative;
  text-decoration: none;
  color: #fff;
  line-height: 16px;
  font-size: 14px;
}
.cm-container .cm-items .cm-item:hover, .cm-container .cm-items .cm-item.selected:hover, .cm-container .cm-items .cm-item.selected a {
  color: #FF1F3E;
  /* font-weight: bold; */
}
/*.cm-container .cm-items .cm-item:hover span,*/.cm-container .cm-selected-container .cm-selected-label span > span{
  font-size: 32px;
}
.cm-container .cm-selected-container .cm-selected-label span > span img{
  width: 32px;
  margin-bottom: 5px;
  display: inline-block;
}
.cm-container .cm-selected-container {
  position: absolute;
  right: -1%;
  top: 318px;
  text-align: center;
  padding: 10px;
  display: none;
  /* box-shadow: 0 0 10px rgb(0 0 0 / 10%); */
  box-sizing: border-box;
}
.cm-container .cm-selected-container .cm-selected-label {
    width: 120px;
    /* overflow: hidden; */
    color: #FF1F3E;
    font-weight: bold;
    /* font-size: 85%; */
    box-sizing: border-box;
    position: relative;
}

.cm-container .cm-selected-container .cm-selected-label span {
  display: table-cell;
  vertical-align: middle;
  height: inherit;
  line-height: 16px;
  width: inherit;
}
.cm-container .cm-selected-container .cm-selected-label > span:after, .cm-container .cm-items .cm-item.selected:after{
  content: '';
	position: absolute;
	left: calc(50% - 24px);
	bottom: -9px;
  width: 48px;
	border-bottom: solid 3px #fff;
	animation: border_anim 8s linear forwards;
}
.cm-container .cm-selected-container .cm-selected-label > span:before, .cm-container .cm-items .cm-item.selected:before{
  content: '';
	position: absolute;
	left: calc(50% - 24px);
	bottom: -8.5px;
	width: 0;
  width: 48px;
	border-bottom: solid 1px rgba(255, 255, 255, 0.5);
}
@keyframes border_anim {
	0%{
		width: 0%;
	}
	100%{
		width: 48px;
	}
}
.cm-container .cm-selected-container .cm-button {
  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;
}
@media only screen and (max-width: 1024px) {
  .menu-verticle{
    width: auto !important;
    float: none !important;
    box-shadow: 0 3px 4px rgb(0 0 0 / 70%);
    overflow: auto;
  }
  .cm-container{
    margin-left: 0;
    position: inherit;
    height: auto;
    width: auto;
    float: none;
  }
  .cm-container .cm-items{
    position: inherit !important;
    left: inherit !important;
    top: inherit !important;
    overflow: auto;
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-end;
  }
  .cm-container .cm-items .cm-item{
    display: inline-block !important;
    position: inherit !important;
    top: inherit !important;
    left: inherit !important;
    white-space: nowrap;
    width: auto;
    padding: 15px 25px;
  }
  .cm-container .cm-items .cm-item.selected{
    display: inline-block !important;
  }
  .cm-container .cm-selected-container{
    display: none !important;
  }
}