﻿.pagination {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 6px 20px;
    background-color: var(--blue-deep);
    color: #fff;
    border-radius: 10px;
    gap: 8px;
    margin-top: 30px;
}

.pagination .pag-info {
    width: max-content;
    flex: 0 0 auto;
}

.pagination .pag-info p {
    width: fit-content;
    font-weight: 400;
    font-size: 14px;
}

.pagination .pag-info p b {
    margin: 0 5px;
}

.pagination .pag-func {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0 20px;
}

.pagination .pag-func button {
    background-color: transparent;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border: 0;
    outline: 0;
    color: #fff;
    cursor: pointer;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
}


.pagination .pag-func button:disabled {
    opacity: 0.3;
    cursor: default;
}

.pagination .pag-func span {
    width: 32px;
    text-align: center;
    font-weight: 900;
    font-size: 14px;
}

.pagination .pag-select {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
}

.pagination .pag-select::after {
    content: '';
    width: 10px;
    height: 10px;
    position: absolute;
    right: 20px;
    background-image: url(../images/chevron_down_white.svg);
    background-repeat: no-repeat;
    background-position: center;
    color: #fff;
    pointer-events: none;
}

.pagination .pag-select select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
    color: #fff;
    font-size: 14px;
    border-radius: 10px;
    border: 2px solid #ffffff1a;
    padding: 5px 50px 5px 20px;
    font-weight: 900;
    cursor: pointer;
}

.pagination .pag-select select option {
    background-color: #eaf0fe;
    margin: 10px !important;
    color: var(--font-black-deep);
}

@media only screen and (max-width: 767px) {
    .pagination {
        flex-direction: column;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {}

@media only screen and (min-width: 1025px) and (max-width: 1600px) {}