.ofn.hide {
  display: none !important;
}

.ofn-dismiss {
  position: absolute;
  right: 12px;
  top: 16px;
  transform: translateY(-50%);
  font-size: 12px;
  text-decoration: underline;
  cursor: pointer;
  display: none;
  z-index: 4;
}
.ofn-dismiss.icon {
  text-decoration: none;
  font-size: 20px;
}

.ofn.has-dismiss .ofn-dismiss {
  display: block;
}

.ofn mark {
  background-color: #fff;
  color: #000;
  border-radius: 2px;
  padding: 2px 12px;
}
.ofn mark::selection {
  color: green;
}

.ofn .btn {
  display: inline-flex;
}

/*

type_1 : Above Header 
type_2 : Below Header 
type_3 : Before Content
type_4 : Below Footer
type_5 : Footer Sticky
type_6 : Popup
type_7 : WooCommerce
type_8 : Banner
*/
.ofn.ofn-type_1,
.ofn.ofn-type_2,
.ofn.ofn-type_3,
.ofn.ofn-type_4,
.ofn.ofn-type_5 {
  position: relative;
  font-size: 14px;
  padding: 8px 24px;
}
@media screen and (max-width: 576px) {
  .ofn.ofn-type_1,
.ofn.ofn-type_2,
.ofn.ofn-type_3,
.ofn.ofn-type_4,
.ofn.ofn-type_5 {
    padding: 12px 12px;
  }
}
.ofn.ofn-type_1.has-dismiss,
.ofn.ofn-type_2.has-dismiss,
.ofn.ofn-type_3.has-dismiss,
.ofn.ofn-type_4.has-dismiss,
.ofn.ofn-type_5.has-dismiss {
  padding-right: 36px;
}
.ofn.ofn-type_1 p,
.ofn.ofn-type_2 p,
.ofn.ofn-type_3 p,
.ofn.ofn-type_4 p,
.ofn.ofn-type_5 p {
  font-size: 14px;
}
.ofn.ofn-type_1 img,
.ofn.ofn-type_2 img,
.ofn.ofn-type_3 img,
.ofn.ofn-type_4 img,
.ofn.ofn-type_5 img {
  max-width: 120px;
  max-height: 140px;
  object-fit: contain;
}
.ofn.ofn-type_1 .cell-2,
.ofn.ofn-type_2 .cell-2,
.ofn.ofn-type_3 .cell-2,
.ofn.ofn-type_4 .cell-2,
.ofn.ofn-type_5 .cell-2 {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ofn.ofn-type_1.ofn-row,
.ofn.ofn-type_2.ofn-row,
.ofn.ofn-type_3.ofn-row,
.ofn.ofn-type_4.ofn-row,
.ofn.ofn-type_5.ofn-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  justify-content: center;
}
.ofn.ofn-type_1.ofn-column,
.ofn.ofn-type_2.ofn-column,
.ofn.ofn-type_3.ofn-column,
.ofn.ofn-type_4.ofn-column,
.ofn.ofn-type_5.ofn-column {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: left;
}
.ofn.ofn-type_1.ofn-column .cell-2,
.ofn.ofn-type_2.ofn-column .cell-2,
.ofn.ofn-type_3.ofn-column .cell-2,
.ofn.ofn-type_4.ofn-column .cell-2,
.ofn.ofn-type_5.ofn-column .cell-2 {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 0 !important;
}
.ofn.ofn-type_1.ofn-column .cell-3,
.ofn.ofn-type_2.ofn-column .cell-3,
.ofn.ofn-type_3.ofn-column .cell-3,
.ofn.ofn-type_4.ofn-column .cell-3,
.ofn.ofn-type_5.ofn-column .cell-3 {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 576px) {
  .ofn.ofn-type_1.ofn-column,
.ofn.ofn-type_2.ofn-column,
.ofn.ofn-type_3.ofn-column,
.ofn.ofn-type_4.ofn-column,
.ofn.ofn-type_5.ofn-column {
    flex-direction: column;
    text-align: center;
  }
  .ofn.ofn-type_1.ofn-column .cell-3,
.ofn.ofn-type_2.ofn-column .cell-3,
.ofn.ofn-type_3.ofn-column .cell-3,
.ofn.ofn-type_4.ofn-column .cell-3,
.ofn.ofn-type_5.ofn-column .cell-3 {
    justify-content: center;
  }
}

.ofn.ofn-type_5 {
  position: fixed;
  z-index: 99999;
  width: 100%;
  bottom: 0;
  left: 0;
}

.ofn.ofn-type_8 {
  margin: 12px auto;
}
.ofn.ofn-type_8 img {
  display: block;
}
.ofn.ofn-type_8 img.hide {
  display: none;
}
@media screen and (max-width: 576px) {
  .ofn.ofn-type_8 img.xs-hide {
    display: none;
  }
  .ofn.ofn-type_8 img.xs-show {
    display: block;
  }
}

body.ofn-disable {
  overflow: hidden;
}

.ofn-modal {
  background-color: rgba(0, 0, 0, 0.8);
  left: 50%;
  top: 50%;
  position: fixed;
  z-index: 99999;
  transition: all ease 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
}
.ofn-modal img {
  width: 100%;
}
.ofn-modal .ofn-modal-inner {
  width: 50%;
  min-height: 50vh;
  background-color: #fff;
}
.ofn-modal .ofn-modal-close {
  top: 24px;
  right: 24px;
  font-size: 28px !important;
}
.ofn-modal.active {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
}
.ofn-modal.ofn-card .ofn-modal-inner {
  position: relative;
  max-width: 40%;
  min-height: auto;
}
@media screen and (max-width: 768px) {
  .ofn-modal.ofn-card .ofn-modal-inner {
    width: 70%;
    max-width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .ofn-modal.ofn-card .ofn-modal-inner {
    width: 90%;
    max-width: 100%;
  }
}
.ofn-modal.ofn-card .cell-2 {
  padding: 24px;
  display: flex;
  gap: 12px;
  flex-direction: column;
  text-align: center;
  justify-content: center;
}
.ofn-modal.ofn-full .ofn-modal-inner {
  width: 100%;
  height: 100%;
  background-color: transparent;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.ofn-modal.ofn-full img {
  max-width: 300px;
  max-height: 40vh;
  object-fit: contain;
  margin-bottom: 12px;
}
@media screen and (max-width: 576px) {
  .ofn-modal.ofn-full img {
    max-width: 100%;
    max-height: 50vh;
  }
}
.ofn-modal.ofn-full .cell-2 {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 12px;
}
.ofn-modal.ofn-full .cell-2 p {
  max-width: 80%;
  text-align: center;
  margin: 0 auto;
}
.ofn-modal.ofn-rs {
  align-items: end;
  justify-content: end;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.ofn-modal.ofn-rs .ofn-modal-inner {
  position: relative;
  width: 100%;
  max-width: 768px;
  transition: all ease 1s;
  transform: translateX(200%);
  height: 35vh;
  display: flex;
}
@media screen and (max-width: 768px) {
  .ofn-modal.ofn-rs .ofn-modal-inner {
    max-width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .ofn-modal.ofn-rs .ofn-modal-inner {
    flex-direction: column;
  }
}
.ofn-modal.ofn-rs .ofn-modal-inner .cell-1 {
  height: 100%;
  aspect-ratio: 3/5;
  position: relative;
}
.ofn-modal.ofn-rs .ofn-modal-inner .cell-1 img {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.ofn-modal.ofn-rs .ofn-modal-inner .cell-2 {
  padding: 24px;
  flex: 1;
  display: flex;
  align-items: center;
}
.ofn-modal.ofn-rs .ofn-modal-inner .cell-2 > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ofn-modal.ofn-rs.active .ofn-modal-inner {
  transform: translateX(0);
}

.ofn.bg-dark .btn {
  border: 2px solid #fff;
}
.ofn .btn {
  border: 2px solid #000;
}

/*# sourceMappingURL=ofn.css.map */
