#ddlGift {
    background-color: #fff7af;
}
#UpdatePanel1 {
    width: 90%;
}
.send {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: white;
    background: var(--opacityRed);
    z-index: 9999999999999999;
}

.send__title {
    margin-bottom: 25px;
    text-align: center;
    font-size: 25px;
    font-weight: 900;
}

.send__title .point {
    color: var(--yellow)
}

.send__area {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.send__img {
    position: relative;
    flex: 1;
}

.send__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.send__img__text {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 25px;
    font-size: 28px;
    font-weight: 700;
    color: white;
}

.send__table {
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    align-items: center;
}

.send__table__item {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
}

.send__table__item + .send__table__item {
    margin-top: 15px;
}

.send__table__item input,
.send__table__item select {
    appearance: none;
    width: 350px;
    line-height: 25px;
    padding: 15px 25px;
    font-size: 16px;
    color: var(--fontColor);
    border: 0;
    border-radius: 50px;
    background: white;
}

.send__table .button {
    width: 100%;
}

.alert__area {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    margin: 25px 0;
    font-size: 14px;
}

.alert__area input {
    display: none;
}

.alert__area input + label {
    display: inline-block;
    width: 25px;
    height: 25px;
    margin-right: 5px;
    border-radius: 25px;
    border: white 5px solid;
    background: white;
}

.alert__area input:checked + label {
    background: var(--blue);
}

.alert__area a {
    color: white;
    text-decoration: underline !important;
}

.close {
    position: absolute;
    top: 25px;
    right: 25px;
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
}

.close img {
    width: 25px;
    margin-left: 10px;
}

@media screen and (max-width: 1023px) {

}