* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


/* body{
    display:flex;
    justify-content:center;
    align-items:center;
    height:100vh;
    width:100vw
    } */

.circle,
.circle svg {
    position: relative;
    width: 150px;
    height: 150px;
}

.circle {
    /* margin-left: auto; */
    /* margin-right: auto; */
    margin: 25px auto;
    text-align: center;
}

.circle svg circle {
    width: 150px;
    height: 150px;
    fill: none;
    stroke-width: 9;
    stroke: #000;
    transform: translate(5px, 5px);
    stroke-dasharray: 440;
    stroke-dashoffset: 440;
}

.circle svg circle:nth-child(1) {
    stroke-dashoffset: 0;
    stroke: #f3f3f3;
}

.circle svg circle:nth-child(2) {
    stroke-linecap: round;
    stroke: linear-gradient(180deg, #2dcce2 0%, #0074e0 100%);
    box-shadow: inset 0px 0px 4px rgba(0, 0, 0, 0.25);
    transform: rotate(-90deg) translate(5px, 5px);
    transform-origin: 50% 50%;
}

.circle .number {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-family: "Open Sans", sans-serif;
    font-weight: 800;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 60px;
    background-color: #0074e0;
    background-size: 100%;
    background-repeat: repeat;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
}

.blue-grad-text {
    background-image: linear-gradient(45deg, #2dcce2 0%, #0074e0 100%);
}

.red-grad-text {
    background-image: linear-gradient(45deg, #f11111 0%, #dc00e0 100%);
}

.green-grad-text {
    background-image: linear-gradient(45deg, #51e22d 0%, #00e08f 100%);
}

::selection {
    color: black;
    background-color: #f3f3f3;
}

.score-subtitle {
    font-family: "Open Sans";
    font-weight: 800;
    color: #999999;
}


/* new up  */

article.card.light {
    width: 500px;
    text-align: center;
}

.detailInfo {
    font-size: 13px;
    /* opacity: .5; */
    margin: 5px 0 20px 0;
    /* padding: 0 20px; */
    text-align: center;
    letter-spacing: 1px;
    color: #2d2727;
    font-weight: 500;
}

.flex.column.gridDetail {
    padding: 0 20px;
}

.light .grid .gridBox:last-child .gridDetail {
    border-left: dashed 1px #e1e1e1;
}

.light .grid .gridBox:first-child .gridDetail {
    border-right: dashed 1px #e1e1e1;
}

.card-title {
    font-weight: 600;
    font-size: 22px;
    margin: 30px 0 15px 0;
}

.card-subTitle {
    font-size: 14px;
    font-weight: 300;
    opacity: 0.7;
}

.mainInfo.flex-center {
    font-size: 23px;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}

.light .card-header {
    border-bottom: dashed 2px #eaeaea;
    padding-bottom: 20px;
}

.score-display {
    /* height: 20rem; */
    margin: 1rem auto 3rem;
}


/* ///////////////// */

section {
    /* height: 100%; */
    animation: bgcolor 1.2s ease forwards;
}

@keyframes bgcolor {
    0% {
        background: #fcd7d7;
    }

    50% {
        background: #cafadf;
    }

    100% {
        background: #fcefd2;
    }
}

.circle-text-color-anim {
    animation: circle-text-color-anim 1.2s normal forwards;
}

@keyframes circle-text-color-anim {
    0% {
        color: #ff3b30;
    }

    20% {
        color: #ff3b30;
    }

    30% {
        color: #ff3b30;
    }

    40% {
        color: #ff3b30;
    }

    50% {
        color: #ff9500;
    }

    60% {
        color: #ff9500;
    }

    70% {
        color: #28cd41;
    }

    80% {
        color: #28cd41;
    }

    90% {
        color: #28cd41;
    }

    100% {
        color: #26C63E;
    }
}

.circle-bg-color-anim {
    animation: circle-bg-color-anim 1.2s normal forwards;
}

@keyframes circle-bg-color-anim {
    0% {
        background: #faeaea;
    }

    50% {
        background: #faf5ea;
    }

    100% {
        background: #eafaf1;
    }
}

.score-circular {
    height: 100px;
    width: 100px;
    position: relative;
    margin: 0 auto;
    bottom: 10px;
    top: 100px;
    border-radius: 100%;
    transform: scale(2);
    box-shadow: 2px 4px 13px rgba(0, 0, 0, 0.09);
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
}

.score-circular:hover {
    transform: scale(2.4);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.09), 0 10px 10px rgba(0, 0, 0, 0.09);
}

@media (hover: none) and (pointer: coarse) {
    .score-circular:hover {
        transform: scale(1.3);
        box-shadow: 2px 4px 13px rgba(0, 0, 0, 0.08);
    }
}

.score-circular .score-inner {
    position: absolute;
    z-index: 11;
    top: 50%;
    left: 50%;
    height: 80px;
    width: 80px;
    transform: scale(1.1);
    margin: -40px 0 0 -40px;
    background-color: #eafaf1;
    border-radius: 100%;
    border: 0.5px solid rgba(251, 251, 251, 0.45);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08), 0 10px 10px rgba(0, 0, 0, 0.07);
}

.score-number {
    position: absolute;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 0px 1px 2px rgba(150, 150, 150, 0.14);
    font-family: sans-serif;
    z-index: 11;
    font-size: 29px;
    font-weight: 600;
    color: #080;
    /* content: '<?= $examination_details['score']; ?>'; */
    animation: score-counter 1.2s linear forwards;
}


/* .score-number::after {
        position: absolute;
        top: 42%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-shadow: 0px 1px 2px rgba(150, 150, 150, 0.14);
        font-family: sans-serif;
        z-index: 11;
        font-size: 29px;
        font-weight: 600;
        color: #080;

        animation: score-counter 1.2s linear forwards;
        content: <?php echo "'" . $examination_details['score'] . "'" ?>;
    } */

@keyframes score-counter {
    0% {
        content: '1';
        color: #ff3b30;
    }

    20% {
        content: '2';
        color: #ff3b30;
    }

    30% {
        content: '3';
        color: #ff3b30;
    }

    40% {
        content: '4';
        color: #ff3b30;
    }

    50% {
        content: '5';
        color: #ff9500;
    }

    60% {
        content: '6';
        color: #ff9500;
    }

    70% {
        content: '7';
        color: #28cd41;
    }

    80% {
        content: '8';
        color: #28cd41;
    }

    90% {
        content: '9';
        color: #28cd41;
    }

    100% {
        content: '10';
        color: #26C63E;
    }
}

.score-circular .score-text {
    position: absolute;
    top: 66%;
    left: 50%;
    font-family: sans-serif;
    transform: translate(-50%, -50%);
    text-shadow: 0px 1px 2px rgba(150, 150, 150, 0.14);
    z-index: 11;
    font-size: 11px;
    font-weight: 500;
    color: #080;
}

.score-circular .score-bar {
    position: absolute;
    height: 100%;
    width: 100%;
    background: #eafaf1;
    -webkit-border-radius: 100%;
    /* clip: rect(0px, 100px, 100px, 50px); */
    z-index: 9;
}

.score-circle .score-bar .score-progress {
    position: absolute;
    height: 100%;
    width: 100%;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    /* clip: rect(0px, 50px, 100px, 0px); */
    z-index: -8;
    background: #28cd4100;
}

@keyframes circle-progress-color-anim-right {
    0% {
        background: #ff3b30;
    }

    30% {
        background: #ff3b30;
    }

    99% {
        background: #ff9500;
    }

    100% {
        background: #28cd41;
    }
}

@keyframes circle-progress-color-anim-left {
    0% {
        background: #28cd41;
    }

    100% {
        background: #28cd41;
    }
}

.progress-right .score-progress {
    animation: progress-right 0.6s linear both, circle-progress-color-anim-right 0.6s normal forwards;
}

@keyframes progress-right {
    100% {
        transform: rotate(180deg);
    }
}

.progress-left {
    transform: rotate(180deg);
}

.progress-left .score-progress {
    animation: progress-left 0.6s linear both, circle-progress-color-anim-left 0.6s normal forwards;
    animation-delay: 0.6s;
}

@keyframes progress-left {
    100% {
        transform: rotate(140deg);
    }
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.circle,
.circle svg {
    position: relative;
    width: 150px;
    height: 150px;
}

.circle {
    /* margin-left: auto; */
    /* margin-right: auto; */
    margin: 25px auto;
    text-align: center;
}

.circle svg circle {
    width: 150px;
    height: 150px;
    fill: none;
    stroke-width: 9;
    stroke: #000;
    transform: translate(5px, 5px);
    stroke-dasharray: 440;
    stroke-dashoffset: 440;
}

.circle svg circle:nth-child(1) {
    stroke-dashoffset: 0;
    stroke: #f3f3f3;
}

.circle svg circle:nth-child(2) {
    stroke-linecap: round;
    stroke: linear-gradient(180deg, #2dcce2 0%, #0074e0 100%);
    box-shadow: inset 0px 0px 4px rgba(0, 0, 0, 0.25);
    transform: rotate(-90deg) translate(5px, 5px);
    transform-origin: 50% 50%;
}

.circle .number {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-family: "Open Sans", sans-serif;
    font-weight: 800;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 60px;
    background-color: #0074e0;
    background-size: 100%;
    background-repeat: repeat;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
}

.blue-grad-text {
    background-image: linear-gradient(45deg, #2dcce2 0%, #0074e0 100%);
}

.red-grad-text {
    background-image: linear-gradient(45deg, #f11111 0%, #dc00e0 100%);
}

.green-grad-text {
    background-image: linear-gradient(45deg, #51e22d 0%, #00e08f 100%);
}

::selection {
    color: black;
    background-color: #f3f3f3;
}

.score-subtitle {
    font-family: "Open Sans";
    font-weight: 800;
    color: #999999;
}


/* new up  */

article.card.light {
    width: 500px;
    text-align: center;
}

.detailInfo {
    font-size: 13px;
    /* opacity: .5; */
    margin: 5px 0 20px 0;
    /* padding: 0 20px; */
    text-align: center;
    letter-spacing: 1px;
    color: #2d2727;
    font-weight: 500;
}

.flex.column.gridDetail {
    padding: 0 20px;
}

.light .grid .gridBox:last-child .gridDetail {
    border-left: dashed 1px #e1e1e1;
}

.light .grid .gridBox:first-child .gridDetail {
    border-right: dashed 1px #e1e1e1;
}

.card-title {
    font-weight: 600;
    font-size: 22px;
    margin: 30px 0 15px 0;
}

.card-subTitle {
    font-size: 14px;
    font-weight: 300;
    opacity: 0.7;
}

.mainInfo.flex-center {
    font-size: 23px;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}

.light .card-header {
    border-bottom: dashed 2px #eaeaea;
    padding-bottom: 20px;
}

.score-display {
    /* height: 20rem; */
    margin: 1rem auto 3rem;
}


/* ///////////////// */

.py-2-1 {
    padding: 2rem 1rem !important;
}