.popupDialog * {
    font-family: Cascadia Code, Roboto Mono, Cascadia Mono, sans-serif;
    margin: 0;
    padding: 0;
    color-scheme: dark;
}

.blur {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.popupDialog {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);

    height: auto;
    max-height: 90%;
    min-height: 100px;
    width: calc(100% - 2px);
    max-width: 700px;

    border: 2px solid white;
    border-radius: 10px;

    display: grid;
    z-index: 10;
    background-color: #232529;
    color: white;    
    transition: opacity 0.2s;

    overflow-y: auto;
    overflow-x: hidden;
}

.popupDialog h1 {
    font-size: 200%;
    padding: 15px;
    text-align: center;
}

.popupDialog p, 
.popupDialog h3, 
.popupDialog a {
    padding: 10px;
    text-align: center;
}

.popupDialog input, 
.popupDialog button, 
.popupDialog textarea, 
.popupDialog audio {
    width: 90%;
    background-color: rgb(60, 61, 63);
    color: white;
    padding: 20px;
    margin: auto;
    margin-bottom: 20px;
    border: 1px solid white;
    border-radius: 5px;
    font-size: 110%;
}

.popupDialog .tabcontent div {
    width: 90%;
    margin: auto;
}

.popupDialog audio { padding: 0; }

.popupDialog input[type=checkbox] {
    width: fit-content;
    width: 30px;
    height: 30px;
    padding: 100px;
    margin-right: 10px;
    margin-left: 35px;
}

.popupDialog label {
    vertical-align: 50%;
    text-align: center;
}

.popupDialog img, 
.popupDialog video {
    margin: auto;
    padding: 25px;
    border-radius: 35px;
    max-width: 90%;
}

.popupDialog button {
    cursor: pointer;    
}

.slimInput {
    padding: 10px !important;
}

.sliderContainer {
    width: 90%;
    color: white;
    padding: 20px;
    margin: auto;
    margin-bottom: 30px;
}

.dangerButton {
    background-color: rgba(255, 0, 0, 0.452) !important;
    color: white;
}

.warningButton {
    background-color: rgba(211, 197, 0, 0.568) !important;
    color: white;
}

.successButton {
    background-color: rgba(67, 211, 0, 0.274) !important;
    color: white;
}

.secondaryButton {
    background-color: rgba(0, 59, 185, 0.692) !important;
    color: white;
}

.seperator {
    width: 90%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.493);
    border-radius: 20px;
    margin: auto;
    margin-bottom: 25px;
}

.errorinformation {
    color: red;
    margin-bottom: 30px;
}


.tab a {
    text-decoration: none;
    display: block;
    padding: 15px;
    color: white;
    font-size: 20px;
    float: left;
    width: 100%;
    text-align: center;
    cursor: pointer;
    transition: .5s ease;
}

.tab {
    display: flex;
    justify-content: center;
    width: 100%;
}


.tabgroup {
    box-sizing: border-box;
}

.tabbar .active a {
    background-color: #2e3136;
    border-bottom: 1px white solid;
}

.tabbar {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: flex;
    width: 100%;
    justify-content: center;
}
  
.tabbar::after {
    content: "";
    display: table;
    clear: both;
}

.tabcontent > div:last-child {
    display: none;
}

.tabcontent {
    display: grid;
    place-items: center;
}
.popupDialog .tabcontent input, 
.popupDialog .tabcontent button {
    width: 100% !important;
}