* {
    font-family: RamaGothicEW01, serif; !important;
}

body {
    overscroll-behavior: none;
    margin: 0;
    padding: 0;
}

.main-yellow {
    background: #ffd200;
}

.main-blue {
  background: #00c0ff;
}

.bs-icon {
  --bs-icon-size: .75rem;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: var(--bs-icon-size);
  width: calc(var(--bs-icon-size) * 2);
  height: calc(var(--bs-icon-size) * 2);
  color: var(--bs-primary);
}

.bs-icon-xs {
  --bs-icon-size: 1rem;
  width: calc(var(--bs-icon-size) * 1.5);
  height: calc(var(--bs-icon-size) * 1.5);
}

.bs-icon-sm {
  --bs-icon-size: 1rem;
}

.bs-icon-md {
  --bs-icon-size: 1.5rem;
}

.bs-icon-lg {
  --bs-icon-size: 2rem;
}

.bs-icon-xl {
  --bs-icon-size: 2.5rem;
}

.bs-icon.bs-icon-primary {
  color: var(--bs-white);
  background: var(--bs-primary);
}

.bs-icon.bs-icon-primary-light {
  color: var(--bs-primary);
  background: rgba(var(--bs-primary-rgb), .2);
}

.bs-icon.bs-icon-semi-white {
  color: var(--bs-primary);
  background: rgba(255, 255, 255, .5);
}

.bs-icon.bs-icon-rounded {
  border-radius: .5rem;
}

.bs-icon.bs-icon-circle {
  border-radius: 50%;
}

.navbar-container::after {
  display: block;
  content: '';
}

.home-creamer {
  top: 10%;
  bottom: 0;
  left: 10%;
  right: 0;
}

body {
  font-family: 'RamaGothicEW01';
  letter-spacing: 1px;
}

.scroller {
  animation: scroller 10s infinite linear;
}

@keyframes scroller {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-51%);
  }
}

.secondary-logo {
  transition: left 0.1s;
}

.scroll {
  white-space: nowrap;
  margin: 0 0;
}

.scroll div {
  display: flex;
  gap: 5px;
}

scroll p {
  margin-bottom: 0;
}

.promotion {
  top: 75px;
  right: 150px;
}

.red-button {
  background: #ff2e00;
  border-style: none;
  transition: box-shadow 0.1s ease-out;
  box-shadow: 5px 5px #970800;
}

.red-button:hover {
  box-shadow: 1px 1px #970800;
}


.blue-button {
  background: #00c0ff;
  box-shadow: 5px 5px #28328f;
  transition: box-shadow 0.1s ease-out;
  margin-right: 20px;
  text-align: center;
}

.blue-button:hover {
  box-shadow: 1px 1px #28328f;
}

.green-button {
  background: #00ce14;
  box-shadow: 5px 5px #288f32;
  transition: box-shadow 0.1s ease-out;
  margin-right: 20px;
  text-align: center;
}

.green-button:hover {
  box-shadow: 1px 1px #288f32;
}


.carousel-item {
  data-interval: 2000;
}

.centered-text {
  padding: 12px;
  font-size: 24px;
  height: 60px;
}

.btn-clear {
    font-family: sans-serif;
    position: absolute;
    z-index: 100;
    top: 55px;
    right: 170px;
    text-transform: uppercase;
    background-color: #424242;
    line-height: 1;
    font-size: 12px;
    border-radius: 3px;
    color: #fff;
    padding: 10px 12px;
    font-weight: bold;
    -webkit-transition: all 200ms ease;
    transition: all 200ms ease;
    cursor: pointer;
}

.btn-clear.hidden-right {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
    -ms-transform: translateX(10px);
    opacity: 0;
}

.cards {
    font-size: 14px;
    color: #AAA;
    position: relative;
    text-align: center;
}

.cards .icon {
    font-size: 36px;
    -webkit-transition: all 200ms ease;
    transition: all 200ms ease;
    z-index: 5;
    position: absolute;
    background: #00c0ff;
    margin-top: 20px;
    margin-left: 15px;
    margin-right: auto;
    top: 0;
}

.cards .icon.active {
    color: #272822;
    -ms-transform: scale(1.2, 1.2);
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
    z-index: 6;
}

.checkout-button {
    text-align: center;
    font-size: 24px;
    height: 50px;
    margin: 10px 10px;
    padding: 0px 20px;
}

@media (max-width: 800px) {
    .product-page-picture {
        height: 300px;
        width: 100%;
    }
}

@media (min-width: 801px) {
    .product-page-picture {
        height: 400px;
        width: 100%;
    }
}

.progress {
    height: 3px !important;
}
.form-group {
    margin-bottom: 10px;
}
.show-pass {
    position: absolute;
    top:5%;
    right: 8%;
}
.progress-bar-danger {
    background-color: #e90f10;
}
.progress-bar-warning {
    background-color: #ffad00;
}
.progress-bar-success {
    background-color: #02b502;
}

.fa-circle{
    font-size: 10px;
}
.fa-check{
    color: #02b502;
}