@font-face {
    font-family: "Sarina";
    src: url("../font/Sarina-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}
/* Will delete later */
.test {
    /* border: dotted 1px black; */
}
.disabled {
    display: none !important;
}
/* will delete later */
.sarina {
    font-family: "Sarina", serif;
}
.blue2 {
    background-color: #a2d2ff;
}
.blue3 {
    background-color: #e2f6ff;
}
.graycard {
    background-color: #f8f6f3;
}
.graycard2 {
    background-color: #f0ebe3;
}
.mascot-card {
    border-radius: 16px;
    border: solid 1px black;
    border: solid 1px var(--grey2);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
}
.mascot-card-cont {
}
.mascot-title-section {
    width: 100%;
    height: auto;
    padding: 15px;
}
.mascot-title {
    width: 100%;
    height: 50px;
    border-radius: 14px;
    color: #333333;
}
.mascot-title-alias {
    color: #333333;
    font-size: 22px;
    font-weight: 700;
}
.mascot-number {
    font-size: 24px;
    font-weight: 600;
    color: #57606a;
    padding: 4px 8px;
    border-radius: 8px;
}
.mascot-content-section {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
}
.mascot-image-container {
    width: 100%;
    border-radius: 10px;
    aspect-ratio: 6/5;
    margin-bottom: 15px;
    overflow: hidden;
    position: relative;
    border: solid 1px var(--grey2);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
}
.mascot-image {
    width: 100%;
    height: 100%;
    border-radius: 16px;
}
.mascot-image-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        85deg,
        transparent,
        rgba(255, 255, 255, 0.5),
        transparent
    );
    animation: shimmer 3s infinite;
    pointer-events: none;
}
@keyframes shimmer {
    0% {
        left: -100%;
    }
    33.33% {
        left: 100%;
    }

    33.34% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}
.mascot-description-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.mascot-description {
    padding-top: 10px;
}
.mascot-description p {
    margin: 0 0 4px 0;
    font-size: 14px;
    color: #57606a;
    font-weight: 600;
}
.mascot-description p span {
    color: #1c2128;
}
.mascot-description-right {
    text-align: right;
}
.age {
    font-size: 14px;
    font-weight: 600;
    color: #57606a;
    margin-bottom: 8px;
}
.age span {
    font-size: 18px;
    font-weight: 700;
    color: #1c2128;
    display: block;
}
.barcode {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 1px;
    height: 40px;
}

.barcode-line {
    background-color: #57606a;
    width: 2px;
}
.mascot-explanation {
    color: black;
    padding: 10px;
    font-size: 20px;
    width: 450px;
    max-width: 100%;
    text-align: left;
}
.mascot-mockup-img {
    width: 400px;
    max-width: 85vw;
    max-width: 85dvw;
    border: solid 2px #a9a097;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
    border-radius: 16px;
    aspect-ratio: 1;
    object-fit: cover;
}
.btn-mascot {
    border: solid 2px var(--grey2);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
    background-color: white;
    border-radius: 100%;
    width: 45px;
    height: 45px;
    text-align: center;
    align-items: center;
    aspect-ratio: 1;
    color: #57606a;
    font-weight: 500;
}
.btn-mascot.active {
    border: solid 2px #e8ddd1;
    background-color: white;
    color: #57606a;
}
.btn-mascot:hover {
    color: #333333;
    font-weight: 700;
    border: solid 2px #e8ddd1;
    background-color: #e8ddd1;
}
.button-mascot-frame {
    text-align: end;
    margin: 10px;
}
.senara-container {
    width: 95%;
    max-width: 1500px;
    margin-top: 50px;
    margin-bottom: 50px;
}
.senara-right-image {
    width: 80%;
    aspect-ratio: 3/4;
    border: solid 1px var(--black);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
}
.senara-right {
    color: var(--black);
}
.what-is-senara {
    font-size: 40px;
    font-weight: 700;
}
.senara-description {
    color: #333;
    text-align: justify;
    font-size: 18px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 800px;
}
.submission-button {
    border: solid 2px #333333;
    background: var(--blue);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    width: 100%;
    text-align: center;
    align-items: center;
    color: var(--whiteish);
    font-weight: 500;
    padding: 8px 20px;
    font-size: 18px;
    margin-top: 20px;
}
.submission-button:hover,
.submission-button.active {
    background: rgb(25, 69, 158);
    color: white;
}
/* md */
@media (max-width: 992px) {
    .mascot-card-cont {
        display: flex;
        justify-content: center;
    }
}
/* lg */
@media (max-width: 1100px) {
    .senara-image-container {
        display: flex;
        justify-content: center;
    }
    .senara-right {
        margin-top: 10px;
    }
}
.senara-right-image-landscape {
    width: 100%;
    border: solid 1px var(--black);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
    margin-bottom: 10px;
}
