<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.bfc-wrapper {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}

.bfc-card {
  width: 320px;
  height: 380px;
  margin: 1em;
  perspective: 1500px;
}

.bfc-card .bfc-content {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.3s cubic-bezier(0.75, 0, 1, 0.85), box-shadow .3s;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.03), 0 4px 6px -2px rgba(0, 0, 0, .05);
  border-radius: 18px;
}

.bfc-content:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.23), 0 10px 40px rgba(0, 0, 0, 0.19);
}

.bfc-more {
  display: none !important;
}

.bfc-more:checked~.bfc-content {
  transform: rotateY(180deg);
}

.bfc-front,
.bfc-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  border-radius: 18px;
}

.bfc-front .bfc-inner,
.bfc-back .bfc-inner {
  height: 100%;
  transform: translateZ(80px) scale(0.94);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.bfc-front {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  border: 1px solid #000;
}

.bfc-image {
  width: 100%;
  height: 380px;
  background-size: cover;
  border-radius: 4px;
  background-position: center;
  background-color: #f2ded8;
}

.bfc-front p {
  color: #19100c;
  font-size: 16px;
  text-align: center;
  margin: 0px;
  font-weight: 500;
}

.bfc-front h2 {
  margin-bottom: 0.3em;
  text-transform: uppercase;
  color: #19100c;
  font-weight: 800;
  text-align: center;
  align-self: center;
  font-size: 22px;
}

.bfc-back {
  transform: rotateY(180deg);
  background: linear-gradient(40deg, #9abdde, #A5D6A7);
  border: 2px solid #f0f0f0;
  padding: 20px;
}

.bracha-box {
  align-self: center;
  text-align: center;
}

.bracha-box .bracha-card h4 {
  color: #19100c;
  font-weight: 400;
}
.bracha-box .bracha-card h3 {
  color: #19100c;
}
/*
h1.flash-card-bracha {
  color: #19100c;
  font-weight: 800;
  font-size: 28px;
  margin-bottom: 5px;
}

p.flash-card-bracha-title {
  color: #19100c;
  font-weight: 400;
  margin: 20px 0 0 0;
  font-size: 14px;
  text-transform: uppercase;
}

.flash-card-delimiter {
  font-size: 18px;
  font-weight: 600;
  font-family: open sans;
  color: #f3724b;
}
*/
.bfc-back a {
  align-self: center;
  color: #ffffff;
  font-weight: 600;
}

.bfc-back a:hover {
  color: #19100c;
}

.bfc-back .bfc-button {
  justify-self: center;
}

.bfc-button {
  cursor: pointer;
  background-color: #ececec;
  color: #19100c;
  padding: 12px 60px;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all .2s ease-in-out;
}

.bfc-button:hover {
  background-color: #19100c;
  color: #fff;
  box-shadow: 0 0 50px rgb(255 255 255 / 50%);
}

@media (max-width: 700px) {
  .bfc-front h2 {
    font-size: 28px;
  }

  h1.flash-card-bracha {
    font-size: 28px;
  }

  .bfc-front p {
    font-size: 20px;
  }
}</pre></body></html>