body {
    margin: 0px;
}
  /*navbar*/
.nav-container {
    position: sticky;
    z-index: 3;
    top: 0;
}
.navbar {
    display: flex;
    padding: 5px;
    justify-content: space-between;
    height: 65px;
    background-color: #1b1b1b;
}
  
.navbar-logo {
    justify-self: start;
    margin-left: 20px;
    color: #fff;
    margin-top: 10px;
    cursor: pointer;
}
  
.ver-carrito {
    font-size: 25px;
    margin-right: 20px;
    margin-top: 10px;
    cursor: pointer;
}
  
  /*main estilos*/
.banner {
    background-size: cover;
    background-position: center;
    background-image: linear-gradient(rgba(216, 19, 19, 0.4), rgba(134, 101, 101, 0.4));
}
  
.banner-container {
    text-align: center;
    padding: 15% 0;
}
  
.banner h1 {
    margin: 0;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    font-size: 62px;
    font-weight: bold;
}
  
.banner p {
    font-size: 30px;
    color: white;
    opacity: 0.7;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}
  
  /*product cards*/
.shop-content {
    background-color: #f7f4f4;
    display: flex;
    justify-content: space-around;
    width: 100%;
    flex-wrap: wrap;
}
.card {
    box-shadow: 0 4px 8px 0 rgba(216, 19, 19, 0.4);
    max-width: 300px;
    margin: auto;
    text-align: center;
    font-family: arial;
    margin: 10px;
}
  
.card > img {
    width: 180px;
    height: 200px;
    border: 1px solid black;
    border-radius: 5px;
}
  
.price {
   color: rgba(216, 19, 19, 0.4);
    font-size: 22px;
    
}
  
.card button {
    border: none;
    outline: 0;
    padding: 12px;
    color: rgba(216, 19, 19, 0.4);
    background-color: #111111;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    width: 100%;
    font-size: 18px;
}
  
.card button:hover {
    opacity: 0.7;
}
  
  /*modal content*/
.modal-container {
    width: 80%;
    margin: 0 10%;
    max-height: 88vh;
    color: #fff;
    background-color: #121212;
    display: flex;
    flex-direction: column;
    align-items: center;
    /*for the top*/
    position: fixed;
    overflow: auto;
    z-index: 9;
    top: 12vh;
    scrollbar-color: none;
    border-radius: 20px;
}
  
.modal-container::-webkit-scrollbar {
    display: none;
}
.modal-header {
    display: flex;
    justify-content: space-around;
    background-color: #fff;
    color: #121212;
    width: 100%;
}
  
.modal-header-title {
    justify-self: start;
}
  
.modal-header-button {
    cursor: pointer;
}
  
.modal-container > .modal-content {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 70%;
    margin: 10px;
}
  
.modal-container > div > img {
    height: 120px;
    width: 120px;
    border-radius: 5px;
}
  
.total-content {
    font-size: 25px;
    padding: 20px;
    text-align: center;
    padding-top: 20px;
}

.copy {
    height: 12vh;
    background-color: rgb(10, 10, 10);
    color: #f7f3f3;
    padding-top: 20px;
}

.copy-text {
    font-size: large;
    padding: 10px;
    cursor: pointer;
}

  
  
  /*eliminar prodcuto*/
.delete-product {
    cursor: pointer;
}
.delete-product:hover{
    color: green;
}
  
  /*contador de articulos en el carrito*/
.cantidad-carrito {
    background-color: red;
    color: white;
    border-radius: 50%;
    font-size: 12px;
    padding: 4px;
    top: 37px;
    right: 14px;
    position: absolute;
    display: none;
}
  
.sumar {
    cursor: pointer;
    color: green;
    font-size: 20px;
    font-weight: 800;
}
  
.restar {
    cursor: pointer;
    color: green;
    font-size: 20px;
    font-weight: 800;
}

.btn-success{
    background-color:  green;
    color:  white;
    border:  10px;
    padding:  10px 20px;
    cursor:  pointer;
    margin:  20px ;
    border-radius: 5px;
}

.btn-danger{
    background-color:  red;
    color:  white;
    border:  10px;
    padding:  10px 20px;
    cursor:  pointer;
    margin:  20px ;
    border-radius: 5px;
}

#dolarTarjeta{
    top:66px;
    left: 0;
    width: 100%;
    position:absolute;
}
.api-dolar{
    background-color: #000;
    width: 100%;
    overflow: hidden;
}

.scrolling-text h2{
    color: #faf9f9;
    font-weight:400;
    font-size: medium;
}

.scrolling-text {
    animation: scrollText 15s linear infinite;
}

@keyframes scrollText {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); } 
}

@media only screen and (max-width: 750px) {
    .modal-container {
      width: 100%;
      margin: 0;
    }
  
    .modal-container > .modal-content {
      justify-content: space-between;
      width: 100%;
      margin: 0;
    }
  
    .modal-container > div > img {
      height: 80px;
      width: 80px;
    }

    .scrolling-text h2{
        font-size: smaller;
    }
}