@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

body {
    margin: 0px;
    font-family: "Nunito Sans", serif;
}

#left {
    display: flex;
    flex-direction: row;
    justify-content: baseline;
    text-align: center;
}

#left nav {
    display: flex;
    margin-left: 50px;
    align-items: center;

}

header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    border-bottom: 1px solid #890620;
}

header h1 {
    font-family: "Bebas Neue", serif;
}

#right {
    display: flex;
    align-items: center;
}

#right input {
    height: 20px;
    padding: 10px;
    border-radius: 20px;
    border: 1px solid grey;
    margin-right: 20px;
}

#right a img {
    height: 30px;
    width: 30px;
    margin-left: 10px;
}

nav a {
    color: black;
    text-decoration: none;
    padding: 20px 10px;
    font-size: 1.2em;
    border-bottom: 2px solid transparent;
}

h1 a {
    text-decoration: none;
    color: black;
}

.vybrano:nth-child(3) {
    background-color: #e0e0e0;
}

.vybrano:nth-child(1) {
    background-color: #e0e0e0;
}

.stroje {
    padding: 10vh 10%;
    padding-right: 0px;
    background-color: #e3e5e6;
    display: flex;
    justify-content: space-between;
    background-image: url(stroj2.png);
    background-repeat: no-repeat;
    background-size: 100%;
    padding-bottom: 200px;
    color: white;
}

.dolu {
    display: flex;
    padding-top: 30px;
}

.stroje h2 {
    font-size: 3.5em;
}

.stroje p {
    font-size: 1em;
    margin-top: 50px;
    margin-bottom: 50px;
}

.stroje a {
    text-decoration: none;
    color: white;
    padding: 10px 20px;
    background-color: #890620;
    border-radius: 5px;
    margin-top: 20px;

}

.stroje a:hover {
    background-color: white;
    color: black;
}

.nabidka {
    display: flex;
    justify-content: space-between;
    padding: 30px 10%;
    background-color: #e3e5e6;
    flex-wrap: nowrap;
}

.nabidka a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    width: 23%;
    margin: 10px;
    background-color: white;
    border-radius: 5px;
    overflow: hidden;
    color: black;
}

.nabidka a img {
    width: 100%;
    height: auto;
    border-radius: 5px 5px 0 0;
}

.nabidka a h2 {
    padding: 20px;
    margin: 0;
    text-align: center;
}

.nabidka a:hover {
    background-color: #890620;
    color: white;
}

.vybrano {
    padding: 20px 10%;
    background-color: #f1f2f2;

}

.vybrano h2 {
    font-size: 2.5em;
    font-family: 'Bebas Neue', sans-serif;
    margin-bottom: 20px;
    font-weight: 500;
}

.vybrano .produkty {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 20px;
}

.vybrano p {
    margin-top: 5px;
}

.vybrano .produkt {
    display: flex;
    flex-direction: column;
    width: 25%;
    background-color: white;
    border-radius: 5px;
    overflow: hidden;
    text-decoration: none;
    color: black;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.vybrano .produkt:hover {
    transform: translateY(-5px);
}

.vybrano .produkt img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px 5px 0 0;
}

.vybrano .produkt h3 {
    padding: 10px;
    margin: 10px 10px;
    font-size: 1.3em;
    text-align: left;
    font-weight: 400;

}

p.red {
    color: #890620;
}

.produkt button {
    width: 30px;
    height: 30px;
}

.produkty a p {
    padding-left: 10px;
    font-size: 1.2em;
    margin-top: auto;
    margin-left: 10px;
}

.nabidka a:first-child {
    margin-left: 0px;
}

.nabidka a:last-child {
    margin-right: 0px;
}

.vybrano .kosik img {
    width: 24px;
    height: 24px;
    border-radius: 0;
}

p.skrtnuto {
    text-decoration: line-through;
    color: black;
    margin-bottom: 0px;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav>ul {
    display: flex;
    padding: 10px;
    padding-left: 0px;


}

nav>ul>li>a {
    text-decoration: none;
    padding: 10px 30px;
    font-size: 18px;
    transition: color 0.2s ease-in-out;
    width: 150px;
}

nav>ul>li>ul {
    transform: scale(1, 0);
    transform-origin: top;
    transition: transform 0.2s ease-in-out;
    position: absolute;
    padding: 0;
    z-index: 100;
    text-align: center;
    background-color: #f1f2f2;
    width: 150px;
}

nav>ul>li:hover>ul {
    transform: scale(1, 1);
}

nav>ul>li>ul>li {
    display: flex;
    flex-direction: column;
}

nav>ul>li>ul>li>a {
    padding: 10px;
    text-decoration: none;
    display: block;
    transition: background-color 0.2s ease-in, color 0.2s ease-in;
    max-width: max-content;
    text-align: center;
}

nav>ul>li:hover>ul>li:first-child {
    border-top: 1px solid #890620;
}

nav>ul>li:hover>ul>li {
    margin: 0;
}

nav>ul>li>ul {
    transition: transform 0.3s ease-in, transform 0.2s ease-out;
    border-radius: 0px 0px 5px 5px;
}

nav ul li a {
    width: 150px;
}

nav>ul>li>a {
    width: 150px;
    display: block;
    padding: 0px;
}

.popis {
    font-size: 1em;
    color: gray;
    margin-bottom: 5px;
}


@media (max-width: 1200px) {
    .vybrano .produkty {
        flex-wrap: wrap;
    }

    section.nabidka {
        flex-wrap: wrap;

    }

    .nabidka a {
        width: 40%;
        margin-left: 0px;
    }

    .nabidka a:last-child {
        margin-right: 10px;
    }

    .vybrano .produkt {
        width: 48%;
    }

    .stroje {
        padding: 10vh;

    }

    .stroje .dolu {
        padding-top: 0px;
    }

    .stroje h2 {
        font-size: 2.3em;
        text-shadow: white;
        color: white;
    }

    .stroje p {
        font-size: 1em;
    }

    .stroje a {
        padding: 10px 5px;
        border-radius: 10px;
    }

    #right input {
        margin: 0px;
    }

    #left nav {
        margin: 0px;
    }

    nav>ul {
        padding: 0px;
    }

    nav>ul>li {
        text-align: center;
    }
}

@media (max-width: 870px) {
    .vybrano .produkt {
        width: 70%;
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }

    section.nabidka {
        margin: 0 auto;
        justify-content: center;
    }

    .nabidka a {
        width: 70%;
    }

    .vybrano h2 {
        text-align: center;
    }

    .produkty {
        display: flex;
        align-items: center;
    }

    .stroje {
        display: flex;
        text-align: center;
        text-wrap: wrap;
        background-image: url(stroj_kladka.jpg);
        background-size: cover;
        background-position-y: 30%;
        padding: 50vh 10% 5vh 10%;
        max-height: 400px;
        flex-direction: column;
        background-color: black;

    }

    .stroje div.dolu {
        justify-content: center;
    }

    header {
        flex-direction: column;
    }

    #left {
        flex-direction: column;
    }

    #right {
        flex-direction: column;
        margin-top: 20px;
    }

    #right a {
        display: none;
    }

    nav>ul {
        display: flex;
        flex-direction: column;
    }

    nav>ul>li {
        padding-top: 10px;
    }

    footer {
        flex-direction: column;
        align-items: center;

    }

    footer div {
        width: 100%;
        justify-content: center;
        margin-top: 5vh;
    }

    footer div article {
        text-align: center;
    }

    footer div article a {
        text-align: center;
    }

    .product-actions {
        flex-direction: column;
    }

    .tabs {
        flex-direction: column;
    }

    .tabs button {
        width: 100%;
        margin-bottom: 5px;
        border-radius: 5px;
    }

}

footer {
    background-color: #890620;
    color: white;
    display: flex;
    flex-direction: row;
    padding: 20px 10%;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer article {
    display: flex;
    flex-direction: column;
}

footer a {
    color: white;
    text-decoration: none;
    text-align: left;
}

.product-detail {
    padding: 20px 10%;
    display: flex;
    flex-wrap: wrap;
    background-color: #f1f2f2;
}

.product-gallery {
    width: 50%;
    padding-right: 20px;
    box-sizing: border-box;
}

.product-gallery img.main-image {
    width: 100%;
    border-radius: 5px;
}

.product-thumbnails {
    display: flex;
    margin-top: 10px;
    gap: 10px;
}

.product-thumbnails img {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    cursor: pointer;
}

.product-info {
    width: 50%;
    box-sizing: border-box;
    padding-left: 40px;
}

.product-info h1 {
    font-family: 'Bebas Neue', serif;
    font-size: 2.5em;
    margin-bottom: 10px;
    margin-top: 0px;
    font-weight: 400;
}

.product-info .price-container {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.product-info .current-price {
    font-size: 2em;
    font-weight: bold;
    margin: 0;
}

.product-info .stock-info {
    background-color: #e8f5e9;
    color: #2e7d32;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.color-options {
    margin-bottom: 20px;
}

.color-options h3 {
    font-family: 'Bebas Neue', serif;
    margin-bottom: 10px;
}

.color-options .colors {
    display: flex;
    gap: 10px;
    align-items: center;
}

.color-options .color-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
}

.color-options .color-circle.selected {
    width: 40px;
    height: 40px;
}

.quantity-selector {
    margin-bottom: 20px;
}

.quantity-selector h3 {
    font-family: 'Bebas Neue', serif;
    margin-bottom: 10px;
}

.quantity-selector .controls {
    display: flex;
    align-items: center;
}

.quantity-selector button {
    width: 40px;
    height: 40px;
    background-color: #f1f2f2;
    border: 1px solid #ccc;
    cursor: pointer;
    font-size: 1.2em;
}

.quantity-selector input {
    width: 60px;
    height: 38px;
    border: 1px solid #ccc;
    text-align: center;
    margin: 0 10px;
}

.product-actions {
    display: flex;
    gap: 15px;
    margin: 30px 0;
}

.product-actions .add-to-cart {
    text-decoration: none;
    color: white;
    padding: 15px 30px;
    background-color: #890620;
    border-radius: 5px;
    font-size: 1.2em;
}

.product-actions .add-to-favorites {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #890620;
    padding: 15px 20px;
    border: 1px solid #890620;
    border-radius: 5px;
}

.product-actions .add-to-favorites img {
    width: 20px;
    height: 20px;
}

.product-details {
    width: 100%;
    margin-top: 40px;
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
    clear: both;
}

.product-details h3 {
    font-weight: 400;
    font-size: 1.9em;
}

.product-details h4 {
    font-weight: 400;
    font-size: 1.5em;
}

.tabs {
    border-bottom: 2px solid #890620;
    display: flex;
    margin-bottom: 20px;
}

.tabs button {
    padding: 10px 20px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    margin-right: 5px;
    border-radius: 5px 5px 0 0;
}

.tabs button.active {
    background-color: #890620;
    color: white;
}

.tab-content {
    line-height: 1.6;
}

.tab-content h3 {
    font-family: 'Bebas Neue', serif;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.tab-content h4 {
    font-family: 'Bebas Neue', serif;
    margin-top: 20px;
    margin-bottom: 10px;
}

.tab-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}


@media (max-width: 768px) {

    .product-gallery,
    .product-info {
        width: 100%;
        padding-right: 0;
    }

    .product-info {
        margin-top: 20px;
        padding-left: 0px;
    }
}

.cart-container {
    padding: 20px 10%;
    background-color: #f1f2f2;
}

.cart-container h1 {
    font-family: 'Bebas Neue', serif;
    font-size: 2.5em;
    margin-bottom: 30px;
    font-weight: 500;
}


.cart-items {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.cart-item {
    display: flex;
    width: 100%;
    background-color: white;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    align-items: center;
}

.item-image {
    width: 15%;
    min-width: 120px;
}

.item-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.item-details {
    flex-grow: 2;
    padding: 0 20px;
}

.item-details h3 {
    font-size: 1.3em;
    margin: 0 0 5px 0;
    font-weight: 400;
}

.item-description {
    color: #666;
    margin: 5px 0;
}

.item-variant {
    font-size: 0.9em;
    color: #333;
    margin-top: 10px;
}

.item-quantity {
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.quantity-controls {
    display: flex;
    align-items: center;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    background-color: #f1f2f2;
    border: 1px solid #ccc;
    cursor: pointer;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-input {
    width: 40px;
    height: 28px;
    border: 1px solid #ccc;
    text-align: center;
    margin: 0 5px;
}

.item-price {
    width: 15%;
    text-align: right;
    padding: 0 15px;
}

.item-price .current-price {
    font-size: 1.3em;
    font-weight: bold;
    margin: 0;
}

.item-price .original-price {
    text-decoration: line-through;
    color: #890620;
    font-size: 0.9em;
    margin: 5px 0 0 0;
}

.item-actions {
    padding: 0 0 0 15px;
}

.remove-item {
    background: none;
    border: none;
    color: #890620;
    cursor: pointer;
    text-decoration: underline;
    padding: 5px;
}

.cart-summary {
    width: 100%;
    background-color: white;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.promo-code {
    margin-bottom: 20px;
}

.promo-code h3 {
    font-family: 'Bebas Neue', serif;
    margin-bottom: 10px;
    font-weight: 500;
}

.promo-input {
    display: flex;
}

input#street {
    margin-left: 10px;
}

.promo-input input {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px;
}

.promo-input button {
    padding: 10px 20px;
    background-color: #890620;
    color: white;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

.summary-totals {
    margin: 20px 0;
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.summary-row.total {
    font-size: 1.5em;
    font-weight: bold;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.checkout-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.continue-shopping {
    padding: 15px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
}



.proceed-checkout {
    padding: 15px 20px 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
}

.continue-shopping {
    background-color: #e0e0e0;
    color: #333;
    border: 1px solid #ccc;
}

.proceed-checkout {
    background-color: #890620;
    color: white;
    flex-grow: 1;
    margin-left: 20px;
}


.shipping-options {
    background-color: white;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.shipping-options h2 {
    font-family: 'Bebas Neue', serif;
    font-size: 1.8em;
    margin-bottom: 20px;
    font-weight: 500;
}

.shipping-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.shipping-method {
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
}

.shipping-method input[type="radio"] {
    margin-right: 10px;
}

.shipping-method label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    cursor: pointer;
}


.method-name {
    font-weight: bold;
}

.method-price {
    color: #890620;
    font-weight: bold;
    text-align: end;
}

.method-description {
    margin: 0;
    color: #666;
}

@media (max-width: 1200px) {
    .cart-item {
        flex-wrap: wrap;
    }

    .item-image {
        width: 20%;
        min-width: 100px;
    }

    .item-details {
        width: 75%;
    }

    .item-quantity,
    .item-price,
    .item-actions {
        margin-top: 15px;
    }

    .item-quantity {
        margin-left: auto;
    }
}

@media (max-width: 870px) {
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .item-image {
        width: 100%;
        max-width: 200px;
        margin-bottom: 15px;
    }

    .item-details {
        width: 100%;
        padding: 0;
        margin-bottom: 15px;
    }

    .item-quantity,
    .item-price,
    .item-actions {
        width: 100%;
        padding: 0;
        margin-top: 10px;
        text-align: left;
    }

    .checkout-actions {
        flex-direction: column;
        gap: 15px;
    }

    .continue-shopping,
    .proceed-checkout {
        width: 100%;
        margin: 0;
    }
    
}

.form-container {
    padding: 20px 10%;
    background-color: #f1f2f2;
}

.form-container h1 {
    font-family: 'Bebas Neue', serif;
    font-size: 2.5em;
    margin-bottom: 30px;
    font-weight: 500;
}

.form-section {
    background-color: white;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.form-section h2 {
    font-family: 'Bebas Neue', serif;
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #000;
    font-weight: 400;
}

.form-group {
    margin-bottom: 20px;
}

label.margin {
    margin-left: 10px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 80%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Nunito Sans', serif;
    font-size: 1em;
}

.form-group select {
    height: 45px;
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-col {
    flex: 1;
    margin: 10px;
}


.shipping-method {
    margin-bottom: 15px;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
}

.shipping-method label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.shipping-method input[type="radio"] {
    margin-right: 10px;
    width: auto;
}

.method-name {
    font-weight: bold;
}

.method-price {
    color: #890620;
    font-weight: bold;
}

.payment-method {
    margin-bottom: 15px;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
}

.payment-method label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
}

.payment-method input[type="radio"] {
    margin-right: 10px;
    width: auto;
}

.checkbox-group {
    margin: 20px 0;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    width: auto;
    margin-top: 5px;
}

.action-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.back-button,
.continue-button {
    padding: 15px 20px 6px 20px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
}

.back-button {
    background-color: #e0e0e0;
    color: #333;
    border: 1px solid #ccc;
    text-align: center;
    justify-content: baseline;
    display: flex;
    border-radius: 5px;
}

.continue-button {
    background-color: #890620;
    color: white;
    border: none;
    flex-grow: 1;
    margin-left: 20px;
    font-family: 'Nunito Sans', serif;
    font-size: 1em;
}

.summary-box {
    background-color: #f8f8f8;
    padding: 15px;
    margin-top: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.summary-row.total {
    font-size: 1.5em;
    font-weight: bold;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}


@media (max-width: 870px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .action-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .back-button,
    .continue-button {
        width: 100%;
        margin: 0;
    }
      

}

/* From Uiverse.io by Li-Deheng */ 
.btn-conteiner {
    display: flex;
    justify-content: center;
    --color-text: #ffffff;
    --color-background: #890620;
    --color-outline: #890620be;
  }
  
  .btn-content {
    display: flex;
    align-items: center;
    padding: 5px 30px;
    text-decoration: none;
    font-family: "Nunito Sans", serif;

    font-weight: 600;
    font-size: 1.2em;
    color: var(--color-text);
    background: var(--color-background);
    transition: 1s;
    border-radius: 5px;
    box-shadow: 0 0 0.2em 0 var(--color-background);
  }
  
  .btn-content:hover, .btn-content:focus {
    transition: 0.5s;
    -webkit-animation: btn-content 1s;
    animation: btn-content 1s;
    outline: 0.1em solid transparent;
    outline-offset: 0.2em;
    box-shadow: 0 0 0.4em 0 var(--color-background);
  }
  
  .btn-content .icon-arrow {
    transition: 0.5s;
    margin-right: 0px;
    transform: scale(0.6);
  }
  
  .btn-content:hover .icon-arrow {
    transition: 0.5s;
    margin-right: 25px;
  }
  
  .icon-arrow {
    width: 20px;
    margin-left: 15px;
    position: relative;
    top: 6%;
  }
    
  /* SVG */
  #arrow-icon-one {
    transition: 0.4s;
    transform: translateX(-60%);
  }
  
  #arrow-icon-two {
    transition: 0.5s;
    transform: translateX(-30%);
  }
  
  .btn-content:hover #arrow-icon-three {
    animation: color_anim 1s infinite 0.2s;
  }
  
  .btn-content:hover #arrow-icon-one {
    transform: translateX(0%);
    animation: color_anim 1s infinite 0.6s;
  }
  
  .btn-content:hover #arrow-icon-two {
    transform: translateX(0%);
    animation: color_anim 1s infinite 0.4s;
  }
  
  /* SVG animations */
  @keyframes color_anim {
    0% {
      fill: white;
    }
  
    50% {
      fill: var(--color-background);
    }
  
    100% {
      fill: white;
    }
  }
  
  /* Button animations */
  @-webkit-keyframes btn-content {
    0% {
      outline: 0.2em solid var(--color-background);
      outline-offset: 0;
    }
  }
  
  @keyframes btn-content {
    0% {
      outline: 0.2em solid var(--color-background);
      outline-offset: 0;
    }
  }
 