﻿@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


[class*="icon"],
a::before,
a::after,
#current_user span::before,
.bx-controls-direction,
.faq dt::after,
.delete::after,
.confirm::after,
.confirm_close::after,
input[type='checkbox']::after,
input[type='radio']::after,
.cell.hidden div::after,
.area::before,
.security_level::after,
h4::before,
.instruction::after,
.direct::after {
    font-family: 'Icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


html {
    height: 100%;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
}

:root {
    --red: #ca1720;
    --gold: #c69c6c;
    --green: #2cad56;
    --metallic-light: #e0e0e4;
    --metallic: #a6a8b4;
    --metallic-medium: #cbccd3;
    --metallic-dark: #a6a8b4;
    --metallic-darker: #797c8e;
    --background: #f7f7f7;
    --lightgrey: #ededed;
    --tin: #dadada;
    --grey: #d5d5d2;
    --dim: #a4a4a4;
    --hardgrey: #c7c7c2;
    --softgrey: #ccc;
    --mediumgrey: #999;
    --lead: #666;
    --charcoal: #444;
    --anthracite: #333;
}

body {
    min-height: 100vh;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -ms-hyphens: none;
    -webkit-hyphens: none;
    hyphens: none;
    background-color: var(--background);
    text-size-adjust: none;
}

/* main containers */

.wrapper {
    max-width: 1920px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: var(--background);
}

header {
    flex: 0;
}

main {
    flex: 1;
    background: var(--background);
    outline: none;
}



footer {
    flex: 0;
    padding: 28px 40px;
    font-size: 0.875em;
    color: #fff;
    background-color: var(--anthracite);
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
}

#youreurope img {
    height: 38px;
}

#youreurope a {
    display: block;
    padding: 0 30px;
}

    #youreurope a:hover img {
        opacity: .65;
    }

.social {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
}

.column_width {
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 1386px;
    padding: 0 20px;
}


/* standard tags */

img {
    display: block;
    border: none;
}

a {
    color: var(--red);
    text-decoration: none;
}

    a:hover {
        color: #000;
        text-decoration: none;
    }

article a:hover,
.box_grid .item .content a:hover {
    text-decoration: underline;
}

.custom .box_grid .item .content a:hover {
    text-decoration: none;
}

a.skip_link {
    position: absolute;
    top: -1000em;
    padding: 15px;
    color: #fff;
    background-color: #000;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.5);
    z-index: 999;
}

    a.skip_link:focus {
        position: fixed;
        top: 0;
        left: 0;
    }

p {
    font-family: Roboto;
    margin: 1em 0;
}

li {
    font-family: Roboto;
}

@supports (appearance: none) or (-moz-appearance: none) or (-webkit-appearance: none) {
    input, select, button {
        outline: none;
        margin: 0;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
}


/** scrollbars **/

.scroll_me {
    scrollbar-width: thin;
    scrollbar-color: var(--metallic) var(--metallic-light);
}

    .scroll_me::-webkit-scrollbar,
    .select_list::-webkit-scrollbar {
        width: 9px;
    }

    .scroll_me::-webkit-scrollbar-track,
    .select_list::-webkit-scrollbar-track {
        background: var(--metallic-light);
    }

    .scroll_me::-webkit-scrollbar-thumb,
    .select_list::-webkit-scrollbar-thumb {
        background-color: var(--metallic);
        border-radius: 6px;
        border: 2px solid var(--metallic-light);
    }


/* end standard tags */
