@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
    font-family: 'TT Interfaces';
    src: url('../webfonts/TTInterfaces-Light.eot');
    src: url('../webfonts/TTInterfaces-Light.eot?#iefix') format('embedded-opentype'),
        url('../webfonts/TTInterfaces-Light.woff2') format('woff2'),
        url('../webfonts/TTInterfaces-Light.woff') format('woff'),
        url('../webfonts/TTInterfaces-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT Interfaces';
    src: url('../webfonts/TTInterfaces-Regular.eot');
    src: url('../webfonts/TTInterfaces-Regular.eot?#iefix') format('embedded-opentype'),
        url('../webfonts/TTInterfaces-Regular.woff2') format('woff2'),
        url('../webfonts/TTInterfaces-Regular.woff') format('woff'),
        url('../webfonts/TTInterfaces-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT Interfaces';
    src: url('../webfonts/TTInterfaces-Bold.eot');
    src: url('../webfonts/TTInterfaces-Bold.eot?#iefix') format('embedded-opentype'),
        url('../webfonts/TTInterfaces-Bold.woff2') format('woff2'),
        url('../webfonts/TTInterfaces-Bold.woff') format('woff'),
        url('../webfonts/TTInterfaces-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT Interfaces';
    src: url('../webfonts/TTInterfaces-SemiBold.eot');
    src: url('../webfonts/TTInterfaces-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../webfonts/TTInterfaces-SemiBold.woff2') format('woff2'),
        url('../webfonts/TTInterfaces-SemiBold.woff') format('woff'),
        url('../webfonts/TTInterfaces-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT Interfaces';
    src: url('../webfonts/TTInterfaces-Italic.eot');
    src: url('../webfonts/TTInterfaces-Italic.eot?#iefix') format('embedded-opentype'),
        url('../webfonts/TTInterfaces-Italic.woff2') format('woff2'),
        url('../webfonts/TTInterfaces-Italic.woff') format('woff'),
        url('../webfonts/TTInterfaces-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'TT Interfaces';
    src: url('../webfonts/TTInterfaces-BoldItalic.eot');
    src: url('../webfonts/TTInterfaces-BoldItalic.eot?#iefix') format('embedded-opentype'),
        url('../webfonts/TTInterfaces-BoldItalic.woff2') format('woff2'),
        url('../webfonts/TTInterfaces-BoldItalic.woff') format('woff'),
        url('../webfonts/TTInterfaces-BoldItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'FA-Solid';
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: 
        url("../webfonts/fa-solid-900.woff2") format("woff2"),
        url("../webfonts/fa-solid-900.ttf") format("truetype");
}

input::placeholder {
    opacity: 0.5;
    color: #2B2B2B;
}

textarea:focus, input:focus{
    outline: none;
}

:root, :host {
    --main-font: "TT Interfaces", serif;
    --background-color: #FBFBFB;
    --main-color: #2B2B2B;
    --ormsson-orange: #FF611A;
    --ormsson-darkgreen: #003540;
    --ormsson-pink: #FE697D;
    --ormsson-ligthgrey: #F3F3F3;
    --ormsson-darkgrey: #8B8B8B;
    --ormsson-grey: #B3B3B3;
    --ormsson-yellow: #FCDB00;
    --ormsson-lightertext: #808080;
    --ormsson-sand:#FFF6E3;
    --ormsson-green: #01863D;
}

::selection {
    background: var(--ormsson-darkgreen);
    color: var(--ormsson-sand);
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    background:  var(--background-color);
    color:#242424;
    font-family: var(--main-font);
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    padding:20px 0;
    margin:0 auto;
    height: 100%;
    line-height: 1.2;
    -webkit-font-smoothing: antialiased !important;
	text-rendering: optimizeLegibility;
	font-feature-settings: "kern";
	-webkit-font-feature-settings: "kern";
	-moz-font-feature-settings: "kern";
	-moz-font-feature-settings: "kern=1";
}

select, input, textarea {
    font-family: var(--main-font);
}

.wrapper {
    width:100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

table {
    border-collapse: collapse;
    width: 100%;
}

table.list td, table.list th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
}

table.list tr:nth-child(even) {
    background-color: #dddddd;
}

.tar {
    text-align: right;
}

a {
    text-decoration: none;
    color:var(--main-color);
}