.navbar {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 64px;
    background-image: url('/assets/img/navbar-background.png');
    border-bottom: 1px solid #D9D9D9;
}

.navbar .left {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
    padding-left: 48px
}

.navbar .left .logo {
    margin-right: 24px;
    font-size: 24px;
    font-weight: 900;
    color: black;
    text-decoration: none;
}

.navbar .left .divider {
    border-left: 1px solid black;
    width: 0px;
    height: 24px;
    background-color: black;
    margin-right: 24px;
}

.navbar .left .links {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
}

.navbar .left .links a {
    margin-right: 16px;
    color: #000;
    text-decoration: none;
}

.navbar .left .links .active {
    font-weight: bold;
}

.navbar .right {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    align-items: center;
    padding-right: 48px;
}

.navbar .right .progress-container {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    margin-right: 16px;
}

.navbar .right .progress-container .progress-indicator {
    height: 28px;
    width: 28px;
    background-color: lightgrey;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 8px;
}

.navbar .right .progress-container .progress-indicator.active {
    background-color: #0047FF;
    color: white;
}

.navbar .right .progress-container .progress-indicator.completed {
    background-color: rgba(0, 71, 255, 0.25);
    border: 2px solid #0047FF;
    color: #0047FF;
}

.navbar .right .progress-container .progress-indicator.completed i {
    font-size: 16px;
    font-weight: bold;
}

.navbar .right .progress-container .progress-text {
    color: darkgrey;
}

.navbar .right .progress-container .progress-text.active {
    color: black;
    font-weight: bold;
}

.navbar .right .progress-line {
    height: 2px;
    width: 60px;
    border-top: 2px dashed darkgrey;
    margin-right: 16px;
}

.navbar .right .progress-line.active {
    border-top: 2px solid black;
}

.navbar .right .progress-line.active {
    border-color: black;
}

.navbar .right .search-box {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    width: 240px;
    height: 32px;
    border-radius: 16px;
    padding: 0 8px;
    background-color: #D9D9D9;
}

.navbar .right .search-box i {
    font-size: 16px;
    color: grey;
    margin-left: 8px;
}

.navbar .right .search-box input {
    width: 100%;
    height: 90%;
    border: none;
    outline: none;
    background-color: transparent;
    margin-left: 8px;
}

.navbar .right .nav-button {
    margin-left: 24px;
    font-size: 24px;
    color: black;
    background-color: #D9D9D9;
    border-radius: 50%;
    height: 32px;
    width: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 24px;
    width: 100%;
}

.dashboard.single {
    flex-flow: column nowrap;
}

.dashboard.with-margin {
    margin: 24px 48px;
}

.dashboard .banner-image {
    width: 100%;
    cursor: pointer;
}

.dashboard .section-title {
    background-image: url('/assets/img/section-background.png');
    width: 100%;
    height: 46px;
    margin-top: 8px;
    padding: 0px 48px;
    border: 1px #D9D9D9;
    border-style: solid none;
}

.no-margin {
    margin: 0px;
}

.dashboard .left {
    margin-left: 48px;
    width: 50%;
}

.dashboard .left h2 {
    margin: 0px 0px 16px 0px;
}

.cart .item {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    margin: 16px 0;
    padding: 16px;
    border: 1px solid #D9D9D9;
    border-radius: 8px;
    width: 100%;
}

.cart .item.active {
    border: 1px solid #0047FF;
    background-color: rgba(0, 71, 255, 0.15)
}

.cart .item .product {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.cart .item .product-image {
    height: 139px;
    width: 139px;
    object-fit: cover;
}

.cart .item .product-details {
    margin-left: 16px;
}

.cart .item .product .product-options {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.cart .item .product .product-options .size-input {
    border: 1px solid #D9D9D9;
    height: 28px;
    width: auto;
    padding: 0 12px 0 8px;
    border-radius: 8px;
    margin-right: 8px;
    cursor: pointer;
}

.cart .item .product .product-options .quantity-input {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    border: 1px solid #D9D9D9;
    border-radius: 8px;
}

.cart .item .product .product-options .quantity-input button {
    width: 32px;
    height: 24px;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.cart .item .prodcut .product-options .quantity-input button:active {
    background-color: darkgrey;
}

.cart .item .product .product-options .quantity-input input {
    width: 24px;
    height: 24px;
    text-align: center;
    background-color: transparent;
    border: none;
}

.cart .item .item-options {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    margin-left: 16px;
    margin-top: auto;
}

input.error {
    background-color: rgba(255, 0, 0, 0.05);
}

.form-option.outlined:has(input.error) {
    border: 1px solid red !important;
    background-color: rgba(255, 0, 0, 0.05);
}

.cart .item .item-options .option-button {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    margin-right: 8px;
    color: black;
    opacity: 0.7;
    cursor: pointer;
}

.cart .item .item-options .option-button:hover {
    color: #0047FF;
    font-weight: bold;
    opacity: 1;
}

.cart .item .item-options .option-button i {
    margin-right: 4px;
}

.form {
    width: 100%;
}

.form .form-item {
    margin-bottom: 12px;
}

.form .form-item .form-text {
    margin: 0px 0px 6px 0px;
    font-size: 16px;
}

.form .form-item .form-text .required {
    color: red;
}

.form .form-item .form-option {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
}

.form .form-item .form-option.select-button .form-button {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    margin-right: 8px;
    color: black;
    border: 1px solid #D9D9D9;
    border-radius: 6px;
    padding: 4px 24px 4px 8px;
    cursor: pointer;
}

.form .form-item .form-option.select-button .form-button.fixed {
    width: 180px;
}

.form .form-item .form-option.select-button .form-button i {
    margin-right: 8px;
}

.form .form-item .form-option.select-button .form-button.active {
    color: #0047FF;
    border-color: #0047FF;
    font-weight: bold;
    border-width: 2px;
    background-color: rgba(0, 72, 255, 0.1);
}

.form .form-item .form-option.outlined {
    border: 1px solid #D9D9D9;
    border-radius: 6px;
    padding: 0px 6px;
}

.form .form-item .form-option.big {
    width: 100%;
}

.form .form-item .form-option.small {
    width: 52px;
}

.form .form-item .form-option input[type="text"],
input[type="email"],
select {
    width: 100%;
    height: 32px;
    border: none;
    outline: none;
    padding: 0 8px;
}

.grid-column {
    display: grid;
    column-gap: 12px;
    width: 100%;
}

.grid-column.two {
    grid-template-columns: 1fr 1fr;
}

.grid-column.three {
    grid-template-columns: 1fr 1fr 1fr;
}

.grid-column.gap-row {
    row-gap: 12px;
}

.dashboard .filter {
    width: 250px;
    min-width: 250px;
    border: 1px solid #D9D9D9;
    border-style: none solid;
    margin-left: 48px;
    height: 100%;
}

.dashboard .filter .title {
    border: 1px solid #D9D9D9;
    border-style: solid none;
    height: 36px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    padding-left: 8px;
}

.dashboard .filter .filters .filter-item {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    cursor: pointer;
}

.dashboard .filter .filters .filter-item.active {
    font-weight: bold;
    background-color: #c5c4c4;
}

.dashboard .filter .filters .filter-item:hover {
    background-color: #c5c4c4;
}

.dashboard .filter .filter-dropdown {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 0px 8px;
    border: 1px solid #D9D9D9;
    border-style: solid none;
    height: 36px;
}

.dashboard .right {
    width: 40%;
    margin-right: 48px;
    margin-left: 24px;
}

.dashboard .right.product {
    margin-top: 60px;
    margin-left: 48px;
}

.dashboard .right .summary-item {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    margin: 16px 0;
}

.dashboard .right .summary-item p {
    margin: 0;
}

.dashboard .right .total {
    border-top: 1px solid #D9D9D9;
    border-bottom: 1px solid #D9D9D9;
    padding: 16px 0px;
}

.dashboard .catalog {
    padding: 16px 0px 0px 16px;
    margin-right: 48px;
    flex-flow: row wrap;
    width: 100%;
}

.dashboard .catalog .catalog-header {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.dashboard .catalog .catalog-header select {
    width: auto;
}

.cards {
    display: flex;
    gap: 16px;
    padding-top: 16px;
    margin-left: 48px;
    overflow-y: scroll;
    width: 100%;
}

.cards.catalog {
    margin-left: 0px;
    padding: 0px;
}

.card {
    cursor: pointer;
}

.card img {
    width: 300px;
    height: 300px;
    border-radius: 6px;
}

.card p {
    margin: 8px 0px 8px 0px;
}

.column {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    margin-top: 16px;
}

.row {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

.row.gap,
.column.gap {
    gap: 24px;
}

.main-product {
    width: 100%;
    height: 700px;
    object-fit: cover;
}

.margin-left {
    margin-left: 8px;
}

.margin-left-2 {
    margin-left: 16px;
}

p.no-margin {
    height: 16px;
}

#price-filter label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

#price-filter input[type="range"] {
    width: 100%;
    margin-bottom: 15px;
}

#price-min-value,
#price-max-value {
    font-size: 1.2em;
    color: #333;
    font-weight: bold;
    margin-left: 5px;
}

.filter-dropdown {
    margin: 0;
    cursor: pointer;
}

#price-filter {
    padding: 10px;
    width: calc(100% - 20px);
}

#sizes {
    flex-flow: row wrap;
    row-gap: 8px;
}

.size {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    border: 1px solid black;
    width: auto;
    height: 40px;
    border-radius: 6px;
    margin-right: 8px;
    padding: 0px 8px;
    cursor: pointer;
}

#colour-filter,
#size-filter,
#price-filter {
    display: none;
}

#colour-filter .size,
#size-filter .size {
    margin-right: 0px;
}

.size:hover {
    background-color: #D9D9D9;
}

.size.active {
    color: #0047FF;
    border-color: #0047FF;
    font-weight: bold;
    border-width: 2px;
    background-color: rgba(0, 72, 255, 0.1);
}

.button {
    height: 42px;
    border-radius: 24px;
    font-size: 16px;
    margin-top: 8px;
    padding: 0px 24px;
    cursor: pointer;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    margin-left: 8px;
}

.button i {
    margin-right: 8px;
}

.button.primary {
    background-color: #0047FF;
    color: white;
    border: none;
}

.button.secondary {
    background-color: white;
    color: black;
    border: 1px solid black;
}

.button.no-hover {
    cursor: none;
}

.dashboard .right .cart {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: flex-start;
    margin-top: 16px;
}

.dashboard .right .cart-item {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    width: 100%;
    margin: 8px 0;
}

.dashboard .right .cart-item img {
    margin-right: 16px;
    width: 139px;
    height: 139px;
}

.dashboard .right .cart-item p {
    margin: 0;
}

.dashboard .right .cart-item .cart-name {
    font-weight: bold;
}

.dashboard .right .cart-item .cart-size {
    color: grey;
}

.dashboard .right .cart-item .cart-quantity {
    color: grey;
}

.dashboard .right .cart-item .cart-price {
    font-weight: bold;
}

.dashboard .right .checkout {
    width: 100%;
    height: 48px;
    margin-bottom: 16px;
}

.text.grey {
    color: rgba(0, 0, 0, 0.75);
}

.text.bold {
    font-weight: bold;
}

.text.blue {
    color: #0047FF;
}

.text.yellow {
    color: #E9DB15;
}

.text.green {
    color: green;
}

.text.icon.before {
    margin-right: 8px;
}

.text.icon.after {
    margin-left: 8px;
}

.flex {
    display: flex;
}

.flex.center-y {
    justify-content: center;
}

.flex.center-x {
    align-items: center;
}

.text.margin-right {
    margin-right: 8px;
}

.icon.information {
    font-size: 14px;
}

.text.hover {
    cursor: pointer;
}

.images {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    column-gap: 6px;
    width: 100%;
    overflow-y: scroll;
}

.images .image-item {
    padding: 8px;
    width: 68px;
    height: 68px;
    cursor: pointer;
    margin: 0 auto;
    border: 1px solid #D9D9D9;
    border-radius: 6px;
}

.images .image-item:hover {
    border-color: black;
}

.images .image-item.active {
    color: #0047FF;
    border-color: #0047FF;
    font-weight: bold;
    border-width: 2px;
    background-color: rgba(0, 72, 255, 0.1);
}

.images .image-item img {
    width: 100%;
    height: 100%;
    border-radius: 6px;
}

.breadcrumps {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    width: 100%;
}

.material-symbols-outlined.filled {
    font-variation-settings: 'FILL' 1;
}

.colour {
    width: 78px;
    height: 78px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    margin-right: 8px;
    cursor: pointer;
    border: 1px solid #D9D9D9;
}

.colour:hover {
    border-color: black;
}

.colour.active {
    color: #0047FF;
    border-color: #0047FF;
    font-weight: bold;
    border-width: 2px;
    background-color: rgba(0, 72, 255, 0.1);
}

.colour img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
}

.page-404 {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.line.divider {
    border-top: 1px solid #D9D9D9;
    width: 100%;
}

.icon.circle {
    width: 48px;
    height: 48px;
    background-color: #D9D9D9;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon.circle i {
    margin: 0;
}


/* Override default browser styles */

select {
    padding-right: 24px !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right .7em top 50%;
    background-size: .65em auto;
}

a {
    text-decoration: none;
}

h1,
h2 {
    margin: 0;
}

* {
    font-family: 'Nokora';
}