.live {
    padding: 100px 0;
}

.live h1 {
    margin: 20px 0;
    font-family: "Unbounded", sans-serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 120%;
    text-transform: uppercase;
}

.live h1 span {
    background: -webkit-gradient(linear, left top, right top, from(rgb(8, 205, 171)), to(rgb(8, 137, 159)));
    background: -o-linear-gradient(left, rgb(8, 205, 171), rgb(8, 137, 159) 100%);
    background: linear-gradient(90deg, rgb(8, 205, 171), rgb(8, 137, 159) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    background-clip: text;
    text-fill-color: rgba(0, 0, 0, 0);
}

.live-main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
}

.live-video {
    width: 66.66666%;
}

.live-comments {
    width: 33.33333%;
    background-color: #211F4E;
    padding: 20px;
    border-radius: 30px;
}

.chat-title {
    font-family: "Unbounded", sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 120%;
    text-transform: uppercase;
    text-align: center;
}

.live-btns {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.live-btns .btn {
    width: auto;
}

.live-box{
	margin: 0px 0 40px 0;
}

.vid-container {
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.vid-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%;
}
.vid-container iframe {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.video-translation {
    position: relative;
}

.hidey {
    width: 100%;
    height: 100px;
    background-color: rgb(255 255 255 / 0.01%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
}
.hidey-2 {
    width: 100%;
    height: 100px;
    background-color: rgb(255 255 255 / 0.01%);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 999;
}

@media (max-width: 767px) {
    .hidey, .hidey-2 {
        height: 50px;
    }
	.live-box,
	.live-btns{
		display: flex;
		flex-direction: column;
		gap: 0;
	}
	.live-box .btn{
		width: 100%;
		margin: 0 0 10px 0;
	}
}



/*Comments*/
.comment-awaiting-moderation {
    display: none;
}

.mycomments {
    padding: 10px;
    background: transparent;
    border: 1px solid var(--blue);
    border-radius: 10px;
}

.comments-title, .reply {
    display: none;
}

.comments-area .comment-list {
    list-style: none;
    margin-left: 0;
    max-height: 350px;
    overflow: auto;
    padding: 10px;
    background-color: rgb(33 31 78);
    border: 1px solid rgb(255 255 255 / 31%);
    font-size: 14px;
    border-radius: 5px;
}

.comments-area .comment-list li {
    margin-bottom: 10px;
}

.comment-author, .comment-metadata {
    color: #08c2a9;
}

.comment-content {
    font-weight: 300;
}

.comment-author img {
    display: none;
}

.comment-metadata a {
    font-size: 12px;
    color: rgb(130, 130, 130);
    text-decoration: none;
}

.says {
    margin-left: -5px
}

.comment-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.comment-author, .comment-metadata {

}

.comment-reply-title, .comment-notes, .comment-form-url {
    display: none;
}

.comment-form-comment textarea {
    height: 60px;
    font-size: 14px !important;
    width: 100% !important;
    background-color: transparent;
    border-radius: 15px;
    border: 1px solid rgb(255 255 255 / 31%);
    padding: 10px;
    color: #fff;
}

.comment-form-author, .comment-form-email {

    background-color: transparent;
    border-radius: 15px;
}

.comment-form-author input, .comment-form-email input {
    width: 100%;
    background-color: transparent;
    border-radius: 15px;
    border: 1px solid rgb(255 255 255 / 31%);
    height: 40px;
    padding: 10px;
    color: #fff;
}

.comment-form-cookies-consent {
    display: inline-block;
}

.comment-form-cookies-consent input {
    position: absolute;
}

.live-comments #submit {
    background: -webkit-gradient(linear, left top, right top, from(rgb(8, 205, 171)), to(rgb(8, 137, 159)));
    background: -o-linear-gradient(left, rgb(8, 205, 171), rgb(8, 137, 159) 100%);
    background: linear-gradient(90deg, rgb(8, 205, 171), rgb(8, 137, 159) 100%);
    border: none;
    padding: 15px;
    width: 100%;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
    color: #fff;
}

.logged-in-as {
    font-size: 14px;
}

.logged-in-as a {
    color: #08c2a9;
}

.live-comments label {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 5px;
    display: block;
}


.live-comments .comment-form-cookies-consent label {
    margin-left: 20px;
    font-size: 12px;
}

.live-btns .pulse-btn {
    animation: pulseScale 2s ease-out infinite;
}

.pulse-btn {
    animation: pulseScale 2s ease-out infinite;
}


@media (max-width: 767px) {
.live {
    padding: 80px 0 30px 0;
}
}