#loader {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #C8A6BD;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    margin: auto;
    animation: spin 1.2s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.text-right {
    text-align: right;
}
nav.navbar {
    background-color: #524c4c !important;
}
.btn {
    background: #000;
    color: #fff;
}
.btn:hover {
    background: #787878;
    color: #fff;
}

#item_container > .product:nth-child(odd) > div {
    background: #eeeeee;
}
#item_container > .product > div {
    transition: .2s;
}
#item_container > .product:hover > div {
    background: #ddd;
    cursor: pointer;
}

.api_page #pagination_container .pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
    margin: 2rem auto;
    text-align: center;
    align-items: center;
    justify-content: center
}
.api_page #pagination_container .pagination .page-link {
    width: 36px;
    height: 36px;
    margin: 4px;
    border-style: solid;
    border-width: 0px;
    border-color: #eee;
    border-radius: 50%;
    background-color: #eee;
    font-size: 18px;
    color: #373737;
    line-height: 36px;
    vertical-align: middle;
    text-align: center;
    padding: 0;
    display: block;
    color: #666;
    transition: .2s;
}
.api_page #pagination_container .pagination .page-link:hover {
    background-color: #ddd;
    color: white;
}
.api_page #pagination_container .pagination .page-item.active .page-link {
    background-color: #aaa;
    color: white;
}
.api_page #pagination_container .pagination #page-previous:before {
    content: '🡨';
    line-height: 36px;
    font-size: 16px;
    height: 36px;
    display: block;
}
.api_page #pagination_container .pagination #page-next:before {
    content: '🡪';
    line-height: 36px;
    font-size: 16px;
    height: 36px;
    display: block;
}