canvas {
    width: 100%;
    height: 600;
    border: 1px solid #ccc;
}

.ef_canvas-container {
    display: flex;
    justify-content: left;
    align-items: flex-start;
}

.ef_canvas-container p {
    margin: 0;
}

.ef_canvas-item {
    width: 100%;
}

.ef_canvas-options-item {
    margin-bottom: 8px;
    width: 100%;
    border-top: 1px solid #cccccc77;
}

/* CERT CODE START **************************************** */
html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.04);
    overflow-x: hidden;
}

.aureo-cert-verification-page {
    margin: O;
    padding: 0;
}

.aureo-cert-header {
    background-color: white;
    padding: 15px 22px;
    position: fixed;
    top: 0;
    width: 100%;
    box-sizing: border-box;

}

.aureo-cert-header .aureo-cert-logo img {
    height: 40px;

}

.aureo-cert-header .aureo-cer-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.aureo-cert-menu a {
    text-decoration: none;
}

.aureo-cert-content {
    min-height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.aureo-cert-content .aureo-cert-card {
    padding: 15px;
    background-color: white;
    border-radius: 6px;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.123);
    max-width: 400px;
    width: max-content;
    position: relative;
}

.aureo-cert-content .aureo-cert-card .aureo-cert-descrip-content {
    padding: 15px;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center !important;
}

.aureo-cert-content .aureo-cert-card .aureo-cert-descrip-content p {
    color: #9e9e9e;
}

.aureo-cert-content .aureo-cert-card .aureo-cert-descrip-content h3 {
    color: orangered;
}

.aureo-cert-content .aureo-cert-card .aureo-cert-descrip-content .icon-centainer {
    padding: 10px;
    border-radius: 15px;
    background-color: rgba(255, 68, 0, 0.1);
    max-width: max-content;

}

.icon-centainer svg {
    width: 35px;
    stroke: orangered;
    margin: 0;
}

.aureo-cert-verify-input {
    width: 100%;
}

.aureo-cert-input {
    padding: 0;
    margin: 0;
    position: relative;
    width: 100%;
}

.aureo-cert-input svg {
    width: 20px;
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    stroke-width: 1px;
    fill: orangered;
}
.aureo-cert-close-button{
    position: absolute;
    top: 6px;
    right: 6px;
    cursor: pointer;
}
.aureo-cert-close-button svg{
    width: 30px;
}
.aureo-cert-close-button .cls-1 {
    fill: none;
    stroke: rgb(194, 28, 28);
    stroke-miterlimit: 10;
    stroke-width: 4px;
}

.aureo-cert-verify-input input {
    border: 1px solid rgba(0, 0, 0, 0.07);
    padding: 8px 12px 8px 50px;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.04);
    color: orangered;
    width: 100%;
    box-sizing: border-box;
    text-transform: uppercase !important;
}

.aureo-cert-verify-input input:focus {
    outline: 1px solid rgba(255, 68, 0, 0.404);
}

.aureo-cert-verify-input .aureo-cert-submit-button {
    background-color: rgba(255, 68, 0, 0.856);
    color: rgb(224, 224, 224);
    border: 0;
    padding: 10px;
    width: 100%;
    border-radius: 8px;
    margin-top: 10px;
    cursor: pointer;
}

.aureo-cert-card-footer-content {
    text-transform: uppercase;
    color: #cccccc;
    text-align: center;
    font-size: 12px;
    margin-top: 20px;
}


.aureo-cert-doc-footer {
    width: 100%;
    border: 0;
    border-top: 1px solid rgb(231, 231, 231);
    padding-top: 20px;
}

.aureo-cert-doc-footer p {
    margin: 0;
}

.aureo-cert-doc-footer .aureo-cert-doc-footer-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cert-doc-labels,
.cert-doc-value {
    text-align: center;
}

.cert-doc-labels {
    font-size: 9px;
    text-align: center;
    color: rgb(192, 192, 192);
}

.cert-doc-value {
    font-size: 12px;
    color: orangered;
}

.aureo-cert-loader {
    font-size: 10px;
    color: rgb(184, 184, 184);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 2px;
}

.aureo-cert-loader-anime {
    fill: orangered;
    width: 40px;
    height: 40px;
    box-sizing: border-box;
    transform-origin: center;
    animation: loaderAnimation 1s linear infinite;
}

@keyframes loaderAnimation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}