.container {
  margin: 0;
  padding: 0;
}










*::selection {
  background-color: #fc51844f;
}

*::selection {
  background-color: #fc316438;
}







/*----------- Whole Body -----------*/



.whole-body {
  width: 100%;
  height: 100vh;
}








kbd {
  width: min-content;
  background-color: #eee;
  border-radius: 3px;
  border: 1px solid #b4b4b4;
  box-shadow: 0 1px 1px rgba(0, 0, 0, .2), 0 2px 0 0 rgba(255, 255, 255, .7) inset;
  color: #333;
  display: inline-block;
  font-size: .85em;
  font-weight: 700;
  line-height: 1;
  padding: 2px 4px;
  white-space: nowrap;
  margin: 0px 0px 0px 0px;
  user-select: none;
}












.ab-colorbar {
  height: 6px;
  width: 100%;
  position: relative;
  z-index: 2;
  background: linear-gradient(100deg, rgba(255,159,161,1) 0%, rgba(238,148,246,1) 50%, rgba(153,179,254,1) 100%);
}







.loading-bar {
  width: 0%;
  height: 6px;
  display: flex;
  background: linear-gradient(100deg, rgba(255,159,161,1) 0%, rgba(238,148,246,1) 50%, rgba(153,179,254,1) 100%);
  transition: 0.5s;
}










/*----------- Action Bar -----------*/


.actionbar {
  width: 100%;
  min-width: 720px;
  height: 75px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  background-color: #ffffff;
  box-shadow: 0px 10px 20px #0000000e;
}













.ab-logo {
  width: 40px;
  height: 34px;
  margin: 0px 20px 0px 20px;
}














.ab-details {
  width: calc(100% - 276px);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: default;
}




.ab-details > h1 {
  font-size: 18px;
  font-family: 'Poppins';
  font-weight: 600;
  color: #22292f;
  margin: 0px 0px 0px 0px;
}


.ab-details > h5 {
  font-size: 13px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #22292f;
  margin: 0px 0px 0px 0px;
}











.new-action {
  width: 180px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px 16px 0px 0px;

  border-radius: 40px;
  border: 2px solid #1A73E8;
  background-color: #ffffff;

  font-size: 14px;
  font-family: 'Poppins';
  color: #1A73E8;

  user-select: none;
  cursor: pointer;
  transition: 0.2s;
}

.new-action:hover {
  transition: 0.2s;
  background-color: #1A73E8;
  transform: scale(1.1, 1.1);
}

.new-action:hover > h5 {
  color: #ffffff;
}

.new-action:active {
  transition: 0.2s;
  background-color: #1A73E8;
  transform: scale(0.95, 0.95);
}



.new-action > h5 {
  font-weight: 400;
}













.ab-profile {
  width: 80px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}







.ab-profile-box {
  width: 50px;
  height: 50px;
  display: flex;
  border-radius: 100px;
  background-color: #d7dde4;
}



.ab-profile-icon {
  width: 50px;
  height: 50px;
  border-radius: 100px;
  background-image: url('../images/avatar.png');
  background-size: 50px 50px;
  transition: 0.5s;
}
















.ab-profile-ripple {
  width: 80px;
  height: 70px;
  display: flex;
  position: fixed;
}





.abp-ripple {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}




.abp-ripple > span {
  position: absolute;
  background: #5f6368;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  animation: abp-ripple-animation 1s linear infinite;
  cursor: text;
}






@keyframes abp-ripple-animation {
  0% {
    width: 0px;
    height: 0px;
    opacity: 0.5;
  }
  100% {
    width: 1000px;
    height: 1000px;
    opacity: 0;
  }
}










































/*---------- Whole Body Main Content ----------*/



.whole-body-content {
  width: 100%;
  height: calc(100vh - 83px);
  display: flex;
}






















/*---------- Drawer ----------*/


.drawer {
  width: 250px;
  height: 100%;
  display: flex;
  flex-direction: column;
  z-index: 0;
  /* #F9F9F9 - #e0e0e0 */
  background-color: #ffffff;
  border-right: 1px solid #e0e0e0;
}







.drawer-tab {
  width: 100%;
  height: 45px;
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border-radius: 0px 50px 50px 0px;
  cursor: pointer;
  transition: 0.5s;
}

#dt1-main {
  margin-top: 24px;
}




.drawer-tab-bar {
  width: 0px;
  height: 100%;
  display: flex;
  background-color: #7e57c2;
  transition: 0.5s;
}




.drawer-tab-icon {
  width: 24px;
  height: 24px;
  margin: 0px 20px 0px 16px;
  fill: #5f6368;
  transition: 0.5s;
}




.drawer-tab-text {
  font-size: 13px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #5f6368;
  user-select: none;
  transition: 0.5s;
}






.dt-ripple-main {
  width: 250px;
  height: 45px;
  display: flex;
  position: fixed;
  border-radius: 0px 50px 50px 0px;
  overflow: hidden;
}


.dt-ripple {
  width: 100%;
  height: 100%;
  display: flex;
  transition: 0.5s;
}

.dt-ripple:hover {
  transition: 0.5s;
  background-color: #d1d1d13b;
}











.dt-ripple > span {
  position: absolute;
  background: #57595c8f;
  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;
  }
}









.dv1-tab {
  width: calc(100% + 1px);
  height: 0.5px;
  display: flex;
  margin: 16px 0px 16px 0px;
  background-color: #DADCE0;
}




















.copyright {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  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;
  text-align: center;
  cursor: default;
}





























/*---------- All Screen Sections ----------*/


.screen-section {
  width: calc(100% - 250px);
  height: 100%;
  display: flex;
  background-color: #ffffff;
}


























/*---------- Home Screen 1 ----------*/


.home-screen {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
}




.home-screen-main {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}







.hs-heading1 {
  width: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-family: 'Poppins';
  font-weight: 700;
  color: #313337;
  margin: 70px 0px 0px 0px;
  cursor: default;
  transition: 0.2s;
}



.hsh1-loader {
  width: 170px;
  height: 40px;
  display: flex;
  align-self: center;
  margin: 70px 0px 0px 0px;
  border-radius: 3px;
  animation: skloader 0.5s linear infinite alternate;
}




@keyframes skloader {
  0% {
    background-color: #e0e3e6;
  }
  100% {
    background-color: #c2c6ca;
  }
}
























.searchbar {
  width: 50%;
  height: 60px;
  display: flex;
  align-items: center;
  align-self: center;
  margin: 30px 0px 0px 0px;

  border-radius: 10px;
  border: 0px solid #313337;
  background-color: #f3f3f8;
  transition: 0.1s;
}




.search-icon {
  width: 20px;
  height: 20px;
  margin: 0px 20px 0px 20px;
  user-select: none;
  transition: 0.2s;
}




.search {
  width: calc(100% - 80px);
  height: 100%;
  display: flex;
  align-items: center;
  
  font-size: 20px;
  font-family: 'Poppins';
  font-weight: 400;
  color: #22292f;

  outline: none;
  border: none;
  background-color: transparent;
  transition: 0.2s;
}































.hs-tabs-section  {
  width: 850px;
  height: 120px;
  display: flex;
  align-self: center;
  flex-direction: column;
  margin: 0px 0px 0px 0px;
}



.hs-tabs-area {
  width: 100%;
  height: 65px;
  display: flex;
  align-items: flex-end;
}


.hs-tabs-area > h5:hover {
  color: #1A73E8;
  transform: scale(1.03, 1.03);
  transition: 0.2s;
}


.hs-tabs-area > h5:active {
  transform: scale(0.98, 0.98);
  transition: 0.2s;
}





.hs-filter-tab {
  font-size: 16px;
  font-family: 'Poppins';
  font-weight: 600;
  color: #999999;
  margin: 0px 0px 0px 40px;
  cursor: pointer;
  user-select: none;
  transition: 0.2s;
}




#hs-tab-all {
  color: #1A73E8;
  margin: 0px 0px 0px 15px;
}






.hs-tabs-bar {
  width: 50px;
  height: 6px;
  display: flex;
  margin: 5px 0px 0px 0px;

  border-radius: 10px;
  background-color: #1A73E8;
  transition: 0.1s;
}















.hs-change-view {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px 0px -16px 240px;

  border-radius: 100px;
  background-color: #ffffff;
  
  cursor: pointer;
  transition: 0.3s;
}

.hs-change-view:hover {
  transition: 0.3s;
  background-color: #eeeeee;
}

.hs-change-view:active {
  transition: 0.3s;
  background-color: #e7e6e6;
}

.hs-change-view:active > img {
  transition: 0.3s;
  transform: scale(0.9, 0.9);
}



.hs-change-view > img {
  width: 24px;
  height: 24px;
  -webkit-user-drag: none;
  user-select: none;
}























/* -- Actions List -- */




.hs-list {
  width: 90%;
  height: auto;
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(4, 220px);
  grid-auto-rows: 140px;
  margin: 0px 0px 0px 5%;
}







.hs-list-item {
  width: 190px;
  height: 120px;
  display: flex;
  flex-direction: column;

  border-radius: 8px;
  box-shadow: 0px 0px 16px #0000001b;
  background-color: #ffffff;
  cursor: default;
}


.hs-list-item:hover > div > .hsli-delete {
  opacity: 1;
}








.hsli-top {
  width: 100%;
  height: 60px;
  display: flex;
}


.hsli-icon {
  width: 30px;
  height: 30px;
  margin: 20px 0px 0px 20px;
}


.hsli-delete {
  width: 30px;
  height: 30px;
  display: flex;
  margin: 10px 0px 0px 100px;

  border-radius: 100px;
  background-color: #ffffff;

  opacity: 0;

  background-image: url(../images/trash.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;

  cursor: pointer;
  transition: 0.2s;
}
.hsli-delete:hover {
  background-color: #efefef;
}
.hsli-delete:active {
  transform: scale(0.9, 0.9);
}



.hs-list-item > h5 {
  font-size: 12px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #22292f;
  margin: 6px 0px 0px 20px;
}


.hs-list-item > h6 {
  font-size: 12px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #959a9f;
  margin: 0px 0px 0px 20px;
}








































.hs-list-item-new {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;

  border-radius: 8px;
  box-shadow: 0px 0px 16px #0000001b;
  background-color: #ffffff;
  cursor: default;
}


.hs-list-item-new:hover > .hsli-delete-new {
  opacity: 1;
}








.hsli-top-new {
  width: 80px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.hsli-icon-new {
  width: 30px;
  height: 30px;
  margin: 0px 0px 0px 0px;
}


.hsli-delete-new {
  width: 30px;
  height: 30px;
  display: flex;
  margin: 0px 0px 0px 100px;

  border-radius: 100px;
  background-color: #ffffff;

  opacity: 0;

  background-image: url(../images/trash.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;

  cursor: pointer;
  transition: 0.2s;
}
.hsli-delete-new:hover {
  background-color: #efefef;
}
.hsli-delete-new:active {
  transform: scale(0.9, 0.9);
}



.hs-list-item-new > h5 {
  font-size: 14px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #aeb1b5;
  margin: 0px 0px 0px 0px;
}


.hs-list-item-new > h6 {
  width: 30%;
  font-size: 14px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #22292f;
  margin: 0px 0px 0px 6px;
}






.hsli-then {
  font-size: 14px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #aeb1b5;
  margin: 0px 0px 0px 0px;
}








.hsli-then-action {
  width: 20%;
  height: 100%;
  display: flex;
  align-items: center;
  margin: 0px 0px 0px 10px;
}




.hsli-then-text {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #22292f;
  margin: 0px 0px 0px -4px;
  white-space: nowrap;
  overflow-x: scroll;
}

.hsli-then-text::-webkit-scrollbar {
  width: 0px;
  display: none;
  background: #fafafa;
}




.hsli-then-text > h3 {
  font-size: 12px;
  font-weight: 500;
  margin: 0px 6px 0px 6px;
}





























.no-actions-found {
  display: none;
  align-self: center;
  font-size: 18px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #313337;
  cursor: default;
  margin: 16px 0px 0px 0px;
}




























/*---------- Api Access Screen 2 ----------*/


.api-screen {
  width: 100%;
  height: 100%;
  display: none;
  flex-direction: column;
  overflow-y: scroll;
}











.as-heading {
  font-size: 28px;
  font-family: 'Poppins';
  font-weight: 700;
  color: #313337;
  margin: 70px 0px 0px 70px;
  cursor: default;
}




.as-subheading {
  font-size: 16px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #7e8289;
  margin: 10px 0px 0px 70px;
  cursor: default;
}

















/* -- GET Request -- */



.as-get-request {
  width: 660px;
  height: 30px;
  display: flex;
  align-items: center;
  margin: 26px 0px 0px 70px;

  border-radius: 4px;
  border: 1px solid #08CA73;
  background-color: #E6FAF1;
}



.as-gr-text {
  width: 50px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 2px 0px 0px 2px;
  background-color: #08CA73;

  font-size: 12px;
  font-family: 'Roboto';
  font-weight: 500;
  color: #ffffff;

  user-select: none;
}


.as-gr-url {
  font-size: 12px;
  font-family: 'Roboto';
  font-weight: 400;
  color: #383B41;
  margin: 0px 0px 0px 16px;
}

















/* -- POST Request -- */



.as-post-request {
  width: 660px;
  height: 30px;
  display: flex;
  align-items: center;
  margin: 12px 0px 0px 70px;

  border-radius: 4px;
  border: 1px solid #6C9FFF;
  background-color: #F0F5FF;
}



.as-pr-text {
  width: 50px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px 0px 0px 0px;

  border-radius: 2px 0px 0px 2px;
  background-color: #6C9FFF;

  font-size: 12px;
  font-family: 'Roboto';
  font-weight: 500;
  color: #ffffff;

  user-select: none;
}


.as-pr-url {
  font-size: 12px;
  font-family: 'Roboto';
  font-weight: 400;
  color: #383B41;
  margin: 0px 0px 0px 16px;
}























.as-rp-heading {
  font-size: 20px;
  font-family: 'Ubuntu';
  font-weight: 600;
  font-style: italic;
  color: #2c313c;
  margin: 60px 0px 0px 70px;
  cursor: default;
}







.as-rp-subheading {
  font-size: 14px;
  font-family: 'Poppins';
  font-weight: 400;
  color: #989ca4;
  margin: 10px 0px 0px 70px;
  cursor: default;
}


















/* -- Parameters -- */



.as-parameters {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}







.asp1 {
  width: 450px;
  height: 70px;
  display: flex;
  align-items: center;
  margin: 24px 0px 0px 70px;

  border: 1.7px solid #eeeeee;
  border-radius: 5px 5px 0px 0px;
  background-color: #ffffff;
}





.asp1-key {
  width: 70px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px 0px 0px 16px;

  border-radius: 2px;
  background-color: #F1F1F1;
  user-select: none;

  font-size: 10px;
  font-family: 'Poppins';
  font-weight: 400;
  color: #34495e;
}



.asp1-description {
  width: 300px;
  font-size: 10px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #373737;
  cursor: default;
  margin: 0px 0px 0px 20px;
}


.asp1-description > span {
  color: #1A73E8;
  cursor: pointer;
}













.asp2 {
  width: 450px;
  height: 70px;
  display: flex;
  align-items: center;
  margin: 0px 0px 0px 70px;

  border: 1.7px solid #eeeeee;
  border-top: 0px;
  border-bottom: 0px;
  background-color: #ffffff;
}





.asp2-key {
  width: 70px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px 0px 0px 16px;

  border-radius: 2px;
  background-color: #F1F1F1;
  user-select: none;

  font-size: 10px;
  font-family: 'Poppins';
  font-weight: 400;
  color: #34495e;
}



.asp2-description {
  width: 300px;
  font-size: 10px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #373737;
  text-align: justify;
  margin: 0px 0px 0px 20px;
  cursor: default;
}


.asp2-description > span {
  color: #1A73E8;
  cursor: pointer;
}














.asp3 {
  width: 450px;
  height: 70px;
  display: flex;
  align-items: center;
  margin: 0px 0px 60px 70px;

  border: 1.7px solid #eeeeee;
  border-radius: 0px 0px 5px 5px;
  background-color: #ffffff;
}





.asp3-key {
  width: 70px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px 0px 0px 16px;

  border-radius: 2px;
  background-color: #F1F1F1;
  user-select: none;

  font-size: 10px;
  font-family: 'Poppins';
  font-weight: 400;
  color: #34495e;
}



.asp3-description {
  width: 300px;
  font-size: 10px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #373737;
  cursor: default;
  margin: 0px 0px 0px 20px;
}





























































/*---------- My Devices Screen 3 ----------*/


.mydevices-screen {
  width: 100%;
  height: 100%;
  display: none;
  flex-direction: column;
  overflow-y: scroll;
}












.mds-user-profile {
  width: 80%;
  height: 260px;
  display: flex;
}





.mds-avatar {
  width: 160px;
  height: 160px;
  display: flex;
  margin: 70px 0px 0px 70px;

  border-radius: 200px;
  background-size: 160px;
  background-repeat: no-repeat;

  transition: 0.2s;
}

.mds-avatar:hover {
  transition: 0.2s;
  transform: scale(1.06);
}



.user-avatar {
  width: 160px;
  height: 160px;
}






.mds-user-details {
  width: calc(100% - 230px);
  height: 100%;
  display: flex;
  flex-direction: column;
}





.mds-name {
  font-size: 18px;
  font-family: 'Poppins';
  font-weight: 600;
  color: #2c313c;
  margin: 80px 0px 0px 40px;
  cursor: default;
}





.mds-email {
  font-size: 16px;
  font-family: 'Poppins';
  font-weight: 400;
  color: #7e8289;
  margin: 8px 0px 0px 40px;
  cursor: default;
}











.mds-userid {
  font-size: 16px;
  font-family: 'Poppins';
  font-weight: 400;
  color: #b3b7bd;
  margin: 12px 0px 0px 40px;
  user-select: none;
}

.mds-userid > span {
  margin-right: 30px;
  font-weight: 500;
  color: #0499FF;
  cursor: default;
  user-select: text;
}





.mds-logout {
  width: 80px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px 0px 0px 40px;

  border: 0px;
  outline: none;
  border-radius: 6px;
  background-color: #DA3633;

  font-size: 12px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #ffffff;

  cursor: pointer;
  user-select: none;
  transition: 0.3s;
}


.mds-logout:hover {
  transition: 0.3s;
  background-color: #e15552;
}


.mds-logout:active {
  transition: 0.3s;
  transform: scale(0.9);
  background-color: #DA3633;
}







/* -- Toggle Start Up Switch -- */



.mds-startup {
  width: 100%;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}





.mds-startup > h5 {
  font-size: 14px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #2c313c;
  cursor: default;
  margin: 0px 8px 0px 70px;
}





.mds-startup-input {
	height: 0;
	width: 0;
	visibility: hidden;
}

.mds-startup-label {
	cursor: pointer;
	text-indent: -9999px;
	width: 36px;
	height: 20px;
	background: #a8a8a8;
	float: right;
  margin-right: 70px;
	border-radius: 100px;
	position: relative;
  transition: 0.2s;
}

.mds-startup-label:after {
	content: '';
	position: absolute;
	top: 3px;
	left: 3px;
	width: 14px;
	height: 14px;
	background: #fff;
	border-radius: 100px;
	transition: 0.2s;
}

.mds-startup-input:checked + .mds-startup-label {
	background-color: #1A73E8;
  transition: 0.2s;
}

.mds-startup-input:checked + .mds-startup-label:after {
	left: calc(100% - 3px);
	transform: translateX(-100%);
}

.mds-startup-label:active:after {
	width: 30px;
}

















.mds-heading {
  font-size: 24px;
  font-family: 'Poppins';
  font-weight: 600;
  color: #2c313c;
  margin: 20px 0px 0px 70px;
  cursor: default;
}















.mds-header {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0px 0px 0px;
}


.mds-header-h1 {
  font-size: 14px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #22292f;
  margin: 0px 0px 0px 90px;
  cursor: default;
}


.mds-header-h2 {
  width: 50%;
  font-size: 14px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #22292f;
  margin: 0px 0px 0px 25px;
  cursor: default;
}



.mds-divider1 {
  height: 1px;
  width: calc(100% - 140px);
  display: flex;
  margin: 5px 0px 0px 70px;
  background-color: #e7e7e7;
}















.mds-list {
  width: 100%;
  display: flex;
  flex-direction: column;
}











.mds-li-item {
  width: calc(100% - 140px);
  height: 40px;
  display: flex;
  align-items: center;
  border-radius: 0px 50px 50px 0px;
  margin: 4px 0px 4px 70px;
  cursor: pointer;
  user-select: none;
}

.mds-li-item:hover {
  background-color: #F1F3F4;
}

.mds-li-item:active {
  background-color: #E8EAED;
}


.mds-li-bar {
  width: 0px;
  height: 100%;
  border-radius: 0px 10px 10px 0px;
  background-color: #1A73E8;
  transition: 0.2s;
}


.mds-li-name {
  width: 49%;
  display: flex;
  align-items: center;
  margin: 0px 0px 0px 25px;

  font-size: 14px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #586169;
}


.mds-li-id {
  display: flex;
  align-items: center;
  margin: 0px 23% 0px 0px;

  font-size: 14px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #586169;
}



.mds-divider2 {
  height: 1px;
  width: calc(100% - 140px);
  display: flex;
  margin: 0px 0px 0px 70px;
  background-color: #efefef;
}














.mds-actions {
  width: 100%;
  display: flex;
}








.mds-save {
  width: 100px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px 0px 70px 100px;

  border-radius: 4px;
  background-color: #F0F0F0;

  font-size: 14px;
  font-family: 'Poppins';
  color: rgba(0, 0, 0, 0.26);

  user-select: none;
  cursor: default;
  transition: 0.2s;
}


.mds-save > h5 {
  font-weight: 400;
}





.mds-edit {
  width: 100px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px 0px 70px 40px;

  border-radius: 4px;
  background-color: #F0F0F0;

  font-size: 14px;
  font-family: 'Poppins';
  color: rgba(0, 0, 0, 0.26);

  user-select: none;
  cursor: default;
  transition: 0.2s;
}


.mds-edit > h5 {
  font-weight: 400;
}





.mds-new {
  width: 170px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px 0px 70px 40px;

  border-radius: 4px;
  background-color: #F0F0F0;

  font-size: 14px;
  font-family: 'Poppins';
  color: rgba(0, 0, 0, 0.26);

  user-select: none;
  cursor: default;
  transition: 0.2s;
}


.mds-new > h5 {
  font-weight: 400;
}





























/* -- Create New Device Screen -- */


.new-device-screen {
  width: 100%;
  height: 100vh;
  display: none;
  align-items: center;
  justify-content: center;

  position: fixed;
  z-index: 2;
  background-color: #00000058;

  transition: 0.5s;
}






.new-device-dialog {
  width: 450px;
  height: 220px;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0px 0px 16px #0000001c;
}





.ndd-header {
  width: 100%;
  height: 56px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}




.ndd-header > h4 {
  font-size: 18px;
  font-family: 'Poppins';
  font-weight: 600;
  color: #282C34;
  margin: 0px 0px 0px 30px;
  cursor: default;
}




.ndd-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px 12px 0px 0px;
  
  border-radius: 100px;

  cursor: pointer;
  transition: 0.3s;
}

.ndd-close:hover {
  transition: 0.3s;
  background-color: #eeeeee;
}

.ndd-close:active {
  transition: 0.3s;
  background-color: #e5e2e2;
}

.ndd-close > svg {
  width: 24px;
  height: 24px;
}







.ndd-message {
  font-size: 14px;
  font-family: 'Poppins';
  font-weight: 400;
  color: #383B41;
  margin: 10px 0px 0px 30px;
  cursor: default;
}







.ndd-input {
  width: 250px;
  height: 46px;
  display: flex;
  align-items: center;
  padding-left: 16px;
  margin: 20px 0px 0px 30px;

  font-size: 14px;
  font-family: 'Poppins';
  font-weight: 400;
  color: #2c313c;

  border: none;
  outline: none;
  border-radius: 6px;
  background-color: #f3f3f8;
}







.ndd-bottom {
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 20px 0px 0px 0px;
}




.ndd-cancel {
  width: 100px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px 12px 0px 0px;

  border: 0px;
  outline: none;
  border-radius: 6px;
  background-color: #ffffff;

  font-size: 14px;
  font-family: 'Roboto';
  font-weight: 500;
  color: rgba(0, 0, 0, 0.54);

  cursor: pointer;
  user-select: none;
  transition: 0.3s;
}


.ndd-cancel:hover {
  transition: 0.3s;
  background-color: #eeeeee;
}


.ndd-cancel:active {
  transition: 0.3s;
  background-color: #e5e2e2;
}




.ndd-create {
  width: 100px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px 20px 0px 0px;

  border: 0px;
  outline: none;
  border-radius: 6px;
  background-color: #1A73E8;

  font-size: 14px;
  font-family: 'Roboto';
  font-weight: 500;
  color: #ffffff;

  cursor: pointer;
  user-select: none;
  transition: 0.3s;
}



.ndd-create:hover {
  transition: 0.3s;
  transform: translateY(-4px);
}



.ndd-create:active {
  transition: 0.3s;
  transform: translateY(0px);
}





























































/* -- Edit Device Screen -- */


.edit-device-screen {
  width: 100%;
  height: 100vh;
  display: none;
  align-items: center;
  justify-content: center;

  position: fixed;
  z-index: 2;
  background-color: #00000058;

  transition: 0.5s;
}






.edit-device-dialog {
  width: 450px;
  height: 220px;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0px 0px 16px #0000001c;
}





.edd-header {
  width: 100%;
  height: 56px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}




.edd-header > h4 {
  font-size: 18px;
  font-family: 'Poppins';
  font-weight: 600;
  color: #282C34;
  margin: 0px 0px 0px 30px;
  cursor: default;
}




.edd-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px 12px 0px 0px;
  
  border-radius: 100px;

  cursor: pointer;
  transition: 0.3s;
}

.edd-close:hover {
  transition: 0.3s;
  background-color: #eeeeee;
}

.edd-close:active {
  transition: 0.3s;
  background-color: #e5e2e2;
}

.edd-close > svg {
  width: 24px;
  height: 24px;
}







.edd-message {
  font-size: 14px;
  font-family: 'Poppins';
  font-weight: 400;
  color: #383B41;
  margin: 10px 0px 0px 30px;
  cursor: default;
}







.edd-input {
  width: 250px;
  height: 46px;
  display: flex;
  align-items: center;
  padding-left: 16px;
  margin: 20px 0px 0px 30px;

  font-size: 14px;
  font-family: 'Poppins';
  font-weight: 400;
  color: #2c313c;

  border: none;
  outline: none;
  border-radius: 6px;
  background-color: #f3f3f8;
}







.edd-bottom {
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 20px 0px 0px 0px;
}




.edd-cancel {
  width: 100px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px 12px 0px 0px;

  border: 0px;
  outline: none;
  border-radius: 6px;
  background-color: #ffffff;

  font-size: 14px;
  font-family: 'Roboto';
  font-weight: 500;
  color: rgba(0, 0, 0, 0.54);

  cursor: pointer;
  user-select: none;
  transition: 0.3s;
}


.edd-cancel:hover {
  transition: 0.3s;
  background-color: #eeeeee;
}


.edd-cancel:active {
  transition: 0.3s;
  background-color: #e5e2e2;
}




.edd-update {
  width: 100px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px 20px 0px 0px;

  border: 0px;
  outline: none;
  border-radius: 6px;
  background-color: #1A73E8;

  font-size: 14px;
  font-family: 'Roboto';
  font-weight: 500;
  color: #ffffff;

  cursor: pointer;
  user-select: none;
  transition: 0.3s;
}



.edd-update:hover {
  transition: 0.3s;
  transform: translateY(-4px);
}



.edd-update:active {
  transition: 0.3s;
  transform: translateY(0px);
}









































































/*---------- Create Screen ----------*/


.create-screen {
  width: calc(100% - 251px);
  height: 100%;
  display: flex;
  flex-direction: column;

  background-color: #ffffff;

  position: fixed;
  transform: translateX(100%);

  transition: 0.5s;
}




.create-screen-main {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
}


.create-screen-main > main {
  width: 100%;
  display: flex;
  flex-direction: column;
}




.create-screen-main > main > h1 {
  align-self: center;
  font-size: 40px;
  font-family: 'Poppins';
  font-weight: 700;
  color: #313337;
  margin: 50px 0px 0px 70px;
  cursor: default;
  transition: 0.2s;
}






.cs-main {
  width: 100%;
  height: calc(100% - 90px);
  display: flex;
}








/* -- Create Screen Left -- */


.cs-left {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
}





.cs-if {
  font-size: 32px;
  font-family: 'Poppins';
  font-weight: 700;
  color: #0499FF;
  margin: 30px 0px 0px 70px;
  cursor: default;
}






.cs-phrase {
  width: 66%;
  height: 50px;
  display: flex;
  align-items: center;
  margin: 16px 0px 0px 70px;

  border-radius: 10px;
  border: 4px solid #f3f3f8;
  background-color: #f3f3f8;
  transition: 0.1s;
}





.cs-phrase-input {
  width: calc(100% - 80px);
  height: 100%;
  display: flex;
  align-items: center;
  margin: 0px 0px 0px 16px;
  
  font-size: 16px;
  font-family: 'Poppins';
  font-weight: 400;
  color: #22292f;

  outline: none;
  border: none;
  background-color: transparent;
  transition: 0.2s;
}







.cs-divider {
  width: 1px;
  height: 60%;
  display: flex;
  margin-top: 150px;
  background-image: linear-gradient(rgb(158, 158, 158) 33%, rgba(255,255,255,0) 0%);
  background-position: right;
  background-size: 1px 10px;
  background-repeat: repeat-y;
}



/* -- Create Screen Right -- */

.cs-right {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
}





.path {
  width: min-content;
  height: 30px;
  display: flex;
  align-items: center;
  margin: 100px 0px 0px 0px;
  background-color: #ffffff;
  transform: translateX(-28%);
}



.csp-dot1 {
  width: 20px;
  height: 20px;
  display: flex;
  border: 2px solid #ffffff;
  border-radius: 100px;
  background-color: #0499FF;
}



.csp-line {
  width: 70px;
  height: 4px;
  display: flex;
  background-color: #0499FF;
}



.csp-dot2 {
  width: 20px;
  height: 20px;
  display: flex;
  border: 2px solid #ffffff;
  border-radius: 100px;
  background-color: #0499FF;
}



.cs-then {
  font-size: 32px;
  font-family: 'Poppins';
  font-weight: 700;
  color: #0499FF;
  margin: 0px 0px 0px 16px;
  cursor: default;
}










.cs-actions {
  width: 66%;
  height: 50px;
  display: flex;
  align-items: center;
  margin: 30px 0px 0px 40px;
  
  font-size: 16px;
  font-family: 'Poppins';
  font-weight: 400;
  color: #22292f;

  border-radius: 10px;
  border: 0px solid #313337;
  background-color: #f3f3f8;
  transition: 0.1s;
}



.cs-actions-input {
  height: 100%;
  display: none;
  width: calc(100% - 40px);
  margin: 0px 0px 0px 20px;

  font-size: 16px;
  font-family: 'Poppins';
  font-weight: 400;
  color: #22292f;

  border: none;
  outline: none;
  background-color: transparent;

  cursor: pointer;
}







.cs-actions > h5 {
  display: flex;
  width: calc(100% - 40px);
  margin: 0px 0px 0px 24px;

  font-size: 16px;
  font-family: 'Poppins';
  font-weight: 400;
  color: #22292f;

  user-select: none;
}














/* -- Open Action Type -- */


.csat-open {
  width: 100%;
  height: 350px;
  display: none;
  flex-direction: column;
}


.csat-open > h5 {
  max-width: 420px;
  font-size: 12px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #313337;
  margin: 30px 0px 0px 40px;
  cursor: default;
}




.csat-open-input {
  width: calc(66% - 48px);
  min-width: calc(66% - 48px);
  max-width: calc(66% - 48px);
  
  height: 50px;
  min-height: 45px;
  max-height: 30%;
  display: flex;
  margin: 12px 0px 0px 40px;
  padding: 20px 20px 0px 20px;

  font-size: 14px;
  font-family: 'Poppins';
  font-weight: 400;
  color: #22292f;

  outline: none;
  border-radius: 10px;
  border: 4px solid #f3f3f8;
  background-color: #f3f3f8;

  transition: 0.1s;
}























.create-action-btn {
  width: 180px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0px 0px 25%;

  border-radius: 80px;
  background-color: #0499FF;

  font-size: 16px;
  font-family: 'Poppins';
  color: #ffffff;

  user-select: none;
  cursor: pointer;
  transition: 0.2s;
}

.create-action-btn:hover {
  transition: 0.2s;
  background-color: #049bffca;
}

.create-action-btn:active {
  transition: 0.2s;
  background-color: #049bffbd;
  transform: scale(0.95, 0.95);
}



.create-action-btn > h5 {
  font-weight: 400;
}


















/* -- Mouse Action Type -- */


.csat-mouse {
  width: 100%;
  height: 500px;
  display: none;
  flex-direction: column;
}


.csat-mouse > h5 {
  max-width: 420px;
  font-size: 12px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #313337;
  margin: 30px 0px 0px 40px;
  cursor: default;
}

.csat-mouse-input-heading {
  display: none;
}



.csat-mouse-input1-box {
  width: 250px;
  height: 50px;
  display: flex;
  align-items: center;
  margin: 12px 0px 0px 40px;

  border-radius: 8px;
  background-color: #f3f3f8;
  
  transition: 0.5s;
}


.csat-mouse-input1 {
  width: 90%;
  height: 100%;
  display: flex;
  margin: 0px 5% 0px 5%;

  font-size: 13px;
  font-family: 'Poppins';
  font-weight: 400;
  color: #22292f;

  outline: none;
  border: none;
  background-color: transparent;
  
  cursor: pointer;
  transition: 0.5s;
}






.csat-mouse-input-area {
  width: 100%;
  display: none;
  grid-template-columns: repeat(2, 140px);
  grid-auto-rows: 52px;
}




.csat-mouse-input {
  width: 100px;
  height: 40px;
  
  display: flex;
  margin: 12px 0px 0px 40px;
  padding: 0px 0px 0px 20px;

  font-size: 16px;
  font-family: 'Poppins';
  font-weight: 400;
  color: #22292f;

  outline: none;
  border-radius: 10px;
  border: 4px solid #f3f3f8;
  background-color: #f3f3f8;

  transition: 0.1s;
}





#csat-mouse-inputi {
  width: 180px;
  font-size: 14px;
}

























/* -- Shortcuts Action Type -- */


.csat-shortcuts {
  width: 100%;
  height: 500px;
  display: none;
  flex-direction: column;
}




.csat-shortcuts > h5 {
  max-width: 420px;
  font-size: 12px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #313337;
  margin: 30px 0px 0px 40px;
  cursor: default;
}



.csat-shortcuts-input-area {
  display: flex;
  flex-direction: column;
  margin: 12px 0px 0px 0px;
}



.csat-shortcuts-input-area > h3 {
  font-size: 12px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #313337;
  margin: 10px 0px 0px 135px;
  cursor: default;
}


.csat-shortcuts-input1-box, .csat-shortcuts-input2-box, .csat-shortcuts-input3-box {
  width: 190px;
  height: 40px;
  display: flex;
  align-items: center;
  margin: 12px 0px 0px 40px;

  border-radius: 8px;
  background-color: #f3f3f8;
  
  transition: 0.5s;
}



.csat-shortcuts-input1, .csat-shortcuts-input2, .csat-shortcuts-input3 {
  width: 90%;
  height: 100%;
  display: flex;
  margin: 0px 5% 0px 5%;

  font-size: 13px;
  font-family: 'Poppins';
  font-weight: 400;
  color: #22292f;

  outline: none;
  border: none;
  background-color: transparent;
  
  cursor: pointer;
  transition: 0.5s;
}


















/* -- Keyboard Action Type -- */


.csat-keyboard {
  width: 100%;
  height: 350px;
  display: none;
  flex-direction: column;
}


.csat-keyboard > h5 {
  max-width: 420px;
  font-size: 12px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #313337;
  margin: 30px 0px 0px 40px;
  cursor: default;
}




.csat-keyboard-input {
  width: calc(66% - 48px);
  min-width: calc(66% - 48px);
  max-width: calc(66% - 48px);
  
  height: 50px;
  min-height: 45px;
  max-height: 30%;
  display: flex;
  margin: 12px 0px 0px 40px;
  padding: 20px 20px 0px 20px;

  font-size: 12px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #22292f;

  outline: none;
  border-radius: 10px;
  border: 4px solid #f3f3f8;
  background-color: #f3f3f8;

  transition: 0.1s;
}
















/* -- Script Action Type -- */


.csat-script {
  width: 100%;
  height: 450px;
  display: none;
  flex-direction: column;
}


.csat-script-documentation {
  width: 160px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px 0px 0px 30px;
  
  border: none;
  outline: none;
  border-radius: 6px;
  background-color: #ffffff;

  font-size: 12px;
  font-family: 'Roboto';
  font-weight: 500;
  color: #abb2bf;

  cursor: pointer;
  user-select: none;
  transition: 0.2s;
}

.csat-script-documentation:hover {
  opacity: 0.7;
}

.csat-script-documentation:active {
  transition: 0.2s;
  transform: scale(0.95, 0.95);
}

.csat-script > h5 {
  max-width: 420px;
  font-size: 12px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #313337;
  margin: 16px 0px 0px 40px;
  cursor: default;
}




.csat-script-input {
  width: calc(66% - 48px);
  min-width: calc(66% - 48px);
  max-width: calc(66% - 48px);
  
  height: 50px;
  min-height: 125px;
  max-height: 30%;
  display: flex;
  margin: 12px 0px 0px 40px;
  padding: 20px 20px 0px 20px;

  font-size: 13px;
  font-family: 'Poppins';
  font-weight: 400;
  color: #22292f;

  outline: none;
  border-radius: 10px;
  border: 4px solid #f3f3f8;
  background-color: #f3f3f8;

  transition: 0.1s;
}









#create-action-script {
  margin-top: 20px;
}

















































/* -- Editor Screen -- */




.editor-screen {
  width: 100%;
  height: 100vh;
  display: none;
  justify-content: center;

  position: fixed;
  z-index: 2;
  background-color: #00000058;

  transition: 0.5s;
}





.editor-dialog {
  width: 70%;
  height: calc(100% - 200px);
  display: flex;
  margin: 50px 0px 0px 0px;

  border-radius: 16px;
  background-color: #21252B;

  overflow: hidden;
  user-select: none;
  transition: 0.3s;
}





.ed-left-menu {
  width: 60px;
  height: 100%;
  display: flex;
  flex-direction: column;
  
  background-color: #282C34;
}


.ed-logo {
  width: 100%;
  height: 24px;
  margin: 20px 0px 0px 0px;
}




.ed-right {
  width: calc(100% - 62px);
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-left: 2px;
}



.ed-head {
  width: 100%;
  height: 35px;
  display: flex;
}



.ed-tab1 {
  width: 124px;
  height: 100%;
  display: flex;
  align-items: center;

  border-right: 1px solid rgb(24, 26, 31);
  background-color: #282C34;

  cursor: pointer;
}



.ed-tab1 > img {
  width: 16px;
  height: 16px;
  margin: 0px 10px 0px 12px;
}


.ed-tab1 > h5 {
  line-height: 35px;
  font-size: 13px;
  font-family: 'Segoe UI';
  font-weight: 400;
  color: #d7dae0;
}


.ed-tab1-close {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px 0px 0px 8px;

  border-radius: 4px;
  cursor: pointer;
}

.ed-tab1-close:hover {
  background-color: #383B41;
}

.ed-tab1-close:active {
  background-color: #3B3E44;
}

.ed-tab1-close-icon {
  width: 15px;
  height: 15px;
}




.ed-tab2 {
  width: 165px;
  height: 100%;
  display: flex;
  align-items: center;

  border-right: 1px solid rgb(24, 26, 31);
  background-color: #21252B;

  cursor: pointer;
}



.ed-tab2 > img {
  width: 16px;
  height: 16px;
  margin: 0px 10px 0px 12px;
}


.ed-tab2 > h5 {
  line-height: 35px;
  font-size: 13px;
  font-family: 'Segoe UI';
  font-weight: 400;
  color: #d7dae08d;
}


.ed-tab2-close {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px 0px 0px 8px;

  border-radius: 4px;
  cursor: pointer;
}

.ed-tab2-close:hover {
  background-color: #383B41;
}

.ed-tab2-close:active {
  background-color: #3B3E44;
}

.ed-tab2-close-icon {
  width: 15px;
  height: 15px;
}





.ed-saved {
  width: 100px;
  height: 100%;
  display: none;
  align-items: center;
  font-size: 12px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #27ae60;
  margin: 0px 0px 0px 16px;
}






.ed-done {
  width: 70px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px 0px 0px calc(100% - 495px);

  border: 0px;
  outline: none;
  border-radius: 6px;
  background-color: #1A73E8;

  font-size: 10px;
  font-family: 'Poppins';
  font-weight: 400;
  color: #ffffff;

  user-select: none;
  cursor: pointer;
  transition: 0.2s;
}


.ed-done:hover {
  transition: 0.2s;
  background-color: #3986eb;
}














/* -- Code Editor Section -- */

.ed-main-code-section {
  width: 100%;
  height: calc(100% - 35px);
  display: flex;

  background-color: #282C34;
}







.ed-code-lines-section {
  width: 60px;
  height: calc(100% - 250px);
  display: flex;
  flex-direction: column;
  position: absolute;
  align-items: center;
  overflow-y: scroll;
}

.ed-code-lines-section::-webkit-scrollbar {
  width: 0px;
}

.ed-code-lines-section > h6 {
  width: 30%;
  margin: 0px 0px 0px 0px;

  font-size: 14px;
  font-family: monospace;
  font-weight: 400;
  color: #636d83;
  text-align: right;
}





.ed-main-code {
  width: calc(100% - 60px);
  height: 100%;
  display: flex;
  margin: 0px 0px 0px 60px;
}





.ed-code-sketch {
  width: 60%;
  height: calc(100% - 250px);

  overflow: auto;
  position: absolute;

  font-size: 14px;
  font-family: monospace;
  font-weight: 400;
  color: #abb2bf;
  word-wrap: break-word;
}




.ed-pink {
  color: #c678dd;
}

.ed-blue {
  color: #61afef;
}

.ed-green {
  color: #98c379;
}

.ed-red {
  color: #e06c75;
}

.ed-amber {
  color: #d19a66;
}

.ed-teal {
  color: #56b6c2;
}







.ed-code-input {
  width: calc(60% - 16px);
  height: calc(100% - 250px);
  display: flex;
  flex-direction: column;
  padding: 0px 0px 0px 0px;

  resize: none;
  border: none;
  outline: none;
  background-color: transparent;
  position: absolute;
  z-index: 11;

  font-size: 14px;
  font-family: monospace;
  font-weight: 400;
  color: transparent;
  caret-color: #528bff;
}


.ed-code-input::selection, .ed-code-input > *::selection, .ed-code-input > * >*::selection {
  background-color: #696f7d37;
}

.ed-code-input::-webkit-scrollbar {
  width: 0px;
}

.ed-code-sketch::-webkit-scrollbar {
  width: 16px;
  background: #282C34;
}

.ed-code-sketch::-webkit-scrollbar-track {
  background: #282C34;
}

.ed-code-sketch::-webkit-scrollbar-thumb {
  background: #3b414d;
}

.ed-code-sketch::-webkit-scrollbar-thumb:active {
  background: #3b414dac;
}










.cursor-highlight-section {
  width: 60%;
  height: calc(100% - 250px);

  overflow: auto;
  position: absolute;
  overflow-y: scroll;
}

.cursor-highlight-section::-webkit-scrollbar {
  width: 0px;
}


.cursor-highlight {
  width: 100%;
  display: flex;
  background-color: #2c313c;
}


.cursor-highlight > h6 {
  margin: 0px 0px 0px 0px;
  font-size: 14px;
  font-family: monospace;
  font-weight: 400;
  color: transparent;
}




















/* -- Documentation Section -- */

.ed-main-code-section {
  width: 100%;
  height: calc(100% - 35px);
  display: flex;

  background-color: #282C34;
}
























































/* -- Delete Screen -- */


.delete-screen {
  width: 100%;
  height: 100vh;
  display: none;
  align-items: center;
  justify-content: center;

  position: fixed;
  z-index: 2;
  background-color: #00000058;

  transition: 0.5s;
}






.delete-dialog {
  width: 450px;
  height: 170px;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0px 0px 16px #0000001c;
}





.dd-header {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}




.dd-header > h4 {
  font-size: 18px;
  font-family: 'Poppins';
  font-weight: 600;
  color: #282C34;
  margin: 0px 0px 0px 30px;
  cursor: default;
}




.dd-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px 12px 0px 0px;
  
  border-radius: 100px;

  cursor: pointer;
  transition: 0.3s;
}

.dd-close:hover {
  transition: 0.3s;
  background-color: #eeeeee;
}

.dd-close:active {
  transition: 0.3s;
  background-color: #e5e2e2;
}

.dd-close > svg {
  width: 24px;
  height: 24px;
}







.dd-message {
  font-size: 14px;
  font-family: 'Poppins';
  font-weight: 400;
  color: #383B41;
  margin: 12px 0px 0px 30px;
  cursor: default;
}







.dd-bottom {
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 20px 0px 0px 0px;
}




.dd-cancel {
  width: 80px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px 12px 0px 0px;

  border: 0px;
  outline: none;
  border-radius: 6px;
  background-color: #ffffff;

  font-size: 14px;
  font-family: 'Roboto';
  font-weight: 500;
  color: rgba(0, 0, 0, 0.54);

  cursor: pointer;
  user-select: none;
  transition: 0.3s;
}


.dd-cancel:hover {
  transition: 0.3s;
  background-color: #eeeeee;
}


.dd-cancel:active {
  transition: 0.3s;
  background-color: #e5e2e2;
}




.dd-delete {
  width: 80px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px 20px 0px 0px;

  border: 0px;
  outline: none;
  border-radius: 6px;
  background-color: #D32F2F;

  font-size: 14px;
  font-family: 'Roboto';
  font-weight: 500;
  color: #ffffff;

  cursor: pointer;
  user-select: none;
  transition: 0.3s;
}


.dd-delete:hover {
  transition: 0.3s;
  background-color: #BA2929;
}


.dd-delete:active {
  transition: 0.3s;
  background-color: #A62525;
}


































































/*----------------- 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;
}


















