/* COOKIE CONSENT MANAGER * /

/* cookie-conset*/
.cookie-consent-banner{
	position: fixed;
    z-index: 2147483649;
	color: rgb(232, 230, 227);
	background-color: rgb(49, 49, 48);
	font-size: 16px;
	line-height: 1.5em;
	left: 0;
    right: 0;
	bottom: 0;
	-webkit-box-align: center;
    -ms-flex-align: center;
	align-items: center;
	padding: 1em 1.8em;
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
	flex-direction: row;
    -webkit-transition: opacity 1s ease;
	transition: opacity 1s ease;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: Helvetica,Calibri,Arial,sans-serif;
    display: -webkit-box;
    display: -ms-flexbox;
    display: none;
    -ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	text-align: justify;
}

.cookie-consent-banner.visible{
	display: flex;
}

.cookie-consent-message{
	display: block;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    max-width: 100%;
    margin-right: 1em;
}

.cookie-consent-link{
	text-decoration-color: initial;
	opacity: .8;
    display: inline-block;
    padding: .2em;
	text-decoration: underline;
	cursor: pointer;
	outline-color: initial;
}
.cookie-consent-link:hover{
	outline: 0;
}

.cookie-consent-btn-container{
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: justify;
    align-content: space-between;
}

.cookie-consent-btn{
    padding: .4em .8em;
    font-size: .9em;
    font-weight: 700;
    border-width: 2px;
    border-style: solid;
    text-align: center;
	white-space: nowrap;
	cursor: pointer;
	color: rgb(232, 230, 227);
	transition: all .2s ease-in-out;
}
.cookie-consent-btn-config{
	background-color: transparent;
    border-color: transparent;
}
.cookie-consent-btn-config:hover{
	text-decoration-color: initial;
	outline-color: initial;
	text-decoration: underline;
}

.cookie-consent-btn-allow, .cookie-consent-config-panel-btn-allow{
	margin-left: .5em;
	border-radius: 5px;
    border-color: transparent;
	background-color: rgb(184, 20, 20);
	min-width: 140px;
}

.cookie-consent-btn-allow:hover, .cookie-consent-config-panel-btn-allow:hover{
	background-color: rgb(166, 0, 0);
}

/* cookie consent preferences managager */

.cookie-consent-config-container{
	display: none;
	top: 0;
	background: rgba(0, 0, 0, 0.7);
    height: 100%;
    width: 100%;
    position: fixed;
	z-index: 2147483650;
	transition: all .2s ease-in-out;
	font-size: 16px;
	line-height: 1.5em;
	-webkit-box-sizing: border-box;
	font-family: Helvetica,Calibri,Arial,sans-serif;
	-webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none;
}

.cookie-consent-config-panel{
	text-align: justify;
	color: rgb(232, 230, 227);
	background-color: rgb(49, 49, 48) !important;
	padding: 0 1em;
	max-width: 40%;
    max-height: 70%;
	position:fixed;
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:auto;
	background-color: #f1f1f1;
	z-index: 2147483651;
	overflow-y: auto;
    overflow-x: hidden;
}

.cookie-consent-config-panel-close{
	cursor: pointer;
}
.cookie-consent-config-panel-close:hover{
	font-weight: bold;
}

.cookie-consent-config-panel-display-info-permision{
	font-size: x-large;
	vertical-align: bottom;
	cursor: pointer;
}

.cookie-consent-config-panel-display-info-title{
	font-weight: bold;
}

.cookie-consent-config-panel-display-info-permision-detaill{
	display: none;
}
.cookie-datail-container-table-header{
	border: 1px solid grey;
	font-weight: bold;
	font-size: 0.8rem;
}
.cookie-datail-container{
	border-bottom: 1px solid grey;
	font-size: 0.8rem;
}

.custom-control-input:checked~.custom-control-label::before {
	color: #fff;
	background-color: rgb(180, 70, 70);
	border-color:rgb(138, 0, 0);
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

/*La etiqueta que refleja el estado de la peticion*/
.custom-control-label{
	width: 100px;
	padding-left: 0.5rem !important;
	padding-right: 1rem !important;
	border: 1px solid white;
	border-radius: 5px;
	transition: all .2s ease-in-out;
}

.custom-control-label.allow{
	background-color: rgb(184, 20, 20);
}

.cookie-consent-config-panel-btn-container{
	display: flex;
}
.cookie-consent-config-panel-btn-save{
	display: none;
}
.cookie-consent-config-panel-btn-deny{
	background-color: rgb(69, 69, 69) !important;
}
.cookie-consent-config-panel-btn-deny.hidden{
	display: none;
}

@media(max-width: 480px) {
	/* fin aviso cookies */
	.cookie-consent-banner.visible{
		display: block !important;
	}
	.cookie-consent-config-panel{
		width: 100% !important;
		height: 100% !important;
	}
}

/** Iphone 6 es 375px */
@media(max-width: 350px) {
	.cookie-consent-banner.visible{
		display: block !important;
	}
	.cookie-consent-config-panel{
		width: 100% !important;
		height: 100% !important;
	}
	
}
