﻿/* Disable the page behind the cookies message */
.uc_cookies {
    z-index: 9999;
    position: fixed;
    background-color: rgba(183,183,183, 0.5);
    width: 100vw;
    height: 100vh;
}

.uc_cookies .container {    
   background: white;
   width: 50vw;
} 

/* Cookie message container smaller on small screens */
/* Small Devices, Tablets */
@media screen and (max-width: 748px)  {
    .uc_cookies .container {    
       width: 75vw;
    }
}

 /* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
    .uc_cookies .container {
        width: 100vw;
    }
}

/* Space around the row */
.uc_cookies .container .row {
    padding: 10px;
}