ul {
    list-style: none;
}

ul li {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

ul li img {
    vertical-align: bottom;
}

body {
    font-size: 16px;
}

#open,
#close,
#option0,
#option1,
#option2,
#option3 {
    cursor: pointer;
    width: 200px;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-align: center;
    padding: 12px;
    margin: 16px auto 0;
    background: #4caf50;
    color: white;
}

#mask {
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1;
    height: 100vh;
    width: 100%;
}

#modal {
    background: #fff;
    color: #555;
    height: 80vh;
    padding: 20px;
    border-radius: 4px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 2;
    transition: 0.4s;
    overflow: visible;
}

@media (max-width: 991px) {
    #modal {
        height: auto;
        width: 80vw;
    }
}

#modal img {
    height: 70%;
    width: auto;
}

@media (max-width: 991px) {
    #modal img {
        height: auto;
        width: 80%;
    }
}

#mask.hidden {
    display: none;
}

#modal.hidden {
    transform: translate(0, -10000px);
}

#button_left {
    display: grid;
    position: relative;
    cursor: pointer;
    justify-self: center;
    align-self: center;
}

#button_right {
    display: inline-block;
    position: relative;
    cursor: pointer;
    justify-self: center;
    align-self: center;
}

#leftangle {
    overflow: hidden;
}

.container-navbar {
    display: flex;
    width: 100%;
    margin-right: 0px;
    margin-left: 0px;
    padding-right: 15px;
    padding-left: 15px;
    align-items: center;
    justify-content: flex-start;
}

@media (max-width: 991px) {
    .container-navbar {
        display: flex;
        width: calc(100% - 40px);
        margin-right: 0px;
        margin-left: 0px;
        padding-right: 0px;
        padding-left: 0px;
        align-items: center;
        justify-content: space-around;
        flex-wrap: wrap;
        /* はみ出した部分を消す。ハンバーガーのみはabsolute指定(width40px)して、それ除いた部分を領域にした。 */
    }
}

.avatar-animal {
    width: 40px;
    height: 40px;
    overflow: hidden;
    border-radius: 50%;
    margin-right: 0px;
}

#changepassb,
#changecodeb {
    float: left;
}

#logoutb {
    padding: 5px 10px;
}

.card-user .card-body {
    overflow: visible;
}

.usercard-scores {
    margin: 0px 0px 5px;
    ;
}

@media (min-width: 992px) {
    .card-update-caption {
        max-width: 120px;
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .card-update-caption {
        font-size: 20px;
    }
}

.intense {
    cursor: url('../../assets/img/others/plus_cursor.png') 25 25, auto;
}

.reflection-wrap {
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: absolute;
}

.reflection {
    height: 100%;
    width: 30px;
    position: absolute;
    top: 0px;
    left: 0;
    background-color: #fff;
    opacity: 0;
    transform: rotate(45deg);
    animation: reflection 3s ease-in-out infinite;
    -webkit-transform: rotate(45deg);
    -webkit-animation: reflection 3s ease-in-out infinite;
}

@keyframes reflection {
    0% {
        transform: scale(0) rotate(45deg);
        opacity: 0;
    }
    80% {
        transform: scale(0) rotate(45deg);
        opacity: 0.3;
    }
    81% {
        transform: scale(4) rotate(45deg);
        opacity: 0.6;
    }
    100% {
        transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}

@-webkit-keyframes reflection {
    0% {
        -webkit-transform: scale(0) rotate(45deg);
        opacity: 0;
    }
    80% {
        -webkit-transform: scale(0) rotate(45deg);
        opacity: 0.3;
    }
    81% {
        -webkit-transform: scale(4) rotate(45deg);
        opacity: 0.6;
    }
    100% {
        -webkit-transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}

.DivLink {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

#fasta_textarea {
    height: 200px;
    width: 100%;
    margin: auto;
}

#blast_textarea {
    height: 200px;
    /* width: 60%; */
}

.blast_resultp {
    margin: 0;
}

#Blastresult {
    margin-left: 5px
}


/*loading button*/


/*loading button*/


/*loading button*/

button#Blastexec {
    width: 200px;
    position: relative;
    transition: 0.3s ease-in-out;
}

button#Blastexec.click {
    background: #f1f1f1;
}


/* ローディングアニメーション */

#Blastexec span,
#Blastexec span:after {
    display: none;
    border-radius: 9999px;
    width: 25px;
    height: 25px;
}

button#Blastexec.click span,
button#Blastexec.click span:after {
    display: inline-block;
}

#Blastexec span {
    position: absolute;
    text-indent: -9999em;
    border-top: 3px solid rgba(255, 255, 255, 0.4);
    border-right: 3px solid rgba(255, 255, 255, 0.4);
    border-bottom: 3px solid rgba(255, 255, 255, 0.4);
    border-left: 3px solid #313131;
    transform: translateZ(0);
    animation: loadAnime 3s linear;
    vertical-align: middle;
    left: 10px;
}

@keyframes loadAnime {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        opacity: 0;
    }
}

p {
    white-space: pre-wrap;
}

.monospace {
    font-family: "Courier New", Consolas, monospace;
}

.form-check-input {
    margin-left: 1.25rem;
}

.form-check-label {
    margin-left: 1.25rem;
}

#og_link28B,
#og_link39B {
    color: #1DC7EA;
    cursor: pointer
}

#OGcheck,
#Variantcheck {
    margin-left: 0.25rem;
    margin-top: 0.3rem;
}

#OGchecklabel,
#Variantchecklabel {
    padding-left: 0px;
    cursor: auto;
}


/*https://neos21.net/blog/2017/10/22-01.html*/


/*
ロードボタン
https://dubdesign.net/javascript/settimeout-loadingbutton/
*/




.loader{
    display: none;
  margin: 0 0 2em;
  height: 100px;
  width: 20%;
  text-align: center;
  padding: 1em;
  margin: 0 auto 1em;
  vertical-align: top;
}

/*
  Set the color of the icon
*/
svg path,
svg rect{
  fill: #FF6700;
}

.modal-dialog{
    max-width: 500px;
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 70%;
        margin: 30px auto;
    }
}
/* ==============================================================
   ナビバーの位置ずれ対策（2026-08-02 追加）

   テーマ側（light-bootstrap-dashboard.css）に次の指定があります。

       .navbar { width: calc(100% - 260px); margin: 0px 0px 0px 260px; }

   これは「ナビバーがページ全幅にあるので、左のサイドバー(260px)の分だけ
   ずらす」という意味です。

   ところが、ページ全体がスクロールしてサイドバーが置き去りになる不具合を
   直すため、ナビバーを .main-panel の中に移しました。
   .main-panel はすでに260px右にあるので、上の指定が二重にかかり、
   ナビバーがさらに260px右へずれてしまいます。

   .main-panel の中にあるナビバーについては、このずらしを打ち消します。
   （セレクタを2段にしているため、!important は不要です）
   ============================================================== */
.main-panel > .navbar {
    width: 100%;
    margin-left: 0;
}
