@import url(https://fonts.googleapis.com/css?family=ABeeZee&display=swap);.border__top--solid {
  border-top-style: solid;
  border-top-width: 1.5px;
  border-top-color: #f5f5f5;
}

.border__top--dashed {
  border-top-style: dashed;
  border-top-width: 1.5px;
  border-top-color: #f5f5f5;
}

.border__right--solid {
  border-right-style: solid;
  border-right-width: 1.5px;
  border-right-color: #f5f5f5;
}

.border__right--dashed {
  border-right-style: dashed;
  border-right-width: 1.5px;
  border-right-color: #f5f5f5;
}

.border__bottom--solid {
  border-bottom-style: solid;
  border-bottom-width: 1.5px;
  border-bottom-color: #f5f5f5;
}

.border__bottom--dashed {
  border-bottom-style: dashed;
  border-bottom-width: 1.5px;
  border-bottom-color: #f5f5f5;
}

.border__left--solid {
  border-left-style: solid;
  border-left-width: 1.5px;
  border-left-color: #f5f5f5;
}

.border__left--dashed {
  border-left-style: dashed;
  border-left-width: 1.5px;
  border-left-color: #f5f5f5;
}

.border__all--solid {
  border-style: solid;
  border-width: 1.5px;
  border-color: #f5f5f5;
}

.border__all--dashed {
  border-style: dashed;
  border-width: 1.5px;
  border-color: #f5f5f5;
}

.card {
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  -webkit-box-shadow: 0px 0px 3px #ccc;
          box-shadow: 0px 0px 3px #ccc;
}

.card--light {
  background-color: var(--bg-white);
}

.card--dark {
  background-color: var(--text-dull);
}

.block {
  height: 100%;
}

.block__header__title {
  font-weight: 600;
  letter-spacing: 0.1em;
}

.block__header__title--sub {
  font-size: 0.7em;
}

.block__body {
  min-height: 60%;
}

.block--grey {
  background-color: #F5f5f5;
}

.block__footer {
  width: 100%;
}

.cover-photo {
  top: 0;
  height: 60vh;
}

@media (min-width: 768px) and (max-width: 767px) {
  .cover-photo {
    background: url("/front-end/assets/img/backgrounds/bg_mobile.png") top center no-repeat;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .cover-photo {
    background: url("/front-end/assets/img/backgrounds/bg_hero_new_opti.jpg") top center no-repeat;
    background-size: cover;
  }
}

@media (min-width: 992px) {
  .cover-photo {
    background: url("/front-end/assets/img/backgrounds/bg_hero_new_opti.jpg") top center no-repeat;
    background-size: cover;
  }
}

/** 
*   class - [p|m][t|r|b|l|a|x|y]__[xs|sm|md|lg|xl]
*   description - [padding | margin][top|right|bottom|left|all|x-asis|y-axis]__[xtra small|small|medium|large|xtra large]
*
**/

/**
*   Padding Class
**/

.pa__xs {
  padding: 0.1em;
}

.pa__sm {
  padding: 0.5em;
}

.pa__md {
  padding: 1em;
}

.pa__lg {
  padding: 1.5em;
}

.pa__xl {
  padding: 2em;
}

.px__xs {
  padding-right: 0.1em;
  padding-left: 0.1em;
}

.px__sm {
  padding-right: 0.5em;
  padding-left: 0.5em;
}

.px__md {
  padding-right: 1em;
  padding-left: 1em;
}

.px__lg {
  padding-right: 1.5em;
  padding-left: 1.5em;
}

.px__xl {
  padding-right: 2em;
  padding-left: 2em;
}

.py__xs {
  padding-top: 0.1em;
  padding-bottom: 0.1em;
}

.py__sm {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

.py__md {
  padding-top: 1em;
  padding-bottom: 1em;
}

.py__lg {
  padding-top: 1.5em;
  padding-bottom: 1.5em;
}

.py__xl {
  padding-top: 2em;
  padding-bottom: 2em;
}

.pt__xs {
  padding-top: 0.1em;
}

.pt__sm {
  padding-top: 0.5em;
}

.pt__md {
  padding-top: 1em;
}

.pt__lg {
  padding-top: 1.5em;
}

.pt__xl {
  padding-top: 2em;
}

.pr__xs {
  padding-right: 0.1em;
}

.pr__sm {
  padding-right: 0.5em;
}

.pr__md {
  padding-right: 1em;
}

.pr__lg {
  padding-right: 1.5em;
}

.pr__xl {
  padding-right: 2em;
}

.pb__xs {
  padding-bottom: 0.1em;
}

.pb__sm {
  padding-bottom: 0.5em;
}

.pb__md {
  padding-bottom: 1em;
}

.pb__lg {
  padding-bottom: 1.5em;
}

.pb__xl {
  padding-bottom: 2em;
}

.pl__xs {
  padding-left: 0.1em;
}

.pl__sm {
  padding-left: 0.5em;
}

.pl__md {
  padding-left: 1em;
}

.pl__lg {
  padding-left: 1.5em;
}

.pl__xl {
  padding-left: 2em;
}

/**
*   Margin Class
**/

.ma__xs {
  margin: 0.1em;
}

.ma__sm {
  margin: 0.5em;
}

.ma__md {
  margin: 1em;
}

.ma__lg {
  margin: 1.5em;
}

.ma__xl {
  margin: 2em;
}

.mx__xs {
  margin-right: 0.1em;
  margin-left: 0.1em;
}

.mx__sm {
  margin-right: 0.5em;
  margin-left: 0.5em;
}

.mx__md {
  margin-right: 1em;
  margin-left: 1em;
}

.mx__lg {
  margin-right: 1.5em;
  margin-left: 1.5em;
}

.mx__xl {
  margin-right: 2em;
  margin-left: 2em;
}

.my__xs {
  margin-top: 0.1em;
  margin-bottom: 0.1em;
}

.my__sm {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.my__md {
  margin-top: 1em;
  margin-bottom: 1em;
}

.my__lg {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

.my__xl {
  margin-top: 2em;
  margin-bottom: 2em;
}

.mt__xs {
  margin-top: 0.1em;
}

.mt__sm {
  margin-top: 0.5em;
}

.mt__md {
  margin-top: 1em;
}

.mt__lg {
  margin-top: 1.5em;
}

.mt__xl {
  margin-top: 2em;
}

.mr__xs {
  margin-right: 0.1em;
}

.mr__sm {
  margin-right: 0.5em;
}

.mr__md {
  margin-right: 1em;
}

.mr__lg {
  margin-right: 1.5em;
}

.mr__xl {
  margin-right: 2em;
}

.mb__xs {
  margin-bottom: 0.1em;
}

.mb__sm {
  margin-bottom: 0.5em;
}

.mb__md {
  margin-bottom: 1em;
}

.mb__lg {
  margin-bottom: 1.5em;
}

.mb__xl {
  margin-bottom: 2em;
}

.ml__xs {
  margin-left: 0.1em;
}

.ml__sm {
  margin-left: 0.5em;
}

.ml__md {
  margin-left: 1em;
}

.ml__lg {
  margin-left: 1.5em;
}

.ml__xl {
  margin-left: 2em;
}

.button {
  color: var(--text-white);
  padding: 0.5rem 1.5rem;
  letter-spacing: 1px;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
  border: 1px solid transparent;
  line-height: 1.5;
  border-radius: .25rem;
  -webkit-transition: color .15s;
  transition: color .15s;
}

.button--orange {
  background-color: var(--orange-btn-bg);
}

.button--orange--active {
  background-color: #e48901;
}

.button--orange--inverted {
  color: var(--theme-color);
  border: 2px solid var(--theme-border);
  background-color: var(--bg-white);
}

.button--orange--inverted:hover {
  color: var(--text-white);
  border: 2px solid transparent;
  background-color: var(--theme-bg);
}

.button--orange:hover {
  color: var(--text-white);
  background-color: #e48901;
}

.button--grey {
  background-color: var(--text-dull);
}

.button--grey--active {
  background-color: #3a3a3a;
}

.button--grey:hover {
  color: var(--text-white);
  background-color: #3a3a3a;
}

.button--yellow {
  background-color: #d39e00;
}

.button--yellow--active {
  background-color: #e0a800;
}

.button--yellow:hover {
  color: var(--text-white);
  background-color: #e0a800;
}

.button--round {
  border-radius: 35px;
}

.clearfix {
  clear: both;
}

.right {
  float: right;
}

.left {
  float: left;
}

.underline-textfield {
  display: block;
  width: 100%;
  height: calc(1.5em + .75rem + 2px);
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background: transparent;
  border: none;
  border-bottom: 1px solid #ccc;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  -webkit-transition: border 0.6s ease;
  transition: border 0.6s ease;
}

.underline-textfield:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  border-bottom: 1px solid var(--theme-border);
}

i.icon-check {
  background-image: url("/public/front-end/assets/img/icons/icon_check_orange_sm.svg");
  height: 15px;
  width: 15px;
  display: inline-block;
  background-repeat: no-repeat;
}

.font-size--1 {
  font-size: 1rem;
}

.font-size--2 {
  font-size: 1.2rem;
}

.font-size--3 {
  font-size: 1.3rem;
}

.font-size--4 {
  font-size: 1.4rem;
}

.font-size--4 {
  font-size: 1.5rem;
}

.color--grey {
  color: #a19b91;
}

.color--orange {
  color: var(--text-orange);
}

.lh--4 {
  line-height: 4;
}

.abeezee {
  font-family: 'ABeeZee' !important;
}

.bg-fef5e6 {
  background-color: #FEF5E6;
  padding-left: 3em !important;
}

.bg-fbf1e2 {
  background-color: #fbf1e2;
  padding-left: 3em !important;
}

.side-title {
  color: #a19b91;
  letter-spacing: 0.1em;
  padding-left: 3em !important;
}

.pricing__column {
  border: 1px solid #E3E3E3;
  width: 20%;
}

.actual-price {
  font-size: 2em;
  color: var(--text-orange);
  text-decoration: line-through;
}

.discounted-price {
  font-size: 4em;
  font-weight: 600;
}

.photo-pricing__table {
  width: 80%;
}

.photo-pricing__table thead {
  text-align: center;
}

.photo-pricing__table tbody td {
  text-align: center;
}

@media (max-width: 1440px) {
  .actual-price {
    font-size: 1.5em;
    color: var(--text-orange);
    text-decoration: line-through;
  }

  .discounted-price {
    font-size: 2.5em;
    font-weight: 600;
  }
}

html {
  font-size: 16px;
}

