.bordered {
    border: 5px solid #F0F2F3;
}

.shop-button:hover {
    border: 5px solid #83F0FF;
}

.shop-button:active {
    background-color: #83F0FF;
}

.cart-link {
    position: absolute;
    top: 55;
    right: 45;
}

.cart-icon {
    width: 45px;
    height: 45px;
    transform: translate(70%, 0%)
}

.cart-link-label {
    float: left;
    font-size: 13px;
    margin-bottom: 0;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

@media (min-width: 1250px) {
    .products {
        display: inline-flex;
        flex-direction: row;
        margin: 15px;
        padding-top: 15px;
        width: 80%;
    }
    .product {
        margin: 10px;
        padding: 15px;
    }
}

@media (max-width: 1249px) {
    .products {
        display: block;
        margin: 15px;
        padding-top: 15px;
        width: 80%;
    }
    .product {
        margin: 10px;
        padding: 15px;
        max-width: 300px;
    }
}

.product-image {
    width: 250px;
    height: 250px;
    margin: 5px;
}

.product-data {
    position: relative;
}

.product-price {
    padding: 5px;
    display: inline-block;
    margin: 5px;
}

.product-buy-button {
    cursor: pointer;
    padding: 5px;
    padding-right: 15px;
    padding-left: 15px;
    display: inline-block;
    position: absolute;
    right: 5px;
}

.arrow-right {
  width: 0;
  height: 0;
  border-top: 24px solid transparent;
  border-bottom: 24px solid transparent;
  border-left: 24px solid #F0F2F3;
  position: absolute;
  top: -4px;
  right: -28px;
}

.added-to-cart-label {
    position: relative;
    width: 180px;
    height: 40px;
}

.added-to-cart-label-caption {
    position: absolute;
    left: 50%;
    white-space: nowrap;
}

.added-to-cart {
    position: absolute;
    top: 68px;
    right: 210px;
    display: none;
}

.cart-error-label {
    position: relative;
    width: 250px;
    height: 40px;
    border: 5px solid #F50000;
}

.cart-error-label-caption {
    position: absolute;
    left: 50%;
    color: #F50000;
    white-space: nowrap;
}

.cart-error {
    position: absolute;
    top: 68px;
    right: 210px;
    display: none;
}

.cart-table-section {
    margin-top: 10px;
    width: auto;
    display: block;
}

.cart-table-buttons {
    margin-top: 10px;
    width: auto;
    display: block;
}

.total-price {
    margin-top: 20px;
    font-size: 25px;
    font-weight: 600;
}

.cart-table {
    width: 80%;
    font-size: 20px;
}

.cart-table > tbody > tr > td {
    padding-top: 7px;
    padding-bottom: 7px;
}

.cart-button {
    display: inline-block;
    margin-right: 10px;
}

.error-text {
    display: none;
    color: red;
}