/*HEADER*/
* {
    margin: 0;
    padding: 0;
}


.logo{
    width: 150px;
}

.logo-container{
    margin: 20px auto;
    display: flex;
    justify-content: center;
}

/* PRODUCT CONTAINER*/
.product-container{
    display: flex;
    justify-content: center;
    min-height: 300px;
}
.product-image{
    width: 80%;
    object-fit: contain;
    min-height: 200px;
}
.product-description {
    display: flex;
    flex-direction: column;
    margin: auto;
}

.step .step-subtitle {
    font-size: 1.1rem;
}

.subtitle {
    font-size: 14px;
    margin: 5px 0;
}

.title {
    font-size: 1.3rem;
    font-weight: bold;
}

.add-to-order {
    width: 100%;
    padding: 8.5px;
    border-radius: 5px;
    border-style: none;
    background: #def1ff;
    color: #538efe;
    font-weight: bold;
}




.modal-header {
    background: linear-gradient(90deg, #37b4ff 0%, #5984fe 70%);
    display: flex;
    align-items: center;
    color: white;
}

/*SPECIAL OFFER*/
.special-offer {
    text-align: center;
}
.special-offer h3{
    font-weight: bold;
    color: #25aae1;

}
.free-shipping p{
    color: red;
    font-weight: bold;
}
form {
    display: flex;
    justify-content: center;
    margin: auto;
}
/*FIRST STEPS*/

    /* DISCOUNT */
.first-steps{
    padding: 10px;
    border-style: solid;
    border-width: 2px;
    border-color: rgb(231, 231, 231);
    border-radius: 10px;
}

.discount{
    width: 100%;
}

.off-card{
    border-style: dotted;
    border-color: red;
    border-width: 2px;
    border-radius: 30px;
	margin-top: 30px;
	margin-bottom: 30px;
}

.red-card{
    height: auto;
    margin: 10px;
    padding: 0px;
    background: red;
    border-radius: 20px;
    text-align: center;
    color: white;
    font-size: 3rem;
    font-weight: bold;
    border-style: dotted;
    border-color: red;
    border-width: 1px;
    
}

.red-card-subtitle{
    height: auto;
    font-size: 1.2rem;
    font-weight: bold;

}

/*COUNTER*/
.counter {
    margin-top: 4%;
    text-align: center;
}
.counter p {
    padding: 0;
    margin: 0;
}
.counter .important {
    font-weight: bold;
    color: red;
}

.counter .offer-valid {
    font-weight: bold;
}
.counter-description {
    font-size: 1.2rem;
}


/*CHOOSE

.choose{
    display: flex;
    border-radius: 10px;
    padding: 25px;
    margin: 10px auto;
    border-width: 1px;
    border-style: solid;
    border-color: #b9bdc0;
}



.choose-description{
    display: flex;
    width: 100%;
}

.choose-description-title{
    margin-left: 10px;

}

.choose-description-price{
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.choose-description-price p {
    font-weight: bold;
}

.choose-description p{
    margin: 0;
    
}

.step{
    margin-top: 40px;
}
*/
/*LAST STEPS*/
.last-steps{
    padding: 10px;
    border-style: solid;
    border-width: 2px;
    border-color: rgb(231, 231, 231);
    border-radius: 10px;
    
}

.second-logo {
    width: 80px;
}

.product-info{
    display: flex;
    justify-content: space-between;
}

.product-info img{
    
    object-fit: contain;
    width: 80px;
    height: auto;
}

.select {
    padding: 5px;
    background: transparent;
    border-style: solid;
    border-radius: 5px;
    border-color: #ced4da;
    border-width: 1px;
    
}

.type-card {
    display: flex;
}

.payment-card{
    display: flex;
    border-style: solid;
    border-radius: 10px;
    padding: 10px 20px;
    border-width: 3px;
    border-color: #26a6d1;
}

.payment-card-p{
    display: flex;
    border-style: solid;
    border-radius: 10px;
    padding: 10px 20px;
    border-width: 3px;
    border-color: #222;
}

.payment-method-description {
    margin-left: 20px;
}

.type-cards img{
    width: 35px;
}

.iso-card img{
    width: 25px;
}

.payment-method-description .paypal-logo {
    width: 90px;
}

.button {
    width: 100%;
    text-align: center;
    margin: auto;
}

.hidden-step{
    display: none;
}

.old-price {
    text-decoration: line-through;
    color: red;
}

.card-security {
    display: flex;
}

#snackbar{
    display: flex;
}

#snackbar img {
    margin: 0 10px;
    width: 60px;
    height: 45px;
}

/*SnackBar/*

 /* The snackbar - position it at the bottom and in the middle of the screen */
 #snackbar {
    visibility: hidden; /* Hidden by default. Visible on click */
    min-width: 250px; /* Set a default minimum width */
    background-color:white; /* Black background color */
    border-radius: 5px; /* Rounded borders */
    padding: 16px; /* Padding */
    position: fixed; /* Sit on top of the screen */
    z-index: 1; /* Add a z-index if needed */
    bottom: 30px; /* 30px from the bottom */
    box-shadow: 0 0 0 0 rgba(70, 70, 70, 0.2), 0 0 20px 0 rgba(54, 54, 54, 0.19);
    border-left-color: red;
    border-left-style: solid;
  }
  
  /* Show the snackbar when clicking on a button (class added with JavaScript) */
  #snackbar.show {
    visibility: visible; /* Show the snackbar */
    /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
    However, delay the fade out process for 2.5 seconds */
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
  }
  
  /* Animations to fade the snackbar in and out */
  @-webkit-keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
  }
  
  @keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
  }
  
  @-webkit-keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
  }
  
  @keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
  } 