.pagination {
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
}

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 16px;
  margin-left: 0;
  line-height: 1.25;
  color: #a2a2a2;
  background-color: transparent;
  border: 0 solid #dee2e6;
}

.page-link:hover {
  z-index: 2;
  color: #000000;
  text-decoration: none;
  background-color: transparent;
  border-color: transparent;
}

.page-link:focus {
  z-index: 3;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.25);
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.page-item.active .page-link {
  z-index: 3;
  color: #000000;
  background-color: transparent;
  border-color: transparent;
}

.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 2;
}

.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}

.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  line-height: 1.5;
}

.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}

.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

.pagination .page-item {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 4.5px;
}

.pagination .page-link:focus {
  box-shadow: none;
}



.justify-content-center {
  -ms-flex-pack: center !important;
      justify-content: center !important;
}

.align-items-center {
  -ms-flex-align: center !important;
      align-items: center !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.pb-11,
.py-11 {
  padding-bottom: 5rem !important;
}

.pb-lg-14,
.py-lg-14 {
    padding-bottom: 6.875rem !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.mo-popup-wrap{
  background-color:rgba(0,0,0,.3);
  justify-content:center;
  align-items:center;
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  display:none;
  padding:15px;
}

.mo-popup{
  width:100%;
  max-width:600px;
  border-radius:10px;
  overflow:hidden;
  background-color:#264db5;
  box-shadow: 5px 10px 10px 1px rgba(0,0,0,.3);
}

.mo-popup-head{
  width:100%;
  height:50px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.mo-popup-body{
  width:100%;
  background-color:#ffffff;
}
.mo-body-content{
  width:100%;
  padding:30px;
}
.mo-body-titlebox{
  text-align:center;
  width:100%;
  height:40px;
  margin-bottom:10px;
}
.mo-body-contentbox{
  word-break:break-word;
  overflow-y:auto;
  min-height:100px;
  max-height:200px;
}

.mo-popup-foot{
  width:100%;
  height:50px;
}
.mo-pop-btn{
  display:inline-flex;
  width:50%;
  height:100%;
  justify-content:center;
  align-items:center;
  float:left;
  color:#ffffff;
  cursor:pointer;
}

.mo-pop-btn.confirm{
  border-right:1px solid #3b5fbf;
}