* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.mainCommentSection .row > .d-flex{
    width:100%;
}
.commentSection{
  max-height: 300px;
  overflow-y: auto;
}
.c_ins_section{
  position: sticky;
  top:0px;
}
label.required::after,
.required-label {
  color: red;
  content: " * ";
  position: absolute;
  top: -1px;
  font-size: 28px;
  margin-left: 5px;
}




.liked, .disliked{
    background: var(--primary) !important;
    color: #fff !important;
}

/* for index page */
.userInfo {
  /* margin-bottom: 10px; */
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background: var(--primary);
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.userData {
  display: inline;
  overflow: hidden;
  margin-bottom: 5px;
  width: 80%;
  height: auto;
}

.userData .userName {
  padding: 2px 2px;
  font-size: 18px
}

.userName {
  padding: 10px 10px;
  color: #fff;
  margin:0px;
}

.postDate {
  padding: 10px 10px;
  color: #ddd;
}
/* for index page end */

/*createQuiz css*/
/*createquiz css end*/
.darkThm {
  color: #fff !important;
  background-color: #000 !important;
}

.gradient {
  color: #fff;
  background-image: linear-gradient(to right, red, yellow);
}

:root {
  --2ndry: #FFA500;
  --primary: #70AD47;
  --primaryText: #70AD47;
  --3rd: #000;
  --borderRad: 100px;

}
.correctOpt{
  background: var(--primary) !important;
}
.u_selection{
  background: var(--2ndry) !important;
}

.option_group .corOpt {
  margin-left: 5px;
  margin-right: 8px;
  width: 22px;
  height: 22px;
}

.explBtn {
  display: inline-block;
  text-decoration: underline;
  cursor: pointer;
}

.option_group input[type=radio]:checked {
  background-color: var(--primary);
}

.width-250 {
  width: 250px !important;
}

.showSideBar {
  width: 300px !important;
}
.displaySideBar {
  display:block !important;
}

@media screen and (max-width: 480px) {
  .showSideBar {
    width: 350px !important;
  }
}

/*go top btn*/
#myBtn {
  display: none;
  z-index: 3;
  background-color: none;
  border: 2px solid var(--primaryText);
  font-weight: bolder;
  color: var(--primaryText);
  position: fixed;
  bottom: 0;
  margin-bottom: 20px;
  right: 0;
  margin-right: 20px;
  padding: 14px;
  border-radius: 50%;
}

#myBtn:hover {
  color: var(--2ndry);
}

/*collapsible navbar start*/

.sidebar {
  box-shadow: 2px 0 3px #aaa;

  height: 100%;
  width: 0;
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  /* background-color: #111; */
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
}

.sidebar2 {
  right: 0;
  width: 200px;
}

.hideNav {
  display: none;
}

.hide {
  display: none;
}

.showNav {
  display: block;
}

.sidebar ul li a,
.sidebar ul li button {
  padding: 5px 5px 5px 32px;
  text-decoration: none;
  color: #fff;
  display: block;
  transition: 0.3s;
  width: 100%;
  border-left: 3px solid transparent;
  text-transform: capitalize;
}

.sidebar ul li button {
  background-color: transparent;
  text-align: left;
}

.sidebar ul li a:hover,
.sidebar ul li span:hover,
.sidebar ul li button:hover {
  border-left-color: var(--primaryText);
  color: var(--primaryText);
}

/* .sidebar ul li.active{
  border:2px solid var(--primaryText);
} */
.sidebar ul li.active a{
  color: var(--primaryText);
}

ul>ul {
  margin-left: 15px;
  display: none;
}

.show{
  display: block;
}

ul li {
  /* font-size: 20px; */
  padding: 2px;
}

li {
  list-style-type: none;
  cursor: pointer;
}

nav ul li ul {
  position: static;
  margin-left: 10px;
}

nav ul ul li {
  border-bottom: none;
}

nav ul li a span {
  position: absolute;
  top: 50%;
  right: 40px;
  font-size: 22px;
  color: #fff;
}

/* nav ul li a:hover span {
  transform: translate(-50%) rotate(-90deg);
} */

.sidebar .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
  background-color: transparent;
  border: none;
}

.closeBtn {
  font-size: 32px;
  margin-left: 50px;
  background-color: transparent;
  border: none;
}

.sideBarToggleBtn, .iconBtn {
  margin: 5px;
  background: none;
  border: none;
  font-size: 20px;
  color: #fff;
}

.topBtn {
  border: 1px solid #4caf50;
  display: block;
  padding: 14px;
  border-radius: 50%;
}

.sideBarToggleBtn:hover {
  /*font-size: 18px;*/
  color: var(--2ndry);
}

@keyframes cQAnimation {
  0% {
    color: #fff;
  }

  40% {
    color: darkgreen;
  }

  70% {
    color: #ad47a1;
  }

  100% {
    color: red;
  }
}

#createQuiz {
  animation-name: cQAnimation;
  animation-duration: 5s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (min-width: 325px) and (max-height: 450px) {
  .sidebar {
    padding-top: 15px;
  }

  .sidebar a {
    font-size: 18px;
  }
}

/*collapsible navbar end*/
hr {
  margin-top: 10px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

hr p {
  text-align: center;
  padding-top: 3px;
  font-size: 18px;
  font-weight: bold;
  color: var(--primaryText);
}

.socLogDiv {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.fa-google {
  background-color: red;
  color: red;
  border: 1px solid red;
}

#socialIconDiv {
  width: 300px;
  height: auto;
  background-color: var(--primary);
  position: fixed;
  top: calc(50% - 15px);
  left: calc(50% - 150px);
  display: flex;
  justify-content: space-around;
  border-radius: 10px;
  z-index: 2;
}

#socialIconDivShow {
  display: flex;
}

/*footer style start*/

footer {
  /* top: 175px; */
  background-color: #24262b;
  position: relative !important;
  bottom: 0;
}

.f-container {

  max-width: 1170px;
  margin: auto;
}

ul {
  list-style-type: none;
}

.footer_row {
  display: flex;
  flex-wrap: wrap;
}

.footer_col {
  width: 100%;
}

.footer_col h4 {
  margin-top: 10px;
  font-size: 18px;
  color: var(--primaryText);
  text-transform: capitalize;
  margin-bottom: 30px;
  margin-left: 10px;
  font-weight: 500;
  position: relative;
}

.footer_col h4::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: var(--2ndry);
  height: 2px;
  box-sizing: border-box;
  width: 80px;
}

.footer_col ul li:not(:last-child) {
  margin-bottom: 10px;
}

.footer_col ul li a {
  color: #fff;
  text-decoration: none;
  text-transform: capitalize;
  font-size: 16px;
  color: #ddd;
  display: block;
  transition: all 0.3s ease;
}

.footer_col ul li a:hover {
  color: #fff;
  padding-left: 5px;
}

.aboutUs {
  color: #ddd;
  width: 89%;
  text-align: justify-all;
  margin: 10px;
  font-size: 18px;
}

.socialIcon {
  padding-bottom: 20px;
  display: flex;
  justify-content: space-evenly;
}

.socialIcon a {
  display: inline-flex;
  font-size: 22px;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: #ddd;
  padding: 10px;
  color: #fff;
  text-align: center;
  line-height: 40px;
  transition: all 0.3s ease;

}

.socialIcon a:hover {
  color: #ddd;
  background-color: #fff;
}

@media(max-width: 767px) {


}

/*footer style end*/
.fa:hover {
  opacity: 0.7;
}

.fa-facebook {
  background: #3B5998;
  color: white;
}

.fa-instagram {
  background: #125688;
  color: white;
}

.fa-whatsapp {
  background: #44ff44;
  color: white;
}

.fa-link {
  background: #444444;
  color: white;
}


#LOADING, .loader {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(22, 22, 22, 0.9);
  z-index: 999;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader {
  width: 100%;
  height: 100%;
}

#LOADING span, .loader span {
  font-size: 3rem;
  color: rgba(22, 22, 22, 0.8);
}

#LOADING span::before {
  content: attr(data-text);
  position: absolute;
  overflow: hidden;
  color: #00ff00;
  max-width: 12em;
  /* animation: loading 2s linear infinite; */
}

span #d2::before {
  content: attr(d2);
  position: absolute;
  overflow: hidden;
  color: var(--2ndry);
  max-width: 12em;
  animation-delay: 2s;
  animation: loading 2s linear 1s infinite;
}

@keyframes loading {
  0% {
    max-width: 0em;
  }
}

body {
  overflow-x: hidden;
}

input {
  outline: none;
}

a {
  text-decoration: none;
}



.qTagA,  .tqtag a {
  text-decoration: none !important;
  font-size: 14px;
  padding: 2px 5px;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 100px;
  margin: 1px 4px;
  cursor: pointer;
  width: auto;
}
.qTagA:hover, .qTagA.active{
  color:orange !important;
  background-color: #fff !important;
}

.userNav {
  padding: 1px 3px;
  color: #fff;
  margin: 1px 4px;
  cursor: pointer;
  width: auto;
  display: inline-flex;
  font-size: 15px;
  font-weight: bold;
  border-bottom: 1px solid #fff;
}

.userNavActive {
  border-bottom: 1px solid var(--3rd);
  color: var(--3rd);

}

.userNav:hover {
  border-bottom: 1px solid var(--3rd);
  color: var(--3rd);
}

.quiz_body {
  position: relative;
  width: 100%;
  height: auto;
}

.option_group, .contest_opt_group {
  list-style-type: none;
  margin: 8px;
  text-align: center;
}
.writeAnswerBox{
  width:100%; padding:5px;
}

.option,
.user_option,
.sQOption {
  background-color: transparent;
  outline: none;
  display: inline-block;
  height: auto;
  padding: 6px 10px;
  margin-bottom: 10px;
  border-radius: 100px;
  border: 2px solid var(--primaryText);
  cursor: pointer;
  font-size: 17px;
  font-weight: 600px;
  text-align: center;
}

.explainBox {
  display: none;
  border-radius: 10px;
  min-height: 100px;
  overflow: auto;
  width: 100% !important;
  margin: 0 !important;
  text-align: left;
}

.option_group>li.option:hover,
.sQOption:hover {
  cursor: pointer;
  border-color: #00AD11;
}

.optionActive {
  background: var(--primaryText);
  color: #fff;
  font-weight: 600;
}

.optionWrong {
  background-color: rgba(244, 0, 0, 0.8);
  color: #fff;
  font-weight: 400;
}



.headerDiv {
  width: 100vw;
  /*as height of parent*/
  height: 50px;
  background: var(--primary);
  display: flex;
  /*//align content center with jusify-content;*/
  justify-content: space-between;
  align-items: center;
}

.navDiv {
  display: flex;
  /*//align content center with jusify-content;*/
  justify-content: space-between;
  align-items: center;
  margin-right: 15px;
}

.navBtn {
  color: #fff;
  font-size: 16px;
  padding: 7px 10px;
  border-radius: 15px;
  text-transform: uppercase;
  border: 1px solid #fff;
  margin: 0px 10px;
}

.navDiv>a:hover {
  /* border: 2px solid green; */
  /* color: green; */
  /* transition: 0.2s; */
}

.user {
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

.userDiv {
  color: red;
  width: 80px;
  height: 80px;
}

.avatarDiv {
  width: 40px;
  height: 40px;
  right: 5px;
  margin: 5px;
}

.avatarDiv img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  position: relative;
  
}

.brandName {
  color: white;
  margin: 0px 20px;
}

.brandName span {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

.navbar {
  width: 100%;
  height: 40px;
  background: var(--primary);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;

}

.navbar ul {
  position: relative;
  display: inline;
}

#searchBox,
#filterBox {
  border-radius: 100px;
  border: none;
  outline: none;
  padding: 5px 10px;
  width: 70%;
  height: 34px;
  font-weight: bold;
  color: var(--primaryText);
}

#searchBox {
  flex: 1;
}

#searchBox:focus,
#filterBox:focus {
  border-bottom: 1px solid #fff;
}

#filterBox {
  width: 50%;
}

#applyBtn {
  border: 1px solid rgba(0, 0, 0, 0.9);
  border-radius: 10px;
  padding: 0px 6px;
  background-color: #fff;
  color: #000;
  font-size: 19px;
}

#mySidebar .nav:hover,
.round-btn:hover {
  /* color: var(--primaryText); */
  cursor: pointer;
}

#mySidebar .nav:focus,
.navbar input[type=button]:focus {
  outline: none;
}

#mySidebar .nav {
  padding: 0px 6px;
  border: 1px solid var(--primaryText);
  margin: 0px 4px;
  margin-top: 10px;
  border-radius: 10px;
  font-weight: 600px;
  color: #000;
}

.navActive {
  color: var(--2ndry) !important;
}



/*post*/
.postDiv,
.quizDiv {
  width: calc(100% - 15px);
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 5px 2px var(--primaryText);
  box-sizing: border-box;
  margin: 15px 0 0 5px;
  overflow: hidden;
  overflow-y: auto;
}

@media screen and (max-width:720px) {
  .postDiv {
    margin-left: 10px;
  }
}

.userInfo img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}

.postShareDiv,
.quizManageDiv {
  /*position: absolute;
  right: 0;
  width: auto;*/
  margin-right: 5px;
  margin-left: 5px;
  /*height: inherit;*/
}








.question {
  font-size: 1.25rem !important;
  font-weight: bold;
  margin: 5px;
  padding: 8px 0;

}

.questBox {
  width: 90%;
}

.questionAtr {
  display: flex;
  justify-content: space-evenly;
  align-content: center;
  padding: 5px 0;

}

.questionAtr button, .questionAtr > a {
  padding: 5px 10px;
  border: 2px solid var(--primaryText);
  border-radius: 10px;
  margin: 2px 20px;
  color: var(--primaryText);
  background-color: #fff;
}

.questionAtr a>button {
  width: 100px;
  color: #fff;
  background-color: var(--primary);
}

.questionAtr button:hover {
  /* color: #00AD11; */
  border-color: #00AD11;
}

.explainBtn {
  margin-left: 10px;
  text-decoration: underline;
}





#selectBox,
.creatform #duration {
  margin: 5px 0px;
  width: 100px;
  padding: 1px 5px;
  border-radius: 100px;
}







.qtag, .tqtag {
  width: 100%;
  background: var(--primary);
  padding-bottom: 5px;
  /* max-height: 35px; */
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  text-transform: capitalize;
  margin:0px;
}
.qtag{
  max-height: 55px;
  padding:5px 0;
}


/*loginDiv*/
#loginDiv,
#feedBackDiv {
  height: auto;
  width: 0px;
  position: fixed;
  right: 0;
  z-index: 2;
  /*bring to front*/
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
}

.loginDivShow {
  width: 350px !important;
}

#feedBackDiv {
  display: none;
  position: absolute;
  top: 10;
  right: 0;
}


#feedBackDiv, #comment {
  width: 250px;
  height: 30px;
  font-size: 18px;
  margin-bottom: 10px;
  margin-left: 20px;
  border-radius: 100px;
  padding: 5px;
  color: var(--primaryText);
  font-weight: bold;
  outline: none;
}

#passToggle {
  color: #fff;
}

#passToggle:hover {
  color: var(--primaryText);
  cursor: pointer;
}

#loginDiv #header,
#loginDiv form p {
  color: #fff;
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 5px;
}






form label {
  color: var(--primaryText);
  margin-bottom:0;
  font-weight: bold;
}

/*commentBox*/
.commentText {
  padding: 3px;
  color: #eee;
  font-size: large;
  font-weight: bold;
}

.commentInput {
  outline: none;
  border-radius: 10px;
  padding: 5px;
  width: 100%;
  font-size: 14px;
  margin-top: 5px;
}

.commentBtn {
  width: auto;
  text-align: center;
  padding: 5px 10px;
  border: 2px solid var(--primaryText);
  border-radius: 10px;
  margin: 2px 20px;
  color: var(--primaryText);
  background-color: #fff;
  cursor: pointer;
}



.fbtn-a {
  margin: 3px 5px;
  padding: 3px 5px;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
}

.fbtn-a:hover {
  color: var(--2ndry);
}

#submit,
#create,
#addMember {
  background-color: var(--primary);
  color: #ffffff;
}

/*showquestion start*/
.ques {
  font-size: 22px;
  margin-left: 10px
}

#qCounter {
  color: #666;
}

#SBtn {
  display: flex;
  justify-content: space-around;
}

.timeDiv {
  display: flex;
  justify-content: space-around;
  width: 100vw;
  height: 30px;
  background-color: #fffe0061;
  font-size: 22px;
  font-weight: bold;
  position: sticky;
  top: 0px;
  padding: 5px;
}

.formInfo {
  display: flex;
  flex-direction: column;
  align-content: space-around;
  align-items: center;
}

/*showquestion end*/


/*class-10th-question-paper-2020.html*/
.solText {
  color: #282;
  font-weight: bold;
  margin: 4px 0px;
}

/*media query start*/
@media screen and(max-width: 468px) {
  .brandName span {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
  }

  .option,
  .sQOption {
    width: 95%;
    margin-bottom: 10px;
  }

  /* #loginDiv,
  #feedBackDiv {
    width: 90%;
  } */

  .userData {
    display: inline;
    overflow: hidden;
    margin: 5px;
    height: auto;
  }

  .navDiv {
    margin-right: 5px;
  }

  .postShareBtn {
    padding: 5px 10px;
    border-radius:10px;
  }

  .question {
    margin-left: 10px;
    font-size: 20px !important;
    font-weight: bold;
  }

  #searchBox {
    border: 1px solid rgba(0, 0, 0.0.8);
    margin-left: 8px;
    width: 258px;
  }

  .navbar {
    width: 100vw;
    height: 30px;
    line-height: 30px;
  }

  #mySidebar .nav {
    margin: 0 2px;
  }

  .userInfo{
margin-bottom: 10px;
border-top-left-radius:10px;
border-top-right-radius:10px;
background: var(--primary);
width: 100%;
position: relative;
display: flex;
align-items: center;
justify-content: space-around;
}
.userData{
display: inline;
overflow: hidden;
margin-bottom: 5px;
width: 80%;
height: auto;
}

.postDate{
    padding:10px 10px;
    color:#ddd;
}

  /*for insertData.php*/
  .quiz_body .question {
    font-size: 14px;
    width: 300px;
    text-align: justify;
    padding:5px;
  }

  option,
  .user_option,
  .sQOption {
    width: 100%;
    margin-right: 10px;
  }
}

/*for mediaum device*/
@media screen and(max-width: 375px) {
  .navBtn {
    margin: 0px 5px;
  }
}

@media screen and(max-width: 325px) {
  .navBtn {
    font-size: 14px;
    padding: 5px 5px;
    margin: 0px 5px;
  }

  #searchBox {
    width: 150px;
  }

  .option,
  .user_option,
  .sQOption {
    background-color: transparent;
    outline: none;
    display: inline-block;
    width: 300px;
    height: auto;
    padding: 6px 6px;
    margin-bottom: 10px;
    border-radius: 100px;
    border: 2px solid var(--primaryText);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600px;
  }

  .navDiv {
    margin: 0px;
  }

  .navBar {
    overflow: scroll;
  }

  .headerDiv {
    overflow: scroll;
    width: 100vw;
  }
}

/*@media (max-width: 468px) end {*/
@media screen and(max-width: 240) {
  * {
    color: red;
  }

  .navbar {
    height: skewY()
  }

  #searchBox {
    /*border-radius: 100px;*/
    margin-left: 2px;
    width: 260px;
    height: 24px;
    font-weight: bold;
    color: var(--primaryText);
  }

}

/*for glaxy fold*/
@media screen and (min-width: 250px) {

  .option,
  .user_option,
  .sQOption {
    width: 290px;
    margin-right: 10px;
  }
}

/* optionbox */

/* reusabel 12-08-22 */
.b-r-50per {
  border-radius: 50%;
}

.d-flex {
  display: flex;
}

.j-c-c {
  justify-content: space-between;
}

.j-c-s-b {
  justify-content: space-between;
}

.w-100per {
  width: 100%;
}

.t-center {
  text-align: center;
}

.p-absolute {
  position: absolute;
}

.top-0 {
  top: 0;
}

.bottom-0 {
  bottom: 0;
}

.t-white {
  color: #fff;
}

.t-primary {
  color: var(--primaryText);
}

/*end reusabel 12-08-22 */
.closeButton {
  display: flex;
  flex-direction: row-reverse;
  color: var(--primaryText);
}

.closeButton>i {
  font-size: 32px;
  padding: 0 8px;
  cursor: pointer;
}

/* style side bar */
.clearBtn {
  color: red;
  padding: 5px 10px;
  cursor: pointer;
  display: none;
}

@media screen and (max-width: 400px) {
  .clearBtn {
    white-space: pre;
  }

}

.custom-btn {
  border: 1px solid var(--primaryText);
    /* padding: 5px 10px; */
    border-radius: var(--borderRad);
    background-color: #fff;
    /* margin: 0 10px; */
    color: var(--primaryText);
    /* font-size: 17px; */
    cursor: pointer;
     box-shadow: 2px 2px 5px 2px var(--primaryText);
}

/* progress bar */
.progressDiv {
  width: 100%;
  display: flex;
  /* position: sticky;
  top: 40px; */
  z-index: 1;
}

.progressDiv div {
  text-align: center;
  padding: 2px 10px;
  flex: 1;
}

.progressDiv div h5 {
  font-size: 18px;
}

.totalSec {
  background-color: var(--primary);
}
.progressDiv  h5, .progressDiv  h3{
  margin-bottom:0;
  font-size: 18px;
}

.correctSec {
  background-color: green;
}

.incorrectSec {
  color: red;
  background-color: #fff;
}

.scoreSec {
  background-color: orange;
}

.bmtxfs {
  display: none;
}

.staticHead {
  /* width: 100vw; */
  position: sticky;
  top: 0;
  z-index: 1;
  background-color: var(--primary);
}

.post {
  position: absolute;
  overflow: hidden;
  width:100%;

}

@media screen and (max-width:450px) {

}

@media screen and (min-width:450px) and (max-width:850px) {
  .post {
    padding-right: 0;
  }
}

.fullSpaceBetween {
  display: flex;
  width: 100%;
  justify-content: space-around;
  align-items: center;
  position: relative;
  margin: 10px 0;
  padding: 10px;
}
.display_space_between {
  display: flex;
  justify-content: space-between;
  position: relative;
}


a[href="javascript:void()"] {
  opacity: 0.5;
  cursor: not-allowed;
}

.pageHeading {
  font-size: 22px;
  margin: 0;
  text-align: center;
  background: var(--2ndry);
  padding: 10px;
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
}

@media screen and (max-width:720px) {
  .pageHeading {
    margin-left: 5px;
  }
}

.postDiv:first-of-type {
  margin-top: 10px;
}
.new{
    background: linear-gradient(90deg, #4caf50, #ff2110);
    color:#fff;
    border:1px solid #fff;
    border-radius:10px;
    padding:0 5px;
}

#content {
  padding: 0;
    height: 100vh;
  position: relative;
  /* top: 175px; */
  box-sizing: border-box;
}

#sidebar,
#contentBox,
#advertisment {
  height: 100%;
  overflow-x: hidden;
  overflow: auto;
}

#sidebar {
  width: 300px !important;
  z-index: 2 !important;
}

#advertisment {
  max-width: 220px !important;
}

#mySidebar {
  position: relative;
  overflow: auto;
  height: inherit;
  width: 100%;
}

.closeButton {
  display: none;
}

@media screen and (max-width:768px) {

  #sidebar,
  #advertisment {
    width: 0px !important;
  }

  #sidebar {
    position: absolute;
    width: 100vw !important;
    display: none;
  }

  .closeButton {
    display: block;
  }
}


/* Search bar start */
.newSearch input {
  border-radius: 15px 0 0 15px;
}

.newSearch .input-group-append span {
  border-radius: 0 15px 15px 0;
}

#search_result {
  position: absolute;
  width: 100%;
  z-index: 10 !important;
  background: #fff;
  border-radius: 15px;
  padding: 10px 0;
  max-height: 200px;
  overflow: auto;
  box-shadow: 0 2px 5px 2px var(--primaryText);
  display: none;
}

#search_result p {
  text-align: left;
  cursor: pointer;
  color: #000 !important;
  padding: 5px 10px;
  margin-bottom: 2px;
}

#searchForm.clicked #search_result {
  display: block;
}

#search_result p:hover {
  background: #ddd;
}

#search_result p span {
  padding: 0 5px;
}
/* Search bar end */
/* Contest start */
.q-pic {
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}

.description_wrapper {
  padding: 10px 12px 0px;
  font-size: 0.8em;
}

.quiz-period .start-time {
  color: #2B8713;
  font-weight: 700;
}

.quiz-period .end-time {
  color: #B11010;
}

.question_detail {
  display: flex;
  justify-content: center;
  text-align: center;
  font-weight: 500;
}

.question_detail .item {
  padding: 0 10px;
}

.question_detail .item div {
  font-size: 1.583em;
  font-weight: 700;
  margin-bottom: 0;
}

.quizplay-btn {
  font-size: 1.583em;
  color: #A71630;
  padding: 6px 10px;
  font-weight: 700;
  border: 1px solid #575757;
  border-radius: 4px;
  width: 40%;
  text-align: center;
}
.fullSpaceBetween .btn, #authDiv .btn {
  border: 1px solid var(--primaryText);
  /* padding: 5px 10px; */
  border-radius: var(--borderRad);
  background-color: #fff;
  /* margin: 0 10px; */
  color: var(--primaryText);
  /* font-size: 17px;
  cursor: pointer; */
  box-shadow: 2px 2px 5px 2px var(--primaryText);
}

/* switch */
/* Basic Rules */
.switch input {
  display: none;
}

.switch {
  display: inline-block;
  width: 50px;
  height: 20px;
  margin: 8px;
  transform: translateY(50%);
  position: relative;
}

/* Style Wired */
.slider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 30px;
  box-shadow: 0 0 0 2px #777, 0 0 4px #777;
  cursor: pointer;
  border: 4px solid transparent;
  overflow: hidden;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #777;
  border-radius: 30px;
  transform: translateX(-30px);
  transition: .4s;
}

input:checked+.slider:before {
  transform: translateX(30px);
  background: limeGreen;
}

input:checked+.slider {
  box-shadow: 0 0 0 2px limeGreen, 0 0 2px limeGreen;
}

/* Style Flat */
.switch.flat .slider {
  box-shadow: none;
}

.switch.flat .slider:before {
  background: #FFF;
}

.switch.flat input:checked+.slider:before {
  background: white;
}

.switch.flat input:checked+.slider {
  background: limeGreen;
}
/* Contest end */
/* Seach Bar css start */
.newSearch input {
  border-radius: 15px 0 0 15px;
}

.newSearch .input-group-append span {
  border-radius: 0 15px 15px 0;
}

#search_result {
  position: absolute;
  width: 100%;
  z-index: 10;
  background: #fff;
  border-radius: 15px;
  padding: 10px 0;
  max-height: 200px;
  overflow: auto;
  box-shadow: 0 2px 5px 2px var(--primaryText);
  display: none;
}

#search_result p {
  text-align: left;
  cursor: pointer;
  color: #000 !important;
  padding: 5px 10px;
  margin-bottom: 2px;
}

#searchForm:clicked #search_result {
  display: block;
}

#search_result p:hover {
  background: #ddd;
}

#search_result p span {
  padding: 0 5px;
}


/* Seach Bar css end */

/* Tags */
#tagsContainer {
  display: flex;
  flex-wrap: wrap;
}

.tag {
  background-color: #3ea85e;
  color: #fff;
  padding: 2px 10px;
  margin: 5px;
  border-radius: 5px;
  cursor: pointer;
}


/* Overide bootstrp color start */
.btn-primary{
  background-color: var(--primary) !important;
}

/* Overide bootstrp color end */
.quiz-img {
  overflow: hidden;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-container {
  max-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-link-badge {
  position: absolute;
  top: 0px;
  left: 25px;
  display: block !important;
  padding: 3px 5px !important;
}

#progress_bar_section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100vh;
  width: 100%;
}

#progress_bar_section .progress {
  width: 90%;
  height: 20px;
}

.b_r_light{
  border-right: 1px solid #DBDBDB;
}
.img_responsive{
  width: 100%;
  height: auto;
  overflow:hidden;
}

.divider {
  display: flex;

  &:before,
  &:after {
    content: "";
    flex: 1;
  }
}

.line {
  align-items: center;
  margin: 1em -1em;

  &:before,
  &:after {
    height: 1px;
    margin: 0 1em;
  }
}


.one-line {

  &:before,
  &:after {
    background: black;
  }
}

/* User css Start */
.user_info_section img {
  width: 100px;
  height: auto;
  padding: 5px;
}

.user_info_section {
  margin: 2px;
}

.user_info_section .details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.xycenter {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 700px) {
  .subscribeBtn {
    justify-content: left;
    margin: 10px 0;
  }
}
/* User css End */
/* Animation button css Start */
.btn-animate {
  position: relative;
  overflow: hidden;
}

.btn-animate::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  z-index: 1;
  animation: slideIn 2s infinite linear;
}

@keyframes slideIn {
  to {
    left: 100%;
  }
}
/* Animation button css End */
.quotesSecion{
  display: flex;
  height: 200px;
  align-items: center;
  justify-content: center;
}
.glowing_btn{
  background-color: #B20000;
  color:#fff;
  animation: glowing 1s infinite;
}
@keyframes glowing {
  0% {
    background-color: #B20000;
    -webkit-box-shadow: 0 0 3px #B20000;
  }

  50% {
    background-color: #FF0000;
    -webkit-box-shadow: 0 0 40px #FF0000;
  }

  100% {
    background-color: #B20000;
    -webkit-box-shadow: 0 0 3px #B20000;
  }
}

.custom-alert {
  cursor: pointer;
}
