@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Nunito", sans-serif !important;
  background-color: rgba(13, 0, 79, 0.0196078431) !important;
}

.primary-bg {
  background-color: #140079;
}

.secondary-bg {
  background-color: #0063dd;
}

.primary-text {
  color: #140079 !important;
}

.secondary-text {
  color: #0063dd;
}

/* width */
::-webkit-scrollbar {
  width: 7px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #140079;
}

.btn-cls {
  background: linear-gradient(135deg, #140079, #0063dd);
  color: white;
  font-size: 1.2rem;
  border: none;
  border-radius: 5px;
  transition: 0.4s all;
  text-decoration: none;
  border: 1px solid #140079;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-cls::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 0;
  height: 100%;
  width: 0;
  transform: skew(20deg) translate(-50%, 0%);
  background-color: white;
  transition: 0.4s all;
  z-index: -1;
}
.btn-cls:hover {
  color: #140079;
}
.btn-cls:hover::before {
  width: 85%;
  transform: skew(20deg) translate(-50%, 0%);
}

.pre-btn {
  border: 1px solid #140079;
  color: #140079 !important;
  font-size: 1.2rem;
  border-radius: 5px;
  transition: 0.4s all;
  text-decoration: none;
}
.pre-btn:hover {
  background-color: white;
  color: white !important;
  background-color: #140079;
  letter-spacing: 1px;
  font-weight: 500;
}

.login-page {
  height: 100vh;
  overflow: hidden;
  background: url(../images/login-bg.png) no-repeat right;
  background-size: contain;
}
.login-page .form-box .logo {
  width: 40%;
}
.login-page .form-box .logo img {
  width: 100%;
}
.login-page .form-box .form-sec {
  max-width: 530px;
  background-color: rgb(255, 255, 255);
  border-radius: 20px;
}
.login-page .form-box .form-sec input {
  transition: 0.3s all;
}
.login-page .form-box .form-sec input::-moz-placeholder {
  opacity: 0.5;
}
.login-page .form-box .form-sec input::placeholder {
  opacity: 0.5;
}
.login-page .form-box .form-sec input:focus {
  border-color: #140079;
}
.login-page .form-box .fp {
  text-decoration: none;
  color: #140079;
}

label {
  transition: 0.3s all !important;
}

header {
  width: 100%;
  background-color: #ffffff;
  z-index: 999;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  transition: 0.4s all;
  border-radius: 15px 15px 0px 0px;
  margin-top: 10px;
}
header .nav-item .nav-link {
  color: #140079;
}
header .nav-item .active {
  background: linear-gradient(135deg, #140079, #0063dd);
  color: #ffffff !important;
  border-radius: 5px;
  font-weight: 700;
}
header .btn-sec .profile {
  width: 36px;
}
header .btn-sec .icon i {
  border: 1px solid;
  padding: 9px;
  width: 35px;
}
header .btn-sec .btn:focus {
  outline: none;
  box-shadow: none;
}
header .btn-sec .dropdown-menu {
  border: none;
  box-shadow: 0px 5px 10px rgba(128, 128, 128, 0.354);
}
header .btn-sec .dropdown-menu a {
  margin: 10px 0px;
  transition: 0.3s all;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0;
}
header .btn-sec .dropdown-menu a:hover {
  color: #140079;
  background-color: transparent;
}
header .btn-sec .dropdown-menu .logout-btn {
  border: 1px solid #140079;
  padding: 6px 10px;
  border-radius: 100px;
}
header .btn-sec .dropdown-menu .logout-btn:hover {
  background-color: #140079;
  color: white;
}

.sticky {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 0px;
  margin-top: 0;
}

.profile-details {
  border-radius: 0px 0px 15px 15px;
  /* Circle Parts */
  /* Progress Handling */
}
.profile-details .progress-circle {
  position: relative;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: transparent;
}
.profile-details .progress-circle .circle-left,
.profile-details .progress-circle .circle-right {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 8px solid transparent;
  border-radius: 50%;
}
.profile-details .progress-circle .circle-left {
  transform: rotate(0deg);
  border-right-color: #007bff;
}
.profile-details .progress-circle .circle-right {
  transform: rotate(180deg);
  border-left-color: #007bff;
}
.profile-details .progress-circle .inner-circle {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.profile-details .progress-circle .progress-value {
  font-size: 24px;
  font-weight: bold;
  color: #007bff;
}
.profile-details .progress-circle[data-progress="50"] .circle-right {
  transform: rotate(270deg); /* 180 + 50% of 360 (90 degrees) */
}
.profile-details .progress-circle[data-progress="75"] .circle-right {
  transform: rotate(315deg); /* 180 + 75% of 360 (135 degrees) */
}
.profile-details .progress-circle[data-progress="100"] .circle-right {
  transform: rotate(360deg); /* Full circle */
}
.profile-details .progress-circle[data-progress="50"] .circle-left {
  border-right-color: #dcdcdc;
}
.profile-details .progress-circle[data-progress="75"] .circle-left {
  border-right-color: #dcdcdc;
}
.profile-details .progress-circle[data-progress="100"] .circle-left {
  border-right-color: #007bff;
}

.class-sec .class-box {
  border: 2px solid #140079;
  transition: 0.4s all;
  background: #ffffff;
}
.class-sec .class-box .imgbox {
  width: 180px;
}
.class-sec .class-box:hover {
  background: linear-gradient(135deg, #140079, #0063dd);
  box-shadow: 0px 5px 10px rgba(213, 181, 107, 0.2470588235);
}
.class-sec .class-box:hover .text p {
  color: #ffffff !important;
}
.class-sec .class-box:hover .text h5 {
  color: #ffffff !important;
}

.all-units {
  background-color: rgba(211, 211, 211, 0.443);
  height: 600px;
  overflow-y: auto;
}
.all-units .class-box {
  border: 1px solid #140079;
}
.all-units .class-box .imgbox {
  width: 150px;
}

.class-details .skill-box {
  border: 1px solid rgb(207, 207, 207);
  background-color: #ffffff;
  transition: 0.4s all;
}
.class-details .skill-box:hover {
  box-shadow: 0px 5px 10px rgba(213, 181, 107, 0.2470588235);
}
.class-details .skill-box .skill-img {
  border-radius: 15px;
  overflow: hidden;
}
.class-details .skill-box .skill-img img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 15px;
}

.lecture-detail .box {
  border: 1px solid #140079;
  border-radius: 10px;
  transition: 0.3s all;
  position: relative;
  overflow: hidden;
}
.lecture-detail .box .custom-audio-player {
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: #140079;
  padding: 12px;
  border-radius: 0px 0px 20px 0px;
}
.lecture-detail .box .custom-audio-player .fas {
  cursor: pointer;
  color: #ffffff !important;
}
.lecture-detail .box img {
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
  display: block;
  border-bottom: 1px solid #140079;
}
.lecture-detail .explain {
  border-radius: 10px;
  overflow: hidden;
}
.lecture-detail .explain h3 {
  background-color: #140079;
}

.vocabulary-detail {
  /* Add your custom styles for the audio player here */
}
.vocabulary-detail .box {
  max-width: 250px;
  position: relative;
}
.vocabulary-detail .custom-audio-player {
  display: flex;
  align-items: center;
  justify-content: center;
}
.vocabulary-detail .custom-audio-player .fas {
  cursor: pointer;
  color: #ffffff !important;
}
.vocabulary-detail .play-pause-icon {
  margin-right: 10px;
  cursor: pointer;
}
.vocabulary-detail .option-box {
  border-radius: 10px;
  overflow: hidden;
  transition: 0.5s all;
  border: 1px solid gray;
}
.vocabulary-detail .option-box .custom-audio-player {
  background-color: #140079;
  padding: 15px 10px;
}
.vocabulary-detail .option-box:hover {
  border-color: #140079;
  box-shadow: none;
}

.page-title {
  background: url(../images/skill-header-bg.jpg) no-repeat top/cover;
  position: relative;
  z-index: 1;
}
.page-title::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #140079;
  opacity: 0.7;
  z-index: -1;
}
.page-title .exam-logo {
  width: 100px;
  height: 100px;
  background-color: white;
  padding: 33px 0px 0px 12px;
  border-radius: 100%;
  position: relative;
  text-align: center;
  margin: 0 auto;
}
.page-title .exam-logo img {
  width: 100%;
}

.wrapper {
  border-radius: 10px;
  overflow-x: hidden;
}
.wrapper p {
  border-bottom: 1px solid rgba(0, 0, 83, 0.2588235294);
  padding-bottom: 15px;
}
.wrapper p b {
  font-size: 1.1rem;
}
.wrapper p:nth-last-child(1) {
  margin: 0;
  border: 0;
  padding: 0;
}
.wrapper .country-flag {
  width: 40px;
}
.wrapper .unit-box {
  border-radius: 15px;
  transition: 0.4s all;
}
.wrapper .unit-box .unit-img {
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid white;
}
.wrapper .unit-box .unit-img img {
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
}
.wrapper .unit-box .progress {
  border-radius: 100px;
}
.wrapper .unit-box:hover .unit-img {
  border: 1px solid rgb(127, 127, 127);
}
.wrapper .unit-box:hover h4 {
  color: #140079;
}
.wrapper .unit-heading-box {
  border-radius: 20px;
}
.wrapper .unit-heading-box img {
  width: 200px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}

.buttons {
  width: 820px !important;
  margin: auto;
}

.instruction li {
  line-height: 2.5;
  font-weight: 500;
}
.instruction li p {
  font-size: 1.1rem;
}

.skills {
  max-width: 100% !important;
}
.skills .skill-box {
  overflow: hidden;
  transition: 0.3s all;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgb(236, 236, 236);
}
.skills .skill-box a {
  color: #140079;
  text-decoration: none;
  font-weight: bold;
}
.skills .skill-box .skill-img {
  border-radius: 15px;
  overflow: hidden;
}
.skills .skill-box .skill-img img {
  width: 120px;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}
.skills .radio-btn .hobbies-icon img {
  display: block;
  width: 100%;
}

.quiz {
  border-top: 0;
}
.quiz .timer-box {
  max-width: 800px;
  margin: 0 auto;
}
.quiz .quiz-items {
  max-width: 800px;
  margin: 0 auto;
}
.quiz .quiz-items .finish-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  /* Style for the buttons (customize as needed) */
}
.quiz .quiz-items .finish-btn .custom-carousel-buttons {
  background-color: #333;
  color: #fff;
  text-align: center;
  cursor: pointer;
  font-size: 18px;
  padding: 10px 30px;
}
.quiz .quiz-items .finish-btn .custom-prev-button {
  background-color: #70ba65;
  border-radius: 5px 0px 0px 5px;
}
.quiz .quiz-items .finish-btn .custom-next-button {
  background-color: #140079;
  border-radius: 0px 5px 5px 0px;
}
.quiz .quiz-items .quiz-box {
  position: relative;
}
.quiz .quiz-items .quiz-box .quiz-img {
  width: 200px;
  height: 150px;
  border: 1px solid gray;
  border-radius: 15px;
  overflow: hidden;
}
.quiz .quiz-items .quiz-box .quiz-img img {
  -o-object-fit: fill;
     object-fit: fill;
}
.quiz .quiz-items .quiz-box ol {
  padding: 10px;
}
.quiz .quiz-items .quiz-box ol li {
  margin-left: 20px;
}
.quiz .quiz-items .quiz-box .quiz-option form label {
  color: #000000;
  display: flex;
  align-items: center;
  width: 100%;
  background-color: rgba(237, 237, 237, 0.532);
  padding: 10px;
  border-radius: 5px;
}
.quiz .quiz-items .quiz-box .quiz-option form label input {
  border: 4px solid #000; /* Add a 4px solid border with black color */
  border-radius: 50%; /* Optional: make the border round to style as a circle */
  width: 20px; /* Optional: set width and height for the radio button */
  height: 20px;
  background-color: gray;
}
.quiz .quiz-items .quiz-box .question-area input {
  border: none;
  border-bottom: 1.5px dashed;
}
.quiz .quiz-items .quiz-box .paragraph-img {
  width: 250px;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}
.quiz .quiz-items .quiz-box .grammar-q-img img {
  width: 200px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.quiz .quiz-items .quiz-box textarea {
  transition: 0.3s all;
}
.quiz .quiz-items .quiz-box textarea:focus {
  border-color: #140079;
}
.quiz h4 input {
  border: 0;
  border-bottom: 1px dashed;
  font-size: 1.1rem;
  max-width: 250px;
}
.quiz h4 input:focus {
  outline: none;
}

#timer {
  font-size: 2rem;
  font-weight: 700;
  color: #140079;
}

.answer-area textarea {
  outline: none;
  border-radius: 10px;
  padding: 10px;
  border: 1px solid #140079;
  transition: 0.3s all;
}
.answer-area textarea:focus {
  border-color: #140079;
}

.copyright {
  position: fixed;
  bottom: 0;
  background-color: #140079;
  width: 100%;
  left: 0;
  text-align: center;
  padding: 10px;
  color: white;
}

#audioElement {
  display: none;
}

#audioElement2 {
  display: none;
}

.match-word-box {
  border: 1px solid #140079 !important;
  border-radius: 10px;
  margin-bottom: 20px;
}
.match-word-box img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 120px;
  height: 100px;
}

.option-con {
  display: flex;
  flex-wrap: wrap;
}
.option-con .draggable {
  cursor: all-scroll;
  border-radius: 5px;
  width: 48%;
  margin: 5px;
}

.nav-pills .nav-link {
  border: 1px solid #140079 !important;
  cursor: pointer;
}
.nav-pills .nav-link label {
  color: #140079;
}
.nav-pills .active {
  background-color: #140079 !important;
}
.nav-pills .active label {
  color: #ffffff !important;
}

.upload-img .image-preview {
  max-width: 300px;
  max-height: 300px;
  border: 1px solid #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.upload-img .preview {
  max-width: 100%;
  max-height: 100%;
}

.tab-content form label {
  transition: 0.3s all;
}
.tab-content form input:focus {
  border-color: #140079;
  box-shadow: 0px 5px 7px rgba(59, 44, 124, 0.2235294118);
}

.tooltip {
  position: relative !important;
  color: white;
  padding: 7px;
  z-index: 999;
  opacity: 1 !important;
  background-color: #140079;
  margin: 6px auto 0 auto !important;
  display: inline-block !important;
  cursor: not-allowed;
  border-radius: 6px;
}

.close-btn {
  cursor: pointer;
  background-color: white;
  padding: 1px 5px;
  color: black;
  margin-left: 3px;
  border-radius: 6px;
}

.not-allowed-drop {
  cursor: not-allowed;
}

#wordContainer {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
#wordContainer span {
  border: 1px solid gray;
  cursor: all-scroll;
  background-color: rgb(207, 207, 207);
  padding: 5px 10px;
  border-radius: 4px;
  flex: 1 0 6%;
  margin: 10px;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
#wordContainer span:hover {
  background-color: #140079;
  color: #ffffff;
}

.keyboard {
  box-sizing: border-box;
  height: 50%;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 5px;
  background-color: #4b56bb;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transition: bottom 0.5s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 999999;
}
.keyboard * {
  margin: 0;
  padding: 0;
}
.keyboard *:not(i) {
  font-family: monospace;
}
.keyboard button:focus, .keyboard input:focus, .keyboard textarea:focus {
  outline: none;
}
.keyboard .keyboard__keys {
  text-align: center;
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.keyboard .keyboard__keys .keyboard__key {
  position: relative;
  height: 45px;
  width: 6%;
  max-width: 70px;
  border: 4px solid transparent;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.2);
  color: #FFF;
  font-size: 1.2rem;
  font-weight: bold;
  margin: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  transition: all 0.09s;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.keyboard .keyboard__keys .keyboard__key:active {
  transform: scale(1.15);
}
.keyboard .keyboard__keys .keyboard__key.keyboard__key--wide {
  width: 10%;
  max-width: 140px;
}
.keyboard .keyboard__keys .keyboard__key.keyboard__key--extra-wide {
  width: 45%;
  max-width: 600px;
}
.keyboard .keyboard__keys .keyboard__key.keyboard__key--activatable::after {
  content: "";
  position: absolute;
  top: 5px;
  right: 5px;
  width: 8px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}
.keyboard .keyboard__keys .keyboard__key.keyboard__key--activatable.keyboard__key--active::after {
  background-color: #5eea59;
}
.keyboard .keyboard__keys .keyboard__key.keyboard__key--dark {
  background-color: rgba(0, 0, 0, 0.2);
}
.keyboard .keyboard__keys .keyboard__key.keyboard__key--close {
  width: 50px !important;
  background-color: red !important;
}
.keyboard .keyboard__keys .keyboard__input {
  padding: 15px 10px;
  display: none;
  background-color: rgba(0, 0, 0, 0.2);
  border: none;
  color: #FFF;
  font-size: 1.1rem;
  margin: 15px 0;
  border-radius: 4px;
  width: 80%;
  max-width: 1000px;
  letter-spacing: 1.5px;
  overflow-x: auto;
}
.keyboard .keyboard__keys .keyboard__input::-moz-placeholder {
  color: #FFF;
}
.keyboard .keyboard__keys .keyboard__input::placeholder {
  color: #FFF;
}
.keyboard--hidden {
  bottom: -300%;
}
.keyboard .languages__list {
  position: absolute;
  list-style: none;
  right: 115%;
  bottom: -13px;
  display: none;
}
.keyboard .languages__list .language__item {
  background-color: #FFF;
  border-radius: 5px;
  margin-bottom: 4px;
  padding: 2px;
  width: 40px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #555;
  transition: transform 0.2s;
}
.keyboard .languages__list .language__item:hover {
  opacity: 0.8;
  transform: scale(1.2);
}
.keyboard .languages__list.show {
  display: block;
}

#pills-Keyboard {
  position: relative;
}

.form-area {
  position: relative;
}
.form-area .showKeyboardBtn {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 15px 10px;
  border-radius: 20px 0px 0px 20px;
  background-color: transparent;
  border: none;
  color: #140079;
  font-weight: 700;
  width: 50px;
  height: 50px;
}
.form-area .showKeyboardBtn::after {
  position: absolute;
  content: "\f11c";
  font-family: fontawesome;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
}

audio {
  border-radius: 100px;
  border: 1px solid #140079;
  max-width: 275px;
}

/* Customize the appearance of the audio controls */
audio::-webkit-media-controls-panel {
  background-color: #ffffff; /* Change the background color of the controls */
  border-radius: 100px; /* Adjust border-radius for controls */
}

.profile-sec .profile-pic {
  background-color: #70ba65;
  border-radius: 15px;
  height: 100%;
}
.profile-sec .profile-pic img {
  width: 150px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 200px;
}
.profile-sec .information {
  background-color: rgb(241, 241, 241);
  border-radius: 15px;
}
.profile-sec .information h6 {
  line-height: 2;
}
.profile-sec .information h6 span {
  width: 150px;
  display: inline-block;
}
.profile-sec .information textarea:focus {
  border-color: #140079;
}

.contact-sec {
  background-color: rgb(241, 241, 241);
  border-radius: 15px;
}

.messages {
  background-color: #70ba65;
  border-radius: 10px;
}
.messages td a {
  background-color: #140079;
  padding: 7px;
  border-radius: 5px;
  font-size: 0.8rem;
  color: #ffffff;
}

.message-detail .reply {
  background-color: #70ba65;
  border-radius: 15px;
}
.message-detail .reply .icon-sid i {
  padding: 10px;
  border-radius: 7px;
  color: white;
}
.message-detail .message-box {
  background-color: rgba(248, 248, 248, 0.388);
}
.message-detail form {
  background-color: rgb(241, 241, 241);
  border-radius: 15px;
}

.library-box {
  max-width: 800px;
  background-color: #70ba65;
  border-radius: 15px;
  transition: 0.3s all;
}
.library-box a {
  color: #140079;
  font-size: 1.2rem;
}
.library-box img {
  width: 20px;
  height: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
.library-box p {
  font-size: 0.8rem;
}

/* Custom styling for the dropdown */
.owl-stage-outer {
  overflow: visible !important;
}
.owl-stage-outer .dropdown button img {
  width: 100px !important;
  height: 70px;
  margin: 0 auto;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
.owl-stage-outer .dropdown .dropdown-menu {
  width: 100%;
  margin-top: 10px !important;
}
.owl-stage-outer .dropdown .dropdown-menu img {
  width: 60px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #ffffff;
}
.owl-stage-outer .dropdown .dropdown-menu .dropdown-item {
  background-color: #4b56bb;
}

.owl-stage-outer::-webkit-scrollbar {
  display: none !important; /* For Chrome, Safari, and Opera: Hide the scrollbar */
}

/* Owl carousel items */
.owl-carousel .item {
  text-align: center;
  background: #f5f5f5;
  border: 1px solid #ddd;
  margin: 5px;
  padding: 10px;
}

@media (max-width: 425px) {
  .match-word-box img {
    width: 100%;
  }
}
@media (max-width: 999px) {
  .bottom-btns {
    position: relative !important;
    width: 100% !important;
  }
  .keyboard {
    display: none;
  }
  .sidebar {
    width: 0;
    overflow-x: hidden;
  }
  .sidebar .text-hidden .text {
    display: block;
  }
  .content {
    margin-left: 0;
  }
}
.thumb-anim {
  max-width: 120px;
  margin: 0 auto;
  top: 10%;
  right: 25%;
  transform: translate(-25%, -20%);
  text-align: center;
  position: absolute;
  display: none;
}
.thumb-anim::after {
  clear: both;
  content: "";
  display: block;
}
.thumb-anim .thumb {
  animation: scale 1.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  animation-fill-mode: forwards;
  animation-delay: 0s;
  font-size: 50px;
  text-decoration: none;
}
.thumb-anim .circle-wrap {
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  pointer-events: none;
  z-index: -1;
}
.thumb-anim .circle-lg {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border-style: solid;
  border-color: #aef3d5;
  opacity: 0;
  animation: scaleCircle 1.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  animation-fill-mode: forwards;
  animation-delay: 0.1s;
}
.thumb-anim .animate-circle {
  animation: scaleCircle 1.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  animation-fill-mode: forwards;
  animation-delay: 0.1s;
}

@keyframes scale {
  0% {
    transform: scale(1);
  }
  1% {
    transform: scale(0);
  }
  20% {
    transform: scale(0);
  }
  35% {
    transform: scale(1.4);
  }
  40% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  65% {
    transform: scale(1);
  }
  90% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes scaleCircle {
  0% {
    border-width: 90px;
    transform: scale(0);
  }
  15% {
    border-color: #f9e8a0;
    border-width: 90px;
  }
  30% {
    border-color: #a8ebc4;
    opacity: 1;
  }
  35% {
    border-color: #aef3d5;
  }
  50% {
    border-width: 0;
    transform: scale(1);
    opacity: 0.3;
  }
  100% {
    border-width: 0;
    transform: scale(1);
    opacity: 0;
  }
}
@media (max-width: 426px) {
  .thumb-anim {
    position: relative !important;
    top: 0;
    left: 0;
    right: inherit;
    transform: translate(0, 0);
    margin: 10px 0px;
  }
}/*# sourceMappingURL=style.css.map */