@charset "utf-8";
/* CSS Document */

div.commctrls-filedialog-div {
    display: flex;
    justify-content: left;
    align-items: flex-start;
}

div.commctrls-filedialog-div ul {
    margin: 0.1em 2em 0em 0em;
}

div.commctrls-filedialog-div ul li {
    margin: 0.2em 0em 0.2em 0em;
    line-height: 1.2em;
}

div.commctrls-filedialog-div input[type="file"] {
    display: none;
    line-height: 1.7em;
    padding: 0px;
    margin: 0px;
}

div.commctrls-filedialog-div label {
    border: none;
    border-radius: 5px;
    line-height: 2em;
    font-size: var(--font-size-090);
    padding: 0.1em 1.5em 0.1em 1.5em;
    margin: 0px;
    background-color: var(--color-button);
    color: white;
    display: inline-block;
    position: relative;
    cursor: pointer;
}

div.commctrls-filedialog-div label:hover {
    background-color: var(--color-button-hover);
    transition: 0.1s ease-out;
}

div.commctrls-filedialog-div label::after {
    content: "";
    color: transparent;
    width: 0px;
    height: 0px;
    position: absolute;
}


.commctrls-dialog {
    position: absolute;
    top: 200px;
    left: 200px;
	padding: 1em;
    display: flex;
    flex-direction: column;
    align-items: end;
	gap: 2em 2em;
    border: 2px solid #ddd;
}

.commctrls-dialog div {
	padding: 0 0 0 30px;
    background-image: url(../img/exclamation.png);
	background-size:contain;
	background-position:left;
	background-repeat:no-repeat;
}

.commctrls-dialog p {
    font-size: var(--font-size-100);
    color: var(--color-normal);
}

.commctrls-dialog button {
    border: 2px solid #cccccc;
	border-radius: 3px;
	font-size: var(--font-size-090);
	padding: 0.1em 1em 0.1em 1em;
	margin: 0px;
    background-color: white;
    color: var(--color-normal);
}
