@media only screen and (max-width: 1500px) {
  .container:not(.contextual-region .container) {
    width: calc(100% - 50px) !important;
    max-width: calc(100% - 50px) !important;
    margin-left: 25px;
    margin-right: 25px;
  }
}
@media only screen and (max-width: 576px) {
  .container:not(.contextual-region .container) {
    width: 100% !important;
    max-width: 100% !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
}
.select-box {
  position: relative;
  width: 250px;
  height: 40px;
  margin-left: auto;
  cursor: pointer;
  border-bottom: 2px solid #f2f2f2;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  user-select: none;
}

.select-box.active {
  border-color: #009fc3;
}

.select-box.active span::after {
  transform: rotate(180deg);
}

.select-box span {
  display: block;
  line-height: 40px;
  padding-left: 25px;
  font-weight: 700;
}

.select-box span::after {
  content: "";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.select-box ul {
  width: 100%;
  background: #ffffff;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
  padding: 0;
  margin: 0;
  box-shadow: 0px 0px 40px 0px rgba(15, 88, 105, 0.06);
  z-index: 11;
  display: none;
}

.select-box ul li {
  position: relative;
  padding: 5px 25px;
  list-style: none;
  font-size: 14px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.select-box ul li::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(45deg, transparent, #ecf0f1, transparent);
}

.select-box ul li:hover {
  background: #f8f8f8;
}

.select-box-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 25px auto;
  display: none;
}

/*# sourceMappingURL=text.css.map */
