.send_content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.send_table {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
    width: 100%;
    padding: 35px;
    border-radius: 10px;
    background: var( --lightblue );
}

.send_table > img {
    object-fit: contain;
    object-position: center;
    width: calc( 100%/3 - 12.5px );
    height: 230px;
    padding: 25px 50px;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
}

.regular_input {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: calc( 200%/3 - 12.5px );
}

.regular_input .send_item {
    width: 100%;
}

.regular_input .send_item + .send_item {
    margin-top: 10px;
}

.designer_input {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 35px;
    border-radius: 10px;
    background: var( --lightred );
}

.designer_input .send_item {
    width: calc( 25% - 30px/4 );
}

.send_item input, .send_item select {
    width: 100%;
    height: 50px;
    line-height: 30px;
    padding: 10px;
    text-align: center;
    /***only chrome***/
    text-align-last: center;
    /***only chrome***/
    border-radius: 5px;
    border: 0;
    background: #fff;
}

.send_item select {
    appearance: none;
    background: #fff url('../images/arrow.png') center right no-repeat;
    background-size: contain;
}

.notice {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 25px 0;
}

.notice:before, .notice:after {
    content: '';
    width: calc( 50% - 100px );
    height: 1px;
    background: #aaa;
}

.accept {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 25px 0;
}

.accept a {
    color: var( --red );
}

.accept input {
    display: none;
}

.accept input + label {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    border-radius: 20px;
    border: #ddd 5px solid;
    background: #ddd;
}

.accept input:checked + label {
    background: var( --deepred );
}


@media screen and (max-width: 1024px) {
    .send_table {
        flex-direction: column;
        padding: 15px;
    }
    
    .send_table > img {
        width: 100%;
        height: auto;
        margin-bottom: 15px;
    }
    
    .regular_input {
        width: 100%;
    }

    .designer_input {
       flex-direction: column;
       padding: 15px;
    }
    
    .designer_input .send_item {
        width: 100%;
    }

    .designer_input .send_item + .send_item {
        margin-right: 0;
        margin-top: 10px;
    }
}