/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
    font-family: "Ubuntu", sans-serif;

}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
*{
    font-family: "Ubuntu", sans-serif;
    box-sizing: border-box;
}

div#app {
    width: 100%;
    height: 100%;
    background-color: rgb(228, 228, 228);
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 100px 1fr;
}

.toolbar {
    background-color: white;
    padding: 20px;
}
.toolbar > *{
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.toolbar {
    background-color: white;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
}

.icons {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(100px , 1fr));
    grid-gap: 10px;
}
.icon > span {
    font-size: 13px;
    text-align: center;
    color: grey;
}
.icon > img{
    width: 40px;
}
.icon {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 5px;
    border-radius: 5px;
    background-color: white;
    cursor: pointer;
}
.icon:hover{
    background-color: rgb(239, 239, 239);
}
input[type="text"] {
    padding: 9px;
    border-radius: 5px;
    border: 0px solid red;
    background-color: #ececec;
    color: black;
    margin-top: 10px;
}
.modal {
    width: 400px;
    height: 500px;
    position: fixed;
    left: calc(50% - 200px);
    top: calc(50% - 250px);
    z-index: 3;
    background-color: white;
    border-radius: 20px;
    padding: 20px;
}
.fader{
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.5);
}
.modal > h3 {
    text-align: center;
    font-weight: 700;
    font-size: 25px;
}
.icon_preview {
    background-color: #e6e6e6;
    padding: 30px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    border-radius: 4px;
}
.icon_preview > img{
    width: 100px;
}
.icon_field {
    margin-top: 10px;
    width: 100%;
    display: grid;
    grid-template-columns: 60px 1fr 100px;
    padding: 10px;
    background-color: #ffffff;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
    border-radius: 5px;
    grid-gap: 5px;
}
.icon_field > span{
    font-size: 13px;
    color: grey;

}

.icon_text {
    font-size: 10px;
    height: 30px;
    display: flex;
    overflow: hidden;
    line-height: 30px;
    padding-left: 10px;
    background-color: rgb(249 249 249);
    border-radius: 5px;
    word-break: break-all;
}
.field_download,
.icon_field > button{
    width: 100%;
    height: 100%;
    border: 0px;
    background-color: transparent;
    cursor: pointer;
    background-color: #0053ff;
    background-image: linear-gradient(0deg, #0053ff 0%, #0088ff 100%);
    color: white;
    border-radius: 5px;
}
.field_download{
    width: 100%;
    padding: 10px;
    height: auto;
    float :left;
    margin-top: 20px;
}
.icon_color {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-gap: 10px;
    align-items: center;
    align-content: center;
    margin-top: 10px;
}
.icon_color > input{
    margin-top: 0px!important;
}
.icon_preview > span > svg {
    width: 90px;
    height: 90px;
}


.close{
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    font-size: 20px;
    color: grey;
}
/* HTML: <div class="loader"></div> */
.loader {
    width: 100px;
    aspect-ratio: 1;
    padding: 10px;
    box-sizing: border-box;
    display: grid;
    background: #fff;
    filter: blur(5px) contrast(10);
    mix-blend-mode: darken;
  }
  .loader:before,
  .loader:after{
    content: "";
    grid-area: 1/1;
    background:
      linear-gradient(#000 0 0) left,
      linear-gradient(#000 0 0) right;
    background-size: 20px 40px;
    background-origin: content-box;
    background-repeat: no-repeat;
  }
  .loader:after {
    height: 20px;
    width:  20px;
    margin: auto 0;
    border-radius: 50%;
    background: #000;
    animation: l10 1s infinite;
  }
  @keyframes l10{
    90%,100% {transform: translate(300%)}
  }

  .fader_white{
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
  }