@font-face {
    font-family: Figtree;
    src: url(../fonts/Figtree/Figtree-Regular.ttf) format("truetype");
}

:root {
    --director-primary: #000000;
    --director-secondary: #141414;
    --director-dark: #1c1c1c;
    --director-light: #272727;
    --director-button-primary: #df2c48;
    --director-font-primary: white;
    --main-bg-light: #272727;
    --main-bg-light-opacity: rgba(39, 39, 39, 0.5);
    --main-bg-medium: #1c1c1c;
    --main-bg-dark: #141414;
    --text-white: #ffffff;
    --text-grey: #999999;
    --popup-background-grey: #2C2C2C;
    --text-white-opactiy: rgba(255, 255, 255, 0.5);
    --button-grey: #141414;
    --button-stroke: #333333;
    --director-red: #df2c48;
    --director-level4-grey: #303030;
    --director-green: #12b891;
    --director-dark-green: #13352D;
    --input-stroke: #666666;
    --director-orange: #ff862a;
}

html,
body {
    height: 100vh;
    width: 100vw;
}

html {
    font-size: 0.520833vw;
    background-color: #000000;
}
body {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    font-family: Figtree, sans-serif;
    font-size: 1.6rem;
    background-color: #000000;
    color: #ffffff;
    margin: 0;
}
@media screen and (max-width: 1920px) {
    html {
        font-size: 0.520833vw;
        height: 100vh;
        width: 100vw;
    }
}

@media screen and (min-width: 1920px) {
    html {
        font-size: 9.999936px;
        width: 1920px;
        max-width: 1920px;
    }
}
body::-webkit-scrollbar {
    width: 1rem;
    background-color: #000000;
    scrollbar-color: #000000;
    scrollbar-width: thin;
}
body::-webkit-scrollbar-thumb {
    background-color: var(--director-dark);
}
.row {
    margin: 0;
}
.main-body-container {
    min-height: 100vh;
    display: grid;
    grid-template-areas:
        "menu header header"
        "menu body body";
    grid-template-rows: 10rem 1fr;
    grid-template-columns: 12rem 1fr;
    opacity: 0;
    overflow: hidden;
    transition: all 0.7s ease;
    -webkit-transition: all 0.7s ease;
    position: relative;
}
.main-body-container.show {
    opacity: 1;
}
.menu {
    grid-area: menu;
    z-index: 21;
}
.container-content {
    width: 100%;
    height: 100%;
    max-width: calc(1920px - 12rem);
    margin: 0 auto;
    position: sticky;
    font-family: Figtree;
    background-color: #141414;
    display: grid;
}
div.field-input {
    width: 100%;
}
/** alert box **/
.confirm-alert.hide {
    display: none;
}
.confirm-alert {
    position: fixed;
    top: 0;
    left: 0;
    height: 108rem;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    overflow: hidden;
}
.confirm-alert-container {
    background-color: #000000;
    height: 17rem;
    width: 50rem;
    margin-top: calc(20% - 15rem);
    margin-left: calc(50% - 25rem);
    border-radius: 1rem;
    padding: 3rem;
}
.confirm-alert-title {
    font-family: Figtree, sans-serif;
    font-size: 1.8rem;
    text-align: center;
}
.confirm-alert-buttons {
    margin: 2rem auto 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 **/

[src=""] {
    visibility: hidden;
}
