.select-file-custom {
    display: flex;
    align-items: center;
    gap: 10px;
}
.select-file-custom_label {
    margin-top: 0px;
    padding: 15px 60px 15px 60px;
    background: #ffffff;
    border: solid 1px #05A65D;
    border-radius: 30px;
    font-family: Inter;
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    letter-spacing: 0em;
    text-align: center;
    color: #575756;
    cursor: pointer;
}
.select-file-custom_files {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    justify-content: center;
}
.select-file-custom_file {
    padding: 5px 30px 5px 10px;
    color: #575756;
    background: #E3E3E3;
    position: relative;
    border-radius: 10px;
}
.select-file-custom_file::before {
    content: "";
    display: block;
    width: 16px;
    height: 2px;
    background: #575756;
    transform: rotateZ(45deg);
    position: absolute;
    top: 16px;
    right: 8px;
}
.select-file-custom_file::after {
    content: "";
    display: block;
    width: 16px;
    height: 2px;
    background: #575756;
    transform: rotateZ(-45deg);
    position: absolute;
    top: 16px;
    right: 8px;
}
.select-file-custom input {
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
}
.form-select-custom {
    z-index: 1;
    margin-top: 40px;
    position: relative;
}
.form-select-custom .wpcf7-form-control-wrap {
    position: static;
}
.select-custom-button {
    margin-top: 0 !important;
}
.select-custom-list {
    margin-top: 0 !important;
    background: #fff;
    box-shadow: 0 0 5px;
    padding: 5px 0 !important;
    transition: all ease-in-out .6s;
    position: absolute;
    left: 0;
    top: 100%;
    overflow: hidden;
}
.form-select-custom:not(.shown) .select-custom-list.loaded {
    height: 0 !important;
    display: none;
}
.select-custom-list > * {
    display: block;
    margin: 0;
}
.select-custom-list label {
    display: block;
    padding: 5px 10px;
    cursor: pointer;
}
.select-custom-list label:hover {
    background: #eee;
}

@media (max-width: 600px){
    .select-file-custom_label{
        padding: 14px 47px 14px 47px;
    }
    .post__list_box{
        margin-bottom: 58px;
    }

    .join__container {
        margin-bottom: 42px;
    }
}

@media (max-width: 387px){
    .select-file-custom_label {
        padding: 14px 32px 14px 32px;
    }
    .join__form .wpcf7-submit {
        padding: 15px 42px;
    }
}