.select2-container {
    box-sizing: border-box;
    display: inline-block;
    margin: 0;
    position: relative;
    vertical-align: middle;
    /* height: 50px; */
}



/*-----------------------------------------------
    Select2.js
------------------------------------------------*/
.select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: auto;
    user-select: none;
    -webkit-user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    display: block;
    padding: 0 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    outline: none;
    font-size: 15px;
    padding-right: 35px;
}

.select2-container .select2-selection--single .select2-selection__clear {
    position: relative;
}

.select2-container--open { z-index: 999; }


.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
    padding-right: 8px;
    padding-left: 20px;
}
 
.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;
    height: 37px;
    padding: 0 9px;
    line-height: 40px;
    font-size: 14px;
    margin: 0;
    color: #888;
    box-sizing: content-box;
    font-weight: 400;
}

.select2-container .select2-search--inline .select2-search__field::placeholder { color: #888; }

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
    -webkit-appearance: none;
}

.select2-dropdown {
    background-color: #fff;
    border: 1px solid #dbdbdb;
    box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.06);
    border-radius: 4px;
    box-sizing: border-box;
    display: block;
    position: absolute;
    left: -100000px;
    width: 100%;
    z-index: 1051;
    padding: 8px;
    padding-top: 0;
    border-top: none;
}

.select2-dropdown--above { padding-top: 8px; }

.select2-dropdown--above { border-top: 1px solid #e0e0e0; }

.select2-results {
    display: block;
}

.select2-results__options {
    list-style: none;
    margin: 0;
    padding: 0;
}

.select2-results__option {
    user-select: none;
    -webkit-user-select: none;
}

.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: 0;
    border-top-right-radius: 0;
}

.select2-search--dropdown {
    display: block;
    padding:0;
    margin-top: 0;
}

.select2-dropdown--above .select2-search--dropdown {
  margin-top: 4px;
}
/*
.select2-container--open .select2-dropdown--below:before {
    position: absolute;
    content: "";
    width: calc(100% - 2px);
    height:4px;
    background: #fcfcfc;
    display: block;
    left: 1px;
    top: -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 {
    background-color: #fff;
    border: 1px solid #dbdbdb;
    box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.06);
    font-weight: 500;
    border-radius: 4px;
    outline: none;
    font-size: 14px;
}

.select2-container--open.select2-container--below .select2-selection--single {
    border-radiu: 4px 4px 0 0;
    border-bottom: none;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #888;
    line-height: 48px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #888;
}



/* Custom Scrollbar*/
.select2-container--open .select2-dropdown ::-webkit-scrollbar {
  width: 8px;
  background-color: rgba(255, 255, 255, 0);
}

.select2-container--open .select2-dropdown ::-webkit-scrollbar-track,
.select2-container--open .select2-dropdown ::-webkit-scrollbar-thumb {
  border-left: 1px solid rgba(255, 255, 255, 0);
  border-right: 1px solid rgba(255, 255, 255, 0);
  background-clip: padding-box;
  border-radius: 20px;
}
.select2-container--open .select2-dropdown ::-webkit-scrollbar-track {
  background-color: rgba(0,0,0,0.05);
}
.select2-container--open .select2-dropdown ::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,0.2);
}



.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
    float: left;
}

.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-selection--multiple {
    border: 1px solid #dbdbdb;
    box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.08);
    background-color: #fff;
    border-radius: 4px;
    cursor: text;
    height: 50px;
}

/* Custom Scrollbar*/
/*.select2-container--default .select2-selection--multiple ::-webkit-scrollbar {
  width: 6px;
  background-color: rgba(255, 255, 255, 0);
}

.select2-container--default .select2-selection--multiple ::-webkit-scrollbar-track,
.select2-container--default .select2-selection--multiple::-webkit-scrollbar-thumb {
  border: 10px solid rgba(255, 255, 255, 0);
  background-clip: padding-box;
  border-radius: 10px;
}
.select2-container--default .select2-selection--multiple ::-webkit-scrollbar-track {
  background-color: rgba(0,0,0,0);
}
.select2-container--default .select2-selection--multiple ::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,0.2);
}*/

.select2-container--default .select2-selection--multiple ::-webkit-scrollbar {
  height: 15px;
  width: 12px;
  background-color: rgba(255, 255, 255, 0);
}
.select2-container--default .select2-selection--multiple ::-webkit-scrollbar-track,
.select2-container--default .select2-selection--multiple ::-webkit-scrollbar-thumb {
  border: 3px solid rgba(255, 255, 255, 0);
  background-clip: padding-box;
  border-radius: 20px;
}
.select2-container--default .select2-selection--multiple ::-webkit-scrollbar-track {
  background-color: transparent;
}
.select2-container--default .select2-selection--multiple ::-webkit-scrollbar-thumb {
  background-color: #ccc;
}


.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 5px;
    width: 100%;
    overflow-y: scroll;
    height: 50px;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
    list-style: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-top: 5px;
    margin-right: 10px;
    padding: 1px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #f91942;
  border: none;
  border-radius: 3px;
  cursor: default;
  float: left;
  margin-left: 4px;
  margin-top: 5px;
  padding: 0 5px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  margin-bottom: -2px;
  line-height: 26px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin: 0 3px 0 0px;
    font-size: 24px;
    transition: 0.2s;
    line-height: 20px;
    position: relative;
    top: 1px;
    font-weight: 400;
    background: transparent;
    outline: none !important;
    border: none;
    padding: 0px;
}
.select2-container .select2-selection--multiple {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    min-height: 32px;
    user-select: none;
    -webkit-user-select: none;
    padding: 6px 5px;
}
.select2-container .select2-selection--multiple .select2-selection__rendered {
    display: inline;
    list-style: none;
    padding: 0;
}
.select2-container .select2-selection--multiple .select2-selection__clear {
    background-color: transparent;
    border: none;
    font-size: 1em;
}
.select2-container .select2-search--inline .select2-search__field {
    box-sizing: border-box;
    border: none;
    margin-top: 0;
    margin-left: 7px;
    padding: 0;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
/*    transform: rotate(180deg);*/
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice,
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
    float: right;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
    margin-left: 5px;
    margin-right: auto;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
    margin-left: 2px;
    margin-right: auto;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: 1px solid #e0e0e0;
    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;
    border-bottom: none;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #ddd;
    box-shadow: none;
    padding: 8px 10px;
    height: 40px;
    font-size: 13px;
    background: #fafafa;
    margin-bottom: 8px;
}

.select2-container--default .select2-search--inline .select2-search__field {
    background: transparent;
    border: none;
    outline: 0;
    box-shadow: none;
    -webkit-appearance: textfield;
    box-sizing: content-box;
}

.select2-container--default .select2-results > .select2-results__options {
    max-height: 250px;
    overflow-y: auto;
    font-size: 14px;
}

.sort-by .select2-container--default .select2-results > .select2-results__options { max-height: 300px; }

.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-color: #f0f0f0;
}

.select2-container--default .select2-results__option .select2-results__option {

}

.dashboard-list-box ul.select2-results__options li,
.select2-results__option {
    padding: 5px 9px;
    border-radius: 3px;
    transition: 0.25s;
    color: #888;
    font-weight: 500;
    line-height: 23px;
    border: none;
}

.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: #f91942;
    color: white;
}

.select2-container--default .select2-results__group {
    cursor: default;
    display: block;
    padding: 4px 8px;
    font-size: 13px;
    line-height: 22px;
    color: #888;
    background: #efefef;
    border-radius: 4px;
    margin-top: 8px;
    margin-bottom: 1px;
    font-weight: 500;
}

.select2-container--classic .select2-selection--single {
    background-color: #f7f7f7;
    border: 1px solid #aaa;
    border-radius: 4px;
    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 #5897fb;
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
    color: #444;
    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-container--open .select2-selection--single {
    border: 1px solid #5897fb;
}



.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: 4px;
    cursor: text;
    outline: 0;
}

.select2-container--classic .select2-selection--multiple:focus {
    border: 1px solid #5897fb;
}

.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: 4px;
    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 #5897fb;
}

.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;
}

.select2-container .select2-search--inline { float: left; height: 100%; }
.select2-container .select2-selection--multiple { overflow-y: auto; }



/* Dropdown Animation*/
.select2-dropdown {
    animation: select2-anim 0.3s;
}

@keyframes select2-anim {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    transition: border 0.2s;
    border-bottom: 1px solid transparent;
}

/*------------------------------------
Sort by dropdown styles
--------------------------------------*/
.sort-by-select .select2-container--default .select2-selection--single {
    border: none;
    font-weight: 600;
    box-shadow: none;
    background: transparent;
    color: #666;
}


.sort-by-select .select2-container--default .select2-selection--single .select2-selection__rendered{
    line-height: 36px;
    color: #666;
}

.sort-by .select2-container--open .select2-dropdown--below,
.sort-by .select2-dropdown {
    padding-top: 8px;
    border: 1px solid #e0e0e0;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.08);
    border-radius: 4px;
    min-width: 200px;
}

.sort-by label, .sort-by .sort-by-select { position: relative; }

.sort-by-select .select2-dropdown { min-width: 200px; }

.sort-by-select .select2-container--default .select2-selection--single .select2-selection__rendered{ transition: 0.3s; border-radius: 50px; }

.sort-by-select .select2-container--default .select2-selection--single .select2-selection__rendered:hover { background: #f3f3f3; }
.fs-container .sort-by-select .select2-container--default .select2-selection--single .select2-selection__rendered:hover { background: #fff; }

.container:not(.full-width) .sort-by .select2-container--open,
.container:not(.full-width) .sort-by .select2-container--open .select2-dropdown {
    left: initial !important;
    right: 0 !important;
}

.sort-by .select2-container--open,
.sort-by .select2-container--open .select2-dropdown {
    top: 0 !important;
}

.sort-by .select2-container--open .select2-dropdown { top: 8px !important; }

@media (max-width: 992px) {
    .container:not(.full-width) .sort-by .select2-container--open,
    .container:not(.full-width) .sort-by .select2-container--open .select2-dropdown,
    .sort-by .select2-container--open,
    .sort-by .select2-container--open .select2-dropdown {
        left: 0 !important;
        right: initial !important;
        top: 0px !important;
    }    

.container:not(.full-width) .sort-by .select2-container--open .select2-dropdown,
    .sort-by .select2-container--open .select2-dropdown { top: 18px !important; }
    .sort-by-select .select2-container--default .select2-selection--single .select2-selection__rendered { background: #f3f3f3; }
    .panel-dropdown.float-right { float: none; }
    .fs-container .sort-by-select .select2-container--default .select2-selection--single .select2-selection__rendered { background: #fff; }
}


/*------------------------------------
Main Search Dropdown Styles
--------------------------------------*/
.main-search-input .select2-container--default .select2-selection--multiple,
.main-search-input .select2-container--default .select2-selection--single {
    border: none;
    font-weight: 600;
    box-shadow: none;
    background: transparent;
    color: #666;
}

.main-search-input .select2-container .select2-selection--single .select2-selection__rendered {
    font-size: 16px;
    font-weight: 500;
    line-height: 46px;
    margin-right: 0;
}

.main-search-input .select2-container .select2-search--inline .select2-search__field {
	font-size: 16px;
	font-weight: 500;
	height: 35px;
}

.main-search-input .select2-container--default .select2-selection--multiple {
	border-bottom: none !important;
}

.alt-search-box.main-search-container .main-search-input-item .select2-container--default .select2-selection--multiple input {
    background: transparent;
    border: none;
    padding: 0;
}

.alt-search-box.main-search-container .main-search-input .select2-container--default .select2-selection--multiple {
    border: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0 !important;
    padding: 9px;
    height: 54px;
}

.alt-search-box .main-search-input .select2-container--default .select2-selection--multiple .select2-selection__rendered,
.gray-style .main-search-input .select2-container--focus.select2-container--open .select2-selection--multiple .select2-selection__rendered,
.main-search-input .select-container--default .select2-selection--multiple .select2-selection__rendered {
     padding: 0;
    width: 0;
    height: 0;
    background: transparent;
    border: none;
}   

.sort-by-select .select2-container--default .select2-selection--single,
.main-search-input .select2-container--default .select2-selection--single {
    border-bottom: none !important;
}

.main-search-inner .select2-container .select2-selection__rendered {
	  transition: 0.2s box-shadow;
}
.main-search-inner .select2-container--focus.select2-container--open .select2-selection__rendered {
	  box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.15);
	  border-radius: 4px 4px 0 0;
}

.main-search-inner .select2-container--open .select2-dropdown {
    top: -35px !important;
    border: none;
    border-radius: 4px;
    box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.15);
    font-size: 15px;
    padding: 10px;
    z-index: 125;
}

.main-search-inner .select2-container .select2-selection--single .select2-selection__rendered { padding: 0 15px; }

.main-search-inner .select2-container--open .select2-dropdown:before {
    top: -4px;
    background: #fff;
    content: "";
    position: absolute;
    height: 5px;
    display: block;
    width: 100%;
    left: 0;
    right: 0;
}

/* Alternative Boxed Search Styles */
.alt-search-box .main-search-inner .select2-container--focus.select2-container--open .select2-selection__rendered {
	  box-shadow: none;
	  border-radius: 4px;
	  border: 1px solid #e2e2e2;
	  background: #fff;
}

.alt-search-box .main-search-inner .select2-container--open .select2-dropdown {
    border-radius: 4px;
    border: 1px solid #dbdbdb;
    top: -42px !important;
    box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.06);
}

.alt-search-box .main-search-input .select2-container--default .select2-selection__rendered{
    background-color: #fff;
    border: 1px solid #dbdbdb;
    border-radius: 4px;
    line-height: 54px;
    padding: 0 18px;
}

.main-search-input-item.location a i {  font-size: 14px; }

.gray-style .main-search-input .select2-selection__rendered{ border: 1px solid #f7f7f7; border-radius: 4px; }
.gray-style .main-search-input .select2-container--focus.select2-container--open .select2-selection__rendered{
        background-color: #fff;
        border: 1px solid #dbdbdb;
        border-radius: 4px 4px 0 0;
        border-bottom-color: #fff;
    }   
    

/* Mobile Adjustments  */
@media (max-width: 991px) {
    .main-search-container:not(.alt-search-box) .main-search-input .select2-container .select2-selection--single .select2-selection__rendered {
    	  box-shadow: none;
    	  border-radius: 4px;
    	  border: none;
    	  background: #fff;
    	  line-height: 55px;
    }
    
    .main-search-container:not(.alt-search-box) .main-search-inner .select2-container--open .select2-dropdown {
        border-radius: 4px;
        border: 1px solid #dbdbdb;
        top: -42px !important;
        box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.06);
    }
    
    .main-search-container:not(.alt-search-box) .main-search-input .select2-container--default .select2-selection__rendered{
        background-color: #fff;
        border: 1px solid #dbdbdb;
        border-radius: 4px;
        line-height: 54px;
        padding: 0 18px;
    }   
    .main-search-input .panel-dropdown a:after { right: 10px; }
    .main-search-input-item:last-of-type {
        padding-left: 0;
        padding-right: 0;
    }

    .main-search-input .panel-dropdown .panel-dropdown-content {
        max-width: 100%;
        width: 100%;
    }
    
    #_address_wrapper a, .main-search-input-item.location a {right: 5px;}
    
    .gray-style .main-search-input .select2-selection__rendered{
        background-color: #fff;
        border: 1px solid #e0e0e0;
        box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.08);
        line-height: 54px !important;
    }
    
    .main-search-container .main-search-input .select2-container--default .select2-selection--multiple .select2-selection__rendered,
    .gray-style .main-search-input .select2-container--focus.select2-container--open .select2-selection--multiple .select2-selection__rendered,
    .main-search-input .select-container--default .select2-selection--multiple .select2-selection__rendered {
         padding: 0;
        width: 0;
        height: 0;
        background: transparent;
        border: none;
    }  
    
    .main-search-input .select2-container--default .select2-selection--multiple {
        border-bottom: none !important;
        background: #fff;
        padding: 10px;
        height: 54px;
    }
    
    .gray-style .main-search-input .select2-container--default .select2-selection--multiple,
    .main-search-container .main-search-input .select2-container--default .select2-selection--multiple {
        border: 1px solid #e0e0e0;
        border-bottom: 1px solid #e0e0e0 !important;
        padding: 9px;
        height: 54px;
    }
    .gray-style .main-search-input .select2-selection--multiple .select2-selection__rendered,
    .gray-style .main-search-input .select2-selection--multiple input, 
    .gray-style .main-search-input .select2-selection--multiple input:focus { padding: 0; box-shadow: none; border: none; background: transparent;}
}


/*------------------------------------
# Dropdown Arrow Styles 
--------------------------------------*/
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    position: absolute;
    top: 0;
    right: 17px;
    width: 15px;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b:after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    transition: 0.2s;
    color: #b0b0b0;
    display: inline-block;
    text-align: center;
    line-height: 15px;
    font-size: 11px;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b:after {
    transform: rotate(180deg);
}

.sort-by-select .select2-container--default .select2-selection--single .select2-selection__arrow b:after {
    color: #f91942;
}

.main-search-inner .select2-container--default .select2-selection--single .select2-selection__arrow { right: 18px; }
.alt-search-box .main-search-inner .select2-container--default .select2-selection--single .select2-selection__arrow { right: 17px; }
.sort-by-select .select2-container--default .select2-selection--single .select2-selection__arrow { right: 12px; }



.gray-style .main-search-input .select2-container--default .select2-selection--single .select2-selection__arrow b:after,
.main-search-inner .select2-container--default .select2-selection--single .select2-selection__arrow b:after { font-size: 12px; }
.sidebar .select2-container { margin-bottom: 18px; }

/* Admin bar Fix */
.sort-by .select2-dropdown,
.main-search-inner .select2-dropdown { transform: translateY(32px); }

@media (min-width: 780px) {body.admin-bar .select2-dropdown { transform: translateY(32px); }}

@media (max-width: 768px) {
  .row.opening-day .row {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .row.opening-day .row .col-md-2,
  .row.opening-day .row .col-md-5 {
     width: 100%;
  }

  .row.opening-day .row input { margin: 10px 0 0 0;}

.flatpickr-calendar.hasTime.noCalendar {
    max-width: calc(100vw - 150px);
    width: 100%;
}
  .numInputWrapper span {
    opacity: 1;
}
}

.fs-content .select2-container { margin-bottom: 18px; }

.sort-by-booking-author .select2-container { max-width: 200px;}





.tribe-section input,
.tribe-section input[type="text"],
.tribe-section input[type="password"],
.tribe-section input[type="email"],
.tribe-section input[type="number"],
.tribe-section textarea,
.tribe-section select, .tribe-ui-datepicker select {
    font-size: var(--tec-font-size-2);
    max-width: inherit;
    box-sizing: inherit;
    display: inherit;
    font-weight: inherit;
    opacity: inherit;
    outline: inherit;
    color: inherit;
    width: inherit;
    background-color: inherit;
    border: inherit;
    box-shadow: none;
    border-radius: 0;
    height: inherit;
}


.select2-container--default .select2-selection--single .select2-selection__clear { display: none !important; }