
#consentModal.fade:not(.show) {
    opacity: 1;
}

.consentIcon{
    position: fixed;
    left: 20px;
    bottom: 20px;
    background: transparent;
    z-index: 9999;
    width: 50px;
    cursor: pointer !important;

}

.consentIcon img{
    width: 50px;
}

.cookie-alert-consens{
	position: fixed; 
	bottom: 0; 
	width: 100%; 
	z-index: 9999; 
	background-color: white; 
	border-top: 1px solid #ccc; 
	padding: 10px; 
	box-shadow: 0px -2px 5px rgba(0,0,0,0.2);
}

.cookie-alert-consens .card-title{
	margin-bottom: 0;
}

.cookie-alert-consens .card-text{
	padding-right: 15px;
}

.cookie-alert-consens .btn_accept{
	margin-right: 10px; 
	background-color: black; 
	color: white; 
	border-color: black;
	border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 120px;
    border: 0px;
    padding: 10px;
}

.cookie-alert-consens .btn_accept:hover, .cookie-alert-consens .btn_more_details:hover{
	opacity: 0.7;
}

.cookie-alert-consens .btn_more_details{
	background-color: #d6d6d6; 
	color: black; 
	border-color: #d6d6d6;
	border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 120px;
    border: 0px;
    padding: 10px;
 
}

/* Stiluri specifice pentru modalul de consimțământ */

*:focus {
    outline: none;
}

#consentModal .modal-dialog{
    width: calc(100% - 20px);
    max-width: 600px;
 
}
#consentModal .modal_subtitle{
	font-weight: bold;
    margin-bottom: 5px;
}
#consentModal .modal-dialog {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0 auto;
}

#consentModal .modal-content {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#consentModal .modal-header {
    border-bottom: 1px solid #eeeeee;
    background-color: #f7f7f7;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    padding: 1rem 1rem;
}

#consentModal .modal-title {
    color: #333;
    font-weight: bold;
    display: inline;
}

#consentModal .modal-body {
    padding: 20px;
}

#consentModal .modal-footer {
    border-top: 1px solid #eeeeee;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
    padding: 15px;
    display: inline-flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 100%;
}

#consentModal .btn-primary, #consentModal .btn-secondary {
    background-color: #1967D2;
    border-color: #007bff;
    color: #fff;
    width: 31%;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 0px;
}

#consentModal .btn-default{
     color: #000;
    width: 31%;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 0px;
}
#consentModal .btn:hover{
	opacity: 0.7; 

}
#consentModal .custom-control-label::before {
    border-radius: 0.25rem;
}

#consentModal .close {
    color: #000;
    opacity: 1;
    float: right;
   
    border-radius: 5px !important;
}


#consentModal .close:hover {
    background-color: #1967D2;
    color: #fff;
}


.cookie-alert-consens .card-container {
    display: flex;
    align-items: center;
}

.cookie-alert-consens .card-title {
    margin-right: 5px;
    font-size: 30px;
}

.cookie-alert-consens .card-text {
    display: flex;
    flex-direction: column;
}

.cookie-alert{
    display: none !important;
}

#consentModal p, .custom-control-label{
    font-size: 14px;
    line-height: 1.2em;
}

#consentModal h5 {
    margin: 0px;
}

#consentModal {
    position: fixed; /* Sau `absolute`, dacă preferi */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Asigură-te că modalul este vizibil deasupra altor elemente */
    z-index: 1000; 
    border: 0px !important;
}

.modal-backdrop {
    z-index: 100;
    background-color: rgb(0 0 0 / 30%);
}

#consentModal{
    display: none;
}

@media only screen and (max-width: 600px) {
  #consentModal {
    width: 100%;
    }
}

 #detalii_text {
    display: none;
}

#detalii_title {
    cursor: pointer;
    position: relative;
    padding-left: 20px;
}
#detalii_title::before {
    content: '▼';
    position: absolute;
    left: 0;
    top: 0;
}
#detalii_title.collapsed::before {
    content: '▲';
}