/*
Theme Name: SV
Theme URI: https://hg80.studio
Author: yabloko agency & hg80 studio
Author URI: https://wordpress.org/
Description: Selepey, Volkovetsky & Partners (by yabloko agency & hg80 studio )
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: Selepey, Volkovetsky & Partners 
Tags: 

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Normalize
2.0 Accessibility
3.0 Alignments
4.0 Clearings
5.0 Typography
6.0 Forms
7.0 Formatting
8.0 Lists
9.0 Tables
10.0 Links
11.0 Featured Image Hover
12.0 Navigation
13.0 Layout
   13.1 Header
   13.2 Front Page
   13.3 Regular Content
   13.4 Posts
   13.5 Pages
   13.6 Footer
14.0 Comments
15.0 Widgets
16.0 Media
   16.1 Galleries
17.0 Customizer
18.0 SVGs Fallbacks
19.0 Media Queries
20.0 Print
--------------------------------------------------------------*/
/*--------------------------------------------------------------
1.0 Normalize
Styles based on Normalize v5.0.0 @link https://github.com/necolas/normalize.css
--------------------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p,
blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img,
ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center,
dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody,
tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure,
figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav,
section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
}
.cookie {
	position: fixed;
	z-index: 9999;
	bottom: 20px;
	right: 20px;
	background-color: #FFFFFF;
	display: flex;
	border: 1px solid #3D4658;
	padding: 15px 20px;
	max-width: 700px;
	justify-content: space-between;
	align-items: center;
	font-size: 12px;
	/*+box-shadow: 2px 2px 5px rgba(61, 70, 88, 0.15);*/
	-moz-box-shadow: 2px 2px 5px rgba(61, 70, 88, 0.15);
	-webkit-box-shadow: 2px 2px 5px rgba(61, 70, 88, 0.15);
	box-shadow: 2px 2px 5px rgba(61, 70, 88, 0.15);
	margin-left: 20px;
}
.cookie-btn {
	border: 2px solid #3D4658;
	padding: 11px 26px;
	cursor: pointer;
	background-color: #3D4658;
	color: #FFFFFF;
	font-weight: bold;
	margin-left: 20px;
	transition: 250ms;
}
.cookie-btn:hover {
	background-color: #FFFFFF;
	color: #3D4658;
}
@media (max-width: 540px) {
	.cookie {
		flex-direction: column;
		text-align: center;
	}
	.cookie-btn {
		margin: 15px 0 0;
	}
}
