/* Form page */
#mock-form-screen > div:last-child{
    background:rgba(255,255,255,0.03);
    backdrop-filter:blur(24px);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:28px;
    padding:40px;
    box-shadow:
        0 20px 60px rgba(0,0,0,0.45),
        inset 0 1px 0 rgba(255,255,255,0.06);
}

#interview-title{
    text-align:center;
    margin:12px auto 0;
}

#mock-context{
    min-height:140px;
    border-radius:24px;
    padding:18px 20px;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.1);
    color:#fff;
    resize:none;
    transition:all 0.3s ease;
}

#mock-context:focus{
    outline:none;
    /* border-color:#6b63ff; */
    box-shadow:0 0 0 4px rgba(107,99,255,0.15);
}

.form-control{
    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.05),
            rgba(255,255,255,0.02)
        );
    border:1px solid rgba(107,99,255,0.25);
    border-radius:20px;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.05),
        0 8px 25px rgba(0,0,0,0.25);
}

.form-control{
    height:56px;
    border-radius:24px;
    padding:0 18px;
    border:1px solid rgba(107,99,255,0.25);
    background:rgba(255,255,255,0.04);
    color:#fff;
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;
}

.form-control:focus{
    /* border-color:#6b63ff; */
    box-shadow:0 0 0 4px rgba(107,99,255,0.15);
}

.form-control option{
    background:#101225;
    color:#fff;
    padding:12px;
}
#mock-form-screen .btn-primary{
    display:block;
    width:100%;
}

.form-grid-2{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-bottom:28px;
}

label{
    display:block;
    color:#fff;
    font-size:0.95rem;
    font-weight:600;
    margin-bottom:10px;
}

.form-control{
    width:100%;
    height:54px;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:14px;
    color:#fff;
    padding:0 16px;
    font-size:15px;
    transition:0.25s ease;
    outline:none;
}

textarea.form-control{
    min-height:120px;
    padding-top:14px;
    resize:vertical;
}

.form-control::placeholder{
    color:rgba(255,255,255,0.35);
}

#mock-form-screen .page-header h2{
    margin-top: 12px;
}

select.form-control{
    cursor:pointer;
}

.checkbox-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
    margin-top:14px;
    margin-bottom:28px;
}

.checkbox-card{
    display:flex;
    align-items:center;
    gap:12px;
    padding:16px 18px;
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:16px;
    cursor:pointer;
    transition:0.3s ease;
}

.checkbox-card:hover{
    border-color:rgba(107,99,255,0.4);
    background:rgba(107,99,255,0.08);
    transform:translateY(-2px);
}

.checkbox-card input{
    width:18px;
    height:18px;
    accent-color:#6b63ff;
}

.checkbox-card span{
    color:#fff;
    font-weight:500;
}

.checkbox-card:has(input:checked){
    background:rgba(107,99,255,0.12);}


@media (max-width:768px){

    #mock-form-screen{
        padding:24px 16px 60px;
    }

    #mock-form-screen > div:last-child{
        padding:24px;
        border-radius:22px;
    }

    .page-header h2{
        font-size:1.5rem;
    }

    .form-grid-2,
    .checkbox-grid{
        grid-template-columns:1fr;
    }

    .page-back{
        width:42px;
        height:42px;
    }
}


/* Spinner */

#mock-spinner{
    display:none;
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    width:100vw;
    height:100vh;
    z-index:9999;

    background:
        radial-gradient(circle at 30% 20%, rgba(108,99,255,.12), transparent 35%),
        radial-gradient(circle at 70% 80%, rgba(0,180,255,.08), transparent 35%),
        rgba(5,7,22,.95);

    backdrop-filter:blur(18px);

    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.spinner-icon{
    position:relative;
    width:90px;
    height:90px;
    border-radius:50%;

    border:4px solid rgba(255,255,255,.08);
    border-top:4px solid #6C63FF;
    border-right:4px solid #7B74FF;

    animation:spin 1s linear infinite;
}

.spinner-icon::before{
    content:"";
    position:absolute;
    inset:-12px;
    border-radius:50%;
    border:2px solid rgba(108,99,255,.15);
    animation:pulse 2s ease infinite;
}

.spinner-icon::after{
    content:"";
    position:absolute;
    inset:22px;
    border-radius:50%;
    background:#6C63FF;
    box-shadow:
        0 0 15px #6C63FF,
        0 0 35px rgba(108,99,255,.5);
}

#mock-spinner-text{
    margin-top:28px;
    color:#fff;
    font-size:1.15rem;
    font-weight:600;
    letter-spacing:.4px;
    text-align:center;
}

#mock-spinner-text::after{
    content:"";
    animation:dots 1.5s infinite;
}

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

@keyframes pulse{
    0%,100%{
        transform:scale(1);
        opacity:.4;
    }
    50%{
        transform:scale(1.15);
        opacity:1;
    }
}

@keyframes dots{
    0%{content:"";}
    25%{content:".";}
    50%{content:"..";}
    75%{content:"...";}
    100%{content:"";}
}

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

#mock-spinner-heading {
  margin-top: 2rem;
  color: #fff;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.spinner-steps {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 350px;
}

.spinner-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.9375rem;
  transition: 0.3s ease;
}

.spinner-step.active {
  color: #fff;
}

.spinner-step.active svg circle {
  stroke: #6C63FF;
  fill: rgba(108,99,255,0.2);
}

.spinner-step.completed svg {
  display: none;
}

.spinner-step.completed::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background: #6C63FF;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.spinner-progress {
  margin-top: 2rem;
  width: 100%;
  max-width: 350px;
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
}

.spinner-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #6C63FF, #8B7AFF);
  width: 0%;
  transition: width 0.5s ease;
  box-shadow: 0 0 10px rgba(108,99,255,0.5);
}
/* Interview Session */
#mock-session-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #000;
  z-index: 1000;
  overflow: hidden;
}

.interview-container {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
}

.interviewer-main-video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #000;
}

#mock-ai-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interview-overlay-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  z-index: 1001;
}

.interview-timer {
  position: absolute;
  left: 1.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

.interview-progress-bar {
  flex: 1;
  max-width: 500px;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  overflow: hidden;
}

#interview-progress-fill {
  height: 100%;
  background: #fff;
  width: 0%;
  transition: width 0.5s ease;
}

.interview-next-btn {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 20;
}

.interview-next-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  transform: scale(1.1);
}

.interview-next-btn svg {
  stroke: #fff;
}

.interviewee-small-window {
  position: absolute;
  top: 80px;
  right: 20px;
  width: 180px;
  height: 135px;
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  z-index: 15;
  background: #1a1a1a;
  cursor: move;
  transition: box-shadow 0.2s;
}

.interviewee-small-window:hover {
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.5);
}

#mock-user-camera {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interview-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 1rem;
}

.control-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.control-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

.control-btn.active {
  background: rgba(220, 53, 69, 0.8);
}

.control-btn svg {
  stroke: #fff;
}

.interview-caption-box {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 800px;
  width: 90%;
  /* background: rgba(0, 0, 0, 0.75); */
  /* backdrop-filter: blur(10px); */
  border-radius: 12px;
  padding: 1rem 1.5rem;
  z-index: 20;
  /* border: 1px solid rgba(255, 255, 255, 0.1); */
  transition: opacity 0.3s;
}

.interview-caption-box.hidden {
  opacity: 0;
  pointer-events: none;
}

.interview-caption-box p {
  color: #fff;
  font-size: 1.125rem;
  margin: 0;
  text-align: center;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .interview-overlay-header {
    height: 50px;
    padding: 0 1rem;
    z-index: 100;
  }

  .interview-timer {
    font-size: 1rem;
    left: 1rem;
  }

  .interview-progress-bar {
    max-width: 250px;
  }

  .interviewee-small-window {
    top: 70px;
    right: 15px;
    width: 120px;
    height: 90px;
  }

  .interview-next-btn {
    bottom: 80px;
    right: 15px;
    width: 48px;
    height: 48px;
  }

  .interview-controls {
    bottom: 80px;
  }

  .interview-caption-box {
    bottom: 130px;
    padding: 0.75rem 1rem;
  }

  .interview-caption-box p {
    font-size: 1rem;
  }
}

.mock-result-wrapper {
  min-height: 100vh;
  background: 
    radial-gradient(circle at 20% 10%, rgba(108, 99, 255, 0.08), transparent 40%),
    radial-gradient(circle at 80% 90%, rgba(118, 75, 162, 0.06), transparent 40%),
    #0a0b14;
  padding: 2rem 1rem 4rem;
}

.result-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto 3rem;
}

.result-back-btn {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  flex-shrink: 0;
}

.result-back-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateX(-4px);
}

.result-header-text h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  color: #fff;
  letter-spacing: -0.5px;
}

.result-header-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9375rem;
}

.result-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.result-score-hero {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 3rem 2rem;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  display: flex;
  justify-content: center;
}

.score-circle-wrapper {
  position: relative;
  width: 220px;
  height: 220px;
}

.score-circle-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.score-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.06);
  stroke-width: 8;
}

.score-fg {
  fill: none;
  stroke: url(#scoreGradient);
  stroke-width: 8;
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  stroke-linecap: round;
  transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  /* filter: drop-shadow(0 0 8px rgba(108, 99, 255, 0.4)); */
}

.score-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.score-value {
  display: block;
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #2943b8, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.score-label {
  display: block;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.result-metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.metric-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  transition: all 0.3s;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.metric-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(108, 99, 255, 0.3);
  transform: translateY(-2px);
}

.metric-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.metric-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.metric-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.metric-bar-bg {
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  overflow: hidden;
}

.metric-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #667eea, #764ba2);
  width: 0;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 3px;
  box-shadow: 0 0 12px rgba(108, 99, 255, 0.5);
}

.result-analysis-grid {
  display: grid;
  gap: 1rem;
}

.analysis-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: all 0.3s;
}

.analysis-card:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateX(4px);
}

.strengths-card:hover {
  border-color: rgba(34, 197, 94, 0.3);
}

.improve-card:hover {
  border-color: rgba(251, 191, 36, 0.3);
}

.suggestions-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
}

.analysis-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.analysis-title {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.analysis-content {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  font-size: 0.9375rem;
}

.readiness-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.readiness-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.readiness-icon {
  font-size: 1.5rem;
}

.readiness-header h4 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
}

.readiness-grid {
  display: grid;
  gap: 1.25rem;
}

.readiness-item {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.readiness-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.readiness-label span:first-child {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.readiness-score {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

.readiness-bar-bg {
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  overflow: hidden;
}

.readiness-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #667eea, #764ba2);
  width: 0;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(108, 99, 255, 0.5);
}

.rewards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.reward-card {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(108, 99, 255, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s;
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.reward-card:hover {
  transform: translateY(-4px);
}

.reward-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.reward-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.reward-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.reward-value {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.result-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.result-btn {
  height: 56px;
  border-radius: 14px;
  font-size: 0.9375rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  outline: none;
}

.result-btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}

.result-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.result-btn-accent {
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.3);
  color: #fbbf24;
}

.result-btn-accent:hover {
  background: rgba(251, 191, 36, 0.15);
  border-color: rgba(251, 191, 36, 0.5);
  transform: translateY(-2px);
}

.result-btn-primary {
  background: linear-gradient(135deg, #191348, #4338A8);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.result-btn-primary:hover {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .mock-result-wrapper {
    padding: 1.5rem 1rem 3rem;
  }

  .result-header {
    margin-bottom: 2rem;
    gap: 1rem;
  }

  .result-header-text h2 {
    font-size: 1.5rem;
  }

  .result-header-text p {
    font-size: 0.875rem;
  }

  .result-score-hero {
    padding: 2rem 1.5rem;
  }

  .score-circle-wrapper {
    width: 180px;
    height: 180px;
  }

  .score-value {
    font-size: 3rem;
  }

  .result-metrics-grid {
    grid-template-columns: 1fr;
  }

  .rewards-grid {
    grid-template-columns: 1fr;
  }

  .result-actions {
    grid-template-columns: 1fr;
  }

  .readiness-grid {
    gap: 1rem;
  }

  .reward-value {
    font-size: 1.75rem;
  }
}



/* Mode Selector */
.mode-change-btn {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  /* border: 1px solid rgba(255, 255, 255, 0.1); */
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8125rem;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.3s;
}

.mode-change-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.mode-selector {
  position: absolute;
  top: 56px;
  right: 16px;
  background: rgba(10, 11, 20, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 8px;
  min-width: 200px;
  z-index: 100;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.mode-option {
  padding: 12px 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.2s;
  color: #fff;
}

.mode-option:hover {
  background: rgba(108, 99, 255, 0.15);
}

.mode-icon {
  font-size: 1.25rem;
}

@media (max-width: 768px) {
  .mode-change-btn {
    padding: 6px 12px;
    font-size: 0.75rem;
  }
  
}
#mock-question-counter{
    display:none !important;
}

/* Mock Initial Screen */
#mock-initial-screen {
  padding: 2rem 1rem;
}

#mock-initial-screen .interviewer-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
}


#mock-initial-screen .btn-lg {
  width: 100%;
  max-width: 400px;
  margin: 2rem auto 0;
  display: block;
}

#mock-initial-screen .interviewer-wrap{
    width:100%;
    max-width:700px;
    margin:0 auto;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    transform:none !important;
}

#mock-initial-screen .interviewer-avatar{
    margin:0 auto;
}

#mock-initial-screen .interviewer-name,
#mock-initial-screen .interviewer-badge,
#mock-initial-screen .speech-bubble{
    text-align:center;
}

#mock-initial-screen .btn-lg{
    display:block;
    max-width:550px;
    margin:40px auto 0;
}

.interview-mode-header{
    margin-top:20px;
}

.interview-mode-header h2{
    font-size:2rem;
    margin-bottom:20px;
}

#mock-initial-screen .interviewer-wrap{
    padding-top:20px;
}

#mock-initial-screen .btn-lg{
    margin-top:80px !important;
    margin-bottom:40px;
}

.interview-mode-header h2{
    font-size:1.4rem !important;
}

#mock-initial-screen .btn-lg{
    max-width:420px !important;
    width:100%;
    margin-left:auto;
    margin-right:auto;
}
@media (max-width: 768px) {

  .mode-change-btn{
    font-size: 11px;
    padding: 5px 8px;
    z-index: 10;
  }

}

#sub-mock .page-back {
  position: relative !important;
  left: auto !important;
  top: auto !important;
}

