/* ========================================
   1. CSS Reset
   ======================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--poppins);
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-text);
    background: var(--bg-gradient);
    position: relative;
    min-height: 100vh;
}

body::before {
    content: "";
    position: absolute;
    top: 80px;
    left: 0;
    width: 300px;
    height: 300px;
    background-image: url('../img/pattern.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0.7;
}

/* Remove default list, link, and button styles */
ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    background: none;
    border: none;
    cursor: pointer;
}

img {
    max-width: 100%;
    display: block;
}


/* ========================================
   2. Root Variables
   ======================================== */
:root {
    /* Colors */
    --color-primary: #005FE9;
    --color-primary-dark: #004896;
    --color-primary-light: #a2c6fb;
    --color-text: #ffffff;
    --color-text-light: #6c757d;
    --color-border: #dee2e6;
    --color-danger: #dc3545;
    --color-success: #28a745;
    --color-warning: #ffc107;

    /* Gradients */
    --bg-gradient: linear-gradient(180deg, #04161F 0%, #063750 50%, #04161F 100%);
    --auth-gradient: linear-gradient(180deg, #04161F 23%, #063750 100%);

    /* Font Sizes */
    --fs-xs: 12px;
    --fs-sm: 14px;
    --fs-base: 16px;
    --fs-lg: 20px;
    --fs-xl: 24px;
    --fs-xxl: 32px;

    --fs-regular: 18px;
    --fs-heading: 36px;
    --fs-title: 60px;

    /* Font Families */
    --poppins: "Poppins", sans-serif;
    --bakbak: "Bakbak One", sans-serif;
    --open-sans: "Open Sans", sans-serif;

    /* Spacing */
    --sp-1: 4px;
    --sp-2: 8px;
    --sp-3: 12px;
    --sp-4: 16px;
    --sp-5: 20px;
    --sp-6: 24px;
    --sp-8: 30px;
    --sp-10: 35px;

    /* Border Radius */
    --radius-sm: 5px;
    --radius-md: 10px;
    --radius-lg: 15px;
    --radius-pill: 500px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
}


/* ========================================
   3. Typography
   ======================================== */
.theme__title {
    font-size: var(--fs-title);
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: var(--sp-2);
    font-family: var(--bakbak);
}

.theme__heading {
    font-size: var(--fs-heading);
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: var(--sp-1);
    font-family: var(--bakbak);
}

.theme__subheading {
    font-size: var(--fs-base);
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: var(--sp-4);
}

.theme__heading_small {
    font-size: var(--fs-lg);
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: var(--sp-1);
    font-family: var(--bakbak);
}


.theme__text {
    font-size: var(--fs-regular);
    color: var(--color-text);
}

.text__regular {
    font-weight: 400;
}

/* ========================================
   4. Buttons
   ======================================== */
.theme__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-2);
    padding: var(--sp-3) var(--sp-6);
    font-size: var(--fs-sm);
    font-weight: 700;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    transition: all 0.2s ease;
    background-color: var(--color-primary) !important;
    color: var(--color-text);
    transition: all 0.3s ease-in-out;
    font-family: var(--poppins);
    height: fit-content;
}

.theme__btn:hover {
    background-color: var(--color-primary-dark) !important;
    color: var(--color-text);
}

.secondary__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-2);
    padding: var(--sp-3) var(--sp-6);
    font-size: var(--fs-sm);
    font-weight: 700;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    transition: all 0.2s ease;
    background-color: var(--color-text) !important;
    color: var(--color-primary);
    transition: all 0.3s ease-in-out;
    font-family: var(--poppins);
    height: fit-content;
}

.secondary__btn:hover {
    background-color: var(--color-primary-light) !important;
    color: var(--color-text);
}

.theme__btn_round {
    border-radius: 500px;
    padding: 16px;
    line-height: 1;
}

.social__btn {
    font-weight: 300;
}

.link__btn {
    background: var(--color-primary);
    color: var(--color-text);
    border-radius: var(--radius-pill);
    margin-left: var(--sp-4);
    /* min-width: 150px; */
    display: inline-block;
    text-align: center;
    padding: 1px 15px;
}

/* .link__btn:hover {
    text-decoration: underline;
} */




/* ========================================
   5. Forms
   ======================================== */
.input__wrapper {
    position: relative;
}

.input__wrapper .form-control.password__field {
    padding-right: 45px;
}

.input__wrapper .toggle__password {
    color: var(--color-text-light);
    position: absolute;
    right: 20px;
    bottom: 15px;
    z-index: 5;
    cursor: pointer;
}

.input__wrapper .form-label {
    font-size: var(--fs-base);
    font-weight: 300;
    font-family: var(--poppins);
}

.form-control {
    box-shadow: none !important;
    outline: none !important;
    border: none !important;
    color: var(--color-text-light) !important;
}

.auth__form_container .form-control {
    padding: var(--sp-3) var(--sp-4);
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    font-size: var(--fs-sm);
}

.auth__form_container .form-control:focus {
    /* border: 1px solid var(--color-primary-dark) !important; */
    box-shadow: 0 0 0.3rem 0.2rem rgba(190, 222, 255, 0.2) !important;
}


/* ========================================
   7. Footer
   ======================================== */
.auth-footer {
    padding: var(--sp-4) 0;
    font-size: var(--fs-base);
}

.main__footer {
    padding: var(--sp-3) 0;
    font-size: var(--fs-sm);
    background-color: var(--color-primary);
}

.main__footer .footer__menu {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
}

.main__footer .footer__container .right {
    display: flex;
    align-items: center;
    justify-content: end;
}


/* ========================================
    8. Navbar
    ======================================== */

.theme__navbar .brand-logo {
    max-width: 200px;
}

.theme__navbar .navbar-nav {
    gap: 15px;
}

.theme__navbar .navbar-nav .nav-link,
.theme__navbar .navbar-nav .nav-link.active {
    color: var(--color-text);
    position: relative;
}

.theme__navbar .navbar-nav .nav-link::after {
    content: '';
    height: 2px;
    background-color: var(--color-primary);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    transition: all 0.3s ease-in-out;
    transform-origin: left;
}

.theme__navbar .navbar-nav .nav-link:hover::after {
    width: 100%;
    transform-origin: left;
}

.theme__navbar .navbar-nav .nav-link.active::after {
    width: 100%;
}

.theme__navbar .navbar-nav .nav-link:not(:hover)::after {
    transform-origin: right;
    transition: all 0.3s ease-in-out;
}

.theme__navbar .navbar-toggler .navbar-toggler-icon {
    border: none;
    box-shadow: none;
    outline: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.theme__navbar .navbar-toggler {
    border: none;
    box-shadow: none;
    outline: none;
}

.theme__navbar .navbar-nav .nav-link,
.theme__navbar .navbar-nav .nav-link {
    width: max-content;
}

.theme__navbar .offcanvas {
    background: #091F2C;
}

.theme__navbar .offcanvas.offcanvas-end {
    width: 300px;
}

.theme__navbar .offcanvas .offcanvas-title {
    color: var(--color-text);
    font-family: var(--bakbak);
    font-weight: 200;
}

.theme__navbar .offcanvas .btn-close {
    opacity: 1;
}

/* ========================================
    9. Pagination
    ======================================== */

.theme__pagination .page-item a {
    color: var(--color-primary) !important;
    background: #fff;
    border-radius: 8px !important;
    font-weight: 700;
    padding: 0.375rem 0.8rem;
}

.theme__pagination .page-item.active a {
    background: transparent;
    color: #fff !important;
    border-color: #fff !important;
}





/* *****************************************
------------------- Main -----------------
***************************************** */
.theme__main {
    min-height: 81.5vh;
}

/* ---- reusable elements ------ */

.theme__titlebar {
    background: var(--bg-gradient);
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 20px;
    padding: 70px;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    min-height: 240px;
}

.titlebar__image {
    max-height: 180px;
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
}

.titlebar__desc {
    width: 50%;
}

.titlebar__desc span {
    color: var(--color-primary);
    font-weight: 600;
}

.theme__input {
    padding: var(--sp-3) var(--sp-4);
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    font-size: var(--fs-sm);
}

.theme__input::placeholder {
    opacity: 0.3;
}

.theme__input:focus {
    box-shadow: 0 0 0.3rem 0.2rem rgba(190, 222, 255, 0.2) !important;
}

.form-label .required {
    color: red;
}




/* *****************************************
------------------- Auth -----------------
***************************************** */


.auth__container {
    display: flex;
    align-items: center;
    min-height: 90vh;
    padding: var(--sp-5) 0;
}

.auth__form_side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--sp-8);
}

.auth__image_side {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-bg-light);
    padding: var(--sp-8);
}

.auth__container .image__wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    min-height: 700px;
}

.auth__container .image__wrapper img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.divider {
    position: relative;
    text-align: center;
    margin: var(--sp-6) 0;
}

.divider__text {
    background-color: var(--color-bg);
    padding: 0 var(--sp-3);
    position: relative;
    z-index: 2;
}

.divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    height: 1px;
    width: 45%;
    background-color: var(--color-border);
    z-index: 1;
}

.divider::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    height: 1px;
    width: 45%;
    background-color: var(--color-border);
    z-index: 1;
}

.after__form_wrapper {
    margin-top: var(--sp-8);
    font-size: var(--fs-sm);
}

.after__form_wrapper p,
.after__form_wrapper a {
    font-size: var(--fs-sm);
}


/* *****************************************
---------- Home Page ------------
***************************************** */


/* ---- breadcrumb ---- */

.breadcrumb__wrapper {
    text-align: center;
    margin: 40px auto 100px;
}

.theme__breadcrumb .breadcrumb__upper {
    max-width: 800px;
    margin: 20px auto 50px;
}

.theme__breadcrumb .breadcrumb__title_wrapper {
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
}

.theme__breadcrumb .breadcrumb__title_wrapper h1 {
    line-height: 1;
}

.theme__breadcrumb .breadcrumb__desc {
    opacity: 0.7;
    font-size: var(--fs-base);
    font-weight: 300;
}

/* -- lower breadcrumb -- */

.breadcrumb__lower {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.breadcrumb__social_saperator {
    width: 2px;
    height: 20px;
    background: var(--color-primary);
    display: inline-block;
}


/* ---- Home section wrapper ---- */
/* wrapper: horizontal sections with snap */
#home__sections_wrapper {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    /* height: 100vh; */
    scroll-behavior: smooth;
    /* hide scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;

    gap: 60px;
}

#home__sections_wrapper::-webkit-scrollbar {
    display: none;
}

#home__sections_wrapper>div {
    flex: 0 0 100%;
}




/* ---- theme section ---- */
.theme__section {
    margin-bottom: 100px;
}

.theme__section .data__wrapper {
    display: flex;
    align-items: center;
}

.theme__section .data__wrapper .data {
    max-width: 90%;
    margin-top: auto;
    margin-bottom: auto;
}

.theme__section .data__wrapper .button__wrapper {
    display: flex;
    gap: 12px;
}

.theme__section .data__wrapper .section__text {
    font-weight: 600;
}

.theme__section .stat__wrapper {
    display: flex;
    align-items: center;
    justify-content: start;

}

.theme__section .stat__wrapper .stat__item {
    text-align: center;
    padding: 1px 25px;
}

.theme__section .stat__wrapper .stat__item:not(:last-child) {
    border-right: 1px solid #fff;
}

.theme__section .stat__wrapper .stat__item .theme__heading span {
    color: var(--color-primary);
}

.theme__section .stat__wrapper .stat__item small {
    font-size: 12px;
}

/* --- image --- */
.theme__section .main__image {
    border-radius: 10px;
}



/* *****************************************
---------- Project Detail Page ------------
***************************************** */

.product__quantity_input {
    max-width: 200px;
    padding: .65rem .75rem .65rem 6rem;
}

.product__titlebar {
    background-image: url('../img/product-titlebar.jpeg');
}

.product__titlebar .row.content {
    z-index: 1;
    position: relative;
}

.product__titlebar .product__review_wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.product__titlebar .rating__wrapper {
    background: #fff;
    border-radius: 500px;
    padding: 5px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
}

.product__titlebar .rating__wrapper .rating__stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.product__titlebar .rating__wrapper .rating__stars i {
    font-size: var(--fs-base);
    color: #FFC32A;
}

.product__titlebar .rating__wrapper .rating__count {
    color: #005FE9;
    font-weight: 700;
    margin-bottom: 0;
}

.product__titlebar .rating__wrapper .review__count {
    font-size: var(--fs-sm);
    color: #fff;
}

.detail__map_wrapper {
    border-radius: 20px;
    overflow: hidden;
}


/* *****************************************
---------------- Search Page -----------------
***************************************** */

.search__titlebar {
    background-image: url('../img/search-titlebar.jpeg');
}

.map__search_container {
    position: relative;
}

.map__search_container::before {
    content: '';
    position: absolute;
    height: 85%;
    width: 100%;
    background: #fff;
    opacity: 0.5;
    top: 7.5%;
    left: 0;
    z-index: -1;
}

.map__search_wrapper {
    background: #fff;
    padding: 10px 25px;
    border-radius: 5px;
}

.map__search_wrapper .theme__input:focus {
    box-shadow: none !important;
}

.map__search_wrapper .radius__input_wrapper {
    position: relative;
}

.map__search_wrapper .radius__input_wrapper::before {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    background: #000;
    right: 0;
    top: 0;
    opacity: 0.4;
}

.product__card {
    background: #fff;
    padding: var(--sp-5);
    margin-bottom: 15px;
    border-radius: 10px;
}

.product__card .card__content {
    padding-left: var(--sp-3);
}

.product__card .card__content .card__title {
    color: var(--color-primary);
}

.product__card .card__content .card__category {
    color: var(--color-primary-dark);
    font-weight: 800;
    margin-bottom: 8px;
}

.product__card .card__content .card__price {
    color: var(--color-primary-dark);
    margin-bottom: 5px;
}

.product__card .card__content .card__price span {
    font-weight: 800;
    margin-right: 5px;
}

.product__card .card__image_wrapper {
    display: block;
    height: 100%;
    min-height: 120px;
}

.product__card .card__image_wrapper img {
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}




/* *****************************************
---------------- Cart Page -----------------
***************************************** */

.cart__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.cart__item .cart__img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
}

.cart__title {
    font-size: var(--fs-xl);
}

.cart__quantity {
    background: #fff;
    color: var(--color-primary);
    background: #fff;
    color: var(--color-primary);
    width: min-content;
    margin: auto;
    border-radius: 500px;
    padding: 5px 3px;
}

.cart__quantity .cart__btn_subtract,
.cart__quantity .cart__btn_add {
    color: var(--color-primary);
    font-size: 20px;
    outline: none;
    border: none;
    box-shadow: none;
}

.qty-input {
    width: 50px;
    height: 32px;
    font-size: 14px;
    padding: 0;
    background: transparent;
    border: 1px solid #ddd;
    color: #fff;
}

.qty-input:focus {
    box-shadow: none;
    border-color: #007bff;
}






/* *****************************************
-------------- submit listing --------------
***************************************** */

.product__image_dropzone {
    height: 500px;
    background: url("../img/upload-image-placeholder.png");
    background-position: center;
    background-repeat: no-repeat;
    /* background-size: 120px; */
    cursor: pointer;
    border: 2px dashed #ccc;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product__image_dropzone.dz-max-files-reached {
    background: #829198;
}

.product__image_dropzone .dz-button {
    display: none;
}

.product__image_dropzone .dz-preview.dz-image-preview {
    background: transparent;
}


.submit__map_wrapper {
    border-radius: 20px;
    overflow: hidden;
}



/* *****************************************
-------------- How it work --------------
***************************************** */









/* *****************************************
-------------- FAQ --------------
***************************************** */

/* .accordion-button {
  background: transparent;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.accordion-button:not(.collapsed) {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: none;
}

.accordion-body {
  color: #bbb;
  font-size: 14px;
  line-height: 1.6;
} */

.theme__accordion .accordion-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--color-primary);
    padding: 15px 0;
}

.theme__accordion .accordion-item .accordion-button {
    background: transparent;
    color: #fff;
    box-shadow: none;
    padding: 0;
    text-align: left;
}
.theme__accordion .accordion-item .accordion-button::after {
    height: 50px;
    width: 50px;
    background-color: var(--color-primary);
    border-radius: 500px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
}
.theme__accordion .accordion-item .accordion-body {
    padding-left: 0;
}







/* *****************************************
-------------- Dashboard Page --------------
***************************************** */


/* Dashboard Layout */
.dashboard {
    display: flex;
    min-height: 100vh;
    gap: 25px;
}

/* Sidebar */
.sidebar {
    width: 250px;
    background: url('../img/sidebar-bg.png') no-repeat center center/cover;
    border-radius: 20px;
}

.sidebar .nav {
    width: 90%;
    gap: 7px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.5rem;
}

.sidebar .nav-link {
    color: #fff;
    padding: 12px 20px;
    transition: 0.3s;
    border-radius: 10px;
}

.sidebar .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 8px;
}

.sidebar .nav-link.active {
    background: var(--color-primary);
    font-weight: 700;
}

/* Submenu */
.submenu {
    display: none;
    flex-direction: column;
    margin-left: 15px;
    margin-top: 5px;
}

.submenu .nav-link {
    padding: 8px 15px;
    font-size: 14px;
    opacity: 0.8;
    position: relative;
}

.submenu .nav-link::before {
    content: '-';
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    margin-right: 10px;
}

.submenu .nav-link:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.submenu .nav-link.active {
    opacity: 1;
    background: var(--color-primary);
}

/* Rotate arrow when active */
.has-submenu .submenu-toggle i {
    transition: transform 0.3s ease;
}

.has-submenu.open .submenu-toggle i {
    transform: rotate(90deg);
}


/* Main Content */
/* Main Content Layout */
.dashboard__main {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    /* Full height */
}

.dashboard__main .content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    /* Take full remaining height */
}

/* Topbar */
.dashboard__main .topbar {
    background: url('../img/topbar-bg.png') no-repeat center/cover;
    border-radius: 20px;
    padding: 15px 25px;
    margin-bottom: 1rem;
}

.topbar .topbar__content * {
    margin-bottom: 0.2rem;
    opacity: 0.7;
}

.topbar .topbar__content .name {
    opacity: 1;
    font-size: 24px;
    font-weight: bold;
}

/* Table Styling */
.theme__table,
.theme__table thead,
.theme__table th,
.theme__table tr,
.theme__table td {
    background: transparent;
    color: #fff !important;
}

.theme__table thead {
    border-top: 1px solid #fff;
}

.theme__table thead th {
    color: #fff;
    padding: 1.2rem 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
}

.theme__table tbody {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.theme__table tbody td {
    padding: 1rem 0.5rem;
    vertical-align: middle;
}

/* Demo image in table */
.theme__table .table__img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
}






/* Responsive Sidebar */
@media (max-width: 992px) {
    .sidebar {
        position: fixed;
        left: -260px;
        top: 0;
        height: 100%;
        z-index: 1000;
        transition: 0.3s;
    }

    .sidebar.active {
        left: 0;
    }

    .main {
        margin-left: 0;
    }
}


/* Sidebar Mobile State */
@media (max-width: 992px) {
    .sidebar {
        position: fixed;
        left: -260px;
        top: 0;
        height: 100%;
        width: 250px;
        z-index: 1000;
        transition: left 0.3s ease;
    }

    .sidebar.active {
        left: 0;
    }

    .main {
        margin-left: 0 !important;
    }
}






/* ========== dashboard index =========== */
.content__top .theme__btn {
    width: 100%;
}

.content__top .theme__btn,
.table__search {
    max-width: 200px;
}

.table__show_entries {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

.table__show_entries .show__qty_input {
    max-width: 80px;
    border-radius: 500px;
    margin: 0 15px;
}