/* General */
html, body {
    width: 100%;
    height: 100%;
    margin: 0;
}

p {
    font-family: 'Karla', sans-serif;
    font-weight: 400;
}

.text-bold {
    font-weight: 500;
}

.divider {
    background: #8A4AF3;
    height: 3px;
    width: 100%;
    display: block;
}

.divider-secondary {
    background: #DEE0E8;
    display: block;
    width: 1px;
    height: 80px;
    margin: auto 17px auto 0;
}

@media screen and (max-width: 550px) {
    .divider-secondary {
        width: 100%;
        height: 1px;
        margin: 20px 0;
    }
}

.fa-solid, .fa-regular {
    color: #9396A5;
    font-size: 18px;
}

.container {
    min-height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    background: #E9EFF4;
}

header {
    margin: 20px;
}

header img {
    width: 100px;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    text-align: center;
    align-items: center;
    width: 500px;
    margin: 10px auto;
}

@media screen and (max-width: 550px) {
    .content {
        width: 440px;
    }
}

@media screen and (max-width: 500px) {
    .content {
        width: 90%;
    }
}

.content img {
    margin-bottom: 30px;
    width: 68px;
}

.card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.15);
}

.card h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #28242D;
    font-size: 20px;
    margin-top: 0;
}

.card h2 {
    color: #28242D;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 5px;
}

.card p {
    color: #4C4D55;
}

.card-footer {
    margin: 30px 0 15px 0;
}

.btn {
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    border-radius: 50px;
    background: #0D6AF6;
    text-decoration: none;
    color: #fff;
    padding: 10px 18px;
    margin-top: -20px;
    transition: ease-in-out 0.5s;
}

.btn:hover {
    background: #0D6AF6;
    color: #fff;
    box-shadow: 0px 4px 14px 0px rgba(17, 80, 228, 0.327);
}

.toast-copied {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    border-radius: 10px;
}


/* Results */

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.card-top h1 {
    text-align: left;
    margin-bottom: 0;
    margin-left: 25px;
}

@media screen and (max-width: 550px) {
    .card-top h1 {
        margin-left: 0;
    }
}

@media screen and (max-width: 400px) {
    .card-top h1 {
        margin-left: 15px;
        font-size: 18px;
    }
}

.card-top div {
    width: 100px;
}

.status-sqr {
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 10px;
    background: linear-gradient(90deg, #afb1c0 0%, #8f9fae 100%);
}

@media screen and (max-width: 550px) {
    .status-sqr {
        width: 50px;
        height: 50px;
    }
}

.status-green {
    background: linear-gradient(134deg, #77DF81 16.93%, #4EA43D 83.06%);
}

.status-amber {
    background: linear-gradient(134deg, #FFB74D 16.93%, #F09000 83.06%);
}

.status-red {
    background: linear-gradient(134deg, #F3693D 16.93%, #C84114 83.06%);
}

.status-default {
    background: linear-gradient(90deg, #afb1c0 0%, #8f9fae 100%);
}

.status-text {
    text-align: left;
}

.status-text .text-bold {
    text-transform: capitalize;
}

.card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

@media screen and (max-width: 550px) {
    .card-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

.card-col {
    text-align: left;
}

.card-col:first-child {
    min-width: 160px;
}

.card-col:first-child div {
    margin-top: 20px;
}

.card-col:first-child div span {
    margin-left: -10px;
}

.card-col:last-child {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fa-copy {
    cursor: pointer;
    transition: ease-in 0.3s;
}

.fa-copy:hover {
    color: #0D6AF6;
}

.fa-arrow-right-long {
    color: #4C4D55;
    margin-left: 8px;
    margin-right: 8px;
}

.fa-plus, .fa-check {
    font-size: 10px;
    position: relative;
}

.fa-plus {
    top: -3.345px;
    left: -13.3px;
}

.fa-check {
    font-size: 9px;
    top: -2px;
    left: -10.8px;
}

.card-col p {
    margin: 0;
}

#qrCode img {
    margin: 0 auto;
    padding-left: 8px;
}


/* Notice */

.notice {
    font-family: 'Karla', sans-serif;
    font-weight: 400;
    font-size: 14px;
    margin-top: 30px;
    padding: 10px;
    border: 2px solid #9396A5;
    border-radius: 10px;
    width: 95%;
}

.notice p {
    margin: 0;
    color: #4C4D55;
}

.notice span {
    font-weight: 500;
}

/* Footer */

footer {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

@media screen and (max-width: 550px) {
    footer {
        flex-direction: column;
        align-items: center;
    }
}

footer ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

footer ul li {
    display: inline;
}

footer ul li:first-child {
    margin-right: 10px;
}

footer p, footer a {
    color: #28242D;
    font-size: 14px;
}

footer p {
    margin: 2px 0 0 0;
}

@media screen and (max-width: 550px) {
    footer p {
        margin-bottom: 10px;
        text-align: center;
    }
}

footer a {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    transition: ease-in 0.3s;
}

footer a:hover {
    color: #0D6AF6;
}
