.comment-list .comment {
    border: none;
    background-color: #F5FAFF;
    border-radius: 1rem;
    padding: 5rem 3rem;
}

iframe {
    height: 100%;
    aspect-ratio: 16 / 9;
}

.bricks-comments-inner {
    display: flex;
    flex-direction: column;
}
.bricks-comments-inner .comment-list {
    order: 1;
    border-bottom: none;
    margin: 0;
    padding-bottom: 0;
}
.comment-reply-link, .comment-reply-title, .logged-in-as {
    display: none;
}
#respond {
    margin-top: 0;
}
.comment-respond {
    background-color: var(--charlie);
    border-radius: 1rem;
    padding: 5rem 3rem 3rem;
    margin-bottom: 3rem;
}
.form-submit {
    display: flex;
}
.form-submit input[name="submit"] {
    margin-left: auto;
    transition: .2s ease;
}
#comment {
    border: 0.1rem solid #68747E;
    border-radius: 1rem;
    background-color: transparent;
}
#comment::placeholder {
    color: #68747E;
}
.ccc-favorite-post-toggle[data-ccc_my_favorites-select_button-style="1"] {
    text-align: center;
}
.ccc-favorite-post-toggle-button {
    font-size: 3rem;
    line-height: 1;
}

.no-access-cont{
    width:100%;
    position:relative;
    aspect-ratio: 16/9;
}
.no-access-cont .overlay-div{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:#fff;
    opacity:.8;
    z-index:1;
}

.no-access-cont .content-div{
    position:absolute;
    left:50%;
    top:50%;
    transform: translate(-50%, -50%);
    z-index:2;
    background:#fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding:3rem;
}

.no-access-cont svg{   
    width:10rem;
    height:10rem;
}
.no-access-cont img{
    width:100%;
    object-fit: cover;
}
.no-access-cont .text-n-link{
    text-align: center;
    margin: 3rem 0;
}
.no-access-cont .text-n-link a{
    display:block;
    text-align: center;
    background-color: var(--alpha);
    width:fit-content;
    min-width: 15rem;
    color:#fff;
    margin:auto;
    margin-top:1rem;
    border-radius: var(--btn-radius-s);
    transition: .25s ease-out;
}
.no-access-cont .text-n-link a:hover {
    background-color: var(--bravo);
    color: var(--alpha);
}
@media only screen and (max-width: 700px) {
  .no-access-cont svg{   
    width:3rem;
    height:3rem;
    }
    .content-div{
        width:90%;
        padding:1rem!important;
    }
    .no-access-cont .text-n-link {
    text-align: center;
    margin: 1rem 0;
}
}

@media only screen and (max-width: 480px) {
  .comment-list .comment, .comment-respond {
    padding: 3rem 2rem;
  }
}