﻿@import url("https://fonts.googleapis.com/css2?family=Lobster&display=swap");

:root {
    --svg-wave: url(https://assets.underwatermath.com/underwatermath/wave.svg);
    --waves-width: 640px;
    --waves-height: 64px;
    --anim-duration: 5s;
    --max-width: 100%;
    --heading-color: linear-gradient(180deg, #f7ff00, #ffcc2e);
    --orange-btn: linear-gradient(180deg, rgb(255 109 37) 0%, rgb(238 90 18) 65%);
    --primary-font-family: "Fira Sans", sans-serif;
    --line-border-fill: blue;
    --line-border-empty: lightgrey;
    --brown-color: #983329;
    --questionBg: url(https://assets.underwatermath.com/underwatermath/questionBg.png);
    --blueBg: linear-gradient(180deg, rgba(152, 218, 252, 0.99) 0%, #24a1e2 100%);
}

* {
    box-sizing: border-box;
    margin: 0;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: rgb(255 109 37);
    border-radius: 7px;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

html {
    overflow-x: hidden;
    scroll-behavior: smooth !important;
}

header {
    position: relative;
    z-index: 1;
    text-align: left;
}

img {
    max-width: 100%;
}

.waves-container {
    width: min(100%, var(--max-width));
    margin: 0 auto;
    background-color: white;
    padding: 0em 0 0;
    box-sizing: border-box;
}

.waves-div {
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--blue-siw);
    text-align: center;
}

.waves {
    list-style-type: none;
    margin: 0;
    padding: 0;
    position: absolute;
    width: 200%;
    height: var(--waves-height);
    top: calc(var(--waves-height) * -1);
    left: 0;
    overflow: hidden;
}

    .waves li {
        position: absolute;
        display: block;
        bottom: 0;
        left: 0;
        width: 100%;
        height: var(--waves-height);
        color: transparent;
        -webkit-user-select: none;
        user-select: none;
        background-image: var(--svg-wave);
        background-size: var(--waves-width) var(--waves-height);
    }

@keyframes move_wave {
    0% {
        transform: translateX(0) translateZ(0) scaleY(1);
    }

    50% {
        transform: translateX(-25%) translateZ(0) scaleY(0.55);
    }

    100% {
        transform: translateX(-50%) translateZ(0) scaleY(1);
    }
}

@keyframes animateWave {
    0% {
        background-position-x: 0;
    }

    100% {
        background-position-x: var(--waves-width);
    }
}

.waves li:nth-child(1) {
    bottom: -15px;
}

.waves li:nth-child(2) {
    bottom: -7px;
    opacity: 0.7;
    background-position-x: 10%;
}

.waves li:nth-child(3) {
    bottom: -5px;
    opacity: 0.5;
    background-position-x: 5%;
}

.waves li:nth-child(4) {
    opacity: 0.3;
    background-position-x: -5%;
}

ul.waves.wavesAnimation li:nth-child(even) {
    animation-direction: reverse;
}

ul.waves.wavesAnimation li {
    animation: animateWave var(--anim-duration) linear infinite;
    filter: var(--filter-black-to-blue-siw);
}

    ul.waves.wavesAnimation li:nth-child(n + 3) {
        background-size: calc(var(--waves-width) / 2);
        background-image: var(--svg-wave), linear-gradient(to top, #0087f9 50%, transparent 50%);
    }

body {
    font-family: var(--primary-font-family) !important;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex-grow: 999;
    padding-bottom: calc(2em + var(--waves-height));
}

.header-lable .rank {
    opacity: 0.7;
    font-weight: 300;
}

.banner-bg {
    background-color: #fff;
    width: 100%;
}

.header-right {
    padding-right: 30px;
}

body .sec-heading {
    background: rgb(0, 108, 249);
    background: linear-gradient(180deg, rgba(0, 135, 249, 1) 0%, rgba(0, 10, 156, 1) 66%, rgba(0, 4, 59, 1) 100%);
    padding: 0 30px 250px 30px;
    min-height: calc(100vh - 122px);
}

    body .sec-heading > div {
        position: relative;
        z-index: 1;
    }

.summaryContainer.container {
    margin: 0 auto;
}

.sandContainer {
    padding-bottom: 150px;
    background-image: url(https://assets.underwatermath.com/underwatermath/sand-bg.svg);
    background-repeat: repeat;
    background-position-y: 107%;
    background-size: contain;
    position: absolute;
    bottom: -30px;
    width: 100%;
    left: 0;
}

/* bg fish */

svg#fish {
    top: 20em;
}

/* Fish Animation */
svg.fish {
    overflow: visible;
}

@-webkit-keyframes swim {
    0% {
        left: -235px;
    }

    90% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes swim {
    0% {
        left: -235px;
    }

    70% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.fish {
    width: 235px;
    height: 104px;
    left: -235px;
    position: absolute;
    /* animation: swim 20s;
  -webkit-animation: swim 20s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-timing-function: linear; */
}

svg #fish1,
svg #fish2,
svg #fish3,
svg #fish4,
svg #fish5,
svg #fish6 {
    fill: rgb(255 255 255 / 31%);
    /* -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite; */
}

svg #fish2 {
    animation-delay: 0.5s;
    -webkit-animation-delay: 0.5s;
}

svg #fish3 {
    animation-delay: 0.2s;
    -webkit-animation-delay: 0.2s;
}

svg #fish4 {
    animation-delay: 0.4s;
    -webkit-animation-delay: 0.4s;
}

svg #fish5 {
    animation-delay: 0.1s;
    -webkit-animation-delay: 0.1s;
}

svg #fish6 {
    animation-delay: 0.3s;
    -webkit-animation-delay: 0.3s;
}

/**/
@-moz-keyframes bounce {

    0%, 50%, 100% {
        -moz-transform: translateY(0);
        transform: translateY(0);
    }

    25% {
        -moz-transform: translateY(-5px);
        transform: translateY(-5px);
    }

    75% {
        -moz-transform: translateY(-3px);
        transform: translateY(-3px);
    }
}

@-webkit-keyframes bounce {

    0%, 50%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    25% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }

    75% {
        -webkit-transform: translateY(-3px);
        transform: translateY(-3px);
    }
}

@keyframes bounce {

    0%, 50%, 100% {
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    25% {
        -moz-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }

    75% {
        -moz-transform: translateY(-3px);
        -ms-transform: translateY(-3px);
        -webkit-transform: translateY(-3px);
        transform: translateY(-3px);
    }
}

/*END Fish Animation*/
/* copywrite
   */
.copyright {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    color: #fff;
    bottom: 0;
    font-size: 12px;
    width: 100%;
    text-align: center;
}

/* cards */
:root {
    --color1: rgb(0, 231, 255);
    --color2: rgb(255, 0, 231);
    --back: url(https://assets.underwatermath.com/underwatermath/Cardback.jpg);
    --charizard1: #fac;
    --charizard2: #ddccaa;
    --charizardfront: url(https://assets.underwatermath.com/underwatermath/Starfish.png);
    --pika1: #54a29e;
    --pika2: #a79d66;
    --pikafront: url(https://assets.underwatermath.com/underwatermath/bossCard.png);
}

.cards .card {
    width: 71.5vw;
    height: 100vw;
    position: relative;
    margin: 20px 0 50px 0;
    z-index: 10;
    touch-action: none;
    border-radius: 5%/3.5%;
    transition: transform 0.5s ease, box-shadow 0.2s ease;
    will-change: transform, filter;
    background-color: #040712;
    background-image: var(--front);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    transform-origin: center;
}

/* extra */

.student-details .student-schoolName {
    width: 100%;
    display: inline-block;
    color: #943128;
    font-family: var(--primary-font-family);
}

body .student-details .logout {
    position: absolute;
    right: 15px;
    width: 20px;
    top: 18px;
    cursor: pointer;
}

    body .student-details .logout:before {
        content: "";
        height: 50px;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #943128 48%, rgba(255, 255, 255, 0) 100%);
        width: 1px;
        display: inline-block;
        position: absolute;
        left: -12px;
        top: -12px;
    }

.banner-bg header {
    padding-right: 15px;
    display: flex;
    justify-content: space-between;
}

.student-details {
    background: rgb(249, 243, 12);
    background: linear-gradient(180deg, rgba(249, 243, 12, 0.8) 0%, rgba(254, 212, 39, 0.8) 50%);
    border-radius: 5px;
    padding-top: 10px;
    padding-bottom: 6px;
    box-sizing: border-box;
    min-width: 300px;
    position: relative;
    margin-top: 10px;
}

    .student-details .student-container {
        padding-left: 65px;
        padding-right: 55px;
    }

    .student-details .custom-seperator {
        border-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgb(129 0 0) 48%, rgba(255, 255, 255, 0) 100%);
        border-image-slice: 1;
        margin-top: 5px;
    }

.coin {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
}

span.coin-img img {
    width: 30px;
}

span.coin-count {
    color: #943128;
    font-weight: 500;
    font-family: var(--primary-font-family);
    font-size: 20px;
    vertical-align: middle;
    margin-left: 4px;
}

body .student-details .avatarImgBox {
    left: 10px;
    position: absolute;
    z-index: 2;
    width: 53px;
    top: 10px;
}

.bubbles .studentName a {
    font-weight: 500;
    font-size: 17px;
    color: #943128;
}

.schoolName {
    font-size: 14px;
}

thead tr {
    background: var(--heading-color);
}

    thead tr th {
        color: var(--brown-color);
    }

body .nav-tabs .nav-link.active,
body .nav-tabs .nav-link:hover {
    background: rgb(255 109 37);
    /* background: linear-gradient(180deg, rgb(255 109 37) 65%, rgb(247 254 0) 100%); */
    color: #fff;
}

.aqua-table ul.nav.nav-tabs .nav-item {
    margin-bottom: 1px;
}

body table.table {
    margin-bottom: 0;
    overflow: hidden;
}

body .aquaTradeTable table.table {
    border-radius: 5px;
}

.aquaTradeTable th h4 {
    font-size: 20px;
}

.aquaTradeTable thead tr {
    background: #69aaf0;
}

    .aquaTradeTable thead tr th {
        color: #fff;
    }

.aquaTradeTable table tbody tr:first-child th {
    padding: 12px 10px;
    color: var(--brown-color);
    font-weight: 500;
}

.aquaTradeTable table tbody tr:first-child,
.aquaTradeTable table tbody tr:first-child:hover {
    background: var(--heading-color);
}

body .aqua-table table {
    border-radius: 0 0 5px 5px;
}

body .table-striped tbody tr:nth-of-type(odd) {
    background-color: #fff;
}

body .table-striped tbody tr:hover,
body .table-striped tbody tr:nth-of-type(even):hover {
    background: #fff6c1;
}

body .table-striped tbody tr {
    border-bottom: 1px solid #ddd;
}

body .nav-tabs .nav-item .nav-link {
    border: none;
}

i.fas {
    font-family: "FontAwesome";
}

.navbar-expand-lg .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
}

/* animation plant */

.wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.base {
    position: relative;
    display: block;
    width: 110px;
}

.flowerpot {
    background: #62bb46;
    width: 107px;
    height: 30px;
    position: absolute;
    z-index: 0;
    bottom: -9px;
    left: 0;
    border-radius: 10px 5px 0 0;
}

footer {
    margin-top: -8px;
}

.blade {
    position: absolute;
    bottom: 69px;
    overflow: hidden;
    transform-origin: 50% 100%;
    z-index: 1;
}

.blade-left-s {
    height: 60px;
    width: 50px;
    left: -15px;
    animation: wave 3s infinite ease-in-out;
}

.blade-left-s2 {
    height: 60px;
    width: 50px;
    left: -17px;
    animation: wave 3s infinite ease-in-out;
    bottom: 0;
}

.blade-left-s3 {
    height: 60px;
    width: 50px;
    left: -25px;
    animation: wave 3s infinite ease-in-out;
}

.blade-left-l {
    height: 100px;
    width: 80px;
    left: 7px;
    animation: wave2 4s infinite ease-in-out;
}

.blade-left-l4 {
    height: 100px;
    width: 80px;
    left: 14px;
    animation: wave2 4s infinite ease-in-out;
}

.blade-right-s {
    height: 50px;
    width: 80px;
    right: -35px;
    animation: wave2 3.2s -0.5s infinite ease-in-out;
}

.blade-right-s3 {
    height: 171px;
    width: 80px;
    right: -24px;
    animation: wave2 3.2s -0.5s infinite ease-in-out;
}

.wrapBox2 .flowerpot {
    background-image: url(https://assets.underwatermath.com/underwatermath/seaPlantBase.png);
    background-repeat: no-repeat;
    background-color: #cc477c;
}

.blade-right-l {
    height: 75px;
    width: 80px;
    right: -22px;
    animation: wave 3.2s -1s infinite ease-in-out;
}

.blade-right-l5 {
    height: 75px;
    width: 80px;
    right: -11px;
    animation: wave 3.2s -1s infinite ease-in-out;
}

.blade-center {
    height: 120px;
    width: 90px;
    left: -15px;
    animation: wave 3s -1.2s infinite ease-in-out;
}

.blade-center1 {
    height: 120px;
    width: 90px;
    left: 23px;
    animation: wave 3s -1.2s infinite ease-in-out;
}

.wrapBox.wrapBox2 {
    right: 9px;
    position: absolute;
}

    .wrapBox.wrapBox2 .flowerpot {
        border-radius: 20px 20px 0 0;
        width: 136px;
        left: -14px;
    }

    .wrapBox.wrapBox2 .blade-left-s {
        height: 169px;
        left: -6px;
        bottom: 37px;
    }

.wrapBox2 .blade-right-s {
    right: inherit;
    left: 25px;
    height: 162px;
}

.wrapBox2 .blade-left-l {
    height: 145px;
    left: 78px;
}

.wrapBox2 .blade-right-l img {
    height: 103px;
}

.wrapBox2 .blade-right-l {
    bottom: 0px;
    height: 151px;
}

.wrapBox {
    opacity: 0.8;
}

    .wrapBox.wrapBox2 {
        opacity: 0.99;
    }

    .wrapBox.wrapBox3 {
        left: 50%;
        position: relative;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        width: 100px;
    }

@keyframes wave {
    0% {
        transform: rotateZ(3deg) translateZ(-1px);
    }

    25% {
        transform: rotateZ(-4deg) translateZ(-1px);
    }

    50% {
        transform: rotateZ(2deg) translateZ(-1px);
    }

    75% {
        transform: rotateZ(-6deg) translateZ(-1px);
    }

    100% {
        transform: rotateZ(3deg) translateZ(-1px);
    }
}

@keyframes wave2 {
    0% {
        transform: rotateZ(0deg) translateZ(-1px);
    }

    25% {
        transform: rotateZ(-3deg) translateZ(-1px);
    }

    50% {
        transform: rotateZ(3deg) translateZ(-1px);
    }

    75% {
        transform: rotateZ(-1deg) translateZ(-1px);
    }

    100% {
        transform: rotateZ(0deg) translateZ(-1px);
    }
}

/* end animation plat */
body .table-striped tbody tr:nth-of-type(even) {
    background-color: #fff;
}

.col-lg-8 .row .col-lg-8 {
    padding-right: 0;
}

/* ticket button */
.tickitContainer {
    padding-top: 31px;
}

.col-6.chestBox {
    padding-left: 14%;
    cursor: pointer;
}

.ticket-btn img.ticketShadow {
    opacity: 0;
    position: absolute;
    left: 20%;
    bottom: -35px;
    z-index: 1;
    transition: 0.5s all ease-in;
}

.ticket-btn img {
    z-index: 2;
    position: relative;
}

.ticket-btn.text-center {
    position: relative;
}

.ticket-btn:hover img.ticketShadow {
    opacity: 0.6;
    transition: 0.5s all ease-in;
}

.col-6.chestBox .chestShine {
    position: absolute;
    z-index: 0;
    left: 46px;
    opacity: 0;
    transition: 0.5s all ease-in;
    width: 120px;
}

.col-6.chestBox img {
    position: relative;
    z-index: 1;
}

.col-6.chestBox:hover .chestShine {
    opacity: 1;
    transition: 0.5s all ease-out;
}

.ticket-btn.text-center a:hover img,
.ticket-btn.text-center a:hover div {
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.ticket-btn.text-center a img,
.ticket-btn.text-center a div {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.col-6.chestBox img {
    width: 150px;
    height: auto;
}

.ticket-btn button {
    font-family: var(--primary-font-family);
    color: #ffffff;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
}

.ticket-btn .ticketImg img {
    max-width: 40px;
}

/* end ticket button */

/* end extra */

.cards .card {
    width: clamp(8.9vw, 61vh, 10vw);
    height: clamp(10vw, 82vh, 13.2vw);
}

    .cards .card.charizard {
        --color1: var(--charizard1);
        --color2: var(--charizard2);
        --front: var(--charizardfront);
    }

    .cards .card.pika {
        --color1: var(--pika1);
        --color2: var(--pika2);
        --front: var(--pikafront);
    }

.card1 {
    background-position: 50% 50%;
    background-size: 80% 80%;
    background-image: linear-gradient(115deg, transparent 0%, var(--color1) 25%, transparent 47%, transparent 53%, var(--color2) 75%, transparent 100%);
    opacity: 0.5;
    filter: brightness(0.5) contrast(1);
    z-index: 1;
    position: absolute;
    left: 0%;
    right: 0;
    bottom: 0;
    top: 0;
    background-repeat: no-repeat;
    mix-blend-mode: color-dodge;
    transition: all 0.33s ease;
}

.card2 {
    background-image: url(https://assets.underwatermath.com/underwatermath/sparkles.gif), url(https://assets.underwatermath.com/underwatermath/holo.png), linear-gradient(125deg, #ff008450 15%, #fca40040 30%, #ffff0030 40%, #00ff8a20 60%, #00cfff40 70%, #cc4cfa50 85%);
    background-position: 50% 50%;
    background-size: 84% 84%;
    background-blend-mode: overlay;
    z-index: 2;
    transition: all 0.33s ease;
    mix-blend-mode: color-dodge;
    opacity: 0.75;
    width: 80%;
    height: 80%;
    position: absolute;
    top: 12%;
    box-shadow: -5px -5px 5px -5px var(--color1), 5px 5px 5px -5px var(--color2), -7px -7px 10px -5px transparent, 7px 7px 10px -5px transparent, 0 0 5px 0px rgba(255, 255, 255, 0), 0 55px 35px -20px rgba(0, 0, 0, 0.5);
    left: 12%;
}

.cards .card.active:after,
.cards .card:hover:after {
    /* filter: brightness(1) contrast(1); */
    opacity: 1;
}

.cards .card.active,
.cards .card:hover {
    -webkit-animation: none;
    animation: none;
    transition: box-shadow 0.1s ease-out;
}

    .cards .card.active:before,
    .cards .card:hover:before {
        -webkit-animation: none;
        animation: none;
        background-image: linear-gradient(110deg, transparent 25%, var(--color1) 48%, var(--color2) 52%, transparent 75%);
        background-position: 50% 50%;
        background-size: 85% 85%;
        opacity: 0.88;
        /* filter: brightness(0.66) contrast(1.33); */
        transition: none;
    }

    .cards .card.active:before,
    .cards .card:hover:before,
    .cards .card.active:after,
    .cards .card:hover:after {
        -webkit-animation: none;
        animation: none;
        transition: none;
    }

.custom-border-left .cards .col-6 .card.charizard {
    left: 14%;
}

.custom-border-left .cards .col-6 .card.pika {
    left: 13%;
    background-color: transparent;
    border: none;
}

.custom-border-left .card h4 {
    color: #fff;
    font-family: var(--primary-font-family);
    font-size: 16px;
    text-align: center;
    background: #3596ff;
    margin-bottom: 0;
    padding: 5px 0;
    margin-top: 29px;
    box-shadow: 0 1px 6px rgb(0 0 0 / 52%);
    border-radius: 5px;
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
}

.cards .card.animated {
    transition: none;
    /* -webkit-animation: holoCard 12s ease 0s 1;
  animation: holoCard 12s ease 0s 1; */
    cursor: pointer;
}

    .cards .card.animated:before {
        transition: none;
        /* -webkit-animation: holoGradient 12s ease 0s 1;
  animation: holoGradient 12s ease 0s 1; */
    }

    .cards .card.animated:after {
        transition: none;
        /* -webkit-animation: holoSparkle 12s ease 0s 1;
  animation: holoSparkle 12s ease 0s 1; */
    }

@-webkit-keyframes holoSparkle {

    0%, 100% {
        opacity: 0.75;
        background-position: 50% 50%;
        filter: brightness(1.2) contrast(1.25);
    }

    5%, 8% {
        opacity: 1;
        background-position: 40% 40%;
        filter: brightness(0.8) contrast(1.2);
    }

    13%, 16% {
        opacity: 0.5;
        background-position: 50% 50%;
        filter: brightness(1.2) contrast(0.8);
    }

    35%, 38% {
        opacity: 1;
        background-position: 60% 60%;
        filter: brightness(1) contrast(1);
    }

    55% {
        opacity: 0.33;
        background-position: 45% 45%;
        filter: brightness(1.2) contrast(1.25);
    }
}

@keyframes holoSparkle {

    0%, 100% {
        opacity: 0.75;
        background-position: 50% 50%;
        filter: brightness(1.2) contrast(1.25);
    }

    5%, 8% {
        opacity: 1;
        background-position: 40% 40%;
        filter: brightness(0.8) contrast(1.2);
    }

    13%, 16% {
        opacity: 0.5;
        background-position: 50% 50%;
        filter: brightness(1.2) contrast(0.8);
    }

    35%, 38% {
        opacity: 1;
        background-position: 60% 60%;
        filter: brightness(1) contrast(1);
    }

    55% {
        opacity: 0.33;
        background-position: 45% 45%;
        filter: brightness(1.2) contrast(1.25);
    }
}

@-webkit-keyframes holoGradient {

    0%, 100% {
        opacity: 0.5;
        background-position: 50% 50%;
        filter: brightness(0.5) contrast(1);
    }

    5%, 9% {
        background-position: 100% 100%;
        opacity: 1;
        filter: brightness(0.75) contrast(1.25);
    }

    13%, 17% {
        background-position: 0% 0%;
        opacity: 0.88;
    }

    35%, 39% {
        background-position: 100% 100%;
        opacity: 1;
        filter: brightness(0.5) contrast(1);
    }

    55% {
        background-position: 0% 0%;
        opacity: 1;
        filter: brightness(0.75) contrast(1.25);
    }
}

@keyframes holoGradient {

    0%, 100% {
        opacity: 0.5;
        background-position: 50% 50%;
        filter: brightness(0.5) contrast(1);
    }

    5%, 9% {
        background-position: 100% 100%;
        opacity: 1;
        filter: brightness(0.75) contrast(1.25);
    }

    13%, 17% {
        background-position: 0% 0%;
        opacity: 0.88;
    }

    35%, 39% {
        background-position: 100% 100%;
        opacity: 1;
        filter: brightness(0.5) contrast(1);
    }

    55% {
        background-position: 0% 0%;
        opacity: 1;
        filter: brightness(0.75) contrast(1.25);
    }
}

@-webkit-keyframes holoCard {

    0%, 100% {
        transform: rotateZ(0deg) rotateX(0deg) rotateY(0deg);
    }

    5%, 8% {
        transform: rotateZ(0deg) rotateX(6deg) rotateY(-20deg);
    }

    13%, 16% {
        transform: rotateZ(0deg) rotateX(-9deg) rotateY(32deg);
    }

    35%, 38% {
        transform: rotateZ(3deg) rotateX(12deg) rotateY(20deg);
    }

    55% {
        transform: rotateZ(-3deg) rotateX(-12deg) rotateY(-27deg);
    }
}

@keyframes holoCard {

    0%, 100% {
        transform: rotateZ(0deg) rotateX(0deg) rotateY(0deg);
    }

    5%, 8% {
        transform: rotateZ(0deg) rotateX(6deg) rotateY(-20deg);
    }

    13%, 16% {
        transform: rotateZ(0deg) rotateX(-9deg) rotateY(32deg);
    }

    35%, 38% {
        transform: rotateZ(3deg) rotateX(12deg) rotateY(20deg);
    }

    55% {
        transform: rotateZ(-3deg) rotateX(-12deg) rotateY(-27deg);
    }
}

.demo .card {
    background-image: var(--back);
    font-size: 2vh;
}

    .demo .card > span {
        position: relative;
        top: 45%;
    }

    .demo .card:nth-of-type(1),
    .demo .card:nth-of-type(2),
    .demo .card:nth-of-type(3) {
        width: 20vh;
        height: 27.5vh;
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4), 0 25px 15px -10px rgba(0, 0, 0, 0.5);
        -webkit-animation: none;
        animation: none;
    }

        .demo .card:nth-of-type(1):before,
        .demo .card:nth-of-type(1):after,
        .demo .card:nth-of-type(2):before,
        .demo .card:nth-of-type(2):after,
        .demo .card:nth-of-type(3):before,
        .demo .card:nth-of-type(3):after {
            -webkit-animation: none;
            animation: none;
        }

        .demo .card:nth-of-type(1):before,
        .demo .card:nth-of-type(1):after {
            display: none;
        }

    .demo .card:nth-of-type(2) {
        background: none;
    }

        .demo .card:nth-of-type(2):before {
            display: none;
        }

    .demo .card:nth-of-type(3) {
        background: none;
    }

        .demo .card:nth-of-type(3):after {
            display: none;
        }

.operator {
    display: inline-block;
    vertical-align: middle;
    font-size: 6vh;
}

h1 {
    display: block;
    margin: 30px 0;
}

p {
    margin-top: 5px;
}

#app {
    position: relative;
}

.demo,
.cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    perspective: 2000px;
    position: relative;
    z-index: 1;
    transform: translate3d(0.1px, 0.1px, 0.1px);
}

.demo {
    flex-direction: row;
    justify-content: center;
}

/* modal popup*/
body .modal-dialog {
    max-width: 550px;
}

button.btn.btn-primary.aa,
button.btn.btn-primary.aa.bb {
    position: absolute;
    left: 0;
    bottom: 0;
}

    button.btn.btn-primary.aa.bb {
        left: 200px;
    }

.row.nameList ul {
    list-style: none;
    padding-left: 0;
}

    .row.nameList ul li {
        margin-bottom: 15px;
    }

.nameSelected {
    font-size: 40px;
}

.row.nameList ul li .screwName {
    min-width: 194px;
    display: inline-block;
}

.modal-header {
    background: var(--heading-color);
    font-size: 18px;
    color: var(--brown-color);
    padding: 0.5rem 1rem;
}

.row.nameList ul li:nth-child(odd) {
    background: #deebff;
}

.row.nameList ul li {
    margin-bottom: 0;
    padding: 10px 0;
    padding-left: 10px;
}

body .btn-secondary.select {
    font-family: var(--primary-font-family);
    text-transform: capitalize;
    border-radius: 5px;
    margin-right: auto;
    background: var(--heading-color);
    font-size: 18px;
    color: var(--brown-color);
    font-weight: 700;
    border: none;
}

.btn-secondary:not(:disabled):not(.disabled):active {
    color: var(--brown-color);
}

body #exampleModal.modal-dialog > .modal-content > .modal-dialog {
    margin: 0;
}

#exampleModal,
body .modal.fade > .modal-dialog {
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    top: 50%;
    margin: 0 auto;
}

    body .modal.fade > .modal-dialog .modal-dialog {
        margin: 0 auto;
    }

.owl-item > div {
    border: 5px solid rgb(249, 243, 12);
    border-radius: 50%;
    overflow: hidden;
}

span.totalAvatar {
    font-weight: 600;
    font-size: 18px;
}

/* end modal popup */
/* owl slider */
.lockImg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgb(255 255 255 / 82%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.owl-carousel .owl-item .lockImg img {
    width: 55px;
}

.owl-item.active.center > div {
    border-color: #e8540c;
    overflow: hidden;
}

.owl-item > div {
    cursor: pointer;
    margin: 6% 8%;
    transition: margin 0.4s ease;
}

.owl-item.center > div {
    cursor: auto;
    margin: 0;
}

.owl-item:not(.center) > div:hover {
    opacity: 0.75;
}

.owl-item.active.center > div {
    height: 172px;
    width: 172px;
}

.owl-item.active > div {
    height: 144px;
    width: 144px;
    display: flex;
    align-items: center;
}

#exampleModal1 > .modal-content {
    background: transparent;
    border: none;
}

button.owl-prev,
button.owl-next {
    position: absolute;
    left: 0;
    top: 27%;
    transform: translateX(-50%);
}

button.owl-next {
    left: inherit;
    right: -12px;
}

    button.owl-prev span,
    button.owl-next span {
        font-size: 35px;
    }

/* end owl slider */
.col-6.hamburger {
    display: none;
}

.chatList > .card-body.msg_card_body > div {
    background: #fff;
    padding: 10px;
    border-radius: 5px;
}

.chatList .img_cont_msg .rounded-circle {
    width: 40px;
    height: 40px;
}

.chatList .img_cont_msg {
    height: 40px;
    width: 40px;
}

.chatList .chatName {
    padding-left: 10px;
    position: relative;
    width: 100%;
}

.chatList span.msg_time {
    right: 0;
    top: 6px;
    color: #333;
}

.chatList > .card-body.msg_card_body > div {
    background: #fff;
    padding: 10px;
    border-radius: 5px;
}

.chatList .img_cont_msg .rounded-circle {
    width: 40px;
    height: 40px;
}

.chatList .img_cont_msg {
    height: 40px;
    width: 40px;
}

.chatList .chatName {
    padding-left: 10px;
    position: relative;
    width: 100%;
}

.chatList span.msg_time {
    right: 0;
    top: 6px;
    color: #333;
}

/* opponent student */
.opponentContainer .left {
    background: linear-gradient(274deg, rgba(255, 227, 0, 1) 0%, rgba(251, 108, 0, 1) 100%);
    width: 50%;
    height: 500px;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    transition: 0.5s all ease-out;
    -webkit-transition: 0.5s all ease-out;
    -moz-transition: 0.5s all ease-out;
}

.opponentContainer .right {
    background: linear-gradient(274deg, rgba(0, 138, 118, 1) 0%, rgba(0, 183, 126, 1) 100%);
    width: 50%;
    height: 500px;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    transition: 0.5s all ease-out;
    -webkit-transition: 0.5s all ease-out;
    -moz-transition: 0.5s all ease-out;
}

.opponentContainer_inner {
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
}

.opponentContainer_inner {
    display: flex;
}

.opponentPopup .modal-body {
    overflow: hidden;
    padding: 3px;
}

.opponentContainer .center {
    position: absolute;
    z-index: 2;
    display: inline-block;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

    .opponentContainer .center img {
        width: 70px;
        height: inherit;
    }

.opponentPopup .modal-dialog {
    max-width: 750px;
}

.opponentContainer {
    position: relative;
}

.opponentAvatar {
    max-width: 100px;
    border: 5px solid #333;
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.opponentBox .opponentName {
    background: #333;
    color: #fff;
    text-align: center;
    margin-top: -40px;
    padding: 50px 10px 6px;
    border-radius: 5px;
    border: 2px solid #ddd;
    position: relative;
}

    .opponentBox .opponentName:before {
        content: "";
        background: #000000;
        position: absolute;
        left: 12px;
        top: 8px;
        transform: rotate(10deg);
        width: 97%;
        height: 98%;
        z-index: -1;
        opacity: 0.5;
        border-radius: 5px;
    }

    .opponentBox .opponentName span {
        background: #1e1e1e;
        padding: 10px;
        border-radius: 5px;
        font-weight: 500;
        display: inline-block;
    }

.opponentBox {
    max-width: 250px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    width: 100%;
}

.rank {
    text-align: center;
    font-weight: 500;
    margin-top: 20px;
    font-size: 32px;
    color: var(--brown-color);
}

.opponentbg {
    content: "";
    background-image: url(../imgs/vs-bg.svg);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.right .opponentbg {
    background-image: url(../imgs/vs-bg-right.svg);
}

.opponentContainer_inner button {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    background: var(--heading-color);
    padding: 10px 15px;
    border: 3px solid var(--brown-color);
    box-shadow: 1px 3px 3px #0000009c;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 20px;
    color: var(--brown-color);
    border-radius: 5px;
}

.opponentTitle {
    text-align: center;
    background: #333333;
    color: #fff;
    padding: 10px;
    font-size: 20px;
    font-weight: 500;
}

.opponentPopup .modal-content {
    border-radius: 5px;
    overflow: hidden;
}

.winner .opponentBox .opponentName {
    border-color: #feb83e;
}

.opponentBox span.crown {
    position: absolute;
    left: -38px;
    top: -41px;
    max-width: 100px;
    transform: rotate(-30deg);
}

    .opponentBox span.crown img {
        width: 100%;
    }

span.winnerImg {
    max-width: 250px;
    margin: 0 auto;
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    width: 100%;
}

.winner span.winnerImg {
    max-width: 250px;
    display: block;
    margin: 20px auto;
    position: static;
    transform: inherit;
    -webkit-transform: inherit;
    -moz-transform: inherit;
}

.winner .opponentAvatar {
    border-color: #feb83e;
}

.opponentContainer.winnerScreen .left .opponentBox,
.opponentContainer.winnerScreen .right .opponentBox {
    opacity: 0.8;
}

.opponentContainer.winnerScreen .left.winner .opponentBox,
.opponentContainer.winnerScreen .right.winner .opponentBox {
    opacity: 1;
}

.opponentContainer_inner.win .left.winner,
.opponentContainer_inner.win .right.winner {
    width: 100%;
    display: block;
}

.left.winner + div + .right,
.left.winner + div {
    width: 0;
    display: none;
}

.opponentContainer_inner.win .left,
.opponentContainer_inner.win .right,
.opponentContainer_inner.win .center {
    display: none;
}

.rank img {
    max-width: 50px;
    height: inherit;
}

.rank span {
    background: linear-gradient(90deg, rgb(255 245 226) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 5px;
    padding: 0 10px;
    box-shadow: 2px 3px 3px #0009;
}

.shadow {
    width: 150px;
    height: 30px;
    border-radius: 50%;
    background: #000;
    display: inline-block;
    position: absolute;
    left: -28px;
    bottom: -14px;
    z-index: -1;
}

.findOpponent {
    width: 100%;
    position: relative;
}

    .findOpponent .opponentAvatar {
        position: absolute;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
    }

.findOpponent {
    width: 100%;
    position: relative;
}

    .findOpponent .opponentAvatar {
        position: absolute;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
    }

.shadow:before {
    content: "";
    width: 150px;
    height: 30px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(130, 130, 130, 1) 48%, rgba(0, 0, 0, 1) 100%);
    position: absolute;
    left: 0;
    bottom: 5px;
    border-radius: 50%;
    z-index: -1;
}

.findOpponent .opponentAvatar img {
    z-index: 2;
    position: relative;
}

/* end opponent student */

#treaserGame button.close {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 3;
    background: #fff;
    opacity: 1;
    width: 26px;
    border-radius: 5px;
    border: none;
    color: #252525;
}

.modal-open {
    height: 100vh;
    padding-right: 0 !important;
}

    .modal-open .modal {
        padding-right: 0 !important;
    }

/* class battle summary page */
.aquaBattleLogo {
    max-width: 100px;
    width: 100%;
    z-index: 2;
    position: relative;
    margin: 0 auto;
}

    .aquaBattleLogo img {
        width: 100%;
        height: inherit;
    }

.myScore-opponentScore .rounded-circle {
    vertical-align: middle;
    margin-right: 10px;
    border: 1px solid #c2c2c2;
    display: inline-block;
}

.myScore-opponentScore .myScoreBox .rounded-circle,
.myScore-opponentScore .opponentScore .rounded-circle {
    max-width: 40px;
    height: 40px;
    overflow: hidden;
    width: 100%;
}

.myScore-opponentScore .teacherName {
    font-size: 20px;
    font-weight: 500;
}

.myScore-opponentScore span.teacherRank,
.myScore-opponentScore .score {
    font-size: 22px;
}

.teacherRank.win {
    color: green;
}

.teacherRank.loss {
    color: red;
}

.scoreRank {
    font-size: 22px;
    position: relative;
}

    .scoreRank > span {
        margin: 0 10px;
        background: #fff;
        padding: 10px;
        border-radius: 5px;
    }

.videoContainer > div {
    width: 100% !important;
    height: 100% !important;
}

    .videoContainer > div > div {
        position: relative;
        padding-bottom: 56.25%;
        /* 16:9 */
        padding-top: 25px;
        height: 0;
    }

        .videoContainer > div > div iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

.scoreRank strong {
    margin-left: 8px;
}

.breakoutContainer .breakoutList {
    padding: 5px 0px 5px 25px;
    position: relative;
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    justify-content: space-between;
}

.play-score img {
    width: 30px;
}

.play-score {
    min-width: 98px;
}

.lost {
    font-size: 32px;
    font-weight: 500;
    position: relative;
}

.breakoutContainer .breakoutList:last-child {
    border-bottom: none;
}

.breakoutContainer .breakoutList span.score {
    padding-left: 10px;
    padding-right: 10px;
    font-weight: 500;
    font-size: 18px;
}

.breakoutContainer .breakoutList:before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #333;
    position: absolute;
    left: 0;
    top: 14px;
}

.breakoutList.footer {
    border-top: 1px solid #ddd;
}

.breakoutContainer .breakoutList.footer:before {
    content: none;
}

.breakoutList.footer span {
    color: #000;
    font-weight: 600;
}

    .breakoutList.footer span.play-score .play {
        min-width: 28px;
        display: inline-block;
    }

.breakoutContainer .breakoutList.heading:before {
    content: none;
}

.breakoutList.heading .scoreHeading {
    padding-right: 10px;
}

.myScore-opponentScore .rounded-circle {
    vertical-align: middle;
    margin-right: 10px;
    border: 1px solid #c2c2c2;
    border-radius: 5px !important;
}

.myScore-opponentScore .teacherName,
.breakoutTitle {
    font-size: 20px;
    font-weight: 500;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
    padding-bottom: 5px;
}

.whiteBg {
    background-color: rgb(255 255 255 / 85%);
    padding: 15px;
    border-radius: 5px;
}

span.play span {
    width: 30px !important;
    vertical-align: middle;
}

.myScore-opponentScore span.title {
    min-width: 100px;
    display: inline-block;
}

.congratulation strong {
    font-family: "Lobster", cursive;
    font-size: 80px;
    background: linear-gradient(1deg, rgba(249, 243, 12, 1) 0%, rgba(254, 212, 39, 1) 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: -1px 5px 3px #ffffff57;
}

span.titleSubtitle {
    margin-top: 30px;
}

.upScore {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 12px solid green;
    vertical-align: middle;
    display: inline-block;
    position: relative;
    top: -2px;
    margin-right: 2px;
}

.downScore {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 12px solid red;
    vertical-align: middle;
    display: inline-block;
    position: relative;
    top: -2px;
    margin-right: 2px;
}

.congratulation {
    animation: zoom-In 3s ease-in-out;
    -webkit-animation: zoom-In 3s ease-in-out;
    /* animation-delay: 2s; */
}

@keyframes zoom-In {
    0% {
        transform: scale(0);
        -webkit-transform: scale(0);
    }

    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}

.congratulationSubTitle {
    color: #fff;
    font-weight: 500;
    font-size: 40px;
    position: absolute;
    top: -19px;
    animation: zoom-In-title 5s ease-in-out;
    -webkit-animation: zoom-In-title 5s ease-in-out;
    right: -3px;
    border-radius: 30px;
    font-family: "Lobster", cursive;
    background: linear-gradient(1deg, rgb(189 189 189) 0%, rgb(255 255 255) 50%);
    -webkit-text-fill-color: transparent;
}

@keyframes zoom-In-title {
    0% {
        transform: scale(0);
        -webkit-transform: scale(0);
    }

    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}

.bg1 {
    height: 100%;
    position: absolute;
    right: -100px;
    top: -1px;
    z-index: 0;
}

    .bg1 img,
    .bg1 span,
    .bg2 img,
    .bg2 span {
        height: 100% !important;
        width: inherit;
    }

.bg3 img,
.bg3 span {
    width: 100% !important;
}

.bg2 {
    height: calc(100% + 5px);
    position: absolute;
    left: -100px;
    top: 0;
    z-index: 0;
}

.bg3 {
    position: absolute;
    bottom: -110px;
    z-index: 0;
    height: 185px;
    left: -63px;
}

.summaryContainerInner {
    position: relative;
    z-index: 1;
}

.summaryContainerInner {
    background: #2ea3ff;
    text-align: center;
    padding: 15px;
    font-size: 30px;
    color: #fff;
    min-height: calc(100vh - 150px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}

.summaryContainer {
    background-color: #2ea3ff;
    margin: 0 0 15px 0;
}

.rankimg img {
    height: 50px;
    padding: 4px;
}

.navbar li.nav-item .nav-link:hover {
    cursor: pointer;
}

.myScore-opponentScore {
    min-height: 422px;
}

/* class battle summary page */
#introvideo .modal-body > div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    background-color: #000;
    z-index: 999;
    height: calc(100vh - 10px) !important;
}

#introvideo {
    height: 100vh;
}

body #introvideo.modal-dialog {
    max-width: 100%;
    margin-top: 0;
}

.waveBG {
    background-image: url(https://assets.underwatermath.com/underwatermath/comming-soon-bg.jpg);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* filter: url(#turbulence-distant); */
    z-index: 1;
}

.comingSoonContainer .row {
    position: static;
}

.waveBG:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-image: linear-gradient(180deg, rgba(0, 155, 229, 1) 0%, rgba(0, 155, 229, 1) 10%, rgba(29, 0, 210, 1) 100%);
    opacity: 0.8;
}

.comingSoonContainer .comingsoon {
    position: absolute;
    z-index: 3;
    font-size: 68px;
    color: #fff;
    text-transform: uppercase;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    font-weight: 600;
    line-height: normal;
}

.comingSoonContainer {
    position: relative;
}

/* reports  */
.reportsLeftRight .reportLeft {
    width: 50%;
    border-radius: 5px;
    overflow: hidden;
}

.reportsLeftRight .reportRight {
    width: 50%;
}

.reportsLeftRight {
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
}

.preTest > div,
.postTest .postTestInner {
    width: 100%;
    background: #f637ec;
    border-radius: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    transform: scale(0.8);
    border: 8px solid #fff;
    box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
}

.preTestInner:after,
.postTestInner:after {
    content: "";
    width: calc(100% + 60px);
    height: calc(100% + 60px);
    border-radius: 50%;
    background: rgb(0 0 0 / 9%);
    transform: scale(0);
    transition: 0.5s all ease-in-out;
    position: absolute;
    left: -30px;
    top: -30px;
}

.preTest:hover .preTestInner:after,
.postTest:hover .postTestInner:after {
    transform: scale(1);
    transition: 0.5s all ease-in-out;
}

.preTest > .preTestInner {
    position: absolute;
    right: 0;
    top: calc(50% + 50px);
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    width: 80%;
    height: 80%;
    min-width: 90px;
    min-height: 90px;
}

.indicat > span {
    margin: 0 5px;
}

.setting {
    position: relative;
    top: -6px;
}

.postTest .postTestInner {
    background: blue;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    height: 50%;
    min-width: 90px;
    min-height: 90px;
}

.indicat {
    color: #fff;
}

    .indicat > span .percent {
        margin-left: 6px;
        position: relative;
        top: -2px;
    }

.preTest,
.postTest {
    height: 200px;
    position: relative;
    width: 200px;
}

    .preTest:hover,
    .postTest:hover,
    .achivementSection .studentList .list:hover,
    .topicListBox > div:hover,
    span.percentValue:hover,
    .growthAchived span.text:hover,
    .questionNo:hover,
    .scoreNo:hover {
        cursor: pointer;
    }

.selectBox select:focus-visible,
.selectBox input:focus-visible {
    outline: none;
}

.preTest span,
.postTest span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    z-index: 2;
    color: #fff;
    font-size: 22px;
}

.preTest {
    margin-right: -30px;
    z-index: 2;
}

span.percentValue {
    font-style: normal;
    font-weight: 700;
    font-size: 55px;
    color: #38e54d;
}

.growthAchived span.text {
    font-size: 18px;
    line-height: 21px;
    color: #818181;
    font-weight: 500;
    margin-left: 15px;
}

span.percentSymbol {
    font-size: 40px;
}

.studentPerformance {
    background: #fff;
    border-radius: 5px;
}

.performanceSection {
    padding-left: 5px;
}

.growthAchived.text-center {
    margin-top: 50px;
}

.standarIdInner {
    border-radius: 5px;
    margin-bottom: 15px;
    color: #fff;
    cursor: pointer;
}

.targetPractice.reportsContainer .accordionCard .card-body {
    padding: 15px;
    margin-top: 0;
}

.reportLeft tfoot tr {
    background: #c3c3c3;
}

    .reportLeft tfoot tr td {
        border-top: 1px solid #898989;
    }

/* reports  */
.leftSide.targetPractice button.btn {
    min-width: 104px;
}

.gold {
    cursor: pointer;
}

/* / card move screen / */
.cardMove .cardList img {
    width: 100px;
}

#moveCard .modal-dialog {
    max-width: 900px;
    width: 100%;
}

.dragCard .dragCardBox {
    width: 20%;
    padding: 8px;
    box-sizing: border-box;
    position: relative;
}

span.removeIcon {
    left: 10px;
    top: -14px;
    position: absolute;
}

    span.removeIcon i {
        color: #ad0000;
    }

.dragCard .dragCardBox .dragCardBoxInner {
    width: 100%;
    min-height: 114px;
    border: 1px dashed #ddd;
}

.confirmationTradePopup:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.8;
}

.cardListBox {
    max-height: 370px;
    overflow-y: auto;
}

.offerCards .cardListBox {
    height: inherit;
}

/* / end card move screen / */
.highlight {
    background-color: #b9d9fb !important;
}

.gamePopup .modal-body div {
    position: relative;
}

    .gamePopup .modal-body div canvas {
        position: absolute;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
    }

span.aquaRanking strong {
    font-size: 32px;
    margin-left: 10px;
}

span.aquaRanking {
    color: #fff;
}

    span.aquaRanking span {
        font-size: 18px;
    }

.studentReportsNotes {
    background: var(--heading-color);
    font-size: 13px;
    color: var(--brown-color);
    font-weight: 500;
    padding: 14px;
    border-radius: 5px 5px 0 0;
    text-align: center;
    font-style: italic;
    margin-top: 10px;
}

.student-reports-center-parent {
    font-family: arial;
    font-size: 24px;
    margin: 25px;
    width: 350px;
    height: 200px;
    /* Setup */
    position: relative;
}

.student-reports-center-child {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -25px 0 0 -25px;
    /* Apply negative top and left margins to truly center the element */
}

.sec-heading .form__label-radio .quill {
    margin-left: 5px;
}

.cursor-pointer:hover div {
    color: #007bff;
}

.cursor-pointer .badge {
    color: #fff;
    font-size: 13px;
}

td.cursor-pointer:hover {
    cursor: pointer;
}

/* popup tournament details */
.tournamentDetail .modal-body {
    background-image: url(https://assets.underwatermath.com/underwatermath/upgradeBg.jpg);
    color: #fff;
    background-position: left;
}

.tournamentDetail .form-group label {
    margin-bottom: 0;
    opacity: 0.7;
    font-size: 14px;
}

.tournamentDetail .form-group p {
    margin-top: 0;
    font-size: 18px;
}

.tournamentDetail button.close {
    font-size: 35px;
}

/* game screen css */
.gameScreen {
    height: 100vh;
    position: relative;
}

    .gameScreen > div {
        position: absolute;
        left: 50%;
        top: 0;
        height: 100vh;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        width: 100%;
    }

section.menContainer {
    position: relative;
    z-index: 1;
    padding: 0 30px;
}

.css-1dimb5e-singleValue {
    color: rgb(33, 37, 41);
}

.loginRightSection .PassShow input {
    padding-right: 40px;
}

.banner img {
    height: auto;
}

/* oceanTrivia model box */
body .modal-header {
    padding: 0.5rem 1rem;
}

body #oceanTrivia {
    max-width: 50%;
}

    body #oceanTrivia .modal-body {
        min-height: 300px;
        background-image: var(--questionBg);
        background-position-y: 100%;
        background-size: contain;
        background-repeat: no-repeat;
    }

.scoreBox .Name img {
    margin-left: 10px;
}

.filter-box .form-group {
    margin-bottom: 0;
}

/* mobile card design */
.desktop {
    width: 100%;
}

.card-grid .card-content {
    gap: 15px;
    display: flex;
    flex-wrap: wrap;
    /* padding: 0 15px; */
}

.card-grid .card-list {
    background: rgb(255 255 255);
    padding: 15px;
    border-top: 3px solid #ff6d25;
    box-shadow: 0px 2px 4px rgb(0 0 0 / 25%);
    position: relative;
    width: calc(33% - 13px);
}

    .card-grid .card-list label {
        color: #8b8b8b;
        font-size: 12px;
        vertical-align: top;
    }

/* mobile card Design */
.mobile {
    display: none;
}

td.width3.multiCardReq {
    min-width: 150px;
}

.multiCardReq + td.width5 {
    min-width: 50px;
}

.aquaTradeTable .tradeCardTable th,
.aquaTradeTable .tradeCardTable td {
    padding-left: 5px;
    padding-right: 5px;
}

.aqua-table td.width5 button {
    font-size: 23px;
    padding: 0 10px;
    line-height: normal;
    box-shadow: none;
}

.tradeCardTable .accept-btn .fa-check {
    font-size: 15px;
    line-height: normal;
    position: relative;
    top: -2px;
}

.tradeCardTable .accept-btn {
    line-height: normal;
}

.tradeCardTable td.width5 button.accept-btn {
    padding: 0 7px;
    background: #008900;
}

body #oceanTrivia .modal-body .carousel-inner .d-flex {
    max-width: 600px;
    margin: 0 auto;
}

.infoCardPopup .modal-dialog {
    max-width: 800px;
    width: 100%;
}

body .modal.fade.infoCardPopup > .modal-dialog {
    -webkit-transform: translate(0, 0%);
    transform: translate(0, 0%);
    top: 10px;
}

/* video play popup css */
#introvideo .modal-content {
    background: #000;
    width: 100%;
    height: 100vh;
}

    #introvideo .modal-content button.playIcon {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 3;
        background: transparent;
        border: none;
    }

    #introvideo .modal-content .modal-body,
    #introvideo .modal-content .modal-body video#myvideo {
        height: 100%;
    }

    #introvideo .modal-content .modal-body {
        text-align: center;
    }

        #introvideo .modal-content .modal-body video#myvideo {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
        }

@media screen and (max-width: 600px) {
    body .nav-tabs .nav-item .nav-link {
        padding: 0.5rem 0.6rem;
    }

    .modal-body .userName strong,
    .modal-body .time strong {
        width: 100%;
        display: inline-block;
    }

    section.menContainer {
        position: relative;
        z-index: 1;
        padding: 0 15px;
    }

    .dragCard .dragCardBox {
        width: 33%;
    }

    .selectBox .form-group,
    .selectBox .form-group select {
        width: 100%;
        margin-right: 0 !important;
    }

    .navbar-expand-lg .navbar-nav {
        width: 100%;
    }

    .col-6.profileName {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    header.relative .col-6 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

        header.relative .col-6 img.logo {
            margin: 0 auto;
            display: block;
        }

    .banner-bg header {
        padding-right: 0;
    }

    .banner-bg header {
        flex-wrap: wrap;
    }

    .student-details {
        min-width: inherit;
        width: 100%;
    }

    .gamePopup .modal-body div canvas {
        top: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
    }
}

@media screen and (min-width: 600px) {
    .cards {
        flex-direction: row;
    }
}

.cards .card:nth-child(2),
.cards .card:nth-child(2):before,
.cards .card:nth-child(2):after {
    -webkit-animation-delay: 0.25s;
    animation-delay: 0.25s;
}

.cards .card:nth-child(3),
.cards .card:nth-child(3):before,
.cards .card:nth-child(3):after {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.cards .card:nth-child(4),
.cards .card:nth-child(4):before,
.cards .card:nth-child(4):after {
    -webkit-animation-delay: 0.75s;
    animation-delay: 0.75s;
}

/* floating */
.navbar-light .navbar-nav .floating .nav-link {
    font-family: var(--primary-font-family);
    text-transform: capitalize;
    margin-left: 1rem;
    border-radius: 5px;
    margin-right: auto;
    background: var(--heading-color);
    animation-name: non-floating;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-direction: alternate;
    font-size: 18px;
    color: var(--brown-color);
    font-weight: 500;
    box-shadow: 0px 6px 3px rgb(0 0 0 / 20%);
    padding-right: 0.5rem;
    padding-left: 0.5rem;
}

.navbar-light .navbar-nav .floating.nav-item:first-child .nav-link {
    margin-left: 0;
}

.hidequickplay {
    opacity: 0.5;
}

    .hidequickplay a {
        cursor: no-drop;
        pointer-events: none;
    }

.navbar-light .navbar-nav .floating .nav-link:hover,
.navbar-light .navbar-nav .floating .nav-link:focus {
    background: var(--orange-btn);
    color: #fff;
}

body nav.navbar {
    padding-left: 0;
}

.navbar-light .navbar-nav .floating.active .nav-link {
    animation-name: floating;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-direction: alternate;
    background: var(--orange-btn);
    color: #fff;
}

@keyframes floating {
    from {
        transform: translate(0, 0px);
    }

    65% {
        transform: translate(0, 19px);
    }

    to {
        transform: translate(0, -0px);
    }
}

@keyframes non-floating {
    from {
        transform: translate(0, 0px);
    }

    65% {
        transform: translate(0, 10px);
    }

    to {
        transform: translate(0, -0px);
    }
}

.aqua-table {
    margin: 1rem 0;
    border-radius: 5px;
}

.aquaTradeTable table tr th {
    vertical-align: middle;
}

body .aqua-table table td {
    color: #333;
}

.tradeProfilePic {
    width: 40px;
    margin-right: 10px;
}

.aquaTradeTable table.tradeTable thead tr th {
    width: 50%;
}

.aquaTradeTable .offers-btn:hover {
    color: #fff;
}

body .aqua-table table td[data-label="Wins"]:nth-child(4),
body .aqua-table table td[data-label="Losses"]:nth-child(5) {
    text-align: right;
}

.playCard {
    width: 80px;
    transition: 0.4s ease-out;
    top: 0;
    height: inherit;
}

.multiCardReq img.playCard:hover {
    z-index: 9;
    top: -10px;
    position: relative;
    transition: 0.4s ease-out;
    cursor: pointer;
}

.replaceArrow {
    width: 50px;
    margin-top: 20px;
}

.multiCardReq {
    position: relative;
}

    .multiCardReq img.playCard:not(:first-child) {
        margin-left: -60px;
    }

/* bubble */

.bubbles {
    display: inline-block;
    position: relative;
}

    .bubbles a {
        position: relative;
        font-family: var(--primary-font-family);
        color: #fff;
        z-index: 2;
    }

.individual-bubble {
    position: absolute;
    border-radius: 100%;
    bottom: 10px;
    background-color: #fff;
    z-index: 1;
}

.col-lg-4.custom-border-left .rightSideInner {
    /* background: rgb(255 255 255 / 40%); */
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 0 0 5px 5px;
    border: 1px solid #ffffff;
    border-top: none;
}

.studentAchivment {
    background: var(--heading-color);
    font-size: 22px;
    color: var(--brown-color);
    font-weight: 500;
    padding: 5px 14px;
    border-radius: 5px 5px 0 0;
    text-align: center;
}

.col-lg-4.custom-border-left {
    padding-left: 0;
}

h2.header-lable {
    text-align: center;
}

.custom-seperator {
    border-top: 0;
    border-bottom: 1px solid;
    border-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(226, 226, 226, 1) 48%, rgba(255, 255, 255, 0) 100%);
    border-image-slice: 1;
}

/* Profile Picture */
.avatarImgTeacher {
    border: 1px solid #333;
    border-radius: 50%;
    box-sizing: border-box;
    color: #fff;
    width: 40px;
    height: 40px;
    min-width: 40px;
    overflow: hidden;
    /* box-shadow: 1px 7px 5px #000000ab; */
    background-color: #fff;
}

.classname h1 {
    position: relative;
    margin: 1em 0 0;
    margin-left: 10px;
    font-weight: bold;
    font-family: var(--primary-font-family);
    color: #fff;
    z-index: 2;
}

.profile-div h2 {
    font-size: 18px;
    margin-left: 10px;
    margin-bottom: 0;
    font-weight: 400;
}

body .leftSide .profile-div {
    align-items: flex-end;
}

.table {
    font-family: var(--primary-font-family);
}

/* chat */

.chat {
    margin-top: auto;
    margin-bottom: auto;
}

.messagecard {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-clip: border-box;
    height: 826px;
    font-family: var(--primary-font-family);
    /* height: calc(100vh - 192px); */
}

.contacts_body {
    padding: 0.75rem 0;
    overflow-y: auto;
    white-space: nowrap;
}

body .msg_card_body {
    overflow-y: auto;
    background-image: url(https://assets.underwatermath.com/underwatermath/doodlebg.svg);
    background-size: 276px;
    padding-left: 10px;
    padding-right: 10px;
    border: 1px solid #fff;
    border-top: none;
}

body .card-header {
    border-radius: 5px 5px 0 0 !important;
    border-bottom: 0;
    background: var(--heading-color);
    padding-top: 9px;
    padding-bottom: 9px;
}

body .card-footer:last-child {
    border-radius: 0 0 5px 5px;
    border-top: 0;
}

.container {
    align-content: center;
}

body .type_msg {
    background-color: #fff;
    border: 0;
    color: white;
    height: 45px;
    overflow-y: auto;
}

span.input-group-text.send_btn {
    background-color: #fff;
}

body .type_msg:focus {
    box-shadow: none;
    outline: 0px;
}

body .search_btn {
    border-radius: 0 15px 15px 0;
    background-color: rgba(0, 0, 0, 0.3);
    border: 0;
    color: white;
    cursor: pointer;
}

.contacts {
    list-style: none;
    padding: 0;
}

    .contacts li {
        width: 100%;
        padding: 5px 10px;
        margin-bottom: 15px;
    }

.user_img {
    height: 40px;
    width: 40px;
    border: 1.5px solid #f5f6fa;
}

.img_cont_msg .rounded-circle {
    height: 30px;
    width: 30px;
    border: 2px solid #f5f6fa;
    overflow: hidden;
    background-color: #fff;
    border-radius: 30% !important;
    display: inline-block;
}

.img_cont {
    position: relative;
    height: 40px;
    width: 40px;
}

.img_cont_msg {
    height: 30px;
    width: 30px;
}

.online_icon {
    position: absolute;
    height: 15px;
    width: 15px;
    background-color: #4cd137;
    border-radius: 50%;
    bottom: -0.2em;
    right: 0.07em;
    border: 1.5px solid white;
}

.offline {
    background-color: #c23616;
}

.user_info {
    margin-top: auto;
    margin-bottom: auto;
}

    .user_info span {
        font-size: 20px;
        color: var(--brown-color);
        font-weight: 500;
    }

    .user_info div {
        font-size: 10px;
        color: rgba(255, 255, 255, 0.6);
    }

.video_cam {
    margin-left: 50px;
    margin-top: 5px;
}

    .video_cam span {
        color: white;
        font-size: 20px;
        cursor: pointer;
        margin-right: 20px;
    }

.msg_cotainer {
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 10px;
    border-radius: 5px;
    /* background-color: rgb(255 255 255 / 8%); */
    background-color: rgb(244 98 26);
    padding: 5px 10px 20px 10px;
    position: relative;
    color: #fff;
    font-size: 14px;
    min-width: 50px;
}

.msg_cotainer_send {
    margin-top: auto;
    margin-bottom: auto;
    margin-right: 5px;
    border-radius: 5px;
    background-color: #fff;
    padding: 5px 10px 20px 10px;
    position: relative;
    color: #333;
    font-size: 14px;
    min-width: 50px;
    text-align: left;
    white-space: pre-wrap;
}

    .msg_cotainer_send a,
    .msg_cotainer_send a:hover,
    .msg_cotainer_send a:focus,
    .msg_cotainer a,
    .msg_cotainer a:hover,
    .msg_cotainer a:focus {
        color: #333;
    }

        .msg_cotainer_send a:hover,
        .msg_cotainer a:hover {
            text-decoration: underline !important;
        }

.msg_time {
    position: absolute;
    right: 0;
    bottom: 0px;
    color: #e1e1e1;
    font-size: 10px;
    padding-right: 5px;
}

.msg_time_send {
    position: absolute;
    right: 0;
    bottom: 0px;
    color: #6a6a6a;
    font-size: 10px;
    padding-right: 5px;
}

.msg_head {
    position: relative;
}

body .card-footer {
    background-color: rgb(255 204 47);
    padding: 0;
}

body textarea {
    resize: none;
}

#action_menu_btn {
    position: absolute;
    right: 10px;
    top: 10px;
    color: white;
    cursor: pointer;
    font-size: 20px;
}

.action_menu {
    z-index: 1;
    position: absolute;
    padding: 15px 0;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border-radius: 15px;
    top: 30px;
    right: 15px;
    display: none;
}

    .action_menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .action_menu ul li {
            width: 100%;
            padding: 10px 15px;
            margin-bottom: 5px;
        }

            .action_menu ul li i {
                padding-right: 10px;
            }

            .action_menu ul li:hover {
                cursor: pointer;
                background-color: rgba(0, 0, 0, 0.2);
            }

.btn.offers-btn {
    background: #e8540c;
    border-color: #9a3830;
    box-shadow: 0px 0px 4px #a73700;
    font-size: 14px;
    color: #fff;
}

button.btn.accept-btn,
button.btn.cancel-btn {
    color: #fff;
    background: #e8540c;
    box-shadow: 0px 0px 4px #a73700;
}

    button.btn.accept-btn:hover,
    .offers-btn:hover,
    button.btn.accept-btn:focus,
    .offers-btn:focus {
        background: #af3900;
    }

.ticket-btn button:hover,
.ticket-btn button:focus {
    color: #fff;
}

.offers-btn:hover {
    color: #fff;
}

button.btn.btn:focus {
    outline: none;
    box-shadow: none;
}

.accept-btn {
    font-size: 14px;
    color: #012f56;
    background-color: #ffffffbd;
    border-color: #ffffff75;
    box-shadow: 0px 0px 2px 0px #fff;
}

.aquaTradeTable .tradeCardTable th:last-child,
.aquaTradeTable .tradeCardTable td:last-child {
    vertical-align: middle;
}

.aquaTradeTable table th {
    padding-top: 5px;
    padding-bottom: 5px;
    vertical-align: middle;
}

a:focus,
a:focus-visible {
    outline: none;
}

.position-sticky {
    top: 10px;
}

/* upgrade button arrow */
a.upgradeBtn {
    font-family: "Fira Sans", sans-serif;
    text-transform: uppercase;
    margin-left: 1rem;
    border-radius: 5px;
    background: rgb(232 84 12) 0%;
    background: linear-gradient(180deg, rgb(232 84 12) 0%, rgb(255 109 37) 50%);
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    height: 43px;
    display: inline-block;
    max-width: 160px;
    width: 100%;
    text-align: center;
    line-height: 43px;
    box-shadow: 0px 6px 3px rgb(0 0 0 / 20%);
    margin-bottom: 16px;
}

.upgradeArrow {
    width: 30px;
    height: 15px;
    display: grid;
    overflow: hidden;
    position: absolute;
    left: 10px;
    top: 17px;
}

a.upgradeBtn:hover {
    color: #ffffff;
    text-decoration: none;
    background: linear-gradient(180deg, rgb(195 64 0) 0%, rgb(225 94 29) 50%);
}

.upgradeArrow:before,
.upgradeArrow:after {
    content: "";
    grid-area: 1/1;
    background: currentColor;
    clip-path: polygon(0 10px, calc(100% - 15px) 10px, calc(100% - 15px) 0, 100% 50%, calc(100% - 15px) 100%, calc(100% - 15px) calc(100% - 10px), 0 calc(100% - 10px));
    animation: a5 1s infinite;
    transform: translate(calc(0% + var(--s, 0%)));
}

textarea.form-control.type_msg:focus {
    background: #fff;
}

@keyframes a5 {

    80%, 100% {
        transform: translate(calc(100% + var(--s, 0%)));
    }
}

/* end upgrade button arrow */

/* madal shine  */
span.madalImg {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    top: -5px;
}

.madalImg img {
    width: 30px;
    position: relative;
    top: 2px;
    height: inherit;
}

/* end madal shine  */
@media (max-width: 576px) {
    .contacts_card {
        margin-bottom: 15px;
    }
}

/* end extra */
/* Gold */
.rightSideInner h2,
.rightSideInner h2 span {
    font-weight: 400;
}

span.inner-gold {
    color: #ffffff;
    font-size: 22px;
    font-family: var(--primary-font-family);
    margin-left: 10px;
    font-weight: 400;
}

.row.leftSide {
    background-color: rgb(255 255 255 / 40%);
    border-radius: 5px;
    margin: 0 0 15px 0;
}

    .row.leftSide.targetPractice {
        margin-top: 15px;
    }

    .row.leftSide .col-md-8,
    .row.leftSide .col-md-4,
    .row.leftSide .col-md-5 {
        padding: 9px 10px;
    }

.chatBox .profile-div {
    background: rgb(255 255 255 / 40%);
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
}

@-webkit-keyframes sparkle {
    0% {
        opacity: 0;
    }

    30% {
        opacity: 0;
    }

    40% {
        opacity: 0.8;
    }

    60% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@media (max-width: 576px) {
    .contacts_card {
        margin-bottom: 15px;
    }
}

/* activites page start */
.reactPopup > .modal-dialog > .modal-content {
    width: 100%;
}

.reactPopup > .modal-dialog {
    max-width: 100%;
}

    .reactPopup > .modal-dialog > .modal-content {
        background: transparent;
    }

.row.leftSide.targetPractice > .col-md-12 .profile-div {
    padding: 18px 0px;
}

.targetPracticeContent {
    border-radius: 5px;
}

    .targetPracticeContent .listTitle .listTitleInner {
        background: #e7f0ff;
        box-shadow: 1px 3px 6px #003fc396;
        padding: 5px 15px;
        font-size: 22px;
        text-align: center;
        min-height: 120px;
        border-radius: 5px;
        color: #666;
        font-weight: 500;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        height: 100%;
        align-content: center;
        position: relative;
    }

.accordionCard .progress-bar {
    background: rgb(0, 195, 19);
    background: linear-gradient(180deg, rgba(0, 195, 19, 1) 0%, rgba(98, 252, 113, 1) 50%, rgba(0, 195, 19, 1) 100%);
    position: relative;
    z-index: 2;
}

.progressBox .progress:before {
    content: "";
    width: 10px;
    height: 100px;
    background: rgb(0, 195, 19);
    background: linear-gradient(180deg, rgba(0, 195, 19, 1) 0%, rgba(98, 252, 113, 1) 50%, rgba(0, 195, 19, 1) 100%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

.listTitleInner .success-checkmark {
    margin: 0 2px 0;
    width: 45px;
    height: 10px;
    position: absolute;
    top: 0px;
    transform: scale(0.26);
    -webkit-transform: scale(0.26);
    -moz-transform: scale(0.26);
    left: -45px;
}

.scoreBox {
    width: inherit;
    position: relative;
}

.listTitleInner .text-success {
    font-size: 16px;
    margin-top: 10px;
    display: inline;
}

.targetPracticeContent .practiceList {
    display: flex;
    flex-wrap: wrap;
    flex-basis: fit-content;
}

    .targetPracticeContent .practiceList .listTitle {
        width: 20%;
        padding: 10px 25px;
        border-radius: 5px;
        position: relative;
        cursor: pointer;
        /* / background: red; / */
    }

.listTitle .status {
    position: relative;
}

.listTitletext {
    font-size: 18px;
    font-weight: 400;
}

.targetPracticeContent .listTitle.active .listTitleInner {
    background: #ffe1d3;
}

.practiceList .status {
    text-align: center;
    font-size: 24px;
    color: #ee5a12;
    font-weight: 400;
    margin-bottom: 10px;
    display: inline-block;
    width: auto;
}

.breakoutName {
    display: inline-block;
    width: 100%;
}

.practiceList .status button {
    font-size: 14px;
}

.practiceList .listTitle.active .status {
    border-bottom-color: #fdb898;
}

.listTitletext {
    font-size: 15px;
    font-weight: 400;
    min-height: 54px;
    width: 100%;
}

.targetPracticeContent .listTitle.active .listTitleInner {
    background: #fff;
}

.targetPractice h5 {
    color: #fff;
    padding: 15px 15px 0;
}

.practiceList .postTest .status {
    border-bottom: 1px solid #ffa377;
}

.practiceBox {
    width: 100%;
    height: 180px;
    background: #efefef;
    display: flex;
    align-items: center;
    justify-content: center;
}

.earnCoin img {
    width: 30px;
    position: relative;
    top: -5px;
}

.arrow {
    width: 30px;
    height: 30px;
    border: 5px solid;
    border-color: #f8e406 transparent transparent #f8e406;
    transform: rotate(135deg) translateY(-50%);
    position: absolute;
    right: 12px;
    top: 34%;
}

.targetPracticeContent .practiceList .listTitle.active .listTitleInner {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
}

.targetPracticeContent .practiceList .listTitle:last-child > i {
    display: none;
}

.targetPracticeContent .practiceList .listTitle.active .listTitleInner .listTitletext {
    font-size: 14px;
}

.targetPracticeContent .practiceList .listTitle.active .listTitleInner + i {
    right: 5px;
}

body .modal-dialog.w-700 {
    max-width: 700px;
    width: 100%;
}

#practicTest .modal-body {
    padding: 30px;
}

#practicTest.modal.show .modal-dialog {
    -webkit-transform: translate(0%, 50%);
    transform: translate(0%, 50%);
}

.accordionHeader button {
    background: rgb(255 255 255 / 75%);
    width: 100%;
    text-align: left;
    padding: 10px 10px 10px 40px;
}

.accordionHeader {
    margin-top: 3px;
}

.targetPractice #accordion {
    margin-top: 15px;
}

.accordionCard .progress {
    background: #fff;
    border: 1px solid #ddd;
    height: 25px;
    border-radius: 12px;
    position: relative;
}

.accordionCard .progressBox span.progressNo {
    position: absolute;
    left: -67px;
    top: 0;
    z-index: 2;
}

.accordionCard .progressBox {
    width: 250px;
    float: right;
    position: relative;
}

.accordionHeader button:hover,
.accordionHeader button:focus {
    background: #fff;
    text-decoration: none;
}

.accordionHeader button[aria-expanded="true"] {
    background: #fff;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    text-decoration: none;
}

.accordionHeader > button.btn-link {
    padding-left: 40px;
}

.targetPractice .accordionCard .card-body {
    padding: 20px 25px 20px 0px;
    border: 1px solid #d9e1f5;
    border-top: none;
    border-radius: 0 0 5px 5px;
    margin-top: -5px;
}

.targetPractice #accordion .accordionCard:last-child {
    margin-bottom: 20px;
}

.targetPracticeContent .practiceList .listTitle.disable {
    opacity: 0.7;
    cursor: not-allowed;
}

.assignmentsTitle {
    font-size: 24px;
    color: #fff;
    font-weight: 600;
    padding: 10px 15px;
}

.accordionHeader button .fa {
    position: absolute;
    right: 15px;
    top: 8px;
    font-size: 30px;
}

.accordionHeader button {
    position: relative;
}

    .accordionHeader button.collapsed .fa.fa-angle-up::before {
        content: "\f107";
    }

/* activites page end */
/* student profile */
.heading {
    color: #606060;
    font-weight: 500;
}

.classListBox .classList {
    display: inline-block;
    border: 1px solid #80b4fc;
    padding: 10px 20px;
    margin-right: 15px;
    font-size: 18px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.profileImg {
    margin-top: -36px;
}

.profile-pic {
    width: 200px;
    max-height: 200px;
    display: inline-block;
}

.profileImg .file-upload {
    display: none;
}

.profileImg .circle {
    border-radius: 100% !important;
    overflow: hidden;
    width: 150px;
    height: 150px;
    border: 10px solid rgba(255, 255, 255);
    box-shadow: -1px 6px 5px #9b9b9b;
    background: #e7e7e7;
}

.profileImg .p-image {
    color: #00a8f1;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

    .profileImg .p-image:hover {
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

.profileImg .upload-button {
    font-size: 1.2em;
}

    .profileImg .upload-button:hover {
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        color: #999;
    }

.banner {
    background: #ddd;
    border-radius: 5px;
}

button.btn.btn-outline-primary:hover {
    background: #007bff;
    color: #fff;
}

.studentProfile {
    background: rgb(255 255 255 / 95%);
    padding-bottom: 15px;
    border-radius: 5px;
}

.screenName span {
    text-decoration: underline;
    cursor: pointer;
    color: #2288f1;
}

.classList img {
    width: 30px;
}

/* student profile end  */

/* teacher and student class section */
.teacherName {
    font-weight: 300;
    font-size: 16px;
}

.studentClsImg {
    margin-top: -29px;
}

    .studentClsImg span img {
        width: 100%;
    }

    .studentClsImg span {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        overflow: hidden;
        display: inline-block;
        border: 2px solid #fff;
        box-shadow: 2px 3px 3px #a1a1a1;
    }

/* teacher profile end  */

.accordionHeader button .fa {
    position: absolute;
    left: 10px;
    top: 6px;
    font-size: 30px;
}

.accordionHeader button {
    position: relative;
}

    .accordionHeader button.collapsed .fa.fa-angle-up::before {
        content: "\f107";
    }

#isPDFModal .modal-body {
    overflow-y: auto;
    height: 80vh;
}

/* cards page */

.l-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 30px;
    width: 100%;
    padding: 30px;
    background: rgb(255 255 255 / 40%);
    border-radius: 5px;
}

/* waiting for student */
.student-table {
    background: rgb(255 255 255);
    border-radius: 5px;
}

.avatarImgTeacher,
.studentAvatar {
    border: 1px solid #fff;
    border-radius: 50%;
    box-sizing: border-box;
    color: #fff;
    width: 40px;
    height: 40px;
    overflow: hidden;
    box-shadow: 1px 2px 5px rgb(0 0 0 / 28%);
    background-color: #fff;
    position: relative;
}

.name-screenName {
    border-left: 1px solid #ddd;
    margin-left: 15px;
}

.screenName {
    font-size: 14px;
    color: #333;
}

.name-screenName .score span {
    border-radius: 5px;
    font-size: 22px;
    font-weight: 500;
}

.studentBox.logo img {
    width: 122px;
    height: inherit;
}

.waitingStudent {
    margin: 20px 0;
    font-size: 22px;
    border-top: 1px solid #ddd;
    padding-top: 20px;
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.targetPracticeContent .practiceList .studentAssignmentDisable {
    cursor: no-drop;
}

.targetPracticeContent .listTitle.studentAssignmentDisable .listTitleInner {
    pointer-events: none;
}

/* end waiting for student */
@media screen and (max-width: 1600px) {
    .profile-div h2 {
        font-size: 18px;
    }

    body .btn-secondary.select {
        font-size: 14px;
    }

    .cardListBox {
        max-height: 249px;
    }
}

@media screen and (max-width: 1400px) {
    .poupuCard img {
        max-width: 300px;
    }
}

@media screen and (max-width: 1199px) {

    .summaryContainer .bg1,
    .summaryContainer .bg2,
    .summaryContainer .bg3 {
        display: none;
    }
}

@media screen and (max-width: 760px) {
    .l-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.b-game-card {
    position: relative;
    z-index: 1;
    width: 100%;
    perspective: 1000px;
}

.b-game-card__cover {
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    background-size: cover;
    perspective-origin: 50% 50%;
    transform-style: preserve-3d;
    transform-origin: top center;
    will-change: transform;
    transform: skewX(0.001deg);
    transition: transform 0.35s ease-in-out;
    background: linear-gradient(198deg, rgba(255, 255, 255, 1) 50%, rgb(0 187 246) 50%);
    box-shadow: 1px 5px 3px rgb(0 0 0 / 49%);
    border-radius: 5px;
    padding: 5px;
}

    .b-game-card__cover img {
        height: auto;
    }

.tab-pane .l-container {
    min-height: 680px;
}

.card:hover .b-game-card__cover {
    transform: rotateX(7deg) translateY(-6px);
}

.b-game-card:hover .b-game-card__cover::after {
    transform: translateY(0%);
}

.b-game-card::before {
    display: block;
    content: "";
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    will-change: opacity;
    transform-origin: top center;
    transform: skewX(0.001deg);
    transition: transform 0.35s ease-in-out, opacity 0.5s ease-in-out;
}

.b-game-card:hover::before {
    opacity: 0.6;
    transform: rotateX(7deg) translateY(-6px) scale(1.05);
}

.cardCount {
    background: #fef080;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 24px;
    position: absolute;
    right: -9px;
    top: -11px;
    box-shadow: 2px 4px 2px rgb(0 0 0 / 78%);
    color: #943128;
    border: 2px solid #fff;
    z-index: 1;
}

.tab-content span.cardheader {
    margin: 0px;
    display: inline-block;
    border-bottom: 1px solid #ddd;
    width: 100%;
    padding: 5px 10px;
    color: var(--brown-color);
    font-weight: 600;
    background: var(--heading-color);
}

.tab-content .cardListBox + .cardheader {
    margin-top: 10px;
}

.level {
    bottom: 27px;
    left: 0;
    z-index: 2;
    color: #fff;
    width: 100%;
    font-size: 16px;
    text-align: center;
    font-weight: 500;
}

.progress .progressBarCount {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    top: 12px;
    font-size: 14px;
    font-weight: bold;
    text-shadow: 0px 0px black;
    color: #333;
}

.b-game-card__cover .progress {
    position: relative;
    height: 1.4rem;
    z-index: 3;
    overflow: visible;
    width: calc(100% - 28px);
    margin-left: 28px;
}

.upArrow img {
    width: 40px;
    height: inherit;
}

.levelUpAnimation .upArrow {
    animation: arrowAnimation 1s infinite;
}

.upArrow {
    left: -29px;
    top: -16px;
    position: absolute;
}

.progress-bar {
    border-radius: 5px 0px 0 5px;
}

/* end cards page */

/* cards popup */
.carouselControlBox a {
    border: 1px solid #000;
    width: 15px;
    height: 15px;
    display: inline-block;
    border-radius: 50%;
    margin: 5px;
}

    .carouselControlBox a span {
        display: none;
    }

ol.carousel-indicators {
    position: static;
    margin-top: 15px;
    margin-bottom: 0;
}

    ol.carousel-indicators li.active {
        background: #fff;
    }

    ol.carousel-indicators li {
        border: 1px solid #fff;
        height: 25px;
        width: 25px;
        border-radius: 50%;
    }

#multiCardsOpen button.close,
#cardsOpen button.close {
    position: absolute;
    left: 50%;
    top: 0;
    width: 40px;
    height: 40px;
    background: #fff;
    font-size: 18px;
    padding: 0;
    z-index: 2;
    border: 1px solid #ddd;
    border-radius: 50%;
    opacity: 1;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
}

    #multiCardsOpen button.close span,
    #cardsOpen button.close span {
        font-size: 30px;
    }

#multiCardsOpen .modal-content,
#cardsOpen .modal-content {
    background-color: transparent;
    border: none;
}

/* end card popup */

/*tick animation */
.success-checkmark {
    width: 90px;
    height: 91px;
    margin: 0 auto;
    transform: scale(0.7);
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
}

    .success-checkmark .check-icon {
        width: 80px;
        height: 80px;
        position: relative;
        border-radius: 50%;
        box-sizing: content-box;
        border: 4px solid #4caf50;
    }

        .success-checkmark .check-icon::before {
            top: 3px;
            left: -2px;
            width: 30px;
            transform-origin: 100% 50%;
            border-radius: 100px 0 0 100px;
        }

        .success-checkmark .check-icon::after {
            top: 0;
            left: 30px;
            width: 60px;
            transform-origin: 0 50%;
            border-radius: 0 100px 100px 0;
            /* animation: rotate-circle 4.25s ease-in; */
        }

        .success-checkmark .check-icon::before,
        .success-checkmark .check-icon::after {
            content: "";
            height: 100px;
            position: absolute;
            background: var(--white-bg-color);
            transform: rotate(-45deg);
        }

        .success-checkmark .check-icon .icon-line {
            height: 5px;
            background-color: #4caf50;
            display: block;
            border-radius: 2px;
            position: absolute;
            z-index: 10;
        }

            .success-checkmark .check-icon .icon-line.line-tip {
                top: 46px;
                left: 14px;
                width: 25px;
                transform: rotate(45deg);
                /* animation: icon-line-tip 0.75s; */
            }

            .success-checkmark .check-icon .icon-line.line-long {
                top: 38px;
                right: 8px;
                width: 47px;
                transform: rotate(-45deg);
                animation: icon-line-long 0.75s;
            }

        .success-checkmark .check-icon .icon-circle {
            top: -4px;
            left: -4px;
            z-index: 10;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            position: absolute;
            box-sizing: content-box;
            border: 4px solid rgba(76, 175, 80, 0.5);
        }

        .success-checkmark .check-icon .icon-fix {
            top: 8px;
            width: 5px;
            left: 26px;
            z-index: 1;
            height: 85px;
            position: absolute;
            transform: rotate(-45deg);
            background-color: var(--white-bg-color);
        }

@keyframes rotate-circle {
    0% {
        transform: rotate(-45deg);
    }

    5% {
        transform: rotate(-45deg);
    }

    12% {
        transform: rotate(-405deg);
    }

    100% {
        transform: rotate(-405deg);
    }
}

@keyframes icon-line-tip {
    0% {
        width: 0;
        left: 1px;
        top: 19px;
    }

    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }

    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }

    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }

    100% {
        width: 25px;
        left: 14px;
        top: 45px;
    }
}

@keyframes icon-line-long {
    0% {
        width: 0;
        right: 46px;
        top: 54px;
    }

    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }

    84% {
        width: 55px;
        right: 0px;
        top: 35px;
    }

    100% {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}

/*end tick animation*/

.profileForm .col-md-9 i {
    position: absolute;
    right: 25px;
    top: 10px;
}

.profileForm .col-md-9 {
    position: relative;
}

.coinshellcurrency span.coin-img {
    background: transparent;
}

span.screenheader {
    color: #943128;
    font-weight: 500;
}

.blur-question-bg {
    filter: blur(6px);
}

/* Question page css */
@media (max-width: 1023px) {

    .questionContainer > .sec-heading > .row > .col-4,
    .questionContainer > .sec-heading > .row > .col-8 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .questionContainer > .sec-heading > .row > .col-4 {
        padding: 0;
    }

    .questionContainer > .sec-heading > .row > .col-8 {
        margin-top: 15px;
    }

    .questionContainer .sec-heading .row .passageQuestion {
        width: 100%;
        margin-left: 0;
    }

    .questionContainer .sec-heading .secondLayout .ansList {
        width: 100%;
    }

    .questionContainer .sec-heading .secondLayout .questionBox {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 600px) {
    .passageQuestion .row > .col-12 {
        padding-left: 0;
        padding-right: 0;
    }

    .sec-heading .middleHeader {
        flex-wrap: wrap;
    }

        .sec-heading .middleHeader .id_feedback {
            margin-bottom: 10px;
        }

    .sec-heading .Timer {
        text-align: left;
    }

    .studentLobby > div {
        display: inline-block;
        width: 100%;
        margin-bottom: 10px;
    }

    .studentLobby .logo {
        border-bottom: 1px solid #ddd;
        padding: 10px 0;
        border-top: 1px solid #ddd;
    }

    .studentLobby > div > div {
        justify-content: center;
    }

    .congratulation strong {
        font-size: 40px;
    }

    .congratulationSubTitle {
        font-size: 20px;
    }

    .scoreRank > span {
        width: 100%;
        display: inline-block;
    }

    .tab-pane .l-container {
        min-height: inherit;
    }

    body .modal.fade > .modal-dialog#cardsOpen,
    body .modal.fade > .modal-dialog#multiCardsOpen {
        top: 50%;
        transform: translateY(-50%);
        transform: -webkit-translateY(-50%);
        transform: -moz-translateY(-50%);
    }

    .targetPracticeContent .listTitle .listTitleInner {
        flex-wrap: wrap;
    }

    .practiceList .status {
        width: 100%;
    }

    .rightSideInner .header-lable > div {
        flex-wrap: wrap;
    }

    .practiceBox {
        height: auto;
    }

    #exampleModal,
    body .modal.fade > .modal-dialog {
        -webkit-transform: translate(0, 0%);
        transform: translate(0, 0%);
        top: 30px;
    }

    .targetPracticeContent .practiceList .listTitle:last-child {
        margin-bottom: 0;
    }

    .modal-open .modal {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .rightSideInner .header-lable > div > span {
        width: 100%;
    }

    .hintImg {
        display: none;
    }

    body .hintContainer .hintText {
        margin-left: 0;
        margin-top: 20px;
    }

    .player-wrapper {
        margin-left: 0;
    }

    .hintContainer {
        padding: 10px;
        box-sizing: border-box;
        width: calc(100% - 30px);
        left: 15px;
    }
}

/* Question page css */
.gamePopup .modal-dialog,
.gamePopup .modal-dialog > div,
.gamePopup .modal-dialog .modal-body > div,
#treaserGame.modal-dialog,
#treaserGame.modal-dialog > div,
#treaserGame.modal-dialog > div > div {
    max-width: 100%;
    height: 100%;
}

.gamePopup .modal-body div {
    position: relative;
}

    .gamePopup .modal-body div canvas {
        position: absolute;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
    }

.fieldPopup .modal-dialog .modal-body {
    min-height: 262px;
}

.loader {
    display: flex;
    position: relative;
    justify-content: center;
}

    .loader > div {
        width: 20px;
        height: 20px;
        background: #ffffff;
        border-radius: 50%;
        margin: 3px;
        animation: loader 0.6s infinite alternate;
    }

        .loader > div:nth-child(2) {
            animation-delay: 0.2s;
        }

        .loader > div:nth-child(3) {
            animation-delay: 0.4s;
        }

@keyframes loader {
    to {
        opacity: 0.7;
        transform: translate(0, -20px);
    }
}

.waitingBox .center {
    font-size: 36px;
    color: #fff;
    font-weight: 500;
}

.hidden {
    display: none;
}

.cardListBox .cardList {
    width: 20%;
    padding: 5px;
}

.cardListBox {
    border: 1px solid #f0f0f0;
    padding-top: 10px;
}

#cardsBox .modal-dialog {
    max-width: 900px;
    width: 100%;
}

.cardListBox .cardList.active img {
    border: 3px solid orange;
}

.cardListBox .cardList img {
    border: 3px solid #fff;
    border-radius: 5px;
    padding: 2px;
    width: 100%;
    height: auto;
}

.cardList.disable {
    opacity: 0.5;
    cursor: no-drop;
}

.text-end {
    text-align: right !important;
}

.cardListBox .cardList .cardCount {
    font-size: 14px;
    width: 25px;
    height: 25px;
    top: -2px;
    right: 4px;
}

@media (max-width: 1600px) {
    .targetPracticeContent .practiceList .listTitle {
        width: 25%;
    }
}

@media (max-width: 1400px) {
    .targetPracticeContent .practiceList .listTitle {
        width: 33.33%;
    }

    .custom-border-left .card h4 {
        font-size: 14px;
    }

    .listTitleInner .success-checkmark {
        transform: scale(0.24);
        -webkit-transform: scale(0.24);
        -moz-transform: scale(0.24);
    }

    .practiceList .status {
        font-size: 22px;
    }

    .accordionCard .progress {
        height: 20px;
    }

    .navbar-light .navbar-nav .floating .nav-link {
        font-size: 16px;
    }

    .listTitletext {
        font-size: 14px;
    }

    .targetPracticeContent .practiceList .listTitle.active .listTitleInner .listTitletext {
        font-size: 12px;
    }

    html body,
    button.btn,
    body .nav-tabs .nav-item .nav-link {
        font-size: 14px;
    }

    .studentAchivment {
        font-size: 18px;
    }
}

@media (max-width: 1300px) {
    .banner-bg {
        overflow-x: hidden;
    }

    .cards .card {
        width: clamp(22vw, 70vh, 20vw);
        height: clamp(30vw, 82vh, 13.2vw);
    }

    .sec-heading > .row > .col-lg-8,
    .sec-heading > .row > .col-lg-4 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .col-lg-4.custom-border-left {
        padding-left: 15px;
    }
}

@media (max-width: 1200px) {

    .profile-div h2,
    span.inner-gold {
        font-size: 20px;
    }

    .col-lg-8 .row .col-lg-8 {
        padding-right: 15px;
    }

    .banner-bg {
        overflow-x: hidden;
    }

        .banner-bg::-webkit-scrollbar {
            display: none;
        }

    .cards .card {
        width: clamp(22vw, 70vh, 20vw);
        height: clamp(30vw, 82vh, 13.2vw);
    }

    body .aqua-table table td,
    body .aqua-table table th {
        font-size: 14px;
    }

    .navbar-light .navbar-nav .floating .nav-link {
        font-size: 16px;
    }
}

@media (max-width: 1023px) {
    .reportsLeftRight {
        flex-wrap: wrap;
    }

        .reportsLeftRight .reportLeft,
        .reportsLeftRight .reportRight {
            width: 100%;
        }

    .performanceSection {
        padding-left: 0px;
        margin-top: 15px;
    }

    .back-blue > .row > .col-4,
    .back-blue > .row > .col-8 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .sec-heading .questionLeftSideBar {
        min-height: 200px;
    }

    .row.secondLayout {
        margin: 15px 0;
    }

    .sec-heading .row .passageQuestion {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 991px) {
    .tradeContainer .card-grid .card-list {
        width: 100%;
        margin-bottom: 15px;
    }

    section.aqua-table.aquaTradeTable.tradeContainer {
        margin-top: 0 !important;
    }

    .mobileTrade .card-list label {
        width: 100%;
    }

        .mobileTrade .card-list label.hide {
            display: none;
        }

    .mobileTrade .card-list > div {
        margin-bottom: 20px;
    }

    .districtTournament {
        display: inline-block;
    }

    .card-grid .card-list label {
        padding-right: 5px;
    }

    .card-list span.badge {
        color: #fff;
        font-weight: 400;
        font-size: 13px;
        letter-spacing: 1px;
        margin-left: 5px;
    }

    .noActive {
        background: rgb(255 255 255 / 75%);
    }

    .card-grid .card-list button.btn {
        width: 100%;
    }

    .mobile span.rankingImg {
        width: auto;
    }

    .mobile {
        display: block;
    }

    body #oceanTrivia {
        max-width: calc(100% - 30px);
    }

        body #oceanTrivia .modal-title {
            font-size: 18px;
        }

    .desktop,
    .shape1 svg,
    .shape2 svg {
        display: none;
    }

    .profileForm label,
    .profileForm .col-md-9 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .loginRightSection .group select,
    .css-1dimb5e-singleValue,
    .css-1nmdiq5-menu,
    .loginRightSection input {
        font-size: 14px;
    }

    .loginContainer {
        padding: 40px 15px 0px;
    }

    .wrapBox.wrapBox2 {
        right: 54px;
    }

    .waves {
        width: 100%;
    }

    .banner-bg {
        overflow-x: visible;
    }

    .opponentSummary .opponentContainer .left,
    .opponentSummary .opponentContainer .right {
        width: 100%;
        min-height: 660px;
    }

    .opponentSummary .opponentContainer .opponentContainer_inner {
        flex-wrap: wrap;
    }

    .opponentSummary .right span.winnerImg {
        top: 100px;
    }

    .opponentSummary .right {
        padding-top: 200px;
    }

    .opponentSummary .opponentContainer .right {
        height: auto;
        padding-bottom: 30px;
    }

    .opponentSummary .opponentContainer .center img {
        width: 50px;
    }

    .cardListBox .cardList {
        width: 25%;
    }

    .tab-pane .l-container {
        grid-template-columns: repeat(4, 1fr);
        padding: 15px;
        grid-gap: 15px;
    }

    .cardCount {
        width: 25px;
        height: 25px;
        right: -8px;
        top: -10px;
        font-size: 16px;
    }

    footer {
        margin-top: 0;
    }

    .sandContainer {
        background-size: cover;
    }

    .wrapBox.wrapBox3 {
        bottom: -18px;
    }

    body .login .sec-heading {
        min-height: calc(100vh - 92px);
    }

    .sec-heading > .row > .col-lg-8 > .row > .col-lg-4 {
        margin-top: 25px;
    }
}

@media (max-width: 767px) and (min-width: 450px) {
    .wrapBox {
        bottom: -36px;
        position: relative;
    }
}

@media (max-width: 767px) {
    body .leftSide .col-md-5 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    body .leftSide .col-md-3 {
        flex: 0 0 50%;
        max-width: 50%;
        justify-content: flex-end !important;
    }

    body .leftSide .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
        justify-content: center !important;
        border-top: 1px solid #ffffff61;
        padding-top: 10px;
        margin-top: 10px;
        padding-bottom: 8px;
    }

    .card-grid .card-list {
        width: calc(50% - 13px);
    }

    body .leftSide .profile-div {
        justify-content: center;
    }

    .row.leftSide .col-md-4 {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .opponentSummary .opponentBox .col-md-4,
    .opponentSummary .opponentBox .col-md-8 {
        text-align: center !important;
    }

    .fieldPopup .modal-body button {
        margin: 10px auto !important;
        display: block;
    }

    .fieldPopup .modal-dialog .modal-body {
        min-height: 163px;
    }

    #exampleModal,
    body .modal.fade > .modal-dialog {
        width: calc(100% - 30px);
    }

    .modal-header {
        padding: 10px;
    }

        .modal-header .modal-title.h4 {
            font-size: 18px;
        }

    .scoreBox {
        width: inherit;
        position: relative;
        display: flex;
        justify-content: center;
    }

    .listTitleInner .success-checkmark {
        position: relative;
        top: 3px;
        left: 0;
    }

    .accordionCard .progressBox {
        width: calc(100% - 34px);
        float: right;
        position: relative;
        margin-top: 8px;
    }

    .comingSoonContainer .comingsoon {
        font-size: 40px;
    }

    .targetPracticeContent .practiceList .listTitle {
        width: 50%;
    }

    .wrapBox.wrapBox3 {
        display: none;
    }

    .tableResponsive tr td:before {
        content: attr(data-label);
        float: left;
        font-weight: bold;
        text-transform: uppercase;
    }

    .tableResponsive tbody tr th {
        display: none;
    }

    .tableResponsive tr td {
        border-bottom: 1px solid #ddd;
        display: block;
        text-align: right;
    }

    .tableResponsive thead tr th {
        display: block;
        float: left;
    }

    .tableResponsive thead tr {
        width: 100%;
        display: inline-block;
    }

    .tableResponsive tr {
        margin-bottom: 0.625em;
    }

    body .table-striped.tableResponsive tbody tr {
        background-color: #f8f8f8;
        display: inline-block;
        width: 100%;
        border-radius: 5px;
        overflow: hidden;
    }

    .tableResponsive tr td:last-child {
        border-bottom: none;
    }

    .tableResponsive tr td button {
        margin-top: 0;
    }

    body .table-striped.tableResponsive tbody tr.m-none,
    body .table-striped.tableResponsive thead tr.m-none,
    body .table-striped.tableResponsive thead.m-none {
        display: none;
    }

    .tableResponsive thead {
        margin-bottom: 10px;
        display: inline-block;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .card-grid .card-list {
        width: 100%;
    }

    .opponentSummary .opponentBox .opponentInfo .col-8,
    .opponentSummary .opponentBox .opponentInfo .col-4 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        text-align: left !important;
        margin-top: 10px;
    }

    .opponentSummary .opponentContainer .left,
    .opponentSummary .opponentContainer .right {
        min-height: 800px;
    }

    .summerySessionContainer {
        margin-top: 40px;
    }

    .header-right {
        padding-right: 15px;
    }

    .summerySessionContainer {
        padding: 20px 0px;
    }

        .summerySessionContainer h2 {
            font-size: 30px;
        }

            .summerySessionContainer h2.sessionPercent {
                font-size: 55px;
            }

    .cardListBox .cardList {
        width: 33.33%;
    }

    .tab-content .cardListBox {
        height: inherit;
        min-height: inherit;
    }

    .profileForm .form-group.d-flex {
        flex-wrap: wrap;
    }

        .profileForm .form-group.d-flex .col-md-3,
        .profileForm .form-group.d-flex .col-md-9,
        .profileForm .col-md-12.form-group {
            padding: 0;
        }

    .owl-item.active.center > div {
        height: 72px;
        width: 72px;
    }

    .owl-item.active > div {
        height: 50px;
        width: 50px;
    }

    .modal-header {
        font-size: 16px;
    }

    .preTest > div,
    .postTest .postTestInner {
        border: 4px solid #fff;
    }

    .preTest,
    .postTest {
        height: 150px;
        position: relative;
        width: 150px;
    }

    span.percentValue {
        font-size: 45px;
    }

    .sec-heading .secondLayout .ansList {
        width: 100%;
    }

    body .sec-heading {
        padding-left: 15px;
        padding-right: 15px;
    }

    .opponentAvatar {
        max-width: 70px;
        border: 3px solid #333;
        position: absolute;
        left: -30px;
        top: 5px;
    }

    .opponentContainer .left,
    .opponentContainer .right {
        height: 350px;
        width: 100%;
    }

    .opponentContainer_inner {
        flex-wrap: wrap;
    }

    .opponentContainer .center img {
        width: 30px;
    }

    .opponentBox .opponentName {
        padding: 15px;
        margin-top: 0px;
    }

    .rank {
        font-size: 22px;
    }

        .rank img {
            max-width: 30px;
        }

    .opponentContainer_inner button {
        font-size: 16px;
        border: 2px solid var(--brown-color);
    }
}

@media (max-width: 560px) {
    .accordionCard .progressBox span.progressNo {
        left: -33px;
        min-width: 55px;
        position: static;
    }

    .tab-pane .l-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .wrapBox.wrapBox2 .blade-left-s {
        bottom: -35px;
    }

    .accordionCard .progress {
        height: 18px;
        width: 100%;
    }

    .accordionCard button.btn {
        white-space: inherit;
    }

    .targetPracticeContent .practiceList .listTitle {
        width: 100%;
    }

    .targetPractice .accordionCard .card-body {
        padding: 15px 0;
    }

    .arrow {
        top: 100%;
        transform: rotate(223deg) translateY(0%) translateX(50%);
        left: 50%;
    }

    .targetPracticeContent .practiceList .listTitle {
        margin-bottom: 30px;
    }

    .accordionCard .progressBox {
        width: 100%;
        float: left;
        display: flex;
    }

    .accordionHeader button .fa {
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
    }

    .targetPracticeContent .practiceList .listTitle.active .listTitleInner {
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
    }

    .navbar-light .navbar-nav .floating .nav-link,
    .navbar-light .navbar-nav .floating.active .nav-link {
        animation-name: none;
    }
}

@media (max-width: 450px) {
    .tab-pane .l-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .cards .card {
        width: clamp(42vw, 70vh, 30vw);
        height: clamp(55vw, 10vh, 15.2vw);
        margin: 20px auto 50px auto;
    }

    .custom-border-left .cards .col-6 .card.charizard,
    .custom-border-left .cards .col-6 .card.pika {
        left: 0;
    }

    .rightSideInner .cards .col-6 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .sandContainer {
        padding-bottom: 50px;
    }

    .blade {
        bottom: 0;
    }

    .copyright {
        width: 100%;
        text-align: center;
    }

    .navbar-nav {
        flex-wrap: wrap;
    }

        .navbar-nav li.nav-item {
            width: 100%;
            margin-bottom: 10px;
        }

    .navbar-light .navbar-nav .floating .nav-link {
        margin: 0;
    }

    body nav.navbar {
        padding-right: 0;
    }
}

.react-pdf__Document .react-pdf__Page__textContent,
.react-pdf__Page__annotations {
    display: none;
}

.ranking-div label {
    line-height: 0;
}

.ranking-div div {
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
}

.ranking-div {
    padding-top: 13px;
}

.avatar {
    line-height: 0;
}

span.inner-avatar {
    color: #333;
    font-size: 14px;
    font-family: var(--primary-font-family);
    margin-left: 10px;
    font-weight: 400;
}

span.rankingImg {
    display: inline-block;
    vertical-align: middle;
    width: 28%;
}

.rankingImg img {
    width: 30px;
    position: relative;
    top: 2px;
    height: inherit;
}

.react-pdf__Document .react-pdf__Page__textContent,
.react-pdf__Page__annotations {
    display: none;
}

.colorBox {
    width: 15px;
    height: 15px;
    border-radius: 5px;
    padding: 0;
    display: inline-block;
}

.prePostTestLabel {
    text-align: right;
    padding: 0 15px;
}

    .prePostTestLabel > span {
        padding-left: 30px;
    }

    .prePostTestLabel span.colorBox {
        width: 10px;
        height: 10px;
        background: gray;
        margin-right: 8px;
    }

.messageChatBoard .card-footer > div {
    width: 100%;
    background: #fff;
    height: 40px;
    padding-left: 10px;
    overflow-y: auto;
    padding-top: 5px;
}

.messageChatBoard .card-footer button {
    background: #fff;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1;
    border-radius: 0;
}

.battlecolor {
    color: #fff;
}

.standardColor {
    color: rgb(255 109 37);
}

span.avatarImgTeacher img,
.studentAvatar img,
.studentClsImg img {
    position: absolute;
    object-fit: fill;
    width: 100%;
    height: 100%;
}

span.avatarImgTeacher,
.studentClsImg img {
    overflow: hidden;
    position: relative;
}

.rankingDisplay {
    height: inherit;
}

.infoIcon {
    display: inline-block !important;
    position: absolute;
    bottom: 2px;
    left: 5px;
    font-size: 20px;
}

.assignmentAccordion .assignmentTd {
    width: 25%;
}

.blankSpace {
    width: 45px;
}

.accordionHeader .assignmentAccordion .blankSpace ~ .assignmentTd {
    color: var(--brown-color);
    font-weight: 500;
}

.acHeader .assignmentAccordion {
    background: var(--heading-color);
    padding: 10px 0;
    padding-right: 10px;
}

#assignmentaccordion {
    padding: 0 15px 15px !important;
}

@keyframes arrowAnimation {
    0% {
        opacity: 0;
        transform: translate(0%, 0);
        transition: 0.5s all linear;
    }

    100% {
        opacity: 1;
        transform: translate(0%, -15px);
        transition: 0.5s all linear;
    }
}

.levelUpAnimation .progress-bar {
    animation: slide 4s linear infinite;
    will-change: background-position;
}

@keyframes slide {
    from {
        background-position-x: 0;
    }

    to {
        background-position-x: 113px;
    }
}

.charizard .fa-exclamation-triangle {
    position: absolute;
    top: -11px;
    right: -7px;
    background-color: #ffcd00;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    color: #bc0000;
    font-size: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.b-game-card__cover .progress.max {
    background: #b1ffb1;
    width: 100%;
    margin-left: 0;
}

.progress.max div {
    color: green;
}

.levelUp {
    position: absolute;
    background: #fff;
    height: 239px;
    animation: fade 3s infinite;
}

@keyframes fade {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* freeplay */

.ticktListCardInner {
    background: linear-gradient(180deg, #6de0ff 0%, #113ab8 100%);
    box-shadow: 0px 9px 7px 0px #00000040;
    border-radius: 12px;
    gap: 15px;
}

    .ticktListCardInner .play {
        position: absolute;
        right: 35px;
        bottom: -36px;
        z-index: 1;
    }

.gameBanner {
    position: relative;
    border: 3px solid #ffffff;
    border-radius: 13px;
    height: 245px;
}

.freeTicktDiscription .title {
    font-family: Fira Sans;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.gameBanner > img {
    width: 100%;
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
}

.highScore {
    color: #fff;
    font-size: 20px;
}

.totalTicket {
    background: var(--blueBg);
    padding: 9px 0px 9px 0px;
    border-radius: 0px 0px 12px 12px;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    color: #0a1f4a;
}

.bannerPadd {
    padding: 15px 15px 0 15px;
}

.freeTicktDiscription {
    padding-top: 15px;
}

.ticktListContainerInner {
    gap: 30px;
}

    .ticktListContainerInner .ticktListCard {
        width: calc(33.3% - 20px);
        transform: scale(1);
        transition: 0.3s all ease-in;
    }

        .ticktListContainerInner .ticktListCard:hover {
            transform: scale(1.05);
            transition: 0.3s all ease-in;
            cursor: pointer;
        }

.ticketHeader {
    background: var(--blueBg);
    font-size: 38px;
    font-weight: 700;
    color: #003689;
    padding: 9px 0px 9px 0px;
    border-radius: 12px 12px 0px 0px;
}

.tableBg {
    background: rgb(0 0 0 / 35%);
    padding: 15px;
    border-radius: 0 0 12px 12px;
}

.playHistoryTitle {
    font-size: 24px;
    font-weight: 700;
    color: #ffcc30;
    margin-bottom: 15px;
    line-height: 28px;
}

.lightTheme thead tr {
    background: transparent;
    color: #fff;
}

.lightTheme thead {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

body .table-striped.lightTheme tbody tr:nth-of-type(even) {
    background-color: rgb(255 255 255 / 15%);
}

body .table-striped.lightTheme tbody tr {
    color: #fff;
    background: transparent;
    border: none;
}

span.ticktScore {
    cursor: pointer;
    text-decoration: underline;
}

#highScore .modal-content {
    background: #004695;
    border: 1px solid #fff;
}

#highScore .modal-header {
    background: linear-gradient(180deg, rgba(10, 31, 74, 0) 0%, #0a1f4a 100%);
    color: #fff;
    border-bottom: none;
}

body #highScore.modal-dialog {
    max-width: 1000px;
    width: 100%;
}

#highScore .modal-header button.close {
    color: #fff;
    opacity: 0.8;
}

#highScore.modal-dialog table thead {
    background: linear-gradient(180deg, #24a1e2 0%, rgba(152, 218, 252, 0.99) 91.15%);
}

    #highScore.modal-dialog table thead tr th {
        color: #0a1f4a;
    }

.lightTheme thead tr,
.lightThemePopup thead tr {
    background: transparent;
    color: #fff;
}

.lightTheme thead {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

body .table-striped.lightTheme tbody tr:nth-of-type(even),
body .table-striped.lightThemePopup tbody tr:nth-of-type(even) {
    background-color: rgb(255 255 255 / 15%);
}

body .table-striped.lightTheme tbody tr,
body .table-striped.lightThemePopup tbody tr {
    color: #fff;
    background: transparent;
    border: none;
}

span.ticktScore {
    cursor: pointer;
    text-decoration: underline;
}

tr.highlightStudent {
    background: #17a2b8 !important;
}

body #highScore .nav-tabs .nav-link.active,
body #highScore .nav-tabs .nav-link:hover {
    background-color: #0a1f4a;
}

body #highScore .nav-tabs .nav-item .nav-link {
    color: #fff;
}

#highScore .modal-body {
    min-height: 300px;
}

.ticketBox {
    cursor: pointer;
}

.ticketCountText {
    color: #fff
}

body #highScore .nav-tabs .nav-item .nav-link:hover {
    cursor: pointer;
}

body #highScore .nav-tabs {
    border-bottom: none;
}

    body #highScore .nav-tabs .nav-item {
        margin-bottom: 1px;
        background: #ffffff42;
        margin-right: 3px;
        border-radius: 5px 5px 0 0;
    }

.tableContainer {
    background: #0a1f4a;
    padding: 10px;
}

.fade.modal.show {
    backdrop-filter: blur(3px);
}

@media (max-width: 1399px) {
    .ticktListContainerInner .ticktListCard {
        width: calc(50% - 20px);
    }

    .ticketHeader {
        font-size: 28px;
    }

    .playHistoryTitle {
        font-size: 18px;
    }
}

@media (max-width: 1099px) {

    .freeTicketPage .col-md-8,
    .freeTicketPage .col-md-4 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .freeTicketPage .col-md-8 {
        order: 2;
        margin-top: 15px;
    }
}

@media (max-width: 767px) {
    .ticktListContainerInner .ticktListCard {
        width: 100%;
    }
}

.wrongAns {
    width: 40px;
    height: 40px;
    background: #d00000;
    border-radius: 50%;
    color: #fff;
    display: flex;
    justify-content: center;
    padding-top: 7px;
}

.b-game-card__cover.lock {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    filter: grayscale(100%);
    box-shadow: none;
}

span.lockImages {
    width: 40px;
    height: 40px;
    display: inline-block;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    left: -5px;
    bottom: -5px;
    background: #e9e9e9;
    padding: 5px;
    box-shadow: 2px 4px 2px rgb(0 0 0 / 78%);
}

.b-game-card__cover.lock + .level {
    background: #00bbf6;
    border-radius: 0 0 5px 5px;
    min-height: 48px;
    padding-top: 7px;
    box-shadow: 1px 5px 3px rgb(0 0 0 / 49%);
    margin-top: -2px;
}

.card-skin {
    display: flex;
}

.poupuCard {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 2px solid #008ebb;
}



.skin .skinList {
    width: calc(50% - 13px);
    border: 4px solid #55d2f9;
    border-radius: 10px;
    text-align: center;
    padding: 5px;
    background: rgb(255 255 255 / 73%);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 123px;
    outline: 3px solid #008ebb;
    position: relative;
}

    .skin .skinList.active,
    .skin .skinList:hover {
        border: 4px solid #53d1f9;
        outline: 3px solid #ff6d25;
        cursor: pointer;
    }

.seaCreatureBackCard .modal-body {
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(0, 187, 246, 1) 100%);
    border-radius: 10px;
}


.skinInner {
    flex-wrap: wrap;
    gap: 25px;
    width: 300px;
    display: flex;
    margin-top: 20px;
    justify-content: center;
}

.skinBtn {
    border-top: 1px solid #007bff;
}


    .skinBtn button {
        background: #ff6d25;
        border-color: #ff6d25;
    }

body .seaCreatureBackCard .modal-dialog {
    max-width: 676px;
    width: 100%;
}

body .seaCreatureBackCard #cardsOpen button.close {
    right: -19px;
    top: -21px;
    left: auto;
    -webkit-transform: none;
    transform: none;
}

.skinList img {
    width: auto;
    height: auto;
}

.skinList.lock img,
.skinList.lock {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    filter: grayscale(100%);
    box-shadow: none;
    background: #cfcfcf;
}

    .skinList.lock span.lockImages {
        background: #cfcfcf;
        left: -19px;
        bottom: -14px;
    }

    .skinList.lock:hover,
    .skinList.lock:hover img {
        filter: grayscale(0%);
        background: transparent;
    }

.noSkin {
    font-size: 16px;
    background: #ffffffad;
    padding: 15px;
    width: 100%;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.skinList.lock:hover {
    outline: 3px solid #737373;
}

@media(max-width:600px) {
    .card-skin {
        flex-wrap: wrap;
        justify-content: center;
    }

        .card-skin .skin {
            margin-top: 20px;
        }

    #cardsOpen {
        margin-top: 22px;
    }

    .poupuCard {
        margin-right: 0;
        padding-right: 0;
        border-right: none;
    }

    body .seaCreatureBackCard #cardsOpen button.close {
        right: -10px;
        top: -10px;
    }
}
