@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap');
html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: Poppins, "Poppins SemiBold";
	font-weight: bold;
    font-size: medium;
	color: #808582;
	overflow: hidden;

}


iframe {
    display: block;
    border: 0;
    width: 100%;
    height: 100%;
}

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app {
	display: none;
    width: 100%;
    height: 100%;
}

#api-frame {
    flex: 1 1 auto;
}

.options {
    box-sizing: border-box;
    flex: 0 0 350px;
    padding: 20px;
	overflow-y: auto;
}

.option {
    display: flex;
    padding: 24px 0;
    border-bottom: 1px solid #cccccc;
}

.option:first-child {
    border-top: 1px solid #ccc;
}

.option label {
    flex: 0 0 140px;
}

.color {
    display: flex;
    align-items: center;
    padding: 3px 0;
}

.color input[type='button'] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.color__swatch {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 10%;
    border: 1px solid rgba(0, 0, 0, 0.5);
    margin-right: 4px;
}

.color input:checked + .color__swatch {
    box-shadow: 0 0 0 2px #000;
}

.color:hover .color__swatch {
    box-shadow: 0 0 0 2px #ed1b35;
	cursor: pointer;
}
/* Dropdown Button */
.dropbtn {
  background-color: white;
  color: #808285;
  padding: 25px;
  font-family: Poppins, "Poppins SemiBold";
  font-weight: bold;
  font-size: medium;
  border: none;
  cursor: pointer;
  text-align: left;
}

/* Texto cores */
.nota-cores {
    position: fixed;
    top: 97%;
    left: 5%;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: bottom;
    text-align: end;
    font-family: Poppins, "Poppins SemiBold";
    font-size: 10px;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 200px;
  z-index: 1;
  box-shadow: 0px 0px 10px #f4f4f4;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 16px 12px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: white;}
