
/*блок ввода данных карты*/
.sender-form {
    width: 100%;
    background: #FAFAFA;
    border-radius: 8px;
    padding: 40px 32px 32px;
    margin-top: 10px;
    position: relative;
}

@media (max-width: 550px) {
    .sender-form {
        margin-left: -32px;
        margin-right: -32px;
        width: calc(100vw - 64px);
    }
}

.card-title {
    color: #364448;
    opacity: 0.9;
    font-size: 12px;
    line-height: 14px;
}

.sender-input > div {
    margin: 8px;
}

.sender-input {
    display: flex;
    flex-wrap: wrap;
}

@media (max-width: 550px) {
    .sender-input {
        margin: -8px;
    }
}

.sender-card {
    width: 100%;
    position: relative;
}

.sender-data {
    width: 117px;
    position: relative;
}

.sender-cvc {
    width: 54px;
    position: relative;
}

.secure {
    position: absolute;
    width: 13px;
    height: 14px;
    top: 12px;
    right: 36px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.secure img {
    width: 16px;
    height: 16px;
    z-index: 1;
    display: block;
}

.cvc-help {
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    width: 10px;
    height: 10px;
    justify-content: flex-end;
    align-items: flex-start;
    z-index: 1;
}

.cvc-help img {
    width: 10px;
    height: 10px;
    z-index: 1;
    display: block;
}

.card-input {
    font-family: var(--card-font);
    border: 0;
    border-bottom: 1px #eaecec solid;
    outline: 0;
    background-color: transparent;
    width: 100%;
    height: 27px;
    padding-bottom: 5px;
    color: var(--card-input-color );
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -.1px;
    padding-left: 0;
    border-radius: 0;
}

.card-input::placeholder {
    color: var(--card-input-placeholder-color);
}
