@import url('https://fonts.googleapis.com/css?family=Open+Sans');

html, body { height: 100%; }
body { margin: 0; font-family: "Open Sans", sans-serif; }

.container2{
    max-width: 1080px;
    padding: 20px 15px 20px 20px;
    margin: auto;
    background-color: #fff;
    height:100%
}

.margin-top-10 {
    margin-top: 10px;
}

.margin-top-20 {
    margin-top: 20px;
}

.margin-top-30 {
    margin-top: 30px;
}

.margin-top-70 {
    margin-top: 70px;
}

.title1 {
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
}

.text1 {
    font-size: 14px;
    line-height: 10px;
    display: flex;
    text-align: center;
}

input#file {
    cursor: pointer;
    display: none;
    width: 120%;
    padding: 120px 0 0 0;
    height: 100px;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 20px;
    background-size: 60px 60px;
}

.button-size {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 48px;
    line-height: 18px;
    text-transform: capitalize
}

.row {
    display: flex;
    flex-direction: row;

}

.column-elements {
    display: flex;
    flex-direction: column;
    margin-right: 40px;
    justify-content: center;
}

.doc-info-text {
    margin-bottom: 10px;
    margin-top: 0px;
    font-size: 16px;
}

.title2 {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
}

.row-flex {
    display: flex;
    flex-direction: row;
    flex: 1;
    width: 100%;
    flex-wrap: wrap;
}

.width48 {
    width: 48%
}

.margin-right-15 {
    margin-right: 15px
}

.margin-top-0 {
    margin-top: 0px;
}

.text2 {
    font-size: 14px;
    line-height: 16px;
    font-weight: 600;
}

.text3 {
    font-size: 16px;
    line-height: 24px;
    margin-top: 5px;
    margin-bottom: 0px;
}

.name-text {
    font-size: 12px;
    line-height: 16.34px;
    text-transform: capitalize;
    margin-bottom: 0px;
    font-style: italic;
    font-weight: 600;
}

.valid {
    background-color: "#CFE5AE"
}

.text1-2 {
    font-size: 12px;
    line-height: 10px;
    color: #507085;
}

.margin-top-100 {
    margin-top: 100px;
}

.margin-top-440 {
    margin-top: 440px;
}

.doc-info-text2 {
    font-size: 17px;
    align-self: center;
    font-weight: 600;
}

.inner-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 149px;
}

.doc-info-text3 {
    margin-bottom: 10px;
    margin-top: 30px;
    font-size: 16px;
}

.doc-info-text4 {
    font-size: 16px;
    margin-top: 0px;
    margin-bottom: 0px;
    line-height: 30px;
}

.card-size {
    width: 415px;
    height: 189px;
    padding: 20px 25px 20px 25px !important;
}

.logo-div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.name-eid-div {
    display: flex;
    flex-direction: column;
}

.bottom-div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.date {
    display: flex;
    align-items: flex-end;
}

.title-eid-date-text {
    font-weight: 400;
    font-style: italic;
    font-size: 12px;
    line-height: 16.34px;
}

.protection-text {
    font-size: 8px;
    font-weight: 550;
    line-height: 9.68px;
    color: #070707;
}

.bold {
    font-weight: 700 !important;
}

.protection-div {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.protection-image {
    display: flex;
    margin-right: 6px;
}

.protection-image2 {
    display: flex;
}

@media (max-width: 1000px) {
    .protection-image2 {
      padding-right:10px
    }
  }

.row-text {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

.column-text {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.annotation-div {
    display: flex;
    padding: 5px 25px 5px 35px;
    justify-content: space-between;
    border: 1px solid black;
    border-radius: 5px;
    min-width: 20%;
    width: fit-content;
}

.annotation-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.annotation-style {
    text-align: center;
    width: 100%;
}

.annotation-text {
    font-size:14px;
    margin-top:0px
}

.loader {
    width: 50px;
    padding: 8px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #25b09b;
    --_m: 
      conic-gradient(#0000 10%,#000),
      linear-gradient(#000 0 0) content-box;
    -webkit-mask: var(--_m);
            mask: var(--_m);
    -webkit-mask-composite: source-out;
            mask-composite: subtract;
    animation: l3 1s infinite linear;
  }
  @keyframes l3 {to{transform: rotate(1turn)}}