body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #353535;
}

h1 {
    margin: 0;
}

p {
    margin: 0;
}


#barcode {
    /* margin-top: 20px; */
    width: 100%;
    height: 100%;
}



#main {
    max-width: 380px;
    min-width: 380px;
    height: 50vh;
    min-height: 270px;
    max-height: 300px;
    display: flex;
    flex-direction: column;
    margin-top: 6rem;
    margin-bottom: 8rem;
    /* background-color: #ecedf0; */
    background-color: white;
    padding: 1.5rem;
    border-radius: 1.5%;
    box-shadow: 0px 4px 50px 2px black;
}

#header {
    width: 100%;
    margin-bottom: 1rem;
}

#controler {
    width: 100%;
    margin-bottom: 1rem;

}

#preview {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-color: black;
    border: 0.1rem solid;
    background-color: white;
    position: relative;
}

#cradit {
    display: flex;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 2.5rem;
    flex-direction: column;
    align-items: center;
}

#barcode {
    width: 290px;
    height: 142px;
}

.text_head {
    margin-bottom: 0.25rem;
    font-size: 2rem;
}

.text_subhead {
    display: flex;
    justify-content: flex-end;
    font-size: 0.75rem;
}

.controlerContainer {
    display: flex;
    width: 100%;
    justify-content: center;
}

.inputContainer {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;

}

.input {
    display: flex;
    justify-content: flex-start;
}

.inputDescription {
    display: flex;
    flex-direction: row;
}

/* .digit14 {
    height: 2rem;
    width: 100%;
    min-width: 12rem;
    font-size: 1.25rem;
    margin-right: 0.5rem;
    text-indent: 0.5rem;
} */

/* 
        .digitcheck{
            height: 2rem;
            width: 15%;
            min-width: 2rem;
            font-size: 1.25rem;
            margin-right: 0.5rem;
            text-align: center;
        } */

.digit13 {
    height: 2rem;
    width: 100%;
    min-width: 11rem;
    font-size: 1.25rem;
    margin-right: 0.5rem;
    text-indent: 0.8rem;
}

.digitcheck {
    height: 2rem;
    width: 50%;
    min-width: 2rem;
    font-size: 1.25rem;
    margin-right: 0.5rem;
    text-align: center;
}

.buttonContainer {
    /* width: 20%; */
    height: 100%;
    display: flex;
    flex-direction: row;
    /* justify-content: space-around; */
    justify-content: center;
}

.controlButton {
    max-width: 2rem;
    min-width: 2rem;
    max-height: 2rem;
    min-height: 2rem;
}

.submitBtn {
    background-color: #7aec5e;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 0.25rem;
    margin-right: 0.25rem;
    cursor: pointer;
    transition: 600ms;
}

.refreshBtn {
    background-color: #fd574b;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 0.25rem;
    margin-right: 0.25rem;
    cursor: pointer;
    transition: 600ms;
}

.downloadBtn {
    background-color: #52d1ee;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 0.25rem;
    cursor: pointer;
    transition: 600ms;
}

.copyBtn{
    background-color: #adadad;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 0.25rem;
    cursor: pointer;
    transition: 600ms;
    position: absolute;
    top: 0;
    right: 0;
    margin-top: 0.25rem;
    margin-right: 0.25rem;
    z-index: 10;
}

.buttonIcon {
    width: 60%;
    height: 60%;
}

.submitBtn:hover {
    background-color: #aef39c;
    transition: 200ms;
}

.refreshBtn:hover {
    background-color: #ec918b;
    transition: 200ms;
}

.downloadBtn:hover {
    background-color: #93e0f1;
    transition: 200ms;
}
.copyBtn:hover {
    background-color: #d4d4d4;
    transition: 200ms;
}

/* 
.submitBtn:hover .buttonIcon {
    filter: invert();
    transition: 300ms;
}

.refreshBtn:hover .buttonIcon {
    filter: invert();
    transition: 300ms;
}

.downloadBtn:hover .buttonIcon {
    filter: invert();
    transition: 300ms;
} */


.craditTextContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.textcradit {
    /* color: #8D96A0; */
    color: #c2c2c2;
    font-size: 0.75rem;
}

.Xline_80 {
    height: 1px;
    width: 80%;
    background-color: #c2c2c2;
    /* background-color: #8D96A0; */
}