.img-zoom {
  transition: all 300ms ease-in 0s;
  transform: scale(1.1);
  filter: progid:DXImageTransform.Microsoft.Matrix(M11=1.5, M12=0, M21=0, M22=1.5, SizingMethod="auto expand");
}

.SumoSelect p {
  margin: 0;
}

.SumoSelect {
  width: 100%;
}

.SelectBox {
  padding: 5px 8px;
}

.sumoStopScroll {
  overflow: hidden;
}

/* Filtering style */
.SumoSelect .hidden {
  display: none;
}

.SumoSelect .search-txt {
  display: none;
  outline: none;
}

.SumoSelect .no-match {
  display: none;
  padding: 6px;
}

.SumoSelect.open .search-txt {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 5px 8px;
  border: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 5px;
}

.SumoSelect.open > .search > span, .SumoSelect.open > .search > label {
  visibility: hidden;
}

/*this is applied on that hidden select. DO NOT USE display:none; or visiblity:hidden; and Do not override any of these properties. */
.SelectClass, .SumoUnder {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  border: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
}

.SelectClass {
  z-index: 1;
}

.SumoSelect > .optWrapper > .options li.opt label, .SumoSelect > .CaptionCont, .SumoSelect .select-all > label {
  user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
}

.SumoSelect {
  display: inline-block;
  position: relative;
  outline: none;
}

.SumoSelect:focus > .CaptionCont, .SumoSelect:hover > .CaptionCont, .SumoSelect.open > .CaptionCont {
  box-shadow: 0 0 2px #7799D0;
  border-color: #7799D0;
}

.SumoSelect > .CaptionCont {
  position: relative;
  min-height: 14px;
  background-color: #fff;
  border-radius: 2px;
  margin: 0;
}

.SumoSelect > .CaptionCont > span {
  display: block;
  padding-right: 30px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  cursor: default;
}

/*placeholder style*/
.SumoSelect > .CaptionCont > span.placeholder {
  color: #ccc;
  font-style: italic;
}

.SumoSelect > .CaptionCont > label {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 30px;
}

.SumoSelect > .CaptionCont > label > i {
  background-position: center center;
  width: 16px;
  height: 16px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-repeat: no-repeat;
  opacity: 0.8;
}

.SumoSelect > .optWrapper {
  display: none;
  z-index: 1000;
  top: 30px;
  width: 100%;
  position: absolute;
  left: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
  box-shadow: 2px 3px 3px rgba(0, 0, 0, 0.11);
  border-radius: 3px;
  overflow: hidden;
}

.SumoSelect.open > .optWrapper {
  display: block;
}

.SumoSelect.open > .optWrapper.up {
  top: auto;
  bottom: 100%;
  margin-bottom: 5px;
}

.SumoSelect > .optWrapper ul {
  list-style: none;
  display: block;
  padding: 0;
  margin: 0;
  overflow: auto;
}

.SumoSelect > .optWrapper > .options {
  border-radius: 2px;
  position: relative;
  /*Set the height of pop up here (only for desktop mode)*/
  max-height: 250px;
  /*height*/
}

.SumoSelect > .optWrapper.okCancelInMulti > .options {
  border-radius: 2px 2px 0 0;
}

.SumoSelect > .optWrapper.selall > .options {
  border-radius: 0 0 2px 2px;
}

.SumoSelect > .optWrapper.selall.okCancelInMulti > .options {
  border-radius: 0;
}

.SumoSelect > .optWrapper > .options li.group.disabled > label {
  opacity: 0.5;
}

.SumoSelect > .optWrapper > .options li ul li.opt {
  padding-left: 22px;
}

.SumoSelect > .optWrapper.multiple > .options li ul li.opt {
  padding-left: 50px;
}

.SumoSelect > .optWrapper.isFloating > .options {
  max-height: 100%;
  box-shadow: 0 0 100px #595959;
}

.SumoSelect > .optWrapper > .options li.opt {
  padding: 6px 6px;
  position: relative;
  border-bottom: 1px solid #f5f5f5;
}

.SumoSelect > .optWrapper > .options > li.opt:first-child {
  border-radius: 2px 2px 0 0;
}

.SumoSelect > .optWrapper.selall > .options > li.opt:first-child {
  border-radius: 0;
}

.SumoSelect > .optWrapper > .options > li.opt:last-child {
  border-radius: 0 0 2px 2px;
  border-bottom: none;
}

.SumoSelect > .optWrapper.okCancelInMulti > .options > li.opt:last-child {
  border-radius: 0;
}

.SumoSelect > .optWrapper > .options li.opt:hover {
  background-color: #E4E4E4;
}

.SumoSelect > .optWrapper > .options li.opt.sel, .SumoSelect .select-all.sel {
  background-color: #a1c0e4;
}

.SumoSelect > .optWrapper > .options li label {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  cursor: pointer;
}

.SumoSelect > .optWrapper > .options li span {
  display: none;
}

.SumoSelect > .optWrapper > .options li.group > label {
  cursor: default;
  padding: 8px 6px;
  font-weight: bold;
}

/*Floating styles*/
.SumoSelect > .optWrapper.isFloating {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 90%;
  bottom: 0;
  margin: auto;
  max-height: 90%;
}

/*disabled state*/
.SumoSelect > .optWrapper > .options li.opt.disabled {
  background-color: inherit;
  pointer-events: none;
}

.SumoSelect > .optWrapper > .options li.opt.disabled * {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; /* IE 5-7 */
  filter: alpha(opacity=50); /* Netscape */
  -moz-opacity: 0.5; /* Safari 1.x */
  -khtml-opacity: 0.5; /* Good browsers */
  opacity: 0.5;
}

/*styling for multiple select*/
.SumoSelect > .optWrapper.multiple > .options li.opt {
  padding-left: 35px;
  cursor: pointer;
}

.SumoSelect > .optWrapper.multiple > .options li.opt span,
.SumoSelect .select-all > span {
  position: absolute;
  display: block;
  width: 30px;
  top: 0;
  bottom: 0;
  margin-left: -35px;
}

.SumoSelect > .optWrapper.multiple > .options li.opt span i,
.SumoSelect .select-all > span i {
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 14px;
  height: 14px;
  border: 1px solid #AEAEAE;
  border-radius: 2px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.15);
  background-color: #fff;
}

.SumoSelect > .optWrapper > .MultiControls {
  display: none;
  border-top: 1px solid #ddd;
  background-color: #fff;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.13);
  border-radius: 0 0 3px 3px;
}

.SumoSelect > .optWrapper.multiple.isFloating > .MultiControls {
  display: block;
  margin-top: 5px;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.SumoSelect > .optWrapper.multiple.okCancelInMulti > .MultiControls {
  display: block;
}

.SumoSelect > .optWrapper.multiple.okCancelInMulti > .MultiControls > p {
  padding: 6px;
}

.SumoSelect > .optWrapper.multiple.okCancelInMulti > .MultiControls > p:focus {
  box-shadow: 0 0 2px #a1c0e4;
  border-color: #a1c0e4;
  outline: none;
  background-color: #a1c0e4;
}

.SumoSelect > .optWrapper.multiple > .MultiControls > p {
  display: inline-block;
  cursor: pointer;
  padding: 12px;
  width: 50%;
  box-sizing: border-box;
  text-align: center;
}

.SumoSelect > .optWrapper.multiple > .MultiControls > p:hover {
  background-color: #f1f1f1;
}

.SumoSelect > .optWrapper.multiple > .MultiControls > p.btnOk {
  border-right: 1px solid #DBDBDB;
  border-radius: 0 0 0 3px;
}

.SumoSelect > .optWrapper.multiple > .MultiControls > p.btnCancel {
  border-radius: 0 0 3px 0;
}

/*styling for select on popup mode*/
.SumoSelect > .optWrapper.isFloating > .options li.opt {
  padding: 12px 6px;
}

/*styling for only multiple select on popup mode*/
.SumoSelect > .optWrapper.multiple.isFloating > .options li.opt {
  padding-left: 35px;
}

.SumoSelect > .optWrapper.multiple.isFloating {
  padding-bottom: 43px;
}

.SumoSelect > .optWrapper.multiple > .options li.opt.selected span i,
.SumoSelect .select-all.selected > span i,
.SumoSelect .select-all.partial > span i {
  background-color: rgb(17, 169, 17);
  box-shadow: none;
  border-color: transparent;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAGCAYAAAD+Bd/7AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNXG14zYAAABMSURBVAiZfc0xDkAAFIPhd2Kr1WRjcAExuIgzGUTIZ/AkImjSofnbNBAfHvzAHjOKNzhiQ42IDFXCDivaaxAJd0xYshT3QqBxqnxeHvhunpu23xnmAAAAAElFTkSuQmCC");
  background-repeat: no-repeat;
  background-position: center center;
}

/*disabled state*/
.SumoSelect.disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.SumoSelect.disabled > .CaptionCont {
  border-color: #ccc;
  box-shadow: none;
}

/**Select all button**/
.SumoSelect .select-all {
  border-radius: 3px 3px 0 0;
  position: relative;
  border-bottom: 1px solid #ddd;
  background-color: #fff;
  padding: 8px 0 3px 35px;
  height: 20px;
  cursor: pointer;
}

.SumoSelect .select-all > label, .SumoSelect .select-all > span i {
  cursor: pointer;
}

.SumoSelect .select-all.partial > span i {
  background-color: #ccc;
}

/*styling for optgroups*/
.SumoSelect > .optWrapper > .options li.optGroup {
  padding-left: 5px;
  text-decoration: underline;
}

.select2-container {
  box-sizing: border-box;
  width: 100%;
  display: inline-block;
  color: #444;
  font-weight: 500;
  margin: 0;
  font-size: 15px;
  font-size: 0.9375em;
  font-size: 0.9375rem;
  position: relative;
  vertical-align: middle;
  height: 80px;
  border-radius: 0px;
  background-color: white;
}
@media screen and (min-width: 1025px) {
  .select2-container {
    width: auto;
  }
}

.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 80px;
  user-select: none;
  -webkit-user-select: none;
}
.select2-container .select2-selection--single:focus {
  outline: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding: 28px 23px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 22px;
  height: 100%;
  font-size: 15px;
  font-size: 0.9375em;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #737373;
}

.select2-container .select2-selection--single .select2-selection__clear {
  position: relative;
}

.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline-block;
  overflow: hidden;
  padding-left: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-search--inline {
  float: left;
}

.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  padding: 0;
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-dropdown {
  background: white;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  max-height: 320px;
  overflow-y: auto;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
  -webkit-box-shadow: 0px 3px 4px 0px rgba(124, 134, 161, 0.3);
  -moz-box-shadow: 0px 3px 4px 0px rgba(124, 134, 161, 0.3);
  box-shadow: 0px 3px 4px 0px rgba(124, 134, 161, 0.3);
}

.select2-results {
  display: block;
}

.select2-results__options {
  list-style: none;
  margin: 0;
}

.select2-results__option {
  padding: 6px;
  user-select: none;
  -webkit-user-select: none;
  padding: 5px 16px 3px;
  font-size: 15px;
  font-size: 0.9375em;
  font-size: 0.9375rem;
  color: #737373;
  line-height: 24px;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  padding: 7px;
}

.select2-results__option[aria-selected] {
  cursor: pointer;
}

.select2-container--open .select2-dropdown {
  left: 0;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  top: 1px;
}

.select2-search--dropdown {
  display: block;
  padding: 4px;
}

.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
  display: none;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.select2-container--default .select2-selection--single {
  border: none;
  border-radius: 0;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  position: relative;
  top: 0;
  right: 20px;
  width: 40px;
  height: 100%;
  background: transparent url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjxzdmcgd2lkdGg9IjhweCIgaGVpZ2h0PSI1cHgiIHZpZXdCb3g9IjAgMCA4IDUiIHZlcnNpb249IjEuMSIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+DQogIDxwYXRoIGQ9Ik0wLjA5NDY0MDYgMEMwLjA1NjUyMzQgMCAwLjAyMjE1NTkgMC4wMjc0NTQ3IDAuMDA3MTU3MjYgMC4wNzE2OTAyQy0wLjAwNzgzOTc0IDAuMTE1OTI0IDAuMDAxNTMzNDMgMC4xNjQ3MzQgMC4wMjc3Nzg3IDAuMTk2NzY1TDMuOTM0NTIgNC45NjQ5MkMzLjk1MzI2IDQuOTg3OCAzLjk3ODI2IDUgNC4wMDA3NSA1QzQuMDIzMjUgNSA0LjA1MDEyIDQuOTg4NTYgNC4wNjY5OSA0Ljk2NDkyTDcuOTcxODEgMC4xOTkxMDhDNy45OTg2OCAwLjE2ODYwMSA4LjAwODA1IDAuMTE4MjY3IDcuOTkyNDMgMC4wNzE3NDQ5QzcuOTc3NDMgMC4wMjc1MTEzIDcuOTQzMDcgNS40NjY3MmUtMDUgNy45MDQ5NSA1LjQ2NjcyZS0wNUwwLjA5NDY0MDYgMFoiIGlkPSJQYXRoIiBmaWxsPSIjNTQ1NDU0IiBzdHJva2U9Im5vbmUiIC8+DQo8L3N2Zz4=") center center no-repeat;
  background-size: 9px 5px;
  display: block;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 0;
  cursor: text;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 5px;
  width: 100%;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
  list-style: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
  color: #999;
  margin-top: 5px;
  float: left;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-top: 5px;
  margin-right: 10px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 0;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #999;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #333;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid #333 1px;
  outline: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid gray;
  margin: 0 0 3px 0;
  box-shadow: none;
  border-radius: 0;
}

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 100% !important;
  padding-bottom: 10px;
}

.select2-container--default .select2-results__option[role=group] {
  padding: 0;
}

.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999;
}

.select2-container--default .select2-results__option[aria-selected=true] {
  background: #fff;
  color: #333;
}

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #fff;
  color: #333;
}

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 0;
  outline: 0;
  background-image: -webkit-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: -o-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic .select2-selection--single:focus {
  border: 1px solid grey;
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #333;
  line-height: 28px;
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-right: 10px;
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
  background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
  background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFCCCCCC", GradientType=0);
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid grey;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-linear-gradient(top, white 0%, #eeeeee 50%);
  background-image: -o-linear-gradient(top, white 0%, #eeeeee 50%);
  background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #eeeeee 50%, white 100%);
  background-image: -o-linear-gradient(top, #eeeeee 50%, white 100%);
  background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFFFFFFF", GradientType=0);
}

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 0;
  cursor: text;
  outline: 0;
}

.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid grey;
}

.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
  list-style: none;
  margin: 0;
  padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 0;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  color: #888;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  float: right;
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid grey;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none;
}

.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent;
}

.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
  border-top: none;
}

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--classic .select2-results__option[role=group] {
  padding: 0;
}

.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey;
}

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: white;
}

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}

.select--outer {
  width: 100%;
  height: 44px;
  background-color: white;
  border-radius: 6px;
  margin: 0 0 10px;
}
.select--outer .searchform--costa {
  background-color: #2196f3;
  color: antiquewhite;
}
.select--outer .SumoSelect {
  height: 44px;
  font-size: 15px;
  font-size: 0.9375em;
  font-size: 0.9375rem;
}
.select--outer .SumoSelect .SelectBox {
  height: 44px;
  border: 1px solid #d2d2d2;
  padding: 7px 8px 7px 20px;
}
.select--outer .SumoSelect > .CaptionCont {
  border-radius: 6px;
}
.select--outer .SumoSelect > .CaptionCont > span.placeholder {
  color: #444;
  font-style: normal;
  cursor: pointer;
}
.select--outer .SumoSelect > .CaptionCont > label > i {
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjxzdmcgd2lkdGg9IjhweCIgaGVpZ2h0PSI0cHgiIHZpZXdCb3g9IjAgMCA4IDQiIGZpbGw9IiMxMjVFOUEiIHZlcnNpb249IjEuMSIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+DQogIDxwYXRoIGQ9Ik0wLjAwMDM5NTkgNC4wMTczOUMwLjAwMzMyNjQ4IDQuMTUzNjkgMC4wNTIxNjgxIDQuMjg0NjEgMC4xMzcxNiA0LjM4MzczTDMuMTM4MDEgNy44MzE2OUMzLjMzMDQ1IDguMDUwNDEgMy42NDY5NCA4LjA1Njg4IDMuODQ2MjIgNy44NDU3QzQuMDQ1NTEgNy42MzM5NiA0LjA1MTg1IDcuMjg0ODYgMy44NjA4OCA3LjA2NDUxTDEuMTkyMTIgNC4wMDAxTDMuODYwODggMC45MzU2OTJDNC4wNTE4NCAwLjcxNTMzOSA0LjA0NTUgMC4zNjU3MDIgMy44NDYyMiAwLjE1NDUwOEMzLjY0Njk0IC0wLjA1NjY4NjkgMy4zMzA0NSAtMC4wNTA3NTY0IDMuMTM4MDEgMC4xNjg1MTVMMC4xMzcxNiAzLjYxNjQ4QzAuMDQ0MzU5NiAzLjcyNDIyIC0wLjAwNDk2ODEyIDMuODY4NiAwLjAwMDM5NTkgNC4wMTcyOUwwLjAwMDM5NTkgNC4wMTczOVoiIHRyYW5zZm9ybT0ibWF0cml4KC00LjM3MTEzOUUtMDggLTEgMSAtNC4zNzExMzlFLTA4IDAgNCkiIC8+DQo8L3N2Zz4=");
}
.select--outer .SumoSelect > .optWrapper {
  top: 43px;
  border: 1px solid #d2d2d2;
}
.select--outer .SumoSelect > .optWrapper > .options {
  padding-left: 15px;
  padding-right: 15px;
}
.select--outer .SumoSelect > .optWrapper > .options li.opt.searchform--location {
  padding-left: 45px;
}
.select--outer .SumoSelect > .optWrapper > .options li.opt.searchform--costa {
  padding-left: 30px;
}
.select--outer .SumoSelect > .optWrapper > .options li.opt.searchform--costa label {
  text-transform: uppercase;
}
.select--outer .SumoSelect > .optWrapper.multiple > .options li.opt.selected span i {
  background-color: #74c1ff;
}
.select--outer .select2-container {
  height: 44px;
  border: 1px solid #d2d2d2;
  border-radius: 6px;
}
.select--outer .select2-container .select2-selection--single {
  height: 42px;
}
.select--outer .select2-container .select2-selection--single .select2-selection__rendered {
  padding: 9px 20px;
  color: #919191;
  font-weight: 400;
}
.select--outer .select2-container--default .select2-selection--single .select2-selection__arrow b {
  background-image: none;
}

.searchform {
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  padding: 25px 30px 40px;
}
.searchform .searchform__block.heightfix {
  height: 36px;
}
.searchform .searchform__block .btn--default {
  width: 100%;
}
.searchform .searchform__block .btn--default.reset {
  margin-top: 0.5rem;
  background: rgb(245, 243, 243);
  color: #8f4747;
  border: 1px solid #8f4747;
  font-size: 0.8em;
}
.searchform .searchform__block__double {
  display: flex;
  justify-content: space-between;
}
.searchform .searchform__block__double .select--outer {
  width: calc(50% - 5px);
}
.searchform.listing--page {
  padding: 54px 0;
  background-color: #ececec;
  border-radius: 0;
}
.searchform.listing--page form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.searchform.listing--page form .searchform__block {
  width: 100%;
  max-width: 363px;
}
.searchform.listing--page form .searchform__block.first, .searchform.listing--page form .searchform__block.last {
  max-width: 265px;
}
.searchform.listing--page form .searchform__block__double {
  width: 100%;
  order: 1;
}
.searchform.listing--page form .searchform__block.first {
  order: 0;
}
.searchform.listing--page form .searchform__block.second {
  order: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 25px;
}
.searchform.listing--page form .searchform__block.second > .searchform__block {
  display: flex;
  justify-content: space-between;
}
.searchform.listing--page form .searchform__block.second > .searchform__block .select--outer {
  width: calc(50% - 5px);
}
.searchform.listing--page form .searchform__block.last {
  order: 2;
}
.searchform.listing--page form .searchform__block.large {
  order: 3;
  margin: 12px 0 0;
  width: 100%;
  max-width: 840px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}
.searchform.listing--page form .searchform__block.large .select--outer {
  width: calc(25% - 3px);
  margin-right: 6px;
  margin-bottom: 0;
  height: 38px;
}
.searchform.listing--page form .searchform__block.large .select--outer .SumoSelect .SelectBox {
  height: 38px;
  padding: 4px 8px 4px 20px;
}
.searchform.listing--page form .searchform__block.large .checkbox--outer {
  display: flex;
  align-items: center;
}
.searchform.listing--page form .searchform__block.large .checkbox--outer input {
  display: none;
}
.searchform.listing--page form .searchform__block.large .checkbox--outer label {
  margin: 0;
  display: inline-flex;
  align-items: center;
  font-weight: 400;
  white-space: nowrap;
}
.searchform.listing--page form .searchform__block.large .checkbox--outer label span {
  width: 18px;
  height: 18px;
  display: inline-block;
  margin: 0 8px 0 0;
  background-color: white;
  border-radius: 3px;
  border: 1px solid #d2d2d2;
}
.searchform.listing--page form .searchform__block.large .checkbox--outer input[type=checkbox]:checked + label span {
  background: white url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjxzdmcKICAgd2lkdGg9IjExLjU4OTU1MiIKICAgaGVpZ2h0PSI5Ljk5OTk3NDMiCiAgIHZpZXdCb3g9IjAgMCAxMS41ODk1NTIgOS45OTk5NzQzIgogICB2ZXJzaW9uPSIxLjEiCiAgIGlkPSJzdmc4IgogICB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciCiAgIHhtbG5zOnN2Zz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciCiAgIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyIKICAgeG1sbnM6Y2M9Imh0dHA6Ly9jcmVhdGl2ZWNvbW1vbnMub3JnL25zIyIKICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIj4KICA8ZGVmcwogICAgIGlkPSJkZWZzMTIiIC8+CiAgPHRpdGxlCiAgICAgaWQ9InRpdGxlMiI+Q0Y0REEwRUItNEE1OC00NDBGLUE4NDUtNDJFMDc4RjI4MjY2PC90aXRsZT4KICA8ZwogICAgIGlkPSJQYWdlLTEiCiAgICAgc3Ryb2tlPSJub25lIgogICAgIHN0cm9rZS13aWR0aD0iMSIKICAgICBmaWxsPSJub25lIgogICAgIGZpbGwtcnVsZT0iZXZlbm9kZCIKICAgICBzdHJva2UtbGluZWNhcD0icm91bmQiCiAgICAgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIKICAgICB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMC41LDAuNSkiPgogICAgPGcKICAgICAgIGlkPSJGaWNoYS1IRCIKICAgICAgIHRyYW5zZm9ybT0idHJhbnNsYXRlKC01MTUsLTIyNDMpIgogICAgICAgc3Ryb2tlPSIjZTU4YzE5Ij4KICAgICAgPGcKICAgICAgICAgaWQ9IkRldGFpbHMiCiAgICAgICAgIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAsMjA3MykiPgogICAgICAgIDxwb2x5bGluZQogICAgICAgICAgIGlkPSJQYXRoIgogICAgICAgICAgIHBvaW50cz0iNTI2LjU4OTU1MiAxNzAgNTE5LjE3Njg2NiAxNzkgNTE2IDE3NS42MjUiIC8+CiAgICAgIDwvZz4KICAgIDwvZz4KICA8L2c+CiAgPG1ldGFkYXRhCiAgICAgaWQ9Im1ldGFkYXRhODI5Ij4KICAgIDxyZGY6UkRGPgogICAgICA8Y2M6V29yawogICAgICAgICByZGY6YWJvdXQ9IiI+CiAgICAgICAgPGRjOnRpdGxlPkNGNERBMEVCLTRBNTgtNDQwRi1BODQ1LTQyRTA3OEYyODI2NjwvZGM6dGl0bGU+CiAgICAgIDwvY2M6V29yaz4KICAgIDwvcmRmOlJERj4KICA8L21ldGFkYXRhPgo8L3N2Zz4K") center center no-repeat;
}

@media screen and (max-width: 37.4375em) {
  .searchform {
    width: 100%;
    margin: 0 0 1.5em;
  }
  .searchform.listing--page form {
    flex-wrap: wrap;
  }
  .searchform.listing--page form .searchform__block {
    max-width: none;
  }
  .searchform.listing--page form .searchform__block.first, .searchform.listing--page form .searchform__block.last {
    max-width: none;
  }
  .searchform.listing--page form .searchform__block.second {
    margin: 0;
  }
  .searchform.listing--page form .searchform__block.last {
    order: 3;
  }
  .searchform.listing--page form .searchform__block.large {
    order: 2;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 0;
  }
  .searchform.listing--page form .searchform__block.large .select--outer {
    width: calc(50% - 5px);
    margin-right: 0;
  }
  .searchform.listing--page form .searchform__block.large .checkbox--outer {
    width: calc(50% - 5px);
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 37.5em) and (max-width: 50em) {
  .searchform.listing--page form {
    flex-wrap: wrap;
  }
  .searchform.listing--page form .searchform__block {
    max-width: none;
  }
  .searchform.listing--page form .searchform__block.first, .searchform.listing--page form .searchform__block.last {
    max-width: none;
    display: flex;
    justify-content: space-between;
  }
  .searchform.listing--page form .searchform__block.first > *, .searchform.listing--page form .searchform__block.last > * {
    width: calc(50% - 5px);
  }
  .searchform.listing--page form .searchform__block.second {
    margin: 0;
  }
  .searchform.listing--page form .searchform__block.last {
    order: 3;
  }
  .searchform.listing--page form .searchform__block.large {
    order: 2;
    width: 100%;
    max-width: none;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 0;
  }
  .searchform.listing--page form .searchform__block.large .select--outer {
    width: calc(50% - 5px);
    margin-right: 0;
    margin-bottom: 10px;
  }
  .searchform.listing--page form .searchform__block.large .checkbox--outer {
    width: calc(50% - 5px);
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 50em) and (max-width: 74.9375em) {
  .searchform.listing--page form .searchform__block {
    width: calc(25% - 5px);
    max-width: none !important;
  }
  .searchform.listing--page form .searchform__block > .searchform__block {
    width: 100%;
  }
  .searchform.listing--page form .searchform__block.second {
    margin: 0;
    width: calc(50% - 10px);
  }
  .searchform.listing--page form .searchform__block.large {
    width: 74%;
  }
}

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