html,
body {
    height: 100%;
    box-sizing: border-box;
    font-size: 16px;
    padding: 0;
    margin: 0;
    line-height: 1.6;
}

ul,
li {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

p,
div,
ul,
li {
    box-sizing: border-box;
}


input,
textarea {
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
}

td {
    padding: 5px;
}

header button.btn svg {
    height: 20px;
    float: left;
    margin-right: 5px;
}


footer {
    padding: 10px;
    font-size: 0.8rem;
    text-align: right;
    width: 100%;
    background-color: #f8f8f8;
    border-top: 1px solid #fff;
}


header button.btn {
    font-size: 0.8rem;
}

button.btn-link{
    color:#0368d6;
    font-weight: bold;
}

.btn-lg svg {
    height: 25px;
}

header button.btn {
    font-size: 0.8rem;
}

.login-box {
    width: 400px;
    height: 350px;
    position: absolute;
    margin-left: -200px;
    margin-top: -150px;
    left: 50%;
    top: 50%;
    background-color: #fff;
    border-radius: 5px;
    color: #555;
}

.login-logo {
    width: 200px;
    display: block;
    margin: 60px auto 30px;
}

@keyframes login-ani {
    0% {
        opacity: 0;
        margin-top: -10px;
    }

    100% {
        opacity: 1;
        margin-top: 0;
    }
}

.login-character {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid #5bc0de;
    left: 50%;
    margin-left: -50px;
    top: -50px;
    animation: .7s login-ani ease-in;

}

.login-button {
    width: 150px;
    margin: auto;
    margin-top: 1.8rem;
}

.bg-pink {
    background:#ea6b81;
    color:white;
}

.bg-meruhai-blue {
    background-color: #c8e0ea;
}

.text-meruhai-blue {
    color: #337ab7;
}


header {
    padding: 25px;
    justify-content: space-between;
    box-shadow: 0 0 2px 1px #ddd;
    min-width: 1000px;
}

header .header-logo {
    width: 150px;
}

header .setting-button {
    width: 30px;
}

.label-blue {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
    border-radius: 5px;
    padding: 5px 10px;
}

.label-blue-line {
    color: #31708f;
    background-color: white;
    border: 1px solid #cdd5da;
    border-radius: 5px;
    padding: 5px 10px;
}

main .side-navi {
    min-width: 260px;
    max-width: 260px;
    padding: 30px 0;
    background-color: rgba(217, 237, 247, 0.4);
    font-size: 0.9rem;
    min-height: 100vh;
}

main .side-navi hr {

    border-top: 1px solid #c5e1f1;
    padding-bottom: 10px;
}

main .main-contents {
    padding: 40px 60px;
    width: 100%;
}

main .main-contents a {
    text-decoration: underline;
}

.page-title {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    background-color: #f0f8fc;
    margin-bottom: 25px;
    font-weight: bold;
    color: #4c5c7b;
    font-size: 1.1rem;
}

.page-title.page-title-error {
    background-color: #ffc8b9;
    color: #952626;
}

.left-border {
    border-left: 5px solid #4c5c7b;
    padding-left: 10px;
    margin-left: 10px;
}

.page-title svg {
    float: left;
    height: 25px;
    /* color: #aaa; */
    margin-right: 10px;
}

.btn svg {
    height: 22px;
    margin-right: .5rem;
}

.alert-sm svg {
    height: 24px;
    margin-right: 0.5rem;
}

.side-user-info {
    padding: 0 30px;
    line-height: 2;
    font-weight: bold;
    color: #4c5c7b;
}

.side-company-info {
    padding: 0 30px;
    font-size: 0.8rem;
    line-height: 15px;

    color: #4c5c7b;
    overflow: hidden;
}

.side-company-info li {
    margin-bottom: 15px;
}

.side-company-info svg {
    float: left;
    height: 15px;
}

.side-list {
    box-sizing: border-box;
}


li .side-list-parent {
    padding: 10px 30px;
    display: flex;
    background-color: #d9edf7;
}

.side-list-parent svg {
    height: 20px;
    margin-right: 5px;


}


ul.side-list-sub {
    padding: 4px 5px 4px 40px;
}

ul.side-list-sub li {
    padding: 4px 0;
    padding-left: 10px;
    overflow: hidden;
}

ul.side-list-sub li svg {
    float: left;
    height: 20px;
}


.member-page ul.side-list-sub li {
    padding: 10px 0;
}

.member-page ul.side-list-sub li a {
    padding-left: 10px;

}

.member-page ul.side-list-sub li:before {
    content: "|";
    color: #337ab7;
}

ul.dropdown-list {
    display: none;
}

ul.dropdown-list.active {
    display: block;
}

ul.side-list-sub li .dropdown-item svg {
    float: right;
    margin-right: 40px;
}

.dropdown-item {
    color: #337ab7;
}

ul.dropdown-list {
    padding-top: 5px;
}

ul.side-list-sub li .dropdown-list li {
    padding-left: 15px;
}

table.table {
    border-bottom: 1px solid #ececec;
}

table.table td.item,
table.table th.item {
    background: #fdfdfd;
    min-width: 180px;
    max-width: 180px;
    width: 180px;
    color: #337ab7;
    font-weight: bold;
}

table.table>tbody>tr>td {
    font-size: 0.8rem;
    padding: 15px;
    border-top: 1px solid #ececec;
}

table.table.table-clickcount>tbody>tr>td {
    padding: 5px;
    vertical-align: middle;
}

table.table.table-clickcount input {
    padding: 5px;
    width: 100%;
}

#page_top {
    width: 50px;
    height: 50px;
    position: fixed;
    right: 0;
    bottom: -50px;
    background: #a2d1e9;
    padding: 10px;
    opacity: 0.9;
}

#page_top a {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    text-decoration: none;
}

.footer-button-box {
    margin: 20px 0;
    width: 100%;
    text-align: center;
}




.button_wrap {
    color: #fff;
    position: relative;
    line-height: 2.8em;
    transition: 0.5s;
    margin: 0 auto;
    display: inline-block;
}

.button_wrap::after {
    transition: 0.3s;
    content: "";
    width: .6em;
    height: .6em;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    position: absolute;
    top: 5px;
    bottom: 0;
    right: 20px;
    margin: auto;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.button_wrap:hover::after {
    right: 12px;
}

input[type="submit"]:hover {
    color: white;
}

.btn-fold {
    font-size: 0.8rem;
    background-color: #f8f8f8;
}

.fold-box {
    height: 0px;
    overflow: hidden;
    transition: .5s;
}

.fold-box.active {
    height: auto;
    margin: 15px 0;
}

.light-blue-btn {
    background-color: #84bee0;
    color: white;
}

.blue-shadow-btn {
    color: white;
    background: #52aae0;
    font-size: 0.85rem;
    border: none;
    outline: 0;
    cursor: pointer;
    font-weight: bold;
    height: 3.0em;
    line-height: 3.0em;
    padding: 0 2.5em;
    transition: 0.3s;
    display: inline-block;
    box-shadow: 0 1px 1px 0px #547583;
    transition: .5s;
}

.blue-shadow-btn:disabled{
    opacity: 0.3;
}

.green-shadow-btn {
    /* background-color: #76bbdd; */
    color: white;
    background: #9ec658;
    font-size: 0.85rem;
    border: none;
    outline: 0;
    cursor: pointer;
    font-weight: bold;
    height: 3.0em;
    line-height: 3.0em;
    padding: 0 2.5em;
    transition: 0.3s;
    display: inline-block;
    box-shadow: 0 1px 1px 0px #547583;
    transition: .5s;
    border-radius:5px;
    display: flex;
    align-items: center;
}

.green-shadow-btn svg{
    height: 60%;
    margin-right: 5px;
}

.light-blue-shadow-btn {
    color: white;
    background: #86bfbe;
    font-size: 0.85rem;
    border: none;
    outline: 0;
    cursor: pointer;
    font-weight: bold;
    height: 3.0em;
    line-height: 3.0em;
    padding: 0 2.5em;
    transition: 0.3s;
    display: inline-block;
    box-shadow: 0 1px 1px 0px #547583;
    transition: .5s;
}

.red-shadow-btn {
    color: white;
    background: #eb5685 !important;
    font-size: 0.85rem;
    border: none;
    outline: 0;
    cursor: pointer;
    font-weight: bold;
    height: 3.0em;
    line-height: 3.0em;
    padding: 0 2.5em;
    transition: 0.3s;
    display: inline-block;
    box-shadow: 0 1px 1px 0px #8b0d39;
    transition: .5s;
}

.light-blue-shadow-btn:hover,
.blue-shadow-btn:hover,
.back-shadow-btn:hover {
    opacity: 0.7;
}

.back-shadow-btn:hover {
    color: #606060 !important;
}

.back-shadow-btn {
    color: #606060;
    background: #efefef;
    font-size: 0.85rem;
    border: none;
    outline: 0;
    cursor: pointer;
    font-weight: bold;
    height: 3.0em;
    line-height: 3.0em;
    padding: 0 2.5em;
    transition: 0.3s;
    display: inline-block;
    box-shadow: 0 1px 1px 0px #bfbfbf;
    transition: .5s;
}

table td {
    padding: 10px;
}

table.table.table-grid-line {
    border-top: 1px solid #dcdcdc !important;
    border-left: 1px solid #dcdcdc;
}

table.table-grid-line td,
table.table-grid-line th {
    border-right: 1px solid #dcdcdc;
}

.mail-step2 table.table-grid-line td {
    width: 100px;
}

input.back-shadow-btn,
input.blue-shadow-btn {
    margin: 0;
}


main .main-contents a.btn {
    text-decoration: none;
}

.dbproperty form {
    margin: 0;
}

.dbproperty table.table td {
    vertical-align: middle;
}



.setting-btn {
    min-width: 355px;
    padding: 0;
}

.blue-shadow-btn.d-flex {
    display: flex;
}

.dbclientcontact table.table td:first-child {
    width: 150px;
}

.reservestatus table.table {
    width: 480px;
}

.reservestatus table.table td:first-child {
    width: 65px;
    text-align: center;
}

.reservestatus table.table td:last-child {
    width: 420px;
}

.reservestatus table.table td {
    padding: 5px;
}

.svg-title svg {
    height: 24px;
}

.remake-table table td,
.remake-table table th {
    padding: 10px;
    border: 1px solid #ececec;
}

.remake-table table th {
    text-align: center;
    background-color: #fdfdfd;
}

.remake-table table th font {
    font-size: 0.7rem;
    font-weight: normal;
}

.mail-body {
    width: 540px;
    height: 540px;
    overflow: auto;
}

.upload-file-box {
    border: 1px solid #eee;
    border-radius: 5px;
    background-color: #eff8fb;
    color: #367ca7;
}

.upload-box {
    width: 600px;
    margin: auto;
}

.mail-setting-box {
    border-radius: 10px;
    margin-bottom: 25px;
    padding: 25px;
    /* background-color: #f9fbfd; */
    border: 2px solid #eee;
}

table.table td.item.max-w-100 {
    max-width: 100px !important;
    min-width: 100px !important;
}

.mail-setting-box table.table {
    margin-bottom: 0;
}

.letter-short {
    letter-spacing: -0.2;
}

.dbproperty table td:first-child {
    width: 360px;
}

.table-responsive td {
    display: table-cell;
}

.green-border-btn {
    border: 2px solid #8bc34a;
    padding: 5px 20px;
    border-radius: 10px;
    color: #64aa64;
    font-weight: bold;
    display: inline-block;
}

.green-border-btn svg {
    height: 24px;
    margin-right: 0.5rem;
}

.alert .alert {
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
}

.bold{
    font-weight: bold;
}

.justify-content-between{
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    margin-left: 5px;
}

.beta{
    background-color: #d9edf7;
    font-size:0.7rem;
    border-radius: 5px;
    padding: 5px;
    margin-left: 5px;
}

.beta-red{
    background-color:#fe93a6;
    padding: 2px 5px;   
}

.blue_rounded{
    background-color: #d9edf7;
    font-size:0.7rem;
    border-radius: 5px;
    padding: 5px 10px;
    margin-left: 5px;
    font-weight: bold;
}

.gray_rounded{
    background-color: rgba(220, 220, 220, 0.867);
    font-size:0.7rem;
    border-radius: 5px;
    padding: 5px 10px;
    margin-left: 5px;
    font-weight: bold;
}

.check-box{
    font-size:0.9rem;
    padding: 7px 0;
    border-bottom:1px solid #eee;
    display:flex;
    align-items: center;
}

.check-box:before{
    content: '';
    display: inline-block;
    width: 1.2rem;
    height: 1.2rem;
    margin-right: 0.2rem;
    background-image:url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6"><path stroke-linecap="round" stroke-linejoin="round" d="M9 12.75L11.25 15 15 9.75M21 12a9 9 0 11-18 0 9 9 0 0118 0z" /></svg>');
    background-repeat:  no-repeat;
    background-size: contain;
    background-position: center;   
    

}

.mail_address_box{
    border-radius: 5px;
    background:#f0f8fc;
    margin-bottom: 10px;
    padding: 10px 0;
    display: none;
}

.mail_address_box.active{
    display: block;
}

.mail_address_box li{
    padding: 2px;
    padding-left:  20px;
}

.btn-ai{
    align-items:center;
    height:40px;

}

.open-editor-btn{
    height:40px;
    line-height: 40px;
    padding: 0 10px;
    margin: 0;
}

.mail-title{
    background: white;
    padding: 10px;
    border-radius: 10px;
}

.ai-chat{
    position:fixed;
    bottom:5px;
    right:5px;
    padding: 15px;
    /* width:50%; */
    width: 700px;
    background:#fafcff;
    border-radius:10px;
    box-shadow:0 1px 2px 2px #7aa1c5; 
    z-index:9999;
    opacity: 0;
    height: 0;
    transition:.5s;
    overflow:hidden;
}

.ai-chat.active{
    opacity: 1;
    height:500px;
}

.chat-close-btn{
    cursor: pointer;
    background: #52aae0;
    color:white;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    position: absolute;    
    right: 5px;
    top: 5px;
    padding: 5px;
}


.ai-frame{
    border:none;
    width:100%;
    height:100%;
    padding-bottom: 50px;
}

.ai-input-box{
    box-sizing: border-box;
    width: 96%;
    position: absolute;
    bottom: 5px;
    z-index:9999;
    left: 2%;
}


.balloon5, .balloon6 {
  width: 100%;
  margin: 1.5em 0;
  overflow: hidden;
  /* display: none; */
}

.balloon6{
    text-align: right;
    padding-right: 20px;
}

.balloon5.active{
    display: block;
}

.balloon5 .faceicon {
  float: left;
  margin-right: -300px;
  width: 60px;
}

.balloon5 .faceicon img{
  width: 100%;
  height: auto;
  border: solid 3px #d7ebfe;
  border-radius: 50%;
}

.balloon5 .chatting {
  width: 100%;
}


.says {
  display: inline-block;
  position: relative; 
  margin: 5px 0 0 85px;
  padding: 17px 13px;
  border-radius: 12px;
  background: #d7ebfe;
}

.says:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 18px; 
  left: -24px;
  border: 12px solid transparent;
  border-right: 12px solid #d7ebfe;
}

.says p {
  margin: 0;
  padding: 0;
}

.mytext {
  display: inline-block;
  position: relative; 
  margin: 5px 0 0 85px;
  padding: 17px 13px;
  border-radius: 12px;
  background: #d2e9a9;
}

.mytext:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 18px; 
  right: -24px;
  border: 12px solid transparent;
  border-left: 12px solid #d2e9a9;
}


.reply-box{
    /* background:white; */
    border-radius:10px;
    margin-top:10px;
    padding: 10px;
    text-align:center;
}

.reply{
    font-size:0.8rem;
    padding: 8px;
    color:white;
    width: 80%;
    box-shadow:0 1px 1px 0px #aaa;
    margin-bottom: 10px;

}

.ask-btn,
.reply-reload{
    background:#9ec758;
}

.title-copy,
.reply-copy{
    background:#ea6b81;
    font-weight: bold;
}

.reply-new{
    background:#52aae0;

}

.chat-label-blue{
        color: #52aae0;
        /* font-weight: bold; */
}

.title-copy{
    width: 200px;
    display:block;
    margin:10px auto 0;
}


.mail-title-label{
    display: inline-block;
    background:#52aae0;
    color:white;
    font-size:0.8rem;
    font-weight: bold;
    padding: 5px;
    margin-right: 10px;
    border-radius:10px;
    min-width: 38px;
    height: 30px;
}

.chat-white-box{
    padding: 10px;
    background:white;
    border-radius:10px;
    margin-bottom:10px;
}

.left_amount{
    position: absolute;
    bottom: 65px;
    right: 15px;
    width: auto;
    height: auto;
    padding: 5px;   
    font-size:0.7rem;
    background: #eaf2fa;
    z-index: 99999;
    border-radius: 10px;
}




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

    .table-responsive td {
        display: block;
        text-align: center;
    }

    .dbproperty table td:first-child {
        width: 100%;
    }

    .table-responsive td:last-child {
        border-top: 0px;
        padding-top: 0;
    }

    .table-responsive td button {
        margin: 0 auto;
    }
}

.member-container {
    width: 100%;
    max-width: 580px;
    margin: auto;
}

.mail-box {
    box-shadow: 0 1px 1px #ddd;
    background: #fff;
    margin: 20px 0;
}

.mail-contents {
    min-height: 100vh;
}

.mail-box td {
    padding: 15px 15px;
    line-height: 1.8;
    font-size: 0.9rem;
}

.top-scroll-box {
    height: 60vh;
    overflow-y: scroll;
    border: 1px solid #f5f5f5;
    padding: 10px 20px;
    border-radius: 5px;
}

.table-click-info{
    border-left:1px solid #eee;
    border-right:1px solid #eee;
    margin: 10px 0;
}

.table-click-info td{
    font-size:0.8rem;
    padding: 10px;
    border-top:1px solid #eee;
    border-bottom:1px solid #eee;
    width: auto;
}

.table-click-info td.item{
    background:#f5f5f5;
}

.table-click-titles th{
    font-size:0.8rem;
    color:#607d8b;
}

.mail-icon{
    font-size:1rem;
        display: flex;
    align-items: center;

}

.mail-icon:before {
    content: '';
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 0.2rem;

    background-image:url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6"><path stroke-linecap="round" stroke-linejoin="round" d="M21.75 6.75v10.5a2.25 2.25 0 01-2.25 2.25h-15a2.25 2.25 0 01-2.25-2.25V6.75m19.5 0A2.25 2.25 0 0019.5 4.5h-15a2.25 2.25 0 00-2.25 2.25m19.5 0v.243a2.25 2.25 0 01-1.07 1.916l-7.5 4.615a2.25 2.25 0 01-2.36 0L3.32 8.91a2.25 2.25 0 01-1.07-1.916V6.75" /></svg>');
    background-repeat:  no-repeat;
    background-size: contain;
    background-position: center;    
}

.mail-title{
    font-weight: bold;
    background: #eef8dc;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
    color:#607d51;
}

.remake-table.click-table table{
    width: 100%;
}

.remake-table.click-table table th,
.remake-table.click-table table td{
    padding: 5px;
    font-size:0.7rem;
    font-weight: normal;
}

.text-center{
    text-align: center;
    align-items:center;
    justify-content: center;
}

.click-sub-title{
    font-weight: bold;
    color: #4c5c7b;
}

.click-mail-box{
    border:1px solid #ccc;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 20px;
}

.click-mail-box label{
    margin-bottom: 0;
}

.click-mail-box .reset-button{
    margin-left: 10px;
    border: 1px solid #cfcfcf;
    /* background: white; */
    border-radius: 5px;    
}

.remake-table table th.bg-green,
td.bg-green{
    background:#9ec759;
    color:white;
}

td.bg-light-green{
    background:#eef8dc;
    color:black;
}

.hidden_mail_id{
    display: none;
}


/* basic_form.css 上書き */
td.content_input {
    padding: 5px 0;
}

input.input_text,
textarea.textarea_box {
    padding: 5px;
}

.page_all a {
    text-decoration: underline;
}

.page_all a.btn {
    text-decoration: none;
}

.sms-box{
    width: 400px;

}
.sms-textarea{
    width: 100%;
    height: 400px;
}

.sms-message-title{
    padding: 10px;
    border-radius: 5px;
    width: 100%;
    display: flex;
    align-items: center;
}

.sms-message-title svg{
    height: 1.6rem;
    margin-right: 5px;
}

.sms-send-btn{
    border-radius:5px;
}

.left_amount_sms{
    margin-top: 5px;
    margin-left: auto;
    bottom: 65px;
    right: 15px;
    padding: 5px;   
    font-size:0.7rem;
    background: #eaf2fa;
    border-radius: 10px;
    display: inline-block;
}

.left_amount_sms.active{
    background-color: pink;
}

table.basic-table.table > thead > tr > th{
    background-color: #eee;
    font-size:0.9rem;
    font-weight: normal;
    border-bottom:0px;
}

.sms-history-body{
    display: none;
}

.extract_box{
    /* display: none; */
    border: 5px solid #dff0d9;
    padding-bottom: 20px;
    border-radius: 10px;    
}

.extract_box.active{
    display: block;
}

.sms-text-box{
    padding: 15px;
    border-radius: 10px;
    border:1px solid #ddd;
    margin: 15px 0;
}
.sms-text{
    height: 300px;
    overflow-y: scroll;
}

table.table.table-center td,
table.table.table-center th{

    text-align: center;
    vertical-align: middle;
}

.next-bg-light-green{
    background-color: #81b32b;
    color: white;
    font-size: 0.85rem;
    border: none;
    outline: 0;
    cursor: pointer;
    font-weight: bold;
    height: 3em;
    line-height: 3.0em;
    padding: 0 2.5em;
    transition: 0.3s;
    display: inline-block;
    box-shadow: 0 1px 1px 0px #547583;
    transition: .5s;
    margin-right: 30px;
}

input[name="sms_token"]{
    display: none;
}

/* loading */
       .wrapper {
            width: 200px;
            height: 60px;
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
        }

        .circle {
            width: 20px;
            height: 20px;
            position: absolute;
            border-radius: 50%;
            background-color: #fff;
            left: 15%;
            transform-origin: 50%;
            animation: circle .5s alternate infinite ease;
        }

        @keyframes circle {
            0% {
                top: 60px;
                height: 5px;
                border-radius: 50px 50px 25px 25px;
                transform: scaleX(1.7);
            }

            40% {
                height: 20px;
                border-radius: 50%;
                transform: scaleX(1);
            }

            100% {
                top: 0%;
            }
        }

        .circle:nth-child(2) {
            left: 45%;
            animation-delay: .2s;
        }

        .circle:nth-child(3) {
            left: auto;
            right: 15%;
            animation-delay: .3s;
        }

        .circle-shadow {
            width: 20px;
            height: 4px;
            border-radius: 50%;
            background-color: rgba(0, 0, 0, .5);
            position: absolute;
            top: 62px;
            transform-origin: 50%;
            z-index: -1;
            left: 15%;
            filter: blur(1px);
            animation: shadow .5s alternate infinite ease;
        }

        @keyframes shadow {
            0% {
                transform: scaleX(1.5);
            }

            40% {
                transform: scaleX(1);
                opacity: .7;
            }

            100% {
                transform: scaleX(.2);
                opacity: .4;
            }
        }

        .shadow:nth-child(4) {
            left: 45%;
            animation-delay: .2s
        }

        .shadow:nth-child(5) {
            left: auto;
            right: 15%;
            animation-delay: .3s;
        }

        .wrapper span {
            position: absolute;
            top: 75px;
            font-family: 'Lato';
            font-size: 20px;
            letter-spacing: 12px;
            color: #fff;
            left: 15%;
        }

        .loading {
            position: fixed;
            width: 100%;
            height: 100%;
            background: rgba(132, 190, 224, 0.8);
            opacity: 0;
            transition: .5s;
            z-index: -100;
            top: 0;
            left: 0;
        }

        .loading.active {
            z-index: 10000;
            opacity: 1;
        }

        main .main-contents .bg-gray a{
            text-decoration: none;
        }

.cancel-btn{
    font-size:11px;
    font-weight: bold;
    border-bottom: 2px solid #aaa;
}

.pre_send{
    background:#e3ec85;
    font-weight: bold;      
    border-radius: 5px;
    padding: 5px;
    width: 100px;
    font-size:14px;
    display: inline-block;
    margin:0 5px;
    color:#4f8b09;
    margin-bottom: 4px;
}

.after_send{
    background-color: #e0f1ff;
    border-radius: 5px;
    width: 100px;
    font-size:14px;
    padding: 5px;
    display: inline-block;
    color:#888;
}

.canceled{
    background-color: #aaa;
    border-radius: 5px;
    width: 100px;
    font-size:14px;
    padding: 5px;
    display: inline-block;
    color:#eee;
}

.unreg-items{
    padding: 5px 10px;
    border-radius: 5px;
    background: #daedf7;
    display: inline-block;
    margin-bottom: 5px;
}

.unreg-url{
    border-radius: 5px;
    padding: 10px;
    border:1px solid #ccc;
    /* margin-top: 10px; */
    display: inline-block;
}

.unreg-copy{
    border-radius: 5px;
    padding: 10px;
    background:#eee;
    color:#555;
    border-bottom: 2px solid #555;
    /* margin-top: 10px; */
    display: inline-block;
}

#message {
  opacity: 0;
  font-size:12px;
  color:#337ab7;
  margin-top: 5px;
  font-weight: bold;
}
  
#message.is-active {
    opacity: 1;  
  }
.url-label{
    margin-bottom: 10px;
    display: block;
}

h3.sms-admin-title{
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    background:#f7f7f7;         

}

table.sms-admin-table thead td{
    font-size:0.8rem;
    font-weight: bold;  
    background-color: #e9f5fb;
}

span.after_cancel{
    background: #eee;
    border-radius: 5px;
    width: 100px;
    font-size:14px;
    padding: 5px;
    display: inline-block;
    color:#888;

}

label.mb-0{
    margin-bottom: 0;
}

#copyButton{
 color: #606060;
    background: #efefef;
    font-size: 0.85rem;
    border: none;
    outline: 0;
    cursor: pointer;
    font-weight: bold;
    height: 3em;
    line-height: 3.0em;
    padding: 0 2.5em;
    transition: 0.3s;
    display: inline-block;
    box-shadow: 0 1px 1px 0px #bfbfbf;
    transition: .5s;   
}

#tagText{
    font-size: 0.8rem;
    margin-right: 5px;
}

.modal-over-flow{
    overflow-y: auto;
    height: 70vh;
}

.smslist-modal .modal-dialog{
    width: 60vw;
}

.smslist-modal table{
    width: 100%;
}
.smslist-modal table td{
    padding: 5px;
}

.smslist-modal table tr:nth-child(odd) td{
    background-color: #f5f5f5;
}

.toggle-button-1 {
	display: inline-block;
	position: relative;
	width: 50px;
	height: 25px;
	border-radius: 25px;
	background-color: #dddddd;
	cursor: pointer;
	transition: background-color .4s;
}

.toggle-button-1:has(:checked) {
	background-color: #9ec758;
}

.toggle-button-1::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	box-shadow: 0 0 5px rgb(0 0 0 / 50%);
	background-color: #fff;
	content: '';
	transition: left .4s;
}

.toggle-button-1:has(:checked)::after {
	left: 25px;
}

.toggle-button-1 input {
	display: none;
}

.menu_ul {
    -webkit-transition: .3s;
    transition: .3s;
    font-size: 0.8rem;
    height: 0;
    opacity: 0;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #9ec758;
    z-index: 1000;
}
.menu_li {
    background-color: #9ec758;
    padding: 0.2rem 1.0rem;
}
.menu_li a {
    color: #fff;
}
.menu:hover .menu_ul {
    opacity: 100;
}
