textarea {
  resize: none;
}
.panel>.panel-heading {
  position: relative;
}
.label.label-diff {
  padding: .4em .6em .3em;
  color: #333;
  font-size: 10px;
  position: relative;
  top: -1px;
  min-width: 50px;
  border-radius: 0.2em;
  display: inline-block;
}

.label.label-low {
  background-color: rgb(153, 255, 153);
}
.label.label-medium {
  background-color: rgb(255, 204, 0);
}
.label.label-high {
  background-color: rgb(255, 169, 169);
}

small.error {
  color: #F00;
  display: block;
  font-size: 11px;
  margin-top:5px;
  font-weight: 700;
}
.form-group.has-error {
  margin-bottom: 0;
}

.form-control-wrapper .hint {
}

.form-group.expandable {
  position: relative;
}

.form-group.expandable textarea {
  resize: none;
  overflow: hidden;
  min-height: 80px;
}
span.help-block {
  font-size: smaller;
  color: #CCC;
}

.panel.panel-question {
  box-shadow: none;
}

.panel-question .panel-footer {
  display: none;
}

.panel-question:hover .panel-footer {
  display: block;
}

.answer {
  margin: 0;
  position: relative;
  overflow: hidden;
  display: block;
  padding-left: 15px;
}

.answer-marker {
  width: 22px;
  height: 22px;
  line-height: 22px;
  font-size: smaller;
  font-weight: 700;
  color: #333;
  display: block;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 0 4px rgba(0,0,0,0.5);
  margin-right: 15px;
  background-color: #EEE;
  position: absolute;
  top: 13px;
  left: 55px;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.answer-marker:hover {
  text-decoration: none;
}

.answer-content {
  padding: 15px 0 2px 0;
  border-bottom: 1px #EEE dashed;
  margin-left: 75px;
}

.answer.last .answer-content {
  border: 0;
}

span.collapsed-answer {
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-size: smaller;
  color: #333;
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 0 2px rgba(0,0,0,0.35);
  margin: 0 5px;
  background-color: #EEE;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}
.answer-marker.correct, span.collapsed-answer.correct {
  color: #FFF;
  background-color: #4caf50;
}
.answer-marker.non-set {
  background-color: #FFFFFF;
  width: 30px;
  height: 30px;
  line-height: 30px;
  left: 10px;
  top: 5px;
  font-size: larger;
}

span.collapsed-answer:hover {
  transform: scale(1.5);
}

.answer:hover {
  
}
.answer .a-actions {
  margin: 0;
  position: absolute;
  right: 15px;
  top: 10px;
  opacity: 0;
  transition: opacity 0.2s ease-out;
}

.answer:hover .a-actions {
  opacity: 1;
}
.answer-form {
  position: relative;
  padding: 15px 0;
}

.answer-form .checkbox {
  position: absolute;
  bottom: 31px;
  right: 120px;
  z-index: 10;
}

.answer-form.form-inline .checkbox input[type=checkbox], .answer-form.form-inline .radio input[type=radio] {
  position: absolute;
}

.answer-form textarea.form-control {
  height: 40px;
  padding-top: 10px;
  overflow: hidden;
  /*transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1);*/
}
.answer-form textarea.form-control:focus {
  /*height: 100px;*/
}

.answer-form button {
  margin: 0;
  position: absolute;
  right: 6px;
  top: 20px;
  transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.answer-form .togglebutton {
  width: 100px;
  position: absolute;
  top: 25px;
  right: 110px;
}

.panel-heading .btn.btn-collapse {
  margin: 0;
  position: absolute;
  right: 6px;
  top: 6px;
}

.panel-body {
  position: relative;
  overflow: hidden;
}

.panel-body .q-actions {
  z-index: 500;
  position: absolute;
  right: -200px;
  top: 10px;
  transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.panel-body:hover .q-actions {
  right: 15px;
}

.panel-body hr {
  margin: 15px 0;
}

.question-description {
  padding-right: 160px;
}

.panel.collapsed .question-description {
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tooltip {
  font-family: 'Roboto', sans-serif !important;
}

.tooltip .tooltip-inner {
  padding: 15px;
  background: #000;
}
.tooltip .tooltip-arrow {
  display: block !important;
}

.alert.alert-answers {
  color: burlywood;
  margin-bottom: 0;
  padding: 10px;
  text-align: center;
  background-color: ivory;
}


.btn-group.btn-group-justified {
  box-shadow: none;
  border: 1px #EEE solid;
}

.btn.btn-xs2 {
  padding: 5px 2px 5px 0;
  font-size: x-small;
  font-weight: 700;
}

.btn.btn-diff-low {
  background-color: rgb(153, 255, 153) !important;
}

.btn.btn-diff-medium {
  background-color: rgb(255, 204, 0) !important;
}

.btn.btn-diff-high {
  background-color: rgb(255, 169, 169) !important;
}

.markdown pre, .question-description pre {
  display: block;
  padding: 0;
  font-size: inherit;
  line-height: 1;
  color: inherit;
  word-break: break-all;
  word-wrap: break-word;
  background-color: none;
  border: 0;
  border-radius: 0;
  border-left: 5px #EEE solid;
}

.markdown pre code, .question-description pre code {
  padding: 1em;
}

.nav.nav-list li.active {
  background-color: #FF0;
}

.q-desc {
  z-index: 300;
  position: relative;
  background-color: #FFF;
  margin-bottom: 15px;
}

.form-group.editor {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.form-group.editor textarea {
  padding: 10px;
  background-color: #F9f9f9;
}

.form-group.editor .form-control-wrapper {
  height: 100%;
  padding-bottom: 15px;
}

.form-group.editor.visible {
  height: auto;
}

.form-group.editor.ta-answer {
  margin-top: 10px;
  margin-left: 75px;
  height: auto;
}

.btn.btn-round {
  padding: 0 !important;
  width: 24px;
  height: 24px;
  margin: 2px;
  line-height: 24px;
  text-align: center;
  border-radius: 50%;
}

.alert.alert-toast {
  background: rgba(255, 184, 0, 0.21);
  border-radius: 10px;
  color: #333;
  margin-bottom: 15px;
}

.anchors-nav {
  position: fixed;
  top: 80px;
}

#user-background{
  position:relative; 
  width:100%; 
  background-image: url("public/images/profileCovers/ninja.png");
  height:145px; 
  min-width: 1200px;
  margin-top:50px;
}
.user-dashboard-statistics{
  width:25px;
  margin-top:-11px;
}
#user-profile-circle{
  position:absolute; 
  margin-top:-15px;
  float:left; 
  margin-left:45px; 
  display:block;
  width:100px; 
  height:100px;  
  border-width: 4px;  
  border: 4px solid white;
  border-radius: 100px;
  z-index:100;
  text-align: center;
}

.icons-menu-user-dashboard{
  padding-left:5px;
  margin-top:10px;
}
#user-dashboard-second-content{
  width:100%;
  height:40px;
  min-width:1200px;
  position:relative;
}

#user-dashboard-second-content-display{
  text-align:left; 
  position:absolute;
  margin-left:155px;   
  -moz-margin-start: -186px;
}

#user-dashboard-third-content{
  width:100%;
  height:100px;
  background-color:white;
  min-width:1200px;
  position:relative;
  border-bottom: 2px solid #D7D7D7;
}

.user-dashboard-row{
  padding-top:10px; 
  height:120px; 

  margin-right:-35px;
}

#user-profile-content{
  width:100%;
  min-height:500px;
  height: auto;
  background-color: white;
  padding-top:20px;
  position:relative;
}
.menu-icon{
  padding-right:10px;
}

#panel-user-profile{
  height:30px; 
  padding-top:5px; 
  padding-left:20px;
  background-color: #31ADE5;
  border:0px;
  font-weight: 600;
  color: white;
  z-index:10000;
}

#user-dashboard-menu{
  width:200px;
  height:180px;
  border: 1px solid #D7D7D7;
  border-radius: 6px;
  margin-left:20px;

}

.user-dashboard-menu-item{
  width:210px;
  height:45px;
  padding-left:30px;
  padding-top:10px;
  color: #AEAEAE;
}

.user-dashboard-menu-item:hover{
  padding-top:10px;
  padding-left:30px;
  background-color: #31ADE5;
  border-radius: 4px;
  width:209px;
  color:#FFFFFF;
}

.user-dashboard-menu-item:hover > .fa-content{
  color:white;
}

.user-dashboard-image{
  width:22px; 
  margin-right:5px;
  margin-bottom:5px;
}
.user-name-display-regular{
  font-weight:300;
  font-size:20px; 
  color:white;
}

.user-name-display-bold{
  margin-top:10px; 
  font-size:20px; 
  color:white; 
  font-weight:600;
}
.btn.btn-fab.btn-anchor {
  width: 24px;
  height: 24px;
  padding: 0;
  font-size: 12px;
  line-height: 24px;
  text-align: center;
  margin: 5px;
  display: block;
}

.btn.btn-anchor.active {
  color: #FFF !important;
  background-color: #4caf50 !important;
}

#custom-content{
  width:600px;
  margin:0px auto 0px auto; 
  height:100%; 
  padding-top:55px;
  text-align: center;
}

#question-item-header{
  min-height:71px;
  height: auto;
  background-color: #35464E;
  margin-top:30px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  padding-top:10px;
  color:white;
  font-weight: 300;
  font-size:30px;
}
#question-title-custom{
  min-height:70px;
  height: auto;
  background-color: white;
  font-size: 20px;
  font-color:#35464E;
  margin-bottom:-10px;
  text-align: left;
  padding-left:40px;
  padding-top:20px;
  padding-bottom:20px;
}
#question-title{
  min-height:70px;
  height: auto;
  background-color: #35464E;
  font-size: 20px;
  font-color:#35464E;
  margin-bottom:-10px;
  text-align: left;
  padding-left:40px;
  margin-top:50px;
  color: white;
  padding-top:10px;
  overflow: hidden;
  padding-right:40px;
  text-align: justify;
  padding-bottom: 25px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

#question-title code{
  background-color: transparent;
  color: #ffffff;
  padding: -10px;
  font-size:15px;
 
}

pre{
  background-color: transparent;
   border: 2px solid transparent;
  outline: 2px solid transparent;
}

#question-title language{
  background-color: transparent;
}

.question-paragraph{
   display: table-cell;
    vertical-align: middle;
    text-align:center;
}

#overlay-div{
  position:fixed;
  background-color: white;
  z-index:15000;
  display:none;
  width:420px;
  height:auto;
  min-height:530px;
  left:0;
  right:0;
  margin-left:auto;
  margin-right:auto;
  top:5px;
  margin-top:150px;
  border-radius:5px;
  text-align: center;
}

#register_dropdown{
  background: transparent;
  border:0px;
  margin-left:87px;
  border-bottom:1px solid gray;
  border-radius:0px;
  outline:none;
  color:#A4A4A4;
  width:255px;
  padding-top:0px;
}


.question-item{
  min-height:30px;
  height:auto;
  background-color:white;
  font-size: 20px;
  font-color:#35464E;
  border-top:1px solid #EBEBEB;
  text-align: left;
  padding-left:35px;
  vertical-align: middle;
  padding-bottom: 20px;
}

.question-item{
  font-size: 18px;
}
.question-item:hover,
.unhover{
  background-color: #EBEBEB;
}

.permhover:hover{
background-color: #2ECC71;
}

.permhover{
  min-height:30px;
  height:auto;
  background-color:#2ECC71;
  font-size: 20px;
  font-color:#35464E;
  text-align: left;
  padding-left:59px;
  width:650px;
  margin-left:-24px;
  border-radius: 5px;
  color:white;
  font-weight: 600;
  padding-bottom:20px;
}


.question-item:hover > #checkboxtest { 
  border-color: gray; 
}


#question-item-footer-button{
  height:71px;
  background-color: #F19B2B;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  color:white;
  border:0;
  font-weight: 700;
  font-size:15px;
  width:600px;
  outline:none;
}

#question-item-footer-button1{
  height:71px;
  background-color: #F39C12;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  color:white;
  border:0;
  font-weight: 700;
  font-size:15px;
  width:600px;
  outline:none;
}

.my-img{
  padding-right:15px;
}

.register-containers{
  border: none;
  border-bottom: 1px solid gray;
  outline: none;
  color:#A4A4A4;
  width:255px;
  margin-left:20px;
  margin-bottom:20px;
  padding-left:3px;
}

.green-button{
  width:350px;
  color:white;
  background-color: #1BBC9B;
  outline:none;
  font-weight: 600;
  margin:35px auto 0px auto;
}
.user-assets-image{
  margin-left:50px;
}
#header-content{
  top:0px;
  position: fixed;
  z-index:1000;
  background-color: white;
  margin:0px auto 0px auto;
  width:100%;
  box-shadow: 0px 0px 2px #888;
}
#header{
  width:1200px;
  height:50px;
  margin: 0px auto 0px auto;
  min-width: 1200px;
  font-weight: 300px;

}
body{
  margin:0px 0px 0px 0px;
  padding:0px 0px 0px 0px;
  font-family: 'Open Sans', sans-serif;
}
.last-jobs-content1{
  font-size: 12px;
  text-align: center;
  margin-left: 5px;
  margin-right:5px;
  color:#333333;
  margin-top:20px;
  font-weight: 400;
  overflow: hidden;
  white-space: nowrap;
}

.last-jobs-content2{
  color:#999999;
  font-weight: 400;
  font-size: 15px;
  text-align: center;
  padding-top: 15px;
}
#firstContent{
  position:relative; 
  width:100%; 
  background-image: url("/public/images/background.png");
  height:700px; 
  padding-bottom: -50px;
  min-width: 1200px;
  margin-top:50px;
}

.firstContentText{
  font-size:20px;
  color:white;
}

.top-search{
  border-radius:30px;
  height:32px;
  width:265px;
  background-color: #DADADA;
  padding-left: 175px;
  font-weight:600;
}

#ghyphicon-top{
  color: gray;
  pointer-events:;
}
.bigsizeGlyphicon{
  margin-top:10px;
  font-size:2.2em;
}

.menu-text{
  color: black;
  font-weight: 400;
  font-size: 15px;
  padding-top: 15px;
  text-align: center;
}

.menu-text:hover{
  background-color: #37464d;
  height:50px;
  color: white;
  text-decoration: none;
  font-size: 700;
}

.menu-text:hover a:link { color: white; text-decoration: none}
.menu-text:hover a:visited { color: white; text-decoration: none}
.menu-text:hover a:hover { color: white; text-decoration: none}
.menu-text:hover a:active { color: white; text-decoration: none}

input:focus:invalid{
  border-color: #b03535
}
input:focus:valid{
  border-color: #28921f;
}
.checkbox1{
 
  background-color: transparent;
  border: 2px solid #778F9B;
  display: inline-block;
  position: relative;
  width:17px;
  height:17px;
  text-align: center;
}

.checkbox1:checked {
  background-color: transparent;
  color: #99a1a7;
  width:17px;
  height:17px;
}

.checkbox1:checked:after {
  font-size: 13px;
  position: absolute;
  left:0px;
  right:0px;
  top:-2px;
  color: #99a1a7;
  width:17px;
  height:17px;
}

#checkboxtest{
  margin-top:20px;
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #778F9B;
  display: inline-block;
  position: relative;
  width:30px;
  height:30px;
  text-align: center;
  border-radius: 30px;
  outline:0px;
}

#checkboxtest:checked {
  background-color: transparent;
  color: white;
  outline:0px;
  border-color:white;
}

#checkboxtest:checked:after {
  content: '\2714';
  font-size: 20px;
  position: absolute;
  left:0px;
  right:0px;
  color: white;
  outline:0px;
  border-color:white;
}

input[type="checkbox"]:focus{
    outline:0;
    border-color: white;
}
input[type="search"]:focus{
    outline:0;
    border:none;
    box-shadow: 0px;
}
#checkboxtest:hover{
  border-color:white;
}
#secondContent{
  
  position:relative; 
  width:100%; 
  background-color:#36464E;
  height:50px; 
  min-width: 1200px;
  padding: 0px;
}

.secondContentNumbers{
  font-weight: 600;
  font-size:32px;
  color:white;
  text-align: left;
  margin-left:-20px;
}
.secondContentText{
  font-weight:400;
  font-size:12px;
  color:white;
  margin-left:-85px;
}

.headerText{
  font-size:25px;
  color:#36464E;
}

#thirdContent{
  position:relative; 
  width:100%; 
  min-height:100px; 
  height: auto;
  background-color:#FFFFFF;
  min-width: 1200px;
  text-align: center;
}
#tests-display{
  color:white;
  font-size: 30px;
  display: none;
  padding-top:8px;
  font-family: 'Open Sans', sans-serif;
  text-align: center;
}

#tests-display a:link{
  text-decoration: none;
  color: white;
  display: block;
  height: 150px;
  padding-top: 50px;
  z-index:100000;
  margin-top:-10px;
}
#tests-display a:hover{
  text-decoration: none;
}

#tests-display a:active{
  text-decoration: none;
  color: white;
}

#tests-display a:visited{
  text-decoration: none;
  color: white;
}

#panel-tests{
  width:278px;
  height:150px;
  float:left;
  margin-left:35px;
  border-radius:5px;
  font-weight: 300px;
  font-size: 12px;
  color:#C8C8C8;
  border:1px solid;
  border-color: #D3D3D3;

}

.panel-tests-users-junior{
  width:278px;
  height:130px;
  border-radius:5px;
  font-weight: 300px;
  font-size: 11px;
  color:#C8C8C8;
  border:1px solid;
  border-color: #D3D3D3;
}
.panel-tests-users-medium{
  width:280px;
  height:130px;
  border-radius:5px;
  font-weight: 300px;
  font-size: 11px;
  color:#C8C8C8;
  border:1px solid;
  border-color: #D3D3D3;
}
.panel-tests-users-ninja{
  width:278px;
  height:130px;
  border-radius:5px;
  font-weight: 300px;
  font-size: 11px;
  color:#C8C8C8;
  border:1px solid;
  border-color: #D3D3D3;
}
.panel-primary-tests-users-junior{
  border-top-left-radius:5px;
  border-top-right-radius:5px;
  height:45px;
  width:278px;
  font-weight: 400;
  font-size: 15px;
  color: white;
  padding-top: 12px;
  text-align: center;
  border:1px solid;
  border-bottom: 0px;
  border-color: #D3D3D3;
  background-color: #29BC9C;
  
}

.panel-primary-tests-users-medium{
  border-top-left-radius:5px;
  border-top-right-radius:5px;
  height:45px;
  width:278px;
  font-weight: 400;
  font-size: 15px;
  color: white;
  padding-top: 12px;
  text-align: center;
  border:1px solid;
  border-bottom: 0px;
  border-color: #D3D3D3;
  background-color:#F19B2B;
}

.panel-primary-tests-users-ninja{
  border-top-left-radius:5px;
  border-top-right-radius:5px;
  height:45px;
  width:278px;
  font-weight: 400;
  font-size: 15px;
  color: white;
  padding-top: 12px;
  text-align: center;
  border:1px solid;
  border-bottom: 0px;
  border-color: #D3D3D3;
  background-color:#9A59B4;
}

.tests-display-user-profile{
  padding-top:0px;
  color:white;
  font-size: 30px;
  display: none;
  padding-top:8px;
  font-family: 'Open Sans', sans-serif;
  text-align: center;
  cursor: pointer;
}

.tests-display-user-profile a{
  display: block;
  width: 280px;
  height: 130px;
  margin-top:0px;
  cursor: pointer;
  padding-top: 40px;
}
.panel-tests-users-junior:hover{
  background-color: #29BC9C;
}

.panel-tests-users-medium:hover{
  background-color: #F19B2B;
}
.panel-tests-users-ninja:hover{
  background-color: #9A59B4;
}
.panel-tests-users-junior:hover > .panel-primary-tests-users-junior{
  border:0px;
  opacity: 0.2;
  display: none;
  
}

.panel-tests-users-junior:hover > #panel-tests-content{
  visibility: hidden;
  display: none;
}


.panel-tests-users-junior:hover > .tests-display-user-profile{
  display:block;
}

.panel-tests-users-medium:hover > .panel-primary-tests-users-medium{
  border:0px;
  opacity: 0.2;
   display: none;
}

.panel-tests-users-medium:hover > #panel-tests-content{
  visibility: hidden;
  display: none;
}


.panel-tests-users-medium:hover > .tests-display-user-profile{
  display:block;
}


.panel-tests-users-ninja:hover > .panel-primary-tests-users-ninja{
  border:0px;
  opacity: 0.2;
   display: none;
}

.panel-tests-users-ninja:hover > #panel-tests-content{
  visibility: hidden;
  display: none;
}


.panel-tests-users-ninja:hover > .tests-display-user-profile{
  display:block;
}

#panel-primary-tests{
  border-top-left-radius:5px;
  border-top-right-radius:5px;
  height:45px;
  width:278px;
  font-weight: 400;
  font-size: 15px;
  color: white;
  padding-top: 12px;
  padding-left:20px;
  text-align: center;
  background-color: #29BC9C;
  border:1px solid;
  border-bottom: 0px;
  border-color: #D3D3D3;
}

#panel-tests-medium{
  width:278px;
  height:150px;
  float:left;
  margin-left:35px;
  border-radius:5px;
  font-weight: 300px;
  font-size: 12px;
  color:#C8C8C8;
  border:1px solid;
  border-color: #D3D3D3;

}
#panel-primary-tests-medium{
  border-top-left-radius:5px;
  border-top-right-radius:5px;
  height:45px;
  width:278px;
  font-weight: 400;
  font-size: 15px;
  color: white;
  padding-top: 12px;
  padding-left:20px;
  text-align: center;
  background-color: #F19B2B;
  border:1px solid;
  border-bottom: 0px;
  border-color: #D3D3D3;
}

#panel-tests-ninja{
  width:278px;
  height:150px;
  float:left;
  margin-left:35px;
  border-radius:5px;
  font-weight: 300px;
  font-size: 12px;
  color:#C8C8C8;
  border:1px solid;
  border-color: #D3D3D3;

}
#panel-primary-tests-ninja{
  border-top-left-radius:5px;
  border-top-right-radius:5px;
  height:45px;
  width:278px;
  font-weight: 400;
  font-size: 15px;
  color: white;
  padding-top: 12px;
  padding-left:20px;
  text-align: center;
  background-color: #9A59B4;
  border:1px solid;
  border-bottom: 0px;
  border-color: #D3D3D3;
}
.panel-tests-done{
  width:278px;
  height:150px;
  float:left;
  margin-left:35px;
  border-radius:5px;
  font-weight: 300px;
  font-size: 12px;
  color:#C8C8C8;
  border:1px solid;
  border-color: #D3D3D3;

}
.panel-tests-done > #panel-primary-tests{
  background-color: gray;
  border:0px;
  opacity: 0.2;
}
.panel-tests-done:hover > #panel-tests-content{
  visibility: hidden;
}

.panel-tests-done:hover > #panel-primary-tests{
    display: none;
} 
.panel-tests-done > #panel-primary-tests-ninja{
  background-color: gray;
  border:0px;
  opacity: 0.2;
}
.panel-tests-done:hover > #panel-tests-content-ninja{
  visibility: hidden;
}


.panel-tests-done > #panel-primary-tests-medium{
  background-color: gray;
  border:0px;
  opacity: 0.2;
}
.panel-tests-done:hover > #panel-tests-content-medium{
  visibility: hidden;
}

.panel-tests-done:hover{
  background-color: gray;
}

.panel-tests-done:hover > #tests-display{
  display:block;
}


.panel-tests-done:hover > #panel-primary-tests-medium{
    display: none;
} 

.panel-tests-done:hover > #panel-primary-tests-ninja{
    display: none;
} 



#panel-tests:hover > #panel-primary-tests{
  background-color: #29BC9C;
  border:2px;
  opacity: 0.3;
  filter: alpha(opacity=30);
  
}

#panel-tests:hover > #panel-tests-content{
  margin-top:30px;
  display: block;
}
#panel-tests:hover{
  background-color: #4EC9B0;
  width:279px;
}

#panel-tests:hover  .full-link{
  z-index:10000000;
  display: block;
  position: absolute;
}
#panel-tests:hover  .display-center{
  opacity: 0.9;
  color: rgba(0,0,0,0.2);
  border-right: solid 1px rgba(0,0,0,0.1);
}

#panel-tests:hover  .diplay-center-without-border{
  opacity: 0.9;
  color: rgba(0,0,0,0.2);
}


#panel-tests:hover  .tests-panel-image {
  opacity: 0.2;
  filter: alpha(opacity=20);
}

#panel-tests:hover > #tests-display {
  display:block;
  z-index: 100000000000;
  margin-top:-40px;

}




#panel-tests-medium:hover > #panel-primary-tests-medium{
  background-color: #F19B2A;
  border-bottom:2px;
  opacity: 0.2;
  filter: alpha(opacity=20);
}

#panel-tests-medium:hover > #panel-tests-content-medium{
  margin-top:30px;
  display: block;
}


#panel-tests-medium:hover{
  background-color: #F2A641;
  width:279px;
}

#panel-tests-medium:hover > #tests-display{
  display:block;
  z-index: 100000000000;
  margin-top:-40px;
}

#panel-tests-medium:hover  .full-link{
  z-index:10000000;
  display: block;
  position: absolute;
}
#panel-tests-medium:hover  .display-center{
  opacity: 0.9;
  color: rgba(0,0,0,0.2);
  border-right: solid 1px rgba(0,0,0,0.1);
}


#panel-tests-medium:hover  .diplay-center-without-border{
  opacity: 0.9;
  color: rgba(0,0,0,0.2);
}


#panel-tests-medium:hover  .tests-panel-image {
  opacity: 0.3;
  filter: alpha(opacity=30);
}







#panel-tests-ninja:hover > #panel-primary-tests-ninja{
  background-color: #9A59B4;
  border-bottom:2px;
  opacity: 0.2;
  filter: alpha(opacity=20);
}
#panel-tests-ninja:hover > #panel-tests-content-ninja{
  margin-top:30px;
  display: block;
}

#panel-tests-ninja:hover{
  background-color:#9A61c6;
   width:279px;
}

#panel-tests-ninja:hover > #tests-display{
  display:block;
  z-index: 100000000000;
  margin-top:-40px;
}

#panel-tests-ninja:hover  .full-link{
  z-index:10000000;
  display: block;
  position: absolute;
}
#panel-tests-ninja:hover  .display-center{
  opacity: 0.9;
  color: rgba(0,0,0,0.2);
  border-right: solid 1px rgba(0,0,0,0.1);
}


#panel-tests-ninja:hover  .diplay-center-without-border{
  opacity: 0.9;
  color: rgba(0,0,0,0.2);
}


#panel-tests-ninja:hover  .tests-panel-image {
  opacity: 0.25;
  filter: alpha(opacity=25);
}


.language-logo{
  width:70px; 
  height:88px;
  float:left;
  text-align:center; 
  padding-top:10px; "
}
.tests-panel-image{
  padding-bottom:10px;
}

.display-center{
  text-align: center;
  border-right: 1px solid;
  border-color: #EBEBEB;
}

.panel-tests-body-content{
  background-color: white;
  height:90px;
  width:365px;
  border:1px solid;
  border-color: #D3D3D3;
  font-weight: 300px;
  font-size: 12px;
  color:#C8C8C8;
}

.panel-users-dashboard-header{
  border-top-left-radius:5px;
  border-top-right-radius:5px;
  height:35px;
  font-weight: 400;
  font-size: 15px;
  color: white;
  padding-top: 8px;
  width:320px;
  text-align: center;
}

.panel-users-body-content{
  background-color: white;
  height:90px;
  width:320px;
  border:1px solid;
  border-color: #D3D3D3;
  font-weight: 300px;
  font-size: 13px;
  color:#C8C8C8;
  padding-left: 15px;
}

.col-panel-user{
  width:76px;
}

.panel-primary-tests:hover{
  color:transparent;
}
#forthContent{
  position:relative; 
  width:100%; 
  height:auto;
  min-height:100px; 
  background-color:#DFE6E9;
  float:left;
  min-width: 1200px;
}

.dropdown{
  width:275px;
  text-align:left;
  height:35px;
  border-radius: 5px;
  overflow: none;
  display: block;
}

.dropdown-organisation-dashboard{
  width:390px;
}

.dropdown-organisation-dashboard-items{
  width:390px;
}

.dropdown-items{
  width:275px;
  padding-left:-10px;
}
#panel-header{
  width:178px;
  height:50px;
  background-color: #F19B2B;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  font-weight: 400;
  padding-top:12px;
}
#panel-header-medium{
  width:179px;
  height:50px;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  font-weight: 400;
  vertical-align: middle;
  display: table-cell; 
 
}
#panel-header-ninja{
  width:179px;
  height:50px;
  font-weight: 400;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  padding-top:12px;
}
#panel-primary{
  font-weight: 400;
  font-size: 15px;
  color: white;
  text-align: center;
  width:180px;
  height:250px;
  border-radius:5px;
  background-color: white;
  border:1px solid #D3D3D3;
}


.panel-primary-jobs-applyed{
  font-weight: 400;
  font-size: 15px;
  color: white;
  text-align: center;
  width:180px;
  height:250px;
  border-radius:5px;
  background-color: white;
  border:1px solid #D3D3D3;
}


.panel-primary-jobs-applyed:hover > #panel-header{
  opacity: 0.2;
  background-color: gray;
}

.panel-primary-jobs-applyed:hover > #panel-footer-content{
  opacity:0.2;
  background-color: gray;
}
.panel-primary-jobs-applyed:hover > #display{
  display:block;

}
.panel-primary-jobs-applyed:hover > .full-display{
  opacity: 0.2;
  display: none;
}
.panel-primary-jobs-applyed:hover{
  background-color: gray;
}

.panel-primary-jobs-applyed:hover > #content{
  visibility: hidden;
}

.panel-primary-jobs-applyed:hover > #panel-header-medium{
  opacity: 0.2;
  background-color: gray;
}
.panel-primary-jobs-applyed:hover > #panel-footer-content-medium{
  opacity:0.2;
  background-color: gray;
}
.panel-primary-jobs-applyed:hover > #panel-header-ninja{
  opacity: 0.2;
  background-color: gray;
}
.panel-primary-jobs-applyed:hover > #panel-footer-content-ninja{
  opacity:0.2;
  background-color: gray;
}



#content{
  display: block;
  visibility: visible;
  margin-top:30px;
}


#panel-primary:hover #panel-header{
  z-index:-1000000;
  opacity: 0.5;
  filter: alpha(opacity=50);
}
#panel-primary:hover > #display{
  display:block;
  z-index: 10000000;
  top:12px;
}

#panel-primary:hover > .full-display {
  color: white;
  opacity: 0.2;
  filter: alpha(opacity=20);
  z-index:-100000;
}


#panel-primary:hover > #panel-footer-content{
  background-color:#4EC9B0;
  cursor: pointer;
  opacity: 0.3;
}


#panel-primary:hover{
  background-color:#4EC9B0;
}

#panel-primary:hover > #content{
  margin-top:-200px;
  opacity: 0.2;
  filter: alpha(opacity=20);
}





#panel-primary-medium:hover > #panel-header-medium{
  z-index:-1000000;
  opacity: 0.5;
  filter: alpha(opacity=50);
}

#panel-primary-medium:hover > #display{
  display:block;
  z-index: 1000000;
  top:12px;
}

#panel-primary-medium:hover > .full-display{
  color: white;
  opacity: 0.2;
  filter: alpha(opacity=20);
  z-index:-100000;
}


#panel-primary-medium:hover > #panel-footer-content-medium{
  opacity:0.3;
  background-color: #F19B2B;
  cursor: pointer;
}


#panel-primary-medium:hover{
  background-color: #F19B2B;
}

#panel-primary-medium:hover > #content{
  margin-top:-200px;
  opacity: 0.2;
  filter: alpha(opacity=20);
}





#panel-primary-ninja:hover > #panel-header-ninja{
  background-color: #9A59B4;
  z-index:-1000000;
  opacity: 0.5;
  filter: alpha(opacity=50);
}

#panel-primary-ninja:hover > #display{
  display:block;
  z-index: 1000000;
  top:12px;
}

#panel-primary-ninja:hover > .full-display{
  color: white;
  opacity: 0.2;
  filter: alpha(opacity=20);
  z-index:-100000;
}
#panel-primary-ninja:hover > #panel-footer-content-ninja{
  opacity:0.3;
  background-color:  #9A59B4;
  cursor: pointer;
}

#panel-primary-ninja:hover{
  background-color: #9A59B4;
}
#panel-primary-ninja:hover > #content{
  margin-top:-200px;
  opacity: 0.2;
  filter: alpha(opacity=20);
}



#panel-footer-content{
  color:#999999;
  font-weight: 400;
  font-size: 12px;
  text-align: center;
  width:178px;
  background-color: #F5F5F5;
  height:49px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  position: absolute;
  bottom:1px;
  padding-top:15px;
}

#panel-footer-content-medium{
  color:#999999;
  font-weight: 400;
  font-size: 12px;
  text-align: center;
  width:178px;
  background-color: #F5F5F5;
  height:47px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  position: absolute;
  bottom:1px;
  padding-top:15px;
}

#panel-footer-content-ninja{
  color:#999999;
  font-weight: 400;
  font-size: 12px;
  text-align: center;
  width:178px;
  background-color: #F5F5F5;
  height:47px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  position: absolute;
  bottom:1px;
  padding-top:15px;
}

#panel-primary-medium{
  font-weight: 400;
  font-size: 15px;
  color: white;
  text-align: center;
  width:180px;
  height:250px;
  border-radius:5px;
  background-color: white;
  border:1px solid #D3D3D3;
}

#panel-primary-ninja{
  font-weight: 400;
  font-size: 15px;
  color: white;
  text-align: center;
  width:180px;
  height:250px;
  border-radius:5px;
  background-color: white;
  border:1px solid #D3D3D3
}

#footer {
  background:#36464E;
  width:100%;
  height:300px;
  bottom:0;
  left:0;
  right:0;
  margin-top:0px;
  display:table;
  min-width: 1200px;
 
}

.footer-categories{
  font-weight: 600;
  color: white;
}

.footer-content{
  font-weight: 300;
  color: white;
  text-align: left;

}

.newsletter-register-search{
  width:170px; 
  height:30px;
  padding-left:10px;
  border: 0px;
  color:grey;
  font-weight: 300;
  font-size: 13px;
}

.btn-newsletter-register{
  width:80px;
  background-color: #54B2D3;
  height:30px;
  border-radius: 0px;
  border: 0px;
  color:white;
  font-weight: 600;
  font-size:12px;
}

 .dashedCircle{
  position:relative; 
  float:left; 
  margin-left:55px; 
  display:block;
  width:180px; 
  height:180px;  
  border-width: 4px; 
  border-style: dashed; 
  border-color: white; 
  border-radius: 180px;
  background-color: #2C9BCD;
}

.topButton{
  color:#31ADE5; 
  font-weight: 700;
  font-size:20px;
  opacity: 0.7;
}


.blueBigButton{
  background-color:#31ADE5; 
  font-weight: 700;
  font-size:20px;
  color:white;
  border: 1px solid #0076A3;
  width:370px;
  border-radius:5px;
  height:50px;
}

#dropdown-login{
  margin-top:14px;
  border-radius: 0px;
  background-color: #FF8E2B;
  width:175px;
  height:auto;
  padding-top:0px;
  padding-bottom:0px;
  margin-left:-74px;
  color:white;

} 
#dropdown-login a:hover{
  background-color: transparent;
  color:white;
}

.dropdown-login-option{
  padding-top:10px;
  color:white;
  padding-bottom: 10px;
}
.dropdown-login-option:hover{
  background-color: #FB8C00;  
}


.dropdown-login-option-with-border{
  border-bottom: 1px solid white;
}

#top-orange-button a:link{
  text-decoration: none;
}



.dropdown-login-option a:link{color:white;}
.dropdown-login-option a:visited{color:white;}
.dropdown-login-option a:hover{color:white; }
.dropdown-login-option a:active{color:white;}


.menu-text a:link { color: black; }
.menu-text a:visited { color: black; }
.menu-text a:hover { color: black; }
.menu-text a:active { color: black; }

#footer a:hover,a:visited,a:active{
  color: white;
  text-decoration: none;
}
#footer a{
  color:white;
}
#footer a:hover{
  color:white;
}
#footer a:visited{
  color:white;
}
#top-orange-button{
  border-radius: 0px;
  height:50px;
  color:white;
  background-color: #FF8E2B;
  border:0px;
  width: 100px;
  padding-top:5px;
}

#header-user-image{
  width:40px;
  height:40px;
  border-radius: 40px;
  background-color: grey;
  margin-left:25px;
  margin-top:-3px;
  border: 2px solid white;
}

.user-image{
  height:36px; 
  width:36px; 
  border-radius:36px;
}

.top-orange-button-circle{
  width: 50px;
  border-radius: 50px;
  padding-top:5px;

}

.logo{
  width:100px; 
  height:70px;
}

.top-orange-button:hover{
  color: white;
  font-size:14px;
}

.images-second-content{
  text-align: right;
  padding-top:8px;
}

#test-apply-content{
  margin-top:30px;
  min-height:563px;
  height: auto;
  width:620px;
}

.checked-button{
  border:0px;
  width:50px;
  outline:none;
  background-color: transparent;
}

#test-result-header{
  width:650px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  background-color: #36464E;
  height:50px;
  margin:50px auto 0px auto;
  font-size:30px;
  font-weight: 300;
  color:white;
  padding-top: 5px;
}

#test-result-content{
  height:550px;
  width:650px;
  border-radius: 8px;
  background-color: white;
  margin:0px auto 40px auto;
}

#test-result-recomanded-jobs{
  width:500px;
  margin:80px 75px 0px 75px;
  border-top: 1px solid gray;
  min-height:350px;
  height: auto;
  font-size: 22px;
  padding-top: 20px;
}

#test-result-container{
  height:auto;
  width:100% ;
  min-width: 1200px;  
  background-image: url('/public/images/background.png');
  overflow:hidden;
  color:#757575;
  text-align:center;
}

.login-buttons{
  width:350px;
  height: 50px;
  border:0px;
  outline:none;
  font-size:20px;
  color:white;
  font-weight: 600;
  margin-bottom:20px;
  border-radius: 6px;
  padding-top:10px;
}

.login-buttons:hover{
  color:white;
}

#login-form{
  width:400px;
  height:50px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  background-color:#F39C11;
  margin:30px auto 0px auto;
  color:white;
  font-size:20px;
  font-weight: 300;
  text-align: center;
  padding-top:10px;
  
}

#login-content{
  width:400px;
  min-height:300px;
  height:auto;
  background-color: white;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  margin:0px auto 0px auto;
  padding-top:60px;
  padding-bottom:10px;

}

#register{
  position:fixed;
  background-color: white;
  z-index:15000;
  display:none;
  width:420px;
  height:auto;
  min-height:530px;
  left:0;
  right:0;
  margin-left:auto;
  margin-right:auto;
  top:100px
  margin-top:100px;
  border-radius:5px;
  text-align: center;
  border:1px solid #D0CFCF;
}

#organisation-dashboard-content{
  background-color: white;
  height: auto;
  margin-top:-21px;
  margin-left:15px;
  width:885px;
  border:1px solid #D7D7D7;
  border-top:0px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  padding-top:25px;
  padding-bottom: 25px;
}

.organisation-dashboard-header-title{
  font-weight: 600;
  font-size:18px;
  color:#36464E;
  padding-left:30px;
}

.organisation-dashboard-row{
  padding-left:30px;
  font-weight: 500;
  font-size: 16px;
  color:black;
}

.organisation-dashboard-input{
  width:390px;
  height:33px;
  padding-left:10px;
  font-size: 15px;
  border:1px solid #D7D7D7;
  color:black;
  border-radius: 5px;
  font-weight:500;
  margin-top:3px;
   font-family: 'Open Sans', sans-serif;
}

input[type="text"]:focus{
  outline: 0;
  border:1px solid #D7D7D7;
  box-shadow:none;
}

.organisation-dashboard-textarea{
  width:820px;
  height:110px;
  box-shadow: none;
  font-weight:500;
  color:black;
  text-indent: inherit;
}

.organisation-dashboard-textarea:focus{
  outline: 0;
  border:1px solid #D7D7D7;
  box-shadow:none;
}

#job-dashboard-organisation{
  width:128px;
  height:128px;
  border:1px solid #D7D7D7;
  margin-left:30px;
  border-radius:5px;
  font-weight: 600;
  font-size:15px;
  color:orange;
  text-align: center;
  padding-top: 30px;
  float:left;
  position:relative;
  cursor: pointer;
}


.selected-test-display{
  display: none;
  position: absolute;
  padding-left: 20px;
}

.orange-hover-organisation{
  width:126px;
  height:50px;
  margin-top:5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  padding-top:12px;
  display:none;
  position: absolute;
  z-index: 500000000;
}

.orange-bottom-organisation{
  height:5px;
  margin-top:50px; 
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}

#listBox li{
  overflow: hidden;
}



#job-dashboard-organisation:hover .orange-hover-organisation{
  display: block;
  z-index:400000;
}


#itemsListBox ul{
  list-style-type:none;
  white-space:nowrap;
  overflow-x:hidden;
  width:850px;
  margin-left:-40px;
  margin-top:30px;
}

#itemsListBox li{
  display:inline-block;
}

.organisation-buttons{
  width: 390px;
  height:40px;
  color:white;
  outline:none;
  box-shadow: none;
  border:0px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 5px;
}

#circles-slider.ui-slider {
  border-radius: 20px;
  background: #39AEE3;
  border: none;
  height: 10px;
  width:390px;
  margin-top:20px;
}
                    
#circles-slider .ui-slider-handle {
  border-radius: 30px;
  height: 30px;
  width: 30px;
  top: -10px;
  margin-left: -11px;
  border:1px solid #39AEE3;
  outline:none;
  background: #39AEE3;
}

.organisaton-dashboard-blue-text{
  color:#39AEE3;
  font-weight: 300;
  font-size: 18px;
  margin-top:25px;
  width:80px;
}

#slider-questions.ui-slider {
  border-radius: 20px;
  background: #39AEE3;
  border: none;
  height: 10px;
  width:390px;
  margin-top:20px;
}

#slider-questions .ui-slider-handle {
  border-radius: 30px;
  height: 30px;
  width: 30px;
  top: -10px;
  margin-left: -11px;
  border:1px solid #39AEE3;
  outline:none;
  background: #39AEE3;
  font-size:9px;
  color:white;
  text-align: center;
  padding-top:8px;
  font-weight: 600;
}
            
.user-dashboard-menu-item a:link{text-decoration:none; color:#AEAEAE;}        
.user-dashboard-menu-item a:visited{text-decoration:none; color:#AEAEAE;}
.user-dashboard-menu-item a:hover{text-decoration:none; color:white;}
.user-dashboard-menu-item a:active{text-decoration:none; color:#AEAEAE;}

.user-dashboard-menu-item:hover a:link{text-decoration:none; color:white;}        
.user-dashboard-menu-item:hover a:visited{text-decoration:none; color:white;}
.user-dashboard-menu-item:hover a:hover{text-decoration:none; color:white;}
.user-dashboard-menu-item:hover a:active{text-decoration:none; color:white;}

#organisation-dashboard-blue-row{
  margin-bottom:22px;
  background-color:#31ADE5; 
  margin-left:15px; 
  border-radius:5px;
  height:45px;
  color:white;
  font-size:18px;
  font-weight: 600;
  padding-top:10px;
  padding-left:30px;
  width:885px;
}

#job-organisation-row{
  width:885px;
  height: auto;
  background-color: white;
}

#job-preview-header{
  background-color:#F19B2B;
  height:80px;
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
  text-align: center;
  font-weight: 400;
  font-size: 30px;
  color:white;
  padding-top:15px;
}

#job-preview-first-content{
  padding-top:30px;
  height:220px; 
  background-color:white;
  border-bottom: 2px solid #B2B2B2;
  width:900px;
  margin:0px auto 0px auto;
  padding-bottom:100px;
}

.job-preview-orange-text{
  font-weight: 400;
  font-size: 16px;
  color:#F19B2B;
}

#container-preview-job{
  width:1000px; 
  height: auto;
  border:1px solid #D7D7D7;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  background-color: white;

}

#header-display-pages{
  background-image:url(/public/images/background.png); 
  height:120px;
  margin-top:50px; 
  width:100%; 
  min-width:1200px; 
  text-align:center; 
  padding-top:30px;
}

#all-jobs-header-line{
  background-color:#37464D;
  height:70px; 
  width:100%; 
  min-width:1200px;
  padding-top:18px;
}

.before-content{
  width:500px; 
  border-bottom:1px solid #D4D4D4;
  margin:0px auto 0px auto;
  padding-top:20px;
  color:#666666;
  height: auto;
  padding-bottom:30px;
}

#before-test-footer{
  background-color:#F1F1F1; 
  height:100px; 
  border-bottom-left-radius:8px; 
  border-bottom-right-radius:8px; 
  width:650px; 
  margin-left:0px;
  padding-top:10px;
  padding-left:80px;
  font-size: 12px;
  color:#717171;
}

.fa-content{
    color: #72C7ED;
    width:10px;
    display:block;
    float:left;
    margin-right:10px;
}




.container{
    width:600px;
    margin:50px auto;
    height:auto;
}

.searchbox{
    position:relative;
    min-width:36px;
    width:0%;
    height:36px;
    float:right;
    overflow:hidden;
    border-radius:36px;
    -webkit-transition: width 0.3s;
    -moz-transition: width 0.3s;
    -ms-transition: width 0.3s;
    -o-transition: width 0.3s;
    transition: width 0.3s;
}

.searchbox-input{
    border:0;
    outline:0;
    background:#dcddd8;
    width:100%;
    margin:0;
    padding-left:15px;
    font-size:14px;
    color:black;
    border-radius:30px;
    height:36px;
}
.searchbox-input::-webkit-input-placeholder {
    color: black;
}
.searchbox-input:-moz-placeholder {
    color: black;
}
.searchbox-input::-moz-placeholder {
    color: black;
}
.searchbox-input:-ms-input-placeholder {
    color: black;
}

.searchbox-icon,
.searchbox-submit{
    width:36px;
    height:36px;
    position:absolute;
    top:0;
    right:0;
    margin:0;
    border:0;
    outline:1px solid #37464d;
    line-height:25px;
    text-align:center;
    cursor:pointer;
    background-color: #37464D;
    border-radius:36px;
    border:2px solid #37464D;
}



.searchbox-open{
    width:260px;
}

.close-icon:after {

  content: "X";
  width: 15px;
  height: 15px;
  position: absolute;
  background-color: white;
  z-index:1;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
  padding: 0px;
  border-radius: 50%;
  text-align: center;
  color: white;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  color:#E6E6E6;
}

#big-search-input{
  height:50px;
  border-radius:8px;
  outline:none;
  box-shadow: 0px;
  border:0px;
  padding-left:20px;
  font-size: 18px;
  margin-top:25px;
  padding-right:60px;
  color:gray;
  font-style: italic;
}

#search-button{
  width:40px;
  height:40px;
  background-color: #F19B2B;
  outline:none;
  border-radius:5px;
  box-shadow: 0px;
  border:0px;
  margin-left:-50px;
  margin-top:30px;
  position: absolute;
}

#loginDiv{
  width:100px; 
  height:50px; 
  margin-top:-5px; 
  margin-left:-5px; 
  padding-top:15px;
  font-size:15px; 
  font-weight:700;
}

#test-add-content{
  width:100%;
  min-width: 1200px;
  margin-top:50px;
  background-color: #F1F1F1;
  height:850px;
  background-image: url("/public/images/sketchy.png");
  text-align: center;
  padding-top:40px;
  height:auto;
}

#test-content{
  margin:60px auto 0px auto;
}

.top-button-test-create{
  width:310px;
  background-color: #D4D4D4;
  height:65px;
  display:inline-block;
  border-radius:0px;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  font-size: 24px;
  color:#333333;
  padding-top:10px;
 
}

#test-add-container{
  height:auto;
  min-height:670px; 
  width:624px;
  min-width:624px;
  border-radius:8px;
  background-color: white;
  margin:0px auto 0px auto;
  bottom:30px;
  color:black;
  position:relative;
  margin-bottom: 30px;
}

.button-color{
  background-color: white;
}

.organisation-test-row{
  margin-left:30px;
  font-size: 16px;
  color:#B5B5B5;
}

.small-btn-test{
  margin-top:10px;
  height:30px;
  width:120px;
  font-size:12px;
  line-height: 2px;
  outline:none;
  color:white;
  background-color: #39AEE3;
  outline:0px;
  border:0px;
  border-radius: 5px;
}

.tests-list{
  width:45px;
  height:45px;
  background-color:#F1F1F1;
  border:1px solid #D7D7D7;
  position:relative; 
  padding-top:10px;
}

#tests-list-add{
  width:45px;
  height:45px;
  background-color:#F1F1F1;
  border:1px solid #D7D7D7;
  position:relative; 
  padding-top:10px;
}

.location-display{
  width:180px;
  height:100px;
  background-color: #F1F1F1;
  border:2px solid #DEDEDE;
  border-radius: 5px;
  padding-left:15px;
  padding-top:15px;
}

.add-test-organisation{
  background-color: #31ACE5;
  color: white;
  font-weight: 700;
  font-size:15px;
  text-align: center;
  border:0px;
  box-shadow: none;
  border-radius:5px;
}

.organisation-people-container{
  width:400px;
  background-color: #F1F1F1;
  height:90px;
}

.mail-class{
  background-image: url("http://compilez.ro/public/images/background.png");
  width:800px;
  height:800px;
}

#display-text-organisation{
  display:block; 
  margin-top:-65px;
  margin-left:75px;
}

.selectclass{
  width:100px;
  height: auto;
  min-height:  20px;
  border-radius: 5px;
  font-size:12px;
  color:black;
  margin-left:75px;
  margin-top:15px;
  background-color: white;
  text-align: center;
  padding-top: 1px;
}

.selectclass option{
  background-color: #F1F1F1;
  width:10px;
  border-top:1px solid black;
  border-radius:5px;
}


.selectclass:focus{
  outline:none;
}

#container-custom{
  height:auto;
  min-height: 1500px;
  padding-bottom:30px;
  margin-bottom:0px;
}

#alert-div{
  width:400px;
  background-color: #8FCB8F;
  position:absolute;
  left:0;
  right:0;
  margin:auto;
  z-index:1000;
  height:30px;
  top:10px;
  text-align: center;
  display: none;
  border-radius: 5px;
  color:white;
  font-weight: 700;
  padding-top:5px;
}

.panel-primary-organisation-jobs{
  font-weight: 400;
  font-size: 15px;
  color: white;
  text-align: center;
  width:210px;
  height:250px;
  border-radius:5px;
  background-color: white;
  border:1px solid #D3D3D3;
  margin-right:30px;
}

.panel-primary-organisation-jobs:hover > #panel-header{
  opacity: 0.2;
  background-color:#7C8E98;
}
.panel-primary-organisation-jobs:hover > #panel-footer-content{
  opacity:0.2;
  background-color:#7C8E98;
}
.panel-primary-organisation-jobs:hover > #display{
  display:block;
}
.panel-primary-organisation-jobs:hover{
  background-color:#7C8E98;
}

.panel-primary-organisation-jobs:hover > #content{
  visibility: hidden;
}


.panel-primary-organisation-jobs-inactive{
  font-weight: 400;
  font-size: 15px;
  color: white;
  text-align: center;
  width:210px;
  height:250px;
  border-radius:5px;
  border:1px solid #D3D3D3;
}

.panel-primary-organisation-jobs-inactive:hover > #panel-header{
  opacity: 0.2;
  background-color:#CECECE;
}
.panel-primary-organisation-jobs-inactive:hover > #panel-footer-content{
  opacity:0.2;
  background-color:#CECECE;
}
.panel-primary-organisation-jobs-inactive:hover > #display{
  display:block;
}
.panel-primary-organisation-jobs-inactive:hover{
  background-color:#CECECE;
}

.panel-primary-organisation-jobs-inactive:hover > #content{
  visibility: hidden;
  background-color:#CECECE;
}

#user-photo{
  width:210px;
  height: 170px;
  position: absolute;
  margin-left: 620px;
  border-radius: 7px;
  border: 2px solid #D7D6D8;
  margin-top:40px;
  overflow: hidden;
}

.div-color{
  background-color: #EEEEEE;
  height:50px;
  margin-top:-12px;
}

.tests-list{
  cursor: pointer;
}

#tests-list-add{
  cursor: pointer;
}

#user{
  cursor: pointer;
}

#organisation{
  cursor: pointer;
}

.domains{
  border:1px solid #D7D7D7;
  border-radius:5px;
  height:70px;
  margin-bottom:20px;
  padding-left:20px;
  font-size: 18px;
  color:#778F9B;
  vertical-align: middle;
}

.domains:hover{
  background-color: #F19B2B;
  color: white;
}

.domains:hover  #checkboxtest{
  border-color: white;
}

.domains-selected{
  background-color: #F19B2B;
  color: white;
}

.domains-selected #checkboxtest{
  border-color: white;
}

#bordered{
  border:1px solid #D7D7D7;
  border-top: 0px;
  width: 885px;
  margin-top: -32px;
  margin-left: 0px;
  padding-top:30px;
  height: auto;
  margin-bottom:50px;
}

.panel-settings-user{
  border-radius: 0px;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}

#display-row{
  height: auto;
  width:900px;
  margin-left: -25px
}

.colored-row{
  background-color:#F7F7F7; 
  margin:0px auto 0px auto;
  padding-top: 30px;
}

.bordered-right{
  border-right: 1px solid #A9A9A9;
}

.bordered-left{
  border-left: 1px solid #A9A9A9;
}

.prezent-label{
  font-size:17px; 
  font-weight:300; 
  position:absolute;
  margin-top: 1px;
  margin-left:10px;
}

#prezent{
  margin-top:10px;
  display: inline-block;
  vertical-align: baseline;
}


input[type="file"]::-webkit-file-upload-button{
  display: none;
  cursor: pointer;

}

.user-photo-holder{
  bottom:20px; 
  width:206px;
  height:20px; 
  background-color:#31ACE5; 
  position:absolute;
  left:0; 
  color:white; 
  text-align:center; 
  font-size:11px;
  overflow: hidden;
  cursor: pointer;
}
.photo-label{
  cursor: pointer;
}

#organisation-photo-holder{
  width: 390px;
  background-color: #31ACE5;
  height: 30px;
  color: white;
  border-radius: 5px;
  font-size: 13px;
  text-align: center;
  cursor: pointer;
  position: absolute;
  left: 489px;
  top:380px;
}
#info-container{
  padding-top:80px;
  padding-left:15px;
}

#info-container-jobs{
  padding-top:80px;
  padding-left:15px;
}

.header-rounded{
  border-radius: 10px;
}

.hover-img{
  margin-top:-60px;
}

.test-display{
  color: white;
  font-size: 24px;
  font-weight: 300;
  border-right: 3px dashed white;
}

#close{
  cursor: pointer;
}

#myModal1{
  top:0px;
  position: absolute;
  width: 420px;
  left:0;
  right: 0;
  margin: auto;
  background-color: white;
  height: 320px;
  border-radius: 5px;
}

#myModal2{
  background-color: white;
  border-radius: 5px;
  width:420px;
  height: 320px;
  margin:200px auto 0px auto;
}
.modal-content1{
  width: 420px;
  padding-top:10px;
  padding-left:30px;
  padding-right:30px;
  text-align: center;
}

.markdown-textarea{
  width:820px; 
  text-align:left;
  min-height:100px; 
  height:auto; 
}

#job-preview{
  background-color:#F1F1F1; 
  height:auto;
  display: none;
  padding-top:110px;
  padding-bottom: 50px;
}

.markdown-textarea-widthout-borders{
  border:0px ;
  height:auto;
  padding-top:30px;
}

#back-button:hover{
  text-decoration: none;
}

#warning-placeholder{
  background: red;
  width:1500px;
  height: 1500px;
}

.full-link{
  width:278px;
  cursor: pointer;
  text-align: center;
  font-weight: 600;
}

#facebook-header-button{
  background-color:#44609D;
  padding-top:0px;
}

.appliants-button{
  width: 265px;
  height: 40px;
  border-radius: 5px;
  border: 1px solid #D7D7D7;
  cursor: pointer;
  background-color: #F8F8F8;
  color: #586B73;
  font-size: 18px;
  padding-left: 20px;
  padding-top: 5px;
}

.appliants-selected{
  background-color: #586B73;
  color: white;
}


.btn-info-custom{
  background-color: #F8F8F8;
  color: #586B73;
  font-size: 18px;
  padding-left: 20px;
  border: 1px solid #D7D7D7;
  outline: none;
}

.btn-info-custom:hover{
  background-color: #586B73;
  outline: none;
}

.btn-info-custom:focus{
  background-color: #586B73;
  outline-style:none;
  box-shadow:none;
}

#appliants-holder{
  padding-left: -10px;
  padding-top: 25px;
}
.organisation-display-users{
  background-color: white;
  border-radius: 5px;
  width: 880px;
  height: 65px;
  margin-left: 20px;
  cursor: pointer;
}

.date-holder{
  height: 65px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  width:20px;
}

.date-holder-medium{
  background-color: #F19B2B;
}

.date-holder-junior{
  background-color: #29BC9C;
}

.date-holder-ninja{
  background-color: #9A59B4;
}

.rotate-text{
  transform: rotate(-90deg);
  float:left;
  margin-left:-15px;
  margin-top:25px;
  font-size: 11px;
  font-weight: 700;
  color: white;
}

.dashboard-users-display-image{
  background-color: #E8E8E8;
  margin-top: 10px;
  width: 45px;
  height: 45px;
  border-radius: 45px;
  overflow: hidden;
}

.organisation-users-name-display{
  font-size:18px;
  font-weight: 300;
  color: #756E6E;
  margin-top: 20px;
}

.date-holder-junior-whitout-border{
  height: 323px;
  border-top-left-radius:0px; 
  margin-top:-3px;  
}

.organisation-users-details{
  font-size: 14px;
  font-weight: 300;
  color: #756E6E;
}

.organisation-users-buttons{
  width: 150px;
  height: 25px;
  color: white;
  display: block;
  text-align: center;
  padding-top: 2px; 
  cursor: pointer;
  text-decoration: none;
}

.organisation-users-buttons:hover{
  text-decoration: none;
  color:white;
}

.organisation-users-buttons:visited{
  text-decoration: none;
  color:white;
}

.organisation-users-buttons:active{
  text-decoration: none;
  color: white;
}

.organisation-users-name-display-title{
  color: #756E6E;
  max-width: 200px;
  overflow: hidden;
  font-size:16px;
  text-align: left;
  padding-top:20px;
}

#user-photo-holder-cv{
  border-radius: 5px;
  color: white;
  padding-top: 2px;

}

#test-file-container{
  width:885px;
  height:500px;
  background-color: white;
  margin-left: 15px;
  padding-top: 45px;
  padding-left:15px;
}

#upload-test-button-holder{
  width: 390px;
  height: 30px;
  color: white;
  position:absolute;
  left: -420px;
  top: 30px;
  border-radius: 5px;
  background-color: #31ADE5;
  text-align: center;
  padding-top: 5px;
  cursor: pointer;
}

#label-test{
  width: 390px;
  cursor: pointer;
}

table, th, td {
    border: 1px solid white;
    border-collapse: collapse;
}
th, td {
    padding: 5px;
    text-align: center;
    width:300px;
    height: 50px;
    color: black;
}

#regular-link{
  text-decoration: none;
}

#regular-link:link{
  text-decoration: none;
  color:black;
}

#regular-link:hover{
  transition: all 0.5s ease;
  transform: scale(1.5);
  cursor: pointer;

}
table#tests-table{
  width:900px;
  margin-left:30px;

}
table#tests-table tr:nth-child(even) {
    background-color:#31ADE5;
}
table#ttests-table tr:nth-child(odd) {
   background-color:#fff;
}
table#tests-table th  {
    background-color: #31ADE5;
    color: black;
}

#modal-content{
  width:100%;
  height: 100%;
  border-radius: 0;
  box-shadow: 0px;
  padding: 0px;
  margin-left: 0px;
  left: 0;
   -webkit-box-shadow: 0 0px 0px #fff;
  -moz-box-shadow: 0 0px 0px #fff;
  -0-box-shadow: 0 0px 0px #fff;
  box-shadow: 0 0px 0px #fff;
}


#profile-modal {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 0;
  margin-top: 0px;
  top:0px;
  left: 0;
  margin-left: 0px;
  box-shadow: 0px;
   -webkit-box-shadow: 0 0px 0px #fff;
  -moz-box-shadow: 0 0px 0px #fff;
  -0-box-shadow: 0 0px 0px #fff;
  box-shadow: 0 0px 0px #fff;
}

#close-modal{
  position: absolute;
  left: 1500px;
  top: 30px;
}

.public-profile-holder{
  min-width: 1200px;
  width: 100%;
  min-height: 250px;
  height: auto;
  overflow: hidden;
  background-color: red;
  padding-top:50px;
  padding-bottom:50px;
}

.public-profile-holder-gray{
  background-color: #F1F1F1;
}

.public-profile-holder-white{
  background-color: white;
}

.public-profile-text{
  font-size: 30px;
  font-weight: 300;
  color: #333333;
  text-align: center;
}

.public-profile-text-second{
  font-size: 20px;
  color: #333333;
  text-align: center;
  font-weight: 700;
}

.public-profile-row{
  width: 1200px;
  margin: 0px auto 0px auto;
}

.right-column{
  text-align: left;
  margin-left: 40px;
}

.left-column{
  text-align: right;
  margin-right: 40px;
}

.panel-tests-custom-public-profile{
  width: 210px;
  height: 30px;
  font-size: 16px;
  color: white;
  text-align: center;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}

.panel-public-profile-junior{
  background-color: #29BC9C;
}

.panel-public-profile-medium{
  background-color:#F19B2B;
}

.panel-public-profile-ninja{
  background-color:#9A59B4;
}
 
.panel-tests-custom-public-profile-holder{
  border-bottom-left-radius: 5px;
  border-top-right-radius: 5px;
  width: 210px;
  height: 80px;
  background-color: white;
  padding-top: 10px;
  text-align: center;
  border:1px solid #f1f1f1;
}


.public-profile-button-text{
  background-color: #39AEE3;
  width: 280px;
  text-align: center;
  padding-top: 10px;
}

#delete-photo{
  cursor: pointer;
}

#download-cv-button{
  margin-top:270px; 
  margin-left:606px; 
  position:absolute; 
  color:white; 
  background-color:#31ACE5; 
  border-radius: 5px;
  text-decoration: none;
  font-size:12px;
  font-weight: 700;
  width: 206px;
  height: 20px;
  text-align: center;
  padding-top: 2px;
}

.small-blue-btn{
  background-color:#31ACE5; 
  border-radius: 5px;
  text-decoration: none;
  font-size:12px;
  font-weight: 700;
  width: 206px;
  height: 20px;
  text-align: center;
  padding-top: 1px;
  color:white;
}


.organisation-tests-row{
  width:282px;
  padding-top:15px;
  text-align:center;
  padding-left:15px;
  background-color:white; 
  height:150px;
}

.jobs-div{
  width:884px;
  margin-left:-30px;
  padding-left:20px;
}

.jobs-div:hover{
  background-color: #D7D7D7;
  color: white;
}

.jobs-div .selected-status{
  background-color: #31ACE5;
}
.selected-status{
  background-color: #31ACE5;
  color:white;
}

#organisation-dashboard-points-container{
  height:60px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  margin-top: 0px;
  border:1px solid #D7D7D7;
  background-color: white;
  width:885px;
  margin-left:15px;
  padding-left: 30px;
  font-size: 18px;
  color: #333333;
  padding-top:15px;
}

#organisation-dashboard-blue-row-smaller{
  height:35px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  background-color: #31ADE5;
  color: white;
  margin-left:15px;
  font-size: 18px;
  font-weight: 500;
  width:885px;
  padding-left:30px;
  padding-top:5px;
}

.points-container{
  width:201px;
  height:450px;
  border-radius: 5px;
  border: 1px solid #D7D7D7;
  border-radius: 5px;
  background-color: white;
}

.points-title-holder{
  width:160px;
  border-bottom: 1px solid #D7D7D7;
  margin: 0px auto 0px auto;
  height: 80px;
  font-size: 30px;
  font-weight: 500;
  padding-top:15px;
  text-align: center;
}

.points-main-contact{
  width: 160px;
  height: 170px;
  margin:0px auto 0px auto;
  text-align:center;
  padding-top:30px;
  font-size:18px;
}

.button-holder{
  height: 90px;
  margin:0px auto 0px auto;
  text-align: center;
  width: 160px;
  padding-top: 30px;

}

#view-profile-button{
  width:210px;
  height:20px;
  display: block;
  background-color: #31ADE5;
  color: white;
  margin-left:-5px;
  border-radius: 5px;
  font-size:12px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  padding-top: 1px;
}

.full-display{
  
  width: 182px;
  height: 250px;
  text-decoration: none;
  z-index: 1000000000000;
  margin-top:-25px;
  overflow: hidden;
  font-weight: 700;
 color:white;
}

#display{
  color:white;
  font-size: 30px;
  display: none;
  padding-top:15px;
  font-family: 'Open Sans', sans-serif;
  width: 182px;
  height: 250px;
  text-align: center;
  cursor: pointer;
  margin-top:-50px;
  z-index:1000000;
}
#display a{
  color: white;
  cursor: pointer;
  text-decoration: none;
  width: 182px;
  height: 250px;
  margin-top:-75px;
  display: block;
  z-index: 100000;
  padding-top: 0px;
  overflow: hidden;
}



@media screen and (min-color-index:0) and(-webkit-min-device-pixel-ratio:0) { @media
{
     .photo-holder-org{
        position: relative;
        margin-top: 5000px;
  }
}}

#user-photo-org{
  width:390px;
  height:170px;
  position: absolute;
  margin-left: 505px;
  border-radius: 7px;
  border: 2px solid #D7D6D8;
  margin-top:40px;
  overflow: hidden;
  top: 340px;
}

.bold-jobs{
  font-weight: 700;
}

.search-result-number{
  text-align: center;
  font-size: 25px;
  color:white;
}

.logo-organisation-holder{
  cursor:pointer;
  width:390px; 
  height:30px; 
  padding-top:7px;
}

.points-big{
  height: 532px;
  background-color: #555555;
  position: absolute;
  top: -40px;
  width: 205px;
  padding-left:2px;
  border-radius: 5px;
  text-align: center;
  
  
}

#points-big-text{
  height: 490px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-top:1px solid black;
}

.no-results-row{
   margin-bottom:22px;
  background-color:white; 
  margin-left:15px; 
  border-radius:5px;
  height:45px;
  color:#333333;
  font-size:18px;
  font-weight: 600;
  padding-top:10px;
  padding-left:30px;
  width:885px;
}

.language-button{
  width: 30px;
  border:0px ;
  background-color: transparent;
  color: #37464D;
  padding: 0px;
  margin-top: 16px;
  display: inline-block;
  position: absolute;

}

.language-button:hover{
  color: #37464D;
}

.language-button-active{
  color: #37464D;
 text-decoration: underline;
}

.language-button-active:hover{
  background-color: transparent;
}

.user-dahsboard-numbers{
  color:black;
  font-weight:600;
  font-size:40px; 
  padding-left:10px;
}

.user-dahsboard-numbers-text{
  color:black; 
  font-size:12px; 
  text-align:left;
  font-weight:600;
  margin-top:7px;
}

.whitout-borders{
  border-radius:0px;
}

.error{
  height:20px;
  color: red;
  font-size:12px;
  font-weight: 700;
  padding-top:10px;
}

#editor{
   font-size: 15px;
  color:black;
  font-family: 'Open Sans', sans-serif;
}

#editor1{
   font-size: 15px;
  color:black;
  font-family: 'Open Sans', sans-serif;
}

#editor2{
   font-size: 15px;
  color:black;
  font-family: 'Open Sans', sans-serif;
}

#editor3{
  font-size: 15px;
  color:black;
  font-family: 'Open Sans', sans-serif;
}

#editor4{
   font-size: 15px;
  color:black;
  font-family: 'Open Sans', sans-serif;
}

#editor5{
   font-size: 15px;
  color:black;
  font-family: 'Open Sans', sans-serif;
}

#add-job-div{
  width:209px;
  height: 250px;
  background-color: #31ADE5;
  border-radius:5px;
  font-size: 30px;
  color: white;
  text-align: center;
  font-weight: 700;
  padding-top:70px;
  cursor: pointer;
}

#add-test-div{
  width:270px;
  height:150px;
  background-color: #31ADE5;
  border-radius:5px;
  font-size: 30px;
  color: white;
  text-align: center;
  font-weight: 700;
  padding-top:30px;
  cursor: pointer;
}

#epiceditor{
  width:500px;
  height: 300px;
  border: 1px solid #CCCCCC;
  padding-right: 0px;
  overflow-y:hidden;
  padding-left:15px;
  padding-top:15px;
}

#preview-img:hover{
  transition: all .0.5s ease-in-out;
  transform: scale(1.3);
  cursor: pointer;
}


#logo-header-organisation-container{
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  color:white;
  font-size: 140px;
  margin: -30px auto 0px auto;
  text-align: center;
}


.dropdown:hover .dropdown-menu {
display: block;
}

.language-dropdown{
  width: 30px !important;
  border-radius: 0px;
  margin-top:-1px;
  background-color: transparent;
  outline: none;
  border:0px;
  box-shadow: none;
}

.language-list{
  background-color:#37464D;
  width:60px;
  height:50px;
  margin-top:-5px;
  margin-left: 0px;
  padding-left:12px; 
  padding-top:7px;
  list-style: none;
}
.language-list:hover{
  background-color: #38585E;
}
#base-content{
  width:1200px;
  display:block;
}

#circles-holder{
  width:840px; 
  margin:0px auto 0px auto; 
  padding-top:65px;
}

#try-it-holder{
  display: none;
}
#tests-holder{
  width:1200px; 
  margin:10px auto 0px auto; 
  margin-left:-47px;"
}

.container-fluid{
  width:1200px;
}


#language-select{
  padding-left:60px;
}

#experience-select{
  padding-left:115px;
}

#display-jobs{
  width:1200px;
  margin-top:30px; 
  padding-left:3px;
}

.see-more{
  width:355px; 
  margin-left:405px; 
  margin-top:30px; 
  margin-bottom:50px;
}

.see-more-1{
 width:355px; margin:25px auto 50px auto;
}

.close-mark{
  position:absolute; 
  left:380px;
  top:20px; 
  cursor:pointer;
}

#name-row{
  padding-top: 60px; 
  text-align: center; 
  padding-bottom: 30px; 
  margin: 0px auto 0px auto;
}

#mobile-menu{
  display: none;
}

.mobile-menu-item{
  height:40px;
  border-bottom:1px solid #ffffff;
  padding-left: 20px;
  font-size: 15px;
  padding-top:7px;
  color:white;
}
.mobile-menu-item a{
  color: white;
}
#no-list-style{
  list-style: none;
  padding-left:0px;
  margin-bottom: 0px;
}

.container-custom{
  width:1200px;

}

#standard-wrapper{
  width:400px;
  position:relative;
  margin:0px auto 0px auto;
  border-radius:5px;
}

#logIn{
  display:none;
  position:fixed;
  right: 0;
  left: 0; 
  margin: auto;
  top:150px; 
  z-index:10000000000;
}
#register-holder{
  
}

.register-switch{
  width:205px;
  text-align:center; 
  display:inline-block; 
  padding-top:10px
}

#switch-container{
  margin-bottom:30px; 
  height:45px; 
  font-size:18px; 
  color:#A3A3A3
}
#confirmation-field{
      padding-left:65px;
}
#captcha-holder{
  padding-left: 150px;
}
 #terms-holder{
     margin-top:-25px; margin-left:85px;
    }
.standard-row{
  width:1200px;
}
#tests-container{
  width:1240px; 
  margin:0px auto 0px auto;
}

#tests-fluid-container{
  padding-top:20px; 
  margin-left:-25px;
}
#padding-select-1{
  padding-left:18px
}

#padding-select-2{
  padding-left: 26px;
}

#adress-holder-contact{
  font-size:18px; 
  color: #333333; 
  text-align: center; 
  font-weight: 700; 
  margin-bottom:50px;
}

 #tag-select{
    padding-left:60px;
  }
  #experience-select{
    padding-left:110px;
  }

  #before-test-holder{
      height:740px;
      background-image:url(/public/images/background.png); 
      margin-top:50px; 
      padding-top:50px; 
      width:100%; 
      min-width:1200px;
    }

  #test-details-holder{
    height:190px; 
    padding-left:30px; 
  }

  .before-test-button{
    width:510px;
  }

  #job-details-container{
    width:450px; 
    height:120px; 
    padding-left:120px;
  }

  #job-test-holder{
    min-height:320px;
    background-color:#F7F7F7; 
    padding-left:50px; 
    padding-top:30px;
  }

  #col-panel-user-holder{
      width:310px; 
      margin-left:-5px; 
      padding-top:20px;
  }

  .bottom-button-preview{
    background-color:#39AEE3;
    width:440px;
    padding-top: 10px;
  }

   #test-display-holder{
      padding-bottom:30px;
      height:100%; 
      width:100%; 
  }

  .tag-holder{
    width:200px; 
    margin-left:150px;
    padding-top:5px; 
    display:block;
  }

  .question-wrapper{
    margin-left:70px;
    width:450px; 
    margin-top:-35px; 
    cursor:pointer;
  }
  .question-p{
    margin-top:-30px; 
    cursor:pointer; 
  }

  .test-result-content-large{
    height:800px;
    width:650px;
    border-radius: 8px;
    background-color: white;
    margin:0px auto 40px auto;
  }

  #suggested-jobs{
    margin-left:-35px; 
    margin-top:30px; 
    margin-right:-600px;
  }
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 480px)
  and (orientation: portrait) {
    #test-result-content{
      width: 320px;
    }
    .question-p{
      width:100px;
    }
    .question-wrapper{
      width:100px; 
    }
    .tag-holder{
     text-align: center;
     border-right: 0px;
     width:300px;
     margin-left: 0px;
     margin-bottom:20px;
     margin-top: 0px;
    }
    #test-display-holder{
     margin-top:130px;
    }
    #header{
      width: 320px;
      min-width: 320px;
    }
    .second-row-contact{
      display: none;
    }
    #padding-select-1{
      padding-left:20px
    }
    #captcha-holder{
      padding-left: 90px;
    }
    #header-contact{
      display: none;
    }
    #header-tests{
      display: none;
    }
    #header-jobs{
      display: none;
    }
    #search-content{
      display: none;
    }
    #language-div{
      display: none;
    }
    .dashedCircle{
      display: block;
      width:100px;
      height: 100px;
      margin-left: 8px;
    }
    .container-fluid{
      width:320px;
      padding-left:0px;
      margin-left:0px;
    }
    #top-orange-button{
     
      margin-left:140px;
    }
    #circles-holder{
      width:320px;
      margin-left:0px;
      padding-left: 0px;
    }
    #header-content{
      width:320px;
      min-width: 320px;
    }

    #base-content{
      width:320px;
    }
    body{
      width:320px;
    }
    .round-holder{
      float:left;
      width: 100px;
      height:100px;
      border-radius:100px;
      margin-left:0px;
      padding-left:0px;
    }

    #firstContent{
      width: 320px;
      overflow: hidden;
      height:auto;
      min-height:250px;
      min-width: 320px;
      margin-top:0px;
    }
    .moacks{
      width:95px;
      height:95px;
      margin-top:-2px;
    }

    #text-moachs{
      display: none;
    }
    .apply-button{
      width:250px;
      height:50px;
      margin:10px auto 0px auto;
    }
    .apply-button1{
      width:250px;
      height:30px;
      margin:10px auto 0px auto;
      font-size:12px;
      padding-top:5px;
    }
    #try-it-holder{
      width:320px; 
      margin-left:0px; 
      margin-top:20px;
    }
    #secondContent{
      display: none;
    }

    #tests-holder{
      width:320px;
      padding-left:15px;
    }

    #latests-tests-holder{
      margin-left:0px;
      text-align: left;
    }
    .row{
      width: 320px;
    }

    #selects-holder{
      padding-left:25px;
    }

    #language-select{
      padding-left:15px;
      padding-top: 10px;
    }

    #experience-select{
      margin-left:-5px !important;
      padding-top: 10px;
    }

    #display-jobs{
      width:320px;
      margin-top:30px; 
      padding-left:70px;
    }

    #display-jobs-custom{
      width: 320px;
      margin-top: 30px;
      padding-left: 55px;
    }
    #experience-h{
      padding-left: 10px;
      padding-top:10px;
      margin-left:10px;
    }
    #thirdContent{
      width:320px;
      min-width: 320px;
    }

    #forthContent{
      width: 320px;
      min-width: 320px;
      min-height: 320px;
    }

    #footer{
      width: 320px;
      min-width: 320px;
      
    }
    .big-buttons-holder{
      margin:0px auto 0px auto;
      width:320px;
      text-align: left;
    }
    .see-more{
      width:320px; 
      margin:30px auto 50px auto;
      text-align: left;
    }

    #text{
      display: none;
    }

    #overlay-div{
      width:300px;
      top:5px;
      margin-top:50px;
      position: absolute;
    }
    .social-media-images{
      display: none;
    }
    .close-mark{
      position:absolute; 
      left:270px;
      top:10px; 
      cursor:pointer;
    }
    .newsletter-register-container{
      display: none;
    }
    .footer-row{
      width:320px;
      display: inline-block;
    }
    #name-row{
      display: none;
    }

    #desktop-menu{
      display: none;
    }
    #mobile-menu{
      display: block;
    }
    #login-form{
      padding-left: 0px;
      width:300px;
      margin-left:25px;

    }
    #login-content{
      width:300px;
      margin-left:25px;
      padding-left: 0px;
    }
  
    #standard-wrapper{
        margin:0px auto 0px auto;
        border-radius:5px;
        padding:0px;
    }

    #logIn{
      position: fixed;
      top:25px;
      margin-top:0px;
    }
    .form-group{
      width:300px;
      margin-left:0px;

    }
    #login-buttons-container{
      padding-left: 0px;
      margin:0px auto 0px auto;
    }

    .user-assets-image{
      display: none;
    }
    #organisation-image{
      display: none;
    }
    #register{
      width:300px;
      top:35px;
      position: relative;
      margin-top: -30px;
       z-index:10000000000;
    }
    .register-switch{
      width: 145px;
      height:30px;
      padding-top:0px;
    }
    #switch-container{
      height:30px;
    }
    #confirmation-field{
      padding-left:0px;
    }
    #terms-holder{
     margin-top:-25px; margin-left:35px;
    }
    #header-display-pages{
      display: none;
    }
    #all-jobs-header-line{
      background-color:#37464D;
      height:120px; 
      width:320px; 
      min-width:320px;
      padding-top:18px;
    }
    .standard-row{
      width:320px;
    }
    #tests-container{
      width:320px;
      padding-left:0px;
      margin-left:0px;
    }
    #tests-fluid-container{
      padding-top:20px; 
      margin-left:-30px;
    }

    #padding-select-2{
      margin-top:20px;
      padding-left: 20px;
    }

    #adress-holder-contact{
      padding-left: 20px;
    }
    #tag-select{
     padding-left:20px;
     margin-top:10px;
    }

   
    #experience-select{
      padding-left:20px;
      margin-top:0px;
    }

    .all-jobs-header-line-extended{
      height: 160px !important;
    }

    #loc-select{
      padding-left: 20px;
    }

    #overlay-div{
      margin-top:50px;
    }

    #before-test-holder{
      width:32px; 
      min-width:320px;
    }

    .test-result-content-large{
      width:300px;
      margin-left:10px;
      height: 1300px;
    }
    .before-content{
      width:280px;
      padding-top:10px;
    }

    .before-test-images{
      display: none;
    }

    #test-details-holder{
      width:280px; 
      padding-left:0px; 
    }

    #before-test-holder-display-name{
      text-align: center;
    }

    #before-test-footer{
      width:320px;
      height: auto;
      padding-left: 10px;
      text-align: left;
      padding-right:10px;
      padding-bottom: 20px;
    }

    #button-container-before-test{
      padding-left:15px;
    }

    #back-button{
     display: none;
    }

    #job-preview-first-content{
      width: 300px;
      min-width: 300px;
    }

    #container-preview-job{
      width: 300px;
      margin-left:10px;
    }

    #job-preview-header{
      width: 300px;
      margin-left: 0px;
    }
    #job-preview-photo-holder{
      display: none;
    }
    #job-details-container{
      margin-left: 0px;
      position: absolute;
      left: 0px;
      padding-left: 30px;
      margin-top:50px;
      width: 320px;
      min-width: 320px;
    }

    #job-test-container{
      padding-left: 0px;
      margin-left: 0px;  
      width: 300px;    
    }

    #job-test-holder{
      padding-left:0px; 
      min-width: 300px;
      width: 300px;
      padding-left: 10px;
      margin-left: 0px;
      height: 250px;
      min-height: 250px;
    }

    .panel-users-dashboard-header{
      width: 280px;
    }
    .panel-users-body-content{
      width: 280px;
    }
    .col-panel-user{
      width: 70px;
      padding-left: 0px;
    }

    #col-panel-user-holder{
      width:280px; 
      margin-left:-5px; 
      padding-top:20px;
    }

    #custom-style-orange{
      padding-left: 30px;
    }

    .organisation-dashboard-textarea{
      width: 230px;
      min-width: 230px;
    }

    .bottom-button-preview{
      display: inline-block;
      margin-left: 10px;
      padding-left: 0px;
      float:left;
      padding-top:8px;
    }

    #job-preview{
      padding-left: 0px;
      width: 320px;
      min-width: 320px;
    }
    #question-title{
      width: 300px;
      margin-left:10px;
    }

    .question-item{
      width: 300px;
      margin-left: 10px;
    }

    #question-item-footer-button1{
      width: 300px;
      margin-left: 10px;
      float:left;
    }

    #custom-content{
      padding-left: 15px;
      width: 320px;
    }

    #test-run-holder{
      width: 320px;
      text-align: center;
      margin-bottom: 30px;
    }

    #close{
      margin-top: 20px; 
      text-align: left;
      padding-left: 0px;     
    }
    #test-display-body{
      width: 320px;
    }

    #test-apply-content{
      width:320px;
    }

    #answers-div{
      width: 320px;
    }

    .modal-content1{
      width: 300px;
    }

    #myModal1{
      width: 300px;
    }

    #test-result-header{
      width: 300px;
      margin-left:10px;
      height: auto;
    }
    #test-result-recomanded-jobs{
      width:300px;
      margin:80px 0px 0px 0px;
    }

    #suggested-jobs{
      padding-left: 75px;
      width:320px;
    }
    #test-result-container{
      width: 320px;
      min-width: 320px;
    }

}
