#takeSelfie-mob,
#takeSelfie-desk {
  display: none;
}

#result-container-mob,
#result-container-desk {
  display: none;
  width: 100%;
}

/* Show the mobile navbar on screens 768px and below */
@media (max-width: 768px) {
  #takeSelfie-mob {
    display: block;
    height: 100%;
  }
  #result-container-mob {
    display: block;
    height: 100%;
  }
  .result-retry-button{
    position: absolute;
    width: 85%;
    bottom: 15px;
    left: 0px;
    right: 0px;
    max-width: 100%;
    margin: auto;
  }
}

/* Show the desktop navbar on screens larger than 768px */
@media (min-width: 769px) {
  #takeSelfie-desk {
    display: block;
    height: 100%;
  }
  #result-container-desk {
    display: block;
    height: 100%;
  }
}

.mob-navbar {
  box-shadow: 0px -2px 14px 10px #0000000a;
  padding: 10px 30px 10px 30px;
  text-align: center;
  background: linear-gradient(297.51deg, #F59C1C 0%, #FF5E00 78.96%);
}

.mob-body{
  padding: 10px 20px;
}

.desk-navbar {
  display: grid;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid #dde0e9;
  height: 75px;
  padding-left: 20px;
  position: fixed;
  background: white;
  width: 100%;
  z-index: 9;
  background: linear-gradient(297.51deg, #F59C1C 0%, #FF5E00 78.96%);
}

.desk-body {
  display: flex;
  height: 100%;
  padding-top: 76px;
  justify-content: center;
}

.desk-footer{
  display: flex;
  height: 50px;
  border-top: 1px solid #dde0e9;
  align-items: center;
  justify-content: flex-start;
  padding-left: 20px;
  background: white;
  width: 100%;
  position: fixed;
  bottom: 0px;
  z-index: 9;
  justify-content: space-between;
}
.desk-footer-actions{
  padding-right: 50px;
}
.desk-footer-actions a{
  margin-right: 10px;
  text-decoration: none;
}
.mob-footer{
  border-top: 1px solid #dde0e9;
  background: white;
  width: 96%;
  position: fixed;
  bottom: 0px;
  z-index: 9;
  padding: 10px;
}
.desk-sidebar {
  background: #fbfbfb;
  width: 20%;
  padding: 10px;
  border-right: 1px solid #d7d7d7;
  height: 100%;
}
.desk-content {
    padding: 30px;
    text-align: left;
    width: 40%;
    height: fit-content;
}
.desk-action {
    padding: 30px;
    text-align: left;
    width: fit-content;
  }

.desk-page-title {
  display: flex;
  align-items: center;
  position: relative;
}
.desk-divider {
  background-color: var(--primary);
  width: 38.46px;
  height: 2px;
}

.desk-sidebar-text{
  margin-top: 10px;
  margin-bottom: 5px;
}
.desk-sidebar-not-selected-text{
    font-weight: 300;
    color: #D7D7D7;
}
.desk-sidebar-selected-text{
    color: var(--primary);
}

.desk-sidebar-container {
  display: flex;
  align-items: center;
  width: fit-content;
  margin: auto;
  margin-top: 50px; 
}

.desk-progress-bar-container {
  width: 10px;
  height: 80px; 
  background-color: var(--primary);
  border-radius: 5px;
  margin-right: 35px; 
  position: relative;
  overflow: hidden;
}

.desk-progress-bar-fill {
  position: absolute;
  bottom: 0; 
  width: 100%;
  height: 50%; 
  background-color: #D7D7D7;
}

.desk-sidebar-text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.desk-action-tips-card{
    box-shadow: 0px 8px 12px 0px #0000000F;
    padding: 25px;
    border-radius: 6px;
    width: 250px;
}
.start-camera {
  border-radius: 5px;
  background-color: var(--primary);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  max-width: 300px;
  cursor: pointer;
  height: 55px;
  z-index: 100;
  border: none;
  width: 100%;
  margin-top: 10px;
}
.mob-start-camera {
  border-radius: 5px;
  background-color: var(--primary);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  max-width: 90%;
  cursor: pointer;
  height: 55px;
  z-index: 100;
  border: none;
  width: 100%;
  margin-top: 10px;
}