﻿@font-face {
  font-family: 'Roboto';
  font-style: normal;
  src: url('../Fonts/Roboto/Roboto-Regular.ttf') format('ttf'), url('../Fonts/Roboto/Roboto-Regular.woff') format('woff');
  /* old browsers */
}
@font-face {
  font-family: 'Roboto-Medium';
  font-style: normal;
  font-weight: 500;
  src: url('../Fonts/Roboto/Roboto-Medium.ttf') format('ttf'), url('../Fonts/Roboto/Roboto-Medium.woff') format('woff');
  /* old browsers */
}
@font-face {
  font-family: 'Roboto-Bold';
  font-style: normal;
  font-weight: 600;
  src: url('../Fonts/Roboto/Roboto-Bold.ttf') format('woff');
}
#dialog-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  /* Semi-transparent black */
  z-index: 999;
  /* Ensure it's on top of other elements */
}
dialog {
  top: 50%;
  transform: translate(0, -50%);
  display: none;
  flex-flow: column nowrap;
  border: none;
  padding: 20px;
  border-radius: 15px;
  background-color: white;
  outline: none;
  z-index: 1000;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px !important;
  gap: 10px;
}
.confirm-dialog {
  z-index: 13001;
}
.dialog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: 300px;
}
.dialog-header img {
  height: 30px !important;
}
.dialog-header .dialog-title {
  display: flex;
  font-size: 1.75em;
  align-items: center;
  font-family: Roboto-Bold, Tahoma, sans-serif !important;
}
.dialog-header .dialog-title * {
  font-family: Roboto-Bold, Tahoma, sans-serif !important;
  font-weight: bold;
}
.dialog-header .dialog-title img {
  margin-right: 15px;
}
.dialog-content {
  display: flex !important;
  flex-flow: column nowrap;
  font-family: Roboto, Tahoma, sans-serif;
  justify-content: center;
}
.message {
  font-size: 16px;
  padding-block: 20px !important;
  font-family: Roboto-Bold, Tahoma, sans-serif !important;
  align-self: center;
}
#dialog-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
}