#digital-cookies {
    bottom: 20px;
    left: 50%;
    width: calc(100% - 60px);
    transform: translateX(-50%);

    box-shadow: 0 5px 20px 0 #0000001f;

    max-width: 1500px !important;

    position: fixed;
    min-width: 250px;
    background: #fff;
    
    max-height: 100%;

    border-radius: 4px;
    overflow: hidden;

    z-index: 2999;
    opacity: 0;
    display: none;
}

#digital-cookies.active {
    opacity: 1;
    display: block !important;
    animation: toggle_opacity .2s;
}

.dc-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: none;
    padding: 21px 40px 20px 26px;
    min-height: auto;
    max-height: 100dvh;
}

.dc-boty__text-title {
    font-weight: bold;
    margin-bottom: 1rem;
}

.dc-body__btns {
    margin-left: 30px;
}

.dc-body__btns-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 15px;
}

.dc-body__btns-sub {
    display: flex;
    justify-content: end;
    margin-top: 1rem;
}

.dc-body__btns-btn {
    /*margin: 5px;*/
    background-color: #000;
    border-color: #000;
    color: #ffffff;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    font-weight: bold;
    border: 1px solid;

    border-radius: 4px;
    padding: 9px 20px 10px;
    text-align: center;
    font-size: 11.995px
}

.dc-body__btns-btn2 {
	font-family: 'Montserrat', sans-serif;
	
    font-size: 11.995px;
    text-transform: uppercase;
    cursor: pointer;
    border-bottom: 1px dashed #000;
    border-top: 0 none;
    border-left: 0 none;
    border-right: 0 none;
    background-color: transparent;
    padding: 0;
}

#digital-cookies-tune {
	/*display: none;*/
	overflow: hidden;
	height: 0px;
}

#digital-cookies-form {
	/*
	display: flex;
	flex-wrap: wrap;
	*/
	
	display: grid;
}

#digital-cookies button.dc-btn {
	font-family: 'Montserrat', sans-serif;

	border: 0 none;
	background: #eceae9;
	border-radius: 2px;
	width: 200px;
	height: 50px;
	font-weight: 500;
	font-size: 12px;
	line-height: 1.1;
	letter-spacing: -0.06em;
	text-transform: uppercase;
	text-align: center;
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	
	cursor: pointer;
}

#digital-cookies button.dc-btn:hover, #digital-cookies button.dc-btn:focus, #digital-cookies button.dc-btn:active {
	opacity: 0.5;
}

#digital-cookies button.dc-btn.active {
	background: #911e45;
}

#dc-btn-reject {
	opacity: 0.5;
	color: #000 !important;
}

#dc-btn-reject:hover, #dc-btn-reject:focus, #dc-btn-reject:active {
	opacity: 1 !important;
}

#digital-cookies button.dc-btn-save {
	font-family: 'Montserrat', sans-serif;

	border: 0 none;
	background: #eceae9;
	border-radius: 2px;
	padding: 10px 20px;
	font-weight: 500;
	font-size: 12px;
	line-height: 1.1;
	letter-spacing: -0.06em;
	text-transform: uppercase;
	text-align: center;
	color: #000;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	
	cursor: pointer;
}

#digital-cookies button.dc-btn-save:hover, #digital-cookies button.dc-btn-save:focus, #digital-cookies button.dc-btn-save:active {
	opacity: 0.5;
}

@keyframes toggle_opacity {
    0% { opacity: 0; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

@media (max-width: 991px) {
	.dc-body {
        flex-wrap: wrap;
    }

    .dc-body__btns {
        /* margin: 0; */
        width: 100%;
        margin: 2rem 0 0 0;
    }
}

@media (max-width: 575px) {
	.dc-body__btns-grid {
		  display: flex;
		  row-gap: 15px;
		  column-gap: 15px;
		  flex-wrap: wrap;
		  justify-content: center;
	}
	
	#digital-cookies button.dc-btn {
		width: calc(50% - 15px/2);
	}
}