@media (prefers-color-scheme: dark) {
    html {
      filter: invert(0);
    }
  }
.directorDropdownItem {
    padding-left: 2rem;
    width: 100%;
    height: 5rem;
    display: flex;
    align-items: center;
}
.directorDropdownItem.hidden
{
    display: none;
}
.directorDropdownItem.disabled
{
    opacity: 0.4;
    pointer-events: none;
}
.directorDropdownItem:hover {
    cursor: pointer;
    background-color: black;
}

::-webkit-scrollbar
{
    width: 1rem;

    background-color: #1E1E1E;
    scrollbar-color: #1E1E1E;
    scrollbar-width: thin;
}
::-webkit-scrollbar-thumb
{
    background-color: #000000;
    border-radius: 0.5rem;
}

.directorDropdownMenu::-webkit-scrollbar
{
    width: 1rem;

    background-color: #1E1E1E;
    scrollbar-color: #1E1E1E;
    scrollbar-width: thin;
}
.directorDropdownMenu::-webkit-scrollbar-thumb
{
    background-color: #000000;
    border-radius: 0.5rem;
}

.directorDropdownMenu {
    height: 0;
    width: 100%;
    background-color: #131313;
    overflow: hidden;
    overflow-y: scroll;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}
.directorDropdownMenu.phoneNumber
{
    width: 25rem;
}
.directorDropdownMenu.show {
    height: fit-content;
    max-height: 35rem;
}
.directorInputPhoneNumberContainer
{
    display: flex;
    flex-flow: row;
    align-items: center;
    column-gap: 2rem;
}
.directorInput {
    position: relative;
    display: flex;
    align-items: center;
    height: 6rem;
    width: 100%;
    padding: 0 2.4rem;
    background-color: #1c1c1c;
    border: 0.2rem solid #474c54;
    border-radius: 1rem;
    font-size: 1.4rem;
    font-family: Figtree, sans-serif;
    cursor: pointer;
    pointer-events: all;
}
.directorTextArea {
    color: white;
    position: relative;
    display: flex;
    min-height: 6rem;
    align-items: center;
    width: 100%;
    padding: 5%;
    background-color: #1c1c1c;
    border: 0.2rem solid #474c54;
    border-radius: 1rem;
    font-size: 1.4rem;
    font-family: Figtree, sans-serif;
    cursor: text;
    overflow: hidden;
}
.directorInput.disabled {
    pointer-events: none;
}
.directorInput.error {
    border: 0.2rem solid #dc3545;
}
.directorInput.phoneNumber
{
    width: 15rem;
}
.directorInputRow {
    display: flex;
    margin: 3rem;
}
.directorInputRow.hide {
    visibility: hidden;
}
.directorInputCol {
    width: 60%;
    display: flex;
    flex-direction: column;
    margin: 3rem;
}
.directorInputRowGroup {
    display: flex;
    width: 100%;
}
.directorInputTitleDescription {
    opacity: 0.5;
}
.directorInputDescription {
    margin-top: 1rem;
    opacity: 0.5;
}
.directorModalSectionHeader {
    display: flex;
    width: auto;
    align-items: center;
    margin: 3rem;
    height: 6rem;
    padding: 2rem;
    background-color: #202020;
    border-radius: 0.6rem;
    font-weight: bolder;
    letter-spacing: 0.3rem;
    font-size: 1.5rem;
}
.directorModalHeader {
    display: flex;
    align-items: center;
    height: 10rem;
    font-size: 2rem;
    padding-left: 3rem;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    background-color: #202020;
    font-family: Figtree, sans-serif;
    letter-spacing: 0.7056rem;
}
.directorModalFooter {
    display: flex;
    align-items: center;
    height: 10rem;
    font-size: 2rem;
    padding-left: 3rem;
    background-color: #202020;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    justify-content: right;
}

.directorModalHeaderImage {
    margin-right: 2rem;
}

.directorModalHeaderImage > img {
    width: 3.5rem;
}
.directorModalContent {
    width: 100rem;
    height: fit-content;
    background-color: #141414;
    border-radius: 1rem;
}
.alignment-arrow {
    margin-left: auto;
    width: 2rem;
    height: 2rem;
    transform: rotate(0deg);
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}
.alignment-arrow > img {
    width: 2rem;
    height: 2rem;
}
.alignment-arrow.show {
    transform: rotate(180deg);
}
.directorModal {
    visibility: hidden;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: visibility 0s, opacity 0.3s ease;
    position: fixed; /* Stay in place */
    z-index: 7777; /* Sit on top */
    left: 0;
    top: 0;
    width: 100vw; /* Full width */
    height: 100vh; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.8); /* Black w/ opacity */
}
.directorModal.show {
    display: flex;
    visibility: visible;
    opacity: 1;
}

.directorModal::-webkit-scrollbar {
    display: none;
}
.directorModal::-webkit-scrollbar {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}
.directorInput-square {
    width: 6rem !important;
    padding: 0 1.3rem !important;
}
.directorInputGroup-square {
    width: 7rem !important;
}
.directorInputGroup {
    display: flex;
    flex-direction: column;
    margin-right: 3rem;
    width: 100%;
}
.directorInputGroup.hide {
    visibility: hidden;
}
.directorInput > input {
    background: none;
    color: white;
    outline: none;
    width: 100%;
    border: none;
}
.directorInputBasicGroup {
    display: flex;
    margin-right: 3rem;
    width: 100%;
    align-items: center;
}
.directorInputTitle {
    color:  #999999;
    margin-bottom: 1rem;
    white-space: nowrap;
    font: normal normal normal 1.4rem/1.7rem Figtree;
    letter-spacing: 0.056rem;
    text-transform: uppercase;
}
.directorInputTitle.error
{
    color: #df2c48;
}
.directorInputTitle > span.red
{
    color: var(--director-red);
}
.directorSelectedDropdownItem {
    text-transform: capitalize;
}
.directorButton {
    box-sizing: border-box;
    font-size: 1.6rem;
    width: 18rem;
    border-radius: 0.8rem;
    display: flex;
    height: 6rem;
    justify-content: center;
    align-items: center;
    margin: 1rem;
    cursor: pointer;
}
.directorButton.buttonPrimary {
    box-sizing: border-box;
    background-color: #171717;
    border: 0.3rem solid #313131;
}
.directorButton.buttonRed {
    background-color: #df2c48;
}
.directorButton.small {
    box-sizing: border-box;
    font-size: 1.6rem;
    min-width: 14rem;
    width: fit-content;
    border-radius: 0.8rem;
    display: flex;
    height: 6rem;
    justify-content: center;
    align-items: center;
    margin: 1rem;
    cursor: pointer;
}
.directorButton.short
{
    min-width: 10rem;
    width: fit-content;
    height: 4rem;;
}
.directorButton.buttonSecondary {
    background-color: #272727;
}
.directorCloseModalButton.roundCloseButton {
    cursor: pointer;
    background-color: #303030;
    margin-left: auto;
    margin-right: 2rem;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    float: right;
    display: flex;
    align-items: center;
    justify-content: center;
}
.directorCloseModalButton > img {
    width: 50%;
    padding: 0.3rem;
}
.directorOptionsMenuButton {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    margin-left: auto;
    margin-right: 1.5rem;
    cursor: pointer;
    position: relative;
}

.directorOptionsMenu {
    visibility: hidden;
    width: fit-content;
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 0.8rem;
    background-color: #202020;
    position: absolute;
    top: -0.8rem;
    left: 5.5rem;
    z-index: 100;
    height: fit-content;
    max-height: 35rem;
}
.directorOptionsMenuButton-round {
    background-color: #2b3038;
}
.directorOptionsMenuItem {
    opacity: 0.5;
    cursor: pointer;
    width: 100%;
    margin: 1rem;
    position: sticky;
}
.directorOptionsMenuItem > img {
    width: 2rem;
}
.directorOptionsMenuItem:hover {
    opacity: 1;
}
.directorOptionsMenu.show {
    visibility: visible;
}
.director-text-danger {
    color: #df2c48;
}
.directorIcon {
    width: 100%;
}
.directorDotsIcon {
    width: 0.6rem;
}
.directorOptionsMenuItem[action-text]:hover:after {
    z-index: 9999;
    content: attr(action-text);
    color: #ffffff;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 1rem 2rem;
    border-radius: 1rem;
    margin-left: 2rem;
    top: -6.5rem;
    left: -6rem;
    word-wrap: break-word;
    min-width: 8rem;
    max-width: 38rem;
    margin-top: 2rem;
    text-align: center;
}
.director_alert_box {
    top: 90vh;
    opacity: 0;
    height: 8rem;
    overflow: hidden;
    width: 23rem;
    align-items: center;
    right: -23rem;
    position: fixed;
    background-color: #25292e;
    z-index: 9999999999;
    padding: 1.5rem;
    transition: 1s all ease-in-out;
    -webkit-transition: 1s all ease-in-out;
}
.director_alert_box.show {
    right: 0;
    opacity: 1;
}
.director_alert_box_title {
    font-size: 1.6rem;
    width: fit-content;
    width: -moz-fit-content;
    margin-left: auto;
    margin-right: auto;
    font-family: Figtree, sans-serif;
}
.director_alert_box_message {
    font-size: 1.4rem;
    width: fit-content;
    width: -moz-fit-content;
    margin-left: auto;
    margin-right: auto;
    font-family: Figtree, sans-serif;
}
.directorCheckbox {
    display: flex;
    align-items: start;
}
.directorCheckbox input[type="checkbox"] {
    display: none;
}

.directorCheckbox input + label {
    width: 1.4rem;
    height: 1.4rem;
    margin-top: 0.4rem;
    cursor: pointer;
    background-image: url("/images/Checkbox_Unchecked.svg");
    background-size: 1.4rem 1.4rem;
    background-repeat: no-repeat;
}
.directorCheckboxLabel {
    margin-left: 1rem;
}
.directorCheckbox input[type="checkbox"]:checked + label {
    background-image: url("/images/Checkbox_Checked.svg");
    background-size: 1.4rem 1.4rem;
    background-repeat: no-repeat;
}
.directorFilterDataOptions {
    height: 3rem;
    margin: 0 5% 1% 5%;
}
.directorFilterDropdownMenu {
    visibility: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    z-index: 1005;
    overflow: hidden;
    background: #1c1c1c;
    position: absolute;
    height: 0;
    top: 100%;
    left: 0;
    border-bottom-left-radius: 0.8rem;
    border-bottom-right-radius: 0.8rem;
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
}

.filter-director-expand-icon {
    margin-left: 3rem;
    transition: all 0.5s ease;
}
.filter-director-expand-icon.show {
    transform: rotate(180deg);
}
.directorFilterDropdownMenu.show {
    visibility: visible;
    height: fit-content;
}
.directorFilterDropdownButton {
    position: relative;
    display: flex;
    opacity: 1;
    overflow: visible;
    height: 5.5rem;
    background-color: #1c1c1c;
    margin-left: 2.5rem;
    align-items: center;
    border-radius: 0.5rem;
    font-size: 1.4rem;
    padding: 1.6rem 2.24rem 1.6rem 2.24rem;
    width: 22rem;
    justify-content: space-between;
    box-shadow: none;
    outline: none;
    cursor: pointer;
    transition: all 0.5s ease;
    font-family: Figtree, sans-serif;
    font-weight: bolder;
    -webkit-transition: all 0.5s ease;
}
.directorFilterDropdownButton > div > img {
    width: 2rem;
}
/** alert box **/
.confirm-alert.hide {
    display: none;
}
.confirm-alert {
    position: fixed;
    top: 0;
    left: 0;
    height:100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 99999;
    overflow: hidden;
}
.confirm-alert-container {
    background-color: #000000;
    height: fit-content;
    width: 50rem;
    margin-top: calc(20% - 15rem);
    margin-left: auto;
    margin-right: auto;
    border-radius: 1rem;
    padding: 3rem;
}
.confirm-alert-title {
    font-family: Figtree, sans-serif;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
}
.confirm-alert-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 0 auto;
    width: fit-content;
    width: -moz-fit-content;
}
.confirm-alert-button {
    cursor: pointer;
    text-decoration: none;
    outline: none;
    box-shadow: none;
    border: none;
    height: 5rem;
    width: 16rem;
    font-size: 1.44rem;
    text-align: center;
    border-radius: 1rem;
    color: #ffffff;
    opacity: 1;
    padding-top: 1.5rem;
    margin-right: 2rem;
    background-color: #df2c48;
    pointer-events: all;
    font-family: Figtree, sans-serif;
    transition: 0.5s opacity ease-in-out;
    -webkit-transition: 0.5s opacity ease-in-out;
}
.cancel-alert-button {
    cursor: pointer;
    text-decoration: none;
    outline: none;
    box-shadow: none;
    border: none;
    height: 5rem;
    width: 16rem;
    font-size: 1.44rem;
    text-align: center;
    border-radius: 1rem;
    color: #ffffff;
    opacity: 1;
    padding-top: 1.5rem;
    margin-right: 2rem;
    background-color: #1c1c1c;
    pointer-events: all;
    font-family: Figtree, sans-serif;
    transition: 0.5s opacity ease-in-out;
    -webkit-transition: 0.5s opacity ease-in-out;
}
/** end alert box **/
.directorTopSearchBarSpacer {
    display: flex;
    align-items: center;
    height: 4rem;
    width: 40rem;
    margin-left: auto;
    margin-right: 2rem;
    padding-left: 2rem;
}
.directorTopSearchBarSpacer:empty
{
    width: 0;
    margin: 0;
    padding: 0;
}

.directorTopSearchBar {
    display: flex;
    align-items: center;
    background-color: #000000;
    border-radius: 1rem;
    height: 4rem;
    width: 40rem;
    margin-left: auto;
    margin-right: 2rem;
    padding-left: 2rem;
}
.directorTopSearchBarInput {
    width: 100%;
    position: sticky;
}
.advanced-search-container.show
{
    display: flex;
}
.advanced-search-container
{
    display: none;
    position: absolute;
    top: 3rem;
    background-color: #000000;
    flex-flow: row;
    align-items: center;
    height: 4rem;
    width: 40rem;
    padding-left: 2rem;
    margin-left: -2rem;
    cursor: pointer;
    border-radius: 0 0 0.8rem 0.8rem;
    justify-content: space-between;
}
.advanced-search-container:hover
{
    background-color: #1c1c1c;
}
.advanced-search-container > div > img
{
    width: 1.8rem;
    margin-right: 1rem;;
}
.directorTopSearchBarInput > input {
    outline: none;
    text-decoration: none;
    color: #ffffff;
    font-size: 1.4rem;
    border: none;
    background: none;
    width: 100%;
}
.directorTopSearchBarButton {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 4rem;
    height: 100%;
    margin-left: auto;
    padding: 0 2rem;
}
.directorTopSearchBarButton > img {
    width: 1.8rem;
}
.directorTableColumn {
    padding-left: 2.5rem;
}
.directorTableBodyRow:hover {
    background-color: #232323;
    cursor: pointer;
}

.directorTableHeaderRow > td,
.directorTableBodyRow > td {
    width: 100%;
}
.directorTable > table {
    width: 100%;
}
.directorTableBodyRow {
    display: flex;
    flex-direction: row;
    border-radius: 1.6rem;
    align-items: center;
    transition: all 0.3s ease;
    font-size: 1.4rem;
    overflow: visible;
    height: 7rem;
}

.directorTableHeaderSortArrow {
    opacity: 0.6;
    margin-bottom: -0.5rem;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}

.directorTableHeaderSortArrow:hover,
.directorTableHeaderSortArrow.selected {
    opacity: 1;
    transform: scale(1.25, 1.25);
}

.directorTableHeaderRow {
    display: flex;
    flex-direction: row;
    border-bottom: #232323 0.3rem solid;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    width: 100%;
    position: relative;
}

.directorTableHeaderArrowsCol {
    display: flex;
    flex-direction: column;
    margin-left: 2rem;
    margin-top: -0.5rem;
}

.directorTableHeaderSortArrow > img {
    width: 1rem;
}

.directorTableHeader {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0.5rem 2.5rem;
    width: fit-content;
    height: 6rem;
}

.directorTableHeader:hover {
    cursor: pointer;
}

.directorTableHeader.selected {
    background-color: #232323;
    border-radius: 3rem;
}

.directorTable {
    background-color: #131313;
    padding: 3rem;
    border-radius: 0.8rem;
    width: 100%;
}

.end-event-timer-alert {
    display: block;
    top: 0;
    left: 0;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 9999;
}
.end-event-timer-alert-container {
    margin: 10vh auto;
}

.end-event-timer-header {
    font-size: 10rem;
    text-align: center;
}
.end-event-timer-count {
    text-align: center;
    font-size: 50rem;
    margin: 5vh 0 5vh;
}
.end-event-timer-cancel-button {
    margin: 0 auto;
    font-size: 10rem;
    background: #df2c48;
    width: fit-content;
    padding: 5rem 15rem;
    border-radius: 15rem;
    cursor: pointer;
}
.end-event-timer-alert.hide {
    display: none;
}

.outlineButton:hover > .microServicesDropDownMenu {
    opacity: 1;
}
.outlineButton {
    box-sizing: border-box;
    min-width: 17rem;
    user-select: none;
    font-weight: 500;
    cursor: pointer;
    border-radius: 0.8rem;
    width: fit-content;
    height: 6rem;
    gap: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--button-grey);
    border: 0.1rem solid var(--button-stroke);
    padding: 0 2rem 0 2rem;
    position: relative;
    text-align: center;
    white-space: nowrap;
}
.outlineButton > div > img
{
    height: 2rem;
    width: auto;
}
.outlineButton.short
{
    min-width: 10rem;
    font-size: 1.6rem;
    height: 4rem;
}
.outlineButtonText
{
    white-space: nowrap;
}
.filterDirectorButtonContainer
{
    width: fit-content;
    position: sticky;
    display: flex;
    flex-flow: column;
}
.filterDirectorButton
{
    background: #141414 0% 0% no-repeat padding-box;
    border: 0.2rem solid #333333;
    border-radius: 0.8rem;
    padding: 1.8rem 3rem;
    display: flex;
    flex-flow: row;
    align-items: center;
    cursor: pointer;
    font: normal normal 1.6rem/1.9rem Figtree;
    width: 21.5rem;
    white-space: nowrap;
    z-index: 1;
}
.filterDirectorButton.show
{
    z-index: 9999;
}
.filterDirectorButtonImage
{
    margin-right: 2rem;
}

.filterDirectorButtonImage > img
{
    width: auto;
    height: 2.4rem;
}

.filterDirectorButtonArrow
{
    width: fit-content;
    width: -moz-fit-content;
    height: fit-content;
    margin-left: auto;
    cursor: pointer;
    transform: rotate(0);
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}
.filterDirectorButtonArrow.show > img
{
    transform: rotate(180deg);
}

.filterDirectorButtonArrow > img
{
    width: 1.6rem;
    margin-left: 2rem;
}
.filterDirectorButtonContainerDropdown
{
    height: fit-content;
    width: 100%;
    position: absolute;
    background: #272727 0% 0% no-repeat padding-box;
    border: 0.1rem solid #FFFFFF4D;
    border-radius: 0.8rem;
    padding: 1.4rem;
    top: 6.7rem;
    display: none;
}

.filterDirectorButtonContainerDropdown.show
{
    display: flex;
    flex-flow: column;
    z-index: 999999;
}
.filterDirectorButtonContainerDropdownRow
{
    display: flex;
    flex-flow: row;
    align-items: center;
    column-gap: 2.4rem;
    padding: 2.1rem 3rem;
}
.filterDirectorButtonContainerDropdownRowText
{
    white-space: nowrap;
}
.autoMarginLeft
{
    margin-left: auto;
}
.outlineButton
{
    margin-right: 2rem;
}
.redButton{
    box-sizing: border-box;
    min-width: 17rem;
    user-select: none;
    font-weight: 500;
    cursor: pointer;
    border-radius: .8rem;
    width: fit-content;
    height: 6rem;
    gap: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--director-red);
    padding: 0 2rem 0 2rem;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.directorDropdownButtonContainer
{
    width: fit-content;
    position: sticky;
    cursor: pointer;
}
.directorDropdownButton
{
    padding: 1rem 1.5rem 1rem 2.5rem;
    border: 0.2rem solid var(--button-stroke);
    border-radius: 0.8rem;
    background: none;
    display: flex;
    flex-flow: row;
    align-items: center;
    column-gap: 3rem;
}
.directorDropdownButtonText
{
    font: normal normal 1.6rem/1.9rem Figtree;
}

.directorDropdownButtonImage
{
    width: 4rem;
    height: 4rem;
    display: flex;
    flex-flow: row;
    align-items: center;
    background: var(--director-red) 0% 0% no-repeat padding-box;
    border-radius: 0.8rem;
}
.directorDropdownButtonImage > img
{
    height: 1.6rem;
    width: 1.6rem;
    margin: auto auto;
}
.directorButtonDropdown
{
    display: none;
    position: absolute;
    width: 100%;
    background-color: #303030;
    padding: 1.7rem 0;
    border-bottom-left-radius: 0.8rem;
    border-bottom-right-radius: 0.8rem;
}
.directorButtonDropdown.show
{
    display: flex;
    flex-flow: column;
}

.directorButtonDropdownOption
{
    display: flex;
    flex-flow: row;
    align-items: center;
    column-gap: 2rem;
    height: 4rem;
    width: 100%;
}
.directorButtonDropdownOption.disabled
{
    opacity: 0.3;
    pointer-events: none;
}
.directorButtonDropdownOption:hover
{
    background-color: #272727;
}
.directorButtonDropdownOptionImage
{
    width: fit-content;
    height: fit-content;
    margin-left: 2.5rem;
}
.directorButtonDropdownOptionImage > img
{
    width: 2rem;
}
.directorQuicButtonsContainer
{
    display: flex;
    gap: 2rem;
    flex-flow: row;
    justify-content: center;
}
.directorQuickButtonContainer
{
    user-select: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    position: relative;
    width: 26rem;
    height: 28rem;
    border-radius: 1.4rem;
    background-color: var(--director-light);
}
.directorQuickButtonContainer.disabled
{
    opacity: 0.4;
    pointer-events: none;
}
.directorQuickButtonAdd
{
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
}
.directorQuickButtonAdd > img
{
    width: 1.5rem;
    height: 1.5rem;
}
.directorQuickButtonContainer:hover > .directorQuickButtonAdd
{
    background-color: var(--director-secondary);
    border: .1rem solid var(--button-stroke);
}
.directorQuickButtonImage > img
{
    width: 4rem;
    height: 4rem;
}
.directorQuickButtonTitle
{
    font-size: 1.6rem;
}
.directorQuickButtonDescription
{
    color: var(--text-grey);
    font-size: 1.1rem;
    text-align: center;
    width: 12rem;
}