/* USER VARIABLES SECTION */

:root {
	--dop1: #E9F2FF;
	--dop2: #FFE9F3;
	--dop3: #eef0fc;
	--accent: #050B20;
	--brand: #050B20;
	--text: #050B20;
	--white: #ffffff;
	--black: #000;
	--light: #F9FBFC;
	--blue: #405FF2;
	--blue2: #405FF2;
	--blue3: #405FF2;
	--gray:#6C6C83;
	--gray2:#636B77; 
	--border: #E1E1E1;
	--border2: #E9E9E9;
	--placeholder: #818181;
	--notefy: #f9fbfc;
	--green: #00B67A;
	--link: #405FF2;
	--error: #A63232;
	--regular-text: 16px;
	--lineheight: 1.65;
	--userfont: roboto-st, sans-serif;
	--systemfont: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
	--additionalsfont: font-family: "DM Sans", sans-serif;
}



/* BOOTSTRAP SETTINGS SECTION */

/* gutter 20px (10px + 10px). Comment this code for default gutter start at 1.5rem (24px) wide. */
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl { --bs-gutter-x: .625rem; }
.row, .row > * { --bs-gutter-x: 1.25rem; }

/* FONTS LOAD SECTION */

@font-face { src: url("../fonts/roboto-regular-webfont.woff2") format("woff2"); font-family: "roboto-st"; font-weight: 400; font-style: normal; }
@font-face { src: url("../fonts/roboto-italic-webfont.woff2") format("woff2"); font-family: "roboto-st"; font-weight: 400; font-style: italic; }
@font-face { src: url("../fonts/roboto-bold-webfont.woff2") format("woff2"); font-family: "roboto-st"; font-weight: 700; font-style: normal; }
@font-face { src: url("../fonts/roboto-bolditalic-webfont.woff2") format("woff2"); font-family: "roboto-st"; font-weight: 700; font-style: italic; }

/* GENERAL CSS SETTINGS */

::placeholder { color: #666; }
::selection { background-color: var(--accent); color: #fff; }
input, textarea { outline: none; }
input:focus:required:invalid, textarea:focus:required:invalid { border-color: red; }
input:required:valid, textarea:required:valid { border-color: green; }

body {
	/* font-family: "Roboto Flex", sans-serif; */
	/* font-family: "Montserrat", sans-serif; */
	font-family: "Manrope", sans-serif;


	/* font-family: "DM Sans", sans-serif; */
	/* font-family: var(--userfont); */
	font-size: var(--regular-text);
	line-height: var(--lineheight);
	color: var(--text);
	min-width: 320px;
	position: relative;
	overflow-x: hidden;
}

/* USER STYLES */

.image {
	max-width: 100%;
	margin-bottom: var(--bs-gutter-x);
	border-radius: 4px;
}

.accent {
	color: var(--accent);
	font-weight: bold;
}

.container {
	max-width: 1400px;
}

h1 {
	margin: 0 0 35px;
	/* font-family: var(--additionalsfont); */
	font-size: 45px;
	line-height: 1.4;
	font-weight: bold;
}

h2 {
	margin: 0 0 30px;
	/* font-family: var(--additionalsfont); */
	font-size: 40px;
	line-height: 1.2;
	font-weight: bold;
}

h3 {
	margin: 0 0 12px;
	/* font-family: var(--additionalsfont); */
	font-size: 29px;
	line-height: 1.2;
	font-weight: bold;
}

h4 {
	margin: 0 0 12px;
	/* font-family: var(--additionalsfont); */
	font-size: 25px;
	line-height: 1.2;
	font-weight: bold;
}

h2, h3, h4 {
	color: #050B20;
	font-weight: bold;
}

#cookie_notification{
    align-items: center;
    position: fixed;
    z-index: 1000;
    bottom: 15px;
    left: 50%;
    width: 90%;
    max-width: 1000px;
    transform: translateX(-50%);
    padding: 25px;
    background-color: white;
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
    display: none;
    grid-template-columns: auto 160px;
    gap: 5%;
}

#cookie_notification.is-show{
    display: grid;
}

#cookie_notification p{
    margin-bottom: 0;
    font-size: 15px;
}

#cookie_notification a{
    color: var(--blue);
    text-decoration: underline;
}

#cookie_notification a:hover{
    text-decoration: none;
}
#cookie_accept{
    padding: 14px 20px;
    height: 44px;
}

@media (max-width: 699px){
	#cookie_notification{
        grid-template-columns: auto;
        gap: 16px;
        padding: 15px;
    }
    #cookie_notification p{
        font-size: 13px;
    }
    #cookie_accept{
        width: 160px;
    }
}