
.publications {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 10px;
    padding: 30px;
}

.publications .container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1000px;
}

.publications h2 {
    margin-top: 89px;
    font-size: 48px;
    font-weight: 600;
    line-height: 42px;
}

.publications .filter {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: fit-content;
    margin-top: 40px;
}

.publications .filter .search {
    display: flex;
    flex-direction: row;
    width: fit-content;
    height: 40px;
    border: 1px solid #0047ba;
}

.publications .filter .search .input_text {
    display: flex;
    flex-direction: row;
    width: fit-content;
    height: 100%;
}

.publications .filter .search .search_button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 100%;
    background-color: #0047ba;
    font-size: 14px;
    color: white;
    cursor: pointer;
}

.publications .filter .search .input_text input {
    width: 384px;
    height: 100%;
    padding: 5px 10px 5px 10px;
    z-index: 1;
    font-size: 14px;
    color: black;
}

.publications .filter .search .input_text .cancel {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 100%;
    cursor: pointer;
}

.publications .filter .search .input_text .cancel .icon {
    width: 19px;
    height: 19px;
    background: url(../images/publications/icon_search_word_cancel.png) no-repeat center / cover;
}

@media (max-width: 600px) {
    .publications .filter .search .input_text input {
        width: 200px;
    }
}

@media (max-width: 420px) {
    .publications .filter .search .input_text input {
        width: 150px;
    }
}

.publications .select_result.none {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    font-size: 14px;
    text-align: center;
    line-height: 30px;
}

.publications .select_result.none .message {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100px;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background-color: #e5e5e5;
}

.publications .select_result.none .message .icon {
    width: 40px;
    height: 40px;
    background: url(../images/publications/icon_no_result.png) no-repeat center / cover;
}

.publications .select_result.none .image {
    width: 684px;
    margin-top: 30px;
}

@media (max-width: 800px) {
    .publications .select_result.none {
        font-size: 9px;
    }

    .publications .select_result.none .message {
        height: 66px;
    }

    .publications .select_result.none .message .icon {
        width: 27px;
        height: 27px;
    }

    .publications .select_result.none .image {
        width: 456px;
        margin-top: 20px;
    }
}


@media (max-width: 550px) {
    .publications .select_result.none {
        font-size: 7px;
    }

    .publications .select_result.none .message {
        height: 50px;
    }

    .publications .select_result.none .message .icon {
        width: 22px;
        height: 22px;
    }

    .publications .select_result.none .image {
        width: 342px;
        margin-top: 15px;
    }
}


.publications .select {
    position: relative;
    z-index: 1;
    margin-top: 20px;
}

.publications .select .select_box {
    display: inline-block;
    position: relative;
    vertical-align: top;
}

.publications .select .select_box + .select_box {
    margin-left: 10px;
}

.publications .select .select_btn {
    position: relative;
    width: 125px;
    height: 40px;
    border-bottom: 2px solid #0047ba;
    font-size: 20px;
    line-height: 40px;
}

.publications .select .select_btn:before {
    display: block;
    position: absolute;
    top: 17px;
    right: 3px;
    width: 8px;
    height: 5px;
    background: url(../images/publications/arrow.png) no-repeat;
    transition: transform .25s ease-in-out;
}

.publications .select .active .select_btn:before {
    transform: rotate(180deg);
}

.publications .select .select_popup {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    z-index: 1;
    width: 228px;
    padding: 8px 16px 16px 16px;
    border: 1px solid #0047ba;
    border-radius: 5px;
    background-color: #fff;
    transition: all .25s ease-in-out;
}

.publications .select .active .select_popup {
    opacity: 1;
    visibility: inherit;
}

.publications .select .select_popup .title {
    font-size: 15px;
    font-weight: 600;
    line-height: 30px;
}

.publications .select .select_popup input[type="text"] {
    width: 100%;
    height: 24px;
    border-bottom: 1px solid #0047ba;
    font-size: 14px;
    font-weight: 500;
}

.publications .select .select_popup input[type="text"]::placeholder {
    color: #999;
}

.publications .select .select_popup .option {
    position: relative;
    margin-top: 10px;
}

.publications .select .select_popup .option .option_text {
    color: #0047ba;
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
}

.publications .select .select_popup .option .option_clear {
    position: absolute;
    top: 0;
    right: 0;
    color: #ea5178;
    font-size: 12px;
    text-decoration: underline;
    line-height: 24px;
}

.publications .select .select_popup .select_list {
    margin-top: 2px;
}

.publications .select .select_popup .select_list li {
    position: relative;
}

.publications .select .select_popup .select_list li + li {
    margin-top: 5px;
}

.publications .select .select_popup .select_list li input {
    position: absolute;
    top: 5px;
    left: 2px;
}

.publications .select .select_popup .select_list li label {
    position: relative;
    padding-left: 25px;
    font-size: 14px;
    line-height: 24px;
}

.publications .select .select_popup .select_list li label:before {
    display: block;
    position: absolute;
    top: 4px;
    left: 0;
    width: 15px;
    height: 15px;
    border: 1px solid #0047ba;
    border-radius: 3px;
    background-color: #fff;
    transition: background-color .25s ease-in-out;
}

.publications .select .select_popup .select_list li input:checked + label:before {
    background: #0047ba url(../images/publications/check.png) no-repeat center;
}

.publications .selected {
    margin-top: 10px;
}

.publications .result_box .tag {
    margin-right: 5px;
    padding: 0 7px;
    border-radius: 5px;
    font-size: 14px;
    line-height: 30px;
}

.publications .result_box .tag.part {
    background-color: #dee3f1;
}

.publications .result_box .tag.type {
    background-color: #ffe7e7;
}

.publications .result_box .tag.topic {
    background-color: #fff6ce;
}

.publications .selected span img {
    vertical-align: top;
    margin-top: 7px;
}

.publications .select_count {
    margin-top: 33px;
    font-size: 14px;
    text-align: right;
    line-height: 30px;
}

.publications .select_count span {
    color: #0047ba;
}

.publications .select_result:not(.none) {
    margin-top: 7px;
}

.publications .select_result:not(.none) .result_box {
    padding: 19px 18px 16px 18px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.publications .select_result:not(.none) .result_box + .result_box {
    margin-top: 20px;
}

.publications .select_result:not(.none) .type_list span {
    margin-right: 5px;
    padding: 0 14px;
    border-radius: 5px;
    font-size: 14px;
    line-height: 25px;
}

.publications .select_result:not(.none) .type_list span.type1 {
    background-color: #dee3f1;
}

.publications .select_result:not(.none) .type_list span.type2 {
    background-color: #f6dadf;
}

.publications .select_result:not(.none) .type_list span.type3 {
    background-color: #fff6ce;
}

.publications .select_result:not(.none) .type_list span.type4 {
    background-color: #e5e5e5;
}

.publications .select_result:not(.none) .title {
    margin-top: 8px;
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
}

.publications .select_result:not(.none) .text {
    font-size: 14px;
    line-height: 24px;
}

.publications .select_result:not(.none) :not(.active) .text {
    display: -webkit-box;
    overflow: hidden;
    width: 100%;
    max-height: 48px;
    white-space: normal;
    word-wrap: break-word;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.publications .select_result:not(.none) .result_open {
    display: block;
    position: relative;
    width: 60px;
    margin: 10px auto 0 auto;
    padding-left: 16px;
    font-size: 14px;
    line-height: 24px;
}

.publications .select_result:not(.none) .active .result_open {
    display: none;
}

.publications .select_result:not(.none) .result_open:before {
    display: block;
    position: absolute;
    top: 11px;
    left: 0;
    width: 8px;
    height: 5px;
    background: url(../images/publications/arrow.png) no-repeat;
}

.publications .select_result:not(.none) .result_close {
    display: none;
    position: relative;
    width: 74px;
    margin: 10px auto 0 auto;
    padding-left: 16px;
    font-size: 14px;
    line-height: 24px;
}

.publications .select_result:not(.none) .active .result_close {
    display: block;
}

.publications .select_result:not(.none) .result_close:before {
    display: block;
    position: absolute;
    top: 11px;
    left: 0;
    width: 8px;
    height: 5px;
    background: url(../images/publications/arrow.png) no-repeat;
    transform: rotate(180deg);
}

.publications .select_result:not(.none) .info {
    position: relative;
    margin-top: 2px;
}

.publications .select_result:not(.none) .info .info_name {
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
}

.publications .select_result:not(.none) .info .info_date {
    font-size: 14px;
    line-height: 24px;
}

.publications .select_result:not(.none) .info .info_more {
    position: absolute;
    right: 0;
    bottom: 0;
    color: #0047ba;
    font-size: 14px;
    font-weight: 500;
    text-decoration: underline;
    line-height: 24px;
}
