
/************* cookie popup *************/

.cookie-popup-wrapper{
    position: fixed;
    bottom: 32px;
    right: 32px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #222;
    background-color: #FFF;
    max-width: 550px;
    padding: 2rem;
    color: #EEE;
    border-radius: 4px;
    z-index: 9999;
}

.cookie-header{
    font-size: 1.3rem;
    font-family: sans-serif;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #333;
}

.cookie-body{
    margin-bottom: 2rem;
    color: #333;
}

.cookie-body a{
    color: #333;
}

.cookie-footer{
    text-align: center;
}

#cookie_accept_all{
    background-color: #111;
    color: #FFF;
    font-size: 1.2rem;
    font-weight: 800;
    border: 1px solid #111;
    padding: 1rem 2rem;
    border-radius: 4px;
}

#cookie_accept{
    background-color: transparent;
    color:  #333;
    font-size: 1.2rem;
    font-weight: 600;
    border: 1px solid #333;
    padding: 1rem 2rem;
    border-radius: 4px;
}

@media(max-width: 500px){
    .cookie-popup-wrapper{
        bottom: auto;
        right: auto;
        top: 32px;
        padding: 1rem;
        overflow-y: scroll;
        max-width: 100vw;
        max-height: 90vh;
    }
    
    #cookie_accept_all{
        font-size: 1.0rem;
        font-weight: 800;
        padding: 0.5rem 0.8rem;
        margin-bottom: 0.5rem;
    }

    #cookie_accept{
        font-size: 1.0rem;
        font-weight: 600;
        padding: 0.5rem 0.8rem;
        margin-bottom: 0.5rem;
    }
}

.waves---expandable-item{
    cursor: default !important;
}

/*************** checkbox *****************/


.cliff-checkbox-wrapper {
  display: block;
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.cliff-checkbox-wrapper input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.cliff-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 15px;
  width: 15px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.cliff-checkbox-wrapper:hover input ~ .cliff-checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.cliff-checkbox-wrapper input:checked ~ .cliff-checkmark {
  background-color: #777;
}

/* Create the checkmark/indicator (hidden when not checked) */
.cliff-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.cliff-checkbox-wrapper input:checked ~ .cliff-checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.cliff-checkbox-wrapper .cliff-checkmark:after {
  left: 5px;
  top: 2px;
  width: 3px;
  height: 6px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}