::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* For Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
}

*::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

*::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

*::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 10px;
    border: 2px solid #f1f1f1;
}

*::-webkit-scrollbar-thumb:hover {
    background: #555;
}


body {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.prod-name {
    font-family: "Montserrat Subrayada", sans-serif;
    font-weight: 400;
    font-style: normal;
}

form {
    margin-top: 3rem;
}

.form-group {
    margin-bottom: 3rem;
}

.form-control {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #7A7A7A;
    border-radius: 0;
    color: #7A7A7A;
    font-size: 14px;
    box-shadow: none;
    text-align: center;
    text-transform: uppercase;
}

.form-control:focus {
    box-shadow: none;
    border-bottom: 2px solid black;
    background-color: transparent;
}

textarea.form-control {
    height: auto;
}

.btn-primary {
    background-color: black;
    border-color: black;
    border-radius: 0;
    width: 100%;
    color: white;
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.btn-primary:hover {
    background-color: transparent;
    border-color: #333;
    color: black;
}

.btn-primary:active {
    background-color: #333 !important; /* Darken when clicked */
    border-color: #333;
}

.strikethrough {
  position: relative;
}
.strikethrough:before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  right: 0;
  border-top: 1px solid;
  border-color: inherit;

  -webkit-transform:rotate(-5deg);
  -moz-transform:rotate(-5deg);
  -ms-transform:rotate(-5deg);
  -o-transform:rotate(-5deg);
  transform:rotate(-5deg);
}