@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;700&display=swap');

body{
    font-family: 'Roboto', sans-serif;
}

a{
    text-decoration: none;
    color: inherit;
}

.main-title{
    margin-top: 2%;
}

.row{
    width: 100%;
    display: -ms-flexbox; /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap; /* IE10 */
    flex-wrap: wrap;
}

.col{
    margin-bottom: 5%;
}

.card{
    background-color: transparent;
    width: 33%;
    float: left;
}

#success-message{
    display: none;
    position: absolute;
    top: 80%;
    right: 5%;
    background-color: #47b16a;
    color: #fff;
    padding: 1%;
}

.bg-image img{
    max-width: 90%;
}

.clear{
    clear: both;
}

.text-center{
    text-align: center;
}

.voice-cart{
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 22px;
}

.btn-primary{
    background-color: #1869e2;
    color: #fff;
    cursor: pointer;
}

.btn-primary:hover{
    background-color: #4080e2;
}

.btn-circle{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 4px solid #93baf4;
    box-shadow: 1px 1px 10px #2d77e6;
    margin-top: 10px;
}
.btn-circle i{
    font-size: 27px;
}

.title-success{
        background-color: #04AA6D;
    color: white;
    padding: 2%;
    margin: 7% 17%;
    border: none;
    border-radius: 3px;
    font-size: 17px;
}

#cart-items-number{
    margin-left: 10%;
    border: 1px solid;
    border-radius: 50%;
    padding: 5%;
}

.increased-font{
    font-size: 2rem!important;
}

table {
    margin: 0 auto;
    border-collapse: collapse;
    width: 90%;
    text-align: center;
}

td, th {
  border: 1px solid #dddddd;
  padding: 12px;
  font-size: 20px;
}

tr:nth-child(even) {
  background-color: #dddddd;
}

input[type="number"]{
    padding: 5px;
    font-size: 20px;
}


.col-25 {
  -ms-flex: 25%; /* IE10 */
  flex: 25%;
}

.col-50 {
  -ms-flex: 50%; /* IE10 */
  flex: 20%;
}

.col-75 {
  -ms-flex: 75%; /* IE10 */
  flex: 75%;
}

.col-25,
.col-50,
.col-75 {
  padding: 0 16px;
}

/*.container {*/
/*  background-color: #f2f2f2;*/
/*  padding: 5px 20px 15px 20px;*/
/*  border: 1px solid lightgrey;*/
/*  border-radius: 3px;*/
/*}*/

input[type=text] {
  width: 50%;
  margin-bottom: 20px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

/*label {*/
/*  margin-bottom: 10px;*/
/*  display: block;*/
/*}*/

.icon-container {
  margin-bottom: 20px;
  padding: 7px 0;
  font-size: 24px;
}


span.price {
  float: right;
  color: grey;
}

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other (and change the direction - make the "cart" column go on top) */
@media (max-width: 800px) {
  .row {
    flex-direction: column-reverse;
  }
  .col-25 {
    margin-bottom: 20px;
  }
}