/* CSS Document */

/*==================================
Cases Filter
==================================*/

.case_filter{

    display:flex;
    align-items:center;
    justify-content:flex-end;

    gap:16px;

    margin:0 0 64px;

}

.case_filter_label{

    font-size:16px;
    font-weight:700;
    color:#222;

    white-space:nowrap;

}

.case_filter_select{

    position:relative;

    width:320px;

}

/* 矢印 */

.case_filter_select::after{

    content:"";

    position:absolute;

    top:50%;
    right:20px;

    width:9px;
    height:9px;

    border-right:2px solid #2B5E36;
    border-bottom:2px solid #2B5E36;

    transform:translateY(-70%) rotate(45deg);

    pointer-events:none;

}

.case_filter_select select{

    width:100%;
    height:56px;

    padding:0 48px 0 18px;

    border:1px solid #D8DFDA;
    border-radius:8px;

    background:#FFF;

    color:#222;

    font-size:15px;
    font-weight:500;

    cursor:pointer;

    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;

    transition:.25s;

}

.case_filter_select select:hover{

    border-color:#2B5E36;

}

.case_filter_select select:focus{

    outline:none;

    border-color:#2B5E36;

    box-shadow:0 0 0 3px rgba(43,94,54,.12);

}

/* Firefox */

.case_filter_select select::-ms-expand{

    display:none;

}

/*==================================
Responsive
==================================*/

@media (max-width:767px){

.case_filter{

    flex-direction:column;
    align-items:flex-start;

    gap:10px;

    margin-bottom:40px;

}

.case_filter_select{

    width:100%;

}

}