* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family:  "roboto", sans-serif;
}

select {
  display: none!important;
  opacity: 0;
  position: absolute;
  height: 1px;
  width: 1px;
}

.right_text {
  max-width: 300px;
  position: relative;
  margin: 50px auto;
}

.custom-select--show .custom-select__current::after {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
  top: 40%;
}

.custom-select--show .custom-select__list {
  margin-top: 5px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  color: #3180C2;
}

.custom-select__current {
  width: 100%;
  border: 1px solid #ccc;
  padding: 10px;
  padding-right: 1.5rem;
  border-radius: 4px;
  background: #94e6ff;
  position: relative;
  cursor: pointer;
  -webkit-box-shadow: 0 0 5px 3px rgba(204, 204, 204, 0.2);
          box-shadow: 0 0 5px 3px rgba(204, 204, 204, 0.2);
}
.control-group:first-child {
	height: 40px!important;
}
.custom-select__current {
  border-radius: 6px;
  background: #3180C2;
  color: #fff;
  width: 242px;
  padding-top: 8px;
  padding-bottom: 8px;
}


.jq_feed_questions .custom-select__current, .jq_feed_questions .custom-select--show .custom-select__list {
  width: 3.5rem;
  margin-top: .5rem;
}


.jq_feed_questions .custom-select__item {
  padding: 2px 10px;
}

.custom-select__current:focus {
  -webkit-box-shadow: 0 3px 3px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 3px 2px rgba(0, 0, 0, 0.2);
}

.custom-select__current::after {
  content: '';
  -webkit-transition: all .25s ease;
  -o-transition: all .25s ease;
  transition: all .25s ease;
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #000 transparent transparent transparent;
}
.custom-select__current::after {
	border-color: #fff transparent transparent transparent;
}
.custom-select__list {
  width: auto;
  position: absolute;
  z-index: 2;
  overflow: hidden;
  border: 1px solid #ccc;
  margin-top: 5px;
  border-radius: 3px;
  max-height: 200px;
  overflow-y: auto;
  margin-top: 20px;
  opacity: 0;
  visibility: hiden;
  pointer-events: none;
  -webkit-transition: all .25s ease;
  -o-transition: all .25s ease;
  transition: all .25s ease;
}
.custom-select__list {
	width: 217.8px;
	border-radius: 6px;
}

.custom-select__item {
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
  border: none;
  display: inline-block;
  width: 100%!important;
  padding-bottom: 5px;
}

.custom-select__item:first-child {
	display: none;
}

.custom-select__item:hover, .custom-select__item:focus {
	background-color: #145584;
	color: #fff;
}

.custom-scrollbar::-webkit-scrollbar {
  width: 2px!important;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background-color: #f8f9fa;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  border: 2px solid #f8f9fa;
  background-color: #ccc;
  border-radius: 10px;
}

.custom-scrollbar {
	-ms-overflow-style: none;  /* IE 10+ */
    scrollbar-width: thin; /* Firefox */
	overflow: auto;
}

::-webkit-scrollbar { /* chrome based */
    width: 2px;  /* ширина scrollbar'a */
    background: transparent;  /* опционально */
}