@charset "utf-8";
/* CSS Document */

/*body{
    font-family: Arial, Helvetica, sans-serif;
    background-color: rgb(250, 211, 161);
}*/

.cookie-consent-modal{
    height:100vh ! important;
    width: 100% !important;
    background-color: rgba(0,0,0,0.5);
    position: fixed;
    margin-top:-150px !important;
    top: 0;
    left: 0;
    z-index: 999;
    display: none;
    align-items: flex-end;
}
.cookie-consent-modal.active{
    display: flex;
}
.content{
    background-color: #fff !important;
    padding: 5vw 3vw;
    border-radius: 10px 10px 0 0;
}

#consentP{
   font-size:16px !important; 
   margin-top:-30px !important;
}
  
  
.btns{
    display: flex;
    justify-content: flex-end;
    margin-top: 2em;
}
.btn{
    border: none;
    outline: none;
    padding: .8em 1.5em;
    width: 100px;
    margin-right: 1em;
    border-radius: 3px;
    text-transform: uppercase;
}
.btn.accept{
    background-color:black;
    /*background-color: rgb(0, 185, 124);*/
    color: #fff;
    margin-top:-20px !important;
    font-size:16px !important; 
}



 /* For Desktop View */
@media screen and (min-width: 1025px) {

.cookie-consent-modal{
    margin-top:-50px !important;
    width:100% !important;
}

#consentP{
   font-size:14px !important; 
   margin-top:-30px !important;
}
    
.btn.accept{
    margin-top:-20px !important;
    font-size:13px !important; 
}
	
	
}


/* For Tablet Landscape View  */
@media only screen and (min-device-width: 641px)
and (max-device-width: 1024px) {
    
 .cookie-consent-modal{
    margin-top:-60px !important;
}

#consentP{
   font-size:11px !important; 
   margin-top:-30px !important;
}
    
.btn.accept{
    margin-top:-35px !important;
    font-size:12px !important; 
}	
	
}


/* For Tablet Portrait View */
@media only screen and (min-device-width: 421px)
and (max-device-width: 640px) {

.cookie-consent-modal{
    margin-top:-100px !important;
}

#consentP{
   font-size:10px !important; 
   margin-top: 0px !important;
}
    
.btn.accept{
    margin-top:-20px !important;
    font-size:12px !important; 
}
	
}



/* For Mobile Screen */
@media only screen and (max-width: 420px) {
	    
.cookie-consent-modal{
    margin-top:-50px !important;
}

#consentP{
   font-size:10px !important; 
    margin-top: 0px !important;
}
    
.btn.accept{
    margin-top:-20px !important;
    font-size:14px !important; 
}

}