*,
:before,
:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

#quize-cyber {
    height: 100%;
}

#cyber_wrapper {
    position: relative;
    width: 340px;
    height: 340px;
    margin: 40px auto 50px auto;
    border-radius: 50%;
    background: #8976F5;
    border: 30px solid #8976F5;
    z-index: 100;
}

#cyber_wrapper:after {
    content: '';
    position: absolute;
    left: -4%;
    bottom: -4%;
    width: 300px;
    height: 300px;
    background: #DCDBDB;
    border-radius: 100%;
}



#cyber_wrapper:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 280px;
    height: 280px;
    background: transparent;
    z-index: 120;
    border-radius: 100%;
    opacity: 0.5;
    box-shadow: inset 0 0 17px 10px #000000;
}

#cyber {
    transform-origin: 50% 50%;
    position: relative;
    z-index: 100;
}

.cyber-block {
    position: relative;
    top: 20%;
    background: url("../images/cyberwheelbg.svg") no-repeat 0 0;
    width: 500px;
    margin: auto;
    text-align: center;
    border-radius: 10px;
    padding: 40px;
    margin-top: 110px;
}

#quize-cyber #start,
#quize-cyber #stop {
    background: #FC6D13;
    color: #fff;
    padding: 20px 60px;
    border: 0;
    border-radius: 13px;
    font-size: 1.2em;
    font-weight: bold;
    font-weight: 600;
    outline: none;
}

#quize-cyber #stop {
    display: none;
}

#quize-cyber #start {
    margin-bottom: 10px;
    transition: .3s;
}

#quize-cyber #start:hover {
    cursor: pointer;
    background: #352afe;
    color: #fff;
}

.clickonce {
    position: absolute;
    width: 300px;
    height: 100px;
    background: transparent;
    left: 21%;
    bottom: 4%;
    display: none;
}

/*--------------quize question---------------------*/
.cyber-block-popup {
    position: relative;
}

.choiceText {
    display: block;
    width: 100%;
    padding: 16px 50px;
    font-size: 14px;
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	background: url("../images/answericonash.png") no-repeat 0 0;
	background-position: 16px 14px;
    transition: ease-in-out .2s;
    text-align: left;
}

.choiceText:hover {
    cursor: pointer;
    opacity: 1;
    transition: 0.2s ease-in-out;
    color: #fff !important;
	background: #03B146 url("../images/answericon.png") no-repeat 0 0;
	background-position: 16px 14px;
	border-radius: 5px;
}

.selectedChoice {
    opacity: 1;
    transition: 0.2s ease-in-out;
    background: #03B146;
    color: #fff !important;
}
.selectedChoice label{
	color: #fff !important;
}
.quizbuttonbox {
    margin: auto auto auto auto;
    vertical-align: middle;
    text-align: right;
}

#errormessage {
    color: #ff2828;
    transition: 0.3s ease-in-out;
    padding-top: 7px;
    font-weight: 600;
    font-size: 1.2em;
}

.correctanswer {
    color: #4cae4c;
}

.incorrectanswer {
    color: #d43f3a;
}

.hiddenPanel {
    opacity: 0;
    transition: 1s ease-in-out;
}

.panel-default {
    transition: 1s ease-in-out;
}

.panel-danger {
    transition: 1s ease-in-out;
    border-color: #ebccd1;
}

.panel-success {
    background-color: #beffbe !important;
    transition: 1s ease-in-out;
}

.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    color: inherit;
}

.panel-body {
    padding: 15px;
}

.panel-footer {
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}

.panel {
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
    box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
    margin-top: 28px;
}

.panel-danger > .panel-heading {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}

.panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.glyphicon {
    position: relative;
    top: 1px;
    display: inline-block;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
}

#answerfooter {
    font-style: italic;
}

.centertext {
    text-align: center;
    position: relative;
}

.jumbotron {
    margin-bottom: 20px;
    color: inherit;
}

.input-group {
    position: relative;
    display: block;
    border-radius: 8px;
    width: 100%;
    margin: 10px 5px;
    color: #000;
    text-align: center;
	box-shadow: 2px 1px 5px #888888;
}

.input-group-addon {
    width: 1%;
    white-space: nowrap;
    vertical-align: middle;
    display: table-cell;
    opacity: 0;
    display: none;
}

.input-group-addon:first-child {
    border-right: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group-addon input[type=radio] {
    margin-top: 0;
}

.blacktext {
    color: black;
    font-weight: bold;
}

.errorFlash {
    opacity: 1;
    transition: 0.5s;
}

.transparentPanel {
    opacity: 0;
    transition: 1s;
    color: white;
}

.cyber-row {
    margin-right: -15px;
    margin-left: -15px;
}
.cols-2,
.cols-3,
.cols-4,
.cols-6,
.cols-8,
.cols-9,
.cols-10,
.cols-12
{
	float: left;
	min-height: 1px;
	padding-right: 15px;
	padding-left: 15px;
}
.cols-2 {
	width: 12.5%;
}
.cols-3 {
	width: 25%;
}
.cols-4 {
	width: 33.3%;
}
.cols-6 {
	width: 50%;
}
.cols-8 {
	width: 66.6%;
}
.cols-9 {
	width: 75%;
}
.cols-10 {
	width: 87.5%;
}
.cols-12 {
	width: 100%;
}
@media only screen and (max-width: 992px)
{
	.cols-md-12 {
	width: 100%;
}
	.cols-md-9 {
	width: 75%;
}
	.cols-md-6 {
	width: 50%;
}
	.cols-md-3 {
	width: 25%;
}
}
@media only screen and (max-width: 650px)
{
	.cols-sd-12 {
	width: 100%;
}
	.cols-sd-9 {
	width: 75%;
}
	.cols-sd-6 {
	width: 50%;
}
	.cols-sd-3 {
	width: 25%;
}
}
.col-cyber-12,
.col-cyber-6 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.enterquize-popup {
    text-align: center;
	padding: 80px 0px;
}
.enterquize-popup .quize-title {
	color: #000;
	text-align: center !important;
}
.enterquize {
    padding: 12px 30px;
    background: transparent;
    color: #fff;
    margin: auto;
    text-align: center;
    transition: .3s;
    border-radius: 100px;
    font-size: 1.1em;
	border: 2px solid #EF6A1B;
	position: relative;
	width: 100%;
	position: relative;
	z-index: 8;
	margin-bottom: 20px;
}
.doubleline {
	position: relative;
}
.enterquize:hover {
    background: #ef6a1b;
    border: 2px solid #ef6a1b;
    color: #ffff;
    cursor: pointer;
}

#quize-cyber .cyber-questionsec, {
    display: none;
}

.enterquize-popup p {
    color: #fff;
    font-size: 1.2em;
    text-align: center;
    padding: 10px 0px 50px;
}

#nextButton,
#cyberwheel-finalbut,
#cyberwheel-resetbut {
    padding: 15px 40px;
    color: #fff;
    border: none;
    font-size: 1em;
    outline: none;
    transition: .3s;
    margin: 0;
}
#cyberwheel-resetbut {
    background-color: #d8544f;
}

#cyberwheel-resetbut:hover {
    background-color: #d8544f;
    cursor: pointer;
}


#cyberwheel-finalbut:hover {
    background-color: #ef6a1b;
    cursor: pointer;
    color: #fff;
}
#nextButton:hover {
    cursor: pointer;	
}

#cyberwheel-finalbut,
#cyberwheel-resetbut {
    display: none;
    text-align: center;
    margin: 40px 10px 0 10px;
    background-color: #041529;
    padding: 15px 60px;
    border-radius: 20px;
    color: #fff;
}

.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.36);
    z-index: 9999;
    top: 0;
    left: 0;
    display: none;
}

.cyberwheel-popup-contentspan.close {
    position: absolute;
    z-index: 999;
    top: 14px;
    right: 12px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    background: #050460;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 25px;
}

.cyber-form span.close {
    display: none;
}

span.close:hover {
    background: #08d2a2;
}

/* form css */
.form-control * {
    -webkit-appearance: none;
    -moz-appearance: none;
}

.btn-submits button:hover {
    background: #08d2a2;
    border-color: #08d2a2;
}

.uscountry.form-control {
    height: auto;
}

.uscountry select#cyberwheel_country,
.uscountry select#zc-country {
    height: 60px;
    border-bottom: 1px solid #f2f2f2;
}

.uscountry select#country_state {
    height: 60px;
}

.final-buts {
    text-align: center;
    margin: auto;
}

.center-point {
    position: absolute;
    top: 39%;
    left: 42%;
    transform: rotate(-28deg);
    -webkit-filter: drop-shadow(4px 2px 2px rgba(19, 19, 19, 0.5));
    filter: drop-shadow(4px 2px 2px rgba(19, 19, 19, 0.5));
    z-index: 100;
}

.border-arrow {
    position: absolute;
    left: 41%;
    bottom: 103%;
    width: 7px;
    height: 7px;
    border-style: solid;
    border-color: transparent;
    border-width: 13px;
    border-bottom: 0px;
    border-top: 14px solid #DCDBDB;
    transform: rotate(-185deg);
    z-index: 110;
}

.border-arrow-2 {
    left: 91%;
    bottom: 78.5%;
    transform: rotate(-125deg);
}

.border-arrow-3 {
    left: 98%;
    bottom: 29.5%;
    transform: rotate(-74deg);
}

.border-arrow-4 {
    left: 62%;
    bottom: -6%;
    transform: rotate(-18deg);
}

.border-arrow-5 {
    left: 3.2%;
    bottom: 10%;
    transform: rotate(48deg);
}

.border-arrow-6 {
    left: -7.8%;
    bottom: 65%;
    transform: rotate(107deg);
}

.cyberwheel-dots {
    position: absolute;
    top: 2%;
    left: 15%;
    width: 10px;
    height: 10px;
    z-index: 111;
    border-radius: 100%;
    background: #E1B141;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.67);
}

.cyberwheel-dots-2 {
    top: -1%;
    left: 76%;
}

.cyberwheel-dots-3 {
    top: 39%;
    left: 104%;
}

.cyberwheel-dots-4 {
    top: 89%;
    left: 88%;
}

.cyberwheel-dots-5 {
    top: 104%;
    left: 34%;
}

.cyberwheel-dots-6 {
    top: 58%;
    left: -8%;
}

.quize-title {
    padding: 13px 0 8px;
    text-align: center;
    color: #fff;
    font-size: 1.8em;
}
.cyber-questionsec .quize-title {
	text-align: left;
}
.leftsecpad {
	padding: 60px 50px;
	    height: 500px;
}
.cyber-questionsec {
    margin: auto;
	    border-radius: 24px;
       box-shadow: 2px 1px 5px #888888;
}

.enterquize-popup-inner {
    width: auto;
    margin: auto;
    padding-bottom: 100px;
}

.enterquize-popup-inner h4 {
    font-size: 1.5em;
    color: #000;
    font-weight: 600;
}


.cyber-questionsec-inner {
    height: 500px;
    margin: auto;
    position: relative;
    display: block;
}

#activeQuestion {
    text-align: center;
    color: #000;
    font-weight: 600;
    font-size: 20px;
	    padding-top: 20px;
	padding-bottom: 20px;
}

.answerchoice:hover {
    cursor: pointer;
}

.overlay-cyber {
    width: 100%;
    height: 100%;
    background: rgba(141, 149, 252, 0.95);
    z-index: 100;
    top: 0;
    left: 0;
    padding-top: 7%;
    display: none;
}

.star-rating-quize {
    position: absolute;
    top: 8%;
    right: -95px;
    color: #000000d1;
    background: #fdfd1a;
    padding: 7px 20px;
    border-radius: 5px;
    font-size: 1.1em;
}

#jumboQuiz {
    padding: 0px 80px;
	position: relative;
}

.pop-cont .popup-close {
    z-index: 10000;
}

body::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

body::-webkit-scrollbar-thumb {
    background: transparent;
}

.cyberwheel-popup {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}
#backToTop, .cyber-form {
    display: none;
}

/*---------- Form styles ------------*/

.inputs:focus{outline: none;}
dropdown-control.uscountry {
    background: #fff;
}
.uscountry{
    height: auto;
}
.uscountry select#contact_country, .uscountry select.zc-country {
    height: 60px;
    border-bottom: 1px solid #f2f2f2;
}
.uscountry select#country_state {
    height: 60px;
}
.form-field * {
    -webkit-appearance: none;
    -moz-appearance: none;
}
.form-field{
    margin: 0 0 15px 0;
    position: relative;
}
.form-row .form-field {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    margin: 15px 0 0px 0;
}
form input, form select, form textarea {
    width: 100%;
    outline: none;
    background: #fff;
    border: 2px solid #fff;
    padding: 4%;
    font-size: 1.2em;
    position: relative;
    border-radius: 5px;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    transition: all ease-in-out 0.5s;
}
form select {
    background: #fff url(https://www.manageengine.com/images/submenu-sel-arrow.png) no-repeat;
    background-position: 95% center;
    -webkit-appearance: value;
    -moz-appearance: value;
    appearance: value;
}
form textarea {
    height: 80px;
    padding: 2%;
    margin-top: 10px;
}
/*
.form-row .form-field label, .form-row label{
	    display: block;
    font-size: 1.2em;
}
*/
/*
.cyber-form {
	display: block !important;
}
*/
form .fullwidth select {
	width: 100%;
	    margin: 10px 2% 0px 0;
	    -webkit-appearance: none;
    -moz-appearance: none;
	    color: #99999e;
}
form input:focus, form select:focus, form textarea:focus {
    border: 2px solid #EF6A1B;
}
::placeholder {color: #999;opacity: 1;}
:-ms-input-placeholder {color: #999;}
::-ms-input-placeholder {color: #999;}
.callback-btn{text-align: center;}
.callback-btn input{
    background: #EF6A1B;
    border: 1px solid #EF6A1B;
    color: #fff;
    width: 200px;
    padding: 15px 0;
    border-radius: 3px;
    font-size: 1.2em;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    transition: all ease-in-out 0.5s;
    cursor: pointer;
}
.callback-btn input:hover{
    background: transparent;
    border: 1px solid #EF6A1B;
    color: #000;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance:textfield;
}
#country_state{
      margin-top: 15px;
}
#meGDPRMessage, .privacy-policy {
    font-size: .9em;
    width: 96%;
    margin: 0 auto;
	color: #000;
}
.privacy-policy {padding: 10px 0;color: #000;}
.privacy-policy a {
    color: #6b86ca;
    text-decoration: underline;
    cursor: pointer;
}
.privacy-policy a:hover {text-decoration: none;}
p.reg_form_errors {
    position: absolute;
    left: 8px;
    bottom: -20px;
    font-size: .8em;
    color: #ff0000;
    margin: 0;
    display: none;
}
.dropdown .dropdt a, .dropdown1 .dropdt1 a {
    display: block;
    width: 100%;
    outline: none;
    background: #fff;
    border: 2px solid #fff;
    padding: 4%;
    font-size: 1.2em;
    position: relative;
    border-radius: 5px;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    transition: all ease-in-out 0.5s;
    color:#999;
}
.dropdown .dropdt a, .dropdown1 .dropdt1 a {
    background: #fff url(https://www.manageengine.com/images/submenu-sel-arrow.png) no-repeat;
    background-position: 95% center;
}
.dropdown .dropdt a:hover, .dropdown1 .dropdt1 a:hover {
    border: 2px solid #EF6A1B;
}
.multiSel span strong, .multiSel1 span strong {
    margin: 0 0 0 10px;
}
.dropdt1 span.hida1{
    padding: 0;
    display: block;
}
.dropdown, .dropdown1 {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    width: 100%;
}
.dropdown .dropdd ul, .dropdown1 .dropdd1 ul {
    border: none;
    color: #000;
    display: none;
    left: 0;
    padding: 3%;
    position: absolute;
    top: 40px;
    width: 94%;
    list-style: none;
    height: 120px;
    overflow: auto;
    border: 1px solid #e9e9e9;
    border-width: 0 1px 1px 1px;
    background: #fff;
    z-index: 2;
}
.dropdown1 .dropdd1 ul li{
    padding: 5px 10px;
    cursor: pointer;
}
.dropdown .dropdd ul li:hover, .dropdown1 .dropdd1 ul li:hover {
    background: #eee;
}
.multiSel span, .multiSel1 span {
    border: 1px solid #ee9b38;
    padding: 1px 5px;
    border-radius: 5px;
    margin: 2px 5px 2px 0;
    font-size: .7em;
}
.dropdown .dropdt a span, .multiSel span, .dropdown1 .dropdt1 a span, .multiSel1 span {
    cursor: pointer;
    display: inline-block;
}

/*----------------------*/

.left-bg {
   background: #041529;
      border-radius: 20px 0px 0px 20px;
}

.cyber-questionsec {
	opacity: 0;
	right: -100px;
	    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    transition: all ease-in-out 0.5s;
	position: relative;
}
.leftanimat {
	    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    transition: all ease-in-out 0.5s;
	    visibility: visible;
    opacity: 1;
    right: 0;
}
.leftanimatamother {
		    -moz-transition: all ease-in-out 0.3s;
    -webkit-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
}
form input, form select, form textarea, .dropdown1 .dropdt1 a {
    padding: 10px;
    border: 2px solid #ddd;
    width: 100%;
}
.cyber-form {
    position: relative;
    padding-top: 50px;
    padding-left: 60px;
}
.nxt-btn {
    background: #e61111;
    color: #ffff;
    border: none;
    width: auto;
    padding: 10px 40px;
    margin-top: 10px;
}
#jumboQuiz .rightsec {
	display: none;
}
.number-list {
	position: absolute;
	top: 0;
	left: 31.7%;
	    height: 100%;
}
.centerline {
	width: 3px;
	height: 10%;
	background: #F06B1B;
	position: absolute;
	left: 17px;
    -moz-transition: all ease-in-out 1s;
    -webkit-transition: all ease-in-out 1s;
    -o-transition: all ease-in-out 1s;
    transition: all ease-in-out 1s;
	z-index: 0;
}
.numstyle {
    padding: 2px 6px;
    border-radius: 60%;
	text-align: center;
    background: #fff;
    border: 4px solid #EAEAEA;
    display: block;
    margin: 13px 0;
	position: relative;
	z-index: 1;
}
.numstyle.active {
    border: 4px solid #F06B1B;	
}
/*
.ques0 {
	top: 2%;
}
.ques1 {
	top: 12%;
}
.ques2 {
	top: 22%;
}
.ques3 {
	top: 32%;
}
.ques4 {
	top: 42%;
}
.ques5 {
	top: 52%;
}
.ques6 {
	top: 62%;
}
.ques7 {
	top: 72%;
}
.ques8 {
	top: 82%;
}
.ques9 {
	top: 92%;
	    padding: 2px 5px;
}
*/
.preloader.preloaderquize {
	left: 0;
	z-index: 1;
	    height: 95%;
	    border-radius: 24px;
	position: absolute;
}
.selectedbut {
	background: #EF6A1B;
}
.deselectbut {
	border: 2px solid #635e5b;
	color: #635e5b;
}
.deselectbut:hover {
	border: 2px solid #635e5b;
	color: #635e5b;
	background: transparent;
	cursor:auto;
}
.hiddenlayer {
position: absolute;
    top: 28%;
    left: 4%;
    width: 25%;
    height: 200px;
    background: transparent;
    z-index: 100;
	display: none;
}
.leftsecpad p{
   color: #fff;
	padding-bottom: 40px;
	font-size: 1em;
	font-weight: 100;
}
.success-msg-quize {
	background: rgba(0, 0, 0, .7);
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999999;
}
.msg-quize-cont {
	    width: 35%;
    min-height: 130px;
    background: #fff;
    margin: 5% auto 0 auto;
    position: relative;
    line-height: normal;
    padding: 30px;
    text-align: center;
}
.popup-close {
    text-align: right;
    display: block;
    cursor: pointer;
    position: absolute;
    right: 25px;
    top: 25px;
}
.msg-quize-cont h4 {
    padding: 10px !important;
    text-align: center;
    font-weight: 600;
    color: #000;
    font-size: 1.7em;
}
.msg-quize-cont p{
	line-height: 25px;
}
#quiz-main{width:70%;}
.quize-sol-title{padding: 0 0 5px 0;display: block;}


/* -------- Responsive styles -------- */
@media only screen and (max-width: 1100px)  {
    .leftsecpad{padding: 40px 10px;}
}
@media only screen and (max-width: 992px) {
	.left-bg {
		    border-radius: 20px 20px 0px 0px;
	}
	.centerline {
		display: none;
	}
	.numstyle {
		    padding: 1px 7px;
		display: inline-block;
	}
	.number-list {
		    bottom: 56.6%;
		    height: auto;
		    top: auto;
	}
	.cyber-questionsec-inner, .leftsecpad {
		height: auto;
	}
	.hiddenlayer {
		    top: 16%;
		    width: 50%;
	}
}
@media only screen and (max-width: 600px) { 
	.number-list {
		display: none;
	}
	#jumboQuiz {
		    padding: 10px 40px;
	}
	.leftsecpad {
		padding: 20px;
	}
}