


*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
font-family: "Montserrat", sans-serif;
font-weight: 100;



}

/* Use a more specific selector */
body {
  font-family: 'Montserrat', Arial, sans-serif;
}

/* OR */

/* Add !important */
body {
  font-family: 'Montserrat' !important;
}

.wrapper{
  position: fixed; /* fixes the wrapper on the middle*/ 
  top:30%;
  left: 0%;
  right: 0%;
  margin: auto;
  max-width: 365px;
  background: #fff;
  padding: 25px 25px 30px 25px;
  border-radius: 10px;
  box-shadow: 1px 7px 14px -5px rgba(0,0,0,0.15);
  text-align: center;
  z-index: 999997; /* this is ordering of the layers, higher number gets more priority https://www.delftstack.com/howto/css/css-bring-to-front/*/
}
.wrapper.hide{
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.wrapper img{
  max-width: 90px;
}
.content header{
  font-size: 25px;
  font-weight: 600;
}
.content{
  margin-top: 0px;
}
.content p{
  color: #858585;
  margin: 5px 0 20px 0;
}
.content .buttons{
  display: flex;
  align-items: center;
  justify-content: center;
}
.buttons button{
  padding: 10px 20px;
  border: none;
  outline: none;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  background: #000000;
  cursor: pointer;
  transition: all 0.3s ease;
}
.buttons button:hover{
  transform: scale(0.97);
}
.buttons .item{
  margin: 0 10px;
}
.buttons a{
  color: #d63384;
}


.cookiescript_injected {
  background-color: rgba(17, 17, 17, 0.5) !important;
  position: fixed;
  padding: 0;
  width: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999996; 
}
