/**
 * @file Create custom style for Myshop.id
 * @author Dandi Karunia Pratama;
 * @description A stylesheet for overiding or add new style for Myshop.id
 */
/* Pricing Table: This block is used to styling the pricing table section; */
.pricing-table {
  background-color: #fff;
  margin: 50px 0 50px 0;
  font-family: Arial, sans-serif; }
  .pricing-table__item {
    background-color: #fff;
    overflow: hidden;
    position: relative;
    text-align: center;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s; }
    @media screen and (max-width: 767px) {
      .pricing-table__item {
        margin-bottom: 45px; } }
    @media screen and (min-width: 768px) and (max-width: 991px) {
      .pricing-table__item {
        margin-bottom: 45px; } }
    .pricing-table__item:hover .pricing-table__head-bg, .pricing-table__item--active .pricing-table__head-bg {
      border-color: #fa5b0f transparent transparent #fa5b0f;
      -webkit-transition: all 0.3s ease-in-out 0s;
      -o-transition: all 0.3s ease-in-out 0s;
      transition: all 0.3s ease-in-out 0s; }
    .pricing-table__item:hover .pricing-table__header, .pricing-table__item--active .pricing-table__header {
      color: #fff; }
    .pricing-table__item:hover .pricing-table__button, .pricing-table__item--active .pricing-table__button {
      background-color: #fa5b0f;
      color: #fff;
      -webkit-transition: all 0.3s ease-in-out 0s;
      -o-transition: all 0.3s ease-in-out 0s;
      transition: all 0.3s ease-in-out 0s; }
  .pricing-table__head-wrapper {
    background-color: #f6f6f6;
    margin: 0 0 20px 0; }
  .pricing-table__head {
    margin: 0 0 50px 0; }
  .pricing-table__head-bg {
    border-color: #e4e4e4 transparent transparent #e4e4e4;
    border-style: solid;
    border-width: 84px 1411px 23px 399px;
    position: absolute; }
  .pricing-table__header {
    color: #525252;
    padding-top: 40px;
    position: relative;
    z-index: 1;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase; }
  .pricing-table__price-wrapper {
    padding: 0 0 20px; }
  .pricing-table__price {
    color: #414141;
    display: block; }
  .pricing-table__currency {
    display: inline-block;
    font-family: Helvetica, sans-serif;
    font-size: 24px;
    font-weight: 400;
    vertical-align: middle; }
  .pricing-table__nominal {
    font-family: Helvetica, sans-serif;
    font-size: 60px;
    font-weight: 300;
    letter-spacing: -2px;
    line-height: 60px;
    padding: 0;
    vertical-align: middle; }
  .pricing-table__amount {
    display: inline-block;
    font-family: Helvetica, sans-serif;
    font-size: 24px;
    font-weight: 400;
    vertical-align: bottom; }
  .pricing-table__period {
    font-family: Helvetica, sans-serif;
    font-size: 22px;
    font-weight: 400;
    vertical-align: bottom; }
  .pricing-table__feature {
    list-style: none;
    padding: 0;
    margin: 0; }
  .pricing-table__feature-item {
    color: #a7a7a7;
    font-family: Helvetica, sans-serif;
    font-size: 18px;
    padding: 15px 0;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s; }
    .pricing-table__feature-item span {
      color: #414141; }
    .pricing-table__feature-item:hover {
      background-color: #E4E4E4;
      border-left: 5px solid #fa5b0f;
      -webkit-transition: all 0.3s ease-in-out 0s;
      -o-transition: all 0.3s ease-in-out 0s;
      transition: all 0.3s ease-in-out 0s; }
  .pricing-table__button-wrapper {
    margin: 20px 0 32px; }
  .pricing-table__button {
    border: 1px solid #fa5b0f;
    color: #fa5b0f;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    border-radius: 50px;
    display: inline-block;
    font-family: Helvetica, sans-serif;
    font-size: 18px;
    outline: medium none;
    padding: 12px 30px;
    text-decoration: none;
    text-transform: uppercase; }
  .pricing-table *::before, .pricing-table *::after {
    clear: both; }
  .pricing-table::after {
    z-index: -1;
    top: 0;
    left: -25%;
    width: 150%;
    height: 75%;
    background: inherit;
    -webkit-transform: rotate(-2deg);
        -ms-transform: rotate(-2deg);
            transform: rotate(-2deg);
    -webkit-transform-origin: 0 0;
        -ms-transform-origin: 0 0;
            transform-origin: 0 0; }
  .pricing-table::before {
    background-color: #fa5b0f; }
    
/* Toast: this block is used to style the toast elemet */
.toast {
    display: flex;
    visibility: hidden;
    position: fixed;
    outline: medium none currentcolor;
    left: 3px;
    bottom: -30px;
    z-index: 200;
    box-sizing: border-box;
    margin: .2em .2em 1.5em;
    padding: 20px 28px;
    border-radius: 2px;
    opacity: 0;
    background-color: #212121;
    box-shadow: 1px 3px 10px #212121;
}

.toast.visible {
    visibility: visible;
    animation: fadeInOut 5s;
}

.toast label {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-size: .9rem;
    line-height: 10px;
    color: #ffffff;
}

@keyframes fadeInOut {
    5%, 95% {
        opacity: 1;
        left: 3px;
        bottom: 25px;
    }
    15%, 85% {
        opacity: 1;
        left: 3px;
        bottom: 3px;
    }
}

@media screen and (min-width: 768px) {
    .toast {
        margin: 3em;
    }
}
