/* start: Globals */
:root {
    --black: #000;
    --white: #fff;
    --logo: #42cbb2;
    --primary: #75ebbd;
    --secondary: #e3e9f0;
    --success: #22c55e;
    --success-soft: #dcfce7;
    --danger: #ef4444;
    --danger-soft: #fee2e2;
    --warning: #f97316;
    --warning-soft: #ffedd5;
    --text-color: #7a7a7a;
    --border-color: #e3e9f0;
    --text-xs: 12px;
    --text-sm: 14px;
    --text-2sm: 15px;
    --text-base: 16px;
    --text-lg: 18px;
    --text-xl: 20px;
    --text-2xl: 24px;
    --text-3xl: 30px;
    --text-4xl: 36px;
    --text-5xl: 48px;
    --rounded-sm: 2px;
    --rounded: 4px;
    --rounded-md: 6px;
    --rounded-lg: 8px;
    --rounded-xl: 12px;
    --rounded-2xl: 16px;
    --rounded-full: 999px;
    --duration-150: 0.15s;
    --duration-200: 0.2s;
    --duration-300: 0.3s;
}

*,
::before,
::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

input,
select,
textarea,
button {
    font-family: inherit;
}

button {
    color: var(--black);
}

.container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 16px;
}

/* end: Globals */

/* start: Section */
.section-title {
    font-size: var(--text-4xl);
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
    max-width: 720px;
    margin: 0 auto 16px;
}

.section-title-underline-warning {
    background-image: url(/img/underline-warning.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: bottom;
}

.section-title-underline-primary {
    background-image: url(/img/underline-primary.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: bottom;
}

.section-description {
    text-align: center;
    color: var(--text-color);
    line-height: 1.5;
    max-width: 720px;
    margin: 0 auto;
}

/* end: Section */

/* start: Skeleton */
.skeleton {
    background-image: linear-gradient(90deg, hsl(210, 15%, 88%), hsl(210, 15%, 95%), hsl(210, 15%, 88%));
    background-size: 200%;
    border-radius: 8px;
    animation: skeleton 1s infinite reverse;
}

@keyframes skeleton {
    0% {
        background-position: -100% 0;
    }

    100% {
        background-position: 100% 0;
    }
}

/* end: Skeleton */

/* start: Badge */
.badge {
    height: 20px;
    font-size: var(--text-xs);
    font-weight: 500;
    padding: 0 12px;
    border-radius: var(--rounded-full);
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.badge-success {
    background-color: var(--success-soft);
    color: var(--success);
}

.badge-danger {
    background-color: var(--danger-soft);
    color: var(--danger);
}

.badge-secondary {
    background-color: var(--secondary);
    color: var(--text-color);
}

/* end: Badge */

/* start: Form */
.form-control {
    height: 44px;
    padding: 0 16px;
    background-color: #f7f7f7;
    border: 1px solid #8e8a8a;
    width: 100%;
    outline: none;
    border-radius: var(--rounded-md);
    font-size: var(--text-base);
}

.form-control-sm {
    height: 36px;
    padding: 0 16px;
    font-size: var(--text-sm);
}

select.form-control {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    padding-right: 40px;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0iY3VycmVudENvbG9yIj48cGF0aCBkPSJNMTEuOTk5OSAxMy4xNzE0TDE2Ljk0OTcgOC4yMjE2OEwxOC4zNjM5IDkuNjM1ODlMMTEuOTk5OSAxNS45OTk5TDUuNjM1OTkgOS42MzU4OUw3LjA1MDIgOC4yMjE2OEwxMS45OTk5IDEzLjE3MTRaIj48L3BhdGg+PC9zdmc+');
    background-size: 16px;
    background-position: right 16px center;
    background-repeat: no-repeat;
}

.form-label {
    margin-bottom: 8px;
    font-weight: 500;
    display: inline-block;
    font-size: var(--text-base);
}

.form-label-optional::after {
    content: ' (optional)';
    font-size: var(--text-sm);
    color: var(--text-color);
}

.is-invalid {
    border-color: var(--danger);
}

.invalid-feedback {
    display: inline-block;
    margin-top: 4px;
    font-size: var(--text-sm);
    color: var(--danger);
}

.invalid-feedback>a {
    color: var(--danger);
    font-weight: 500;
}

.form-autocomplete-wrapper {
    position: relative;
}

.form-autocomplete {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    border-radius: var(--rounded-md);
    border: 1px solid #8e8a8a;
    z-index: 10;
    padding: 8px 0;
    overflow-y: auto;
    max-height: 300px;
}

.form-autocomplete-item {
    display: flex;
    align-items: center;
    background-color: var(--white);
    outline: none;
    text-align: left;
    border: none;
    cursor: pointer;
    height: 32px;
    padding: 0 16px;
    color: var(--black);
    font-size: var(--text-sm);
    width: 100%;
}

.form-autocomplete-item.focused,
.form-autocomplete-item:hover {
    background-color: var(--secondary);
}

/* end: Form */

/* start: Alert */
.alert {
    padding: 8px 16px;
    border-radius: var(--rounded-md);
    font-size: var(--text-sm);
    margin-bottom: 16px;
}

.alert-danger {
    background-color: var(--danger-soft);
    color: var(--danger);
}

.alert-success {
    background-color: var(--success-soft);
    color: var(--success);
}

.alert>a {
    color: inherit;
    text-underline-offset: 2px;
}

/* end: Alert */

/* start: Button */
.btn {
    height: 44px;
    padding: 0 24px;
    border-radius: var(--rounded-md);
    text-align: center;
    font-size: var(--text-base);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    outline: none;
    border: 1px solid;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn:disabled {
    pointer-events: none;
    opacity: 0.5;
}

.btn-sm {
    height: 36px;
    font-size: var(--text-sm);
    padding: 0 16px;
}

.btn-nowrap {
    white-space: nowrap;
}

.btn-pill {
    border-radius: var(--rounded-full);
    height: 24px;
    font-size: var(--text-xs);
    padding: 0 8px;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--black);
    transition-property: background-color, border-color, color;
    transition-duration: var(--duration-150);
}

.btn-primary:hover {
    background-color: var(--black);
    border-color: var(--black);
    color: var(--white);
}

.btn-warning {
    background-color: var(--warning);
    border-color: var(--warning);
    color: var(--white);
    transition-property: background-color, border-color;
    transition-duration: var(--duration-150);
}

.btn-warning:hover {
    background-color: var(--black);
    border-color: var(--black);
}

.btn-white {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--black);
}

.btn-outline-primary {
    background-color: transparent;
    border-color: var(--black);
    color: var(--black);
    transition-property: background-color, border-color, color;
    transition-duration: var(--duration-150);
}

.btn-outline-primary:hover {
    background-color: var(--black);
    border-color: var(--black);
    color: var(--white);
}

.btn-danger {
    background-color: var(--danger);
    border-color: var(--danger);
    color: var(--white);
    transition-property: background-color, border-color, color;
    transition-duration: var(--duration-150);
}

.btn-block {
    width: 100%;
}

.btn> :first-child {
    margin-right: 8px;
}

/* end: Button */

/* start: Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-item {
    height: 36px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    border: 1px solid var(--border-color);
    border-right: none;
    text-decoration: none;
    color: var(--black);
}

.pagination-item:hover {
    background-color: var(--border-color);
}

.pagination-item.disabled,
.pagination-item:disabled {
    pointer-events: none;
    opacity: 0.5;
}

.pagination-item:first-child {
    border-top-left-radius: var(--rounded-md);
    border-bottom-left-radius: var(--rounded-md);
}

.pagination-item:last-child {
    border-right: 1px solid var(--border-color);
    border-top-right-radius: var(--rounded-md);
    border-bottom-right-radius: var(--rounded-md);
}

.pagination2 {
    margin-top: 24px;
}

.pagination2-info {
    text-align: center;
    font-size: var(--text-base);
    margin-bottom: 12px;
}

.pagination2-info>span {
    font-weight: 600;
}

.pagination2-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination2-link {
    text-decoration: none;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--rounded-md);
    background-color: transparent;
    border: 1px solid var(--black);
    cursor: pointer;
    outline: none;
    font-size: var(--text-base);
}

.pagination2-link:hover {
    background-color: var(--black);
    color: var(--white);
}

.pagination2-link.disabled,
.pagination2-link:disabled {
    pointer-events: none;
    opacity: 0.5;
}

.pagination2-text {
    font-size: var(--text-sm);
    color: var(--text-color);
    margin: 0 16px;
}

/* end: Pagination */

/* start: Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    z-index: 1000000;
    opacity: 0;
    visibility: hidden;
    transition-property: opacity, visibility;
    transition-duration: var(--duration-300);
}

div:where(.swal2-container) {
    z-index: 100000001 !important;
}

.modal.modal-shown {
    opacity: 1;
    visibility: visible;
}

.modal-inner {
    max-width: 540px;
    margin: 16px auto;
    min-height: calc(100vh - 32px);
    padding: 0 16px;
    pointer-events: none;
}

.modal-center .modal-inner {
    display: flex;
    align-items: center;
}

.modal-content {
    width: 100%;
    background-color: var(--white);
    border-radius: var(--rounded-lg);
    transform: translateY(64px);
    pointer-events: auto;
    transition-property: transform;
    transition-duration: var(--duration-300);
}

.modal.modal-shown .modal-content {
    transform: translateY(0);
}

.modal-body {
    padding: 16px;
}

/* end: Modal */

/* start: Navbar */
.navbar-wrapper {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    text-decoration: none;
}

.navbar-brand-image {
    height: 32px;
    display: block;
}

.navbar-menu-list {
    display: flex;
    align-items: center;
    list-style-type: none;
}

.navbar-menu-list-item {
    margin-right: 24px;
}

.navbar-menu-list-item:last-child {
    margin-right: 0;
}

.navbar-menu-list-item-mobile {
    display: none;
}

.navbar-menu-list-item-link {
    text-decoration: none;
    color: var(--black);
}

.navbar-menu-overlay {
    display: none;
}

.navbar-close {
    display: none;
}

.navbar-right {
    display: flex;
    align-items: center;
}

.navbar-right>* {
    margin-right: 24px;
}

.navbar-right> :last-child {
    margin-right: 0;
}

.navbar-toggle {
    background-color: transparent;
    cursor: pointer;
    outline: none;
    border: none;
    font-size: var(--text-xl);
    border-radius: var(--rounded-lg);
    width: 44px;
    height: 44px;
    display: none;
    transition-property: background-color;
    transition-duration: var(--duration-150);
}

.navbar-toggle:hover {
    background-color: var(--secondary);
}

.navbar-account {
    position: relative;
}

.navbar-account-toggle {
    display: flex;
    align-items: center;
    color: var(--black);
    background-color: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    box-shadow: none;
    font-weight: 400;
}

.navbar-account-toggle-icon {
    width: 40px;
    height: 40px;
}

.navbar-account-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: 0px 10px 31px 0px #00000040;
    padding: 8px 0;
    width: 160px;
    display: none;
    z-index: 10;
}

.navbar-account.active .navbar-account-menu {
    display: block;
}

.navbar-account-menu-box {
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
}

.navbar-account-menu-box:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.navbar-account-menu-box-title {
    font-size: 12px;
    color: var(--text-color);
    margin-bottom: 4px;
    padding: 0 16px;
}

.navbar-account-menu-box-menu {
    list-style-type: none;
}

.navbar-account-menu-box-menu-item-link {
    color: var(--black);
    display: flex;
    align-items: center;
    padding: 0 16px;
    text-decoration: none;
    height: 36px;
    font-size: 14px;
}

.navbar-account-menu-box-menu .navbar-account-menu-box-menu-item-link:hover {
    background-color: var(--secondary);
}

/* end: Navbar */

/* start: Footer */
.footer {
    padding: 32px 0;
}

.footer-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.footer-brand {
    text-decoration: none;
}

.footer-brand-image {
    height: 32px;
    display: block;
}

.footer-copyright {
    color: var(--text-color);
}

/* end: Footer */

/* start: Breakpoints */
@media screen and (max-width: 1400px) {
    .container {
        max-width: 1160px;
    }
}

@media screen and (max-width: 1200px) {
    .container {
        max-width: 940px;
    }
}

@media screen and (max-width: 991px) {
    .container {
        max-width: 720px;
    }
}

@media screen and (max-width: 767px) {
    .container {
        max-width: 540px;
    }

    .section-title {
        font-size: var(--text-2xl);
    }

    .navbar-menu {
        position: fixed;
        top: 0;
        left: 0;
        transform: translateX(-64px);
        width: calc(100% - 32px);
        height: 100%;
        background-color: var(--white);
        max-width: 300px;
        z-index: 40;
        padding: 24px;
        opacity: 0;
        visibility: hidden;
        transition-property: opacity, visibility, transform;
        transition-duration: var(--duration-300);
    }

    .navbar-shown .navbar-menu {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .navbar-menu-list {
        display: block;
    }

    .navbar-menu-list-item {
        margin-right: 0;
        margin-bottom: 12px;
    }

    .navbar-menu-list-item:last-child {
        margin-bottom: 0;
    }

    .navbar-menu-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 30;
        opacity: 0;
        visibility: hidden;
        transition-property: opacity, visibility;
        transition-duration: var(--duration-300);
    }

    .navbar-shown .navbar-menu-overlay {
        opacity: 1;
        visibility: visible;
    }

    .navbar-close {
        display: block;
        background-color: transparent;
        cursor: pointer;
        border: none;
        position: absolute;
        top: 16px;
        right: 16px;
        font-size: var(--text-lg);
    }

    .navbar-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media screen and (max-width: 575px) {
    .navbar-brand-image {
        height: 28px;
    }

    .navbar-right-desktop {
        display: none;
    }

    .navbar-menu-list-item-mobile {
        display: block;
    }

    .footer-wrapper {
        flex-direction: column;
    }

    .footer-brand {
        margin-bottom: 16px;
    }
}

/* start: Breakpoints */
.links {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.links a {
    text-decoration: none;
    color: #242d3d;
    margin-top: 10px;
}

.seller-privacy {
    margin-right: 25px;
}

.links a:hover {
    color: #42cbb2;
}