﻿/*
    TABLE OF CONTENTS
    _________________________________________

    - IMPORTS
    - ROOT CONTENT
    - GENERAL CSS
    
    _________________________________________
    
*/


/* -------------------------------------------------------------
----------------------------------------------------------------

    ROOT CONTENT

----------------------------------------------------------------
------------------------------------------------------------- */

:root {
    --intro-overlay-color: rgba(0, 0, 0, 0.7);
}


/* -------------------------------------------------------------
----------------------------------------------------------------

    GENERAL CSS

----------------------------------------------------------------
------------------------------------------------------------- */

html,
body {
    min-height: 100vh !important;
    max-width: 100% !important;
    height: 100% !important;
    width: 100% !important;
}

#app {
    min-height: 100% !important;
    height: 100% !important;
    width: 100% !important;
}

.clayout {
    min-height: 100vh !important;
    height: 100% !important;
}

.main {
    min-height: 100vh !important;
    height: 100% !important;
}

.h-100 {
    height: 100%;
}

.w-100 {
    width: 100%;
}

.fw-bold {
    font-weight: bold;
}