#wccc-popup{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

.wccc-box{
    background: #333;
    width: 600px;
    max-width: 95%;
    padding: 25px;
    border-radius: 8px;
	border: 1px solid #C99446;
	overflow-y: auto;
    max-height: 95vh;
}

.wccc-box .site-logo {
	text-align: center;
    border-bottom: 2px solid;
    border-image: linear-gradient(to right, transparent 0%, rgba(201, 148, 70, 0.3) 15%, #C99446 50%, rgba(201, 148, 70, 0.3) 85%, transparent 100%) 1;
	margin-bottom: 15px;
    padding-bottom: 10px;
}

.wccc-box h2{
    margin-bottom: 15px;
    color: #fff;
    font-family: "DM Sans", Sans-serif;
	text-align: center;
}

.wccc-box p {
    text-align: center;
    color: #fff;
}

.wccc-box .terms-to-accept {
	border-bottom: 2px solid;
    border-image: linear-gradient(to right, transparent 0%, rgba(201, 148, 70, 0.3) 15%, #C99446 50%, rgba(201, 148, 70, 0.3) 85%, transparent 100%) 1;
}
.wccc-box .terms-to-accept .item {
    display: flex;
    gap: 15px;
	margin-bottom: 15px;
}
	
.wccc-box .terms-to-accept .item img {
	width: 30px;
  	height: 30px; 
}
	
.wccc-box .terms-to-accept .item .text {
	width: calc(100% - 45px);	
}
	
.wccc-box .terms-to-accept .item .text h6{
	color: #fff;	
	font-family: "DM Sans", Sans-serif;
	margin: 0;
}
	
.wccc-box .terms-to-accept .item .text h6 span {
	color: #ddb85a;
}

.wccc-box label{
    display: block;
    margin-bottom: 12px;
    line-height: 1.5;
    color: #fff;
    cursor: pointer;
    font-family: "DM Sans", Sans-serif;
	text-align: center;
    margin-top: 15px;
}

.wccc-box input{
    margin-right: 8px;
}
	
.wccc-box .security {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    color: #ddd;
    gap: 8px;
}

.wccc-box .security span {
	font-size: 14px;
	font-family: "DM Sans", Sans-serif;
}

.wccc-box .security img {
	width: 20px;
	height: 20px;
}

#wccc-accept{
    margin-top: 10px;
    padding: 12px 20px;
    width: 100%;
    cursor: pointer;
    background-color: #C99446;
    font-family: "DM Sans", Sans-serif;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px 8px 8px 8px;
    padding: 16px 24px 16px 24px;
    color: #fff;
    border-color: #C99446;
}

#wccc-accept:disabled{
    opacity: 0.5;
    cursor: not-allowed;
}