/* -- Container -- */

.container {
  width: 100%;
  margin: 0px;
  padding: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e1e7f1;
  user-select: none;
}






* {
  -webkit-tap-highlight-color: transparent;
}

*::selection {
  background-color: #1884dc34;
}











/* -- Whole Body -- */

.whole-body {
  height: 100%;
  width: 100%;
  max-width: 450px;
  display: block;
  position: fixed;
  top: 0px;
  background-color: #f4f6fa;
  user-select: none;
}



.whole-body > main {
  display: flex;
  flex-direction: column;
  align-items: center;
}





.colorbar {
  width: 100%;
  height: 5px;
  display: flex;
  background: linear-gradient(84.06deg, #0088FF -28.62%, #A033FF 36.39%, #FF5C87 98.74%);
}

.actionbar {
  width: 100%;
  height: 65px;
  display: flex;
  align-items: center;
  background-color: #FFFFFF;
}


.logo {
  width: 28px;
  height: 28px;
  margin: 0px 16px 0px 22px;
}


.ab-details {
  width: calc(100% - 80px);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.ab-details > h1 {
  font-size: 16px;
  font-family: 'Tilt Warp';
  font-weight: 500;
  color: #22242d;
  margin: 0px 0px 0px 0px;

  background: linear-gradient(84.06deg, #00d0ff -28.62%, #335cff 36.39%, #8958eb 98.74%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  
  user-select: none;
}


.ab-details > h5 {
  font-size: 9px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #86898e;
  margin: 2px 0px 0px 0px;
  cursor: default;
}









/* -- Journey Animation -- */

.journey-animation {
  width: 200px;
  height: 200px;
  margin: 50px 0px 0px 0px;
}




.heading {
  font-size: 18px;
  font-family: 'Tilt Warp';
  font-weight: 500;
  color: #22242d;
  margin: 50px 0px 0px 20px;

  background: linear-gradient(84.06deg, #00d0ff -28.62%, #335cff 36.39%, #8958eb 98.74%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  
  user-select: none;
}






/* -- Start Logging Button -- */


.start-recording {
  width: 180px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0px 200px 0px;
  
  border-radius: 50px;
  background-color: #1A73E8;

  cursor: pointer;
  transition: 0.3s;
}

.start-recording:hover {
  transition: 0.3s;
  box-shadow: 0px 8px 20px #d6d6d694;
  transform: translateY(-1px);
}

.start-recording:active {
  transition: 0.3s;
  box-shadow: 0px 0px 20px #d6d6d694;
  transform: scale(0.95, 0.95);
}



.start-recording > h5 {
  font-size: 14px;
  font-family: 'Baloo 2';
  font-weight: 500;
  color: #ffffff;
  margin: 0px 0px 0px 0px;
  user-select: none;
}

















