@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");

/* Setting Style
======================*/
:root {
  --main_color: linear-gradient(180deg, #2ecc71, #1abc9c);
}
*,
:focus {
  outline: 0 !important;
  scroll-behavior: smooth;
}

::selection {
  background-color: #277bc0 !important;
  color: #fff !important;
}

body {
  overflow-x: hidden;
  width: 100%;
  background-color: #f1f2f6;
  text-align: start;
  position: relative;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}
.container {
  max-width: 1000px;
}

/* Scroll Bar
======================*/
/* width */
::-webkit-scrollbar {
  background-color: #f1f2f6;
  width: 5px;
  height: 3px;
}

/* Track */
::-webkit-scrollbar-track {
  background-color: #f1f2f6;
}

/* Handle */
::-webkit-scrollbar-thumb {
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  background-image: var(--main_color);
  height: 3px;
}
/* Lists  
======================*/
ul {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}
ul li {
  display: inline-block;
}

/* Links 
======================*/
a,
a:hover,
a:focus {
  cursor: pointer;
  text-decoration: none;
}

/*Images
======================*/
img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

/* Forms
=======================*/
.form-control {
  padding: 0 15px;
  font-size: 14px;
  line-height: 40px;
  height: 40px;
  color: #191919;
  border: 1px solid #cecece;
  letter-spacing: 0px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
.form-control:hover,
.form-control:focus {
  border: 1px solid #cecece;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

/* Button
=======================*/
.btn {
  line-height: 40px;
  text-align: center;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 0 20px;
  background-color: #f1f2f6;
  color: #191919;
  border: 0;
  box-shadow: none;
  font-weight: 700;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: 0.3s all linear;
  -moz-transition: 0.3s all linear;
  -ms-transition: 0.3s all linear;
  -o-transition: 0.3s all linear;
  transition: 0.3s all linear;
}
.btn.buy {
  background-image: var(--main_color);
  color: #fff;
}
.btn:hover {
  color: #fff;
  background-color: #277bc0;
}

/* Header
======================*/
header  ,footer{
  background-color: #fff;
  padding: 30px 0;
}
header a , footer a{
  display: inline-block;
}
header a img , footer a img{
  width: 125px;
}
@media all and (max-width: 576px) {
  header , footer {
    padding: 15px 0;
  }
}
footer{
  margin-top: 25px;
  padding-bottom: 20px;
}

/* main
======================*/
.main_sec {
  background-color: #fff;
  margin: 15px auto;
  padding: 30px 0;
}
.main_sec img {
  width: 145px;
  height: 145px;
  border-radius: 50%;
  margin-bottom: 25px;
  object-fit: cover;
  border: 5px solid #f1f1f1;
}
.main_sec h3 {
  font-weight: 700;
  text-transform: capitalize;
  font-size: 28px;
  color: #333;
  margin: 0;
}
@media all and (max-width: 576px) {
  .main_sec h3 {
    font-size: 18px;
  }
}
.total {
  background-image: var(--main_color);
  text-align: center;
  color: #fff;
  font-size: 32px;
  margin-bottom: 15px;
  padding: 20px 0;
  font-weight: 700;
  position: sticky;
  top: 0;
}
@media all and (max-width: 576px) {
  .total {
    padding: 10px 0;
    font-size: 26px;
  }
}

/* Item
======================*/
.item {
  background-color: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 15px;
}
.item img {
  width: auto;
  height: 120px;
  object-fit: contain;
  margin: 15px auto;
}
.item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}
.item p {
  color: #24c486;
  font-size: 20px;
}
.item .action {
  display: flex;
  justify-content: center;
  align-items: center;
}
.item .form-control {
  width: 95px;
  text-align: center;
  margin: 0 15px;
}
@media all and (max-width: 767px) {
  .item .form-control {
    width: 75px;
  }
}

/* Receipt
======================*/
.receipt {
  background-color: #fff;
  padding: 25px;
  text-align: center;
}
.receipt h3 {
  font-weight: 700;
  text-transform: capitalize;
  font-size: 28px;
  color: #333;
  margin: 0;
}
.receipt ul {
  max-width: 280px;
  margin: 25px auto 0;
}
.receipt li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-weight: 700;
}
.receipt strong {
}
.receipt span:last-child {
  color: #24c486;
}
.receipt .tot {
  margin-top: 15px;
  border-top: 1px solid #e7e7e7;
  padding-top: 10px;
  margin-bottom: 0;
}
