/*
 Theme Name:   Bricks Child Theme
 Theme URI:    https://bricksbuilder.io/
 Description:  Use this child theme to extend Bricks.
 Author:       Bricks
 Author URI:   https://bricksbuilder.io/
 Template:     bricks
 Version:      1.1
 Text Domain:  bricks
*/

/*COOKIES BANNER*/
.cookie-banner{
  position: fixed;
  width: 40%;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: none;
}
.cookie-inner{
  background: #161616;
  color: #999999;
  padding: 16px 18px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: start;
  justify-content: start;
  box-shadow: 0 10px 30px rgba(0,0,0,.5);
  font-weight: 400;
  border: 1px solid #222222;
}
.cookie-inner p{
  margin: 0;
  line-height: 1.35;
  font-size: 18px;
}
.cookie-actions{
  display: flex;
  gap: 12px;
  align-items: center;
  flex: 0 0 auto;
}
.cookie-more {
  color: #D4A829;
  text-decoration: underline;
  font-size: 18px;
  white-space: nowrap;
}
.cookie-more:hover {
  color: #e6bc3f;
}
#cookie-title {
  font-size: 26px;
  font-weight: 700;
  color: #F5F5F0;
}
#accept-cookies{
  background: #4B5320;
  color: #D4A829;
  border: 1px solid #4B5320;
  padding: 10px 14px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 700;
  white-space: nowrap;
}
.cookie-btn{
  border: 0;
  padding: 10px 30px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 700;
  white-space: nowrap;
  font-size: 18px;
}
.cookie-btn:hover {
  background: #3d4419 !important;
  border: 1px solid #3d4419 !important;
}
.cookie-btn.primary{
  background: #4B5320;
  color: #D4A829;
}
.cookie-btn.secondary{
  background: transparent;
  color: #D4A829;
  border: 1px solid #D4A829;
}
.cookie-btn.secondary:hover {
  background: #D4A829 !important;
  color: #0D0D0D;
  border: 1px solid #D4A829 !important;
}
@media (max-width: 700px) {
  .cookie-banner{
    width: auto;
    box-sizing: border-box;
    padding: 20px;
    right: auto;
  }
  .cookie-inner {
    flex-direction: column;
    gap: 12px;
  }
  .cookie-actions {
    flex-direction: column;
    align-items: center;
    justify-content: stretch;
    width: 100%;
  }
  .cookie-actions button {
    text-align: center !important;
    width: 100%;
  }
}