.pricing {
    width: 1000px;
    font-size: 0;
    opacity: 1;
    transition: opacity .2s ease;
    margin: 40px auto;
}
.pricing ul {
    border-top: 1px solid #ffffff;
    color: #ffffff;
    margin: 17px 20%;
    padding-top: 20px;
}
.price-option {
    display: inline-block;
    width: 32.66%;
    vertical-align: middle;
    margin-right: 1%;
    font-size: 16px;
    opacity: 1;
    transition: all .2s ease;
    position: relative;
}
.price-option:last-child {
    margin-right: 0;
}
.pricing:hover .price-option {
    opacity: 0.6;
}
.pricing:hover .price-option:hover {
    opacity: 1;
    transform: scale(1.2);
    z-index: 100;
}
.price-option__detail {
    padding: 2em 0;
    background: #aeaeae;
    text-align: center;
}
.price-option--low .price-option__detail {
    border-radius: .25em 0 0 0;
}
.price-option--mid .price-option__detail {
    padding: 2.3em 0;
    border-radius: .25em .25em 0 0;
}
.price-option--high .price-option__detail {
    border-radius: 0 .25em 0 0;
}
.price-option__cost,
.price-option__type {
    display: block;
}
.price-option__cost {
    font-size: 3.5em;
    color: #ffffff;
}
.price-option__type {
    font-size: 15px;
    text-transform: uppercase;
    color: #ffffff;
}
.price-option__purchase {
    position: relative;
    display: block;
    padding: 20px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(9, 9, 9, 0.6);
}
.price-option--low .price-option__purchase {
    background: #ab4b5e;
    border-radius: 0 0 0 .25em;
}
.price-option--mid .price-option__purchase {
    background: #ff6e00;
    border-radius: 0 0 .25em .25em;
}
.price-option--high .price-option__purchase {
    background: #ff4b19;
    border-radius: 0 0 0 .25em;
}
.price-option__purchase:before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    display: block;
    width: 0;
    height: 0;
    margin-left: -5px;
    border-width: 0 5px 5px;
    border-style: solid;
}
.price-option--low .price-option__purchase:before {
    border-color: transparent transparent #ab4b5e;
}
.price-option--mid .price-option__purchase:before {
    border-color: transparent transparent #ff6e00;
}
.price-option--high .price-option__purchase:before {
    border-color: transparent transparent #ff4b19;
}
.payment-success .box {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translate(-50%, 0%);
    max-width: 500px;
    width: 100%;
    background: white;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    font-weight: 300;
    color: #2c2928;
    opacity: 0;
    transition: top 0.3s cubic-bezier(0.31, 0.25, 0.5, 1.5), opacity 0.2s ease-in-out;
    z-index: 1000;
}
.payment-success:before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0,0.8);
    z-index: 900;
}
.payment-success .box .check {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%) scale(4);
    width: 120px;
    height: 110px;
    background: #71c341;
    color: white;
    font-size: 3.8rem;
    padding-top: 10px;
    border-radius: 50%;
    opacity: 0;
    transition: transform 0.2s 0.25s cubic-bezier(0.31, 0.25, 0.5, 1.5), opacity 0.1s 0.25s ease-in-out;
}
.payment-success .box .scaledown {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}
.payment-success .box p {
    font-size: 1.1rem;
    margin: 25px 0px;
    padding: 0;
}
.payment-success .box p:nth-child(2) {
    font-size: 2.3rem;
    margin: 40px 0px 0px 0px;
}
.payment-success .box #ok {
    position: relative;
    color: white;
    border: 0;
    background: #71c341;
    width: 100%;
    height: 50px;
    border-radius: 6px;
    font-size: 1.2rem;
    transition: background 0.2s ease;
    outline: none;
    display: inline-block;
    line-height: 50px;
    font-weight: bold;
}
.payment-success .box #ok:hover {
    background: #8ecf68;
}
.payment-success .box #ok:active {
    background: #5a9f32;
}
.payment-success.active .box {
    top: 150px;
    opacity: 1;
}
