/*!
Theme Name: Max4u Eva
Theme URI: http://underscores.me/
Author: Web Cossacks (Aleksandrov Sergey)
Author URI: http://max4u.ru/
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: max4u
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

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.

Max4u is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/

.cookies {
    position: fixed;
    width: 100%;
    bottom: 30px;
    left: 50%;
    z-index: 99998;
    transform: translateX(calc(-50% - 100px));
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease 0s;
}

.cookies_row {
    border-radius: 5px;
    background: #fff;
    box-shadow: 0px 6px 35px 0px rgba(29, 29, 31, 0.08);
    padding: 25px;
    max-width: 485px;
    position: relative;
}

.cookies_title {
    color: #2b2e38;
    font-size: 28px;
    font-weight: 600;
    line-height: 100%;
    margin-bottom: 20px;
}

.cookies_info {
    color: #2b2e38;
    font-size: 14px;
    font-weight: 500;
    line-height: 128.571%;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.cookies_info a {
    display: inline-block;
    opacity: 0.75;
    font-weight: 800;
    line-height: 18px;
    text-decoration-line: underline !important;
    color: #2b2e38;
}

.cookies.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%);
}

@media (max-width: 768px) {
    .cookies {
        bottom: 100px;
    }

    .cookies_row {
        padding: 15px;
        max-width: 100%;
    }

    .cookies_btn {
        width: 100% !important;
    }
}