/**
 * http://new-dev.ru/
 * author GoldSoft <newdevexpert@gmail.com>
 * Copyright (c) New-Dev.ru
 */

.gdprcookie-stickybar {
	text-align: center;
	width: 100%;
	z-index: 99999;
	box-shadow: rgba(0,0,0,.5) 0px 5px 10px;
	padding: 10px;
	box-sizing: border-box;
	font-size: 14px;
	background-color: #1c77fd;
	color: #fff;
	font-family: inherit;
	position: fixed;
	left: 0;
	bottom: 0;
}

.gdprcookie-container {
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.gdprcookie-message {
	width: 80%;
	text-align: center;
}
@media (max-width: 768px) {
	.gdprcookie-message {
		width: 100%;
	}
}

.gdprcookie-popup .gdprcookie-message {
	width: 100%;
	text-align: justify;
	padding-bottom: 20px;
}


.gdprcookie-button {
	display: inline-block;
	padding: 8px 16px;
	border-radius: 4px;
	font-size: 12px;
	line-height: 18px;
	color: #000;
	background-color: #fff;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.gdprcookie-button:hover {
	text-decoration: none;
	opacity: 0.7;
}

.gdprcookie-reject-button {
	background-color: #e85319/*#f7a71a*/;
}

.gdprcookie-more-button {
	background-color: #fff;
	color: #000;
	text-decoration: underline;
}

/* --- Правка кнопки "Окей, понял" --- */

/* Десктоп: сдвигаем от правого края */
@media (min-width: 769px) {
  .gdprcookie-btn-group {
    margin-right: 60px; /* подбери под дизайн, 20–40px оптимально */
  }
}

/* Мобильные устройства: выравниваем по центру */
@media (max-width: 768px) {
  .gdprcookie-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .gdprcookie-btn-group {
    text-align: center;
    margin: 10px 0 0 0;
    width: 100%;
  }

  .gdprcookie-button {
    display: inline-block;
    margin: 5px auto;
  }
}