<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.nice-select {
    cursor: pointer;
    position: relative;
    transition: all .25s;
  }
  
  .nice-select:hover {
    border-color: #dbdbdb;
  }
  
  .nice-select:active, .nice-select.open, .nice-select:focus {
    border-color: #999;
  }
  
  .nice-select:after {
    content: "";
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-40%);
    transform: translateY(-40%);
    right: 15px;
    width: 17px;
    height: 9px;
    transition: transform 0.3s;
    background: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.10183e-08 1.20594L7 8L14 1.20594L12.7575 -1.48167e-08L7 5.58811L1.2425 -1.52132e-07L8.10183e-08 1.20594Z' fill='%23FF0000'/%3E%3C/svg%3E%0A") no-repeat 0 0/17px 9px;
  }

  @media only screen and (max-width: 400px) {

		.select__cur.nice-select:after {
      display: none;
    }
	}
  
  .nice-select.open {
    border-radius: 5px 5px 0 0;
  }
  
  .nice-select.open:after {
    -ms-transform: translateY(-40%) rotate(-180deg);
    transform: translateY(-40%) rotate(-180deg);
  }
  
  .nice-select.open .ns-list {
    opacity: 1;
    pointer-events: auto;
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
  }
  
  .nice-select.disabled {
    border-color: #ededed;
    color: #999;
    pointer-events: none;
  }
  
  .nice-select.disabled:after {
    border-color: #cccccc;
  }
  
  .nice-select.wide {
    width: 100%;
  }
  
  .nice-select.wide .ns-list {
    left: 0 !important;
    right: 0 !important;
  }
  
  .nice-select.right {
    float: right;
  }
  
  .nice-select.right .ns-list {
    left: auto;
    right: 0;
  }
  
  .nice-select.small {
    font-size: 12px;
    height: 36px;
    line-height: 34px;
  }
  
  .nice-select.small:after {
    height: 4px;
    width: 4px;
  }
  
  .nice-select.small .option {
    line-height: 34px;
    min-height: 34px;
  }
  
  .nice-select .ns-list {
    background-color: #fff;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.11);
    box-sizing: border-box;
    opacity: 0;
    padding: 33px 0 0;
    pointer-events: none;
    max-height: 300px;
    position: absolute;
    /*max-height: 195px;*/
    overflow: auto;
    top: 100%;
    left: 0;
    -ms-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -ms-transform: scale(0.75) translateY(-21px);
    transform: scale(0.75) translateY(-21px);
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    z-index: 9;
  }
  
  .nice-select .ns-list:hover .option:not(:hover) {
    background-color: transparent !important;
  }
  
  .nice-select .option {
    cursor: pointer;
    font-weight: 400;
    line-height: 32px;
    list-style: none;
    min-height: 32px;
    outline: none;
    padding-left: 15px;
    padding-right: 29px;
    text-align: left;
    color: black;
    transition: all 0.2s;
  }
  
  .nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
    background-color: #f6f6f6;
  }
  
  .nice-select .option.selected {
    font-weight: bold;
  }
  
  .nice-select .option.disabled {
    background-color: transparent;
    color: #999;
    cursor: default;
  }
  
  .no-csspointerevents .nice-select .ns-list {
    display: none;
  }
  
  .no-csspointerevents .nice-select.open .ns-list {
    display: block;
  }
  
  .nice-select .ns-list .option.disabled:first-child {
    display: none !important;
  }
  
  .nice-select .nice-select-search-box {
    box-sizing: border-box;
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    z-index: 8;
    opacity: 0;
    pointer-events: none;
    background: white;
    -ms-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -ms-transform: scale(0.75) translateY(-21px);
    transform: scale(0.75) translateY(-21px);
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  }
  
  .no-search .nice-select-search-box {
    display: none;
  }
  
  .no-search .ns-list {
    padding-top: 0;
  }
  
  .nice-select.open .nice-select-search-box {
    opacity: 1;
    z-index: 10;
    pointer-events: auto;
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
  }
  
  .nice-select .nice-select-search {
    box-sizing: border-box;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 3px;
    box-shadow: none;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    color: #333;
    display: inline-block;
    vertical-align: middle;
    padding: 7px 12px;
    width: 100% !important;
    min-height: 32px;
    height: auto;
    outline: 0 !important;
  }</pre></body></html>