@import url(report.css);

.report_archive_search_content {
    padding: 60px 0;
    background-image: linear-gradient(180deg, rgb(255, 255, 255), rgba(255, 255, 255, 0), rgb(255, 255, 255)) !important;
    margin-bottom: 100px;
}

.report_archive_content {
    & .archive_search {
        margin: 30px auto 50px;

        & .archive_search_item {
            margin: 15px auto;

            & select {
                width: 100%;
            }

            & .archive_search_item_text {
                margin: 5px auto;
            }
        }
    }

}

.select_period {
    position: relative;
}

.select_period::before,
.select_period::after {
    position: absolute;
    content: '';
    pointer-events: none;
}

.select_period::before {
    right: 0;
    display: inline-block;
    width: 2.8em;
    height: 2.8em;
    border-radius: 0 10px 10px 0;
    background-color: #3b9cd0;
    content: '';
}

.select_period::after {
    position: absolute;
    top: 50%;
    right: 1.4em;
    transform: translate(50%, -50%) rotate(45deg);
    width: 6px;
    height: 6px;
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
    content: '';
}

.select_period select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    min-width: 230px;
    height: 2.8em;
    padding: .4em 3.6em .4em .8em;
    border: 2px solid #3b9cd0;
    border-radius: 10px;
    color: #333333;
    font-size: 1em;
    cursor: pointer;
    background-color: #fff;


}

.select_period select:focus {
    outline: 1px solid #3b9cd0;
}