/*!
 * custom.css
 */

#map { width:100%; height:400px; }

html, body {
  position: relative;
}
.wrapper {
    display: inline-block;
    margin: 0 auto;
    position:relative;
    width:100%;
    overflow:hidden;
}
#content {
    display:inline-block;
    vertical-align: top;
    margin-bottom: 20px;
    margin-left: 20px;
}

.pagetitle {
  display: inline;
  font-size: 1.4rem;
  margin: 0 20px;
}
.alert-box {
  font-size: 1.4rem;
  margin: 10px 10px;
  padding: 10px 20px;
  background: #EEE;
  border-radius: 10px;
}
.alert-box strong{
  margin: 0 10px 0 0;
  color:red;
}
.alert-box ul{
  margin: 0 20px;
  font-size: smaller;
  list-style: square;
}


.system_logo {
  font-size:1.5rem;
}

#sidebar {
    /* don't forget to add all the previously mentioned styles here too */
    background: #376092;
    color: #fff;
    width:250px;
    display: inline-block;
    position:relative;
    overflow: hidden;
}
nav#sidebar.open {
    left: 0;
}
#sidebar .sidebar-header {
    padding: 20px;
    background: #376092;
}

#sidebar ul.components {
    padding: 0;
    border-bottom: 1px solid #376092;
}

#sidebar ul p {
    color: #fff;
    padding: 10px;
}

#sidebar ul li a {
    padding: 10px;
    font-size: 1.1em;
    display: block;
}
#sidebar ul li a:hover {
    color: #1451a7;
    background: #ddd;
}
#sidebar ul li a.accordion-title {
  border-bottom: 1px solid #AAA;
}

#sidebar ul li.active > a, a[aria-expanded="true"] {
    color: #fff;
    background: #376092;
}
#sidebar ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    background: #376092;
}
#sidebar .components > li > a {
  border-bottom: 1px solid #AAA;
}
#sidebartoggle {
    width: 50px;
    height: 50px;
}
#sidebartoggle i {
    font-size:2rem;
}

#sidebar ul ul li.active a {
  background:#2589d0;
}

.orgtree {
  background: #333;
  color: white;
  width: 400px;
}
.orgtree ul li {
  padding-top:3px;
  padding-bottom:3px;
  border-bottom:1px solid white;
}
.orgtree ul.company,
.orgtree ul.branch,
.orgtree ul.team,
.orgtree ul.shop {
  padding-left:20px;
}
.openbtn{
  position: relative;/*ボタン内側の基点となるためrelativeを指定*/
  background:#E60012;
  cursor: pointer;
    width: 50px;
    height:50px;
  border-radius: 5px;
}

/*ボタン内側*/
.openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 5px;
  background: #fff;
    width: 45%;
  }


.openbtn span:nth-of-type(1) {
  top:13px; 
}

.openbtn span:nth-of-type(2) {
  top:19px;
}

.openbtn span:nth-of-type(3) {
  top:25px;
}

.openbtn span:nth-of-type(3)::after {
  content:"Menu";/*3つ目の要素のafterにMenu表示を指定*/
  position: absolute;
  top:5px;
  left:-2px;
  color: #fff;
  font-size: 0.6rem;
  text-transform: uppercase;
}

/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/

.openbtn.active span:nth-of-type(1) {
    top: 14px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 26px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(3)::after {
  content:"Close";/*3つ目の要素のafterにClose表示を指定*/
    transform: translateY(0) rotate(-45deg);
  top:5px;
  left:4px;
}


#sidebar a.search::before {
  width: 17px;
  height: 17px;
  display:inline-block;
  vertical-align: middle;
  margin-right: 10px;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%20%3Cpath%20d%3D%22M23.7%2020.8%2019%2016.1c-.2-.2-.5-.3-.8-.3h-.8c1.3-1.7%202-3.7%202-6C19.5%204.4%2015.1%200%209.7%200S0%204.4%200%209.7s4.4%209.7%209.7%209.7c2.3%200%204.3-.8%206-2v.8c0%20.3.1.6.3.8l4.7%204.7c.4.4%201.2.4%201.6%200l1.3-1.3c.5-.5.5-1.2.1-1.6zm-14-5.1c-3.3%200-6-2.7-6-6s2.7-6%206-6%206%202.7%206%206-2.6%206-6%206z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%20%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  content: '';
}

.list-unstyled.components {
    margin-top:0;
}
.list-unstyled.components,
.list-unstyled.components li:not(:last-child) {
    border-bottom:1px solid #AAA;
}

.accordion-title {
    position: relative;
}

.accordion-title::after {
    border-right: solid 2px #fff;
    border-top: solid 2px #fff;
    content: "";
    display: block;
    height: 8px;
    position: absolute;
    right: 25px;
    top: 38%;
    transform: rotate(-45deg);
    transition: transform .3s ease-in-out, top .3s ease-in-out;
    width: 8px;
    z-index:10;
}
.accordion-title.open::after {
    top: 37%;
    transform: rotate(135deg);
}

  .table-box {
    padding:10px;
    overflow: auto;
  }
  table.table-striped{
    width: 100%;
    border-collapse:separate;
    border-spacing: 0;
  }
  
  table.table-striped th:first-child{
    border-radius: 5px 0 0 0;
  }
  
  table.table-striped th:last-child{
    border-radius: 0 5px 0 0;
    border-right: 1px solid #3c6690;
  }
  
  table.table-striped th{
    text-align: center;
    color:white;
    background: linear-gradient(#376092,#376092);
    border-left: 1px solid #3c6690;
    border-top: 1px solid #3c6690;
    border-bottom: 1px solid #3c6690;
    box-shadow: 0px 1px 1px rgba(255,255,255,0.3) inset;
    padding: 10px 20px;
    white-space:nowrap;
  }
  
  table.table-striped td{
    text-align: center;
    border-left: 1px solid #a8b7c5;
    border-bottom: 1px solid #a8b7c5;
    border-top:none;
    box-shadow: 0px -3px 5px 1px #eee inset;
    padding: 0;
  }
  
  table.table-striped td:last-child{
    border-right: 1px solid #a8b7c5;
  }
  
  table.table-striped tr:last-child td:first-child {
    border-radius: 0 0 0 5px;
  }
  
  table.table-striped tr:last-child td:last-child {
    border-radius: 0 0 5px 0;
  }

  table.table-striped tr:nth-child(odd){
    background-color: #eee
  }
  table.table-input{
    width:initial;
    min-width:500px;
  }
  table.table-input input[type='text'],
  table.table-input select
  {
    width:500px;
  }
  table.table-input input[name='zip']
  {
    width:200px;
  }
  table.table-input input[name='address'],
  table.table-input input[name='address2']
  {
    display:block;
  }
    .selectbox{
        position: relative;
        margin: 10px;
        display: inline-block;
        cursor:pointer;
    }

    .selectbox select {
        border-radius:5px;
        min-width:300px;
        border-color: #376092;
        min-height: 45px;
    }

    .selectbox::before,
    .selectbox::after {
        position: absolute;
        content: '';
        pointer-events: none;
    }

    .selectbox::before {
        right: 0;
        display: inline-block;
        width: 2.8em;
        height: 45px;
        border-radius: 0 5px 5px 0;
        background-color: #376092;
        content: '';
    }

    .selectbox::after {
        position: absolute;
        top: 46%;
        right: 1.4em;
        transform: translate(50%, -50%) rotate(45deg);
        width: 12px;
        height: 12px;
        border-bottom: 4px solid #fff;
        border-right: 4px solid #fff;
        content: '';
    }

    .selectboxselect {
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        min-width: 230px;
        height: 2.8em;
        padding: .4em 3.6em .4em .8em;
        border: 2px solid #376092;
        border-radius: 5px;
        color: #333333;
        font-size: 1em;
        cursor: pointer;
    }

    .selectboxselect:focus {
        outline: 1px solid #376092;
    }


  .searchbox {
      display: flex;
      justify-content: space-between;
      align-items: center;
      overflow: hidden;
      border: 2px solid #376092;
      border-radius: 5px;
      margin: 10px;
      width: 300px;
  }
  
  .searchbox input {
      width: 250px;
      height: 45px;
      padding: 5px 15px;
      border: none;
      box-sizing: border-box;
      font-size: 1em;
      outline: none;
  }
  
  .searchbox input::placeholder{
      color: #767d83;
  }
  
  .searchbox button {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 50px;
      height: 45px;
      border: none;
      background-color: #376092;
      cursor: pointer;
  }
  
  .searchbox button::after {
      width: 20px;
      height: 20px;
      background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%20%3Cpath%20d%3D%22M23.7%2020.8%2019%2016.1c-.2-.2-.5-.3-.8-.3h-.8c1.3-1.7%202-3.7%202-6C19.5%204.4%2015.1%200%209.7%200S0%204.4%200%209.7s4.4%209.7%209.7%209.7c2.3%200%204.3-.8%206-2v.8c0%20.3.1.6.3.8l4.7%204.7c.4.4%201.2.4%201.6%200l1.3-1.3c.5-.5.5-1.2.1-1.6zm-14-5.1c-3.3%200-6-2.7-6-6s2.7-6%206-6%206%202.7%206%206-2.6%206-6%206z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%20%3C%2Fsvg%3E');
      background-repeat: no-repeat;
      content: '';
  }

  
  .searchbox-cat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    border: 2px solid #376092;
    border-radius: 5px;
    margin: 10px;
    width: 700px;
}

.searchbox-cat input {
  width: 250px;
  height: 45px;
  padding: 5px 15px;
  border: none;
  box-sizing: border-box;
  font-size: 1em;
  outline: none;
}

.searchbox-cat input {
    width: 390px;
    height: 45px;
    padding: 5px 15px;
    border: none;
    box-sizing: border-box;
    font-size: 1em;
    outline: none;
}

.searchbox-cat input::placeholder{
    color: #767d83;
}

.searchbox-cat button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 45px;
    border: none;
    background-color: #376092;
    cursor: pointer;
}

.searchbox-cat button::after {
    width: 20px;
    height: 20px;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%20%3Cpath%20d%3D%22M23.7%2020.8%2019%2016.1c-.2-.2-.5-.3-.8-.3h-.8c1.3-1.7%202-3.7%202-6C19.5%204.4%2015.1%200%209.7%200S0%204.4%200%209.7s4.4%209.7%209.7%209.7c2.3%200%204.3-.8%206-2v.8c0%20.3.1.6.3.8l4.7%204.7c.4.4%201.2.4%201.6%200l1.3-1.3c.5-.5.5-1.2.1-1.6zm-14-5.1c-3.3%200-6-2.7-6-6s2.7-6%206-6%206%202.7%206%206-2.6%206-6%206z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%20%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    content: '';
}

.searchbox-cat-selectbox{
  position: relative;
  margin: 0;
  display: inline-block;
  cursor:pointer;
  background-color:#376092;
  color:white;
}

.searchbox-cat-selectbox select {
  border:none;
  min-width:250px;
  min-height: 45px;
  background-color: #376092;
}

.searchbox-cat-selectbox::before,
.searchbox-cat-selectbox::after {
  position: absolute;
  content: '';
  pointer-events: none;
}

.searchbox-cat-selectbox::before {
  right: 0;
  display: inline-block;
  width: 2.8em;
  height: 45px;
  border-radius: 0 5px 5px 0;
  background-color: #376092;
  content: '';
}

.searchbox-cat-selectbox::after {
  position: absolute;
  top: 46%;
  right: 1.4em;
  transform: translate(50%, -50%) rotate(45deg);
  width: 12px;
  height: 12px;
  border-bottom: 4px solid #fff;
  border-right: 4px solid #fff;
  content: '';
}

.searchbox-cat-selectboxselect {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  min-width: 230px;
  height: 2.8em;
  padding: .4em 3.6em .4em .8em;
  border: 2px solid #376092;
  border-radius: 5px;
  color: #333333;
  font-size: 1em;
  cursor: pointer;
}

.searchbox-cat-selectboxselect:focus {
  outline: 1px solid #376092;
}

input#user_id,
label#user_name {
  width: 250px;
  height: auto;
  display: inline-block;
}
  .radiobox {
      display: flex;
      flex-wrap: wrap;
      gap: .3em 2em;
      border: none;
      margin: 10px;
  }

  .radiobox label {
      display: flex;
      align-items: center;
      gap: 0 .5em;
      position: relative;
      cursor: pointer;
      min-height: 45px;
  }

  .radiobox label::before,
  .radiobox label::after {
      border-radius: 50%;
      content: '';
  }

  .radiobox label::before {
      width: 18px;
      height: 18px;
      border: 2px solid #dee5eb;
      box-sizing: border-box;
  }

  .radiobox label::after {
      position: absolute;
      top: 50%;
      left: 9px;
      transform: translate(-50%, -50%);
      width: 9px;
      height: 9px;
      background-color: #dee5eb;
  }

  .radiobox label:has(:checked)::after {
      background-color: #376092;
      animation: anim-radiobox .3s linear;
  }

@keyframes anim-radiobox {
    0% {
        box-shadow: 0 0 0 1px transparent;
    }
    50% {
        box-shadow: 0 0 0 10px #37609233;
    }
    100% {
        box-shadow: 0 0 0 10px transparent;
    }
}

.radiobox input {
    display: none;
}

    .okbtn {
        display: inline-block;
        justify-content: center;
        align-items: center;
        width: 250px;
        margin:10px;
        padding: .9em 2em;
        border: none;
        border-radius: 5px;
        box-shadow: 0 2px 3px rgb(0 0 0 / 25%), 0 2px 3px -2px rgb(0 0 0 / 15%);
        background-color: #2589d0;
        color: #fff;
        font-weight: 600;
        font-size: 1em;
    }
    
    .okbtn:hover {
        background-color: #1579c0;
    }

    .ngbtn {
        display: inline-block;
        justify-content: center;
        align-items: center;
        width: 250px;
        margin:10px;
        padding: .9em 2em;
        border: none;
        border-radius: 5px;
        box-shadow: 0 2px 3px rgb(0 0 0 / 25%), 0 2px 3px -2px rgb(0 0 0 / 15%);
        background-color: #d02525;
        color: #fff;
        font-weight: 600;
        font-size: 1em;
    }
    
    .ngbtn:hover {
      background-color: #c01515;
    }


    .editbtn {
      display: inline-block;
      justify-content: center;
      align-items: center;
      width: 50px;
      margin:10px;
      padding: .2em .4em;
      border: none;
      border-radius: 5px;
      box-shadow: 0 2px 3px rgb(0 0 0 / 25%), 0 2px 3px -2px rgb(0 0 0 / 15%);
      background-color: #2589d0;
      color: #fff;
      font-weight: 600;
      font-size: 1em;
  }
  
  .editbtn:hover {
      background-color: #1579c0;
  }

  .deletebtn {
      display: inline-block;
      justify-content: center;
      align-items: center;
      width: 50px;
      margin:10px;
      padding: .2em .4em;
      border: none;
      border-radius: 5px;
      box-shadow: 0 2px 3px rgb(0 0 0 / 25%), 0 2px 3px -2px rgb(0 0 0 / 15%);
      background-color: #d02525;
      color: #fff;
      font-weight: 600;
      font-size: 1em;
  }
  
  .deletebtn:hover {
      background-color: #c01515;
  }

  .smallbtn {
    display: inline-block;
    justify-content: center;
    align-items: center;
    margin:10px;
    padding: .2em .4em;
    border: none;
    border-radius: 5px;
    box-shadow: 0 2px 3px rgb(0 0 0 / 25%), 0 2px 3px -2px rgb(0 0 0 / 15%);
    background-color: #2589d0;
    color: #fff;
    font-weight: 600;
    font-size: 1em;
}

.smallbtn:hover {
    background-color: #1579c0;
}

    .sortable {
        position: relative;
        padding: 10px;
        cursor: pointer;
      }
      
      .sortable::before {
        content: '';
        width: 10px;
        height: 10px;
        border-top: solid 2px #eee;
        border-right: solid 2px #eee;
        position: absolute;
        right: 10px;
        top: 20px;
        opacity:0.5;
      }
      .sortable::after {
        content: '';
        width: 10px;
        height: 10px;
        border-top: solid 2px #eee;
        border-right: solid 2px #eee;
        position: absolute;
        right: 10px;
        bottom: 20px;
        opacity:0.5;
      }
      .sortable::before {
        transform: rotate(-45deg);
      }
      
      .sortable::after {
        transform: rotate(135deg);
      }


  .w100 {
    width:100px;
  }
  .w150 {
    width:150px;
  }
  .w200 {
    width:200px;
  }
  .attention {
    font-weight:bolder;
  }

  .updownicon {
    cursor:pointer;
  }
  .updownicon::before {
    width: 0.8rem;
    height: 0.8rem;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    background-image: url(/img/common/icon_arrows-up-down-solid.svg);
    background-repeat: no-repeat;
    content: '';
}
  .explanation {
    font-size: 10px;
    font-weight: normal;
  }

  .organization{
    width:800px;
  }
  table td.organization{
    text-align:left;
    padding-left:10px;
  }

  .searchdetail {
    display:none;
  }
  .searchdetail #user_id,
  .searchdetail #search_word {
    width: 300px;
    height: 45px;
    margin:10px;
  }
@media (max-width: 768px) {

}



.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: #555;
  opacity: 0;
  visibility: hidden;
  z-index: 40;
  -moz-transition: opacity 0.25s ease 0s, visibility 0.35s linear;
  -o-transition: opacity 0.25s ease 0s, visibility 0.35s linear;
  -webkit-transition: opacity 0.25s ease, visibility 0.35s linear;
  -webkit-transition-delay: 0s, 0s;
  transition: opacity 0.25s ease 0s, visibility 0.35s linear;
}
.modal-overlay.state-show {
  opacity: .7;
  visibility: visible;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -moz-transition-duration: 0.2s, 0s;
  -o-transition-duration: 0.2s, 0s;
  -webkit-transition-duration: 0.2s, 0s;
  transition-duration: 0.2s, 0s;
}

.modal-frame {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 50;
  /*     display: table; */
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -moz-box-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  width: 100%;
  text-align: center;
  visibility: hidden;
}
.modal-frame.state-appear {
  visibility: visible;
}
.modal-frame.state-appear .modal-inset {
  -moz-animation: modalComeIn 0.25s ease;
  -webkit-animation: modalComeIn 0.25s ease;
  animation: modalComeIn 0.25s ease;
  visibility: visible;
  /* to keep @ final state */
}
.modal-frame.state-appear .modal-body {
  opacity: 1;
  -moz-transform: translateY(0) scale(1, 1);
  -ms-transform: translateY(0) scale(1, 1);
  -webkit-transform: translateY(0) scale(1, 1);
  transform: translateY(0) scale(1, 1);
}
.modal-frame.state-leave {
  visibility: visible;
}
.modal-frame.state-leave .modal-inset {
  -moz-animation: modalHeadOut 0.35s ease 0.1s;
  -webkit-animation: modalHeadOut 0.35s ease 0.1s;
  animation: modalHeadOut 0.35s ease 0.1s;
  visibility: visible;
}
.modal-frame.state-leave .modal-body {
  opacity: 0;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -moz-transition-duration: 0.35s;
  -o-transition-duration: 0.35s;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -moz-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  -moz-transform: translateY(25px);
  -ms-transform: translateY(25px);
  -webkit-transform: translateY(25px);
  transform: translateY(25px);
}

@-moz-document url-prefix() {
  .modal-frame {
    height: calc(100% - 55px);
  }
}


.modal {
  display: block;
  vertical-align: middle;
  text-align: center;
  width: 600px;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.modal-inset {
  position: relative;
  padding: 60px;
  background-color: white;
  min-width: 320px;
  min-height: 126px;
  margin: auto;
  visibility: hidden;
  -moz-box-shadow: 2px 2px 8px 1px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 2px 2px 8px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 2px 2px 8px 1px rgba(0, 0, 0, 0.2);
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -moz-transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.modal-inset .modalclose {
  display: block;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 10px;
  opacity: .4;
  z-index: 10;
}
.modal-inset .modalclose:hover {
  opacity: 1;
}

.modal-body {
  margin: auto;
  opacity: 0;
  -moz-transform: translateY(0) scale(0.8, 0.8);
  -ms-transform: translateY(0) scale(0.8, 0.8);
  -webkit-transform: translateY(0) scale(0.8, 0.8);
  transform: translateY(0) scale(0.8, 0.8);
  -moz-transition-property: opacity, -moz-transform;
  -o-transition-property: opacity, -o-transform;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  -moz-transition-duration: 0.25s;
  -o-transition-duration: 0.25s;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
  -moz-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.modal-body h3 {
  font-weight: 700;
  padding-bottom: 22px;
  display: block;
  color: #F2594B;
  text-align: center;
}
.modal-body p {
  padding-bottom: 20px;
}
.modal-body .modal-button-box {
  display:inline-block;
}
.modal .modal-button-box .modal-okbtn,
.modal .modal-button-box .modal-cancelbtn {
  padding: .7em 2em;
  width: 150px;
  font-size: 1em;
}


@-webkit-keyframes modalComeIn {
  0% {
    visibility: hidden;
    opacity: 0;
    -moz-transform: scale(0.8, 0.8);
    -ms-transform: scale(0.8, 0.8);
    -webkit-transform: scale(0.8, 0.8);
    transform: scale(0.8, 0.8);
  }
  65.5% {
    -moz-transform: scale(1.03, 1.03);
    -ms-transform: scale(1.03, 1.03);
    -webkit-transform: scale(1.03, 1.03);
    transform: scale(1.03, 1.03);
  }
  100% {
    visibility: visible;
    opacity: 1;
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
@-moz-keyframes modalComeIn {
  0% {
    visibility: hidden;
    opacity: 0;
    -moz-transform: scale(0.8, 0.8);
    -ms-transform: scale(0.8, 0.8);
    -webkit-transform: scale(0.8, 0.8);
    transform: scale(0.8, 0.8);
  }
  65.5% {
    -moz-transform: scale(1.03, 1.03);
    -ms-transform: scale(1.03, 1.03);
    -webkit-transform: scale(1.03, 1.03);
    transform: scale(1.03, 1.03);
  }
  100% {
    visibility: visible;
    opacity: 1;
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
@keyframes modalComeIn {
  0% {
    visibility: hidden;
    opacity: 0;
    -moz-transform: scale(0.8, 0.8);
    -ms-transform: scale(0.8, 0.8);
    -webkit-transform: scale(0.8, 0.8);
    transform: scale(0.8, 0.8);
  }
  65.5% {
    -moz-transform: scale(1.03, 1.03);
    -ms-transform: scale(1.03, 1.03);
    -webkit-transform: scale(1.03, 1.03);
    transform: scale(1.03, 1.03);
  }
  100% {
    visibility: visible;
    opacity: 1;
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
@-webkit-keyframes modalHeadOut {
  0% {
    visibility: visible;
    opacity: 1;
    -moz-transform: translateY(0) scale(1, 1);
    -ms-transform: translateY(0) scale(1, 1);
    -webkit-transform: translateY(0) scale(1, 1);
    transform: translateY(0) scale(1, 1);
  }
  100% {
    visibility: hidden;
    opacity: 0;
    -moz-transform: translateY(35px) scale(0.97, 0.97);
    -ms-transform: translateY(35px) scale(0.97, 0.97);
    -webkit-transform: translateY(35px) scale(0.97, 0.97);
    transform: translateY(35px) scale(0.97, 0.97);
  }
}
@-moz-keyframes modalHeadOut {
  0% {
    visibility: visible;
    opacity: 1;
    -moz-transform: translateY(0) scale(1, 1);
    -ms-transform: translateY(0) scale(1, 1);
    -webkit-transform: translateY(0) scale(1, 1);
    transform: translateY(0) scale(1, 1);
  }
  100% {
    visibility: hidden;
    opacity: 0;
    -moz-transform: translateY(35px) scale(0.97, 0.97);
    -ms-transform: translateY(35px) scale(0.97, 0.97);
    -webkit-transform: translateY(35px) scale(0.97, 0.97);
    transform: translateY(35px) scale(0.97, 0.97);
  }
}
@keyframes modalHeadOut {
  0% {
    visibility: visible;
    opacity: 1;
    -moz-transform: translateY(0) scale(1, 1);
    -ms-transform: translateY(0) scale(1, 1);
    -webkit-transform: translateY(0) scale(1, 1);
    transform: translateY(0) scale(1, 1);
  }
  100% {
    visibility: hidden;
    opacity: 0;
    -moz-transform: translateY(35px) scale(0.97, 0.97);
    -ms-transform: translateY(35px) scale(0.97, 0.97);
    -webkit-transform: translateY(35px) scale(0.97, 0.97);
    transform: translateY(35px) scale(0.97, 0.97);
  }
}
@media (max-width: 767px){
  .modal {
    width: 100%;
  }
  .modal-inset {
    padding: 40px 10px;
  }
}