@charset "UTF-8";

/* ==========================================
  基本設定
========================================== */
ul {
    list-style-type: none;
}

.flex {
    display: flex;
}

.menulist a {
    border: none;
    text-decoration: none;
    color: #333;
}

.sp {
    display: none;
}

.pc {
    display: block;
}

/* ==========================================
  ユーザー情報エリア
========================================== */
.user-info-wrap {
    border: 1px solid #ddd;
    border-radius: 2px;
    padding: 10px;
    margin-bottom: 2rem;
    background: #f9f9f9;
    align-items: center;
}

/* ユーザー画像 */
.userimg {
    margin-top: 0.5rem;
    margin-left: 1rem;
    margin-right: 1rem;
    padding-right: 0;
}

.userimg img {
    border-radius: 50%;
}

/* ユーザー名 */
.name {
    font-size: 16px;
    display: flex;
    align-items: center;
    margin-right: 2rem;
}

.small {
    font-size: 12px;
    color: #777;
    margin-top: 0.5rem;
    margin-left: 5px;
}

/* コメント・リアクション数 */
.all-comment,
.all-reaction {
    font-size: 14px;
    display: flex;
    margin-right: 2rem;
    align-items: center;
    justify-content: center;
}

.all-comment {
    padding-right: 0 !important;
}

/* アクティビティ表示 */
.act1,
.act2 {
    display: flex;
    align-items: center;
}

.act1 {
    font-size: 12.5px;
    padding: 0.5rem;
}

.act1 span,
.act2 span {
    display: block;
    position: relative;
    background: #ebebeb;
    padding: 0.4rem 0.4rem 0.4rem 2.9rem;
}

.act1 span:before,
.act2 span:before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 0.4rem;
    left: 0.9rem;
}

.act1 span:before {
    background-image: url(../img/clap2.svg);
}

.act2 span:before {
    background-image: url(../img/heart.svg);
}

/* フォントサイズ変更 */
.fs1 {
    font-size: 1.1em;
}

.fs2 {
    font-size: 1.2em;
}

.fs3 {
    font-size: 1.3em;
}

/* ==========================================
  アラートボックス
========================================== */
.alert-box .info {
    color: #e12727;
    background: #FFF8F8;
    display: flex;
    width: 33%;
    font-size: 0.9em;
    justify-content: space-between;
    border: 1px solid #e12727;
    border-radius: 4px;
    padding: 0.3rem 1rem;
    line-height: 1.7rem;
}

.close-btn {
    background: none;
     
    border: none;
    font-size: 40px;
    cursor: pointer;
    color: #e12727;
}

.close-btn:hover {
    color: #333;
}

/* ==========================================
  マイメニュー
========================================== */
.mymenu-wrap {
    font-size: 1.1em;
}

.mymenu-wrap li {
    border-left: 1px solid #ccc;
    padding: 0.5rem 3rem;
    position: relative;
}

.mymenu-wrap li:last-child {
    border-right: 1px solid #ccc;
}

/* メニューアイコン */
.mymenu-wrap .news,
.mymenu-wrap .qa,
.mymenu-wrap .bookmark {
    position: relative;
    padding-left: 5rem;
}

.mymenu-wrap .news:before,
.mymenu-wrap .qa:before,
.mymenu-wrap .bookmark:before {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 0.5rem;
    left: 2.6rem;
}

.mymenu-wrap .news:before {
    background-image: url(../img/info.svg);
}

.mymenu-wrap .qa:before {
    background-image: url(../img/balloon.svg);
}

.mymenu-wrap .bookmark:before {
    background-image: url(../img/bookmark.svg);
}

/* 通知バッジ */
.notification-badge {
    position: absolute;
    top: -0.4em;
    right: 1em;
    background: #f44336;
    color: #fff;
    font-size: 0.85em;
    width: 1.5em;
    height: 1.5em;
    text-align: center;
    border-radius: 50%;
    line-height: 1.5em;
    display: block;
}

.menulist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.menulist li {
    position: relative;
}

.menulist .news {
    position: relative;
}

/* ==========================================
  FAQセクション
========================================== */
.faq-section {
    background-color: #f8f9ff;
    margin: 2rem 0;
    border-radius: 8px;
    width: 100%;
    text-align: center;
}
.faq-list a{
    text-decoration: none;
}

/* FAQタイトル */
.faq-title {
    text-align: center;
    color: #217dbb;
    margin-bottom: 1.5rem;
    position: relative;
    background-color: #e1f0fa;
    padding: 1rem;
    border-radius: 4px;
    font-size: 1.7rem !important;
}

.faq-title:before {
    font-family: FontAwesome;
    content: '\f29c';
    color: #217dbb;
    margin-right: 8px;
    font-size: 2rem !important;
    position: relative;
    top: 1px;
}

.faq-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.4rem;
    margin-top: 1rem;
}

/* FAQリスト */
.faq-list {
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0;
    padding: 0.5rem 2rem 0 2rem;
}

.faq-list li {
    text-align: center;
    padding: 1rem;
    background: #fff;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.faq-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.faq-list img {
    margin-bottom: 1rem;
}

.faq-list p {
    font-size: 0.9rem;
    color: #333;
    font-size: 1.2rem;
    line-height: 1.4;
}

/* FAQボタン */
.faq-button {
    text-align: center;
}

.faq-button .btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #fff;
    color: #217dbb;
    border: 1px solid #217dbb;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.faq-button .btn:hover {
    border: 1px solid #014e81;
    color: #014e81;
}

.q_cat {
    margin-right: 1rem;
    margin-left: 1rem;
}

/* ==========================================
  タブ切り替え
========================================== */
.tab-container {
    margin:2rem 0;
}

.tab-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #ddd;
}

.tab-list li {
    flex: 1;
    text-align: center;
    cursor: pointer;
    padding: 1rem;
    color: #666;
    position: relative;
    transition: all 0.3s ease;
    background: #f5f5f5;
    margin-right: 2px;
    font-weight: bold;
    font-size: 1.4rem;
}

.tab-list li:last-child {
    margin-right: 0;
}

.tab-list li span {
    position: relative;
    z-index: 2;
}

.tab-list li.active {
    background: #f44336;
    color: #fff;
}

.tab-list li:first-child.active {
    background: #f44336;
}

.tab-list li:nth-child(2).active {
    background: #f44336;
}

.tab-list li:nth-child(3).active {
    background: #f44336;
}

.tab-list li:last-child.active {
    background: #f44336;
}

.tab-content {
    display: none;
    padding: 2rem 0;
}

.tab-content.active {
    display: block;
}

.maincon h3 {
    font-size: 15px;
    margin-top: 0;
}

/* タブ内のリストスタイル */
.faqlist li {
    border-bottom: 1px solid #eee;
    padding: 1rem 0;
}

.faqlist li:last-child {
    border-bottom: none;
}

.faqlist a {
    text-decoration: none;
    color: #333;
}

/* もっと見るボタン */
.more-btn {
    text-align: center;
    margin: 2rem 0;
}

.more-btn a {
    display: inline-block;
    padding: 0.8rem 3rem;
    background: #fff;
    border: 1px solid #bbbbbb;
    border-radius: 4px;
    color: #666;
    text-decoration: none;
    font-size: 1.2rem;
}

.more-btn a:hover {
    background: #f5f5f5;
}

/* ラベルスタイル */
.label {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    margin-right: 0.5rem;
    border-radius: 3px;
    font-size: 1.3rem !important;
}

span.label.ic07 {
    background-color: #C000C0;
}

span.label.ic07:before {
    font-family: FontAwesome;
    content: '\f05a';
    color: #fff;
    display: block;
    width: 1em;
    height: 1em;
    position: absolute;
    left: 5px;
    top: 2px;
}

.label.ic01 {
    background-color: #f44336;
    color: #fff;
}

.label.ic02 {
    background-color: #4CAF50;
    color: #fff;
}

.label.ic03 {
    background-color: #2196F3;
    color: #fff;
}

.panel-heading span.label.ic01:before,
.panel-heading span.label.ic02:before,
.panel-heading span.label.ic03:before {
    left: 5px !important;
    top: 4px !important;
}


/* ==========================================
  お知らせ一覧
========================================== */
.news-list-wrap {
    margin: 0 0 2rem 0;
}

.news-list-wrap .list-item {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.news-list-wrap .list-item.unread {
    background-color: #FFFDF3;
}

.news-list-wrap .icon {
    width: 32px;
    height: 22px;
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.news-list-wrap .icon.question {
    background-image: url(../img/q.svg);
}

.news-list-wrap .icon.info {
    background-image: url(../img/icon1.svg);
}

.news-list-wrap .icon.heart {
    background-image: url(../img/heart_red.svg);
}

.news-list-wrap .icon.clap {
    background-image: url(../img/clap_red.svg);
}

.news-list-wrap .content {
    flex: 1;
}

.news-list-wrap .title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #E74C3C;
}

.news-list-title {
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    padding: 1rem 2rem;
    background-color: #EEEEEE;
}

.news-list-wrap .date {
    font-size: 1.2rem;
    color: #666;
}

.news-list-wrap .list-item a {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
}

.user-info-wrap {
    border: 1px solid #ddd;
    border-radius: 2px;
    padding: 10px;
    margin-bottom: 2rem;
    background: #f9f9f9;
    align-items: center;
}



.userimg,
.name,
.all-comment,
.allreaction {
    margin-right: 2rem;
}

.userimg img {
    border-radius: 50%;
}

.userimg {
    margin-top: 0.5rem;
    margin-left: 1rem;
    padding-right: 0;
}

.name {
    font-size: 16px;
    display: flex;
    align-items: center;
}

.small {
    font-size: 12px;
    color: #777;
    margin-top: 0.5rem;
    margin-left: 5px;
}

.all-comment,
.all-reaction {
    font-size: 14px;
    display: flex;
    margin-right: 2rem;
    align-items: center;
    justify-content: center;
}

.all-comment {
    padding-right: 0 !important;

}

.all-reaction {

    padding-right: 0;
}

.act1 {
    display: flex;
    align-items: center;
    font-size: 12.5px;
    padding: 0.5rem;
}

.act1 span {
    display: block;
    position: relative;
    background: #ebebeb;
    padding: 0.4rem 0.4rem 0.4rem 2.5rem;
    font-size: 12.5px;
}

.act1 span:before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background-image: url(../img/clap2.svg);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 0.4rem;
    left: 0.4rem;
}

.act2 {
    align-items: center;

    display: flex;

}




.fs1 {
    font-size: 1.1em;
}

.fs2 {
    font-size: 1.2em;
}

.fs3 {
    font-size: 1.3em;
}

.q_thank {
    width: 17px;
    margin-left: 0.1rem;
    margin-right: 0.2rem;
}

.q_clap {
    width: 17px;
    margin-left: 1rem;
}

.alert-box .info {
    color: #e12727;
    background: #FFF8F8;
    display: flex;
    justify-content: space-between;
    border: 1px solid #e12727;
    border-radius: 4px;
    padding: 0.5rem 1rem;
    width: 36%;
    line-height: 2rem;
}

.close-btn {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: #e12727;
}

.thanks-message p {
    font-size: 1.5rem;
}

.close-btn:hover {
    color: #333;
}

.mymenu-wrap {
    font-size: 1.1em;
}

.mymenu-wrap .news {
    position: relative;
    padding-left: 5rem;
}

.mymenu-wrap .news:before {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    background-image: url(../img/info.svg);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 0.5rem;
    left: 2.6rem;
}

.mymenu-wrap .qa {
    position: relative;
    padding-left: 5rem;
}

.mymenu-wrap .qa:before {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    background-image: url(../img/balloon.svg);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 0.5rem;
    left: 2.6rem;
}

.mymenu-wrap .bookmark {
    position: relative;
    padding-left: 5rem;
}

.mymenu-wrap .bookmark:before {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    background-image: url(../img/bookmark.svg);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 0.5rem;
    left: 2.6rem;
}

.mymenu-wrap li {
    border-left: 1px solid #ccc;
    padding: 0.5rem 3rem;
    position: relative;
}

.mymenu-wrap li:last-child {
    border-right: 1px solid #ccc;
}


.menulist {
    gap: 15px;
}


/*------------------ thread.html------------------*/
.red {
    color: #e74c3c;
}

.forum_index h2 {
    color: #2d2d2d;
}

.q_reply img {
    margin-right: 0.5rem;
}

.pull-right img {
    margin-right: 0.5rem;
    max-width: 15px;
}

.vote-button {
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom, #ffffff, #f5f5f5);
    color: #e74c3c;
    font-size: 1em;
    font-weight: bold;
    border: 1px solid #d1d1d1;
    border-radius: 5px;
    padding: 7px 10px;
    cursor: pointer;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}

.vote-button img {
    max-width: 32px;
    margin-right: 8px;
}


.vote-button:hover {
    opacity: 0.8;
}

.vote-button.voted {
    background: #ddd;
    color: #888;
    cursor: pointer;
    box-shadow: none;
}

.vote-count-text {
    font-size: 0.9em;
    font-weight: 700;
    color: #555;
    margin-top: 8px;
}

.vote-count {
    color: #e74c3c;
    font-weight: bold;
}

.vote-count-text img {
    max-width: 17px;
    vertical-align: -3px;
    line-height: 1;
    margin-right: 0.3rem;
}


.info-icon {
    position: relative;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.5rem;
    font-size: 15px;
    margin-left: 0.5rem;
    color: #007bff;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}


.info-icon:hover {
    border-color: #0056b3;
    color: #0056b3;
}

/* 吹き出し */
.tooltip {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: #333333ad;
    color: #fff;
    padding: 6px 10px;
    font-size: 12px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s;
}

.tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #333333ad transparent transparent transparent;
}

.info-icon:hover .tooltip,
.info-icon:focus .tooltip {
    opacity: 1;
    visibility: visible;
}

.reaction-buttons {
    display: flex;
    gap: 10px;
    margin-top: 2rem;
}

.reaction-button {
    display: flex;
    align-items: center;
    background: white;
    color: #555;
    font-size: 1em;
    font-weight: bold;
    border: 1px solid #cfcfcf;
    border-radius: 6px;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.reaction-button img {
    width: 18px;
    height: 18px;
    margin-right: 6px;
}

.reaction-button:active {
    transform: scale(0.95);
}

/* 押した後のスタイル（ボタン無効化） */
.reaction-button.disabled {
    cursor: default;
    opacity: 0.6;
    pointer-events: none;
}

/* お気に入り解除ボタン */
.bookmark-btn {
    text-align: right;
    margin-top: 1rem;
}

.bookmark-btn a {
    display: inline-block !important;
    padding: 0.5rem 1rem;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #666;
    text-decoration: none;
    min-width: 120px;
    text-align: center;
    position: relative;
    padding-left: 2.5rem;
}

.bookmark-btn a:before {
    font-family: FontAwesome;
    content: '\f02e';
    font-size: 14px;
    color: #7f7f7f;
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
}

.bookmark-btn a:hover {
    background: #f5f5f5;
}

/* お気に入りリスト */
.bookmarklist {
    margin: 0;
    padding: 0;
}

.bookmarklist ul li.q_date {
    color: #e74c3c;
}

.bookmarklist ul li {
    white-space: nowrap;
    border: 0;
}

.bookmarklist li {
    border-bottom: 1px solid #ddd;
    padding: 1.5rem 0;
    position: relative;
}

.bookmarklist li:first-child {
    padding-top: 0;
}

.bookmarklist li a {
    display: block;
    text-decoration: none;
    color: #333;
}

.bookmarklist li h3 {
    margin-top: 0;
    margin-bottom: 6px;
    font-size: 125%;
    text-decoration: underline;
}

.bookmarklist li p {
    margin: 0 0 12px;
}

.bookmarklist .excerpt {
    margin: 0.5rem 0 0;
}

.bookmarklist .excerpt li {
    border: none;
    padding: 0;
}

.bookmarklist li h3 {
    margin-top: 0;
    margin-bottom: 6px;
    font-size: 125%;
    text-decoration: underline;
}

.question-item h3 {
    text-decoration: underline;
}

.modal-content {
    background: url(../img/modal_bg.png) no-repeat top center;
    background-size: 86% auto;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.modal-content {
    position: relative;
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    width: 70%;
    max-width: 600px;
    border-radius: 5px;
}

.close-button {
     text-shadow: 1px 1px 6px rgba(255, 255, 255, 1);
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 42px;
    cursor: pointer;
}

.thanks-message {
    text-align: center;
    margin-bottom: 30px;
}

.thanks-message h2 {
    color: #e61717;
    margin-bottom: 15px;
    font-size: 2rem;
    margin-top: 4rem;
    font-weight: bold;
}

.question-item {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.status {
    display: inline-block;
    padding: 2px 8px;
    background-color: #ff8a00;
    color: white;
    border-radius: 3px;
    font-size: 12px;
    margin-right: 10px;
}

.meta {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

.comment-button-container {
    margin: 20px 0;
    text-align: center;
}

.comment-button {
    background-color: #e61717;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    margin: 0 auto;
}

.comment-button img {
    margin-right: 8px;
    width: 20px;
    height: 20px;
}

.comment-button:hover {
    background-color: #d41515;
}

.related-questions li {
    border-bottom: 1px solid #eee;
    list-style: none;
}

.related-questions li a {
    display: block;
    padding: 15px;
    color: #333;
    text-decoration: none;
}

.related-questions {
    margin-top: 2rem;
}

.related-questions h3 {
    margin: 0 0 10px;
    font-size: 16px;
}

.related-questions .label {
    display: inline-block;
    padding: 2px 8px;
    background-color: #ff8a00;
    color: white;
    border-radius: 3px;
    font-size: 12px;
    margin-right: 10px;
}

.related-questions p {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.list-inline.excerpt {
    margin: 0;
    padding: 0;
}

.list-inline.excerpt li {
    display: inline-block;
    border: none;
    margin-right: 15px;
    font-size: 12px;
    color: #666;
}

.list-inline.excerpt img {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 4px;
}

@media screen and (max-width: 992px) {

    .all-comment,
    .all-reaction {
        font-size: 12px;
    }

    .alert-box .info {
        width: 57%;
    }
    .nameimg {
        text-align: center;
        display: block;
    }
    .userimg img{
        margin:  auto 20%;
    }
    .fs2{
        font-size: 1.4em;
    }
    .faq-list{
        justify-content: center;
        flex-wrap: wrap;
    }
    .faq-list li{
        width: 31%;
    }
}



@media screen and (max-width: 780px) {

    .all-comment,
    .all-reaction {
        font-size: 12px;
    }

    .alert-box .info {
        margin-bottom: 0.5rem;
        width: 100%;
    }

    .flex {
        display: block;
    }

    .user-info-wrap .user-box.flex {
        display: flex !important;
        width: 90%;
        margin: auto;

    }

    .cout-bg {
        margin: 0.8rem auto auto auto !important;
        background: #FFF;
        -webkit-border-radius: 8px;
        border-radius: 8px;
        box-shadow: 0px 2px 6px -2px rgba(0, 0, 0, 0.14);
        padding: 0.5rem;

        justify-content: space-evenly
    }

    .sp {
        display: block;
    }

    .pc {
        display: none;
    }

    .all-comment,
    .all-reaction {
        margin-right: 0;
        line-height: 1.4;
    }

    .cout-bg>div {
        width: 50%;
    }

    .cout-bg .all-comment {
        border-right: 1px solid #ccc;
    }

    .fs2 {
        font-size: 1.5em;
    }

    .userimg {
        margin-top: 0;
    }

    .act-box {
        margin-top: 1rem !important;
        margin-bottom: 0.5rem !important;
        background: #ebebeb;
        width: 89% !important;
    }

    .flex.menulist {
        display: flex !important;
        justify-content: space-around;
    }

    .mymenu-wrap li {
        padding: 1rem 0.5rem 0 0.5rem;
    }

    .mymenu-wrap .bookmark,
    .mymenu-wrap .qa,
    .mymenu-wrap .news {
        padding: 1.5rem 0rem 0px 2rem;
        text-align: center;
    }

    .mymenu-wrap .news:before {
        top: -0.6rem;
        left: 50%;
    }

    .mymenu-wrap .qa:before {
        top: -0.6rem;
        left: 50%;
    }

    .mymenu-wrap .bookmark:before {
        top: -0.6rem;
        left: 45%;
    }

    .mymenu-wrap li:last-child {
        padding-right: 1.6rem;
    }

    .mymenu-wrap {
        margin-bottom: 1.5rem;
    }


    .faq-section .faq-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-content: stretch;
    }

    .qa-tab .tab-list li {
        font-size: 1.2em;
    }

    .madjust_s {
        margin-bottom: 2rem;
        margin-top: 2rem;
    }

    a.btn {
        padding: 1.5rem 1rem !important;
    }

    .notification-badge {
        right: -1em;
    }
    .count.pull-left {
        margin-bottom: 1rem!important;
    }
    .list-inline.excerpt li {
        margin-right: 12px;
    }
    .faq-list li{
        width: 48%;
    }
    .vote-container .flex{
        display: flex;
    }
    .modal-content{
        padding: 10px;
        width:89%;
        margin: 2rem;
        -webkit-background-size: 100%;
             -o-background-size: 100%;
                background-size: 100%;
    }
    .tab-content{
        padding-bottom: 0;
    }

}