* {
  position: relative;
  box-sizing: border-box;  
  margin: 0;
  padding: 0;  
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  font-weight: 400;
}

body {
  color: #000000;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  overflow-x: hidden;
  background: #000000;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/view/img/prestige-p.svg') center center no-repeat fixed;
  background-size: cover;
  opacity: 0.03;
}

body,
html {
  width: 100%;
  height: auto;
  -ms-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -o-text-size-adjust: none;
  -webkit-text-size-adjust: none;  
}

a {
  cursor: pointer;
  text-decoration: none;  
}

ul,
ol {
  list-style: none;
}

*:focus {
  outline: none !important;
}

::placeholder {
  color: #616161;
  opacity: 1;
  font-style: italic;
  font-weight: 400;
}

::-ms-input-placeholder {
  color: #616161;
  opacity: 1;
  font-style: italic;
  font-weight: 400;
}

:read-only::placeholder {
  color: #000000;
}

:read-only::-ms-input-placeholder {
  color: #000000;
}

.flex {
  display: flex;
}

.col {
  flex-direction: column;
}

.hc {
  justify-content: center;
}

.vc {
  align-items: center;
}

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

@keyframes spin {
  from {
    transform:rotate(0deg);
  }
  to {
    transform:rotate(360deg);
  }
}

@keyframes pulsate {
  0% { 
    opacity: 1;
  }
  50% { 
    opacity: 0.5;
  }
  100% { 
    opacity: 1;
  }
}

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

main {
  height: auto;
  min-height: calc(100vh - 40px);
  padding: 30px;
}

.box {
  background: rgba(129,129,129,0.3);
  border-radius: 4px;
  padding: 20px;
  width: 100%;
}

.box.login {
  max-width: 640px;
}

.box:not(.login) {
  margin-top: 30px;
}

.box.info {
  padding-left: 70px;
}

.box.info::before {
  font-family: 'Font Awesome 5 Free'; 
  font-weight: 900;  
  content: '\f05a';  
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 38px;  
  font-style: normal;
  color: rgba(255,255,255,0.5);
}

.box.info p {
  color: rgba(255,255,255,0.5);

}

.box.info p strong {
  font-weight: 600;
  color: #ffffff;
}

.box.hours {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
}

.box.hours p {
  text-transform: uppercase;
  font-weight: 600;
}

.box.hours span {
  font-size: 40px;
  font-weight: 600;
  margin: 0 10px;
}

.col-2 {
  width: calc(100% + 30px);
  margin: 0 -15px;
  flex-wrap: wrap;
}

.col-2 .box {
  width: calc((100% / 2) - 30px);
  margin-left: 15px;
  margin-right: 15px;
}

.link {
  color: #ffffff;
  margin-top: 15px;
}

.sh {
  box-shadow: 0 0 5px rgba(0,0,0,0.6);
}

h1 {
  background: #e9148d;
  width: calc(100% + 40px);
  height: 50px;
  margin: -20px 0 20px -20px;
  border-radius: 4px;
  color: #ffffff;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
}

h1.counter {
  height: 70px;
  font-size: 30px;
}

p.question {
  text-align: center;
  font-size: 18px;
  color: #000000;
  margin: 50px 0;
}

h2 {
  color: #ffffff;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  padding-bottom: 5px;
  margin-bottom: 15px;
  border-bottom: rgba(255,255,255,0.2) 1px solid;
}

.box h2 span {
  color: rgba(255,255,255,0.5);
}

p {
  color: #ffffff;
  font-style: italic;
}

p.userinfo {
  color: #ffffff;
  font-size: 18px;
  line-height: 30px;
  font-weight: 600;
  text-align: center;
  font-style: normal;
}

p.date,
p.link {
  font-style: normal;
  margin-top: 10px;
}

p.desc {
  opacity: 0.5;  
}

a.download {
  color: #ffffff;
  margin-top: 10px;
}

a.download i {
  font-size: 18px;
  margin-right: 5px;
}

.field-container {
  margin-bottom: 5px;
}

input,
select,
textarea {
  width: 100%;
  height: 45px;
  background: rgba(255,255,255,0.6);
  border: none;
  border-radius: 4px;
  padding: 0 15px;
  font-family: inherit;
  font-size: inherit;
  font-weight: 600;
  resize: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;  
}

.field-container span.icon {
  position: absolute;
  right: 20px;
  z-index: 50;
}

.field-container span.icon i {
  font-size: 22px;
}

.field-container span.icon.primary a,
.field-container span.icon.primary i {
  color: #e9148d;
}

.field-container span.icon.default a,
.field-container span.icon.default i {
  color: #000000;
}

input[type="file"] {
  display: none;
}

input.required-warning,
select.required-warning,
textarea.required-warning {
  background-color: #d8a7a5 !important;
}

textarea {
  padding: 15px;
  height: 150px;
}

textarea.big {
  height: 300px;
}

input:read-only,
textarea:read-only {
  background: rgba(255,255,255,0.3);
}

section.login input:read-only {
  background: rgba(255,255,255,0.6);
}

.button-container {
  margin-top: 15px;
}

.button {
  width: max-content;
  height: 40px;
  padding: 0 30px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 4px;
  color: #ffffff;
  margin: 0 5px;
}

.button.online-lesson {
  width: 100%;
  margin: 0;
  height: 80px;
  -webkit-animation: pulsate 2s ease-out;
  -webkit-animation-iteration-count: infinite; 
  animation: pulsate 2s ease-out;
  animation-iteration-count: infinite;  
}

#gotolink-hidden-button {

}

.online-lesson-container p,
.online-lesson-container h2 {
  text-align: center !important;
}

.answers .button {
  width: 100%;
  max-width: 800px;
  margin: 5px 0;
  height: auto;
  padding: 10px 30px;
  text-align: center;
  text-transform: none;
}

.answers .button.next {
  width: max-content !important;
  margin-top: 50px;
}

.answers .button.answer-failed {
  background: #df1716;
}

.answers .button.answer-success {
  background: #0d8f02;
}

img.test-picture {
  max-height: 400px;
  max-width: 100%;
  margin: 50px auto -20px auto;
}

.button i {
  font-size: 18px;
  margin-right: 5px;
}

.square-button {
  width: 35px;
  height: 35px;
  border-radius: 4px;
  color: #ffffff;  
}

.button.primary,
.square-button.primary {
  background: #c41176;
}

.button.secondary,
.square-button.secondary {
  background: #000000;
}

.button.tertiary,
.square-button.tertiary {
  background: #787878;
}

.center {
  text-align: center;
}

.list-item {
  width: 100%;
  height: 45px;
  background: rgba(255,255,255,0.6);
  border-radius: 4px;
  padding: 0 5px;
  margin-bottom: 5px;
}

.list-item.empty {
  background: rgba(255,255,255,0.3);  
}

.list-item.accepted {
  background: #e9148d;
  height: 90px;
}

.list-item.accepted i {
  font-size: 60px;
  color: rgba(255,255,255,0.2);
  margin: 0 10px;
}

.list-item.accepted .content {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
}

.list-item.accepted .content span {
  font-size: 14px;
}

a.info {
  color: #ffffff;
  margin-top: 5px;
}

a.info i {
  margin-right: 5px;
}

.list-item .label {
  background: #000000;
  padding: 0 20px;
  color: #ffffff;
  font-weight: 600;
  border-radius: 4px;
  height: 100%;
  margin-left: -5px;
  margin-right: 5px;
  flex-shrink: 0;  
}

.list-item .label.accepted {
  background: #e9148d;  
}

.list-item .label.result {
  font-size: 18px;  
}

.list-item .content {
  font-weight: 600;
  flex-grow: 1;
  padding: 0 10px;
  overflow: hidden;  
}

.list-item a {
  flex-shrink: 0;
}

.list-item .content span.additional {
  opacity: 0.5;
  font-weight: 600;
}

section#notfound {
  color: #ffffff;
  font-size: 300px;
  font-weight: 800;
  opacity: 0.5;
}

section#notfound p {
  font-size: 30px;
  margin-top: 10px;
  text-align: center;
}

section#layer {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.9);
  z-index: 500;
  padding: 30px;
  overflow-y: scroll;
  display: none;
}

section#layer .container {
  width: 100%;
  height: auto;
  min-height: 100%;
  background: #a9a9a9;
  border-radius: 4px;
  padding: 30px;
}

section#layer .middle {
  flex-grow: 1;
}

section#layer .middle p {
  color: #000000;
  font-style: normal;
  font-size: 18px;
}

section#layer .middle p.highlight {
  color: #e9148d;
  font-size: 80px;
  font-weight: 800;
  margin: 40px 0;
}

section#layer .middle .waiting {
  margin-top: 40px;
}

section#layer .middle .waiting i {
  font-size: 40px;
  color: rgba(0,0,0,0.5);
  animation-name: spin;
  animation-duration: 2000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;    
}

section#layer .wrapper-light,
section#layer .wrapper-dark {
  padding: 20px;
  border-radius: 4px;
  margin-bottom: 10px;
}

section#layer .wrapper-light {
  background: rgba(255,255,255,0.3);
}

section#layer .wrapper-dark {
  background: rgba(0,0,0,0.3);
}

section#layer p {
  font-weight: 600;
  line-height: 21px;
  color: #000000;
}

section#layer p.inherit {
  padding-left: 65px;
  font-weight: 400;
  margin-top: 15px;
}

section#layer p.comment {
  font-style: italic;
}

section#layer p.comment::before {
  font-family: 'Font Awesome 5 Free'; 
  font-weight: 900;  
  content: '\f10e';  
  position: absolute;
  top: 0;
  left: 10px;
  font-size: 36px;  
  font-style: normal;
  color: rgba(0,0,0,0.2);
}

section#layer p.answer {
  padding-left: 65px;
  font-weight: 400;
  margin-top: 15px;
  font-style: italic;
}

section#layer p.answer::before {
  font-family: 'Font Awesome 5 Free'; 
  font-weight: 900;  
  content: '\f10e';  
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 36px;  
  opacity: 0.1;
  font-style: normal;
}

section#layer input,
section#layer select,
section#layer textarea {
  background: rgba(255,255,255,0.3);
}

#progress {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1000;  
}

#progress i {
  font-size: 40px;
  color: rgba(255,255,255,0.5);
  animation-name: spin;
  animation-duration: 2000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;  
}

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

nav {
  width: 100%;
  height: auto;
  background: rgba(255,255,255,0.5);
  border-radius: 4px;
}

nav .personal-container {
  height: 50px;
  background: #e9148d;
  border-radius: 4px;
}

nav .personal-container .name,
nav .personal-container .role {
  padding: 0 20px;
  color: #ffffff;
  font-weight: 600;
}

nav .personal-container .role {
  margin-left: auto;
  background: #c41176;
  height: 100%;
  border-radius: 0 4px 4px 0;
}

nav .personal-container .role span {
  margin-left: 5px;  
}

nav .personal-container a {
  color: #ffffff;
  font-weight: 600;
}

nav .personal-container a i {
  font-size: 18px;
}

nav ul,
nav li,
nav a {
  height: 50px;
}

nav li:not(:last-child)::after {
  content: '';
  width: 1px;
  height: 25px;
  background: rgba(0,0,0,0.23);
  margin: 0 15px;
}

nav li.selected a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 5px;
  background: #e9148d;
  box-shadow: 0 0 5px rgba(0,0,0,0.6);
}

nav ul {
  padding: 0 20px;
}

nav ul a {
  color: #000000;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
}

nav ul a i {
  font-size: 20px;
  margin-right: 5px;
}

nav ul a span:not(:empty) {
  position: absolute;
  top: 8px;
  right: -12px;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  background: #e9148d;
  color: #ffffff;
  font-size: 9px;
  opacity: 0.8;
}

nav ul a span:empty {
  display: none;
}

footer {
  width: 100%;
  height: 40px;
  background: rgba(255,255,255,0.5);
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
  font-size: 14px;
  font-weight: 600;
}

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

@media only screen
and (min-width : 1281px) {
  .ease:hover {
    opacity: 0.5;
  }
  .transition {
    transition: 0.5s;
    -o-transition: 0.5s;
    -ms-transition: 0.5s;
    -moz-transition: 0.5s;
    -webkit-transition: 0.5s;    
  } 
}