body {
    background-color: #181816;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
}

#btn_lang {
	position: absolute;
    top: 17px;
    right: 20px;
    color: #fbba00;
}

#title {
    font-weight: bold;
    text-transform: uppercase;
    background-color: #323431;
    color: #fbba00;
    font-size: 22px;
    width:100%;
    display: flex;
    min-height: 50px;
    min-width: 1024px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/* LOADING */
#loading {
    width: 32px;
    height: 32px;
}

.loading_shown {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.loading_hidden {
    display: none;
}

#main_container {
    background-color: #323431;
}

/* PREVIEW */
#description_container {
    width: 200px;
    height: 100px;
    position: absolute;
    right: 40px;
    top: 380px;
    z-index: 1;
    text-align: right;
    color: white;
}

#preview_container {
    position: relative;
    width: 1024px;
    height: 540px;
    margin: 0 auto;
    background-image: url("../images/bg_canvas.png");
    background-repeat: no-repeat;
}

.preview_element {
    position: absolute;
    width: 1024px;
    height: 540px;
    background-size: cover;
    -webkit-transition: background-image 1s ease-in-out;
    transition: background-image 1s ease-in-out;
}

#button_download {
    font-weight: bold;
    text-transform: uppercase;
    width: 140px;
    height: 40px;
    color: #FFFFFF;
    cursor: pointer;
    background-color: #fbba00;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* MENU */
.menu_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
    min-height: 50px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.menu_item {
    margin: 5px;
    padding:5px;
    cursor: pointer;
    -webkit-transition: color 0.04s ease-in-out;
    transition: color 0.04s ease-in-out;
}

#arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid #323431;
    -webkit-transition: left 0.12s ease-in-out;
    transition: left 0.12s ease-in-out;
}

#category_container {
    background-color: #181816;
    color : #e2dad7;
}

#item_container {
    background-color: #323431;
    color: #e2dad7;
}

.option_hidden {
    display: none;
}

.option_show {
    display: block;
    text-align: center;
}

.categorySelected {
    color: #fbba00;
}

.option_selected {
    color: #fbba00;
}

#hidden_canvas {
    display: none;
}

/* SITE */
.site_margin {
    margin-top: 50px;
}

.site_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-transform: uppercase;
}

.line_container_left {
    width: 512px;
    text-align: right;
    margin-right: -20px;
}

.line_container_right {
    width: 512px;
    text-align: left;
    margin-left: -20px;
}

.line_style_1 {
    color: #fbba00;
    font-weight: bold;
}

.line_style_2 {
    color: #e2dad7;
}

a:hover, a:focus, a:active, a:link {
    text-decoration: none;
    color: inherit;
}