.send {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--blue);
    z-index: 9999999999999999999999999999;
}

.send .wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: 0 auto;
}
.send h1 {
    font-size: 3rem;
    color: #fff;
}
.send h2 {
    position: relative;
    color: #fff;
}

.send_table {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 650px;
    padding: 50px;
    border-radius: 25px;
    background: var(--yellow);
    box-shadow: 0 5px 5px rgba(0,0,0,.25);
}

.send_table:before {
    content: '';
    position: absolute;
    top: -100px;
    left: -225px;
    width: 200px;
    height: 750px;
    background: url('../images/pattern_send_left.svg') center no-repeat;
    background-size: contain;
}

.send_table:after {
    content: '';
    position: absolute;
    bottom: 25px;
    right: -250px;
    width: 200px;
    height: 250px;
    background: url('../images/pattern_send_right.svg') center no-repeat;
    background-size: contain;
}

.send_item {
    width: 100%;
    padding: 10px 0;
}

.send_item > * {
    width: 100%;
    height: 50px;
    padding: 15px;
    font-size: 16px;
    border: 0;
    border-radius: 50px;
}

.accept {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 25px 0;
}

.accept input[type="checkbox"] {
    display: none;
}

.accept label {
    display: inline-block;
    width: 25px;
    height: 25px;
    margin-right: 10px;
    border-radius: 25px;
    background: #f2f2f2;
    border: #f2f2f2 5px solid;
}

.accept input[type="checkbox"]:checked + label {
    background: var(--red);
}

.accept a {
    color: var(--red);
    text-decoration: underline !important;
    margin-left: 5px;
}

.close {
    position: absolute;
    top: 25px;
    right: 25px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
}

.close img {
    width: 16px;
    margin-left: 5px;
}

@media screen and (max-width: 1024px) {
    .send_table {
        width: calc( 100% - 50px );
        padding: 25px;
    }
}