/* COOKIES 2024-01-12 */

#cookies-fixed {
    display: block;
    position: fixed;
    left: 10px;
    bottom: 9px;
    z-index: 909;
    background-color: #000000;
    padding: 7px 8px;
    cursor: pointer;
    border-radius: 100px;
    border: 1px solid white;
}

#cookies {
	display:none;
    position:fixed;
    left:0px;
    right:0px;
    bottom:0px;
	top: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index:99999;
}
#cookies .container {
	margin: 0;
    width: 100%;
	max-width: 100%;
	padding: 15px;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.cookieContainer {
    font-family: 'SaintsualRegular';
    font-size: 12px;
    font-weight: 400;
    color: black;
	max-height: 100%;
	overflow: auto;
	display: flex;
	flex-flow: column;
	align-items: stretch;
	padding:20px 20px 10px 20px;
    width:100%;
	max-width: 800px;
	background-color: #fff;
	position: relative;
	border-radius: 15px;
}
.cookieClose {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 30px;
	width: 30px;
	position: absolute;
	right: 5px;
	top: 5px;
	border-radius: 100%;
	color: #fff;
	cursor: pointer;
	background-color: #121212;
}
.cookieMsg {
	display: block;
	text-align: justify;
	color: #121212;
	font-size: 10pt;
	margin-bottom: 20px;
}
.cookieMsg > h5 {
	max-width: calc(100% - 35px);
	margin-top: 0 !important;
	color: #121212;
	font-size: 12pt;
	font-weight: bold;
}
.cookieMsg > span {
	color: #121212;
	font-size: 11pt;
}
.cookieFooter {
	display: flex;
	flex-flow: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
.cookieFooter button {
	margin: 0 5px 10px 5px;
}
#cookieConfig {
	display: none;
}
.infoCookie {
	cursor: pointer;
}
.cookieSelector > table {
	font-size: 10pt;
	color: #000000;
}

.cookie-toggle {
    display: flex;
    width: fit-content;
    position: relative;
    box-sizing: border-box;
    margin: auto;
}
.cookie-toggle input[type="checkbox"] {
    position: absolute;
	margin: 0;
    left: 0;
    top: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    cursor: pointer;
    opacity: 0;
}
.cookie-toggle label {
    position: relative;
    display: flex;
    align-items: center;
    box-sizing: border-box;
	box-shadow: none !important;
}
.cookie-toggle label:before {
    content: '';
    width: 48px;
    height: 25px;
    position: relative;
    display: inline-block;
    background: #FFF;
    border-radius: 28px;
    border: 2px solid #000;
    box-sizing: border-box;
    transition: 0.2s ease-in;
}
.cookie-toggle label:after {
    content: '';
    position: absolute;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    left: 4px;
    top: 4px;
    z-index: 2;
    background: #000;
    box-sizing: border-box;
    transition: 0.2s ease-in;
}
.cookie-toggle input[type="checkbox"]:checked + label:before {
    background: #000;
}
.cookie-toggle input[type="checkbox"]:checked + label:after {
    left: 28px;
    background: #FFF;
}
.cookie-description {
    width: 100%;
    margin-top: 10px;
    border-radius: 5px;
    background-color: #F7F8F9;
    padding: 10px;
    display: flex;
    flex-flow: column;
    align-items: stretch;
    font-size: 9pt;
}
.cookie-desc-line {
    display: flex;
    flex-wrap: nowrap;
    margin-bottom: 5px;
}
.cookie-desc-line:last-child {
    margin-bottom: 0;
}
.cookie-desc-line>b {
    min-width: 80px;
}
.rotate-180>svg {
    transform: rotate(180deg);
}
.saintsual-tab {
    padding: 8px 16px;
    color: #000;
    text-decoration: none;
}

.saintsual-tab.active {
    font-family: 'SaintsualExtraBold', sans-serif;
}
  
.nav-link:focus, .nav-link:hover {
    font-family: 'SaintsualExtraBold', sans-serif;
    color: #000;
}

.bold{
    font-family: 'SaintsualExtraBold';
}

.buttonNotFull {
    color: black;
    text-decoration: none;
    border: 1px solid black;
    padding: 7px 20px;
    border-radius: 30px;
    background-color: white;
}

.buttonNotFullBlack {
    color: white;
    text-decoration: none;
    border: 1px solid black;
    padding: 7px 20px;
    border-radius: 30px;
    background-color: black;
}