.send {
    margin: 50px 0;
}

.send_box {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background: var(--deepBlue);
    padding: 50px;
}

.send_title {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 20px;
    color: white;
}

.send_title .focus {
    width: 100%;
    margin-top: 10px;
    font-size: 35px;
    font-weight: 700;
    text-align: center;
    color: var(--lightYellow);
}

.send_title .focus::before {
    content: '';
    display: block;
    width: 100%;
    height: 4px;
    border-radius: 4px;
    background: white;
}

.send_table {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 25px;
}

.send_section {
    width: calc( 100%/3 - 30px/3 );
    margin-bottom: 20px;
}

.send_table input,
.send_table select {
    width: 100%;
    height: 50px;
    padding: 10px 15px;
    line-height: 30px;
    border-radius: 50px;
    border: 0;
}

.send_table select {
    appearance: none;
    background: white url('../images/arrow.svg') no-repeat;
    background-size: auto 10px;
    background-position: calc( 100% - 15px ) center;
}

.send_section_cross {
    width: 100%;
    margin-bottom: 20px;
}

.checkbox_section {
    display: flex;
    font-size: 16px;
    flex-direction: row;
    align-items: center;
    padding: 10px 0;
    line-height: 35px;
    color: #404852;
}

.checkbox_section input[type='checkbox'] {
    display: none;
}

.checkbox_section input[type='checkbox'] + label {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 5px;
    border: #b2803a 4px solid;
    border-radius: 25px;
    background: #b2803a;
}

/*
.checkbox_section input[type='checkbox']:checked + label {
    background: var(--buttonRed);
}
*/

.checkbox_section a {
    color: var(--lightYellow);
}

@media screen and (max-width: 1023px) {
    .send {
        margin: 25px 0;
    }

    .send_box {
        padding: 25px;
    }

    .send_title {
        font-size: 16px;
    }
    
    .send_title .focus {
        margin-top: 5px;
        font-size: 20px;
    }

    .send_table {
        flex-direction: column;
        align-items: center;
    }

    .send_section {
        width: 100%;
        margin-bottom: 10px;
    }

    .checkbox_section {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 10px 0;
        line-height: 35px;
        justify-content: center;
    }


}