.dom {
  padding: 70px;
}

.countrySelecter {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  width: 278px;
  position: relative;
}

@media screen and (max-width: 991px) {
  .countrySelecter {
    width: 200px;
    font-size: 14px;
  }
}

.countrySelecter__main {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 49px;
  border: 1px solid #fff;
  -moz-border-radius: 2px;
       border-radius: 2px;
  padding: 0 15px;
  background: #000000;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  position: relative;
}

@media screen and (max-width: 991px) {
  .countrySelecter__main {
    font-size: 14px;
    height: 32px;
  }
}

.countrySelecter__main:focus {
  border: 3px solid #fff;
}

.countrySelecter__main::after {
  background: url("https://storage-asset.msi.com/event/msiAccessibility/images/arrow.svg") no-repeat center;
  width: 11px;
  height: 8px;
  content: '';
  display: block;
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}

.countrySelecter__main[aria-expanded="true"]::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
     -moz-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.countrySelecter__main::after {
  content: '';
  display: block;
  -moz-background-size: cover;
       background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 12px;
  height: 8px;
}

.countrySelecter__selectbox {
  border: 1px solid #fff;
  width: -moz-calc( 100% - 2px);
  width: calc( 100% - 2px);
  padding: 15px 15px;
  height: 337px;
  max-height: 10em;
  overflow-y: auto;
  overflow-x: hidden;
  position: absolute;
  margin: 0;
  background: rgba(58, 58, 58, 0.75);
}

.countrySelecter__selectbox::-webkit-scrollbar {
  width: 7px;
  background: rgba(58, 58, 58, 0.75);
}

.countrySelecter__selectbox::-webkit-scrollbar-track {
  border-radius: 10px;
}

.countrySelecter__selectbox::-webkit-scrollbar-thumb {
  opacity: 0.1;
  border-radius: 10px;
  background: #9b9b9b;
  -webkit-box-shadow: -2px -2px 2 #000;
          box-shadow: -2px -2px 2 #000;
}

.countrySelecter__selectbox-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 13px 0;
  -moz-border-radius: 2px;
       border-radius: 2px;
}

.countrySelecter__selectbox-item:nth-child(1) {
  padding-top: 0;
}

.countrySelecter .hidden {
  display: none;
}

.countrySelecter [role="listbox"] {
  min-height: 18em;
  padding: 0;
  border: 1px solid #aaa;
}

.countrySelecter [role="option"] {
  display: block;
  padding: 5px 15px;
  position: relative;
  line-height: 1.8em;
  background: rgba(58, 58, 58, 0.75);
  cursor: pointer;
}

.countrySelecter [role="option"]:hover {
  background: rgba(107, 107, 107, 0.75);
}

.countrySelecter [role="option"].focused {
  background: #8D8D8D;
}

.countrySelecter [role="option"][aria-selected="true"]::before {
  content: '';
  position: absolute;
  left: 0.5em;
}

.countrySelecter button[aria-disabled="true"] {
  opacity: 0.5;
}

.countrySelecter__barContainer {
  position: absolute;
  width: 3px;
  height: 295px;
  top: 65px;
  right: 8px;
  -moz-border-radius: 10px;
       border-radius: 10px;
  overflow: hidden;
}

.countrySelecter__barContainer-bar {
  height: 50%;
  width: 100%;
  background-color: #707070;
}
/*# sourceMappingURL=index.css.map */