@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Code:ital,wght@0,300..800;1,300..800&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    font-family: "Source Code Pro", monospace;
}

.form {
    border: 1px solid #E6E6E6;
    padding: 20px;
    max-width: 495px;
    width: 100%;
    border-radius: 12px;
    background-color: #FFF;
}

.info {
    font-size: 16px;
    color: #808080;
    border: 1px solid #E6E6E6;
    border-radius: 12px;

    background-color: #FFF;
    box-shadow: 0px 2px 20px -4px rgba(0,0,0,0.2);
    margin-bottom: 20px;
    padding: 24px 20px;
}

.card {
    margin-top: 24px;
    align-items: center;
}

.number {
    color: #1A1A1A;
    font-size: 18px;
}

.row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.coll {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.title {
    color: #1A1A1A;
    font-weight: 600;

    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 18px;
}

.icon {
    width: 24px;
    height: 24px;
}

.invoice {
    border-radius: 6px;
    background-color: #F6F6F6;
    padding: 16px 12px;
    margin-bottom: 20px;
}

.invoice .title {
    margin-bottom: 10px;
}

.value {
    font-size: 40px;
}

.amount {
    color: #1A1A1A;
    font-size: 14px;
}

.alert {
    margin-bottom: 20px;
    background-color: #FFEDD5;
    padding: 20px 24px;
    border-radius: 6px;
}

.alert.error {
    background-color: #EDD5FF;
}


.alert.mess {
    background-color: #EDFFD5;
}


.alert title {
    margin-bottom: 8px;
}

.red {
    color: #DC2626;
    font-weight: 600;
}

.green {
    color: #729238;
    font-weight: 600;
}

.button {
    background-color: #729238;
    padding: 16px 20px;
    width: 100%;
    color: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
}

.back {
    padding: 16px 20px;
    width: fit-content;
    max-width: 64px;
    max-height: 64px;
    margin-left: auto;
    color: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
}

.back img {
    width: 100%;
}

.input {
    padding: 16px 20px;
    border-radius: 6px;
    outline: none;
    border: 1px solid #E6E6E6;
}

.popup {
    width: 100vw;
    height: 100vh;

    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background-color: #80808066;

    transform: translateY(-100%);
}

.popup.active {
    transform: translateY(0);
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.file {
    display: none;
}

#copy {
    cursor: pointer;
}


.hr {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 12px 0;
    color: #b2b2b2;
    text-transform: uppercase;
}

.line {
    width: 100%;
    min-width: 100px;
    background-color: #b2b2b2;
    height: 2px;
}

.hr-text {
    font-size: 14px;
}


.popup .form {
    max-width: 455px;
}

.none {
    display: none;
}


.proofs {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.proof {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    gap: 12px;
    padding: 8px;

    color: #808080;
    border: 1px solid #E6E6E6;
}

.proof-icon {
    width: 48px;
    height: 48px;

    border-radius: 8px;
    background-color: #ff5687;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.proof-icon img {
    width: 32px;
}


.proof-info {
    width: 100%;
}

.proof-bottom {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.proof-title {
    color: #1A1A1A;
    font-weight: 600;
}

.proof-ext {
    text-transform: uppercase;
}

.REJECT {
    color: #DC2626;
    font-weight: 600;
}

.CONFIRM {
    color: #729238;
    font-weight: 600;
}