.notify-container{
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    box-sizing: border-box;
	max-width: 1320px;
}

.notify-cookie-modal {
	width: 100%;
	position: fixed;
	z-index: 2000;
	padding: 1rem 0;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 10px 10px -5px rgba(0, 0, 0, .04);
	border-radius: 0.5rem;
	font-size: .75rem;
	right:0;
	left:0;
}

.notify-cookie-modal--bottom {
	bottom: 1rem !important;
}

.notify-cookie-modal--top {
	top: 1rem !important;
}

.notify-cookie-modal--left {
	left: 1rem;
}

.notify-cookie-modal--right {
	right: 1rem;
}

.notify-cookie-modal--center {
    left: 50%;
    transform: translateX(-50%);
}


@media (max-width: 992px) {
	.notify-cookie-modal--fixed-width {
		width: 100% !important;
	}

	.notify-cookie-modal--bottom {
		bottom: 0 !important;
	}
	.notify-cookie-modal--top {
		top: 0 !important;
	}
	.notify-cookie-modal--left {
		left: 0 !important;
	}
	.notify-cookie-modal--right {
		right: 0 !important;
	}
	.notify-cookie-modal--center {
		left: 0 !important;
		transform: translateX(0) !important;
	}
}

.notify-cookie-modal__theme-white {
	background-color: #fff;
	color: #000;
}

.notify-cookie-modal__theme-dark {
	background-color: #000;
	color: #fff;
}

@media (min-width: 768px) {
    .notify-cookie-modal {
        font-size: .875rem;
    }
}

.notify-cookie-modal__title {
	margin-bottom: .25rem;
}

.notify-cookie-modal__wrapper {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

@media (min-width: 576px) {
    .notify-cookie-modal__wrapper{
        flex-direction: row;
    }
}

.notify-cookie-modal__text {
	margin-bottom: .5rem;
	width: 100%;

	a {
		color: #2196f3;
		text-decoration: none;
	}
}

@media (min-width: 576px) {
    .notify-cookie-modal__text {
        width: 66.66666%;
    }
}

.notify-cookie-modal__button {
	align-self: center;
	width: 100%;
}

@media (min-width: 576px) {
    .notify-cookie-modal__button {
        width: 25%;
    }
}

.notify-btn {
	box-sizing: border-box;
	cursor: pointer;
	text-decoration: none;
	width: 100%;

	display: block;
    text-align: center;
    white-space: nowrap;

    user-select: none;
    border: 1px solid transparent;
    position: relative;
    padding: .5em 1.2em;
    font-size: 1rem;
    border-radius: .25rem;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;

	padding: .54em .8em;
	font-weight: 500;
    text-transform: uppercase;
	font-size: .7875rem;
    border: none;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .1), 0 1px 2px 0 rgba(0, 0, 0, .06);
}

.notify-btn+.notify-btn {
    margin-top: .5rem;
}

/* типы кнопок */
.notify-btn--default {
	color: white !important;
	background-color: #343a40;
	border-color: #292d32;
}
.notify-btn--default:hover {
	background-color: #1d2124;
	border-color: #191b1e;
}

.notify-btn--primary {
	color: white !important;
	background-color: #4c6ef5;
	border-color: #345af4;
}
.notify-btn--primary:hover {
	background-color: #1c47f2;
	border-color: #123ff2;
}

.notify-btn--secondary {
	color: white !important;
	background-color: #e64980;
	border-color: #e33370;
}
.notify-btn--secondary:hover {
	background-color: #de1e61;
	border-color: #d51d5d;
}

.notify-btn--success {
	color: white !important;
	background-color: #40c057;
	border-color: #39ad4e;
}
.notify-btn--success:hover {
	background-color: #339a45;
	border-color: #309242;
}

.notify-btn--info {
	color: white !important;
	background-color: #228be6;
	border-color: #187ed6;
}
.notify-btn--info:hover {
	background-color: #1671bf;
	border-color: #156bb6;
}

.notify-btn--warning {
	color: white !important;
	background-color: #fd7e14;
	border-color: #f57102;
}
.notify-btn--warning:hover {
	background-color: #dc6502;
	border-color: #d26102;
}

.notify-btn--danger {
	color: white !important;
	background-color: #fa5252;
	border-color: #f93939;
}
.notify-btn--danger:hover {
	background-color: #f92020;
	border-color: #f81717;
}

.notify-btn--link {
  font-weight: normal;
  color: #4c6ef5;
  border-radius: 0; 
}
.notify-btn--link:hover {
    border-color: transparent;
}
/* конец типы кнопок */

.notify-cookie-modal__wrapper--card {
	flex-direction: column;
}

.notify-cookie-modal__wrapper--card > div {
    width: 100% !important;
}

.notify-cookie-modal__wrapper--card div:nth-child(2) {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.notify-cookie-modal__wrapper--card div:nth-child(2) a {
	margin-top: unset;
}

@media (min-width: 768px) {
	.notify-cookie-modal__wrapper--card div:nth-child(2) {
		flex-direction: row;
	}
} 