body
 {
  background-color: linear-gradient(to bottom, #b8307c, #4a3f6d);
}

.header-bar {
  background-color: #292929;
  height:80px;
  width:auto;
  padding: 10px;
  color:white;
}

a{
  text-align: center;
}


.container--narrow {
  max-width: 732px;
}

.header-search-icon {
  position: relative;
  top: 3px;
}

.header-chat-icon {
  cursor: pointer;
  position: relative;
  top: 3px;
}

.avatar-small {
  width: 32px;
  height: 32px;
  border-radius: 16px;
  margin-right: 5px;
  position: relative;
  top: -3px;
}

.avatar-tiny {
  width: 24px;
  height: 24px;
  border-radius: 12px;
  margin-right: 4px;
  position: relative;
  top: -1px;
}

.form-control-title {
  font-size: 2rem;
  font-weight: 500;
}

.body-content {
  font-size: 1.2rem;
  line-height: 1.75;
  color: #292929;
}

.body-content p,
.body-content ul,
.body-content ol {
  margin-bottom: 1.75rem
}

.input-darke {
	padding:10px;
	width: 30px;
  background-color: #444;
  border-color: transparent;
  border-radius: 5px;
  color: #FFFFFF;
  margin-top: 10px;
}


.input-dark::-webkit-input-placeholder {color: #888;}
.input-dark::-moz-placeholder {color: #888;}
.input-dark:-ms-input-placeholder {color: #888;}
.input-dark:-moz-placeholder {color: #888;}

@media (min-width: 768px) {
  .input-dark {
   width: auto;
  }
}

.display-3 {
  font-size: 4.35rem;
}

@media (max-width: 768px) {
  .display-3 {font-size: 2.5rem}
}

.form-group {
  position: relative;
}

.liveValidateMessage {
  transition: all .5s ease-out;
  top: -6px;
  position: absolute;
  z-index: 1;
  padding-top: 6px;
  padding-bottom: 16px;
  opacity: 0;
  transform: translateY(100%)
}

.liveValidateMessage--visible {
  opacity: 1;
  transform: translateY(0)
}

.form-group input,
.form-group textarea {
  position: relative;
  z-index: 2;
}

textarea.tall-textarea {
  height: 160px;
}

@media (min-width: 768px) {
  textarea.tall-textarea {
    height: 320px;
  }
}

.delete-post-button {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
}

/* Search Overaly */
.search-overlay, . {
  display: flex;
  flex-direction: column;
  position: fixed;
  z-index: 500;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(215, 215, 215, 0.911);
  visibility: hidden;
  opacity: 0;
  transform: scale(1.3);
  transition: .33s visibility ease-in-out, .33s opacity ease-in-out, .33s transform ease-in-out;
  will-change: visibility, transform, opacity;
}

.search-overlay--visible {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

.search-overlay-icon {
  color: #007bff;
  font-size: 1.4rem;
  margin: 0;
  margin-right: 10px;
}

.live-search-field {
  background-color: transparent;
  border: none;
  font-size: 1.1rem;
  outline: none;
  flex: 1;
  color: #007bff;
}

.live-search-results {
  opacity: 0;
  transition: all .3s ease-out;
  transform: scale(1.07)
}

.live-search-results--visible {
  opacity: 1;
  transform: scale(1)
}

.search-overlay-top {
  background-color: #FFF;
  /* background-color: rgba(0, 0, 0, .79); */
}

.search-overlay-top .container {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
}

.search-overlay-bottom {
  overflow: auto;
}

.close-live-search {
  font-size: 1.5rem;
  cursor: pointer;
  opacity: .75;
  line-height: 1;
  color: #292929;
}

@media (min-width: 700px) {
  .live-search-field,  {
    font-size: 2.5rem;
  }

  .close-live-search {
    font-size: 3rem;
  }

  .search-overlay-icon {
    font-size: 3rem;
  }
}

.close-live-search:hover {
  opacity: 1;
}

@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.circle-loader {
  opacity: 0;
  transition: opacity .45s ease-out, visibility .45s ease-out;
  visibility: hidden;
  position: absolute;
  left: 50%;
  box-sizing: border-box;
  width: 65px;
  height: 65px;
  border-radius: 100%;
  border: 10px solid rgba(73, 80, 87, 0.2);
  border-top-color: #495057;
  will-change: -webkit-transform, transform;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-animation: spin 1s infinite linear;
          animation: spin 1s infinite linear;
}

.circle-loader--visible {
  visibility: visible;
  opacity: 1;
}

/* End Search Overlay */

/* Chat */
.chat-wrapper {
  position: fixed;
  z-index: 5;
  bottom: 0;
  right: 20px;
  width: 290px;
  height: 350px;
  background-color: #FFF;
  display: flex;
  flex-direction: column;
  transition: all .4s ease-in-out;
  opacity: 0;
  transform: translateY(100%)
}

.chat--visible {
  opacity: 1;
  transform: translateY(0)
}

.chat-title-bar {
  background-color: #292929;
  color: #FFF;
  padding: 4px 7px;
  display: flex;
  justify-content: space-between;
}

.chat-title-bar-close {
  opacity: .7;
  cursor: pointer;
}

.chat-title-bar-close:hover {
  opacity: 1;
}

.chat-log {
  padding: 8px;
  flex: 1;
  overflow: auto;
}

.chat-self,
.chat-other {
  font-size: .75rem;
  display: flex;
  align-items: center;
  margin-bottom: 7px;
}

.chat-self {
  padding-left: 25%;
}

.chat-self .chat-avatar {
  margin-left: 6px;
}

.chat-self .chat-message {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.chat-self .chat-message-inner {
  text-align: right;
  padding: 4px 7px;
  border-radius: 12px;
  background-color: #007bff;
  color: #FFF;
}

.chat-other {
  padding-right: 25%;
}

.chat-other .chat-avatar {
  margin-right: 6px;
}

.chat-other .chat-message {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}

.chat-other .chat-message-inner {
  padding: 4px 7px;
  border-radius: 12px;
  background-color: #f1f0f0;
}



.chat-message a {
  color: #212529
}

.chat-field {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 7px;
  border: none;
  outline: none;
  font-size: .75rem;
}



/*starting of my part*/
.text-muted{
	text-decoration: none;
	position: absolute;
	  display: flex;
  justify-content: flex-start;
  margin-top: -100px;
  margin-left: 700px;

}

#helped{
z-index: 5;
border-radius: 5px;
width: 290px;
height: 350px;
background-color:#fff;
padding:5px;
  color:black;
  position: absolute;
  width: 300px;
  height: 150px
  left:400px;
  top:100px;
  color: black;
font-size: 16px;
}
#bad{
	border-radius: 5px;
	margin-top: 20px;
	padding: 7px;
	background-color: #f012129f;
	width: 600px;
}


#good{
	border-radius: 5px;
	margin-top: 20px;
	padding: 7px;
	background-color: #24ce57;
	width: 600px;
}


#result{
	margin-top: 20px;
	background-color: #fff;
	width: 710px;
}


#crossCheck{
  padding:7px;
  background-color: #f012129f;
  border-radius: 5px;
  width:335px;
  display: none;
  }
  
#timer{
	color:rgb(252, 250, 250);
	font-size: 40px;
	padding-bottom: 5px;
	padding-right: 12px;
	padding: 8px;
	margin-left: 500px;
	background-color: #24ce57;
  width: 80px;
  height: 50px;
	border-radius: 5px;
	display: none;
}

#container{
	display: none;

}