.cursor-pointer {
  cursor: pointer;
}

.cursor-not-allowed {
  cursor: not-allowed;
}

.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #fff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.box__tab {
    display: none;
    box-shadow: 0px -2px 6px 0px #dedede;
    z-index: 1052 !important;
}

.box__tab .main-menu {
    background: transparent;
    padding: 8px 13px;
    margin-top: 0px;
    margin-bottom: 0px;
}

.box__tab .main-menu.with-badge {
  margin-bottom: -25px;
}

.box__tab .main-menu i {
    font-size: 35px !important;
    color: #666060;
}

.box__tab .main-menu>img {
    /*height: 28px;*/
    width: 23px;
}

.pagination-container {
    display: flex;
    column-gap: 10px;
}
.paginate-buttons {
    height: 35px;
    width: 35px;
    border-radius: 20px;
    cursor: pointer;
    background-color: #fff;
    border: 1px solid rgb(217, 217, 217);
    color: black;
}
.paginate-buttons:hover {
    background-color: #d8d8d8;
}
.active-page {
    background-color: #26B4FF;
    border: 1px solid #26B4FF;
    color: white;
}
.active-page:hover {
    background-color: #2988c8;
}

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

    .box__tab {
        position: fixed !important;
        bottom: 0 !important;
        background: #fff;
        display: block;
        width: 100%;
    }

    .box__tab ul {
        align-items: center;
        justify-content: space-around;
        display: flex;
        text-align: center;
    }

    .box__tab ul li a {
        color: #505d69;
    }

    .box__tab ul li a.router-link-exact-active {
        color: #717fe0 !important;
    }

    .box__tab ul li a i {
        font-size: 25px;
    }

    .box__tab ul li a span {
        font-size: 12px;
    }

    .box__tab ul li a:hover {
        color: #505d69;
    }

    .box__tab ul li a:focus {
        color: #505d69;
    }

    .box__tab .nav li a {
        padding: 5px 7px;
        font-size: 11px;
        /*font-weight: bold;*/
        line-height: 1.2;
    }
}