/* ---------------------- DoubleRangeSlider ---------------------- */

:root {
  --light-grey: #959595;
  --grey: #282828;
  --white: rgb(240, 240, 240);
  --green: rgb(95 186 167);
  --light_blue: #3da9fc;
  --_height: 5px;
  --_thumb-size: calc(var(--_height) * 4)
}

.wrapper-double-range-slider {
    margin: auto;
}

.double-range-slider {;
  position: relative;
  width: 100%;
  display: grid;
}
.double-range-slider .double-range-labels {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
}
.double-range-slider .double-range-labels .double-range-label {
  display: inline-flex;
  font-size: 16px;
  color: inherit;
  line-height: 1;
}
.double-range-slider .double-range-labels .double-range-label-start {
  align-self: flex-start;
}
.double-range-slider .double-range-labels .double-range-label-end {
  align-self: flex-end;
}
.double-range-slider .track-wrapper {
  position: relative;
  z-index: 11;
  height: var(--_height);
  margin-bottom: var(--_thumb-size);
  display: grid;
  align-items: center;
  margin: 0 calc(var(--_thumb-size) / 2);
}
.double-range-slider .track-wrapper .track {
  position: absolute;
  z-index: 11;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 5px;
  background-color: var(--light-grey);
}
.double-range-slider .track-wrapper .range-between {
  position: absolute;
  z-index: 12;
  left: 0%;
  right: 0%;
  top: 0;
  bottom: 0;
  border-radius: 5px;
  background-color: var(--light_blue);
}
.double-range-slider .track-wrapper .thumb {
  --_shadow-sizer: 2;
  --_shadow-size: calc(var(--_thumb-size) * 1.2);
  --_shadow-color: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 42%, var(--light_blue) 75%, var(--light_blue) 100%);
  --_shadow-opacity: 0;
  position: absolute;
  z-index: 13;
  width: var(--_thumb-size);
  height: var(--_thumb-size);
  background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 60%, var(--light_blue) 62%, var(--light_blue) 100%);
  border-radius: 50%;
  transition: box-shadow 0.3s ease-in-out;
}
.double-range-slider .track-wrapper .thumb::before {
  content: "";
  pointer-events: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  background: var(--_shadow-color);
  width:  var(--_shadow-size);
  height: var(--_shadow-size);
  border-radius: inherit;
  opacity: var(--_shadow-opacity);
}
.double-range-slider .track-wrapper .thumb.left {
  left: 0%;
  transform: translate(calc(var(--_thumb-size) / -2), 0px);
}
.double-range-slider .track-wrapper .thumb.right {
  right: 0%;
  transform: translate(calc(var(--_thumb-size) / 2), 0px);
}
.range-slider .track-wrapper .thumb.hover {
  --_shadow-opacity: .2;
}
.double-range-slider .track-wrapper .thumb.active {
  --_shadow-opacity: .4;
  --_shadow-sizer: 4;
}
.double-range-slider input[type=range] {
  position: absolute;
  pointer-events: none;
  -webkit-appearance: none;
  z-index: 12;
  height: var(--_height);
  width: 100%;
  opacity: 0;
  cursor: pointer;
  bottom: 0;
  padding: 0;
  margin: 0;
}
.double-range-slider input[type=range]::-webkit-slider-thumb {
  pointer-events: all;
  width: var(--_thumb-size);
  height: var(--_thumb-size);
  border-radius: 0;
  border: 0 none;
  background-color: var(--light_blue);
  -webkit-appearance: none;
}
.double-range-slider input[type=range]::-moz-range-thumb {
  pointer-events: all;
  width: var(--_thumb-size);
  height: var(--_thumb-size);
  border-radius: 0;
  border: 0 none;
  background-color: var(--light_blue);
  -webkit-appearance: none;
}
.wrapper-double-range-slider .wrapper-setter-inputs{
    margin-top: var(--_thumb-size);
    display: flex;
    justify-content: space-evenly;
}
.wrapper-double-range-slider .wrapper-setter-inputs .wrapper_input_with_icon{
    width: 25%;
}

/* --------------------------------------------------------------- */

/* ---------------------- SearchMembersInput ---------------------- */
#new_member_input_wrapper{
    display: flex;
    flex-wrap: wrap;
    cursor: text;
    width: 100%;
}
#new_member_input_wrapper.inline-wrapper{
    display: inline-block;
}

#new_member_input_wrapper.mail-style{
    border-bottom: 1px solid #E0E0E0;
    border-top: 1px solid #E0E0E0;
}

#new_member_input_wrapper.mail-style{
     width: 100%;
}
#new_member_input_wrapper #new_member_input_container{
    margin-top: 5px;
    width: 100%;
    position: relative;
}

.mail-style{
    height: 47px;
}
#new_member_input_wrapper #new_member_input_container .search_members_input{
    max-width: 100%;
    box-shadow: unset;
    border: unset;
    border-radius: inherit;
}
#new_member_input_wrapper #new_member_input_container .search_members_input.mail-style{
    max-width:100%;
    padding-left:0;
    border: none;
    height:100%;
    line-height:inherit;
    box-shadow: unset;
}


#new_member_input_wrapper #new_member_input_container #results_container{
    display: none;
    position: absolute;
    background: white;
    z-index: 500;
    border-radius: 8px;
    border: 1px solid var(--border);
    width: 100%;
}

#new_member_input_wrapper #new_member_input_container #results_container #result_member_suggestion{
    border: unset;
    position:relative
}
#new_member_input_wrapper #new_member_input_container #results_container #new_member_button_wrapper{
    display: none;
    padding: 6px;
}
/* ---------------------------------------------------------------- */

/* ------------------------------ Tabs -----------------------------*/

[data-type="Tabs"]:not(.no-border-tabs){
    border: 1px solid var(--popup-border);
    border-radius: 8px;
}

.tabs-buttons-wrapper{
    display: flex;
    width: 100%;
    height: 30px;
    line-height: 30px;
    border-bottom: 1px solid var(--popup-border);
}
.no-border-tabs .tabs-buttons-wrapper{
    border: 1px solid var(--popup-border);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    box-sizing: border-box;
}


.tab-button{
    flex: 1 1 100%;
    text-align: center;
    cursor: pointer;

    color: var(--Gray-800, #1D2939);
    /* Text xs/Medium */
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
}
.tab-button:not(:last-child){
    border-right: 1px solid var(--popup-border);
}
.tab-button:hover{
    border-radius: 0;
    background: #F2F4F7;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}
.tab-button:first-child:hover,
.tab-button.active:first-child{
    border-top-left-radius: 8px;

}
.tab-button:last-child:hover,
.tab-button.active:last-child{
    border-top-right-radius: 8px;

}
.tab-button.active{
    border-radius: 0;
    background: var(--Primary-50, #F0F9FF);
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    color: #1570EF;
}
.tab{
    padding: 16px;
}
/* ---------------------------------------------------------------- */

/* --------------------------- Pagination --------------------------*/


.pagination-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;

    color: var(--text-normal);
    font-size: 14px;
    font-family: "Inter";
    line-height: 32px;
    text-align: center;

    margin-top: 16px;
}


.pagination-btn-wrapper {
    display: flex;

    user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
}

.pagination-btn-wrapper .pagination-btn,
.pagination-btn-wrapper .pagination-idx{

    display: inline-block;
    border-radius: 8px;
    background: transparent;

    width: 32px;
    height: 32px;
    font-size: 14px;
    color: #1696F9;
    line-height: 32px;
    width: 32px;
    height: 32px;
    margin-right: 16px;
    text-align: center;
}


.pagination-btn-wrapper .pagination-click {
    cursor: pointer;
    background: var(--theme-light-button-button-secondary, rgba(191, 219, 254, 0.20));
    /* Pop Up Dropshadow */
    /* box-shadow: 0px 16px 40px 0px rgba(0, 0, 0, 0.05); */
    text-align: center;
}

.pagination-btn-wrapper .pagination-click.active{
    background: var(--theme-light-button-button-secondary, rgba(191, 219, 254, 0.7))
}

.pagination-btn-wrapper .pagination-click:hover,
.pagination-btn-wrapper .pagination-click.active:hover{
    background: var(--theme-light-button-button-secondary, rgba(191, 219, 254, 1));
}

.pagination-custom-wrapper {
    min-width: 30px;
    padding-right: 16px;
}
.pagination-count-wrapper{
    min-width: 60px;
    padding-left: 16px
}

/* ---------------------------------------------------------------- */

/* ---------------------------- SVGIcon ----------------------------*/

.default-svg{
    display: flex;
}

/* ---------------------------------------------------------------- */

/* ---------------------------- MultiPopupBtn ----------------------------*/
.popup:first-child{
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.popup:last-child{
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}
.popup:last-child.collapsed{
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}
.popup:not(.collapsed){
    border-bottom: 1px solid var(--popup-border);
}
.popup {
    width: 640px;
    background: #fff;
    position: relative;
    height: fit-content;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    z-index: 10000;
    overflow: hidden;
}
.popup.collapsed{
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.popup-header {
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
    border-bottom: 1px solid var(--popup-border);
    background-color: white;
}
.popup.collapsed .popup-header{
    cursor: pointer;
}
.popup-header .popup-title{
    color: var(--Text---Headline, #0B0B0B);
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 64px;
    margin: 0px 0px 0px 24px;
    border-bottom: unset;
}
.popup-header .popup-close{
    font-size: 24px;
    font-weight: 100;
    width: 24px;
    height: 24px;
    cursor: pointer;
}
.popup-content {
    display: block;
    padding: 24px;
    overflow-y: auto;
    overflow-x: hidden;
}
.popup-footer {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    height: 70px;
    background-color: white;
    border-top: 1px solid var(--popup-border);
    line-height: 70px;
    padding: 0px 24px;
    align-items: center;
}
.popup-footer-right{
    display: flex;
    gap: 8px;
}
.collapsed .popup-content, .collapsed .popup-footer {
    display: none;
}
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    z-index: 9999;
}
#popup-container {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    justify-content: center;
    align-items: center;}

/* ---------------------------------------------------------------- */
