/*
 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
*/

html {
    scroll-behavior: smooth;
}

h1{font-size: clamp(1.5rem, 0.7727rem + 3.6364vw, 3.5rem);}
h2{font-size: clamp(1.4rem, 1rem + 2vw, 2.5rem); margin-bottom: 15px;}
h3{font-size: clamp(1.3rem, 1.0455rem + 1.2727vw, 2rem);}
h4{font-size: clamp(1.2rem, 1.0909rem + 0.5455vw, 1.5rem);}
h5{font-size: clamp(1.1rem, 0.9909rem + 0.5455vw, 1.4rem);}
h6{font-size: clamp(1.1rem, 1.0273rem + 0.3636vw, 1.3rem);}
p a {color: #fcbd18; transition: all 0.3s ease;}
p a:hover {color: #ffeb3b;}
.user-only,
.guest-only {
    display: none;
}

.prevent-select {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.tags-container {
  display: flex;
  gap: 5px;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}

.tags-button:not(.none),
a[rel="tag"],
.brxe-post-taxonomy a{
	color: #fff !important;
    font-weight: 500;
    background-color: #212121;
	font-size: 0.9em;
	padding: .4em 1em; 
	border-radius: 7px;
	text-decoration: none !important;
}
.tags-button.dark,
a.dark[rel="tag"],
.brxe-post-taxonomy.dark a{
	background-color: #0d0d0d;
}
.tags-button:not(.none):hover,
a[rel="tag"]:hover,
.brxe-post-taxonomy a:hover{ 
	background-color: #424242;
}

.label-new::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('https://henbaka.com/wp-content/themes/henbaka/assets/images/fire.png');
    background-size: cover;
    background-repeat: no-repeat;
    margin-right: 3px;
	margin-top: -2px;
    vertical-align: middle;
}

.tab-link.active{
  color: #fcbd18 !important;
}

#video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

#video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-resolutions {
    display: flex;
    gap: 7px;
    flex-direction: row;
    flex-wrap: wrap;
}

button.resolution-btn {
    padding: 5px 12px;
	border: solid 1px #333;
    border-radius: 5px;
    color: #fff;
    background: transparent;
	transition: all 0.3s ease;
}

button.resolution-btn:hover { 
	border-color: #585858;
}

button.resolution-btn.active { 
	border-color: #fff;
}

.bricks-posts-nothing-found {
    padding: 10px;
	text-align: center;
}

.brxe-post-comments .comment-meta .comment-reply-link {
    color: #000; 
	transition: all 0.3s ease;
}
textarea#comment::placeholder {
    color: #676767;
}
#commentform input#submit {
    padding: 12px 25px;
}
p.form-submit {
    text-align: center;
}

a.video-related.same-creator.is-current {
    background-color: #121212;
}

.video-title {
  display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

#serverlist-links a {
    padding: 5px 10px;
    background-color: #2e2e2e;
	border: solid 1px #212121;
    border-radius: 5px;
    color: #fff;
    margin-right: 5px;
    text-wrap: nowrap;
	transition: all 0.3s ease;
}
#serverlist-links a:hover {
    background-color: #585858;
}
#serverlist-links a.active {
	border-color: #a7a7a7;
    background-color: #585858;
}

@media (max-width: 768px) {
	.serverlist-wrapper {
		width: 200px;
	}
}

@media (max-width: 478px) {
	.label-new::before {
		width: 12px;
		height: 12px;
	}
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}