.myLicenceContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.myLicenceContainer__header {
  display: flex;
  flex-direction: column;
  margin: 40px;
}

.myLicenceContainer__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.myLicenceContainer__bodyQ {
  font-weight: 500;
  margin: 30px 24px;
}

.myLicenceContainer__bodyInput {
  padding: 12px 24px;
  min-width: 300px;
  font-size: 16px;
}

.myLicenceContainer__bodybtn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
  padding: 12px 16px;
  min-width: 300px;
  background-color: #000000;
  border: none;
  border-radius: 4px;
  color: white;
  font-weight: 400;
  font-size: 16px;
  cursor: pointer;
}

.myLicenceContainer__bodybtn:focus {
  outline: none;
}

.logo {
  height: 80px;
}

#myLicenceContainer__dashboardContainer {
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding-bottom: 100px;
}
.myLicenceContainer__dashboard {
  flex-direction: column;
  justify-content: center;
  text-align: center;
  display: flex;
}

.myLicenceContainer__bodyforgot {
  margin-top: 24px;
  text-decoration: underline;
  color: rgb(47, 47, 47);
}

.myLicenceContainer__dashboardDeviceTile {
  display: flex;
  align-items: center;
  background-color: #f6f6f6;
  border-radius: 8px;
  border: 2px solid #999999;
  text-align: left;
  padding: 24px;
  justify-content: space-between;
  margin-top: 24px;
}

.myLicenceContainer__dashboardDeviceTile > div {
  display: flex;
  align-items: center;
}

.myLicenceContainer__dashboardDeviceTile > div > p {
  margin-left: 16px;
  font-size: 17px;
}

.deviceNameInput {
  background: transparent;
  border: none;
  font-size: 16px;
  margin: 0px 8px;
  padding: 4px;
}

.deviceNameInput:focus {
  outline: none;
}

.editDeviceName {
}

.editDeviceName:hover {
}

.myLicenceContainer__dashboardDeviceTile > div > img {
  height: 24px;
  width: 24px;
}

.myLicenceContainer__dashboardDeviceTile > button {
  display: flex;
  align-items: center;
  background-color: #ffa2b8;
  border: none;
  color: #000;
  cursor: pointer;
  display: inline-flex;
  font-size: 16px;
  border-radius: 8px;
  padding: 9px 18px;
  font-weight: 500;
}

.myLicenceContainer__dashboardDeviceTile > button > img {
  height: 16px;
  width: 16px;
  margin-left: 5px;
}

#loader {
  display: none;
  border: 3px solid #f3f3f3; /*  Light grey */
  border-top: 3px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 16px;
  height: 16px;
  animation: spin 1s linear infinite;
  margin-left: 7px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* The snackbar - position it at the bottom and in the middle of the screen */
#blurwebapp__snackbar {
  visibility: hidden; /* Hidden by default. Visible on click */
  width: 50vw;
  min-width: 250px; /* Set a default minimum width */
  margin-left: -25vw; /* Divide value of min-width by 2 */
  background-color: #333; /* Black background color */
  color: #fff; /* White text color */
  text-align: center; /* Centered text */
  border-radius: 2px; /* Rounded borders */
  padding: 16px; /* Padding */
  position: fixed; /* Sit on top of the screen */
  z-index: 132535235; /* Add a z-index if needed */
  left: 50%; /* Center the snackbar */
  bottom: 30px; /* 30px from the bottom */
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#blurwebapp__snackbar.show {
  visibility: visible; /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}

#myLicenceContainer__bodySuccess {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
