﻿@font-face {
    font-family: 'MarckScript-Regular';   
    src: url('/Assets/fonts/MarckScript-Regular.ttf') format('truetype');
}

:root {
    --main-color: rgb(160, 183, 143); /*8321*/
    /* --main-color: rgb(150, 201, 61); */

    --main-color2: rgb(231, 224, 212);
    --color-dark1: #b0aaa2;
    --bc-color-dark1: #121212;
    --bc-color-dark2: #1a1a1a;
    --bc-color-dark3: #3e3e3e;
    --bc-color-dark-link: #efe5dd;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #fbfbfb;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

h1 {
    font-size: 150%;
    font-weight: 500;
    margin: 0 0 10px 0;
}

input[type="text"], a, img, li, div {
    -webkit-tap-highlight-color: transparent;
}

.header {
   /* height: 70px;*/
    background-color: white;
    color: var(--main-color);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: -3px -2px 12px 0px rgba(0, 0, 0, 0.1);
}

.left-column-show {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    position: absolute;
    background-color: white;
    max-width: 300px;
    z-index: 9999;
    padding-right: 15px;
    padding-left: 40px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.left-column {
    width: 200px;
    height: fit-content;
    padding-bottom: 20px;
}

.right-column {
    min-height: 150px;
    width: 300px;
}


.main-content-column {
    margin: 10px;
    margin-top: 20px;
    box-shadow: 0px 0px 6px 0px rgb(236 236 236);
    border-radius: 10px;
    background-color: white;
}

.main-content-holder {
    display: flex;
    justify-content: center;
}


.center-column {
    flex: 1;
    padding: 20px;
}


.main-content {
    display: flex;
    flex-direction: row;
    box-sizing: border-box;
}


.menu-button {
    background-image: url(/Assets/images/site/panel/menu.svg);
    background-size: cover;
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0;
    text-align: center;
    box-sizing: border-box;
    background-color: transparent;
}

.menu-header {
    background-size: cover;
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0;
    text-align: center;
    box-sizing: border-box;
    background-color: transparent;
   /* image-rendering: pixelated;*/
}

.mode-night {
    background-image: url(/Assets/images/site/panel/dark.svg);
    display: inline !important;
}
.settings-button {
    background-image: url(/Assets/images/site/panel/settings.svg);
    display: inline !important;
}

.site-title {
    font-weight: bold;
    font-family: "MarckScript-Regular", cursive;
    font-style: normal;
    letter-spacing: 1.5px;
}

@media (min-width: 200px) {
    .header {
        height: 120px;       
    }
    .main-content {
        width: 100%;
    }

    .header-content {
        flex-direction: column;
        align-items: flex-start;
        width: 95%;
    }

    .left-column, .right-column {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .site-title {
        font-size: 25px;       
        margin-left: 15px;
    }

    .left-column-show {        
        top: 50px;       
    }
}

@media (min-width: 550px) {
    .header {
        height: 70px;
    }
    .header-content {        
        flex-direction: row;
    }
    .left-column-show {
        top: 70px;
    }
}


@media (min-width: 768px) {
    
    .main-content {
        width: 100%;
    }

    .header-content {
        width: 90%;
    }

    .site-title {
        font-size: 28px;      
        margin-left: 20px;        
    }
}

@media (min-width: 1024px) {
    .main-content {
        width: 90%;
    }

    .header-content {
        width: 90%;
    }
}

@media (min-width: 1280px) {
    .main-content {
        width: 95%;
    }

    .header-content {
        width: 95%;
    }

    .right-column {
        display: block;
    }
}

@media (min-width: 1600px) {
    .main-content {
        width: 90%;
    }

    .header-content {
        width: 90%;
    }

    .right-column {
        display: block;
    }

    .left-column {
        display: block;
    }

    .menu-button {
        display: none;
    }
}

@media (min-width: 1800px) {
    .main-content {
        width: 85%;
    }

    .header-content {
        width: 85%;
    }
}

@media (min-width: 1920px) {
    .main-content {
        width: 70%;
    }

    .header-content {
        width: 70%;
    }
}
