* {
	font-family: "Lexend", sans-serif;
    font-size: 16px;
    
	padding: 0;
	margin: 0;
}
ul, li {
	padding: 0;
	margin: 0;
}
p {
	margin: 0;
}
[lang] {
  display: none;
}
[lang="vi"] {
  display: unset;
}
.gsi-material-button {
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	-webkit-appearance: none;
	background-color: WHITE;
	background-image: none;
	border: 1px solid #747775;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	color: #1f1f1f;
	cursor: pointer;
	font-size: 14px;
	height: 35px;
	letter-spacing: 0.25px;
	outline: none;
	overflow: hidden;
	padding: 0 12px;
	position: relative;
	text-align: center;
	-webkit-transition: background-color .218s, border-color .218s, box-shadow .218s;
	transition: background-color .218s, border-color .218s, box-shadow .218s;
	vertical-align: middle;
	white-space: nowrap;
	width: auto;
	max-width: 400px;
	min-width: min-content;
  }
  
  .gsi-material-button .gsi-material-button-icon {
	height: 20px;
	margin-right: 8px;
	min-width: 20px;
	width: 20px;
  }
  
  .gsi-material-button .gsi-material-button-content-wrapper {
	-webkit-align-items: center;
	align-items: center;
	display: flex;
	-webkit-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: nowrap;
	flex-wrap: nowrap;
	height: 100%;
	justify-content: space-between;
	position: relative;
	width: 100%;
  }
  
  .gsi-material-button .gsi-material-button-contents {
	-webkit-flex-grow: 1;
	flex-grow: 1;
	font-weight: 500;
	overflow: hidden;
	text-overflow: ellipsis;
	vertical-align: top;
  }
  
  .gsi-material-button .gsi-material-button-state {
	-webkit-transition: opacity .218s;
	transition: opacity .218s;
	bottom: 0;
	left: 0;
	opacity: 0;
	position: absolute;
	right: 0;
	top: 0;
  }
  
  .gsi-material-button:disabled {
	cursor: default;
	background-color: #ffffff61;
	border-color: #1f1f1f1f;
  }
  
  .gsi-material-button:disabled .gsi-material-button-contents {
	opacity: 38%;
  }
  
  .gsi-material-button:disabled .gsi-material-button-icon {
	opacity: 38%;
  }
  
  .gsi-material-button:not(:disabled):active .gsi-material-button-state, 
  .gsi-material-button:not(:disabled):focus .gsi-material-button-state {
	background-color: #303030;
	opacity: 12%;
  }
  
  .gsi-material-button:not(:disabled):hover {
	-webkit-box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
	box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
  }
  
  .gsi-material-button:not(:disabled):hover .gsi-material-button-state {
	background-color: #303030;
	opacity: 8%;
  }
dialog {
  padding: 5px;
  margin: auto;
}
::backdrop {
  background-image: linear-gradient(45deg, #ff00ff3d, #6633993d, #1e90ff3d, #0080003d);
    /* opacity: 0.75; */
    backdrop-filter: blur(12px);
}
.modal-card-head {
  padding: 5px;
  background: red;
  color: white;
  font-weight: bold;
  margin-bottom: 10px;
}
.modal-card-title {
	text-align: center;
}
.modal-card-head .delete {
  width: 20px;
  height: 26px;
  color: white;
  background: red;
  font-weight: bold;
  border: 1px solid red;
  outline: none;
  position: absolute;
  top: 0px;
  right: 8px;
}
.modal-card-body {
  padding: 0 10px 10px;
  text-align: center;
  line-height: 25px;
}
.modal-close {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background-color: rgba(10, 10, 10, 0.2);
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  pointer-events: auto;
  display: inline-block;
  flex-grow: 0;
  flex-shrink: 0;
  font-size: 0;
  height: 20px;
  max-height: 20px;
  max-width: 20px;
  min-height: 20px;
  min-width: 20px;
  outline: none;
  position: relative;
  vertical-align: top;
  width: 20px;
}

.delete::before,.modal-close::before,.delete::after,.modal-close::after {
  background-color: white;
  content: "";
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform-origin: center center;
}

.delete::before,.modal-close::before {
  height: 2px;
  width: 50%;
}

.delete::after,.modal-close::after {
  height: 50%;
  width: 2px;
}

.delete:hover,.modal-close:hover,.delete:focus,.modal-close:focus {
  background-color: rgba(10, 10, 10, 0.3);
}

.delete:active,.modal-close:active {
  background-color: rgba(10, 10, 10, 0.4);
}

.is-small.delete,.is-small.modal-close {
  height: 16px;
  max-height: 16px;
  max-width: 16px;
  min-height: 16px;
  min-width: 16px;
  width: 16px;
}

.is-medium.delete,.is-medium.modal-close {
  height: 24px;
  max-height: 24px;
  max-width: 24px;
  min-height: 24px;
  min-width: 24px;
  width: 24px;
}

.is-large.delete,.is-large.modal-close {
  height: 32px;
  max-height: 32px;
  max-width: 32px;
  min-height: 32px;
  min-width: 32px;
  width: 32px;
}
.modal,.modal-background {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.modal {
  align-items: center;
  display: none;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  position: absolute;
  z-index: 9999;
}

.modal.is-active {
  display: flex;
}

.modal-background {
  background-color: rgba(10, 10, 10, 0.86);
}

.modal-content,
.modal-card {
  margin: 0 20px;
  max-height: calc(100vh - 160px);
  overflow: auto;
  position: relative;
  width: 100%;
}

@media screen and (min-width: 769px) {
  .modal-content,
  .modal-card {
    margin: 0 auto;
    max-height: calc(100vh - 40px);
    width: 640px;
  }
}

.modal-close {
  background: none;
  height: 40px;
  position: fixed;
  right: 20px;
  top: 20px;
  width: 40px;
}

.modal-card {
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 40px);
  overflow: hidden;
  -ms-overflow-y: visible;
}

.modal-card-head,
.modal-card-foot {
  align-items: center;
  background-color: whitesmoke;
  display: flex;
  flex-shrink: 0;
  justify-content: flex-start;
  padding: 7px;
  position: relative;
}

.modal-card-head {
  border-bottom: 1px solid #dbdbdb;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.modal-card-title {
  color: #363636;
  flex-grow: 1;
  flex-shrink: 0;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
}

.modal-card-foot {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  border-top: 1px solid #dbdbdb;
}

.modal-card-foot .button:not(:last-child) {
  margin-right: 0.5em;
}

.modal-card-body {
  -webkit-overflow-scrolling: touch;
  background-color: white;
  flex-grow: 1;
  flex-shrink: 1;
  overflow: auto;
  padding: 10px;
}
.main-wraper {

}
.top-bar {
	padding: 5px;
    background-color: #607D8B;
	text-align: right;
}
.loginBtn {
	display: inline-block;
}
.loginBtn.welcome {
	
}
.usr-welcome {

}
.usr-profile-pic {

}
.usr-profile-name {
	max-width: 100px;
}
.usr-dropdown {
	display: none;
	position: absolute;
	width: 150px;
    background: white;
	text-align: center;
    border-radius: 5px;
    border: 1px solid #607D8B;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
}
.loginBtn.welcome:hover .usr-dropdown {
	display: block;
}
.usr-dropdown-lst {
	list-style: none;
}
.usr-dropdown-btn {
	padding: 8px 20px;
	cursor: pointer;
}
.usr-dropdown-btn:hover {
	background: #2196F3;
    color: white;
}
.usr-dropdown-separator {
	border-bottom: 1px solid #607D8B;
}
.usr-logout {

}
.generator-wrapper {
	
}
.generator-tool {
	display: flex;
	flex-wrap: wrap;
	border: 2px solid royalblue;
	margin: 10px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, .3);
    border-radius: 5px;
}
.img-generator {

}
.generator-title {
	padding: 10px;
    background: #607D8B;
	flex: 100%;
}
.generator-title h3 {
	margin: 0;
    color: white;
}
.generator-params {
	flex: 50%;
	padding: 0 5px;
    box-sizing: border-box;
	border-right: 2px solid #4169e1;
	border-top: 2px solid #4169e1;
}
.generator-param {
	padding: 5px 5px 0;
}
.generator-param-title h3 {
	display: inline-block;
	font-weight: bold;
    margin: 10px 0 5px;
}
.generator-param-description {
	display: inline-block;
	margin: 0 15px 5px;
	font-size: 14px;
    font-style: italic;
}
.generator-param-input {
	display: flex;
}
.generator-input {
	width: 100%;
	padding: 3px;
}
textarea.generator-input {
	height: 60px;
	resize: vertical;
}
.img-generator-prompt {
	height: 50px;
}
.input_checkbox {
  width: 17px;
  height: 17px;
}
.param-hidden {
	display: none;
}
.num_input_range[type="number"] {
	width: 100px;
}
.num_input_range[type="range"] {
	margin-left: 10px;
}
.genarator-start-wrapper {
	position: sticky;
    bottom: 0px;
    background: #4169e1;
    padding: 10px;
    margin: 15px -5px 0 -5px;
    border-top: 3px solid #3F51B5;
    box-shadow: 0px -6px 6px rgba(0, 0, 0, 0.3);
	text-align: right;
}
.generator-start-btn {
	display: inline-block;
  background: #FF9800;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: bold;
  border: 2px solid black;
	cursor: pointer;
}
.generator-start-btn.disabled {
  background: #9E9E9E;
  color: #757575;
  border: 2px solid #616161;
}
.generator-reset-btn {
  display: inline-block;
  background: #F44336;
  padding: 5px 10px;
  border-radius: 5px;
  margin-right: 10px;
  font-weight: bold;
  border: 2px solid black;
  cursor: pointer;
}
.generator-outputs {
	flex: 50%;
  box-sizing: border-box;
	border-top: 2px solid #4169e1;
}
.generator-output-results {

}
.generator-output-result {

}
.generator-output-log {
  border-bottom: 2px solid #4169e1;
  margin-bottom: 10px;
  padding: 10px 5px;
}
.generator-output-show {
  text-align: center;
  padding: 5px;
}
.generator-output-show img {
  max-width: 100%;
}
.generator-output-show video {
  max-width: 100%;
}

.lds-dual-ring,
.lds-dual-ring:after {
  box-sizing: border-box;
}
.lds-dual-ring {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-bottom: -4px;
}
.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 3.5px solid currentColor;
  border-color: currentColor transparent currentColor transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
.generator-start-btn.disabled .lds-dual-ring:after {
  border: 3.5px solid #757575;
  border-color: #757575 transparent #757575 transparent;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.btn-text {
  display: inline-block;
}
