.nice-select {
    -webkit-tap-highlight-color: transparent;
    background-color: #003366;
    /*border-bottom: solid 4px #e33342;*/
    box-sizing: border-box;
    clear: both;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-family: inherit;
    font-size: 12px;
    font-weight: normal;
    /*height: 28px;*/
    height: 22px;
    line-height: 30px;
    outline: none;
    padding-left: 18px;
    padding-right: 30px;
    position: relative;
    text-align: left;
  -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    white-space: nowrap;
    width: auto;
    /*top: 2px;*/
}
.nice-select:hover {
    /*border-color: #e33342;*/
    border-color: #003366;
}
.nice-select:active, .nice-select.open, .nice-select:focus {
    /*border-color: #e33342;*/
    border-color: #003366;
}
.nice-select:after {
    border-bottom: 2px solid #FFF;
    border-right: 2px solid #FFF;
    content: '';
    display: block;
    height: 5px;
    /*margin-top: -1px;*/
    pointer-events: none;
    position: absolute;
    right: 10px;
    top: 50%;
    -webkit-transform-origin: 66% 66%;
        -ms-transform-origin: 66% 66%;
            transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    width: 5px;
}
.nice-select.open:after {
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
}
.nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
}
.nice-select.disabled {
    border-color: #ededed;
    color: #666 !important;
    pointer-events: none;
    box-shadow: none !important;
}
.nice-select.disabled:after {
    /*border-color: #cccccc !important;*/
    display: none;
}

.nice-select.wide {
    width: 100%;
}
.nice-select.wide .list {
    left: 0 !important;
    right: 0 !important;
}
.nice-select.right {
    float: right;
}
.nice-select.right .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 .list {
    /*background-color: #003366;*/
      background-color: #ffffff;
    /*border-radius: 5px;*/
      border-radius: 3px;
      border: 1px solid #ccc;
    box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
    box-sizing: border-box;
    margin-top: 4px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    -webkit-transform-origin: 50% 0;
        -ms-transform-origin: 50% 0;
            transform-origin: 50% 0;
    -webkit-transform: scale(0.75) translateY(-21px);
        -ms-transform: scale(0.75) translateY(-21px);
            transform: scale(0.75) translateY(-21px);
    -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    z-index: 9;
    overflow-y: scroll;
}
.nice-select .list:hover .option:not(:hover) {
    background-color: transparent !important;
}
.nice-select .option {
    cursor: pointer;
    font-weight: 400;
    line-height: 35px;
    list-style: none;
    min-height: 35px;
    outline: none;
    padding-left: 18px;
    padding-right: 29px;
    text-align: left;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}
.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
  background-color: #edeef2;
    color: #e33342;
}
.nice-select .option.selected {
    font-weight: bold;
    /*color: #e33342;*/
    color: #e33342;
}
.nice-select .option.disabled {
    background-color: transparent;
    color: #666;
    cursor: default;
}

.no-csspointerevents .nice-select .list {
    display: none; }

.no-csspointerevents .nice-select.open .list {
    display: block; }

.nice-select.full-width {
    width: 99%;
    margin: auto;
    text-align: center !important;
    background-color: #263b63;
}
.nice-select.full-width ul {
    width: 100%;
}
.nice-select.full-width li {
    text-align: center;
}
.nice-select.inSearch {
    font-size: 13px;
    /*font-weight: bold;*/
    /*background: #f5f6fa;*/
    /*color: #344356;*/
    /*border-bottom: solid 2px #e33342;*/

    background-color: #FFF;
    color: #666;
    height: 35px;
    line-height: 35px;
    top: 0;
    border-radius: 4px;
    border: 1px solid #DDD;
    vertical-align: middle;
    min-width: 150px;
    /*box-shadow: 0px 1px 2px 2px #edeef2;*/
}
.nice-select.inSearch .list{
    background-color: #FFF;
    height: 300px;
    max-height:300px;
    min-width: 150px;
    overflow-y: auto;
}
.nice-select.inSearch:after {
    border-bottom: 2px solid #666;
    border-right: 2px solid #666;
    margin-top: -3px;
}
.nice-select.inSearch li{
    color: #666;
}
.nice-select.inSearch .option:hover, .nice-select.inSearch .option.focus, .nice-select.inSearch .option.selected.focus{
    /*background-color: #cccccc;*/
    background: #EDEEF2;
}

/* .datatable */
.datatable .nice-select {
    /*background-color: #FFF;*/
    /*color: #e33342;*/
    /*height: 22px;*/
    /*line-height: 22px;*/
    /*top:0;*/
    /*margin-top: 10px;*/
    margin-bottom: 10px;
    background-color: #FFF;
    color: #666;
    height: 32px;
    line-height: 32px;
    top: 0;
    border-radius: 3px;
    border: 1px solid #DDD;
    vertical-align: middle;
    min-width: 150px;
    box-shadow: 0px 1px 2px 2px #edeef2;
}
.datatable .nice-select:after {
  /*border-bottom: 2px solid #888;*/
  /*border-right: 2px solid #888;*/
    border-bottom: 2px solid #666;
    border-right: 2px solid #666;
    margin-top: -3px;
}
.datatable .nice-select .list{
  /*background-color: #FFF;*/
  /*height: 300px;*/
  /*max-height:300px;*/
  /*overflow-y: scroll;*/

    background-color: #FFF;
    height: 300px;
    max-height:300px;
    min-width: 150px;
    overflow-y: auto;
}
.datatable .nice-select .list{
  /*color: #939498;*/
    color: #000;
    box-shadow: 2px 2px 2px 1px #ccc;
}
.datatable .nice-select .option {
  min-height: 30px;
  height: 30px;
  line-height: 30px;
}
.datatable .nice-select .option:hover, .datatable .nice-select .option.focus, .datatable .nice-select .option.selected.focus{
  /*background: #ccc;*/
    background: #EDEEF2;
}
.datatable .nice-select .list .label{
    background: #ECECEC;
    font-weight: bold;
    font-size: 1.2em;
}
.datatable .nice-select .current {
    /*font-weight: normal;*/
    font-weight: bold;
}

/* .w_tables */
.w_tables .nice-select{
  /*background-color: #FFF;*/
  /*color: #e33342;*/
  /*height: 22px;*/
  /*line-height: 22px;*/
  /*top:0;*/

    margin-top: 10px;
    margin-bottom: 10px;
    background-color: #FFF;
    color: #666;
    height: 32px;
    line-height: 32px;
    top: 0;
    border-radius: 3px;
    border: 1px solid #DDD;
    vertical-align: middle;
    min-width: 150px;
    box-shadow: 0px 1px 2px 2px #edeef2;
}
.w_tables .nice-select:after {
  /*border-bottom: 2px solid #888;*/
  /*border-right: 2px solid #888;*/
    border-bottom: 2px solid #666;
    border-right: 2px solid #666;
    margin-top: -3px;
}
.w_tables .nice-select .list{
    background-color: #FFF;
    height: 460px;
    max-height:460px;
    min-width: 150px;
    overflow-y: auto;
}
.w_tables .nice-select .list{
  color: #000;
  box-shadow: 2px 2px 2px 1px #ccc;
}
.w_tables .nice-select .option {
  min-height: 30px;
  height: 30px;
  line-height: 30px;
}
.w_tables .nice-select .option:hover, .w_tables .nice-select .option.focus, .w_tables .nice-select .option.selected.focus{
  background: #EDEEF2;
}
.w_tables .nice-select .list .label{
  background: #ECECEC;
  font-weight: bold;
  font-size: 1.2em;
    display: none;
}
.w_tables .nice-select .nice-select .current {
  font-weight: bold;
}
.w_tables .x-large .current{
  font-size: 1em;
  font-weight: normal;
}
.w_tables .large .current{
  font-size: 1.2em;
  color: #e33342;
  font-weight: normal;
  text-overflow: clip;
}
.league_results .large .current{
  font-size: 0.9em;
  color: #e33342;
  font-weight: bold;
}
.league_results .x-large .current{
  font-size: 1em;
}

#timezone_main .nice-select{
  background-color: #e33342;
}
#timezone_main .nice-select .list{
  display: none;
}
#timezone_main .nice-select.open .list{
  display: block;
  max-height: 300px;
  height: 300px;
  overflow: auto;
  width: 200px;
}
#lc_header .nice-select.small {
  height: 30px;
  top: 0;
}

#tz_picker .nice-select {
  background-color: #FFF;
  border-bottom: solid 1px #e33342;
  color: #000;
}
#tz_picker .nice-select:after {
  border-bottom: 2px solid #e33342;
  border-right: 2px solid #e33342;
}
#tz_picker .nice-select .list{
  background: #FFFFFF;
}
.nice-select.wdll {
    color:black;
    min-width: auto;
}
.nice-select.small_grey:after {
  border-bottom: 2px solid #ccc;
  border-right: 2px solid #ccc;
  top: 37%;
}
/* LEAGUES-CUPS Mobile */
#leagueHeadInfo .nice-select {
    font-size: 11px;
    /*font-weight: bold;*/
    /*border-bottom: solid 2px #e33342;*/
    top: -4px;

    margin-top: 2px;
    /*margin-bottom: 10px;*/
    background-color: #FFF;
    color: #666;
    height: 32px;
    line-height: 32px;
    /*top: 0;*/
    border-radius: 3px;
    border: 1px solid #DDD;
    vertical-align: middle;
    /*min-width: 250px;*/
    width: 100%;
    max-width: 100%;
    /*box-shadow: 0px 1px 2px 2px #edeef2;*/

    text-align: center;
}
#leagueHeadInfo .nice-select:after {
    /*border-bottom: 2px solid #888;*/
    /*border-right: 2px solid #888;*/
    border-bottom: 2px solid #666;
    border-right: 2px solid #666;
    margin-top: -3px;
}
#leagueHeadInfo .nice-select .list{
    background-color: #FFF;
    /*height: 300px;*/
    height: auto;
    max-height:300px;
    min-width: 150px;
    overflow-y: auto;
}
#leagueHeadInfo .nice-select .list{
    color: #000;
    box-shadow: 2px 2px 2px 1px #ccc;
}
#leagueHeadInfo .nice-select .option {
    min-height: 30px;
    height: 30px;
    line-height: 30px;
}
#leagueHeadInfo .nice-select .option:hover, #leagueHeadInfo .nice-select .option.focus, #leagueHeadInfo .nice-select .option.selected.focus{
    background: #EDEEF2;
}
#leagueHeadInfo .nice-select .list .label{
    background: #ECECEC;
    font-weight: bold;
    font-size: 1.2em;
}
#leagueHeadInfo .nice-select .nice-select .current {
    font-weight: bold;
}
#leagueHeadInfo .x-large .current{
    font-size: 1em;
    font-weight: normal;
}
#leagueHeadInfo .large .current{
    font-size: 1.2em;
    color: #e33342;
    font-weight: normal;
    text-overflow: clip;
}


/* TENNIS PLAYERS RANKING Mobile */
.pr_form .nice-select {
    text-align: center;
    font-size: 11px;
    top: -5px;
    background-color: #FFF;
    color: #666;
    height: 30px;
    line-height: 30px;
    border-radius: 3px;
    border: 1px solid #DDD;
    vertical-align: middle;
    width: 40%;
    max-width: 100%;
    text-align: center;
}
.pr_form .nice-select:after {
    /*border-bottom: 2px solid #888;*/
    /*border-right: 2px solid #888;*/
    border-bottom: 2px solid #666;
    border-right: 2px solid #666;
    margin-top: -3px;
}
.pr_form .nice-select .list{
    background-color: #FFF;
    height: auto;
    max-height: 300px;
    min-width: 150px;
    overflow-y: auto;
}
.pr_form .nice-select .list{
    color: #000;
    box-shadow: 2px 2px 2px 1px #ccc;
}
.pr_form .nice-select .option {
    min-height: 30px;
    height: 30px;
    line-height: 30px;
}
.pr_form .nice-select .option:hover, #leagueHeadInfo .nice-select .option.focus, #leagueHeadInfo .nice-select .option.selected.focus{
    background: #EDEEF2;
}
.pr_form .nice-select .list .label{
    background: #ECECEC;
    font-weight: bold;
    font-size: 1.2em;
}
.pr_form .nice-select .nice-select .current {
    font-weight: bold;
}
.pr_form .x-large .current{
    font-size: 1em;
    font-weight: normal;
}
.pr_form .large .current{
    font-size: 1.2em;
    color: #e33342;
    font-weight: normal;
    text-overflow: clip;
}
.nicos {

}
.datatable div {
    display: inline-block !important;
}