@charset "utf-8";

@font-face{
	font-family: Rubric;
	font-style: normal;
	font-weight: normal;
	src:url(../__fonts/Cabin-Bold.ttf);
}

@font-face{
	font-family: Ans;
	font-style: normal;
	src:url(../__fonts/Roboto-Regular.ttf);
}
div, input
{
    font-variant-ligatures: none;
}
@font-face{
	font-family: Title;
	font-style: normal;
	font-weight: normal;
	src:url(../__fonts/MyriadPro-Semibold_2.otf);
}
body{
	margin:0px;
	padding:0px;
	-webkit-user-select:none;
	-moz-user-select:none;
}
/*popup-css*/
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    text-align: center;
    background-size: cover !important;
    z-index: 9;
  }
  .popup-overlay  h2 {
    font-size: 46px;
    color: #fff;
    text-shadow: 1px 3px 5px #000;
    font-family: Ans, sans-serif;
}
  .start-button {
    min-width: min(90vw, 200px);
    min-height: 60px;
    display: inline-flex;
    font-size: clamp(16px, 3vw, 22px);
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1.3px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(90deg, rgb(134 189 192) 0%, rgb(121 93 80) 100%);
    border: none;
    border-radius: 1000px;
    box-shadow: 1px 1px 16px rgb(255 255 255 / 88%);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    outline: none;
    position: relative;
    padding: clamp(8px, 2vw, 10px);
}

div#rubricTxt {
    display: none;
}

div#rotateMessage {
    position: fixed;
    background: #000000e8;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    z-index: 999;
}
.roate-text {
    background: #fff;
    font-size: 50px;
    padding: 40px;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    border-radius: 15px;
}
.maindiv-questions {
    max-width: 800px;
    margin: 0px auto;
    background: #ffffffa8;
    text-align: center;
    padding: 15px;
    border-radius: 25px;
    border: 8px solid #ad530a;
    position: relative;
    top: 70px;
}

#startButton {
    padding: 20px 40px;
    font-size: 24px;
    border: none;
    border-radius: 50px;
    background-color: #ff6b6b;
    color: white;
    cursor: pointer;
    position: relative;
    transition: transform 0.2s;
    box-shadow: 0 8px 0 #cc4f4f;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  #startButton {
    animation: bounce 0.5s infinite;
    background-color: #ff8787;
  }

  #startButton:active {
    transform: translateY(8px);
    box-shadow: 0 0 0 #cc4f4f;
  }

  @keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }

  #startButton::before {
    content: '★';
    position: absolute;
    left: 15px;
    opacity: 0;
    transition: all 0.3s;
    animation: blink 0.5s infinite;
  }

  #startButton::after {
    content: '★';
    position: absolute;
    right: 15px;
    opacity: 0;
    transition: all 0.3s;
    animation: blink 0.5s infinite;
  }

  /* #startButton:hover::before,
  #startButton:hover::after {
    opacity: 1;
  } */

  @keyframes blink {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
  }

/*popup-css*/
#main{
	width: 100vw;
    height: 100vh;
    background-position: bottom;
    background-size: 100% 100%;
}



#rubricAud {
	display: inline-block;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	margin-right: 10px;
	vertical-align: middle;
	background-size: 90%;
	background-repeat: no-repeat;
    background-position: center;
    border: 1px solid #F29B34;
	box-shadow: 1px 2px 2px 0 rgba(0,0,0,0.14),0 3px 1px -2px rgba(0,0,0,0.12),0 1px 2px 0 rgba(0,0,0,0.2);
}


.quesImg {
  width: 190px;
  height: 190px;
  background: #fff;
  border: 5px solid #ad530a;
  border-radius: 20px;
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: block;
  margin: auto;
/*   width: 190px;
  height: 190px;
  position: absolute;
  top: 271px;
  left: 121px;
  border: 3px solid rgb(242, 155, 52); */
}




.txtformat{
	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	background:transparent;
	border:0;
	border-bottom:2px solid black;
}

.optionDesign{
	box-shadow: inset 6px 7px 10px 1px #666;
    border: 5px solid #ad530a;
    border-radius: 20px;
    background: #fff;
    padding: 10px;
    color: #111111;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    margin-top: 25px !important;
}


#submit{
	font-size: 21px;
    font-family: Ans, sans-serif;
    display: block;
    width: 145px;
    font-weight: bold;
    text-align: center;
    background: url(../Assets/images/check-btn.png);
    color: #151515;
    cursor: pointer;
    padding: 12px 0px;
    border-radius: 10px;
    border-bottom: 0;
    box-shadow: none;
    visibility: hidden;
    background-size: 100% 100%;
}

#answer{
	position:relative;
	font-size: 21px;
    font-family: Ans, sans-serif;
    display: block;
    width: 145px;
    font-weight: bold;
    text-align: center;
    background: -webkit-linear-gradient( #fcfcfc, #bcbcbc);
    background: -o-linear-gradient(#fcfcfc, #bcbcbc);
    background: -moz-linear-gradient(#fcfcfc, #bcbcbc);
    background: linear-gradient( #fcfcfc, #bcbcbc);
    color: #151515;
    cursor: pointer;
    padding: 7px 0 7px 0;
    border-radius: 10px;
    border-bottom: 1px solid #9c9999;
    box-shadow: 2px 2px 5px 1px #3e3e3e;
	float:right;
	visibility:hidden;
}
#checkSolution {
    position: absolute;
    width: 350px;
    /* top: 250px; */
    left: 0;
    z-index: 1;
    right: 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}


.nextpreNav{
	width:540px;
    position: absolute;
	display:inline-block;
}

#nextBtn{
	background:url(../Assets/images/arrow.png);
	background-size: 61px 61px;
	width: 61px;
    height: 61px;
	float: right;
	cursor:pointer;
}

#preBtn{
	background:url(../Assets/images/arrow2.png);
	background-size: 61px 61px;
	float:left;
	width: 61px;
    height: 61px;
	cursor:pointer;
}

/* #activityText{
	position:absolute;
	left:500px; top:65px;
	-webkit-animation-name: activityTextAnim;
    -webkit-animation-duration: 1s;
    animation-name: activityTextAnim;
    animation-duration: 1s;
}

@-webkit-keyframes activityTextAnim {
    0%   {left:500px; top:-100px;}
    50%  {left:500px; top:95px;}
    100% {left:500px; top:65px;}
}


@keyframes activityTextAnim {
    0%   {left:500px; top:-100px;}
    50%  {left:500px; top:95px;}
    100% {left:500px; top:65px;}
}

#completedText{	
	position:absolute;
	left:900px; top:65px;
	-webkit-animation-name: completedTextAnim;
    -webkit-animation-duration: 1s;
    animation-name: completedTextAnim;
    animation-duration: 1s;
}


@-webkit-keyframes completedTextAnim {
    0%   {left:900px; top:225px;}
    50%  {left:900px; top:35px;}
    100% {left:900px; top:65px;}
}


@keyframes completedTextAnim {
    0%   {left:900px; top:225px;}
    50%  {left:900px; top:35px;}
    100% {left:900px; top:65px;}
} */

.actCompleted {
	animation-name: completedTextAnim;
	animation-duration: 2s;
}


@-webkit-keyframes completedTextAnim {
	0% {
		left: -100%;
		top: 0;
	}

	100% {
		left: 0;
		top: 0;
	}
}


@keyframes completedTextAnim {
	0% {
		left: -100%;
		top: 0;
	}

	100% {
		left: 0;
		top: 0;
	}
}