.hide {
   display: none;
}
.pagination-wrap {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-top: 20px;
}
.pagination {
   display: flex;
}
.pagination ul {
   list-style: none;
   padding: 0;
   margin: 0;
}
.pagination li {
   display: inline-block;
   margin-right: 5px;
   padding: 5px 10px;
   border: 1px solid #ccc;
   background-color: #f5f5f5;
   cursor: pointer;
}
.pagination li.current {
   background-color: #337ab7;
   color: #fff;
   border-color: #337ab7;
}
.pagination li.button {
   background-color: #337ab7;
   color: #fff;
   border-color: #337ab7;
}
.pagination li:hover {
   background-color: #ddd;
}
.pagination li.button:hover {
   background-color: #286090;
   border-color: #204d74;
}
.btn-load {
   margin-left: auto;
}
.ajax-loader {
   display: none;
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(255, 255, 255, 0.7);
   z-index: 9999;
   justify-content: center;
   align-items: center;
}
.loader {
   border: 4px solid #f3f3f3;
   border-top: 4px solid #3498db;
   border-radius: 50%;
   width: 40px;
   height: 40px;
   animation: spin 1s linear infinite;
}
@keyframes spin {
   0% { transform: rotate(0deg); }
   100% { transform: rotate(360deg); }
}


/* popup */
.popup-open {
   overflow: hidden; }

.popup-message {
   position: fixed;
   width: 100%;
   height: 100%;
   max-height: 100vh;
   left: 50%;
   top: 50%;
   border: 0;
   -webkit-transform: translate(-50%, -50%);
   transform: translate(-50%, -50%);
   z-index: 800;
   opacity: 0;
   visibility: hidden;
   background-color: rgba(0, 0, 0, 0.7);
   -webkit-transition: opacity .5s ease, visibility .5s ease;
   transition: opacity .5s ease, visibility .5s ease;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -ms-flex-wrap: wrap;
   flex-wrap: wrap;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   -webkit-box-pack: center;
   -ms-flex-pack: center;
   justify-content: center;}

.popup-open .popup-message {
   opacity: 1;
   visibility: visible; }
.popup-message .info {
   position: relative;
   z-index: 20; }
.popup-message .info {
   margin-top: 60px;;
   margin-left: 0px;
   font-size: 20px;
   font-weight: 500;
   display: block;
   text-align: center;
}
.popup-message .info .inner {
   max-height: 140px;
   width: 100%; }

.popup-holder {
   display: block;
   width: 400px;
   height: 140px;
   max-height: none;
   background: #fff;
   padding: 0;
   border: 0;
   position: relative;
   border-radius: 4px;
}
.popup-holder .container {
   position: relative;
   padding: 0;
   overflow: hidden;
   min-height: 140px;
   width: 400px; }
.popup-wrap {
   display: block;
   vertical-align: middle;
   border-radius: 4px; }
.close-popup {
   border: 2px solid #0B42D8;
   width: 30px;
   height: 30px;
   position: absolute;
   z-index: 50;
   border-radius: 50%;
   right: 15px;
   top: 15px;
}
.no-touch .close-popup {
   -webkit-transition: background-color .3s, border-color .3s;
   transition: background-color .3s, border-color .3s; }
.no-touch .close-popup:hover {
   background-color: transparent;
   border-color: #1EAAD1; }
.no-touch .close-popup:hover svg path {
   fill: #1EAAD1; }
.close-popup:focus {
   -webkit-box-shadow: 0 0 0 2px #fff;
   box-shadow: 0 0 0 2px #fff; }
.close-popup svg {
   position: absolute;
   left: 50%;
   top: 50%;
   -webkit-transition: fill .5s ease;
   transition: fill .5s ease;
   -webkit-transform: translate(-50%, -50%);
   transform: translate(-50%, -50%);
   width: 12px;
   height: 12px; }