.lwn-nasmo-container{
     background: #fff;
     padding: 1rem;
     border-radius: 10px;
}
 .lwn-nasmo-container-inner{
     background: #f4f4f433;
     padding: 1rem;
}
 .lwn-nasmo-container-form-section{
}
 .lwn-nasmo-form-section form, .lwn-nasmo-section {
     display: flex;
     justify-content: space-around;
     align-items: center;
}
 .lwn-nasmo-form-section .lwn-nasmo-form-group{
}
 .lwn-nasmo-form-section .lwn-nasmo-form-group label, .lwn-nasmo-group label {
     color: #333;
     font-size: 14px;
}
 .lwn-nasmo-form-section .lwn-nasmo-form-group input, .lwn-nasmo-group input {
     width: 100%;
     padding: 10px;
     margin: 5px 0;
     border: 1px solid #ccc;
     border-radius: 4px;
     box-sizing: border-box;
     font-size: 14px;
     color: #333;
     background-color: #fff;
     transition: border-color 0.3s ease-in-out;
}
 .lwn-nasmo-form-section input:focus, .lwn-nasmo-group input:focus {
     border-color: #0073e6;
     outline: none;
}
 .lwn-nasmo-form-section button, .lwn-nasmo-quiz-register-btn{
     font-size: 16px;
     font-weight:500;
     color: #FFFFFF;
     background-color: #8ec041;
     border-style: solid;
     border-width: 1px 1px 1px 1px;
     border-color: #8ec041;
     padding: 7px 10px 4px 10px;
     cursor: pointer;
     transition: all 1s ease-in;
     border-radius: 10px;
     display: block;
     margin: 1rem auto;
}
 .lwn-nasmo-form-section button:hover, .lwn-nasmo-quiz-register-btn:hover{
     opacity: 0.7;
}
 .lwn-nasmo-form-section .lwn-nasmo-form-group p, .lwn-nasmo-group p {
     font-size: 12px;
     opacity: 0.8;
     color: #333;
     margin: 0;
     text-align: center;
}
/* Questions and answers*/
 .lwn-nasmo-quiz-qa{
     border-bottom: 1px dotted #33333329;
     padding-bottom: 1rem;
     margin: 1rem auto;
     padding: 1.5rem 0.5rem;
     box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
 .lwn-nasmo-quiz-question{
     color: #8ec041;
     font-size: 1.2rem;
     font-weight: 700;
     line-height: 1.4em;
}
 .lwn-nasmo-quiz-question:before{
     color: #8ec041;
     content: " | ";
}
 .lwn-nasmo-quiz-answer{
     background: #8ec0410a;
     font-size: 1rem;
     padding: 0.5rem;
     margin: 0.2rem;
     border-radius: 5px;
     color: #333;
     cursor: pointer;
}
 .lwn-nasmo-quiz-answer:hover, .lwn-nasmo-quiz-answer:focus {
     background: #83897b2e;
}
/* Submit Button */
 .lwn-nasmo-quiz-submit, .lwn-nasmo-quiz-share{
     background-color: #8ec041;
     display:block;
     border: none;
     outline: none;
     color: #fff;
     border-radius: 5px;
     margin: 1rem auto;
     padding: 4px 12px;
     font-size:1.2rem;
     cursor: pointer;
     transition: all 1s ease-in;
}
 .lwn-nasmo-quiz-submit:hover, .lwn-nasmo-quiz-submit:focus, .lwn-nasmo-quiz-share:hover, .lwn-nasmo-quiz-share:focus {
     opacity: 0.7;
}
/* By Default Hide it */
 .lwn-nasmo-quiz-share,
  .lwn-nasmo-quiz-delete-response
 {
     display: none;
}
 .lwn-nasmo-quiz-delete-response
 {
     margin: 10px auto;
     outline: none;
     border: none;
     background: #ffda47c7;
     opacity: 0.5;
     padding: 2px 12px;
     border-radius: 10px;
     cursor: pointer;
}
 .lwn-nasmo-quiz-delete-response:hover, .lwn-nasmo-quiz-delete-response:focus {
     opacity: 0.8;
}
/*Snackbar copied to clipboard*/
 #snackbar {
     visibility: hidden;
     min-width: 250px;
     margin-left: -125px;
     background-color: #333;
     color: #fff;
     text-align: center;
     border-radius: 2px;
     padding: 16px;
     position: fixed;
     z-index: 1;
     left: 50%;
     bottom: 30px;
     border-radius: 10px;
}
/* Show the snackbar when clicking on a button (class added with JavaScript) */
 #snackbar.show {
     visibility: visible;
     -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
     animation: fadein 0.5s, fadeout 0.5s 2.5s;
}
/* Animations to fade the snackbar in and out */
 @-webkit-keyframes fadein {
     from {
        bottom: 0;
         opacity: 0;
    }
     to {
        bottom: 30px;
         opacity: 1;
    }
}
 @keyframes fadein {
     from {
        bottom: 0;
         opacity: 0;
    }
     to {
        bottom: 30px;
         opacity: 1;
    }
}
 @-webkit-keyframes fadeout {
     from {
        bottom: 30px;
         opacity: 1;
    }
     to {
        bottom: 0;
         opacity: 0;
    }
}
 @keyframes fadeout {
     from {
        bottom: 30px;
         opacity: 1;
    }
     to {
        bottom: 0;
         opacity: 0;
    }
}
/* For not complete question */
.lwn-nasmo-question-incomplete {
	border: 2px solid #ff2700d1;
	border-radius: 10px;
	position: relative;
}

.lwn-nasmo-question-incomplete::before {
    content: 'الإجابة مطلوبة';
    position: absolute;
    top: 0;
    left: 0;
    background-color: tomato;
    opacity: 0.8;
    color: #fff;
    padding: 5px 10px;
    transform-origin: top left;
}
