.custom-dropdown {
    position: relative;
    display: inline-block;
    margin-bottom: 16px;
    width: 100%;
}

.input-wrapper {
    background-color: #F5F9FF;
    border: 1px solid #E7EEF9;
    border-radius: 4px;
    padding: 13px 14px;
    margin-bottom: 4px;
    cursor: pointer;
}

.input-wrapper:hover {
    border: 1px solid #233F8C;
}

.input-wrapper:focus-within {
    border: 1px solid #233F8C;
}

.costCalculator:focus-within{
    border: 1px solid #233F8C;
}

.input-wrapper input {
    line-height: 20px;
    color: #233F8C;
    border: none;
    outline: none;
    font-family: 'CircularStd';
    font-style: normal;
    font-weight: 450;
    font-size: 14px;
    background-color: #F5F9FF;
    -webkit-appearance: none;
    width: 100%;
    cursor: pointer;
}

.input-wrapper input:focus{
    cursor: text;
}


.dropdown-menu {
    position: absolute;
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid #E7EEF9;
    background-color: #fff;
    box-shadow: -1px 6px 6px rgb(209 231 250 / 20%);
    border-radius: 4px;
    width: 100%;
    z-index: 2;
    height: auto;
 
}

.dropdown-menu::-webkit-scrollbar {
    display: none;
}

.dropdown-menu li {
    padding: 12px;
    cursor: pointer;
}

.dropdown-menu li:hover {
    background-color: #F5F9FF;
}


.dropdown-menu li.selected {
    padding: 12px;
    cursor: pointer;
    background-color: #5897fb;
    color: white;
}

.dropdown-menu li.selected:hover {
    background-color: #5897fb;
    color: white;
}

.dropdown-menu:hover .selected {
    background-color: #5897fb;
    color: white;
}

.dropdown-chevron:focus+.dropdown-menu {
    display: block;
}

.dropdown-chevron {
    background-image: url("../../images/cost-arrow-down.png");
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 30px;

}

.select-pages {
    width: 100%;
    position: relative;
    cursor: pointer;
}

.dropdown-chevron.noIcon {
    background-image: none;
    text-align: center;
    padding-right: 0;
}

.dropdown-chevron:focus {
    background-image: url("../../images/search-icon.svg");
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 30px;
    /* To make space for the search icon */
}

.dropdown-chevron.noIcon:focus {
    background-image: none;
    padding-right: 0;
}

.select-pages #minus,
.select-pages #plus {
    position: absolute;
    color: #fff;
    font-size: 24.5px;
    top: 27px;
    width: 45px;
    height: 48px;
    text-align: center;
    background-color: #3179BE;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    cursor: pointer;
    z-index: 1;
}
.select-pages #minus:hover,
.select-pages #plus:hover{
    background-color: #3653A5;
}
.select-pages #minus {
    border-radius: 4px 0px 0px 4px;
    left: -1px;
}

.select-pages #plus {
    border-radius: 0px 4px 4px 0px;
    right: 0px;
}
#input-wrapper-4{
    max-width: calc(100% - 89px);
    width: 100%;
    position: relative;
    left: 44px;
    border-radius: 0;
    height: 48px;
}
.select-pages #minus.disabled{
    background: #F5F9FF; 
    color: #9DB9DB;
    /* border: 0.860307px solid #E7EEF9; */
    /* FONT-WEIGHT: 100; */
    /* z-index: 1; */
    cursor: text;
    border-right: none;
}
.select-pages #plus.disabled{
    background: #F5F9FF; 
    color: #9DB9DB;
    /* border: 0.860307px solid #E7EEF9; */
    /* FONT-WEIGHT: 100; */
    /* z-index: 1; */
    cursor: text;
    border-right: none;
}
/* .select-pages:hover #minus.disabled{
    border-right: 1px solid #233F8C;
} */

.input-wrapper input[type="date"]::-webkit-calendar-picker-indicator {
    background: 0 0;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
}

.input-wrapper .myDate {
    background-image: url("../../images/dateSymbol.png") !important;
    background-color: #F5F9FF;
    -webkit-appearance: none;
    background-repeat: no-repeat;
    background-position: 100%;
}

#dropdown-menu-4{
    height: 170px;
    overflow-y: auto;
}