/* static/solara.css*/
.solara-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999999999;
  padding: 10px;
  display: flex;
  align-items: center;
  max-width: 300px;
  border-radius: 4.7px;
  box-shadow: -7px -7px 20px 0px black;
  font-family: 'Helvetica Neue LT Pro 45 Light', sans-serif;
  opacity: 0;
  transition: opacity 0.5s ease;
  border: 2px solid #111;
  outline: 1px solid #333;
  backdrop-filter: blur(10px);
  background: linear-gradient(45deg, #00000099, #ff00002e);
  animation: fadeOut 0.5s forwards;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-drag: none
  user-drag: none;
  user-select: none !important;
  text-shadow: 0px 0px 20px #000;
}

.solara-popup.visible {
  opacity: 1;
  animation: fade 0.5s forwards;
}

.solara-popup.safe {
}

.solara-popup.suspicious {
  box-shadow: -7px -7px 70px 0px crimson;
}

.solara-img {
  width: 72px;
  height: 90px;
  margin-right: 10px;
  border-radius: 4.7px;
  flex-shrink: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-drag: none
  user-drag: none;
  user-select: none !important;
  animation: fade 2s forwards !important;
}

.solara-text {
  font-size: 18px;
  color: #dfdfdfdf;
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

#solara-blocked {
  position: fixed;
  inset: 0;
  background: rgb(0 0 0 / 72%);
  z-index: 999999999999;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(7px);
  animation: fade 0.5s forwards;
}

#solara-blocked.fading-out {
  animation: fadeOut 0.5s ease forwards;
}

.solara-block-content {
  background: linear-gradient(to bottom right, #1a1a1a, #320000);
  /*border: 1px solid crimson;*/
  border-radius: 4.7px;
  padding: 30px;
  max-width: 400px;
  text-align: center;
  color: #fff;
  font-family: 'Helvetica Neue LT Pro 45 Light', sans-serif;
  border: 2px solid #111;
  outline: 1px solid #333;
  box-shadow: 0 0px 50px #ed143d45;
  text-shadow: 0px 0px 20px #000;
}

.solara-block-content img {
  width: 80px;
  margin-bottom: 20px;
}

.solara-block-text {
  font-size: 18px;
  margin-bottom: 15px;
}

.solara-checkbox {
  font-size: 16px;
  cursor: pointer;
  user-select: none;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-shadow: 0px 0px 20px #000;
  width: 100%;
}

.container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: left;
  gap: 30px;
}

.solara-status {
  margin-top: 1em;
  font-size: 0.95em;
  color: #ccc;
}

input#solara-check, input#solaraCheck {
  background: #ed143d36 8px 8px no-repeat;
  border-radius: 2px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  position: relative;
  /*top: 5px;*/
  min-width: 30px;
  width: 30px;
  min-height: 30px;
  margin: 0px;

  border: 2px solid #111;
  outline: 1px solid #333;
}

input#solara-check:checked, input#solaraCheck:checked {
  /*background-color: crimson;*/
  background: crimson url(data:image/gif;base64,R0lGODlhCwAKAIABAP////3cnSH5BAEKAAEALAAAAAALAAoAAAIUjH+AC73WHIsw0UCjglraO20PNhYAOw==) 8px 8px no-repeat;
}

@media screen and (max-width: 800px) {
  .solara-popup {
    bottom: 30vw;
    right: unset;
    margin: 0px 10%;
  }
  input#solara-check, input#solaraCheck {
    padding: 15px;
    background-size: 14px !important;
  }
}