@charset "UTF-8";
/* color */
:root {
    --main-color: #005FB7;
    --main-color-hover: #1076d5;
    --main-color-disable:#5997d0;
    --main-color20:rgb(0 95 183 / .20);
    --font-color:#183445;
    --font-color30:rgba(24, 52, 69, 0.3);
    --font-color2:#b1b1b1;
    --disabled-color:#f8f8f8;
    --bg-color:#fbfbfb;
    --bg-color2:#EDEDED;
    --alert-color:#DF4747;
    --alert-bg-color:#F8D7DA;
    --head-color:#F9FAF9;
    --border-color:#DDD;
    --status-green:#9EE33F;
    --status-yellow:#FBD036;
    --status-red:#FF5A4E;
    --status-purple:#7B1FA2;
    --status-gray:#7F8487;
    --scroll-bar:#c5c5c563;
    --scroll-bar-hover:#c5c5c5;
    --portal-base-color1:#6E6E6E;
    --portal-base-color2:#34568B;
    --portal-base-color3:#9B2335;
    --secondary-btn:#F7F9FA;
    --secondary-btn-hover:#f3f3f3;
    --tertiary-btn-hover:#f4faff;
    --alert-btn-hover:#fff5f5;
    --white:#fff;
    --aliceblue:#f0f8ff;
    --aliceblue2:#cce0f1;
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-thumb{
  background: var(--scroll-bar);
  border-radius: 2px;
}
::-webkit-scrollbar-thumb:hover{
  background: var(--scroll-bar-hover);
}
.color-alert{ color: var(--alert-color); }
body{
    font-family:'メイリオ', 'Meiryo','ＭＳ ゴシック','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
    font-size: 14px;
    color:var(--font-color);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: var(--bg-color);
}
a{
  color: var(--font-color);
}
.visually-hidden {
  position: absolute;
  margin: -1px;
  padding: 0;
  width: 1px;
  height: 1px;
  border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

/* focus */
input:focus,
select:focus,
textarea:focus,
button:focus{
  border-color: var(--main-color-hover)!important;
  outline: 0;
  box-shadow: 0 0 0 .2rem var(--main-color20);
}

/* hover */
input:not(:disabled):hover,
select:hover,
textarea:not(:disabled):hover{
  border-color: var(--main-color-hover)!important;
}

.none{
  display: none;
}

/* size */
h2 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 12px;
}
.w-100{
  width: 100%;
}

/* status color */
.status-img-wrap.status-available{
  outline: 3px solid var(--status-green);
}
.status-img-wrap.status-dnd{
  outline: 3px solid var(--status-yellow);
}
.status-img-wrap.status-busy{
  outline: 3px solid var(--status-red);
}

.no-list-warning{
  text-align: center;
}

.no-list-warning-text{
  font-size: medium;
  padding: 10px;
}

.no-list-warning-text-small{
  font-size: small;
  padding: 5px;
}

.status-color-0{
  background-color:#FF5A4E
}
.status-color-0 option{
  background-color: white
}

.status-color-1{
  background-color:#7F8487
}
.status-color-1 option{
  background-color: white
}

.status-color-2{
  background-color:#FBD036
}
.status-color-2 option{
  background-color: white
}

.status-color-3{
  background-color:#9EE33F
}
.status-color-3 option{
  background-color: white
}

.status-color-4{
  background-color:#7B1FA2
}
.status-color-4 option{
  background-color: white
}

.invite-sms .form-table > div.d-flex,
.invite-url .form-table > div.d-flex {
  position: relative;
  flex-wrap: wrap;
}
.invite-sms .form-table > div.d-flex .address-btn {
  width: 75px !important;
}
.invite-sms .form-table > div.d-flex #tell,
.invite-url .form-table > div.d-flex #url-text {
  width: calc(100% - 80px) !important;
  margin-bottom: 5px !important;
}
.invite-sms .form-table > div.d-flex .is-validated-msg,
.invite-url .form-table > div.d-flex .is-validated-msg {
  width: 100%;
}

.invite-sms ~.invite-footer{
  padding-top: 5px;
}

.invite-sms .form-table > .desc,
.invite-url .form-table > .desc {
  margin-top: 5px;
}

.invite-url .form-table > div.d-flex .copy-url {
  width: 75px !important;
}


  /* kim-ec */
  .read_only{
    background-color: #D5D5D5;
  }
  .search-contents{
    background-color: rgb(255, 192, 203) !important;
  }  
  .contract-expired{
    color: red;
  }  

  /* Popup container - can be anything you want */
.popup {
  position: absolute;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-top: 80px;
}  
.d-flex .popup{
  position: relative !important;
}
/* The actual popup */
.popup .popuptext {
  visibility: hidden;
  width: 230px;
  background-color: #555;
  opacity: 0.5;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -220px;
}  
/* Toggle this class - hide and show the popup */
.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}  
/* Toggle this class - hide and show the popup */
.popup .hide {
  visibility: hidden;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}  
/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {opacity: 0;} 
  to {opacity: 1;}
}  
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
  }        
  
  .select.status-available {
    background: var(--status-green) !important;
  }
  .select.status-dnd {
    background: var(--status-yellow) !important;
  }
  .select.status-busy {
    background: var(--status-red) !important;
  }

  button.ui-datepicker-current { display: none; }

  .subs-modal{
    cursor: pointer;
  }
  