/** custom dropdown */
.custom_dropdown_component {
    padding: 12px 24px;
    outline: none;
    border: 1px solid #c2c2c2;
    border-radius: 6px;
}

.custom_dropdown_input_container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.custom_dropdown_component_input {
    padding: 0 20px;
    height: 48px;
    background: #ffffff;
    border: 1px solid #d9d9d9;
    border-radius: 5px;
    width: 100%;
}

.custom_dropdown_icon {
    position: absolute;
    right: 20px
}

.custom_dropdown_component>.select_value:nth-child(1) {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 1px;
    color: #757575;
}

.custom_dropdown_items {
    position: absolute;
    top: 75px;
    width: 100%;
    height: auto;
    max-height: 200px;
    background: #ffffff;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2),
        0px 1px 18px rgba(0, 0, 0, 0.12), 0px 6px 10px rgba(0, 0, 0, 0.14);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    z-index: 2;
}

.custom_dropdown_items .custom_dropdown_item {
    padding: 10px;
    font-size: 15px;
    font-weight: 400;
    cursor: pointer;
}

.custom_dropdown_item:hover {
    background-color: #c7c5c5;
}


/** Pagination **/
.kwant_pagination_container{
    display: flex;
    align-items: center;
    gap: 3em;
}
.kwant_pagination {
    display: flex;
}
.kwant_pagination li{
    list-style: none;
}
.kwant_pagination_link{
    text-decoration: none;
}

.kwant_pagination_link:focus{
    outline: none !important;
}

.kwant_pagination_link:hover{
    color: #fff !important;
}

.kwant_pagination_link_container {
    width: 24px;
    height: 24px;
    border-radius: 100%;
    background-color: #F3F5F9;
    color: #666666;
    margin: 0 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.kwant_pagination_link_container:hover{
    background-color: #174189;
    color: #fff !important;
}

.kwant_pagination_link_container:hover a{
    background-color: #174189;
    color: #fff !important;
}

.kwant_pagination_link_container a {
    font-family: 'Poppins';
    font-weight: 400 !important;
    font-size: 14px;
    line-height: 20px;
    display: flex;
    align-items: center;
    letter-spacing: 1px;
}
.pagination_page_size_dropdown_items{
    position: absolute;
    top: 27px;
    width: 100%;
    height: auto;
    max-height: 200px;
    background: #ffffff;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2),
        0px 1px 18px rgba(0, 0, 0, 0.12), 0px 6px 10px rgba(0, 0, 0, 0.14);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    z-index: 2;
}

.pagination_page_size_dropdown_items .custom_dropdown_item {
    padding: 10px;
    font-size: 15px;
    font-weight: 400;
    cursor: pointer;
}

.pagination_page_size_dropdown_items .custom_dropdown_item:hover {
    background-color: #c7c5c5;
}

.pagination_active {
    background-color: #174189;
}

.pagination_active a {
    color: #fff;
}

.kwant_pagination_prev {
    list-style: none;
}

.kwant_pagination_next {
    list-style: none;
}

.kwant_pagination_info{
    position: relative;
}

.kwant_pagination_info p{
    color: #174189;
    cursor: pointer;
}