.cookie__notice{
    position: fixed;
    bottom:50px;
    background: #FFF;
    box-shadow: 3px 3px 11px rgba(0, 0, 0, 0.2)  ; 
	-webkit-box-shadow: 3px 3px 11px rgba(0, 0, 0, 0.2)  ; 
	-moz-box-shadow: 3px 3px 11px rgba(0, 0, 0, 0.2)  ; 
    z-index: 1000000;
    left: 50%;
    transform: translateX(-50%);
    padding: 20px;
    transition: all .3s ease-out;    
    /* width: max-content; */
    opacity: 0;
    width: 100%;
}

.cookie__wrapper{
display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.cookie__notice-btn{
    flex: 0 0 auto;
}

.cookie__notice-btn .cookie__accept{
min-width: 150px;
}


 @media (max-width:480px){
    .cookie__notice{
        bottom: 100px;
        width: calc(100% - 30px);
    }
}

.scam__notice{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #FFF;
    box-shadow: 3px 3px 11px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 3px 3px 11px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 3px 3px 11px rgba(0, 0, 0, 0.2);
    z-index: 1000002;
    padding: 30px;
    transition: all .3s ease-out;
    opacity: 0;
    visibility: hidden;
    max-width: 1000px;
    width: calc(100% - 40px);
    border-radius: 8px;
}

.scam__close{
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color .3s ease;
}

.scam__close:hover{
    color: #cc3c33;
}

.scam__overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000001;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease-out;
}

.scam__wrapper{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.scam__content{
    /*text-align: center;*/
}

.scam__title{
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #cc3c33;
}

.scam__text{
    line-height: 1.6;
    color: #555;
}

.scam__text p{
    margin-bottom: 10px;
}

.scam__notice-btn{
    /*text-align: center;*/
}

.scam__notice-btn .scam__accept{
    min-width: 200px;
}

@media (max-width: 480px){
    .scam__notice{
        width: calc(100% - 20px);
        padding: 20px;
    }
    
    .scam__title{
        font-size: 20px;
    }
}