.container {
  margin: 0;
  padding: 0;
}










* {
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

*::selection{
  background-color: #fc316438;
}







/*----------- Whole Body -----------*/



.whole-body {
  width: 100%;
  height: 100vh;
}














.ab-colorbar{
  height: 4px;
  width: 100%;
  position: relative;
  background-color: #ffffff;
  z-index: 2;
}



.page-loader{
  width: 100%;
  height: 100%;
  display: flex;
  background-color: #00DBDE;
  background-image: linear-gradient(90deg, #00DBDE 0%, #FC00FF 100%);
  transition: 1s;
}












/*----------- Action Bar -----------*/


.actionbar{
  width: 100%;
  min-width: 720px;
  height: 70px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  background-color: #ffffff;
  box-shadow: 0px 10px 20px #0000000e;
}






.ab-left{
  width: 40%;
  height: 100%;
  display: flex;
  align-items: center;
}

.logo{
  width: 50px;
  height: 50px;
  border-radius: 0px 12px 12px 0px;
  margin: 0px 20px 0px 0px;
}





.actionbar-details{
  width: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}




.ab-heading{
  font-size: 18px;
  font-family: 'Poppins';
  font-weight: 600;
  color: #4b4d53;
  margin: 0px 0px 0px 0px;
}


.ab-subheading{
  font-size: 14px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #9e9e9e;
  margin: 0px 0px 0px 0px;
}









.ab-middle{
  width: 20%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}




.ab-headingbox{
  width: 250px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;

  background-color: #f1f0f0;
  border-radius: 6px;
}



.ab-headingbox-text{
  font-size: 14px;
  font-family: 'Nunito';
  font-weight: 700;
  color: #20aedd;
  margin: 0px;
}

















.ab-right{
  width: 40%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
}



.profile{
  width: 80px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}


.profile-icon{
  width: 46px;
  height: 46px;
  display: flex;
  border-radius: 100px;
  cursor: pointer;
  transition: 0.2s;
}
.profile-icon:hover{
  transition: 0.2s;
  opacity: 0.9;
}






















.dm{
  width: 200px;
  height: 100px;
  display: flex;
  flex-direction: column;

  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 0px 8px #f9f9f9;

  z-index: 3;
  position: fixed;
  right: -200px;
  top: 80px;

  transition: 0.3s;
}





.dm-logout, .dm-profile{
  width: 100%;
  height: 36px;
  display: flex;
  align-items: center;
  margin-top: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.dm-logout{
  margin-top: 0px;
}
.dm-logout:hover, .dm-profile:hover{
  transition: 0.3s;
  background-color: #7e57c23b;
}



.dm-logout-text, .dm-profile-text{
  font-size: 14px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #4b4d53;
  margin: 0px 0px 0px 20px;
  transition: 0.3s;
}





































/*---------- Whole Body Main Content ----------*/



.whole-body-content{
  width: 100%;
  height: calc(100vh - 76px);
  display: flex;
}






















/*---------- Drawer ----------*/


.drawer{
  width: 300px;
  height: 100%;
  display: flex;
  flex-direction: column;
  z-index: 0;
  background-color: #ffffff;
}







.drawer-tab1{
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  margin-top: 30px;
  background-color: #F4F8FB;
  cursor: pointer;
  transition: 0.5s;
}


.drawer-tab1-bar{
  width: 5px;
  height: 100%;
  display: flex;
  background-color: #7e57c2;
  transition: 0.5s;
}


.drawer-tab1-icon{
  width: 30px;
  height: 30px;
  margin: 0px 20px 0px 20px;
  transition: 0.5s;
}


.drawer-tab1-text{
  font-size: 18px;
  font-family: 'Baloo 2';
  font-weight: 500;
  color: #7e57c2;
}


.dt1-ripple-main{
  width: 295px;
  height: 50px;
  display: flex;
  margin-left: 5px;
  position: fixed;
  overflow: hidden;
}


.dt1-ripple{
  width: 100%;
  height: 100%;
  display: flex;
}
























.drawer-tab2{
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  margin-top: 0px;
  background-color: #ffffff;
  cursor: pointer;
  transition: 0.5s;
}


.drawer-tab2-bar{
  width: 0px;
  height: 100%;
  display: flex;
  background-color: #7e57c2;
  transition: 0.5s;
}


.drawer-tab2-icon{
  width: 30px;
  height: 30px;
  margin: 0px 20px 0px 20px;
  transition: 0.5s;
}


.drawer-tab2-text{
  font-size: 18px;
  font-family: 'Baloo 2';
  font-weight: 500;
  color: #9e9e9e;
}


.dt2-ripple-main{
  width: 295px;
  height: 50px;
  display: flex;
  margin-left: 5px;
  position: fixed;
  overflow: hidden;
}


.dt2-ripple{
  width: 100%;
  height: 100%;
  display: flex;
}



































.drawer-tab3{
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  margin-top: 0px;
  background-color: #ffffff;
  cursor: pointer;
  transition: 0.5s;
}


.drawer-tab3-bar{
  width: 0px;
  height: 100%;
  display: flex;
  background-color: #7e57c2;
  transition: 0.5s;
}


.drawer-tab3-icon{
  width: 30px;
  height: 30px;
  margin: 0px 20px 0px 20px;
  transition: 0.5s;
}


.drawer-tab3-text{
  font-size: 18px;
  font-family: 'Baloo 2';
  font-weight: 500;
  color: #9e9e9e;
}


.dt3-ripple-main{
  width: 295px;
  height: 50px;
  display: flex;
  margin-left: 5px;
  position: fixed;
  overflow: hidden;
}


.dt3-ripple{
  width: 100%;
  height: 100%;
  display: flex;
}





































.drawer-tab4{
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  margin-top: 0px;
  background-color: #ffffff;
  cursor: pointer;
  transition: 0.5s;
}


.drawer-tab4-bar{
  width: 0px;
  height: 100%;
  display: flex;
  background-color: #7e57c2;
  transition: 0.5s;
}


.drawer-tab4-icon{
  width: 30px;
  height: 30px;
  margin: 0px 20px 0px 20px;
  transition: 0.5s;
}


.drawer-tab4-text{
  font-size: 18px;
  font-family: 'Baloo 2';
  font-weight: 500;
  color: #9e9e9e;
}


.dt4-ripple-main{
  width: 295px;
  height: 50px;
  display: flex;
  margin-left: 5px;
  position: fixed;
  overflow: hidden;
}


.dt4-ripple{
  width: 100%;
  height: 100%;
  display: flex;
}

























.dt1-ripple > span, .dt2-ripple > span, .dt3-ripple > span, .dt4-ripple > span {
  position: absolute;
  background: #57595c59;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  animation: ripple-animation 1s linear infinite;
  cursor: text;
}






@keyframes ripple-animation {
  0% {
    width: 0px;
    height: 0px;
    opacity: 0.5;
  }
  100% {
    width: 1000px;
    height: 1000px;
    opacity: 0;
  }
}































/*---------- All Screen Sections ----------*/


.screen-section{
  width: calc(100% - 300px);
  height: 100%;
  display: flex;
  background-color: #EDF1F7;
}


























/*---------- Home Screen ----------*/


.home-screen{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}












.hs-heading1{
  font-size: 24px;
  font-family: 'Poppins';
  color: #7e57c2;
  margin: 50px 0px 0px 50px;
}












.hs-card-section{
  width: 100%;
  height: 150px;
  display: flex;
}






.hs-card{
  width: 200px;
  height: 80px;
  display: flex;
  flex-direction: column;
  margin: 30px 0px 0px 50px;

  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;

  cursor: pointer;
  transition: 0.3s;
}

.hs-card:hover{
  transition: 0.3s;
  background-color: #b495e541;
}



.hsc-title{
  font-size: 14px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #4b4d53;
  margin: 16px 0px 0px 16px;
}



.hsc-amount{
  font-size: 14px;
  font-family: 'Roboto';
  font-weight: 500;
  color: #96989e;
  margin: 8px 0px 0px 16px;
}









.balance-loader, .income-loader, .expense-loader{
  width: 60px;
  height: 20px;
  display: flex;
  margin: 8px 0px 0px 16px;
  border-radius: 3px;
  animation: skloader 0.3s linear infinite alternate;
}














.hs-chart-section{
  width: 100%;
  height: auto;
  display: flex;
}









.hs-chart1{
  width: 400px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0px 0px 50px;
  
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;

  overflow: hidden;
}











.hs-chart2{
  width: 400px;
  height: 220px;
  display: flex;
  flex-direction: column;
  margin: 30px 0px 0px 50px;
  
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;

  overflow: hidden;
}










.hsc2-heading{
  font-size: 18px;
  font-family: 'Baloo 2';
  font-weight: 500;
  color: #20aedd;
  margin: 20px 0px 0px 20px;
}








.hsc2-tv{
  width: 100%;
  height: auto;
  display: flex;
  margin-top: 10px;
}






.hsc2-tvr{
  width: 150px;
  height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 20px;

  background-color: #683ab727;
  border-radius: 10px;

  cursor: pointer;
  transition: 0.2s;
}
.hsc2-tvr:hover{
  transition: 0.2s;
  background-color: #683ab73b;
}
.hsc2-t1{
  font-size: 14px;
  font-family: 'Nunito';
  font-weight: 700;
  color: #673AB7;
  margin: 0px 0px 0px 16px;
}
.hsc2-tr{
  font-size: 14px;
  font-family: 'Roboto';
  font-weight: 500;
  color: #683ab78f;
  margin: 4px 0px 0px 16px;
}
.hsc2-loader1{
  width: 50px;
  height: 14px;
  border-radius: 3px;
  margin: 4px 0px 0px 16px;
  animation: skloader1 0.3s linear infinite alternate;
}
@keyframes skloader1 {
  0% {
    background-color: #683ab771;
  }
  100% {
    background-color: #683ab750;
  }
}












.hsc2-tvs{
  width: 150px;
  height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 20px;

  background-color: #e74d3c2f;
  border-radius: 10px;

  cursor: pointer;
  transition: 0.2s;
}
.hsc2-tvs:hover{
  transition: 0.2s;
  background-color: #e74d3c3d;
}
.hsc2-t2{
  font-size: 14px;
  font-family: 'Nunito';
  font-weight: 700;
  color: #e74c3c;
  margin: 0px 0px 0px 16px;
}
.hsc2-ts{
  font-size: 14px;
  font-family: 'Roboto';
  font-weight: 500;
  color: #e74d3cb0;
  margin: 4px 0px 0px 16px;
}
.hsc2-loader2{
  width: 50px;
  height: 14px;
  border-radius: 3px;
  margin: 4px 0px 0px 16px;
  animation: skloader2 0.3s linear infinite alternate;
}
@keyframes skloader2 {
  0% {
    background-color: #e74d3c70;
  }
  100% {
    background-color: #e74d3c50;
  }
}


















.hsc2-cv{
  width: 100%;
  height: auto;
  display: flex;
  margin-top: 16px;
}









.hsc2-cvr{
  width: 150px;
  height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 20px;

  background-color: #0f94462f;
  border-radius: 10px;

  cursor: pointer;
  transition: 0.2s;
}
.hsc2-cvr:hover{
  transition: 0.2s;
  background-color: #0f944644;
}
.hsc2-t3{
  font-size: 14px;
  font-family: 'Nunito';
  font-weight: 700;
  color: #27ae60;
  margin: 0px 0px 0px 16px;
}
.hsc2-cr{
  font-size: 14px;
  font-family: 'Roboto';
  font-weight: 500;
  color: #27ae5fb2;
  margin: 4px 0px 0px 16px;
}
.hsc2-loader3{
  width: 50px;
  height: 14px;
  border-radius: 3px;
  margin: 4px 0px 0px 16px;
  animation: skloader3 0.3s linear infinite alternate;
}
@keyframes skloader3 {
  0% {
    background-color: #0f944670;
  }
  100% {
    background-color: #0f944646;
  }
}












.hsc2-cvs{
  width: 150px;
  height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 20px;

  background-color: #3498db3f;
  border-radius: 10px;

  cursor: pointer;
  transition: 0.2s;
}
.hsc2-cvs:hover{
  transition: 0.2s;
  background-color: #3498db54;
}
.hsc2-t4{
  font-size: 14px;
  font-family: 'Nunito';
  font-weight: 700;
  color: #3498db;
  margin: 0px 0px 0px 16px;
}
.hsc2-cs{
  font-size: 14px;
  font-family: 'Roboto';
  font-weight: 500;
  color: #3498dbb9;
  margin: 4px 0px 0px 16px;
}
.hsc2-loader4{
  width: 50px;
  height: 14px;
  border-radius: 3px;
  margin: 4px 0px 0px 16px;
  animation: skloader4 0.3s linear infinite alternate;
}
@keyframes skloader4 {
  0% {
    background-color: #3498db75;
  }
  100% {
    background-color: #3498db56;
  }
}
































/*---------- History Screen ----------*/


.history-screen{
  width: 100%;
  height: 100%;
  display: none;
  flex-direction: column;
}






.history-screen-main{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}







.hi-heading1{
  font-size: 22px;
  font-family: 'Poppins';
  font-weight: 700;
  color: #383333;
  margin: 50px 0px 0px 50px;
}



.hih1-loader{
  width: 45%;
  height: 34px;
  display: flex;
  margin-left: 50px;
  border-radius: 3px;
  animation: skloader 0.5s linear infinite alternate;
}




@keyframes skloader {
  0% {
    background-color: #e0e3e6;
  }
  100% {
    background-color: #c2c6ca;
  }
}






































/*---------- List Header Section --------*/



.hi-apps-list-header{
  width: calc(100% - 100px);
  height: 80px;
  display: flex;
  align-items: center;
  margin: 40px 0px 0px 50px;
  background-color: #ffffff;
  border-radius: 20px 20px 0px 0px;
}




.create-new{
  width: 200px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;

  background-color: #7e57c2;
  border: 0px;
  outline: none;
  border-radius: 100px;
  box-shadow: 0px 8px 12px #e6e3e3;

  font-size: 14px;
  font-family: 'Signika';
  font-weight: 500;
  color: #ffffff;

  cursor: pointer;
  transition: 0.2s;
}

.create-new:hover{
  transition: 0.2s;
  background-color: #6c49a8;
}




.hi-search-box{
  width: 300px;
  height: 36px;
  margin-left: 20px;
  padding: 0px 10px 0px 16px;

  background-color: #20aedd2d;
  border-radius: 20px;
  border: 0px;
  outline: none;

  font-size: 12px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #20aedd;
}




























/*--------- List Horizontal Scroll View ---------*/

.hi-horizontal-scroll-main{
  width: calc(100% - 100px);
  height: auto;
  max-height: calc(100% - 220px);
  display: flex;
  flex-direction: column;
  margin-left: 50px;
  overflow-x: scroll;
}


.hi-horizontal-scroll-main::-webkit-scrollbar {
  height: 10px;
}

.hi-horizontal-scroll-main::-webkit-scrollbar-track {
  background-color: transparent;
}

.hi-horizontal-scroll-main::-webkit-scrollbar-thumb {
  background-color: #d6d6d6;
  border-radius: 0px 0px 20px 20px;
}

.hi-horizontal-scroll-main::-webkit-scrollbar-thumb:active {
  background-color: #b4b4b4;
}





.hi-horizontal-scroll{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
























/*--------- List Sub Header ---------*/




.hi-apps-list-subheader{
  width: calc(1136px);
  height: 40px;
  display: flex;
  align-items: center;
  margin: 2px 0px 0px 0px;
  background-color: #ffffff;
}









/*------ All headings ------*/



.hsa-h1{
  width: 120px;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 12px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #9e9e9e;
  padding-left: 20px;
}




.hsa-h2{
  width: 200px;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 12px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #9e9e9e;
  padding-left: 20px;
}




.hsa-h3{
  width: 165px;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 12px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #9e9e9e;
  padding-left: 20px;
}




.hsa-h4{
  width: 150px;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 12px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #9e9e9e;
  padding-left: 20px;
}




.hsa-h5{
  width: 150px;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 12px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #9e9e9e;
  padding-left: 20px;
}




.hsa-h6{
  width: 100px;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 12px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #9e9e9e;
  padding-left: 20px;
}





.hsa-h7{
  width: 130px;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 12px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #9e9e9e;
  padding-left: 20px;
}
































/*--------- Main Vertical List Scroll Section ---------*/




.hi-apps-list-section{
  width: calc(1136px);
  height: auto;
  display: flex;
  flex-direction: column;
  margin: 2px 0px 0px 0px;
  overflow-y: scroll;
}


.hi-apps-list-section::-webkit-scrollbar {
  width: 0px;
}

.hi-apps-list-section::-webkit-scrollbar-track {
  background-color: transparent;
}

.hi-apps-list-section::-webkit-scrollbar-thumb {
  background-color: #d6d6d6;
}

.hi-apps-list-section::-webkit-scrollbar-thumb:active {
  background-color: #b4b4b4;
}




























/*-------- App List Item --------*/



.hs-list-item{
  width: 100%;
  height: 50px;
  display: flex;
  background-color: #ffffff;
  margin-top: 2px;
  transition: 0.3s;
}









.hsli-tid{
  width: 140px;
  height: 100%;
  display: flex;
  align-items: center;
}


.hsli-tid-text{
  font-size: 14px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #383333;
  margin-left: 20px;
}









.hsli-name{
  width: 218px;
  height: 100%;
  display: flex;
  align-items: center;
}


.hsli-name-text{
  font-size: 14px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #383333;
  margin-left: 20px;
  cursor: pointer;
  transition: 0.3s;
}
.hsli-name-text:hover{
  transition: 0.3s;
  text-decoration: underline;
}









.hsli-amount{
  width: 184px;
  height: 100%;
  display: flex;
  align-items: center;
}


.hsli-amount-text{
  font-size: 14px;
  font-family: 'Roboto';
  font-weight: 500;
  color: #383333;
  margin-left: 20px;
}









.hsli-date{
  width: 170px;
  height: 100%;
  display: flex;
  align-items: center;
}


.hsli-date-text{
  font-size: 14px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #383333;
  margin-left: 20px;
}









.hsli-time{
  width: 168px;
  height: 100%;
  display: flex;
  align-items: center;
}


.hsli-time-text{
  font-size: 14px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #383333;
  margin-left: 20px;
  cursor: pointer;
  transition: 0.3s;
}









.hsli-status{
  width: 120px;
  height: 100%;
  display: flex;
  align-items: center;
}


.hsli-status-text{
  width: 70px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 25px;

  background-color: #d85f51;
  border-radius: 100px;
  box-shadow: 0px 8px 12px #e9e9e9;

  font-size: 10px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #ffffff;

  transition: 0.5s;
}









.hsli-done{
  width: 150px;
  height: 100%;
  display: flex;
  align-items: center;
}







.hsli-done-btn{
  width: 90px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 24px;

  background-color: #ffffff;
  border: 2px solid yellowgreen;
  border-radius: 100px;

  cursor: pointer;
  transition: 0.3s;
}
.hsli-done-btn:hover{
  transition: 0.3s;
  background-color: yellowgreen;
  box-shadow: 0px 8px 12px #e9e9e9;
}


.hsli-done-btn-text{
  font-size: 10px;
  font-family: 'Poppins';
  font-weight: 500;
  color: yellowgreen;
  transition: 0.3s;
}

.hsli-done-btn:hover > .hsli-done-btn-text{
  transition: 0.3s;
  color: #ffffff;
}










.hsli-done-text{
  font-size: 14px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #383333;
  margin-left: 40px;
}































.nt-screen{
  width: calc(100% - 300px);
  height: calc(100% - 70px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3;
  position: fixed;
  background-color: #00000081;
  transition: 0.5s;
}








.nt-dialog{
  width: 500px;
  height: 90%;
  display: flex;
  flex-direction: column;

  background-color: #ffffff;
  border-radius: 20px;
}





.nt-head-section{
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
}


.nt-heading{
  font-size: 20px;
  font-family: 'Poppins';
  font-weight: 600;
  color: #7e57c2;
  margin: 0px 0px 0px 30px;
}


.nt-close{
  width: 30px;
  height: 30px;
  fill: #4b4d53;
  margin-left: 170px;
  cursor: pointer;
}






.nt-i1{
  font-size: 15px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #4b4d53;
  margin: 0px 0px 0px 30px;
}



.nt-menu{
  width: 230px;
  display: flex;
  margin: 10px 0px 0px 30px;
  padding: 12px;
  
  background-color: #ffffff;
  border: 2px solid #eeeeee;
  border-radius: 12px;
  outline: none;

  font-size: 14px;
  font-family: 'Nunito';
  font-weight: 700;
  color: #20aedd;

  cursor: pointer;
}














.nt-i2{
  font-size: 15px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #4b4d53;
  margin: 30px 0px 0px 30px;
}





.nt-name{
  width: 200px;
  display: flex;
  margin: 10px 0px 0px 30px;
  padding: 12px;
  
  background-color: #ffffff;
  border: 2px solid #eeeeee;
  border-radius: 12px;
  outline: none;

  font-size: 14px;
  font-family: 'Nunito';
  font-weight: 700;
  color: #6c49a8;
}








.nt-i3{
  font-size: 15px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #4b4d53;
  margin: 30px 0px 0px 30px;
}





.nt-amount-section{
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
}


.nt-rupee{
  font-size: 14px;
  font-family: 'Nunito';
  font-weight: 700;
  color: #6c49a8;
  margin: 10px 0px 0px -210px;
}


.nt-amount{
  width: 182px;
  display: flex;
  margin: 10px 0px 0px 30px;
  padding: 12px 12px 12px 30px;
  
  background-color: #ffffff;
  border: 2px solid #eeeeee;
  border-radius: 12px;
  outline: none;

  font-size: 14px;
  font-family: 'Nunito';
  font-weight: 700;
  color: #6c49a8;
}








.nt-create{
  width: 150px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin-top: 50px;

  background-color: #ffffff;
  border: 2px solid #7e57c2;
  border-radius: 100px;
  outline: none;

  font-size: 16px;
  font-family: 'Baloo 2';
  font-weight: 500;
  color: #7e57c2;

  cursor: pointer;
  transition: 0.3s;
}


.nt-create:hover{
  transition: 0.3s;
  box-shadow: 0px 16px 22px #dddddd;
  background-color: #7e57c2;
  color: #ffffff;
}











































/*---------- Loader Screen -----------*/


.loader-screen{
  width: 100%;
  height: 100vh;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: #000000de;
  position: fixed;
  z-index: 4;
  transition: 0.5s;
}







/*-------- Custom Loader ---------*/

.loader {
  position: relative;
  margin: 0 auto;
  width: 40px;
}
.loader:before {
  content: '';
  display: block;
  padding-top: 100%;
}

.circular {
  animation: rotate 2s linear infinite;
  height: 100%;
  transform-origin: center center;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.path {
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
  stroke-linecap: round;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}

@keyframes color {
  100%,
  0% {
    stroke: #673AB7;
  }
  40% {
    stroke: #673AB7;
  }
  66% {
    stroke: #673AB7;
  }
  80%,
  90% {
    stroke: #673AB7;
  }
}





































/*----------------- Custom Snackbar -----------------*/



.snackbar {
  min-height: 40px;
  width: 375px;
  display: flex;
  align-items: center;
  background-color: #383333;
  box-shadow: 0px 0px 10px #0000007c;
  border-radius: 5px;
  left: 30px;
  bottom: -50px;
  z-index: 10;
  position: fixed;
  visibility: hidden;
}

.snackbar-icon-section{
  width: 10%;
  display: flex;
}
.snackbar-icon{
  height: 20px;
  width: 20px;
  margin-left: 16px;
  margin-top: 12px;
  margin-bottom: 12px;
  display: flex;
}

.snackbar-text-section{
  width: inherit;
}
.snackbar-text{
  display: flex;
  font-family: 'Roboto';
  font-size: 14px;
  color: #ffffff;
  font-weight: 400;
  margin-top: 16px;
  margin-bottom: 16px;
  margin-left: 16px;
  user-select: none;
}

.snackbar-button-section{
  display: flex;
  justify-content: flex-end;
}
.snackbar-button{
  min-width: 60px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  background-color: #383333;
  outline: none;
  border: none;
  border-radius: 4px;
  font-family: 'Roboto';
  font-size: 12px;
  color: #ffffff;
  font-weight: 400;
  cursor: pointer;
  user-select: none;
  transition: 0.3s;
}


















