body {
  margin: 0px;
  padding: 0px;
  background-color: #EDF1F7;
}





*::selection {
  background-color: #fc51844f;
}

* {
  -webkit-tap-highlight-color: transparent;
}







/* -- Whole Body -- */

.whole-body {
  width: 100%;
  height: calc(100vh - 65px);
  display: flex;
  flex-direction: column;
  background-color: #EDF1F7;
}





.actionbar {
  width: 100%;
  height: 75px;
  display: flex;
  align-items: center;
  background-color: #ffffff;
  box-shadow: 0px 8px 20px #00000011;
  user-select: none;
}








.ab-logo {
  width: 40px;
  height: 40px;
  margin: 0px 20px 0px 20px;
}





.ab-details {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.ab-details > a {
  text-decoration: none;
}


.ab-details > a > h1 {
  display: flex;
  font-size: 12px;
  font-family: "Poppins";
  font-weight: 600;
  background: -webkit-linear-gradient(220deg,rgba(255, 159, 161, 1) 0%,rgba(238, 148, 246, 1) 50%,rgba(153, 179, 254, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  
  margin: 0px 0px 0px 0px;
  cursor: pointer;
  transition: 0.3s;
}





.ab-details > h4 {
  font-size: 10px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #22292f;
  margin: 4px 0px 0px 0px;
  cursor: default;
  transition: 0.3s;
}

















/* -- Main Content -- */


.main-content {
  width: 100%;
  height: calc(100% - 75px);
  display: flex;
  flex-direction: column;
  background-color: #EDF1F7;
}





h1 {
  font-size: 18px;
  font-family: 'Poppins';
  font-weight: 700;
  color: #22292f;
  margin: 30px 0px 30px 30px;
}









.tool {
  width: calc(100% - 60px);
  height: 40px;
  display: flex;
  align-items: center;
  margin: 0px 0px 0px 30px;

  border-radius: 6px;
  border: 2px solid #397DFF;
  background-color: #ffffff;
  box-shadow: 0px 0px 20px #e7e7e7;
  
  transition: 0.3s;
  cursor: pointer;
  user-select: none;
}


.tool:hover {
  transition: 0.3s;
  background-color: #397DFF;
}

.tool:hover  h5 {
  transition: 0.3s;
  color: #ffffff;
}


.tool:active {
  transition: 0.2s;
  transform: scale(0.95);
}





.tool > h5 {
  width: calc(100% - 50px);
  font-size: 14px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #397DFF;
  margin: 0px 0px 0px 20px;
}






.tool-icon {
  width: 12px;
  height: 12px;
}





















