<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* width */
::-webkit-scrollbar {
  width: 4px !important;
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent !important;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888 !important;
  border-radius: 12px !important;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555 !important;
}

.skeleton {
  color: #eee !important;
  background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
  border-color: #eee !important;
  background-size: 200% 100%;
  border-radius: 5px;
  animation: 1.5s shine linear infinite;
}

.skeleton:disabled {
  color: #eee !important;
  background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
  border-color: #eee !important;
  background-size: 200% 100%;
  animation: 1.5s shine linear infinite;
  pointer-events: none;
}

.skeleton * {
  color: #eee !important;
}

@keyframes shine {
  to {
    background-position-x: -200%;
  }
}

#pos {
  display: grid;
  grid-template-columns: minmax(50px, 1fr) 1px minmax(50px, 1fr);
  margin-top: 100px;
  margin: 100px auto;
  max-width: 1200px;
  width: 95%;
  min-height: 400px;
}

#pos.center-align {
  display: flex;
  position: absolute;
  top: 20%;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  flex-direction: column;
}

#funny-pos {
  display: flex;
  flex-direction: column;
  grid-column: 1/4;
}

#funny-pos img {
  max-height: 30vh;
  margin: auto;
  transform: translateX(5vh);
}

#funny-pos p {
  width: fit-content;
  justify-self: center;
  margin: auto;
  text-align: center;
  font-variation-settings: var(--font-var-seting-600);
}

.full-width {
  grid-column: 1/4 !important;
}

.hide {
  display: none !important;
}

@media (max-width: 800px) {
  #pos p {
    font-size: var(--small-font) !important;
  }
  .ico img {
    width: 40px;
  }
  h2 {
    font-size: var(--font-size-base) !important;
  }
}

#first-pos {
  display: flex;
  position: relative;
  flex-direction: column;
  grid-column: 1/2;
  align-self: flex-end;
  padding: 20px;
  align-self: center;
  justify-self: center;
}

#secound-pos {
  display: flex;
  position: relative;
  flex-direction: column;
  grid-column: 3/4;
  align-self: flex-end;
  padding: 20px;
  align-self: center;
  justify-self: center;
}

#first-pos h2,
#secound-pos h2 {
  text-align: center;
  font-feature-settings: "ss01";
}

#first-pos img,
#secound-pos img {
  max-width: 200px;
  min-width: auto;
  justify-self: center;
  margin: 0 auto;
  width: 90%;
}

.pos1-note {
  display: flex;
  flex-direction: column;
  grid-column: 1/2;
  align-items: center;
  justify-content: center;
  padding: 10px;
  padding-bottom: 20px;
}

.pos2-note {
  display: flex;
  flex-direction: column;
  grid-column: 3/4;
  align-items: center;
  justify-content: center;
  padding: 10px;
  padding-bottom: 20px;
}

.pos1-note p,
.pos2-note p {
  margin: 0;
  text-align: center;
  text-justify: center;
  word-wrap: break-word;
  line-height: 1.5;
  width: 100%;
}

.alert-note {
  font-size: var(--small-font) !important;
  font-variation-settings: var(--font-var-seting-bold);
  color: #ff7300;
}

.ico {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  grid-column: 1/-1;
  justify-content: center;
}

.ico img {
  width: 48px;
}

.ico p {
  font-variation-settings: var(--font-var-seting-600);
  color: rgb(75, 90, 109);
}

.vertical-devider {
  width: 1px;
  border-right: 1px solid #e6e6e6;
  grid-column: 2/3;
  margin: 5px 0;
}

.pos1-note:nth-child(odd of .pos1-note) {
  background-color: #f6f8fa;
  border-radius: 0 0 8px 0;
}

.pos2-note:nth-child(odd of .pos2-note) {
  background-color: #f6f8fa;
  border-radius: 0 0 0 8px;
}

.ico:nth-child(odd of .ico) {
  background-color: #f6f8fa;
  border-radius: 8px 8px 0 0;
}

.btn-selecet-dev {
  color: #1a73e8;
  border-radius: 8px;
  border: 1px solid #1a73e8;
  padding: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: none;
}

@media (hover: hover) and (pointer: fine) {
  .btn-selecet-dev:hover {
    background: #1a73e8;
    color: #fff;
  }
}

#dev-list {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #00000015;
  z-index: 300;
  display: flex;
  opacity: 0;
  transition: all 0.5s ease;
}

#dev-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 90%;
  max-width: 900px;
  height: 80%;
  background: #fff;
  margin: auto;
  border-radius: 8px;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  justify-content: center;
  justify-items: center;
  overflow-y: scroll;
}

@media (max-width: 880px) {
  #dev-container {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 720px) {
  #dev-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 350px) {
  #dev-container {
    grid-template-columns: 1fr;
  }
}

.device {
  display: flex;
  flex-direction: column;
  justify-self: center;
  padding: 20px;
  height: 100%;
  width: 100%;
  justify-content: flex-end;
  cursor: pointer;
  margin-bottom: 0;
}
.device img {
  max-width: 100px;
  align-self: center;
}

.device p {
  color: rgb(41, 41, 41);
  font-variation-settings: var(--font-var-seting-600);
  margin: 10px 0 0 0;
  font-feature-settings: "ss01";
  text-align: center;
}

@media (hover: hover) and (pointer: fine) {
  .device:hover {
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  }
}

.close-device {
  display: flex;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #dddddd;
  width: 35px;
  height: 35px;
  border-radius: 20px;
}

#pos .close-device img {
  width: 15px;
}
</pre></body></html>