/* General Modal */
.general_modal {
     cursor: pointer;
}
.general_modal_div {
     width: 600px;
     overflow: visible !important;
     position: relative;
     cursor: default;
}
.general_modal_title {
     font-family: Arial;
}
.general_modal_paragraph {font-family: Arial;}
.general_modal_interactive_div {
     width: 100%;
     display: flex;
     justify-content: center;
     align-items: center;
     font-family: Arial;
}
.general_modal_interactive_div[vertical] {
     flex-direction: column;
}
.general_modal_interactive_div:not([vertical]) > button:not(:first-child):not(.firmware_picker_button){
     margin-left: 5px;
}
.general_modal_interactive_div[vertical] > button:not(:first-child):not(.firmware_picker_button) {
     margin-top: 5px;
}
.general_modal_interactive_div button:not(.firmware_picker_button) {
     padding: 10px;
	color: #fff;
	/* background: #0098cb; */
     background-color: #337CA0;
	width: 329px;
	margin: 0px;
	border: 0px;
	border-radius: 3px;
	cursor: pointer;
     font-family: Arial;
     font-size: 16px;
}
.general_modal_interactive_div button:hover:not(.firmware_picker_button) {background: #00b8eb;}

.general_modal_buttons_div_container, .general_modal_buttons_div {
     width: 100%;
     display: flex;
     justify-content: center;
     align-items: center;
     font-family: Arial;
}
.general_modal_buttons_div { width: 500px; margin-top: 10px;}
.general_modal_buttons_div button {
     padding: 10px;
	/* color: #fff; */
     /* background-color: #337CA0; */
	width: 329px;
	margin: 0px;
	/* border: 0px; */
	/* border-radius: 3px; */
	/* cursor: pointer; */
     /* font-family: Arial; */
     /* font-size: 16px; */
     /* transition: all 300ms ease-in; */
}
/* .general_modal_buttons_div button:not([disabled]):hover {background: #00b8eb;} */
.general_modal_buttons_div button[disabled] {
     /* opacity: 0.6; */
     cursor: default;
}

.general_modal_buttons_div:not([vertical]) > button:not(:first-child){ margin-left: 5px; }
.general_modal_buttons_div[vertical] > button:not(:first-child) { margin-top: 5px; }

.general_modal_div button[distructive]:not(.firmware_picker_button) {
     /* color: #fff; */
     /* background-color: #c1326a; */
     /* color: #902826; //MILD COLORS (MODERN)
     background-color: #e4b6b6; */
     /* transition: all 500ms ease-in; */
}
.general_modal_div button[distructive]:hover:not(.firmware_picker_button) {
     /* color: #902826; */
     /* background-color: #e4b6b6; */
}


.general_modal_div::before {
     position: absolute;
     font-family: 'Material Icons';
     font-size: 45px;
     color: white;
     content: "close";
     right: -45px;
     top: -40px;
     pointer-events: none;
}
.general_modal_div.hideCloseIcon::before { display: none; }

.overlayCloseButton::before {
     position: absolute;
     font-family: 'Material Icons';
     font-size: 45px;
     color: white;
     content: "close";
     right: -45px;
     top: -40px;
     pointer-events: none;
}

/* MODAL STYLES */
.modal {
     font-family: Arial;
}
.modal_label_title_div {
     display: flex;
     justify-content: space-between;
     align-items: flex-end;
     font-family: Arial;
}
.modal_label_title {
     margin: 0px;
}
.modal_label_title_secondary_info {
     font-size: 12px;
     color: #62707d;
}

.overlay {
     background: rgba(0,0,0,0.4);
     position: absolute;
     top: 0px;
     bottom: 0px;
     left: 0px;
     right: 0px;
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 1000;
     cursor: pointer;
}
.overlayInner {
     /* width: 600px; */
     background: #E9E9E9;
     border-radius: 7px;
     overflow: visible;
     text-align: center;
     padding: 10px;
     position: relative;
     cursor: auto;
}
.overlayInner::before {
     position: absolute;
     font-family: 'Material Icons';
     font-size: 45px;
     color: white;
     content: "close";
     right: -45px;
     top: -40px;
     pointer-events: none;
}
.overlayCloseButton::before {
     position: absolute;
     font-family: 'Material Icons';
     font-size: 45px;
     color: white;
     content: "close";
     right: -45px;
     top: -40px;
     pointer-events: none;
}
.overlayFloatingTitle::after {
     position: absolute;
     font-family: 'Arial';
     font-size: 33px;
     color: white;
     content: "";
     left: 0px;
     top: -40px;
     pointer-events: none;
}

.modal_list {
     width: 90%;
     list-style: none;
     columns: 3;
     padding: 0px;
}
.modal_list li { padding: 3px 5px; }
