@font-face {
    font-family: ComputerModern;
    src: url(/ComputerModernSerif.ttf);
}
* {
    font-family: ComputerModern;
    box-sizing: border-box;
    /*transition: all 150ms linear;**/
}
body {
    overflow: hidden;
    background-color: powderblue;
    display: flex;
    flex-direction: column;
    border: 0;
    height: 100vh;
    max-height: 100vh;
    padding: 0;
    margin: 0;
}
p, button:not(.smallTextButton) {
    font-size: 14pt;
}
.outlineddiv {
    border-radius: 20px;
    /*box-shadow: 2px 2px 7px #DDDDDD;**/
    border: 1px #888888 solid;
    background-color: white;
    user-select: none;
}
button {
    transition: all 150ms linear;
    padding-left: 10px;
    padding-right: 10px;
}
button:not(.incrementButton) {
    border-radius: 15px;
    /*box-shadow: 2px 2px 7px #DDDDDD;**/
    border: 1px #888888 solid;
    background-color: white;
}
button:hover:not(:disabled) {
    background-color: #dddddd;
    border-radius: 5px;
}
button:disabled {
    background-color: #bbb;
    color: #666;
}
button:active {
    background-color: #cccccc;
}
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
}
#topbar {
    width: 100%;
    min-height: 200px;
    border-radius: 0;
    display: flex;
    align-items: stretch;
    overflow-x: scroll;
    justify-content: center;
}
#topbar, #passedMotionDetails {
    background-color: color-mix(in srgb, powderblue 20%, white 80%);
}
#topbar > div {
    min-height: 150px !important;
}
#numberinfocontainer {
    position: absolute;
    right: 0;
    width: 15%;
    height: 100%;
}
#bottomarea {
    height: 100%;
    border: 1px #c0c0c0 solid;
    background-color: transparent;
    overflow-y: scroll;
}
#leftbottomarea, #rightbottomarea {
    width: 100%;
    height: 100%;
    border: 0;
    background-color: transparent;
}
#leftbottomarea {
    overflow-y: scroll;
    overflow-x: hidden;
    z-index: 0;
}
#rightbottomarea {
    z-index: 5;
    padding-left:  20px;
    padding-right: 20px;
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: 100%;
    transition: all 150ms linear;
    padding: 20px;
}
#passedMotionCountryChooser, #passedMotionDetails {
    box-sizing: border-box;
    height: 100%;
    width: 100%;
    padding: 20px;
}
#passedMotionCountryChooser {
    width: 40%;
    overflow-y: scroll;
    height: 100%;
    max-height: 100%;
}
#passedMotionDetails {
    display: flex;
    flex-direction: row;
    gap: 20px;
    height: 100%;
    padding-bottom: 20px;
}
#passedMotionDetails > * {
    width: 100%;
    text-align: center;
}
#peopleeditcontainer {
    padding: 10px;
}
#peopleedit {
    padding: 15px;
    height: 100%;
    display: flex;
    justify-content: center;
}
#peopleedit > * {
    padding-left: 10px;
    padding-right: 10px;
}
#leftDelegateBox {
    height: 100%;
    text-align: center;
    display: grid;
    place-items: center;
}
.middleLine {
    background-color: #555;
    width: 2px !important;
    height: 100%;
    padding: 0 !important;
}
#rightDelegateBox {
    height: 100%;
    text-align: left;
    vertical-align: middle;
    align-items: center;
    display: grid;
    place-items: center;
    white-space: nowrap;
}
#exitCurrentMotionContainer {
    padding: 10px;
}
#newmotions, #exitCurrentMotion {
    margin: 10px;
    padding: 10px;
    text-align: center;
}
#newmotions {
    display: flex;
    flex-direction: column;
}
#newmotionsinner {
    height: 100%;
    align-items: center;
    display: flex;
}
#newmotionsinnerinner {
    width: 100%;
}
#newmotionsinnerinner > * {
    display: inline;
    min-width: calc(33% - 10px);
    justify-content: start;
    margin-bottom: 5px;
    vertical-align: middle;
    padding: 5px;
    display: inline-block;
    transition: all 150ms linear;
    font-size: 110%;
}
#newmotionsinnerinner > div:hover {
    background-color: #ddd;
    border-radius: 5px;
}
#motiondisplays {
    padding: 10px;
    border: 0;
    overflow-y: scroll;
}
.innermotiondisplay {
    width: 100%;
    height: 150px;
    padding: 15px;
    padding-left: 35px;
    padding-right: 35px;
    background-color: white;
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
}
.innermotiondisplay > * {
    width: 50%;
    margin:auto;
}
#popupPage {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #0006;
    z-index: 15;

    display: none;
}
#popupPage > div.outlineddiv {
    position: absolute;
    width: 60%;
    height: 40%;
    left: 20%;
    top: 30%;
    box-shadow: 2px 2px 7px #777;
    overflow: scroll;
    display: flex;
    font-size: 150%;
}
#popupPage > div.outlineddiv:not(#editDelegateList) {
    text-align: center;
    align-items: center;
    display: grid;
    place-items: center;
}
#popupPage > div.largePopup {
    top: 20%;
    height: 60%;
}
#exitButtons {
    position: absolute;
    width: 50%;
    left: 25%;
    top: 5%;
    display: block !important;
    text-align: center;
}
#exitButtons > * {
    padding: 10px;
    margin-left: 10px;
    display: inline;
}
p {
    margin: 0;
}
input {
    border-radius: 0;
    border: solid #888 1px;
}
.incrementButton {
    line-height: inherit;
    border-radius: 0;
    width: 25px;
    border: solid #888 1px;
    background-color: white;
    padding: 0;
}
.alignchildrenspan {
    display: inline-grid;
    grid-auto-flow: column;
}
#editDelegateList {
    text-align: left;
    display: flex;
    padding: 15px !important;
    align-items: stretch;
    overflow: hidden !important;
    flex-direction: column;
}
.countryListOne {
    transition: all 150ms linear;
    font-size: 14pt;
    text-align: center;
    margin: 0;
}
.countryListInner {
    width: 60%;
    padding: 5px;
    border-radius: 7px;
    margin: 0;
    margin-left: 20% !important;
    transition: all 150ms linear;
}
.countryListInner:hover {
    background-color: #ccc;
}
#innerDelegateList {
    width: 100%;
    height: 85%;
}
#delegateListSearch {
    width: 100%;
    z-index: 5;
    padding: 10px;
}
input[type="text"], input[type="password"], input[type="number"] {
    font-size: 100%;
    border-radius: 15px;
    text-align: center;
    padding: 3px;
    transition: all 150ms linear;
}
input[type="text"]:focus-visible, input[type="number"]:focus-visible {
    border-radius: 5px;
}
#newModTopic {
    text-align: left;
}
#attendanceListOfCountries > * {
    margin: 20px;
    display: none;
}
#attendanceAlert {
    display: block;
}
.largeTextInput {
    width: 100px;
}
.zoomInALittle {
    font-size: 18pt;
}
#oneLargeTimer {
    font-size: 132pt;
}
#chosenCountriesForTimer {
    padding: 20px;
    overflow-y: scroll;
    overflow-x: hidden;
}
#chosenCountriesForTimer > * {
    padding: 7px;
}
#chosenCountriesForTimer > *:not(:last-child) {
    margin-bottom: 10px;
}
.marginizechildren {
    display: flex;
}
.marginizechildren > * {
    width: 100%;
    box-sizing: border-box;
    padding-left: 20px;
    padding-right: 20px;
}
.bottomMarginChildren > * {
    margin-bottom: 5px;
}
#chosenCountriesContainer {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
#numberOfAddedCountriesLabel {
    text-align: center;
}
#chosenCountriesForTimer {
    height: 100%;
}
#alertContainer {
    display: none;
    flex-direction: row;
    position: absolute;
    top: 5%;
    left: 10%;
    max-width: 80%;
    min-width: 80%;
    z-index: 1000;
    padding: 20px;
    box-shadow: 2px 2px 20px #888;
    background-color: color-mix(in srgb, powderblue 20%, white 80%);
}
#alertContainer > * {
    padding: 5px;
}
/*#logoContainer {
    margin: 10px;
    padding: 20px;
    text-align: center;
    line-height: 100%;
    display: flex;
}*/
#UNLogo {
    display: inline-block;
    vertical-align: middle;
    align-self: center;
    border-radius: 10%;
}
#timerControlsContainer {
    display: flex;
}
#timerControlsContainer > * {
    width: 100%;
    height: 100%;
    margin: 10px;
    box-shadow: 0px 0px 5px powderblue;
    border-radius: 30px;
    font-size: 18pt;
}
#timerControlsContainer > *:hover {
    border-radius: 5px;
}
#rollCallVotePopup {
    height: 60% !important;
    padding: 20px;
    display: none;
}
#rollCallVoteResults {
    background-color: #ddd;
    height: 30px;
    border-radius: 20px;
    display: block;
    overflow: hidden;
    position: relative;
}
#yeaRollCallSegment {
    position: absolute;
    left: 0;
    top: 0;
    background-color: #0f0;
    width: 0;
    height: 100%;
    overflow: visible;
    text-align: center;
    padding-left: 10px;
    transition: 0.3s ease-in-out all;
}
#nayRollCallSegment {
    position: absolute;
    background-color: rgb(255, 119, 119);
    right: 0;
    top: 0;
    width: 0;
    height: 100%;
    overflow: visible;
    text-align: center;
    transition: 0.3s ease-in-out all;
}
#abstainRollCallSegment {
    position: absolute;
    background-color: #ddd;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    text-align: center;
    transition: 0.3s ease-in-out all;
}
#rollCallButtonContainer {
    display: flex;
    gap: 10px;
    flex-direction: row;
}
#rollCallButtonContainer > * {
    width: 100%;
    height: 100px;
}
#rollCallBottomArea {
    display: inline-flex;
    width: 100%;
    overflow: auto;
    margin-top: 10px !important;
    gap: 10px;
    max-height: 70%;
}
#rollCallBottomArea > * {
    width: 100%;
}
#rollCallPastChoices {
    padding: 20px;
    overflow-y: scroll !important;
    overflow-x: hidden !important;
}
#rollCallPastChoices > * {
    border-radius: 15px;
    width: 100%;
    border: 1px solid #888;
    display: flex;
    padding: 15px;
    vertical-align: middle;
    margin-bottom: 20px;
    transition: all linear 0.15s;
}
.expandAllTheWay {
    width: 100%;
}
#rollCallVotePopup {
    overflow: hidden !important;
}
#rollCallVotePopup > * {
    margin: 0;
}
#allAbsentButton:active {
    background-color: red;
}
#allPresentButton:active {
    background-color: #00ff00;
}
#allPrVButton:active {
    background-color: powderblue;
}
.entireLineHeight {
    line-height: 100%;
    vertical-align: middle;
}
#cloudStuffInner {
    display: grid;
    place-items: center;
    padding: 10px;
    margin: 10px;
}
#legalStuffEwww {
    padding: 30px;
}
#floatBottomRight > * {
    font-size: 125%;
}
#floatBottomRight {
    position: absolute;
    right: 30px;
    bottom: 30px;
}
#floatBottomRight > * {
    padding: 10px;
    margin: 10px;
    box-shadow: 0px 0px 7px #777;
}
#committeeNameContainer {
    text-align: center;
    max-width: 100vw;
    padding: 5px;
    background-color: white;
}
#committeeName {
    margin: 0;
    text-align: center;
    display: inline;
    width: 100%;
    font-size: 200%;
    background-color: color-mix(in srgb, powderblue 20%, white 80%);
}
#impromptuTimerLabel {
    font-size: 108pt;
    border: 1px solid transparent;
    transition: 150ms;
}
#impromptuTimerLabel:hover {
    border: 1px solid black;
}
#impromptuTimerLabel:active {
    border: 1px solid black;
}
#impromptuTimer {
    display: flex;
    flex-direction: row;
    padding: 20px;
}
#impromptuTimer > * {
    width:  100%;
    min-height: 0;
}
#backgroundLogoContainer {
    position: absolute;
    left: 10%;
    top: calc(50vh - 40vw);
    width: 80%;
    max-width: 80vw;
    z-index: -10;
    opacity: 0.2;
}
#backgroundLogo {
    width: 100%;
}
#quickStartPopup > p {
    font-size: 100%;
}
#delegateListSearchBottomContainer {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
}
#searchbarContainer {
    display: flex;
    align-items: stretch;
    gap: 10px;
}
#newMotionLabel > * {
    margin: 0;
}
#jccPassPaperContainer {
    display: none;
}