/*=================================================*/
/*= FONT                                          =*/
/*=================================================*/

@font-face {
    font-family: "Conduit ITC";
    src: url('../assets/fonts/Conduit-ITC.woff');
}

/*=================================================*/
/*= ROOT                                          =*/
/*=================================================*/

:root {
    --scale: 33.333%;
}

::-webkit-scrollbar {
    width: 0.5em;
    background-color: transparent;
}
::-webkit-scrollbar-thumb {
    background: #926333a2
}
::-webkit-scrollbar-track {
    background: transparent;
}

/*=================================================*/
/*= BASE                                          =*/
/*=================================================*/

* {
    margin: 0;
    padding: 0;
    font-family: "Conduit ITC";
    font-size: 10pt;
    cursor: default;
    box-sizing: border-box;
    user-select: none;
}

html {
    color: #926333;
    font-family: "Conduit ITC", sans-serif;
    overflow: hidden;
}

html, body {
    margin: 0;
    padding: 0;
}

head {
    display: none;
}

body {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
    background: #181818;
}

/*=================================================*/
/*= DEFAULTS                                      =*/
/*=================================================*/

a  {
    color: inherit;
    font-size: inherit;
    text-decoration: none;
}
    a:hover {
        color: #b3b3b3;
        cursor: pointer;
    }
    a:visited {
        
    }

/*=================================================*/
/*= MAIN                                          =*/
/*=================================================*/

.main { 
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/*=================================================*/
/*= MAIN | NAVIGATION                             =*/
/*=================================================*/

.main-nav { 
    height: 4em;
    background: #131313a8;
    border-bottom: 1px solid #926333a1;
    display: flex;
    align-items: center;
    padding: 0 15% 0 15%;
}
    .nav-logo {
        height: 3em;
    }
    .nav-menu-options {
        flex: 1;
        display: flex;
        list-style: none;
        padding: 0 1em 0 1em;
        flex-direction: row;
    }
        .nav-menu-option {
            height: 3em;
            display: flex;
            text-transform: uppercase;
        }
            .nav-option-link {
                width: 100%;
                font-size: 1.1em;
                text-decoration: none;
                padding: 0 16px;
                display: flex;
                cursor: pointer;
                flex-direction: column;
                justify-content: center;
                position: relative;
            }
                .nav-option-link:link, 
                .nav-option-link:visited {
                    color: inherit;
                }
                .nav-option-link:hover {
                    background-color: rgba(54,58,62,.63);
                }
            .nav-option-link.selected:after {
                content: "";
                height: 2px;
                background-color: #926333;
            }
                .nav-option-link:hover:not(.selected):after {
                    content: "";                
                    left: 0;
                    right: 0;
                    bottom: 0;
                    height: 2px;
                    position: absolute;
                    background-color: #926333;
                }

/*=================================================*/
/*= MAIN | CONTENT                                =*/
/*=================================================*/

.main-content { 
    flex: 1;
    display: flex;
    overflow: auto;
}

/*=================================================*/
/*= MAIN | CONTENT | MESSAGES                     =*/
/*=================================================*/

.message-container {
    width: 100%;
    height: 100%;
    display: flex;
	flex-direction: column;
    user-select: none;
    pointer-events: none;
}
    .message-content {
        width: 25em;
        padding: 2em;
        font-size: 18px;
        box-shadow: 0 0 0.5em rgb(0 0 0);
        margin: auto;
        display: flex;
        flex-direction: column;
        background: #131313a8;
        border: 1px solid #926333a1;
    }
        .message-content-header {
            flex: 1;
            display: flex;
            flex-direction: column;
        }
            .message-image {
                width: 7em;
                height: 7em;
                margin: auto;
            }
            .message-header-title {
                font-size: 26px;
                font-weight: 300;
                display: block;
                text-align: center;
                padding: 1em;
                text-transform: uppercase;
            }
        .message-content-footer {
            flex: 1;
            display: flex;
            flex-direction: column;
        }
            .message-footer-title {
                color: #72767d;
                font-size: 12px;
                line-height: 22px;
                text-align: center;
            }

/*=================================================*/
/*= MAIN | BACKGROUND                             =*/
/*=================================================*/

.main-background {
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: absolute;
    pointer-events: none;
    z-index: -1;
}
    #background {
        top: 0;
        left: 0;
        min-width: 100%;
        min-height: 100%;
        position: fixed;
    }

/*=================================================*/
/*= MAIN | BACKGROUND                             =*/
/*=================================================*/

.main-notifications {
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: absolute;
    pointer-events: none;
}
    .notification-container {
        right: 0;
        bottom: 0;
        height: 5em;
        width: 25em;
        position: absolute;
        margin-right: 3em;
        margin-bottom: 3em;
        background: #131313e0;
        border: 1px solid #926333a1;
        border-radius: 5px;
        display: flex;
        box-shadow: 0 0 5px #000000e8;
    }
        .notification-content {
            flex: 1;
            display: flex;
        }
            .notification-content-title {
                margin: auto;
            }


/********************************************************/
/* DIALOGS                                              */
/********************************************************/

.main-dialogs {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    opacity: 0;
    position: absolute;
    background: rgb(0 0 0 / 50%);
    transition: all 0.1s ease-in-out;
}
.main-dialogs.active {
    opacity: 1;
    display: flex;
}

    .main-dialog-container {
        margin: auto;
        height: auto;
        background: linear-gradient(rgb(14 14 14 / 90%), rgb(0 0 0 / 90%));
        display: flex;
        flex-direction: column;
        overflow: hidden;
        color: #8a8a8a;
        box-shadow: 0 0 10px 0px rgb(0 0 0 / 90%);
        animation: main-dialog-container-Animation 0.2s ease-in-out;
        animation-fill-mode: forwards;
    }
    @keyframes main-dialog-container-Animation {
        0% {
            opacity: 0;
            height: 0;
        }
        100% {
            opacity: 1;
            height: 33%;
        }
    }

        .dialog-header {
            height: 3em;
            width: 100vw;
            display: flex;
            padding-left: var(--scale);
            padding-right: var(--scale);
            background: rgba(0, 0, 0, 0.65);
            border-top: 1px solid rgba(76, 76, 76, 0.55);
            border-bottom: 1px solid rgba(76, 76, 76, 0.55);
        }
            .dialog-header-title {
                top: 0;
                left: 0;
                font-size: 2em;
                margin: auto auto auto 0;
                position: relative;
                text-transform: uppercase;
                animation: dialog-header-title-Animation 0.25s ease-in-out;
                animation-fill-mode: forwards;
                animation-delay: 5ms;
            }
            @keyframes dialog-header-title-Animation {
                0% {
                    left: 100vw;
                }
                100% {
                    left: 0;
                }
            }
                .dialog-header-message {    
                    font-size: 1.5em;                
                    padding: 1em 0 1em 0;                
                    display: block;
                }

        .dialog-footer {
            flex: 1;
            display: flex;
            flex-direction: column;
            padding: 0.5em var(--scale) 0.5em var(--scale);
        }

            .dialog-footer-content {
                left: -100vw;
                flex: 1;
                position: relative;
                display: flex;
                flex-direction: column;
                margin: 1.5em 0 1.5em 0;
                animation: dialog-footer-content-Animation 0.25s ease-in-out;
                animation-fill-mode: forwards;
                animation-delay: 25ms;
            }
            @keyframes dialog-footer-content-Animation {
                0% {
                    left: -100vw;
                }
                100% {
                    left: 0;
                }
            }
                .dialog-footer-content-message {
                    flex: 1;
                    font-size: 1.5em;
                }

            .dialog-footer-content-options {
                position: relative;
                list-style: none;
                margin-top: 2em;
                margin-bottom: 2em;
            }

                .dialog-footer-option {
                    height: 2em;
                    padding: 0 0.5em;
                    display: flex;
                    cursor: pointer;
                    pointer-events: auto;
                }
                
                    .dialog-footer-option.selected {
                        background-image: url('../img/assets/misc/hover.svg');
                        background-position: center;
                        background-repeat: no-repeat;
                    }
                .dialog-footer-option-title {
                    flex: 1;
                    color: rgb(165 165 165);
                    font-size: 1em;
                    margin: 0.5em 0;
                    font-size: 1.2em;
                    align-self: center;
                    pointer-events: none;
                }

                .dialog-footer-option-checkbox-container {
                    display: flex;
                    justify-content: flex-end;
                }
                    .dialog-footer-option-checkbox {
                    }
                        .dialog-footer-option-checkbox-title {
                            margin-left: 0.5em;
                        }

/********************************************************/
/* DIALOG | PREVIEW                                     */
/********************************************************/

.dialog-preview-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: scroll;
}
    .dialog-preview-header {
        flex: 1;
    }
        .dialog-preview-video {
            width: 100%;
            background: #131313a8;
            border: 1px solid #926333a1;
            outline: none;
            box-shadow: #000000f0 0 0 5px 0px;
        }
    .dialog-preview-footer {

    }